@forge/manifest 3.2.0-next.4 → 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,11 @@
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
+
3
9
  ## 3.2.0-next.4
4
10
 
5
11
  ### 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.
@@ -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": [
@@ -8768,6 +8791,41 @@
8768
8791
  },
8769
8792
  "baseUrl": {
8770
8793
  "type": "string"
8794
+ },
8795
+ "operations": {
8796
+ "description": "The type of operations done in the remote",
8797
+ "type": "array",
8798
+ "items": {
8799
+ "type": "string",
8800
+ "enum": [
8801
+ "storage",
8802
+ "other"
8803
+ ]
8804
+ },
8805
+ "minItems": 1
8806
+ },
8807
+ "storage": {
8808
+ "description": "Options related to remote storage",
8809
+ "type": "object",
8810
+ "required": [
8811
+ "classifications"
8812
+ ],
8813
+ "additionalProperties": false,
8814
+ "properties": {
8815
+ "classifications": {
8816
+ "description": "Labels to classify the type of data stored",
8817
+ "type": "array",
8818
+ "items": {
8819
+ "type": "string",
8820
+ "enum": [
8821
+ "ugc",
8822
+ "pii",
8823
+ "other"
8824
+ ]
8825
+ },
8826
+ "minItems": 1
8827
+ }
8828
+ }
8771
8829
  }
8772
8830
  }
8773
8831
  }
@@ -115,6 +115,15 @@ export interface App {
115
115
  runtime?: Runtime;
116
116
  licensing?: Licensing;
117
117
  connect?: Connect;
118
+ /**
119
+ * Options related to hosted storage
120
+ */
121
+ storage?: {
122
+ /**
123
+ * Labels to classify the type of data stored
124
+ */
125
+ classifications: ['ugc' | 'pii' | 'other', ...('ugc' | 'pii' | 'other')[]];
126
+ };
118
127
  }
119
128
  /**
120
129
  * Options related to the Forge Javascript runtime.
@@ -51916,6 +51925,19 @@ export interface RemotesSchema {
51916
51925
  */
51917
51926
  key: string;
51918
51927
  baseUrl: string;
51928
+ /**
51929
+ * The type of operations done in the remote
51930
+ */
51931
+ operations?: ['storage' | 'other', ...('storage' | 'other')[]];
51932
+ /**
51933
+ * Options related to remote storage
51934
+ */
51935
+ storage?: {
51936
+ /**
51937
+ * Labels to classify the type of data stored
51938
+ */
51939
+ classifications: ['ugc' | 'pii' | 'other', ...('ugc' | 'pii' | 'other')[]];
51940
+ };
51919
51941
  }
51920
51942
  export interface Providers {
51921
51943
  auth: Auth;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "3.2.0-next.4",
3
+ "version": "3.2.0-next.5",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {