@microsoft/sp-module-interfaces 1.21.0-beta.0 → 1.21.0-beta.2
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/dist/index-internal-beta.d.ts +15 -3
- package/dist/index-internal-public.d.ts +47 -2
- package/dist/index-internal.d.ts +15 -3
- package/lib-commonjs/index.js +31 -29
- package/lib-commonjs/manifestHelpers.js +22 -19
- package/lib-commonjs/manifestSchemaValidator.js +70 -84
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.js +11 -3
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.js +10 -3
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.js +62 -67
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/ManifestType.js +18 -13
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.js +28 -7
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.js +22 -5
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.js +18 -4
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.js +18 -4
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.js +27 -7
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +61 -9
- package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +37 -3
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.js +47 -12
- package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +107 -3
- package/{lib-commonjs → lib-dts}/manifestSchemaValidator.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideWebPartManifest.d.ts +1 -3
- package/lib-dts/manifestSchemas/IPrefabAppManifest.d.ts +255 -0
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_3.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/assembly_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/commandSet_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_3.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_4.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/library_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/multi-version_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_2.manifest.d.ts +1 -1
- package/{dist → lib-dts}/tsdoc-metadata.json +1 -1
- package/lib-esm/index.js +15 -0
- package/lib-esm/manifestHelpers.js +21 -0
- package/lib-esm/manifestSchemaValidator.js +135 -0
- package/lib-esm/manifestSchemas/IAdaptiveCardExtensionManifest.js +9 -0
- package/lib-esm/manifestSchemas/IClientSideApplicationManifest.js +5 -0
- package/lib-esm/manifestSchemas/IClientSideAssemblyManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideComponentLoaderConfiguration.js +17 -0
- package/lib-esm/manifestSchemas/IClientSideComponentManifest.js +27 -0
- package/lib-esm/manifestSchemas/IClientSideExtensionManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideLibraryManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideManifestBase.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideMultiVersionManifest.js +25 -0
- package/lib-esm/manifestSchemas/IClientSideWebPartManifest.js +62 -0
- package/lib-esm/manifestSchemas/ICommandSetExtensionManifest.js +8 -0
- package/lib-esm/manifestSchemas/IPrefabAppManifest.js +7 -0
- package/lib-esm/manifestSchemas/ManifestType.js +15 -0
- package/lib-esm/manifestSchemas/examples/application.manifest.json +346 -0
- package/lib-esm/manifestSchemas/examples/application_1.manifest.js +344 -0
- package/lib-esm/manifestSchemas/examples/application_2.manifest.js +47 -0
- package/lib-esm/manifestSchemas/examples/application_3.manifest.js +42 -0
- package/lib-esm/manifestSchemas/examples/assembly.manifest.json +331 -0
- package/lib-esm/manifestSchemas/examples/assembly_1.manifest.js +336 -0
- package/lib-esm/manifestSchemas/examples/commandSet_1.manifest.js +42 -0
- package/lib-esm/manifestSchemas/examples/commandset.manifest.json +38 -0
- package/lib-esm/manifestSchemas/examples/extension.manifest.json +20 -0
- package/lib-esm/manifestSchemas/examples/extension_1.manifest.js +25 -0
- package/lib-esm/manifestSchemas/examples/extension_2.manifest.js +24 -0
- package/lib-esm/manifestSchemas/examples/extension_3.manifest.js +23 -0
- package/lib-esm/manifestSchemas/examples/extension_4.manifest.js +23 -0
- package/lib-esm/manifestSchemas/examples/library.manifest.json +330 -0
- package/lib-esm/manifestSchemas/examples/library_1.manifest.js +335 -0
- package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.js +673 -0
- package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.json +336 -0
- package/lib-esm/manifestSchemas/examples/prefab_1.manifest.js +344 -0
- package/lib-esm/manifestSchemas/examples/prefab_2.manifest.js +381 -0
- package/lib-esm/manifestSchemas/examples/prefabapp.manifest.json +379 -0
- package/lib-esm/manifestSchemas/examples/webpart.manifest.json +380 -0
- package/lib-esm/manifestSchemas/examples/webpart_1.manifest.js +350 -0
- package/lib-esm/manifestSchemas/examples/webpart_2.manifest.js +388 -0
- package/lib-esm/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +230 -0
- package/lib-esm/manifestSchemas/jsonSchemas/any-value.schema.json +8 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-application-manifest.schema.json +138 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-assembly-manifest.schema.json +45 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-loader-configuration.schema.json +273 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +131 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-extension-manifest.schema.json +61 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-library-manifest.schema.json +39 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-manifest-base.schema.json +25 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-multi-version-manifest.schema.json +118 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +348 -0
- package/lib-esm/manifestSchemas/jsonSchemas/command-set-extension-manifest.schema.json +81 -0
- package/lib-esm/manifestSchemas/jsonSchemas/guid.schema.json +6 -0
- package/lib-esm/manifestSchemas/jsonSchemas/localized-string.schema.json +33 -0
- package/lib-esm/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
- package/lib-esm/manifestSchemas/jsonSchemas/semver.schema.json +8 -0
- package/lib-esm/manifestSchemas/remote/draft-04.schema.json +137 -0
- package/lib-esm/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
- package/package.json +27 -7
- package/lib-commonjs/index.d.ts.map +0 -1
- package/lib-commonjs/manifestHelpers.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemaValidator.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts +0 -76
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/ManifestType.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts.map +0 -1
- /package/{lib-commonjs → lib-dts}/index.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestHelpers.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideApplicationManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideAssemblyManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideLibraryManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideManifestBase.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideMultiVersionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/ICommandSetExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/ManifestType.d.ts +0 -0
|
@@ -0,0 +1,388 @@
|
|
|
1
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
2
|
+
const webpartManifest = {
|
|
3
|
+
manifestVersion: 2,
|
|
4
|
+
componentType: 'WebPart',
|
|
5
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
6
|
+
alias: 'myWebPart',
|
|
7
|
+
version: '0.0.1',
|
|
8
|
+
requiresCustomScript: false,
|
|
9
|
+
loaderConfig: {
|
|
10
|
+
internalModuleBaseUrls: [
|
|
11
|
+
'https://cdn.net/'
|
|
12
|
+
],
|
|
13
|
+
entryModuleId: 'main.bundle',
|
|
14
|
+
scriptResources: {
|
|
15
|
+
frameworkA: {
|
|
16
|
+
type: 'component',
|
|
17
|
+
version: '1.2.3',
|
|
18
|
+
id: '00000000-0000-0000-0000-000000000000'
|
|
19
|
+
},
|
|
20
|
+
frameworkB: {
|
|
21
|
+
type: 'component',
|
|
22
|
+
version: '1.2.3',
|
|
23
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
24
|
+
failoverPath: 'script.js'
|
|
25
|
+
},
|
|
26
|
+
frameworkC: {
|
|
27
|
+
type: 'component',
|
|
28
|
+
version: 'latest',
|
|
29
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
30
|
+
failoverPath: {
|
|
31
|
+
path: 'script.js'
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
frameworkD: {
|
|
35
|
+
type: 'component',
|
|
36
|
+
version: 'latest',
|
|
37
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
38
|
+
failoverPath: {
|
|
39
|
+
path: 'script.js',
|
|
40
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
frameworkE: {
|
|
44
|
+
type: 'component',
|
|
45
|
+
version: '1.2.3',
|
|
46
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
47
|
+
shouldNotPreload: true
|
|
48
|
+
},
|
|
49
|
+
frameworkF: {
|
|
50
|
+
type: 'component',
|
|
51
|
+
version: '1.2.3',
|
|
52
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
53
|
+
failoverPath: 'script.js',
|
|
54
|
+
shouldNotPreload: true
|
|
55
|
+
},
|
|
56
|
+
frameworkG: {
|
|
57
|
+
type: 'component',
|
|
58
|
+
version: 'latest',
|
|
59
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
60
|
+
failoverPath: {
|
|
61
|
+
path: 'script.js'
|
|
62
|
+
},
|
|
63
|
+
shouldNotPreload: true
|
|
64
|
+
},
|
|
65
|
+
frameworkI: {
|
|
66
|
+
type: 'component',
|
|
67
|
+
version: 'latest',
|
|
68
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
69
|
+
failoverPath: {
|
|
70
|
+
path: 'script.js',
|
|
71
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
72
|
+
},
|
|
73
|
+
shouldNotPreload: true
|
|
74
|
+
},
|
|
75
|
+
frameworkJ: {
|
|
76
|
+
type: 'component',
|
|
77
|
+
version: '1.2.3',
|
|
78
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
79
|
+
shouldNotPreload: false
|
|
80
|
+
},
|
|
81
|
+
frameworkK: {
|
|
82
|
+
type: 'component',
|
|
83
|
+
version: '1.2.3',
|
|
84
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
85
|
+
failoverPath: 'script.js',
|
|
86
|
+
shouldNotPreload: false
|
|
87
|
+
},
|
|
88
|
+
frameworkL: {
|
|
89
|
+
type: 'component',
|
|
90
|
+
version: 'latest',
|
|
91
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
92
|
+
failoverPath: {
|
|
93
|
+
path: 'script.js'
|
|
94
|
+
},
|
|
95
|
+
shouldNotPreload: false
|
|
96
|
+
},
|
|
97
|
+
frameworkM: {
|
|
98
|
+
type: 'component',
|
|
99
|
+
version: 'latest',
|
|
100
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
101
|
+
failoverPath: {
|
|
102
|
+
path: 'script.js',
|
|
103
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
104
|
+
},
|
|
105
|
+
shouldNotPreload: false
|
|
106
|
+
},
|
|
107
|
+
'main.bundle': {
|
|
108
|
+
type: 'path',
|
|
109
|
+
path: 'bundle.script.js'
|
|
110
|
+
},
|
|
111
|
+
dependencyA: {
|
|
112
|
+
type: 'path',
|
|
113
|
+
path: {
|
|
114
|
+
path: 'dependencyA.script.js',
|
|
115
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
dependencyB: {
|
|
119
|
+
type: 'path',
|
|
120
|
+
path: {
|
|
121
|
+
path: 'dependencyB.script.js'
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
dependencyC: {
|
|
125
|
+
type: 'path',
|
|
126
|
+
path: 'dependencyC.script.js'
|
|
127
|
+
},
|
|
128
|
+
dependencyD: {
|
|
129
|
+
type: 'path',
|
|
130
|
+
path: {
|
|
131
|
+
path: 'dependencyD.script.js',
|
|
132
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
133
|
+
},
|
|
134
|
+
shouldNotPreload: true
|
|
135
|
+
},
|
|
136
|
+
dependencyE: {
|
|
137
|
+
type: 'path',
|
|
138
|
+
path: {
|
|
139
|
+
path: 'dependencyE.script.js'
|
|
140
|
+
},
|
|
141
|
+
shouldNotPreload: true
|
|
142
|
+
},
|
|
143
|
+
dependencyF: {
|
|
144
|
+
type: 'path',
|
|
145
|
+
path: 'dependencyF.script.js',
|
|
146
|
+
shouldNotPreload: true
|
|
147
|
+
},
|
|
148
|
+
dependencyG: {
|
|
149
|
+
type: 'path',
|
|
150
|
+
path: {
|
|
151
|
+
path: 'dependencyG.script.js',
|
|
152
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
153
|
+
},
|
|
154
|
+
shouldNotPreload: false
|
|
155
|
+
},
|
|
156
|
+
dependencyH: {
|
|
157
|
+
type: 'path',
|
|
158
|
+
path: {
|
|
159
|
+
path: 'dependencyH.script.js'
|
|
160
|
+
},
|
|
161
|
+
shouldNotPreload: false
|
|
162
|
+
},
|
|
163
|
+
dependencyI: {
|
|
164
|
+
type: 'path',
|
|
165
|
+
path: 'dependencyI.script.js',
|
|
166
|
+
shouldNotPreload: false
|
|
167
|
+
},
|
|
168
|
+
stringsA: {
|
|
169
|
+
type: 'localizedPath',
|
|
170
|
+
defaultPath: 'stringsA_default.js'
|
|
171
|
+
},
|
|
172
|
+
stringsB: {
|
|
173
|
+
type: 'localizedPath',
|
|
174
|
+
defaultPath: {
|
|
175
|
+
path: 'stringsB_default.js',
|
|
176
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
stringsC: {
|
|
180
|
+
type: 'localizedPath',
|
|
181
|
+
defaultPath: {
|
|
182
|
+
path: 'stringsC_default.js'
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
stringsD: {
|
|
186
|
+
type: 'localizedPath',
|
|
187
|
+
defaultPath: 'stringsD_default.js',
|
|
188
|
+
paths: {
|
|
189
|
+
'en-us': 'stringsD_en-us.js',
|
|
190
|
+
'fr-fr': 'stringsD_fr-fr.js'
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
stringsE: {
|
|
194
|
+
type: 'localizedPath',
|
|
195
|
+
defaultPath: 'stringsE_default.js',
|
|
196
|
+
paths: {
|
|
197
|
+
'en-us': {
|
|
198
|
+
path: 'stringsE_en-us.js'
|
|
199
|
+
},
|
|
200
|
+
'fr-fr': 'stringsE_fr-fr.js'
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
stringsF: {
|
|
204
|
+
type: 'localizedPath',
|
|
205
|
+
defaultPath: 'stringsF_default.js',
|
|
206
|
+
paths: {
|
|
207
|
+
'en-us': {
|
|
208
|
+
path: 'stringsF_en-us.js',
|
|
209
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
210
|
+
},
|
|
211
|
+
'fr-fr': 'stringsF_fr-fr.js'
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
stringsG: {
|
|
215
|
+
type: 'localizedPath',
|
|
216
|
+
defaultPath: 'stringsG_default.js',
|
|
217
|
+
shouldNotPreload: true
|
|
218
|
+
},
|
|
219
|
+
stringsH: {
|
|
220
|
+
type: 'localizedPath',
|
|
221
|
+
defaultPath: {
|
|
222
|
+
path: 'stringsH_default.js',
|
|
223
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
224
|
+
},
|
|
225
|
+
shouldNotPreload: true
|
|
226
|
+
},
|
|
227
|
+
stringsI: {
|
|
228
|
+
type: 'localizedPath',
|
|
229
|
+
defaultPath: {
|
|
230
|
+
path: 'stringsI_default.js'
|
|
231
|
+
},
|
|
232
|
+
shouldNotPreload: true
|
|
233
|
+
},
|
|
234
|
+
stringsJ: {
|
|
235
|
+
type: 'localizedPath',
|
|
236
|
+
defaultPath: 'stringsJ_default.js',
|
|
237
|
+
paths: {
|
|
238
|
+
'en-us': 'stringsJ_en-us.js',
|
|
239
|
+
'fr-fr': 'stringsJ_fr-fr.js'
|
|
240
|
+
},
|
|
241
|
+
shouldNotPreload: true
|
|
242
|
+
},
|
|
243
|
+
stringsK: {
|
|
244
|
+
type: 'localizedPath',
|
|
245
|
+
defaultPath: 'stringsK_default.js',
|
|
246
|
+
paths: {
|
|
247
|
+
'en-us': {
|
|
248
|
+
path: 'stringsK_en-us.js'
|
|
249
|
+
},
|
|
250
|
+
'fr-fr': 'stringsK_fr-fr.js'
|
|
251
|
+
},
|
|
252
|
+
shouldNotPreload: true
|
|
253
|
+
},
|
|
254
|
+
stringsL: {
|
|
255
|
+
type: 'localizedPath',
|
|
256
|
+
defaultPath: 'stringsL_default.js',
|
|
257
|
+
paths: {
|
|
258
|
+
'en-us': {
|
|
259
|
+
path: 'stringsL_en-us.js',
|
|
260
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
261
|
+
},
|
|
262
|
+
'fr-fr': 'stringsL_fr-fr.js'
|
|
263
|
+
},
|
|
264
|
+
shouldNotPreload: true
|
|
265
|
+
},
|
|
266
|
+
stringsM: {
|
|
267
|
+
type: 'localizedPath',
|
|
268
|
+
defaultPath: 'stringsM_default.js',
|
|
269
|
+
shouldNotPreload: false
|
|
270
|
+
},
|
|
271
|
+
stringsN: {
|
|
272
|
+
type: 'localizedPath',
|
|
273
|
+
defaultPath: {
|
|
274
|
+
path: 'stringsN_default.js',
|
|
275
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
276
|
+
},
|
|
277
|
+
shouldNotPreload: false
|
|
278
|
+
},
|
|
279
|
+
stringsO: {
|
|
280
|
+
type: 'localizedPath',
|
|
281
|
+
defaultPath: {
|
|
282
|
+
path: 'stringsO_default.js'
|
|
283
|
+
},
|
|
284
|
+
shouldNotPreload: false
|
|
285
|
+
},
|
|
286
|
+
stringsP: {
|
|
287
|
+
type: 'localizedPath',
|
|
288
|
+
defaultPath: 'stringsP_default.js',
|
|
289
|
+
paths: {
|
|
290
|
+
'en-us': 'stringsP_en-us.js',
|
|
291
|
+
'fr-fr': 'stringsP_fr-fr.js'
|
|
292
|
+
},
|
|
293
|
+
shouldNotPreload: false
|
|
294
|
+
},
|
|
295
|
+
stringsQ: {
|
|
296
|
+
type: 'localizedPath',
|
|
297
|
+
defaultPath: 'stringsQ_default.js',
|
|
298
|
+
paths: {
|
|
299
|
+
'en-us': {
|
|
300
|
+
path: 'stringsQ_en-us.js'
|
|
301
|
+
},
|
|
302
|
+
'fr-fr': 'stringsQ_fr-fr.js'
|
|
303
|
+
},
|
|
304
|
+
shouldNotPreload: false
|
|
305
|
+
},
|
|
306
|
+
stringsR: {
|
|
307
|
+
type: 'localizedPath',
|
|
308
|
+
defaultPath: 'stringsR_default.js',
|
|
309
|
+
paths: {
|
|
310
|
+
'en-us': {
|
|
311
|
+
path: 'stringsR_en-us.js',
|
|
312
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
313
|
+
},
|
|
314
|
+
'fr-fr': 'stringsR_fr-fr.js'
|
|
315
|
+
},
|
|
316
|
+
shouldNotPreload: false
|
|
317
|
+
},
|
|
318
|
+
nonAmdA: {
|
|
319
|
+
type: 'path',
|
|
320
|
+
path: 'nonAmdA.js',
|
|
321
|
+
globalName: 'nonAmdA'
|
|
322
|
+
},
|
|
323
|
+
nonAmdB: {
|
|
324
|
+
type: 'path',
|
|
325
|
+
path: 'nonAmdB.js',
|
|
326
|
+
globalName: 'nonAmdB',
|
|
327
|
+
globalDependencies: [
|
|
328
|
+
'nonAmdB'
|
|
329
|
+
]
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
preconfiguredEntries: [
|
|
334
|
+
{
|
|
335
|
+
title: {
|
|
336
|
+
default: 'asdf'
|
|
337
|
+
},
|
|
338
|
+
description: {
|
|
339
|
+
default: 'asdf jkl'
|
|
340
|
+
},
|
|
341
|
+
iconImageUrl: 'https://contoso.com/chart.png',
|
|
342
|
+
properties: {},
|
|
343
|
+
groupId: '1bc7927e-4a5e-4520-b540-71305c79c20a' // Planning and Process
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
title: {
|
|
347
|
+
default: 'asdf',
|
|
348
|
+
'en-us': 'foobar'
|
|
349
|
+
},
|
|
350
|
+
description: {
|
|
351
|
+
default: 'asdf jkl',
|
|
352
|
+
'en-us': 'asdf'
|
|
353
|
+
},
|
|
354
|
+
iconImageUrl: 'https://contoso.com/chart.png',
|
|
355
|
+
properties: {
|
|
356
|
+
a: 'b',
|
|
357
|
+
c: 'd'
|
|
358
|
+
},
|
|
359
|
+
group: {
|
|
360
|
+
default: 'asdf'
|
|
361
|
+
},
|
|
362
|
+
groupId: '0314dcd9-9acb-4ab2-886e-f8881ffb5192' // Customized Group
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
title: {
|
|
366
|
+
default: 'asdf',
|
|
367
|
+
'en-us': 'foobar'
|
|
368
|
+
},
|
|
369
|
+
description: {
|
|
370
|
+
default: 'asdf jkl',
|
|
371
|
+
'en-us': 'asdf'
|
|
372
|
+
},
|
|
373
|
+
iconImageUrl: 'https://contoso.com/chart.png',
|
|
374
|
+
properties: {
|
|
375
|
+
a: 'b',
|
|
376
|
+
c: 'd'
|
|
377
|
+
},
|
|
378
|
+
group: {
|
|
379
|
+
default: 'asdf',
|
|
380
|
+
'en-us': 'asdfasdf'
|
|
381
|
+
},
|
|
382
|
+
groupId: '1db70b09-46dc-4fa1-9c97-dcce28dad5d9' // Customized Group
|
|
383
|
+
}
|
|
384
|
+
]
|
|
385
|
+
};
|
|
386
|
+
export default webpartManifest;
|
|
387
|
+
|
|
388
|
+
//#sourceMappingUrl=./webpart_2.manifest.js.map
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "adaptive-card-extension-manifest.schema.json",
|
|
3
|
+
"title": "Adaptive Card Extension manifest",
|
|
4
|
+
"description": "All Adaptive Card Extension built on the SharePoint framework need a valid component manifest. This interface represents properties that are required by all types of BaseAdaptiveCardExtension. Adaptive Card Extension specific manifests will extend this interface to add properties required by that component type.",
|
|
5
|
+
"definitions": {
|
|
6
|
+
"predefinedGroups": {
|
|
7
|
+
"oneOf": [
|
|
8
|
+
{
|
|
9
|
+
"title": "Text, media, and content",
|
|
10
|
+
"description": "This group includes AdaptiveCardExtensions that display text, multi-media, documents, information from the web, and other rich content.",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"pattern": "^cf066440-0614-43d6-98ae-0b31cf14c7c3$"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"title": "Documents, lists, and libraries",
|
|
16
|
+
"description": "This group includes AdaptiveCardExtensions that organize, group, and filter content to help users discover information.",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"pattern": "^1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489$"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"title": "Feeds",
|
|
22
|
+
"description": "This group includes AdaptiveCardExtensions that facilitate information sharing, team work, and social interactions.",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"pattern": "^75e22ed5-fa14-4829-850a-c890608aca2d$"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"title": "News, people and events",
|
|
28
|
+
"description": "This group includes AdaptiveCardExtensions that empower team productivity with the use of planning and process tools.",
|
|
29
|
+
"type": "string",
|
|
30
|
+
"pattern": "^1bc7927e-4a5e-4520-b540-71305c79c20a$"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"title": "Data Analysis",
|
|
34
|
+
"description": "This group includes AdaptiveCardExtensions for tracking and analyzing data, and for integrating business flow with pages.",
|
|
35
|
+
"type": "string",
|
|
36
|
+
"pattern": "^4aca9e90-eff5-4fa1-bac7-728f5f157b66$"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"title": "Regional information",
|
|
40
|
+
"description": "This group includes AdaptiveCardExtensions that display information based on current region and geographical location",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"pattern": "^cfc8bda5-cb9b-49e3-8526-2ee6e52b256a$"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"title": "Advanced",
|
|
46
|
+
"description": "This group includes AdaptiveCardExtensions not in other categories.",
|
|
47
|
+
"type": "string",
|
|
48
|
+
"pattern": "^5c03119e-3074-46fd-976b-c60198311f70$"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
"type": "object",
|
|
55
|
+
"allOf": [
|
|
56
|
+
{
|
|
57
|
+
"type": "object",
|
|
58
|
+
"properties": {
|
|
59
|
+
"$schema": { "type": "string" },
|
|
60
|
+
|
|
61
|
+
"manifestVersion": { "$ref": "any-value.schema.json" },
|
|
62
|
+
"id": { "$ref": "any-value.schema.json" },
|
|
63
|
+
"alias": { "$ref": "any-value.schema.json" },
|
|
64
|
+
"properties": { "$ref": "any-value.schema.json" },
|
|
65
|
+
"version": { "$ref": "any-value.schema.json" },
|
|
66
|
+
"loaderConfig": { "$ref": "any-value.schema.json" },
|
|
67
|
+
"preconfiguredEntries": { "$ref": "any-value.schema.json" },
|
|
68
|
+
"componentType": { "$ref": "any-value.schema.json" },
|
|
69
|
+
"preloadComponents": { "$ref": "any-value.schema.json" },
|
|
70
|
+
"requiresCustomScript": { "$ref": "any-value.schema.json" },
|
|
71
|
+
"safeWithCustomScriptDisabled": { "$ref": "any-value.schema.json" },
|
|
72
|
+
"loadLegacyFabricCss": { "$ref": "any-value.schema.json" },
|
|
73
|
+
"experimentalData": {
|
|
74
|
+
"type": "object",
|
|
75
|
+
"title": "Experimental property bag",
|
|
76
|
+
"description": "Only use for properties not ready for production."
|
|
77
|
+
},
|
|
78
|
+
"hiddenFromToolbox": {
|
|
79
|
+
"type": "boolean",
|
|
80
|
+
"title": "Hidden from the modern SharePoint toolbox",
|
|
81
|
+
"description": "If set to \"true\", this AdaptiveCardExtension will not be visible on the modern SharePoint toolbox."
|
|
82
|
+
},
|
|
83
|
+
"isolationLevel": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"title": "Isolation Level",
|
|
86
|
+
"description": "Describes the level of isolation needed for the \"AdaptiveCardExtension\".",
|
|
87
|
+
"enum": ["None", "DOMIsolation", "DomainIsolation"]
|
|
88
|
+
},
|
|
89
|
+
"useFallbackWhenPropertiesUpdatedExternally": {
|
|
90
|
+
"type": "boolean",
|
|
91
|
+
"title": "Use fallback when properties updated externally",
|
|
92
|
+
"description": "If true, the AdaptiveCardExtension will be disposed and reloaded when the AdaptiveCardExtension data is updated by an external source. If false, the AdaptiveCardExtension data will be deserialized and the properties of the AdaptiveCardExtension will be updated, onAfterPropertiesUpdatedExternally will be executed. If undefined, AdaptiveCardExtensions developed with SPFx version below 1.9 will default to true and AdaptiveCardExtensions developed with a SPFx version 1.9 or greater will default to false."
|
|
93
|
+
},
|
|
94
|
+
"supportedHosts": {
|
|
95
|
+
"description": "An array indicates the AdaptiveCardExtension supports any of following hosts. Currently, only Dashboard is supported.",
|
|
96
|
+
"type": "array",
|
|
97
|
+
"items": {
|
|
98
|
+
"type": "string",
|
|
99
|
+
"enum": ["Dashboard"]
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"personalization": {
|
|
103
|
+
"description": "The scope of the personalization on how an AdaptiveCardExtension can be personalized by an end user.",
|
|
104
|
+
"type": "array",
|
|
105
|
+
"items": {
|
|
106
|
+
"type": "string",
|
|
107
|
+
"enum": ["Disallow", "Allow"]
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"additionalProperties": false
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"$ref": "client-side-component-manifest.schema.json#/definitions/clientSideComponentManifest"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"type": "object",
|
|
118
|
+
"required": ["preconfiguredEntries", "componentType"],
|
|
119
|
+
"properties": {
|
|
120
|
+
"componentType": {
|
|
121
|
+
"type": "string",
|
|
122
|
+
"enum": ["AdaptiveCardExtension"]
|
|
123
|
+
},
|
|
124
|
+
|
|
125
|
+
"preconfiguredEntries": {
|
|
126
|
+
"title": "Pre-configured Entries",
|
|
127
|
+
"description": "A AdaptiveCardExtension can have pre-configured properties like the title, description, toolbox group name and AdaptiveCardExtension specific custom properties.",
|
|
128
|
+
"type": "array",
|
|
129
|
+
"minItems": 1,
|
|
130
|
+
"items": {
|
|
131
|
+
"description": "This interface specifies the set of properties that can be pre-configured by a AdaptiveCardExtension developer. Each pre-configured instance of the AdaptiveCardExtension will need a copy of these properties. Organization admins and content authors can modify these properties on a need basis.",
|
|
132
|
+
"type": "object",
|
|
133
|
+
|
|
134
|
+
"properties": {
|
|
135
|
+
"cardSize": {
|
|
136
|
+
"title": "CardSize",
|
|
137
|
+
"description": "Size of the AdaptiveCardExtension when it is rendered. This is value must be one of the supported CardSizes defined in the sp-adaptive-card-base project",
|
|
138
|
+
"type": "string",
|
|
139
|
+
"enum": ["Medium", "Large"]
|
|
140
|
+
},
|
|
141
|
+
"title": {
|
|
142
|
+
"title": "Title",
|
|
143
|
+
"description": "Title of the AdaptiveCardExtension represented as a single a dictionary of locale keys to title values. This value will be displayed to the user in the toolbox. A dictionary must contain a \"default\" key. This title should be used in the Toolbox and other display areas. The AdaptiveCardExtension developer may give an initial title to the webpart. The organization admin and page author will have the ability to change this title as per need.",
|
|
144
|
+
"$ref": "localized-string.schema.json"
|
|
145
|
+
},
|
|
146
|
+
|
|
147
|
+
"description": {
|
|
148
|
+
"title": "Description",
|
|
149
|
+
"description": "Description of the AdaptiveCardExtension represented as a dictionary of locale keys to description values. This value will be displayed to the user in the toolbox. A dictionary must contain a 'default' key. This description should be used in the Toolbox tooltip and other display areas. The AdaptiveCardExtension developer may give an initial description to the webpart. The organization admin and page author will have the ability to change this description as per need.",
|
|
150
|
+
"$ref": "localized-string.schema.json"
|
|
151
|
+
},
|
|
152
|
+
|
|
153
|
+
"officeFabricIconFontName": {
|
|
154
|
+
"title": "Office Fabric Icon Name",
|
|
155
|
+
"description": " The icon for the AdaptiveCardExtension, to be displayed in the toolbox, represented as a character name in the Office 365 icon font file. The icon font is specified here: http://o365icons.cloudapp.net/. If this field has a value, the 'iconImageUrl' field will be ignored.",
|
|
156
|
+
"type": "string",
|
|
157
|
+
"minLength": 1
|
|
158
|
+
},
|
|
159
|
+
|
|
160
|
+
"iconImageUrl": {
|
|
161
|
+
"title": "Icon Image URL",
|
|
162
|
+
"description": " The icon for the WebPart, to be displayed in the toolbox, represented an image URL. The image at the URL must be exactly 38x38 px. If the 'officeFabricIconName' field does not have a value, this field must have a value.",
|
|
163
|
+
"type": "string",
|
|
164
|
+
"minLength": 10
|
|
165
|
+
},
|
|
166
|
+
|
|
167
|
+
"groupId": {
|
|
168
|
+
"title": "Group ID",
|
|
169
|
+
"description": "The group id to determine which modern group contains the AdaptiveCardExtension in modern site page. The SharePoint Framework reserves group ids for predefined groups. The developer can pick one from those groups. If the developer fills an id not in the predefined groups, it falls back to Other group.",
|
|
170
|
+
"type": "string",
|
|
171
|
+
"anyOf": [
|
|
172
|
+
{
|
|
173
|
+
"title": "Predefined Group",
|
|
174
|
+
"$ref": "#/definitions/predefinedGroups"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"description": "If the group ID is not from the predefined group list, the AdaptiveCardExtension will go to Other group.",
|
|
178
|
+
"$ref": "guid.schema.json"
|
|
179
|
+
}
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
|
|
183
|
+
"group": {
|
|
184
|
+
"title": "Group",
|
|
185
|
+
"description": "The group name in web part picker. If no value is provided, then the ACE will be displayed in the Miscellaneous group.",
|
|
186
|
+
"$ref": "localized-string.schema.json"
|
|
187
|
+
},
|
|
188
|
+
|
|
189
|
+
"tags": {
|
|
190
|
+
"title": "Tags",
|
|
191
|
+
"description": "This field is used to tag a AdaptiveCardExtension with keywords that are different from the AdaptiveCardExtension group name. Tags can be used for categorization and searching of AdaptiveCardExtensions. For example, in the AdaptiveCardExtension toolbox.",
|
|
192
|
+
"type": "array",
|
|
193
|
+
"maxItems": 10,
|
|
194
|
+
"items": {
|
|
195
|
+
"$ref": "localized-string.schema.json"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
|
|
199
|
+
"properties": {
|
|
200
|
+
"title": "Properties",
|
|
201
|
+
"description": "every AdaptiveCardExtension is expected to have some custom properties. e.g. an image AdaptiveCardExtension may have the image url and caption text as custom properties, a list AdaptiveCardExtension may have the list id and list title as custom properties, and so on.",
|
|
202
|
+
"$ref": "any-value.schema.json"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
|
|
206
|
+
"anyOf": [
|
|
207
|
+
{
|
|
208
|
+
"required": [
|
|
209
|
+
"title",
|
|
210
|
+
"description",
|
|
211
|
+
"officeFabricIconFontName",
|
|
212
|
+
"groupId",
|
|
213
|
+
"properties",
|
|
214
|
+
"cardSize"
|
|
215
|
+
]
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"required": ["title", "description", "iconImageUrl", "groupId", "properties", "cardSize"]
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
|
|
222
|
+
"additionalProperties": false
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
|
|
227
|
+
"additionalProperties": true
|
|
228
|
+
}
|
|
229
|
+
]
|
|
230
|
+
}
|