We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65bface commit fe07b55Copy full SHA for fe07b55
2 files changed
Contentstack/ContentstackDefinitions.h
@@ -79,7 +79,8 @@
79
US = 0,
80
EU,
81
AZURE_NA,
82
- AZURE_EU
+ AZURE_EU,
83
+ GCP_NA
84
};
85
86
typedef NS_ENUM(NSUInteger, Language) {
ContentstackInternal/NSObject+Extensions.m
@@ -43,6 +43,7 @@ -(NSArray*)hostURLS {
43
static dispatch_once_t hostURLSOnceToken;
44
dispatch_once(&hostURLSOnceToken, ^{
45
hostURLS = @[@"cdn.contentstack.io",
46
+ @"cdn.contentstack.com",
47
@"cdn.contentstack.com",
48
49
@"cdn.contentstack.com"];
@@ -61,7 +62,8 @@ -(NSArray*)regionCodes {
61
62
regionCodes = @[@"us",
63
@"eu",
64
@"azure-na",
- @"azure-eu"];
65
+ @"azure-eu",
66
+ @"gcp-na"];
67
});
68
return regionCodes;
69
}
0 commit comments