Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): pull main into develop post release v1.66.0 #1243

Merged
merged 9 commits into from
Feb 27, 2024
7 changes: 5 additions & 2 deletions src/configurations/destinations/postgres/db-config.json
Original file line number Diff line number Diff line change
@@ -29,7 +29,9 @@
"reactnative": ["cloud"],
"flutter": ["cloud"],
"cordova": ["cloud"],
"shopify": ["cloud"]
"shopify": ["cloud"],
"cloud": ["cloud"],
"cloudSource": ["cloud"]
},
"destConfig": {
"defaultConfig": [
@@ -79,6 +81,7 @@
"sasToken",
"secretAccessKey",
"credentials"
]
],
"immutableKeys": ["namespace"]
}
}
1,402 changes: 795 additions & 607 deletions src/configurations/destinations/postgres/ui-config.json

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions src/schemas/destinations/db-config-schema.json
Original file line number Diff line number Diff line change
@@ -286,6 +286,16 @@
},
"uniqueItems": true
},
"immutableKeys": {
"type": "array",
"title": "Immutable Keys",
"description": "The keys that are to be treated as Immutable in the destination configuration.",
"$comment": "In the UI, these fields can only be set in the creation flow and cannot be edited again.",
"items": {
"type": "string"
},
"uniqueItems": true
},
"auth": {
"type": "object",
"title": "Authentication",