@forge/manifest 8.2.0 → 8.2.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1369,6 +1369,10 @@
|
|
|
1369
1369
|
],
|
|
1370
1370
|
"description": "The SQL engine to be used for storage"
|
|
1371
1371
|
},
|
|
1372
|
+
"dareCompliant": {
|
|
1373
|
+
"type": "boolean",
|
|
1374
|
+
"description": "Whether the SQL storage is compliant data residency requirements. This will be set to false while sql is in preview and true when sql goes GA"
|
|
1375
|
+
},
|
|
1372
1376
|
"key": {
|
|
1373
1377
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1374
1378
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1371,6 +1371,10 @@ export interface Modules {
|
|
|
1371
1371
|
* The SQL engine to be used for storage
|
|
1372
1372
|
*/
|
|
1373
1373
|
engine: 'mysql';
|
|
1374
|
+
/**
|
|
1375
|
+
* Whether the SQL storage is compliant data residency requirements. This will be set to false while sql is in preview and true when sql goes GA
|
|
1376
|
+
*/
|
|
1377
|
+
dareCompliant?: boolean;
|
|
1374
1378
|
key: ModuleKeySchema;
|
|
1375
1379
|
},
|
|
1376
1380
|
...{
|
|
@@ -1378,6 +1382,10 @@ export interface Modules {
|
|
|
1378
1382
|
* The SQL engine to be used for storage
|
|
1379
1383
|
*/
|
|
1380
1384
|
engine: 'mysql';
|
|
1385
|
+
/**
|
|
1386
|
+
* Whether the SQL storage is compliant data residency requirements. This will be set to false while sql is in preview and true when sql goes GA
|
|
1387
|
+
*/
|
|
1388
|
+
dareCompliant?: boolean;
|
|
1381
1389
|
key: ModuleKeySchema;
|
|
1382
1390
|
}[]
|
|
1383
1391
|
];
|