@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
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 8.2.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 035b3f5: Update manifest definitions
8
+
3
9
  ## 8.2.0
4
10
 
5
11
  ### Minor Changes
@@ -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
  }
@@ -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
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.2.0",
3
+ "version": "8.2.1-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {