Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: changed the CS region of the US to NA.
  • Loading branch information
hanoak20 committed Feb 8, 2024
commit 10c3fda6fec32c0909fe9e3adcbb28689db1f3ff
2 changes: 1 addition & 1 deletion src/config/dev.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const devConfig = {
CS_API: {
US: "https://stag-api.csnonprod.com/v3",
NA: "https://stag-api.csnonprod.com/v3",
EU: "https://stag-eu-api.csnonprod.com/v3",
AZURE_NA: "https://stag-azure-na-api.csnonprod.com/v3",
},
Expand Down
2 changes: 1 addition & 1 deletion src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export type ConfigType = {
APP_ENV: string;
MONGODB_URI: string;
CS_API: {
US: string;
NA: string;
EU: string;
AZURE_NA: string;
AZURE_EU?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/config/prod.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const prodConfig = {
CS_API: {
US: "https://api.contentstack.io/v3",
NA: "https://api.contentstack.io/v3",
EU: "https://eu-api.contentstack.com/v3",
AZURE_NA: "https://azure-na-api.contentstack.com/v3",
AZURE_EU: "https://azure-eu-api.contentstack.com/v3",
Expand Down
2 changes: 1 addition & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const constants = {
CS_REGIONS: ["US", "EU", "AZURE_NA", "AZURE_EU"],
CS_REGIONS: ["NA", "EU", "AZURE_NA", "AZURE_EU"],
MODULES: [
"Project",
"Migration",
Expand Down