@forge/manifest 3.2.0-next.3 → 3.2.0-next.6
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 +18 -0
- package/out/schema/basic-manifest-schema.json +23 -0
- package/out/schema/basic-manifest.d.ts +9 -0
- package/out/schema/manifest-schema.json +280 -222
- package/out/schema/manifest.d.ts +245 -223
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 3.2.0-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 860c4fb0: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 3.2.0-next.5
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 72e020c: Adds schemas properties for Data Classifications
|
|
14
|
+
|
|
15
|
+
## 3.2.0-next.4
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 254b2397: Update manifest definitions
|
|
20
|
+
|
|
3
21
|
## 3.2.0-next.3
|
|
4
22
|
|
|
5
23
|
### 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.
|