@forge/manifest 3.1.1-next.1 → 3.2.0-next.5

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,29 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.2.0-next.5
4
+
5
+ ### Minor Changes
6
+
7
+ - 72e020c: Adds schemas properties for Data Classifications
8
+
9
+ ## 3.2.0-next.4
10
+
11
+ ### Patch Changes
12
+
13
+ - 254b2397: Update manifest definitions
14
+
15
+ ## 3.2.0-next.3
16
+
17
+ ### Patch Changes
18
+
19
+ - b2cef71d: Update manifest definitions
20
+
21
+ ## 3.2.0-next.2
22
+
23
+ ### Minor Changes
24
+
25
+ - 7f869f7: Added manifest validation for modules using Subpages
26
+
3
27
  ## 3.1.1-next.1
4
28
 
5
29
  ### 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.