@forge/manifest 3.2.0-next.4 → 3.2.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,33 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7f869f7: Added manifest validation for modules using Subpages
8
+ - 72e020c: Adds schemas properties for Data Classifications
9
+
10
+ ### Patch Changes
11
+
12
+ - b2cef71: Update manifest definitions
13
+ - 254b239: Update manifest definitions
14
+ - 47744fc: Update manifest definitions
15
+ - 860c4fb: Update manifest definitions
16
+ - 66e969f: Update manifest definitions
17
+ - 2c635f9: Update manifest definitions
18
+
19
+ ## 3.2.0-next.6
20
+
21
+ ### Patch Changes
22
+
23
+ - 860c4fb0: Update manifest definitions
24
+
25
+ ## 3.2.0-next.5
26
+
27
+ ### Minor Changes
28
+
29
+ - 72e020c: Adds schemas properties for Data Classifications
30
+
3
31
  ## 3.2.0-next.4
4
32
 
5
33
  ### Patch Changes
@@ -80,6 +80,29 @@
80
80
  ]
81
81
  }
82
82
  }
83
+ },
84
+ "storage": {
85
+ "description": "Options related to hosted storage",
86
+ "type": "object",
87
+ "required": [
88
+ "classifications"
89
+ ],
90
+ "additionalProperties": false,
91
+ "properties": {
92
+ "classifications": {
93
+ "description": "Labels to classify the type of data stored",
94
+ "type": "array",
95
+ "items": {
96
+ "type": "string",
97
+ "enum": [
98
+ "ugc",
99
+ "pii",
100
+ "other"
101
+ ]
102
+ },
103
+ "minItems": 1
104
+ }
105
+ }
83
106
  }
84
107
  },
85
108
  "required": [
@@ -36,6 +36,15 @@ export interface App {
36
36
  runtime?: Runtime;
37
37
  licensing?: Licensing;
38
38
  connect?: Connect;
39
+ /**
40
+ * Options related to hosted storage
41
+ */
42
+ storage?: {
43
+ /**
44
+ * Labels to classify the type of data stored
45
+ */
46
+ classifications: ['ugc' | 'pii' | 'other', ...('ugc' | 'pii' | 'other')[]];
47
+ };
39
48
  }
40
49
  /**
41
50
  * Options related to the Forge Javascript runtime.