@wix/auto_sdk_data-extension-schema_schemas 1.0.83 → 1.0.85
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/build/cjs/index.d.ts +12 -3
- package/build/cjs/index.js +85 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +30 -5
- package/build/cjs/index.typings.js +76 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +21 -2
- package/build/cjs/meta.js +64 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +12 -3
- package/build/es/index.mjs +84 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +30 -5
- package/build/es/index.typings.mjs +75 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +21 -2
- package/build/es/meta.mjs +63 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +12 -3
- package/build/internal/cjs/index.js +85 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +30 -5
- package/build/internal/cjs/index.typings.js +76 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +21 -2
- package/build/internal/cjs/meta.js +64 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +12 -3
- package/build/internal/es/index.mjs +84 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +30 -5
- package/build/internal/es/index.typings.mjs +75 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +21 -2
- package/build/internal/es/meta.mjs +63 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateDataExtensionSchemaRequest as CreateDataExtensionSchemaRequest$1, CreateDataExtensionSchemaResponse as CreateDataExtensionSchemaResponse$1, UpdateDataExtensionSchemaRequest as UpdateDataExtensionSchemaRequest$1, UpdateDataExtensionSchemaResponse as UpdateDataExtensionSchemaResponse$1, ListDataExtensionSchemasRequest as ListDataExtensionSchemasRequest$1, ListDataExtensionSchemasResponse as ListDataExtensionSchemasResponse$1, DeleteByWhiteListedMetaSiteRequest as DeleteByWhiteListedMetaSiteRequest$1, DeleteByWhiteListedMetaSiteResponse as DeleteByWhiteListedMetaSiteResponse$1 } from './index.typings.js';
|
|
1
|
+
import { CreateDataExtensionSchemaRequest as CreateDataExtensionSchemaRequest$1, CreateDataExtensionSchemaResponse as CreateDataExtensionSchemaResponse$1, UpdateDataExtensionSchemaRequest as UpdateDataExtensionSchemaRequest$1, UpdateDataExtensionSchemaResponse as UpdateDataExtensionSchemaResponse$1, ListDataExtensionSchemasRequest as ListDataExtensionSchemasRequest$1, ListDataExtensionSchemasResponse as ListDataExtensionSchemasResponse$1, DeleteByWhiteListedMetaSiteRequest as DeleteByWhiteListedMetaSiteRequest$1, DeleteByWhiteListedMetaSiteResponse as DeleteByWhiteListedMetaSiteResponse$1, DeleteUserDefinedFieldsRequest as DeleteUserDefinedFieldsRequest$1, DeleteUserDefinedFieldsResponse as DeleteUserDefinedFieldsResponse$1 } from './index.typings.js';
|
|
2
2
|
import '@wix/sdk-types';
|
|
3
3
|
|
|
4
4
|
/** A Data Extension Schema is the [JSON schema](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/the-json-schema) within a [schema plugin extension](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) defining `extendedFields` that are added to a Wix API's service object. */
|
|
@@ -186,6 +186,24 @@ interface DeleteByWhiteListedMetaSiteResponse {
|
|
|
186
186
|
/** has more */
|
|
187
187
|
hasMore?: boolean;
|
|
188
188
|
}
|
|
189
|
+
interface DeleteUserDefinedFieldsRequest {
|
|
190
|
+
/**
|
|
191
|
+
* id
|
|
192
|
+
* @format GUID
|
|
193
|
+
*/
|
|
194
|
+
dataExtensionSchemaId: string | null;
|
|
195
|
+
/**
|
|
196
|
+
* List of fields paths to delete
|
|
197
|
+
* @minSize 1
|
|
198
|
+
* @maxSize 10
|
|
199
|
+
* @maxLength 1000
|
|
200
|
+
*/
|
|
201
|
+
fieldsToDelete: string[];
|
|
202
|
+
}
|
|
203
|
+
interface DeleteUserDefinedFieldsResponse {
|
|
204
|
+
/** Updated schema. */
|
|
205
|
+
dataExtensionSchema?: DataExtensionSchema;
|
|
206
|
+
}
|
|
189
207
|
|
|
190
208
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
191
209
|
getUrl: (context: any) => string;
|
|
@@ -201,5 +219,6 @@ declare function createDataExtensionSchema(): __PublicMethodMetaInfo<'POST', {},
|
|
|
201
219
|
declare function updateDataExtensionSchema(): __PublicMethodMetaInfo<'PUT', {}, UpdateDataExtensionSchemaRequest$1, UpdateDataExtensionSchemaRequest, UpdateDataExtensionSchemaResponse$1, UpdateDataExtensionSchemaResponse>;
|
|
202
220
|
declare function listDataExtensionSchemas(): __PublicMethodMetaInfo<'GET', {}, ListDataExtensionSchemasRequest$1, ListDataExtensionSchemasRequest, ListDataExtensionSchemasResponse$1, ListDataExtensionSchemasResponse>;
|
|
203
221
|
declare function deleteByWhiteListedMetaSite(): __PublicMethodMetaInfo<'POST', {}, DeleteByWhiteListedMetaSiteRequest$1, DeleteByWhiteListedMetaSiteRequest, DeleteByWhiteListedMetaSiteResponse$1, DeleteByWhiteListedMetaSiteResponse>;
|
|
222
|
+
declare function deleteUserDefinedFields(): __PublicMethodMetaInfo<'POST', {}, DeleteUserDefinedFieldsRequest$1, DeleteUserDefinedFieldsRequest, DeleteUserDefinedFieldsResponse$1, DeleteUserDefinedFieldsResponse>;
|
|
204
223
|
|
|
205
|
-
export { type __PublicMethodMetaInfo, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, updateDataExtensionSchema };
|
|
224
|
+
export { type __PublicMethodMetaInfo, createDataExtensionSchema, deleteByWhiteListedMetaSite, deleteUserDefinedFields, listDataExtensionSchemas, updateDataExtensionSchema };
|
package/build/cjs/meta.js
CHANGED
|
@@ -22,6 +22,7 @@ var meta_exports = {};
|
|
|
22
22
|
__export(meta_exports, {
|
|
23
23
|
createDataExtensionSchema: () => createDataExtensionSchema2,
|
|
24
24
|
deleteByWhiteListedMetaSite: () => deleteByWhiteListedMetaSite2,
|
|
25
|
+
deleteUserDefinedFields: () => deleteUserDefinedFields2,
|
|
25
26
|
listDataExtensionSchemas: () => listDataExtensionSchemas2,
|
|
26
27
|
updateDataExtensionSchema: () => updateDataExtensionSchema2
|
|
27
28
|
});
|
|
@@ -85,6 +86,9 @@ function createDataExtensionSchema(payload) {
|
|
|
85
86
|
method: "POST",
|
|
86
87
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema",
|
|
87
88
|
packageName: PACKAGE_NAME,
|
|
89
|
+
migrationOptions: {
|
|
90
|
+
optInTransformResponse: true
|
|
91
|
+
},
|
|
88
92
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
89
93
|
protoPath: "/v1/schemas",
|
|
90
94
|
data: serializedData,
|
|
@@ -121,6 +125,9 @@ function updateDataExtensionSchema(payload) {
|
|
|
121
125
|
method: "PUT",
|
|
122
126
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema",
|
|
123
127
|
packageName: PACKAGE_NAME,
|
|
128
|
+
migrationOptions: {
|
|
129
|
+
optInTransformResponse: true
|
|
130
|
+
},
|
|
124
131
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
125
132
|
protoPath: "/v1/schemas",
|
|
126
133
|
data: serializedData,
|
|
@@ -148,6 +155,9 @@ function listDataExtensionSchemas(payload) {
|
|
|
148
155
|
method: "GET",
|
|
149
156
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas",
|
|
150
157
|
packageName: PACKAGE_NAME,
|
|
158
|
+
migrationOptions: {
|
|
159
|
+
optInTransformResponse: true
|
|
160
|
+
},
|
|
151
161
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
152
162
|
protoPath: "/v1/schemas",
|
|
153
163
|
data: payload,
|
|
@@ -175,6 +185,9 @@ function deleteByWhiteListedMetaSite(payload) {
|
|
|
175
185
|
method: "POST",
|
|
176
186
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite",
|
|
177
187
|
packageName: PACKAGE_NAME,
|
|
188
|
+
migrationOptions: {
|
|
189
|
+
optInTransformResponse: true
|
|
190
|
+
},
|
|
178
191
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
179
192
|
protoPath: "/v1/schemas/delete-by-white-listed-meta-site",
|
|
180
193
|
data: payload,
|
|
@@ -186,6 +199,36 @@ function deleteByWhiteListedMetaSite(payload) {
|
|
|
186
199
|
}
|
|
187
200
|
return __deleteByWhiteListedMetaSite;
|
|
188
201
|
}
|
|
202
|
+
function deleteUserDefinedFields(payload) {
|
|
203
|
+
function __deleteUserDefinedFields({ host }) {
|
|
204
|
+
const metadata = {
|
|
205
|
+
entityFqdn: "wix.data_extensions.v1.data_extension_schema",
|
|
206
|
+
method: "POST",
|
|
207
|
+
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields",
|
|
208
|
+
packageName: PACKAGE_NAME,
|
|
209
|
+
migrationOptions: {
|
|
210
|
+
optInTransformResponse: true
|
|
211
|
+
},
|
|
212
|
+
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
213
|
+
protoPath: "/v1/schemas/delete-user-defined-fields",
|
|
214
|
+
data: payload,
|
|
215
|
+
host
|
|
216
|
+
}),
|
|
217
|
+
data: payload,
|
|
218
|
+
transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
|
|
219
|
+
{
|
|
220
|
+
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
221
|
+
paths: [
|
|
222
|
+
{ path: "dataExtensionSchema.updatedDate" },
|
|
223
|
+
{ path: "dataExtensionSchema.createdDate" }
|
|
224
|
+
]
|
|
225
|
+
}
|
|
226
|
+
])
|
|
227
|
+
};
|
|
228
|
+
return metadata;
|
|
229
|
+
}
|
|
230
|
+
return __deleteUserDefinedFields;
|
|
231
|
+
}
|
|
189
232
|
|
|
190
233
|
// src/data-extensions-v1-data-extension-schema-schemas.meta.ts
|
|
191
234
|
function createDataExtensionSchema2() {
|
|
@@ -268,10 +311,31 @@ function deleteByWhiteListedMetaSite2() {
|
|
|
268
311
|
__originalResponseType: null
|
|
269
312
|
};
|
|
270
313
|
}
|
|
314
|
+
function deleteUserDefinedFields2() {
|
|
315
|
+
const payload = {};
|
|
316
|
+
const getRequestOptions = deleteUserDefinedFields(
|
|
317
|
+
payload
|
|
318
|
+
);
|
|
319
|
+
const getUrl = (context) => {
|
|
320
|
+
const { url } = getRequestOptions(context);
|
|
321
|
+
return url;
|
|
322
|
+
};
|
|
323
|
+
return {
|
|
324
|
+
getUrl,
|
|
325
|
+
httpMethod: "POST",
|
|
326
|
+
path: "/v1/schemas/delete-user-defined-fields",
|
|
327
|
+
pathParams: {},
|
|
328
|
+
__requestType: null,
|
|
329
|
+
__originalRequestType: null,
|
|
330
|
+
__responseType: null,
|
|
331
|
+
__originalResponseType: null
|
|
332
|
+
};
|
|
333
|
+
}
|
|
271
334
|
// Annotate the CommonJS export names for ESM import in node:
|
|
272
335
|
0 && (module.exports = {
|
|
273
336
|
createDataExtensionSchema,
|
|
274
337
|
deleteByWhiteListedMetaSite,
|
|
338
|
+
deleteUserDefinedFields,
|
|
275
339
|
listDataExtensionSchemas,
|
|
276
340
|
updateDataExtensionSchema
|
|
277
341
|
});
|
package/build/cjs/meta.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../meta.ts","../../src/data-extensions-v1-data-extension-schema-schemas.http.ts","../../src/data-extensions-v1-data-extension-schema-schemas.meta.ts"],"sourcesContent":["export * from './src/data-extensions-v1-data-extension-schema-schemas.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\nimport {\n _Function,\n _Number,\n _Date,\n _Array,\n _Boolean,\n _Object,\n _String,\n} from './data-extensions-v1-data-extension-schema-schemas.types';\n\nfunction resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'manage._base_domain_': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n _: [\n {\n srcPath: '/_api/schema-service',\n destPath: '',\n },\n ],\n 'editor.wixapps.net': [\n {\n srcPath: '/_api/schema-service',\n destPath: '',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_data-extension-schema_schemas';\n\n/** Creates a user-defined data extension schema. */\nexport function createDataExtensionSchema(\n payload: object\n): RequestOptionsFactory<any> {\n function __createDataExtensionSchema({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema',\n packageName: PACKAGE_NAME,\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createDataExtensionSchema;\n}\n\n/** Updates a user-defined data extension schema, overriding the existing data. */\nexport function updateDataExtensionSchema(\n payload: object\n): RequestOptionsFactory<any> {\n function __updateDataExtensionSchema({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'PUT' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema',\n packageName: PACKAGE_NAME,\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __updateDataExtensionSchema;\n}\n\n/** Retrieves a list of global and user-defined data extension schemas for a given FQDN. */\nexport function listDataExtensionSchemas(\n payload: object\n): RequestOptionsFactory<any> {\n function __listDataExtensionSchemas({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'GET' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas',\n packageName: PACKAGE_NAME,\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchemas.updatedDate' },\n { path: 'dataExtensionSchemas.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __listDataExtensionSchemas;\n}\n\n/** Deletes schemas of whitelisted metasite ids */\nexport function deleteByWhiteListedMetaSite(\n payload: object\n): RequestOptionsFactory<any> {\n function __deleteByWhiteListedMetaSite({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite',\n packageName: PACKAGE_NAME,\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas/delete-by-white-listed-meta-site',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __deleteByWhiteListedMetaSite;\n}\n","import * as ambassadorWixDataExtensionsV1DataExtensionSchema from './data-extensions-v1-data-extension-schema-schemas.http.js';\nimport * as ambassadorWixDataExtensionsV1DataExtensionSchemaTypes from './data-extensions-v1-data-extension-schema-schemas.types.js';\nimport * as ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes from './data-extensions-v1-data-extension-schema-schemas.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function createDataExtensionSchema(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.CreateDataExtensionSchemaRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.CreateDataExtensionSchemaRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.CreateDataExtensionSchemaResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.CreateDataExtensionSchemaResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.createDataExtensionSchema(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/schemas',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function updateDataExtensionSchema(): __PublicMethodMetaInfo<\n 'PUT',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.UpdateDataExtensionSchemaRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.UpdateDataExtensionSchemaRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.UpdateDataExtensionSchemaResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.UpdateDataExtensionSchemaResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.updateDataExtensionSchema(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'PUT',\n path: '/v1/schemas',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function listDataExtensionSchemas(): __PublicMethodMetaInfo<\n 'GET',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.ListDataExtensionSchemasRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.ListDataExtensionSchemasRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.ListDataExtensionSchemasResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.ListDataExtensionSchemasResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.listDataExtensionSchemas(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v1/schemas',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function deleteByWhiteListedMetaSite(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.DeleteByWhiteListedMetaSiteRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.DeleteByWhiteListedMetaSiteRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.DeleteByWhiteListedMetaSiteResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.DeleteByWhiteListedMetaSiteResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.deleteByWhiteListedMetaSite(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/schemas/delete-by-white-listed-meta-site',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n"],"mappings":"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","names":["createDataExtensionSchema","deleteByWhiteListedMetaSite","listDataExtensionSchemas","updateDataExtensionSchema","import_timestamp","import_rest_modules","payload","createDataExtensionSchema","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite"]}
|
|
1
|
+
{"version":3,"sources":["../../meta.ts","../../src/data-extensions-v1-data-extension-schema-schemas.http.ts","../../src/data-extensions-v1-data-extension-schema-schemas.meta.ts"],"sourcesContent":["export * from './src/data-extensions-v1-data-extension-schema-schemas.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\nimport {\n _Function,\n _Number,\n _Date,\n _Array,\n _Boolean,\n _Object,\n _String,\n} from './data-extensions-v1-data-extension-schema-schemas.types';\n\nfunction resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'manage._base_domain_': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n _: [\n {\n srcPath: '/_api/schema-service',\n destPath: '',\n },\n ],\n 'editor.wixapps.net': [\n {\n srcPath: '/_api/schema-service',\n destPath: '',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/schema-service',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_data-extension-schema_schemas';\n\n/** Creates a user-defined data extension schema. */\nexport function createDataExtensionSchema(\n payload: object\n): RequestOptionsFactory<any> {\n function __createDataExtensionSchema({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createDataExtensionSchema;\n}\n\n/** Updates a user-defined data extension schema, overriding the existing data. */\nexport function updateDataExtensionSchema(\n payload: object\n): RequestOptionsFactory<any> {\n function __updateDataExtensionSchema({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'PUT' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __updateDataExtensionSchema;\n}\n\n/** Retrieves a list of global and user-defined data extension schemas for a given FQDN. */\nexport function listDataExtensionSchemas(\n payload: object\n): RequestOptionsFactory<any> {\n function __listDataExtensionSchemas({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'GET' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchemas.updatedDate' },\n { path: 'dataExtensionSchemas.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __listDataExtensionSchemas;\n}\n\n/** Deletes schemas of whitelisted metasite ids */\nexport function deleteByWhiteListedMetaSite(\n payload: object\n): RequestOptionsFactory<any> {\n function __deleteByWhiteListedMetaSite({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas/delete-by-white-listed-meta-site',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __deleteByWhiteListedMetaSite;\n}\n\n/** Deletes a user defined field from the schema */\nexport function deleteUserDefinedFields(\n payload: object\n): RequestOptionsFactory<any> {\n function __deleteUserDefinedFields({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.data_extensions.v1.data_extension_schema',\n method: 'POST' as any,\n methodFqn:\n 'wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({\n protoPath: '/v1/schemas/delete-user-defined-fields',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'dataExtensionSchema.updatedDate' },\n { path: 'dataExtensionSchema.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __deleteUserDefinedFields;\n}\n","import * as ambassadorWixDataExtensionsV1DataExtensionSchema from './data-extensions-v1-data-extension-schema-schemas.http.js';\nimport * as ambassadorWixDataExtensionsV1DataExtensionSchemaTypes from './data-extensions-v1-data-extension-schema-schemas.types.js';\nimport * as ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes from './data-extensions-v1-data-extension-schema-schemas.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function createDataExtensionSchema(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.CreateDataExtensionSchemaRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.CreateDataExtensionSchemaRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.CreateDataExtensionSchemaResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.CreateDataExtensionSchemaResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.createDataExtensionSchema(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/schemas',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function updateDataExtensionSchema(): __PublicMethodMetaInfo<\n 'PUT',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.UpdateDataExtensionSchemaRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.UpdateDataExtensionSchemaRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.UpdateDataExtensionSchemaResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.UpdateDataExtensionSchemaResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.updateDataExtensionSchema(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'PUT',\n path: '/v1/schemas',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function listDataExtensionSchemas(): __PublicMethodMetaInfo<\n 'GET',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.ListDataExtensionSchemasRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.ListDataExtensionSchemasRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.ListDataExtensionSchemasResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.ListDataExtensionSchemasResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.listDataExtensionSchemas(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v1/schemas',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function deleteByWhiteListedMetaSite(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.DeleteByWhiteListedMetaSiteRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.DeleteByWhiteListedMetaSiteRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.DeleteByWhiteListedMetaSiteResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.DeleteByWhiteListedMetaSiteResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.deleteByWhiteListedMetaSite(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/schemas/delete-by-white-listed-meta-site',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function deleteUserDefinedFields(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.DeleteUserDefinedFieldsRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.DeleteUserDefinedFieldsRequest,\n ambassadorWixDataExtensionsV1DataExtensionSchemaUniversalTypes.DeleteUserDefinedFieldsResponse,\n ambassadorWixDataExtensionsV1DataExtensionSchemaTypes.DeleteUserDefinedFieldsResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixDataExtensionsV1DataExtensionSchema.deleteUserDefinedFields(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/schemas/delete-user-defined-fields',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n"],"mappings":"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","names":["createDataExtensionSchema","deleteByWhiteListedMetaSite","deleteUserDefinedFields","listDataExtensionSchemas","updateDataExtensionSchema","import_timestamp","import_rest_modules","payload","createDataExtensionSchema","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite","deleteUserDefinedFields"]}
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { DataExtensionSchema, UpdateDataExtensionSchemaResponse, ListDataExtensionSchemasOptions, ListDataExtensionSchemasResponse, DeleteByWhiteListedMetaSiteResponse, DataExtensionSchemaCreatedEnvelope, DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaUpdatedEnvelope } from './index.typings.mjs';
|
|
3
|
-
export { A11y, A11yAttributes, A11yAttributesWithLiterals, AcceptedDirectMessageType, AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, AcceptedSmsMessageTypeWithLiterals, Action, ActionCondition, ActionEvent, ActionName, ActionNameWithLiterals, ActionProviderSPIConfig, ActionSPIConfig, ActionSPIConfigImplementedMethods, ActionSPIConfigInterfaceConfiguration, ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, ActionSPIConfigInterfaceConfigurationTypeWithLiterals, ActionSpiConfig, ActionType, ActionTypeWithLiterals, Actions, AdaptiveComponentProviderConfig, AddCustomFields, AdditionalFeesSPIConfig, AdditionalStepInfo, AdditionalTaxGroup, AddonMarketData, Address, AddressComponentType, AddressComponentTypeOptionsOneOf, AddressComponentTypeWithLiterals, AddressInfo, AddressInfoTag, AddressInfoTagWithLiterals, AddressLine2, AdminConfigurableTextInput, AlertEnricherSpiConfiguration, AlgorithmConfig, AlgorithmType, AlgorithmTypeWithLiterals, Alignment, AlignmentWithLiterals, AllowedValuesOptions, AlternativeUri, AnchorData, AnchorMetaData, AndCondition, AndroidMobilePushConfig, AndroidStyle, AndroidStyleWithLiterals, ApiSlot, ApiWidth, AppConfig, AppConfiguration, AppData, AppDeploymentProviderConfig, AppEmbedData, AppEmbedDataAppDataOneOf, AppEnvironmentProviderConfig, AppPreviewProviderConfig, AppRuntimeDataCacheEntity, AppRuntimeDataEvent, AppType, AppTypeWithLiterals, ApplicationAutomationComponent, ApplicationProfile, ApplicationProfileProviderConfig, Appointment, AppointmentFormat, AppointmentFormatInfoOneOf, AppointmentFormatWithLiterals, Archetype, ArchetypeWithLiterals, ArrayComponentType, ArrayComponentTypeWithLiterals, ArrayItems, ArrayItemsArrayDataOneOf, ArrayType, ArrayTypeArrayItems, ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, AspectRatioWithLiterals, AssetType, AssetTypeWithLiterals, AssistantSpiConfig, AudienceProviderConfig, AudioData, AuthenticatorConfig, AutomationMetadata, AutomationTrigger, AvailabilityTimeSlotsProviderConfig, AvatarConfig, AvatarShape, AvatarShapeWithLiterals, BackOfficeCustomization, BackOfficeCustomizationSidebarEntity, BackOfficeCustomizationSidebarEntityItemOneOf, BackOfficeExtension, BackOfficeExtensionContainer, BackOfficeExtensionExtensionOneOf, BackOfficeExtensionMenuItem, BackOfficeExtensionWidget, BackOfficeExtensionWidgetAssetOneOf, BackOfficeExternalUrl, BackOfficeHostingPlatforms, BackOfficeHostingPlatformsWithLiterals, BackOfficeModal, BackOfficeModalContentOneOf, BackOfficePage, BackOfficePageAssetOneOf, BackOfficeRestrictedCustomization, BackOfficeScriptAsset, BackOfficeScriptAssetType, BackOfficeScriptAssetTypeWithLiterals, BackOfficeSidebarCategory, BackOfficeWidget, BackOfficeWidgetContentOneOf, BackdropFilter, BackendWorker, Background, BackgroundBackgroundMediaModeOneOf, BackgroundModeEnum, BackgroundModeEnumWithLiterals, BackgroundType, BackgroundTypeWithLiterals, BackofficeActionDeeplink, BarAlignment, BarAlignmentSelected, BarAlignmentSelectedWithLiterals, BaseEventMetadata, BaseInfo, BaseInstallation, Behaviors, BillingSettingsConfig, BlockType, BlockTypeWithLiterals, BlockquoteData, BlocksData, BlogPaywallProviderConfig, BookingAutomationsConfig, BookingData, BookingPolicyProviderConfig, BookingsPricingProviderConfig, BookingsResourceType, BookingsResourceTypesProviderConfig, BoolListOptions, BooleanComponentType, BooleanComponentTypeWithLiterals, BooleanExperimentExposureRule, BooleanType, Border, BorderColors, BrandIcons, BreakPoint, BreakPointSection, Breakpoint, BreakpointEnumBreakpoint, BreakpointEnumBreakpointWithLiterals, BreakpointPresetStyleOverrides, Breakpoints, BroadcastList, BrowserPushChannel, BrowserPushContentKeys, BrowserStorage, BuilderSpi, BulletedListData, Bundle, BusinessManagerPage, ButtonData, ButtonDataType, ButtonDataTypeWithLiterals, ButtonStyles, CalendarType, CalendarTypeWithLiterals, CaptionData, CardStyles, CardStylesAlignment, CardStylesAlignmentWithLiterals, CardStylesType, CardStylesTypeWithLiterals, CatalogSPIConfig, CatalogSyncConfiguration, CellStyle, ChangeableProperty, ChangeablePropertyWithLiterals, ChannelBrandIcons, ChannelBranding, ChannelChannelBranding, ChannelChannelConfiguration, ChannelChannelConfigurationMessagingConfigOneOf, ChannelConfiguration, ChannelConfigurationChannelType, ChannelConfigurationChannelTypeWithLiterals, ChannelConfigurationMessagingConfigOneOf, ChannelIcon, ChannelImplementedMethods, ChannelMediaCapabilities, ChannelType, ChannelTypeWithLiterals, Checkbox, CheckboxConfiguration, CheckboxField, CheckboxGroup, CheckboxGroupOption, CheckoutContentSPIConfig, ClientResources, ClientSideService, CodeBlockData, CodePackageComponentData, CodePanel, CollapsibleListData, Color, ColorData, ColorDefinition, ColorSelectLabeled, ColorSelectLabeledDataOneOf, Colors, CommentFilterProviderConfig, CommentModerationProviderConfig, CommentsContextProviderConfig, CommonImage, CommunicationChannelConfiguration, ComponentData, ComponentDataDataOneOf, ComponentEnricherConfig, ComponentInitialSize, ComponentMetaData, ComponentModel, ComponentReferenceDataConfig, ComponentTranslationAdditionalFieldsConfig, ComponentType, ComponentTypeWithLiterals, ComponentsValidatorConfig, Condition, ConditionBlock, ConditionNode, ConditionNodeNodeOneOf, Conditions, Configuration, ConfirmationLevel, ConfirmationLevelWithLiterals, ConnectMethod, ConnectMethodWithLiterals, ConsentCategory, ConsentCategoryWithLiterals, Consequence, ConstOrDynamicParam, ConstOrDynamicParamValueOneOf, Constraint, ContactData, ContactField, ContactFieldWithLiterals, ContactLabelsComponentData, ContactNotification, ContactsData, ContactsNotificationData, Container, ContainerBehaviors, ContainerDataOneOf, ContainerLayout, ContainerStyleOverrides, ContainerType, ContainerTypeWithLiterals, ContentData, ContentDataOverrides, ContentFill, ContentProviderConfig, ContentResizeDirection, ContentResizeDirectionWithLiterals, Context, ConversationLimitations, Coordinates, CoreApps, Corners, CountrySubdivisionListOptions, CoverImageConfiguration, CreateDataExtensionSchemaRequest, CreateDataExtensionSchemaResponse, CreateNewItemInfo, CreatedByCacheEntity, Crop, CropWithLiterals, CrossSellConfig, CssCustomPropertyAction, CssCustomPropertyItem, CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, CssDataTypeWithLiterals, CssNumber, CssPropertyAction, CssPropertyItem, CssPropertyItemDefaults, CssPropertyItemDefinitionOverrides, CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, CssPropertyTypeEnumCssPropertyTypeWithLiterals, CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, CssVariableTypeEnumCssDataTypeWithLiterals, CurrencyCodeListOptions, CustomAction, CustomActionActionExecuteOneOf, CustomChargesConfig, CustomElement, CustomElementConsentCategoryOneOf, CustomElementScriptType, CustomElementScriptTypeWithLiterals, CustomElementWidget, CustomEnum, CustomEnumOption, CustomEnumOptionCssProperty, CustomExperimentExposureRule, CustomFieldInfo, CustomFieldsType, CustomFieldsTypeWithLiterals, CustomInitialPreset, CustomOption, CustomPermission, CustomPropertyEnum, CustomPropertyEnumOption, CustomPropertyEnumOptionStyle, CustomRefData, CustomReservationsApprovalConfig, CustomRewardProviderConfig, CustomScopeConfig, CustomTriggerConfig, DCConfigData, Dashboard, DashboardAction, DashboardApplicationData, DashboardButton, DashboardComponentData, DashboardItem, DashboardPlatfromComponentData, DataAction, DataComponent, DataExtensionSchemaState, DataExtensionSchemaStateWithLiterals, DataExtensionsComponentData, DataGroupsArrayItems, DataItem, DataItemOverrides, DataItemSelectedDataTypeOneOf, DataItems, DataType, DataTypeWithLiterals, DateInput, DatePicker, DateTimeConstraints, DateTimeInput, Debounce, DecimalListOptions, Decoration, DecorationDataOneOf, DecorationType, DecorationTypeWithLiterals, Deeplink, DeeplinkOfOneOf, Default, DefaultCountryConfig, DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, DefaultCountryConfigTypeWithLiterals, DefaultPresets, DefaultTaxGroupProviderConfig, DefaultTextStyle, DefaultTextStyleWithLiterals, DefaultWithLiterals, Definition, Delay, DelayTypeOneOf, DeleteByWhiteListedMetaSiteRequest, DeleteDemoDataExtensionSchemaRequest, DeleteDemoDataExtensionSchemaResponse, DeleteGlobalExtensionSchemaRequest, DeleteGlobalExtensionSchemaResponse, DeleteTemplateFields, DeleteUserDefinedFieldsRequest, DeleteUserDefinedFieldsResponse, DeploymentPipelineProviderConfig, Description, Design, DevCenterTestingComponentData, DevCenterTestingComponentDataTranslatableOneOfOneOf, Dimension, Dimensions, DirectMessageConfig, Direction, DirectionWithLiterals, DiscountConfig, DiscountsSPIConfig, DiscoveryMetaData, Display, DisplayField, DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, DisplayFieldTypeWithLiterals, DisplayFilter, DisplayFilters, DisplayGroupAction, DisplayGroupItem, DisplayGroupItemSelectedGroupTypeOneOf, DisplayProperties, DisplayValue, DisplayValueEnumDisplayValue, DisplayValueEnumDisplayValueWithLiterals, DisputeServicePluginConfig, DividerData, DividerDataAlignment, DividerDataAlignmentWithLiterals, DividerDataWidth, DividerDataWidthWithLiterals, DmDirectMessageConfig, Docking, DockingProperties, DocumentStyle, Domain, DomainEvent, DomainEventBodyOneOf, DomainWithLiterals, DonationInput, DonationInputOption, DrillInListItem, DrillItem, DrillItemDataOneOf, DropDownLabeled, Dropdown, DropdownField, DropdownFieldOption, DropdownOption, DropshippingProviderSPIConfig, DtsContent, DtsDefinitionReference, DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, DtsDefinitionTypeWithLiterals, DtsHttpLink, DurationInputConfiguration, DurationInputConfigurationDurationRenameOptions, DurationRenameOptions, DynamicPriceOptions, DynamicSiteStructureProviderConfig, EditableFields, EditableProperties, EditablePropertiesWithLiterals, EditorAddon, EditorBehaviors, EditorElement, EditorElementLayout, EditorPresence, EditorReactComponent, EffectGroup, EffectGroupWithLiterals, ElementDisplayOption, ElementDisplayOptionWithLiterals, ElementItem, ElementItemSelectedElementTypeOneOf, ElementState, ElementStyleDefaults, ElementStyleOverrides, ElementType, ElementTypeWithLiterals, EmailChannel, EmailEmailMessageConfig, EmailInfo, EmailInfoTag, EmailInfoTagWithLiterals, EmailMessageConfig, EmailTemplateConfig, EmailTemplateConfigProviderOneOf, EmbedCategory, EmbedCategoryWithLiterals, EmbedData, EmbeddedScriptComponentData, EmbeddedScriptPages, EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, EmbeddedScriptPlacementWithLiterals, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, Environment, EnvironmentWithLiterals, ErrorReporting, ErrorReportingArtifact, Escalation, EscalationWithLiterals, EventAction, EventBadgesSpiConfig, EventData, EventMetadata, EventTimeSlotsProviderConfig, EventTypeProviderConfig, EventValidationProviderConfig, Execution, ExecutionActionExecuteOneOf, ExecutionType, ExecutionTypeWithLiterals, ExemptRegions, ExpectedInputs, ExperimentGroupWrapper, ExportMetadata, Exposure, ExposureRule, ExposureRuleRuleOneOf, ExposureRuleType, ExposureRuleTypeWithLiterals, ExposureWithLiterals, Extendable, ExtendingComponentType, ExtendingComponentTypeWithLiterals, ExtensionData, ExtensionDetails, ExtensionExposure, ExtensionType, ExtensionTypeWithLiterals, ExternalDatabaseSpiConfig, ExternalFilterProviderConfig, FactorConfig, FactorType, FactorTypeWithLiterals, FeedAggregation, FeedChannels, FeedChannelsConfig, FeesSPIConfig, Field, FieldFieldTypeOptionsOneOf, FieldGroup, FieldManagementConfig, FieldOverride, FieldOverridePropertyTypeOptionsOneOf, FieldOverrides, FieldType, FieldTypeWithLiterals, FieldsOverrides, FieldsSettings, FileData, FileSource, FileSourceDataOneOf, FileType, FileUpload, Filter, FilterFunction, FilterFunctionWithLiterals, FilterInfo, FilterInfoOptionsOneOf, FilterOptionsType, FilterOptionsTypeWithLiterals, FilterSelectionType, FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, FilterValueDefinitionModeWithLiterals, FilteringCapability, FirstDayOfWeek, FirstDayOfWeekWithLiterals, FirstLevelCategory, FixedPayment, FixedPositionOptions, FixedPriceOptions, FocalPoint, Font, FontDefinition, FontFamilyWithColorPicker, FontSizeData, FontType, FontTypeWithLiterals, FormFieldContactInfo, FormFieldContactInfoAdditionalInfoOneOf, FormLayout, FormOverride, FormOverrideEntityTypeOptionsOneOf, FormSchemaDynamicValuesSpiConfig, FormSchemaSpiConfig, FormSpamSubmissionReportPermissions, FormSpamSubmissionReportSpiConfig, FormSpamSubmissionReportsNamespaceConfig, FormSpamSubmissionSpiConfig, FormSpiExtensionConfig, FormSubmissionModerationSpiConfig, FormSubmissionModerationSpiNamespaceConfig, FormSubmissionSpiConfig, FormSubmissionSpiExtensionConfig, FormTemplate, FormTemplateTemplateTypeOptionsOneOf, Format, FormatWithLiterals, FormsPermissions, FormsSchemaNamespaceConfig, FormsSpamSubmissionsNamespaceConfig, FormsSubmissionsExtensionNamespaceConfig, FormsSubmissionsNamespaceConfig, ForwardAction, ForwardActionActionOneOf, FreeOptionConfiguration, FreePricingTypeConfiguration, FreeTrialConfiguration, FunctionDefinition, FunctionRecipe, FunctionsShopPriceSpiConfig, GIF, GIFData, GIFType, GIFTypeWithLiterals, GalleryData, GalleryOptions, GalleryOptionsLayout, GalleryOptionsThumbnails, Gap, GbpFeatureConfig, GenericHookConfig, GenericHooksConfig, GenericOptions, GiftCardProviderConfig, Gradient, GradualDeleteCacheEntity, GradualRolloutCacheEntity, GradualUpdateCacheEntity, GridAppFilesTransformerConfig, Group, GroupType, GroupTypeWithLiterals, GroupedContent, HTMLData, HTMLDataDataOneOf, HTMLDataSource, HTMLDataSourceWithLiterals, HTTPMethod, HTTPMethodWithLiterals, Header, HeaderConfig, HeaderConfigHeaderConfigOneOf, HeaderConfigOneOf, HeaderWidgetConfig, HeadingData, HeadlessOAuth, Height, HeightMode, HeightModeWithLiterals, HelpArticle, HelpArticleArticleTypeOneOf, HelpResources, HiddenOptions, HookType, HookTypeWithLiterals, HorizontalDocking, HorizontalDockingWithLiterals, HostContainerId, HostContainerIdWithLiterals, HostedComponent, HostedPage, IDPConnectionConfig, Icon, IconDataOneOf, IconType, IconTypeWithLiterals, IdentificationData, IdentificationDataIdOneOf, Illustration, IllustrationIllustrationOneOf, Image, ImageCategoryTypes, ImageCategoryTypesWithLiterals, ImageConfig, ImageData, ImageDataStyles, ImageDataStylesBorder, ImageFit, ImageFitWithLiterals, ImagePosition, ImagePositionWithLiterals, ImageShape, ImageShapeWithLiterals, ImageStyles, ImageStylesPosition, ImageStylesPositionWithLiterals, Implementation, ImplementedMethods, ImportanceLevel, ImportanceLevelWithLiterals, InPersonOptions, InitDirection, InitDirectionWithLiterals, InitialExpandedItems, InitialExpandedItemsWithLiterals, InitialPosition, InitialSizeSetting, InitialSizeSettingSelectedSizingTypeOneOf, Initiator, InitiatorDataOneOf, InitiatorType, InitiatorTypeWithLiterals, InlineElement, Input, InputConfiguration, InputField, InputFieldInputTypeOptionsOneOf, InputField_Number, InputField_NumberComponentTypeOptionsOneOf, InputType, InputTypeWithLiterals, InputWithPlaceholder, InstallPage, InstallPageWithLiterals, InstallationInfo, InstallationInfoTargetContainerOneOf, InstallationSettings, InstallationSettingsOptionsOneOf, IntListOptions, IntegerType, Intent, IntentWithLiterals, Interactions, InterfaceConfiguration, InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, InterfaceConfigurationTypeWithLiterals, InternalComponentMetadata, InventorySpiConfig, InvoicesActionsComponentData, InvoicesConfig, IsStretched, Item, ItemDataOneOf, ItemImage, ItemLayout, ItemLayoutItemOneOf, ItemSelection, ItemSelectionOptions, ItemStyle, ItemThumbnail, ItemThumbnailOptionsOneOf, ItemType, ItemTypeWithLiterals, ItemVideo, ItemsGroup, ItemsSelectionProviderConfig, Keywords, LanguageTagListOptions, Layout, LayoutCellData, LayoutMode, LayoutModeWithLiterals, LayoutType, LayoutTypeWithLiterals, LayoutWithLiterals, LearnMore, LegacyBackOfficeExtensionWidget, LegacyBackOfficeExtensionWidgetAssetOneOf, LegacyBackOfficeMenuItem, LegacyBackOfficeMenuItemAction, LegendsSpiConfig, Level, LevelWithLiterals, LightboxCloseOptions, LightboxContent, LightboxEditorSettings, LightboxOptions, LimiterField, LineItemsEnricherConfig, LineStyle, LineStyleWithLiterals, Link, LinkData, LinkPreviewData, LinkPreviewDataStyles, LinkSuffix, LinkTarget, LinkTargetWithLiterals, LinkType, LinkTypeWithLiterals, ListDataExtensionSchemasRequest, ListEventFromCalendars, ListEventFromCalendarsWithLiterals, ListItem, ListValue, LiveSiteActionDeeplink, LocalDeliveryComponentData, Location, LocationLocationInfoOneOf, LockableOperation, LockableOperationWithLiterals, Logo, Logos, Main, MainPresets, MainPropsData, ManagedMenuEntities, MandatoryField, MandatoryFieldWithLiterals, MapData, MapSettings, MapType, MapTypeWithLiterals, Margin, Margins, MarketplaceSPIConfig, Maturity, MaturityWithLiterals, MeasurementSystem, MeasurementSystemWithLiterals, Media, MediaCapabilities, MediaItem, MediaItemMediaOneOf, MediaMimeType, MediaMimeTypeWithLiterals, MediaSettings, MembershipsSPIConfig, MentionData, MenuAction, MenuActionActionOneOf, MenuDropdown, MenuLink, MenuSlot, MessageContainingTranslatables, MessageEnvelope, Metadata, Method, MethodWithLiterals, MinMaxRange, MobileApplication, MobileApplicationWithLiterals, MobileFeedChannel, MobileFeedContentKeys, MobilePushChannel, MobilePushChannelConfig, MobilePushContentKeys, ModalParams, Monitoring, MonitoringOptionsOneOf, MonitoringType, MonitoringTypeWithLiterals, MultiServiceBookingPolicyProviderConfig, MultilineAddress, MultilineAddressValidation, MultilingualTranslationSchema, MultipleDashboardsComponentData, Namespace, NamespaceConfig, NamespaceConfigV2, NativeStateType, NativeStateTypeWithLiterals, NavigateToPageAction, NavigationType, NavigationTypeWithLiterals, NestedWidgets, Node, NodeDataOneOf, NodeStyle, NodeType, NodeTypeWithLiterals, NotificationChannels, NotificationContent, NotificationPreferencesFilterConfig, NotificationTopic, NotificationTopicState, NotificationTopicStateWithLiterals, NotificationTopicType, NotificationTopicTypeWithLiterals, Npm, NullValue, NullValueWithLiterals, NumberComponentType, NumberComponentTypeWithLiterals, NumberInput, NumberOfColumns, NumberOfColumnsWithLiterals, NumberType, OAuthAppType, OAuthAppTypeWithLiterals, OAuthTechnologies, OAuthTechnologiesWithLiterals, ObjectType, Oembed, Offset, OffsetValueOneOf, OneTimeOptionConfiguration, OneTimePricingTypeConfiguration, OpenComponent, OpenModalAction, OperationExecutorConfig, Operator, OperatorConfiguration, OperatorEnumOperator, OperatorEnumOperatorWithLiterals, OperatorWithLiterals, Option, OptionDesign, OptionLayout, OrCondition, OrderValue, OrderedListData, Orientation, OrientationWithLiterals, OriginInfo, OutOfIframeData, Output, OverrideEntityType, OverrideEntityTypeWithLiterals, OverrideTemplateFields, PDFSettings, PDFSettingsViewMode, PDFSettingsViewModeWithLiterals, PackageDimension, PackageType, Padding, Page, PageAnchor, PageComponentData, PageContent, PageDashboardApplicationComponent, PageEditorSettings, PageInstallation, PageInstallationSettings, PageNavigationOptions, PageOptions, PageOutOfIframeComponentData, PageReplace, PageReplaceOptions, PageReplaceOptionsOptionsOneOf, PageWidgetAsContent, PaginationMode, PaginationModeWithLiterals, Panel, PanelAction, PanelActionSelectedPanelTypeOneOf, PanelContentType, PanelContentTypeWithLiterals, PanelSelectedContentTypeOneOf, PanelSize, PanelType, PanelTypeWithLiterals, PanoramaOptions, ParagraphData, Param, Parameter, ParameterType, ParameterTypeWithLiterals, ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, PartialPaymentRestrictionWithLiterals, PartialUpdateCacheEntity, ParticipantType, ParticipantTypeWithLiterals, PatternsWizard, Payment, PaymentComponentType, PaymentComponentTypeOptionsOneOf, PaymentComponentTypeWithLiterals, PaymentDateModification, PaymentInput, PaymentMethod, PaymentMethodMethodOneOf, PaymentServiceProviderConfig, PaymentServiceProviderCredentialsField, PaymentServiceProviderCredentialsFieldFieldOneOf, PaymentSettingsSPIConfig, PaymentType, PaymentsGatewayComponentData, PayoutsProviderConfig, PerkValues, PerksConfiguration, Permissions, PhoneConstraints, PhoneInfo, PhoneInfoTag, PhoneInfoTagWithLiterals, PhoneInput, PhoneOptions, PingNotificationComponentData, PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, PingSettingsGroupComponentDataStateWithLiterals, PlaceHolder, Placement, PlacementWithLiterals, PlanDuration, PlanFormBenefitsSection, PlanFormCustomSection, PlanFormDefaultSection, PlanFormDefaultSectionWithLiterals, PlanFormDurationSection, PlanFormInfoSection, PlanFormInitialValue, PlanFormPagePermissionsSection, PlanFormPlanSettingsSection, PlanFormPreviewSection, PlanFormPricingAndDurationSection, PlanFormPricingAndDurationSectionDurationInputConfiguration, PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, PlanFormPricingOptionWithLiterals, PlanFormPricingSection, PlanFormPricingSectionInputConfiguration, PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, PlanFormPricingTypeWithLiterals, PlanFormSection, PlanFormSectionSectionOneOf, PlanFormTypeMetadata, PlanPeriodUnit, PlanPeriodUnitWithLiterals, PlanPriceData, PlanPricing, PlanPricingPricingModelOneOf, PlanSettingsRowConfiguration, PlatformHeaderConfig, PlatfromComponentData, PlaybackOptions, PluginConfig, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataAlignmentWithLiterals, PluginContainerDataHeight, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, PluginInstallationSettings, PluginInterface, PluginInterfaceWithLiterals, PluginMarketData, PluginPlacement, PolicyConfig, Poll, PollData, PollDataLayout, PollDesign, PollDesignBackground, PollDesignBackgroundBackgroundOneOf, PollLayout, PollLayoutDirection, PollLayoutDirectionWithLiterals, PollLayoutType, PollLayoutTypeWithLiterals, PollOption, PollSettings, PosProviderSettingsServicePluginConfig, Position, PostLoginConfig, PreRegisterConfig, PredefinedExpectedInput, PredefinedExpectedInputConfiguration, PredefinedExpectedInputConfigurationTypeOneOf, PredefinedLabel, PredefinedValues, Preset, PresetEditorPresence, PresetElementDefaults, PresetInfo, PresetInnerElementDefaults, PresetItem, PresetSize, PresetStyleDefaults, PresetStyleItemOverrides, PresetStyleOverrides, PreviewCardPlaceholders, PreviewConfiguration, PreviewFields, PriceSPIConfig, PriceType, PriceTypeWithLiterals, PricingData, PricingPlansFormConfiguration, PricingRecurring, Primitive, PrimitiveType, PrimitiveTypeWithLiterals, Product, ProductCatalogProviderConfig, ProductCheckboxGroup, ProductCheckboxGroupOption, ProductPriceOptionsOneOf, ProductRestrictionsConfig, ProductType, ProductTypeWithLiterals, ProductsPathsConfig, Project, PropertiesType, PropertiesTypeEnum, PropertiesTypeEnumWithLiterals, PropertiesTypePropertiesTypeOptionsOneOf, ProposalEditorProviderConfig, ProviderAccountServicePluginConfig, ProviderConfig, ProviderConfigMessage, ProviderFilterOptions, PurchaseValidationsConfig, QuantityLimit, RadioButtonLabeled, RadioGroup, RadioGroupOption, RangeConstraints, RateLimit, RatingInput, ReactElementContainer, ReactElementContainerSelectedContainerTypeOneOf, RecipientFilter, RecipientFilterDataOneOf, RecipientFilterType, RecipientFilterTypeWithLiterals, RecipientType, RecipientTypeWithLiterals, RecommendationsProviderConfig, RecurringOptionConfiguration, RecurringPricingTypeConfiguration, RecurringPricingTypeConfigurationFreeTrialConfiguration, RedirectOptions, RefElement, RefInnerElementDefaults, Region, RegionScopeScope, RegionScopeScopeWithLiterals, RegionType, RegionTypeWithLiterals, RegionWithLiterals, ReindexEvent, ReindexField, Rel, RenderOverrides, RepeatedFieldOverrideConfig, ReplaceableOptions, ReplacementType, ReplacementTypeWithLiterals, ReplacingOptions, RequestedField, RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, RequiredIndicatorPlacementWithLiterals, RequiredIndicatorProperties, RequiredIndicatorWithLiterals, RequiredOptions, ResetButton, ResizeDirection, ResizeDirectionWithLiterals, Resizing, ResizingWithLiterals, Resource, Resources, ResponsysEmail, RestaurantsPOSComponentData, RestoreInfo, RestrictedOperation, RestrictedOperationWithLiterals, Restriction, RestrictionLevel, RestrictionLevelWithLiterals, Restrictions, RestrictionsConfig, ReviewsEntityCatalogProviderConfig, ReviewsProductCatalogProviderConfig, RewardProviderConfig, RibbonStyles, RichContent, RichContentOptions, RichText, RichTextAbilities, RichTextAbilitiesWithLiterals, RichTextWithIllustrationVertical, Rule, RuntimeComponentCacheEntity, RuntimeComponentCacheEntityComponent, RuntimeComponentCacheEntityComponentOneOf, RuntimeComponentCacheEntityExperiment, RuntimeComponentCacheEntityExperimentExperimentOneOf, SDKExports, SDKExportsNpm, Scheduling, SchedulingComponentType, SchedulingComponentTypeOptionsOneOf, SchedulingComponentTypeWithLiterals, Schema, SchemaConfig, SchemaField, SchemaFieldExposure, SchemaFieldExposureWithLiterals, SchemaFieldFieldType, SchemaFieldFieldTypeWithLiterals, SchemaFieldType, SchemaFieldTypeFieldTypeOneOf, SchemaGroup, SchemaGroupElement, SchemaKey, SchemaScope, SchemaScopeWithLiterals, Scope, ScopeWithLiterals, ScriptType, ScriptTypeWithLiterals, SdkDefinition, SearchConfig, SearchField, SearchParams, SecondLevelCategory, Section, SentryOptions, SeoKeywordsSuggestionsSPIConfig, ServiceAction, ServiceAvailabilityPolicyProviderConfig, ServiceTrigger, ServicesDropdown, ServicesDropdownOption, Settings, SettingsPanel, SettingsPermissions, SettingsUrl, SetupFeeConfiguration, SharedPlatformMobilePushConfig, ShippingLabelCarrierSpiConfig, ShippingProviderConfig, ShippingRatesConfig, ShorthandGroupBackground, ShoutoutEmail, Sidebar, SidebarChildItem, SidebarChildItemItemOneOf, SidebarConfig, SidebarConfigOneOf, SidebarDataType, SidebarDataTypeWithLiterals, SidebarEntityType, SidebarEntityTypeWithLiterals, SidebarRootItem, SidebarRootItemItemOneOf, SidebarSecondLevelChildItem, SidebarSecondLevelChildItemItemOneOf, SidebarWidget, SidebarWidgetConfig, SidebarWidgetConfigOneOf, Signature, Simple, SimpleContainer, SimpleField, SimpleType, SimpleTypeWithLiterals, SingleContent, SingleKeyCondition, SiteConfig, SiteContributorsData, SiteMemberData, SiteMembersSsrCaching, SiteMembersSsrCachingWithLiterals, SiteMigrationSpiConfig, SiteWidgetSlot, Size, SizingType, SizingTypeWithLiterals, SliderLabeled, Slot, SlotData, SlotDataSlotTypeOneOf, SlotDataType, SlotDataTypeWithLiterals, SlotParams, SmsActionMessage, SmsChannel, SmsContentKeys, SmsMessageConfig, SmsSmsMessageConfig, SnippetSolutionData, SocialMarketingDesignSPIConfig, SocialMarketingDesignsProviderConfig, Source, SourceOptionsOneOf, SourceType, SourceTypeWithLiterals, SpamSubmissionPermissions, Spi, SpiBaseUri, Spoiler, SpoilerData, StartDateLimitsSPIConfig, StartDateRulesSPIConfig, State, StaticContainer, StaticContainerWithLiterals, StaticFileComponentData, StaticFilterOption, StaticFilterOptions, Status, StatusWithLiterals, Step, StorageDomain, StorageDomainWithLiterals, StorageType, StorageTypeWithLiterals, StringComponentType, StringComponentTypeWithLiterals, StringListOptions, StringType, StringTypeFormatOptionsOneOf, StudioComponentData, StudioWidgetComponentData, StudioWidgetVariation, StyleAction, StyleItem, StyleItemDefaults, StyleItemOverrides, StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf, StyleItemSelectedItemTypeOneOf, StyleType, StyleTypeWithLiterals, Styles, StylesBorder, StylesPosition, StylesPositionWithLiterals, SubPage, SubmitSettings, SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, SubmitSuccessActionWithLiterals, SubscriptionInfo, SyncToCalendar, SyncToCalendarWithLiterals, SyncedProjectsProviderConfig, Tab, TableCellData, TableData, Tag, TagOverrides, TagOverridesEntry, TagWithLiterals, Tags, TagsOption, Target, TargetWithLiterals, TaxCalculationConfig, TaxCalculatorSpiConfig, TaxCountriesConfig, TaxExemptGroup, TaxExemptGroupsProviderConfig, TaxGroupsProviderConfig, TaxIdValidatorConfig, TaxTypesConfig, TaxationCategoryProvider, TemplateDefaultColor, TemplateDefaultColorWithLiterals, TemplateType, TemplateTypeWithLiterals, TermsAndConditionsConfiguration, TermsModalConfiguration, Text, TextAlignment, TextAlignmentWithLiterals, TextData, TextDecoration, TextEnum, TextInput, TextInputDisplayType, TextInputDisplayTypeWithLiterals, TextInputLabeled, TextInputSettings, TextNodeStyle, TextStyle, TextStyleDefaultColorOneOf, TextToSpeechActionMessage, TextWithSuffix, TextWithSuffixSuffixOneOf, TextWithTooltip, ThankYouMessageOptions, ThankYouPageConfiguration, ThankYouPageInputConfig, ThankYouPageModalConfiguration, ThankYouPagePreviewConfiguration, ThankYouPageRedirectsConfiguration, ThumbnailData, ThumbnailType, ThumbnailTypeWithLiterals, Thumbnails, ThumbnailsAlignment, ThumbnailsAlignmentWithLiterals, ThumbnailsSize, ThumbnailsSizeWithLiterals, TicketReservationsSpiConfig, TimeConstraintConfiguration, TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, TimeConstraintTypeWithLiterals, TimeInput, ToggleLabeled, ToolPanelConfig, TooltipSuffix, TopologyComponentData, TranslatedData, TranslatedMessageWithIdRepeated, TranslatedMessageWithUniqueFieldRepeated, TranslationResources, Trigger, TriggerFilter, TriggerOverride, TriggerProviderSPIConfig, TriggerWithLiterals, Type, TypeWithLiterals, TypedDynamicParam, TypedDynamicParamType, TypedDynamicParamTypeWithLiterals, UnifiedLightbox, UnifiedPage, UnifiedPageEditorSettings, UnitType, UnitTypeWithLiterals, Until, UpdateDataExtensionSchemaRequest, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, UploadFileFormatEnumUploadFileFormatWithLiterals, UploadFileFormatWithLiterals, UpstreamWixCommonImage, Url, UrlData, UrlParam, UserNotification, UserNotificationData, UserNotificationDataContext, UserNotificationDataDeeplink, UserNotificationDataDeeplinkOfOneOf, UserNotificationDataInitiator, UserNotificationDataInitiatorDataOneOf, UserNotificationDataRecipientFilter, UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, UserNotificationDataTypeWithLiterals, V1Image, V1ImplementedMethods, V1Link, V1LinkDataOneOf, V1Metadata, V1Region, V1SchemaField, V1TextStyle, V2CommunicationChannelConfiguration, V2Condition, V2ImplementedMethods, V2Rule, ValidationTarget, ValidationsSPIConfig, ValueConstraintType, ValueConstraintTypeWithLiterals, VectorArt, VectorArtCategoryTypes, VectorArtCategoryTypesWithLiterals, VeloActionConfig, VeloCustomCss, VeloPublishPipelineTaskProviderConfig, VelocityEmail, VerticalAlignment, VerticalAlignmentWithLiterals, VerticalDocking, VerticalDockingWithLiterals, VibeActionType, VibeActionTypeWithLiterals, VibeCustomPanelAction, VibeDashboardAction, Video, VideoCategoryTypes, VideoCategoryTypesWithLiterals, VideoConferenceOptions, VideoData, ViewMode, ViewModeWithLiterals, ViewRole, ViewRoleWithLiterals, ViewerService, ViewerServiceAssets, VisibleState, VoiceChannel, VoiceContentKeys, VoteRole, VoteRoleWithLiterals, WebComponentData, WebComponentDataElementType, WebComponentDataElementTypeWithLiterals, WebFeedChannel, WebFeedContentKeys, WebhookComponentData, WebhookIdentityType, WebhookIdentityTypeWithLiterals, WidgetAsContent, WidgetBehavior, WidgetComponent, WidgetComponentData, WidgetComponentOptions, WidgetData, WidgetDetails, WidgetDisplay, WidgetHorizontal, WidgetHorizontalWithLiterals, WidgetInstallation, WidgetInstallationSettings, WidgetInstallationSettingsTargetContainerOneOf, WidgetOutOfIframeComponentData, WidgetPluginComponentData, WidgetSize, WidgetSizeHeight, WidgetSizeWidth, WidgetSlot, WidgetVertical, WidgetVerticalWithLiterals, WidgetWidthType, WidgetWidthTypeWithLiterals, Width, WidthType, WidthTypeWithLiterals, WidthWithLiterals, WixApiOptions, WixCodePublishTaskName, WixCodePublishTaskNameWithLiterals, WixDependency, WixFile, WixFileComponentType, WixFileComponentTypeOptionsOneOf, WixFileComponentTypeWithLiterals, WixOfferingComponentData, WixOfferingComponentDataOfferingOneOf, WixPagesDomainMapping, WixUserData, WixUsersData, WixVibeCodingInstructions, WixVibeComponent, WixelSPIConfig, WorkerComponentData, WritingMode, WritingModeValue, WritingModeValueWithLiterals, _Array, _ArrayComponentTypeOptionsOneOf, _Boolean, _BooleanComponentTypeOptionsOneOf, _Date, _Function, _Number, _Object, _String, _StringComponentTypeOptionsOneOf } from './index.typings.mjs';
|
|
2
|
+
import { DataExtensionSchema, UpdateDataExtensionSchemaResponse, ListDataExtensionSchemasOptions, ListDataExtensionSchemasResponse, DeleteByWhiteListedMetaSiteResponse, DeleteUserDefinedFieldsOptions, DeleteUserDefinedFieldsResponse, DataExtensionSchemaCreatedEnvelope, DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaUpdatedEnvelope } from './index.typings.mjs';
|
|
3
|
+
export { A11y, A11yAttributes, A11yAttributesWithLiterals, AcceptedDirectMessageType, AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, AcceptedSmsMessageTypeWithLiterals, Action, ActionCondition, ActionEvent, ActionName, ActionNameWithLiterals, ActionProviderSPIConfig, ActionSPIConfig, ActionSPIConfigImplementedMethods, ActionSPIConfigInterfaceConfiguration, ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, ActionSPIConfigInterfaceConfigurationTypeWithLiterals, ActionSpiConfig, ActionType, ActionTypeWithLiterals, Actions, AdaptiveComponentProviderConfig, AddCustomFields, AdditionalFeesSPIConfig, AdditionalStepInfo, AdditionalTaxGroup, AddonMarketData, Address, AddressComponentType, AddressComponentTypeOptionsOneOf, AddressComponentTypeWithLiterals, AddressInfo, AddressInfoTag, AddressInfoTagWithLiterals, AddressLine2, AdminConfigurableTextInput, AlertEnricherSpiConfiguration, AlgorithmConfig, AlgorithmType, AlgorithmTypeWithLiterals, Alignment, AlignmentWithLiterals, AllowedValuesOptions, AlternativeUri, AnchorData, AnchorMetaData, AndCondition, AndroidMobilePushConfig, AndroidStyle, AndroidStyleWithLiterals, ApiSlot, ApiWidth, AppConfig, AppConfiguration, AppData, AppDeploymentProviderConfig, AppEmbedData, AppEmbedDataAppDataOneOf, AppEnvironmentProviderConfig, AppPreviewProviderConfig, AppRuntimeDataCacheEntity, AppRuntimeDataEvent, AppType, AppTypeWithLiterals, ApplicationAutomationComponent, ApplicationProfile, ApplicationProfileProviderConfig, Appointment, AppointmentFormat, AppointmentFormatInfoOneOf, AppointmentFormatWithLiterals, Archetype, ArchetypeWithLiterals, ArrayComponentType, ArrayComponentTypeWithLiterals, ArrayItems, ArrayItemsArrayDataOneOf, ArrayType, ArrayTypeArrayItems, ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, AspectRatioWithLiterals, AssetType, AssetTypeWithLiterals, AssistantSpiConfig, AudienceProviderConfig, AudioData, AuthenticatorConfig, AutomationMetadata, AutomationTrigger, AvailabilityTimeSlotsProviderConfig, AvatarConfig, AvatarShape, AvatarShapeWithLiterals, BackOfficeCustomization, BackOfficeCustomizationSidebarEntity, BackOfficeCustomizationSidebarEntityItemOneOf, BackOfficeExtension, BackOfficeExtensionContainer, BackOfficeExtensionExtensionOneOf, BackOfficeExtensionMenuItem, BackOfficeExtensionWidget, BackOfficeExtensionWidgetAssetOneOf, BackOfficeExternalUrl, BackOfficeHostingPlatforms, BackOfficeHostingPlatformsWithLiterals, BackOfficeModal, BackOfficeModalContentOneOf, BackOfficePage, BackOfficePageAssetOneOf, BackOfficeRestrictedCustomization, BackOfficeScriptAsset, BackOfficeScriptAssetType, BackOfficeScriptAssetTypeWithLiterals, BackOfficeSidebarCategory, BackOfficeWidget, BackOfficeWidgetContentOneOf, BackdropFilter, BackendWorker, Background, BackgroundBackgroundMediaModeOneOf, BackgroundModeEnum, BackgroundModeEnumWithLiterals, BackgroundType, BackgroundTypeWithLiterals, BackofficeActionDeeplink, BarAlignment, BarAlignmentSelected, BarAlignmentSelectedWithLiterals, BaseEventMetadata, BaseInfo, BaseInstallation, Behaviors, BillingSettingsConfig, BlockType, BlockTypeWithLiterals, BlockquoteData, BlocksData, BlogPaywallProviderConfig, BookingAutomationsConfig, BookingData, BookingPolicyProviderConfig, BookingsPricingProviderConfig, BookingsResourceType, BookingsResourceTypesProviderConfig, BoolListOptions, BooleanComponentType, BooleanComponentTypeWithLiterals, BooleanExperimentExposureRule, BooleanType, Border, BorderColors, BrandIcons, BreakPoint, BreakPointSection, Breakpoint, BreakpointEnumBreakpoint, BreakpointEnumBreakpointWithLiterals, BreakpointPresetStyleOverrides, Breakpoints, BroadcastList, BrowserPushChannel, BrowserPushContentKeys, BrowserStorage, BuilderSpi, BulletedListData, Bundle, BusinessManagerPage, ButtonData, ButtonDataType, ButtonDataTypeWithLiterals, ButtonStyles, CalendarType, CalendarTypeWithLiterals, CaptionData, CardStyles, CardStylesAlignment, CardStylesAlignmentWithLiterals, CardStylesType, CardStylesTypeWithLiterals, CatalogSPIConfig, CatalogSyncConfiguration, CellStyle, ChangeableProperty, ChangeablePropertyWithLiterals, ChannelBrandIcons, ChannelBranding, ChannelChannelBranding, ChannelChannelConfiguration, ChannelChannelConfigurationMessagingConfigOneOf, ChannelConfiguration, ChannelConfigurationChannelType, ChannelConfigurationChannelTypeWithLiterals, ChannelConfigurationMessagingConfigOneOf, ChannelIcon, ChannelImplementedMethods, ChannelMediaCapabilities, ChannelType, ChannelTypeWithLiterals, Checkbox, CheckboxConfiguration, CheckboxField, CheckboxGroup, CheckboxGroupOption, CheckoutContentSPIConfig, ClientResources, ClientSideService, CodeBlockData, CodePackageComponentData, CodePanel, CollapsibleListData, Color, ColorData, ColorDefinition, ColorSelectLabeled, ColorSelectLabeledDataOneOf, Colors, CommentFilterProviderConfig, CommentModerationProviderConfig, CommentsContextProviderConfig, CommonImage, CommunicationChannelConfiguration, ComponentData, ComponentDataDataOneOf, ComponentEnricherConfig, ComponentInitialSize, ComponentMetaData, ComponentModel, ComponentReferenceDataConfig, ComponentTranslationAdditionalFieldsConfig, ComponentType, ComponentTypeWithLiterals, ComponentsValidatorConfig, Condition, ConditionBlock, ConditionNode, ConditionNodeNodeOneOf, Conditions, Configuration, ConfirmationLevel, ConfirmationLevelWithLiterals, ConnectMethod, ConnectMethodWithLiterals, ConsentCategory, ConsentCategoryWithLiterals, Consequence, ConstOrDynamicParam, ConstOrDynamicParamValueOneOf, Constraint, ContactData, ContactField, ContactFieldWithLiterals, ContactLabelsComponentData, ContactNotification, ContactsData, ContactsNotificationData, Container, ContainerBehaviors, ContainerDataOneOf, ContainerLayout, ContainerStyleOverrides, ContainerType, ContainerTypeWithLiterals, ContentData, ContentDataOverrides, ContentFill, ContentProviderConfig, ContentResizeDirection, ContentResizeDirectionWithLiterals, Context, ConversationLimitations, Coordinates, CoreApps, Corners, CountrySubdivisionListOptions, CoverImageConfiguration, CreateDataExtensionSchemaRequest, CreateDataExtensionSchemaResponse, CreateNewItemInfo, CreatedByCacheEntity, Crop, CropWithLiterals, CrossSellConfig, CssCustomPropertyAction, CssCustomPropertyItem, CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, CssDataTypeWithLiterals, CssNumber, CssPropertyAction, CssPropertyItem, CssPropertyItemDefaults, CssPropertyItemDefinitionOverrides, CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, CssPropertyTypeEnumCssPropertyTypeWithLiterals, CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, CssVariableTypeEnumCssDataTypeWithLiterals, CurrencyCodeListOptions, CustomAction, CustomActionActionExecuteOneOf, CustomChargesConfig, CustomElement, CustomElementConsentCategoryOneOf, CustomElementScriptType, CustomElementScriptTypeWithLiterals, CustomElementWidget, CustomEnum, CustomEnumOption, CustomEnumOptionCssProperty, CustomExperimentExposureRule, CustomFieldInfo, CustomFieldsType, CustomFieldsTypeWithLiterals, CustomInitialPreset, CustomOption, CustomPermission, CustomPropertyEnum, CustomPropertyEnumOption, CustomPropertyEnumOptionStyle, CustomRefData, CustomReservationsApprovalConfig, CustomRewardProviderConfig, CustomScopeConfig, CustomTriggerConfig, DCConfigData, Dashboard, DashboardAction, DashboardApplicationData, DashboardButton, DashboardComponentData, DashboardItem, DashboardPlatfromComponentData, DataAction, DataComponent, DataExtensionSchemaState, DataExtensionSchemaStateWithLiterals, DataExtensionsComponentData, DataGroupsArrayItems, DataItem, DataItemOverrides, DataItemSelectedDataTypeOneOf, DataItems, DataType, DataTypeWithLiterals, DateInput, DatePicker, DateTimeConstraints, DateTimeInput, Debounce, DecimalListOptions, Decoration, DecorationDataOneOf, DecorationType, DecorationTypeWithLiterals, Deeplink, DeeplinkOfOneOf, Default, DefaultCountryConfig, DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, DefaultCountryConfigTypeWithLiterals, DefaultPresets, DefaultTaxGroupProviderConfig, DefaultTextStyle, DefaultTextStyleWithLiterals, DefaultWithLiterals, Definition, Delay, DelayTypeOneOf, DeleteByWhiteListedMetaSiteRequest, DeleteDemoDataExtensionSchemaRequest, DeleteDemoDataExtensionSchemaResponse, DeleteGlobalExtensionSchemaRequest, DeleteGlobalExtensionSchemaResponse, DeleteTemplateFields, DeleteUserDefinedFieldsRequest, DeploymentPipelineProviderConfig, Description, Design, DevCenterTestingComponentData, DevCenterTestingComponentDataTranslatableOneOfOneOf, Dimension, Dimensions, DirectMessageConfig, Direction, DirectionWithLiterals, DiscountConfig, DiscountsSPIConfig, DiscoveryMetaData, Display, DisplayField, DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, DisplayFieldTypeWithLiterals, DisplayFilter, DisplayFilters, DisplayGroupAction, DisplayGroupItem, DisplayGroupItemSelectedGroupTypeOneOf, DisplayProperties, DisplayValue, DisplayValueEnumDisplayValue, DisplayValueEnumDisplayValueWithLiterals, DisputeServicePluginConfig, DividerData, DividerDataAlignment, DividerDataAlignmentWithLiterals, DividerDataWidth, DividerDataWidthWithLiterals, DmDirectMessageConfig, Docking, DockingProperties, DocumentStyle, Domain, DomainEvent, DomainEventBodyOneOf, DomainWithLiterals, DonationInput, DonationInputOption, DrillInListItem, DrillItem, DrillItemDataOneOf, DropDownLabeled, Dropdown, DropdownField, DropdownFieldOption, DropdownOption, DropshippingProviderSPIConfig, DtsContent, DtsDefinitionReference, DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, DtsDefinitionTypeWithLiterals, DtsHttpLink, DurationInputConfiguration, DurationInputConfigurationDurationRenameOptions, DurationRenameOptions, DynamicPriceOptions, DynamicSiteStructureProviderConfig, EditableFields, EditableProperties, EditablePropertiesWithLiterals, EditorAddon, EditorBehaviors, EditorElement, EditorElementLayout, EditorPresence, EditorReactComponent, EffectGroup, EffectGroupWithLiterals, ElementDisplayOption, ElementDisplayOptionWithLiterals, ElementItem, ElementItemSelectedElementTypeOneOf, ElementState, ElementStyleDefaults, ElementStyleOverrides, ElementType, ElementTypeWithLiterals, EmailChannel, EmailEmailMessageConfig, EmailInfo, EmailInfoTag, EmailInfoTagWithLiterals, EmailMessageConfig, EmailTemplateConfig, EmailTemplateConfigProviderOneOf, EmbedCategory, EmbedCategoryWithLiterals, EmbedData, EmbeddedScriptComponentData, EmbeddedScriptPages, EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, EmbeddedScriptPlacementWithLiterals, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, Environment, EnvironmentWithLiterals, ErrorReporting, ErrorReportingArtifact, Escalation, EscalationWithLiterals, EventAction, EventBadgesSpiConfig, EventData, EventMetadata, EventTimeSlotsProviderConfig, EventTypeProviderConfig, EventValidationProviderConfig, Execution, ExecutionActionExecuteOneOf, ExecutionType, ExecutionTypeWithLiterals, ExemptRegions, ExpectedInputs, ExperimentGroupWrapper, ExportMetadata, Exposure, ExposureRule, ExposureRuleRuleOneOf, ExposureRuleType, ExposureRuleTypeWithLiterals, ExposureWithLiterals, Extendable, ExtendingComponentType, ExtendingComponentTypeWithLiterals, ExtensionData, ExtensionDetails, ExtensionExposure, ExtensionType, ExtensionTypeWithLiterals, ExternalDatabaseSpiConfig, ExternalFilterProviderConfig, FactorConfig, FactorType, FactorTypeWithLiterals, FeedAggregation, FeedChannels, FeedChannelsConfig, FeesSPIConfig, Field, FieldFieldTypeOptionsOneOf, FieldGroup, FieldManagementConfig, FieldOverride, FieldOverridePropertyTypeOptionsOneOf, FieldOverrides, FieldType, FieldTypeWithLiterals, FieldsOverrides, FieldsSettings, FileData, FileSource, FileSourceDataOneOf, FileType, FileUpload, Filter, FilterFunction, FilterFunctionWithLiterals, FilterInfo, FilterInfoOptionsOneOf, FilterOptionsType, FilterOptionsTypeWithLiterals, FilterSelectionType, FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, FilterValueDefinitionModeWithLiterals, FilteringCapability, FirstDayOfWeek, FirstDayOfWeekWithLiterals, FirstLevelCategory, FixedPayment, FixedPositionOptions, FixedPriceOptions, FocalPoint, Font, FontDefinition, FontFamilyWithColorPicker, FontSizeData, FontType, FontTypeWithLiterals, FormFieldContactInfo, FormFieldContactInfoAdditionalInfoOneOf, FormLayout, FormOverride, FormOverrideEntityTypeOptionsOneOf, FormSchemaDynamicValuesSpiConfig, FormSchemaSpiConfig, FormSpamSubmissionReportPermissions, FormSpamSubmissionReportSpiConfig, FormSpamSubmissionReportsNamespaceConfig, FormSpamSubmissionSpiConfig, FormSpiExtensionConfig, FormSubmissionModerationSpiConfig, FormSubmissionModerationSpiNamespaceConfig, FormSubmissionSpiConfig, FormSubmissionSpiExtensionConfig, FormTemplate, FormTemplateTemplateTypeOptionsOneOf, Format, FormatWithLiterals, FormsPermissions, FormsSchemaNamespaceConfig, FormsSpamSubmissionsNamespaceConfig, FormsSubmissionsExtensionNamespaceConfig, FormsSubmissionsNamespaceConfig, ForwardAction, ForwardActionActionOneOf, FreeOptionConfiguration, FreePricingTypeConfiguration, FreeTrialConfiguration, FunctionDefinition, FunctionRecipe, FunctionsShopPriceSpiConfig, GIF, GIFData, GIFType, GIFTypeWithLiterals, GalleryData, GalleryOptions, GalleryOptionsLayout, GalleryOptionsThumbnails, Gap, GbpFeatureConfig, GenericHookConfig, GenericHooksConfig, GenericOptions, GiftCardProviderConfig, Gradient, GradualDeleteCacheEntity, GradualRolloutCacheEntity, GradualUpdateCacheEntity, GridAppFilesTransformerConfig, Group, GroupType, GroupTypeWithLiterals, GroupedContent, HTMLData, HTMLDataDataOneOf, HTMLDataSource, HTMLDataSourceWithLiterals, HTTPMethod, HTTPMethodWithLiterals, Header, HeaderConfig, HeaderConfigHeaderConfigOneOf, HeaderConfigOneOf, HeaderWidgetConfig, HeadingData, HeadlessOAuth, Height, HeightMode, HeightModeWithLiterals, HelpArticle, HelpArticleArticleTypeOneOf, HelpResources, HiddenOptions, HookType, HookTypeWithLiterals, HorizontalDocking, HorizontalDockingWithLiterals, HostContainerId, HostContainerIdWithLiterals, HostedComponent, HostedPage, IDPConnectionConfig, Icon, IconDataOneOf, IconType, IconTypeWithLiterals, IdentificationData, IdentificationDataIdOneOf, Illustration, IllustrationIllustrationOneOf, Image, ImageCategoryTypes, ImageCategoryTypesWithLiterals, ImageConfig, ImageData, ImageDataStyles, ImageDataStylesBorder, ImageFit, ImageFitWithLiterals, ImagePosition, ImagePositionWithLiterals, ImageShape, ImageShapeWithLiterals, ImageStyles, ImageStylesPosition, ImageStylesPositionWithLiterals, Implementation, ImplementedMethods, ImportanceLevel, ImportanceLevelWithLiterals, InPersonOptions, InitDirection, InitDirectionWithLiterals, InitialExpandedItems, InitialExpandedItemsWithLiterals, InitialPosition, InitialSizeSetting, InitialSizeSettingSelectedSizingTypeOneOf, Initiator, InitiatorDataOneOf, InitiatorType, InitiatorTypeWithLiterals, InlineElement, Input, InputConfiguration, InputField, InputFieldInputTypeOptionsOneOf, InputField_Number, InputField_NumberComponentTypeOptionsOneOf, InputType, InputTypeWithLiterals, InputWithPlaceholder, InstallPage, InstallPageWithLiterals, InstallationInfo, InstallationInfoTargetContainerOneOf, InstallationSettings, InstallationSettingsOptionsOneOf, IntListOptions, IntegerType, Intent, IntentWithLiterals, Interactions, InterfaceConfiguration, InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, InterfaceConfigurationTypeWithLiterals, InternalComponentMetadata, InventorySpiConfig, InvoicesActionsComponentData, InvoicesConfig, IsStretched, Item, ItemDataOneOf, ItemImage, ItemLayout, ItemLayoutItemOneOf, ItemSelection, ItemSelectionOptions, ItemStyle, ItemThumbnail, ItemThumbnailOptionsOneOf, ItemType, ItemTypeWithLiterals, ItemVideo, ItemsGroup, ItemsSelectionProviderConfig, Keywords, LanguageTagListOptions, Layout, LayoutCellData, LayoutMode, LayoutModeWithLiterals, LayoutType, LayoutTypeWithLiterals, LayoutWithLiterals, LearnMore, LegacyBackOfficeExtensionWidget, LegacyBackOfficeExtensionWidgetAssetOneOf, LegacyBackOfficeMenuItem, LegacyBackOfficeMenuItemAction, LegendsSpiConfig, Level, LevelWithLiterals, LightboxCloseOptions, LightboxContent, LightboxEditorSettings, LightboxOptions, LimiterField, LineItemsEnricherConfig, LineStyle, LineStyleWithLiterals, Link, LinkData, LinkPreviewData, LinkPreviewDataStyles, LinkSuffix, LinkTarget, LinkTargetWithLiterals, LinkType, LinkTypeWithLiterals, ListDataExtensionSchemasRequest, ListEventFromCalendars, ListEventFromCalendarsWithLiterals, ListItem, ListValue, LiveSiteActionDeeplink, LocalDeliveryComponentData, Location, LocationLocationInfoOneOf, LockableOperation, LockableOperationWithLiterals, Logo, Logos, Main, MainPresets, MainPropsData, ManagedMenuEntities, MandatoryField, MandatoryFieldWithLiterals, MapData, MapSettings, MapType, MapTypeWithLiterals, Margin, Margins, MarketplaceSPIConfig, Maturity, MaturityWithLiterals, MeasurementSystem, MeasurementSystemWithLiterals, Media, MediaCapabilities, MediaItem, MediaItemMediaOneOf, MediaMimeType, MediaMimeTypeWithLiterals, MediaSettings, MembershipsSPIConfig, MentionData, MenuAction, MenuActionActionOneOf, MenuDropdown, MenuLink, MenuSlot, MessageContainingTranslatables, MessageEnvelope, Metadata, Method, MethodWithLiterals, MinMaxRange, MobileApplication, MobileApplicationWithLiterals, MobileFeedChannel, MobileFeedContentKeys, MobilePushChannel, MobilePushChannelConfig, MobilePushContentKeys, ModalParams, Monitoring, MonitoringOptionsOneOf, MonitoringType, MonitoringTypeWithLiterals, MultiServiceBookingPolicyProviderConfig, MultilineAddress, MultilineAddressValidation, MultilingualTranslationSchema, MultipleDashboardsComponentData, Namespace, NamespaceConfig, NamespaceConfigV2, NativeStateType, NativeStateTypeWithLiterals, NavigateToPageAction, NavigationType, NavigationTypeWithLiterals, NestedWidgets, Node, NodeDataOneOf, NodeStyle, NodeType, NodeTypeWithLiterals, NotificationChannels, NotificationContent, NotificationPreferencesFilterConfig, NotificationTopic, NotificationTopicState, NotificationTopicStateWithLiterals, NotificationTopicType, NotificationTopicTypeWithLiterals, Npm, NullValue, NullValueWithLiterals, NumberComponentType, NumberComponentTypeWithLiterals, NumberInput, NumberOfColumns, NumberOfColumnsWithLiterals, NumberType, OAuthAppType, OAuthAppTypeWithLiterals, OAuthTechnologies, OAuthTechnologiesWithLiterals, ObjectType, Oembed, Offset, OffsetValueOneOf, OneTimeOptionConfiguration, OneTimePricingTypeConfiguration, OpenComponent, OpenModalAction, OperationExecutorConfig, Operator, OperatorConfiguration, OperatorEnumOperator, OperatorEnumOperatorWithLiterals, OperatorWithLiterals, Option, OptionDesign, OptionLayout, OrCondition, OrderValue, OrderedListData, Orientation, OrientationWithLiterals, OriginInfo, OutOfIframeData, Output, OverrideEntityType, OverrideEntityTypeWithLiterals, OverrideTemplateFields, PDFSettings, PDFSettingsViewMode, PDFSettingsViewModeWithLiterals, PackageDimension, PackageType, Padding, Page, PageAnchor, PageComponentData, PageContent, PageDashboardApplicationComponent, PageEditorSettings, PageInstallation, PageInstallationSettings, PageNavigationOptions, PageOptions, PageOutOfIframeComponentData, PageReplace, PageReplaceOptions, PageReplaceOptionsOptionsOneOf, PageWidgetAsContent, PaginationMode, PaginationModeWithLiterals, Panel, PanelAction, PanelActionSelectedPanelTypeOneOf, PanelContentType, PanelContentTypeWithLiterals, PanelSelectedContentTypeOneOf, PanelSize, PanelType, PanelTypeWithLiterals, PanoramaOptions, ParagraphData, Param, Parameter, ParameterType, ParameterTypeWithLiterals, ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, PartialPaymentRestrictionWithLiterals, PartialUpdateCacheEntity, ParticipantType, ParticipantTypeWithLiterals, PatternsWizard, Payment, PaymentComponentType, PaymentComponentTypeOptionsOneOf, PaymentComponentTypeWithLiterals, PaymentDateModification, PaymentInput, PaymentMethod, PaymentMethodMethodOneOf, PaymentServiceProviderConfig, PaymentServiceProviderCredentialsField, PaymentServiceProviderCredentialsFieldFieldOneOf, PaymentSettingsSPIConfig, PaymentType, PaymentsGatewayComponentData, PayoutsProviderConfig, PerkValues, PerksConfiguration, Permissions, PhoneConstraints, PhoneInfo, PhoneInfoTag, PhoneInfoTagWithLiterals, PhoneInput, PhoneOptions, PingNotificationComponentData, PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, PingSettingsGroupComponentDataStateWithLiterals, PlaceHolder, Placement, PlacementWithLiterals, PlanDuration, PlanFormBenefitsSection, PlanFormCustomSection, PlanFormDefaultSection, PlanFormDefaultSectionWithLiterals, PlanFormDurationSection, PlanFormInfoSection, PlanFormInitialValue, PlanFormPagePermissionsSection, PlanFormPlanSettingsSection, PlanFormPreviewSection, PlanFormPricingAndDurationSection, PlanFormPricingAndDurationSectionDurationInputConfiguration, PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, PlanFormPricingOptionWithLiterals, PlanFormPricingSection, PlanFormPricingSectionInputConfiguration, PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, PlanFormPricingTypeWithLiterals, PlanFormSection, PlanFormSectionSectionOneOf, PlanFormTypeMetadata, PlanPeriodUnit, PlanPeriodUnitWithLiterals, PlanPriceData, PlanPricing, PlanPricingPricingModelOneOf, PlanSettingsRowConfiguration, PlatformHeaderConfig, PlatfromComponentData, PlaybackOptions, PluginConfig, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataAlignmentWithLiterals, PluginContainerDataHeight, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, PluginInstallationSettings, PluginInterface, PluginInterfaceWithLiterals, PluginMarketData, PluginPlacement, PolicyConfig, Poll, PollData, PollDataLayout, PollDesign, PollDesignBackground, PollDesignBackgroundBackgroundOneOf, PollLayout, PollLayoutDirection, PollLayoutDirectionWithLiterals, PollLayoutType, PollLayoutTypeWithLiterals, PollOption, PollSettings, PosProviderSettingsServicePluginConfig, Position, PostLoginConfig, PreRegisterConfig, PredefinedExpectedInput, PredefinedExpectedInputConfiguration, PredefinedExpectedInputConfigurationTypeOneOf, PredefinedLabel, PredefinedValues, Preset, PresetEditorPresence, PresetElementDefaults, PresetInfo, PresetInnerElementDefaults, PresetItem, PresetSize, PresetStyleDefaults, PresetStyleItemOverrides, PresetStyleOverrides, PreviewCardPlaceholders, PreviewConfiguration, PreviewFields, PriceSPIConfig, PriceType, PriceTypeWithLiterals, PricingData, PricingPlansFormConfiguration, PricingRecurring, Primitive, PrimitiveType, PrimitiveTypeWithLiterals, Product, ProductCatalogProviderConfig, ProductCheckboxGroup, ProductCheckboxGroupOption, ProductPriceOptionsOneOf, ProductRestrictionsConfig, ProductType, ProductTypeWithLiterals, ProductsPathsConfig, Project, PropertiesType, PropertiesTypeEnum, PropertiesTypeEnumWithLiterals, PropertiesTypePropertiesTypeOptionsOneOf, ProposalEditorProviderConfig, ProviderAccountServicePluginConfig, ProviderConfig, ProviderConfigMessage, ProviderFilterOptions, PurchaseValidationsConfig, QuantityLimit, RadioButtonLabeled, RadioGroup, RadioGroupOption, RangeConstraints, RateLimit, RatingInput, ReactElementContainer, ReactElementContainerSelectedContainerTypeOneOf, RecipientFilter, RecipientFilterDataOneOf, RecipientFilterType, RecipientFilterTypeWithLiterals, RecipientType, RecipientTypeWithLiterals, RecommendationsProviderConfig, RecurringOptionConfiguration, RecurringPricingTypeConfiguration, RecurringPricingTypeConfigurationFreeTrialConfiguration, RedirectOptions, RefElement, RefInnerElementDefaults, Region, RegionScopeScope, RegionScopeScopeWithLiterals, RegionType, RegionTypeWithLiterals, RegionWithLiterals, ReindexEvent, ReindexField, Rel, RenderOverrides, RepeatedFieldOverrideConfig, ReplaceableOptions, ReplacementType, ReplacementTypeWithLiterals, ReplacingOptions, RequestedField, RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, RequiredIndicatorPlacementWithLiterals, RequiredIndicatorProperties, RequiredIndicatorWithLiterals, RequiredOptions, ResetButton, ResizeDirection, ResizeDirectionWithLiterals, Resizing, ResizingWithLiterals, Resource, Resources, ResponsysEmail, RestaurantsPOSComponentData, RestoreInfo, RestrictedOperation, RestrictedOperationWithLiterals, Restriction, RestrictionLevel, RestrictionLevelWithLiterals, Restrictions, RestrictionsConfig, ReviewsEntityCatalogProviderConfig, ReviewsProductCatalogProviderConfig, RewardProviderConfig, RibbonStyles, RichContent, RichContentOptions, RichText, RichTextAbilities, RichTextAbilitiesWithLiterals, RichTextWithIllustrationVertical, Rule, RuntimeComponentCacheEntity, RuntimeComponentCacheEntityComponent, RuntimeComponentCacheEntityComponentOneOf, RuntimeComponentCacheEntityExperiment, RuntimeComponentCacheEntityExperimentExperimentOneOf, SDKExports, SDKExportsNpm, Scheduling, SchedulingComponentType, SchedulingComponentTypeOptionsOneOf, SchedulingComponentTypeWithLiterals, Schema, SchemaConfig, SchemaField, SchemaFieldExposure, SchemaFieldExposureWithLiterals, SchemaFieldFieldType, SchemaFieldFieldTypeWithLiterals, SchemaFieldType, SchemaFieldTypeFieldTypeOneOf, SchemaGroup, SchemaGroupElement, SchemaKey, SchemaScope, SchemaScopeWithLiterals, Scope, ScopeWithLiterals, ScriptType, ScriptTypeWithLiterals, SdkDefinition, SearchConfig, SearchField, SearchParams, SecondLevelCategory, Section, SentryOptions, SeoKeywordsSuggestionsSPIConfig, ServiceAction, ServiceAvailabilityPolicyProviderConfig, ServiceTrigger, ServicesDropdown, ServicesDropdownOption, Settings, SettingsPanel, SettingsPermissions, SettingsUrl, SetupFeeConfiguration, SharedPlatformMobilePushConfig, ShippingLabelCarrierSpiConfig, ShippingProviderConfig, ShippingRatesConfig, ShorthandGroupBackground, ShoutoutEmail, Sidebar, SidebarChildItem, SidebarChildItemItemOneOf, SidebarConfig, SidebarConfigOneOf, SidebarDataType, SidebarDataTypeWithLiterals, SidebarEntityType, SidebarEntityTypeWithLiterals, SidebarRootItem, SidebarRootItemItemOneOf, SidebarSecondLevelChildItem, SidebarSecondLevelChildItemItemOneOf, SidebarWidget, SidebarWidgetConfig, SidebarWidgetConfigOneOf, Signature, Simple, SimpleContainer, SimpleField, SimpleType, SimpleTypeWithLiterals, SingleContent, SingleKeyCondition, SiteConfig, SiteContributorsData, SiteMemberData, SiteMembersSsrCaching, SiteMembersSsrCachingWithLiterals, SiteMigrationSpiConfig, SiteWidgetSlot, Size, SizingType, SizingTypeWithLiterals, SliderLabeled, Slot, SlotData, SlotDataSlotTypeOneOf, SlotDataType, SlotDataTypeWithLiterals, SlotParams, SmsActionMessage, SmsChannel, SmsContentKeys, SmsMessageConfig, SmsSmsMessageConfig, SnippetSolutionData, SocialMarketingDesignSPIConfig, SocialMarketingDesignsProviderConfig, Source, SourceOptionsOneOf, SourceType, SourceTypeWithLiterals, SpamSubmissionPermissions, Spi, SpiBaseUri, Spoiler, SpoilerData, StartDateLimitsSPIConfig, StartDateRulesSPIConfig, State, StaticContainer, StaticContainerWithLiterals, StaticFileComponentData, StaticFilterOption, StaticFilterOptions, Status, StatusWithLiterals, Step, StorageDomain, StorageDomainWithLiterals, StorageType, StorageTypeWithLiterals, StringComponentType, StringComponentTypeWithLiterals, StringListOptions, StringType, StringTypeFormatOptionsOneOf, StudioComponentData, StudioWidgetComponentData, StudioWidgetVariation, StyleAction, StyleItem, StyleItemDefaults, StyleItemOverrides, StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf, StyleItemSelectedItemTypeOneOf, StyleType, StyleTypeWithLiterals, Styles, StylesBorder, StylesPosition, StylesPositionWithLiterals, SubPage, SubmitSettings, SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, SubmitSuccessActionWithLiterals, SubscriptionInfo, SyncToCalendar, SyncToCalendarWithLiterals, SyncedProjectsProviderConfig, Tab, TableCellData, TableData, Tag, TagOverrides, TagOverridesEntry, TagWithLiterals, Tags, TagsOption, Target, TargetWithLiterals, TaxCalculationConfig, TaxCalculatorSpiConfig, TaxCountriesConfig, TaxExemptGroup, TaxExemptGroupsProviderConfig, TaxGroupsProviderConfig, TaxIdValidatorConfig, TaxTypesConfig, TaxationCategoryProvider, TemplateDefaultColor, TemplateDefaultColorWithLiterals, TemplateType, TemplateTypeWithLiterals, TermsAndConditionsConfiguration, TermsModalConfiguration, Text, TextAlignment, TextAlignmentWithLiterals, TextData, TextDecoration, TextEnum, TextInput, TextInputDisplayType, TextInputDisplayTypeWithLiterals, TextInputLabeled, TextInputSettings, TextNodeStyle, TextStyle, TextStyleDefaultColorOneOf, TextToSpeechActionMessage, TextWithSuffix, TextWithSuffixSuffixOneOf, TextWithTooltip, ThankYouMessageOptions, ThankYouPageConfiguration, ThankYouPageInputConfig, ThankYouPageModalConfiguration, ThankYouPagePreviewConfiguration, ThankYouPageRedirectsConfiguration, ThumbnailData, ThumbnailType, ThumbnailTypeWithLiterals, Thumbnails, ThumbnailsAlignment, ThumbnailsAlignmentWithLiterals, ThumbnailsSize, ThumbnailsSizeWithLiterals, TicketReservationsSpiConfig, TimeConstraintConfiguration, TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, TimeConstraintTypeWithLiterals, TimeInput, ToggleLabeled, ToolPanelConfig, TooltipSuffix, TopologyComponentData, TranslatedData, TranslatedMessageWithIdRepeated, TranslatedMessageWithUniqueFieldRepeated, TranslationResources, Trigger, TriggerFilter, TriggerOverride, TriggerProviderSPIConfig, TriggerWithLiterals, Type, TypeWithLiterals, TypedDynamicParam, TypedDynamicParamType, TypedDynamicParamTypeWithLiterals, UnifiedLightbox, UnifiedPage, UnifiedPageEditorSettings, UnitType, UnitTypeWithLiterals, Until, UpdateDataExtensionSchemaRequest, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, UploadFileFormatEnumUploadFileFormatWithLiterals, UploadFileFormatWithLiterals, UpstreamWixCommonImage, Url, UrlData, UrlParam, UserNotification, UserNotificationData, UserNotificationDataContext, UserNotificationDataDeeplink, UserNotificationDataDeeplinkOfOneOf, UserNotificationDataInitiator, UserNotificationDataInitiatorDataOneOf, UserNotificationDataRecipientFilter, UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, UserNotificationDataTypeWithLiterals, V1Image, V1ImplementedMethods, V1Link, V1LinkDataOneOf, V1Metadata, V1Region, V1SchemaField, V1TextStyle, V2CommunicationChannelConfiguration, V2Condition, V2ImplementedMethods, V2Rule, ValidationTarget, ValidationsSPIConfig, ValueConstraintType, ValueConstraintTypeWithLiterals, VectorArt, VectorArtCategoryTypes, VectorArtCategoryTypesWithLiterals, VeloActionConfig, VeloCustomCss, VeloPublishPipelineTaskProviderConfig, VelocityEmail, VerticalAlignment, VerticalAlignmentWithLiterals, VerticalDocking, VerticalDockingWithLiterals, VibeActionType, VibeActionTypeWithLiterals, VibeCustomPanelAction, VibeDashboardAction, Video, VideoCategoryTypes, VideoCategoryTypesWithLiterals, VideoConferenceOptions, VideoData, ViewMode, ViewModeWithLiterals, ViewRole, ViewRoleWithLiterals, ViewerService, ViewerServiceAssets, VisibleState, VoiceChannel, VoiceContentKeys, VoteRole, VoteRoleWithLiterals, WebComponentData, WebComponentDataElementType, WebComponentDataElementTypeWithLiterals, WebFeedChannel, WebFeedContentKeys, WebhookComponentData, WebhookIdentityType, WebhookIdentityTypeWithLiterals, WidgetAsContent, WidgetBehavior, WidgetComponent, WidgetComponentData, WidgetComponentOptions, WidgetData, WidgetDetails, WidgetDisplay, WidgetHorizontal, WidgetHorizontalWithLiterals, WidgetInstallation, WidgetInstallationSettings, WidgetInstallationSettingsTargetContainerOneOf, WidgetOutOfIframeComponentData, WidgetPluginComponentData, WidgetSize, WidgetSizeHeight, WidgetSizeWidth, WidgetSlot, WidgetVertical, WidgetVerticalWithLiterals, WidgetWidthType, WidgetWidthTypeWithLiterals, Width, WidthType, WidthTypeWithLiterals, WidthWithLiterals, WixApiOptions, WixCodePublishTaskName, WixCodePublishTaskNameWithLiterals, WixDependency, WixFile, WixFileComponentType, WixFileComponentTypeOptionsOneOf, WixFileComponentTypeWithLiterals, WixOfferingComponentData, WixOfferingComponentDataOfferingOneOf, WixPagesDomainMapping, WixUserData, WixUsersData, WixVibeCodingInstructions, WixVibeComponent, WixelSPIConfig, WorkerComponentData, WritingMode, WritingModeValue, WritingModeValueWithLiterals, _Array, _ArrayComponentTypeOptionsOneOf, _Boolean, _BooleanComponentTypeOptionsOneOf, _Date, _Function, _Number, _Object, _String, _StringComponentTypeOptionsOneOf } from './index.typings.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createDataExtensionSchema$1(httpClient: HttpClient): CreateDataExtensionSchemaSignature;
|
|
6
6
|
interface CreateDataExtensionSchemaSignature {
|
|
@@ -36,6 +36,14 @@ interface DeleteByWhiteListedMetaSiteSignature {
|
|
|
36
36
|
*/
|
|
37
37
|
(metaSiteId: string): Promise<NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>>;
|
|
38
38
|
}
|
|
39
|
+
declare function deleteUserDefinedFields$1(httpClient: HttpClient): DeleteUserDefinedFieldsSignature;
|
|
40
|
+
interface DeleteUserDefinedFieldsSignature {
|
|
41
|
+
/**
|
|
42
|
+
* Deletes a user defined field from the schema
|
|
43
|
+
* @param - id
|
|
44
|
+
*/
|
|
45
|
+
(dataExtensionSchemaId: string, options: NonNullablePaths<DeleteUserDefinedFieldsOptions, `fieldsToDelete`, 2>): Promise<DeleteUserDefinedFieldsResponse>;
|
|
46
|
+
}
|
|
39
47
|
declare const onDataExtensionSchemaCreated$1: EventDefinition<DataExtensionSchemaCreatedEnvelope, "wix.data_extensions.v1.data_extension_schema_created">;
|
|
40
48
|
declare const onDataExtensionSchemaDeleted$1: EventDefinition<DataExtensionSchemaDeletedEnvelope, "wix.data_extensions.v1.data_extension_schema_deleted">;
|
|
41
49
|
declare const onDataExtensionSchemaUpdated$1: EventDefinition<DataExtensionSchemaUpdatedEnvelope, "wix.data_extensions.v1.data_extension_schema_updated">;
|
|
@@ -44,6 +52,7 @@ declare const createDataExtensionSchema: MaybeContext<BuildRESTFunction<typeof c
|
|
|
44
52
|
declare const updateDataExtensionSchema: MaybeContext<BuildRESTFunction<typeof updateDataExtensionSchema$1> & typeof updateDataExtensionSchema$1>;
|
|
45
53
|
declare const listDataExtensionSchemas: MaybeContext<BuildRESTFunction<typeof listDataExtensionSchemas$1> & typeof listDataExtensionSchemas$1>;
|
|
46
54
|
declare const deleteByWhiteListedMetaSite: MaybeContext<BuildRESTFunction<typeof deleteByWhiteListedMetaSite$1> & typeof deleteByWhiteListedMetaSite$1>;
|
|
55
|
+
declare const deleteUserDefinedFields: MaybeContext<BuildRESTFunction<typeof deleteUserDefinedFields$1> & typeof deleteUserDefinedFields$1>;
|
|
47
56
|
/**
|
|
48
57
|
* Triggered when a data extension schema is created.
|
|
49
58
|
*/
|
|
@@ -57,4 +66,4 @@ declare const onDataExtensionSchemaDeleted: BuildEventDefinition<typeof onDataEx
|
|
|
57
66
|
*/
|
|
58
67
|
declare const onDataExtensionSchemaUpdated: BuildEventDefinition<typeof onDataExtensionSchemaUpdated$1> & typeof onDataExtensionSchemaUpdated$1;
|
|
59
68
|
|
|
60
|
-
export { DataExtensionSchema, DataExtensionSchemaCreatedEnvelope, DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaUpdatedEnvelope, DeleteByWhiteListedMetaSiteResponse, ListDataExtensionSchemasOptions, ListDataExtensionSchemasResponse, UpdateDataExtensionSchemaResponse, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
|
|
69
|
+
export { DataExtensionSchema, DataExtensionSchemaCreatedEnvelope, DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaUpdatedEnvelope, DeleteByWhiteListedMetaSiteResponse, DeleteUserDefinedFieldsOptions, DeleteUserDefinedFieldsResponse, ListDataExtensionSchemasOptions, ListDataExtensionSchemasResponse, UpdateDataExtensionSchemaResponse, createDataExtensionSchema, deleteByWhiteListedMetaSite, deleteUserDefinedFields, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
|
package/build/es/index.mjs
CHANGED
|
@@ -69,6 +69,9 @@ function createDataExtensionSchema(payload) {
|
|
|
69
69
|
method: "POST",
|
|
70
70
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema",
|
|
71
71
|
packageName: PACKAGE_NAME,
|
|
72
|
+
migrationOptions: {
|
|
73
|
+
optInTransformResponse: true
|
|
74
|
+
},
|
|
72
75
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
73
76
|
protoPath: "/v1/schemas",
|
|
74
77
|
data: serializedData,
|
|
@@ -105,6 +108,9 @@ function updateDataExtensionSchema(payload) {
|
|
|
105
108
|
method: "PUT",
|
|
106
109
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema",
|
|
107
110
|
packageName: PACKAGE_NAME,
|
|
111
|
+
migrationOptions: {
|
|
112
|
+
optInTransformResponse: true
|
|
113
|
+
},
|
|
108
114
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
109
115
|
protoPath: "/v1/schemas",
|
|
110
116
|
data: serializedData,
|
|
@@ -132,6 +138,9 @@ function listDataExtensionSchemas(payload) {
|
|
|
132
138
|
method: "GET",
|
|
133
139
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas",
|
|
134
140
|
packageName: PACKAGE_NAME,
|
|
141
|
+
migrationOptions: {
|
|
142
|
+
optInTransformResponse: true
|
|
143
|
+
},
|
|
135
144
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
136
145
|
protoPath: "/v1/schemas",
|
|
137
146
|
data: payload,
|
|
@@ -159,6 +168,9 @@ function deleteByWhiteListedMetaSite(payload) {
|
|
|
159
168
|
method: "POST",
|
|
160
169
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite",
|
|
161
170
|
packageName: PACKAGE_NAME,
|
|
171
|
+
migrationOptions: {
|
|
172
|
+
optInTransformResponse: true
|
|
173
|
+
},
|
|
162
174
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
163
175
|
protoPath: "/v1/schemas/delete-by-white-listed-meta-site",
|
|
164
176
|
data: payload,
|
|
@@ -170,6 +182,36 @@ function deleteByWhiteListedMetaSite(payload) {
|
|
|
170
182
|
}
|
|
171
183
|
return __deleteByWhiteListedMetaSite;
|
|
172
184
|
}
|
|
185
|
+
function deleteUserDefinedFields(payload) {
|
|
186
|
+
function __deleteUserDefinedFields({ host }) {
|
|
187
|
+
const metadata = {
|
|
188
|
+
entityFqdn: "wix.data_extensions.v1.data_extension_schema",
|
|
189
|
+
method: "POST",
|
|
190
|
+
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields",
|
|
191
|
+
packageName: PACKAGE_NAME,
|
|
192
|
+
migrationOptions: {
|
|
193
|
+
optInTransformResponse: true
|
|
194
|
+
},
|
|
195
|
+
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
196
|
+
protoPath: "/v1/schemas/delete-user-defined-fields",
|
|
197
|
+
data: payload,
|
|
198
|
+
host
|
|
199
|
+
}),
|
|
200
|
+
data: payload,
|
|
201
|
+
transformResponse: (payload2) => transformPaths(payload2, [
|
|
202
|
+
{
|
|
203
|
+
transformFn: transformRESTTimestampToSDKTimestamp,
|
|
204
|
+
paths: [
|
|
205
|
+
{ path: "dataExtensionSchema.updatedDate" },
|
|
206
|
+
{ path: "dataExtensionSchema.createdDate" }
|
|
207
|
+
]
|
|
208
|
+
}
|
|
209
|
+
])
|
|
210
|
+
};
|
|
211
|
+
return metadata;
|
|
212
|
+
}
|
|
213
|
+
return __deleteUserDefinedFields;
|
|
214
|
+
}
|
|
173
215
|
|
|
174
216
|
// src/data-extensions-v1-data-extension-schema-schemas.universal.ts
|
|
175
217
|
var DataExtensionSchemaState = /* @__PURE__ */ ((DataExtensionSchemaState2) => {
|
|
@@ -695,6 +737,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
|
|
|
695
737
|
BackOfficeHostingPlatforms2["PICASSO_EDITOR"] = "PICASSO_EDITOR";
|
|
696
738
|
BackOfficeHostingPlatforms2["BASE44_DASHBOARD_POC"] = "BASE44_DASHBOARD_POC";
|
|
697
739
|
BackOfficeHostingPlatforms2["WIXEL_EDITOR"] = "WIXEL_EDITOR";
|
|
740
|
+
BackOfficeHostingPlatforms2["BASE44_PLATFORM"] = "BASE44_PLATFORM";
|
|
698
741
|
return BackOfficeHostingPlatforms2;
|
|
699
742
|
})(BackOfficeHostingPlatforms || {});
|
|
700
743
|
var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {
|
|
@@ -2692,6 +2735,37 @@ async function deleteByWhiteListedMetaSite2(metaSiteId) {
|
|
|
2692
2735
|
throw transformedError;
|
|
2693
2736
|
}
|
|
2694
2737
|
}
|
|
2738
|
+
async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
|
|
2739
|
+
const { httpClient, sideEffects } = arguments[2];
|
|
2740
|
+
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
2741
|
+
dataExtensionSchemaId,
|
|
2742
|
+
fieldsToDelete: options?.fieldsToDelete
|
|
2743
|
+
});
|
|
2744
|
+
const reqOpts = deleteUserDefinedFields(
|
|
2745
|
+
payload
|
|
2746
|
+
);
|
|
2747
|
+
sideEffects?.onSiteCall?.();
|
|
2748
|
+
try {
|
|
2749
|
+
const result = await httpClient.request(reqOpts);
|
|
2750
|
+
sideEffects?.onSuccess?.(result);
|
|
2751
|
+
return renameKeysFromRESTResponseToSDKResponse(result.data);
|
|
2752
|
+
} catch (err) {
|
|
2753
|
+
const transformedError = sdkTransformError(
|
|
2754
|
+
err,
|
|
2755
|
+
{
|
|
2756
|
+
spreadPathsToArguments: {},
|
|
2757
|
+
explicitPathsToArguments: {
|
|
2758
|
+
dataExtensionSchemaId: "$[0]",
|
|
2759
|
+
fieldsToDelete: "$[1].fieldsToDelete"
|
|
2760
|
+
},
|
|
2761
|
+
singleArgumentUnchanged: false
|
|
2762
|
+
},
|
|
2763
|
+
["dataExtensionSchemaId", "options"]
|
|
2764
|
+
);
|
|
2765
|
+
sideEffects?.onError?.(err);
|
|
2766
|
+
throw transformedError;
|
|
2767
|
+
}
|
|
2768
|
+
}
|
|
2695
2769
|
|
|
2696
2770
|
// src/data-extensions-v1-data-extension-schema-schemas.public.ts
|
|
2697
2771
|
function createDataExtensionSchema3(httpClient) {
|
|
@@ -2723,6 +2797,14 @@ function deleteByWhiteListedMetaSite3(httpClient) {
|
|
|
2723
2797
|
{ httpClient }
|
|
2724
2798
|
);
|
|
2725
2799
|
}
|
|
2800
|
+
function deleteUserDefinedFields3(httpClient) {
|
|
2801
|
+
return (dataExtensionSchemaId, options) => deleteUserDefinedFields2(
|
|
2802
|
+
dataExtensionSchemaId,
|
|
2803
|
+
options,
|
|
2804
|
+
// @ts-ignore
|
|
2805
|
+
{ httpClient }
|
|
2806
|
+
);
|
|
2807
|
+
}
|
|
2726
2808
|
var onDataExtensionSchemaCreated = EventDefinition(
|
|
2727
2809
|
"wix.data_extensions.v1.data_extension_schema_created",
|
|
2728
2810
|
true,
|
|
@@ -2779,6 +2861,7 @@ var createDataExtensionSchema4 = /* @__PURE__ */ createRESTModule(createDataExte
|
|
|
2779
2861
|
var updateDataExtensionSchema4 = /* @__PURE__ */ createRESTModule(updateDataExtensionSchema3);
|
|
2780
2862
|
var listDataExtensionSchemas4 = /* @__PURE__ */ createRESTModule(listDataExtensionSchemas3);
|
|
2781
2863
|
var deleteByWhiteListedMetaSite4 = /* @__PURE__ */ createRESTModule(deleteByWhiteListedMetaSite3);
|
|
2864
|
+
var deleteUserDefinedFields4 = /* @__PURE__ */ createRESTModule(deleteUserDefinedFields3);
|
|
2782
2865
|
var onDataExtensionSchemaCreated2 = createEventModule(
|
|
2783
2866
|
onDataExtensionSchemaCreated
|
|
2784
2867
|
);
|
|
@@ -3027,6 +3110,7 @@ export {
|
|
|
3027
3110
|
WritingModeValue,
|
|
3028
3111
|
createDataExtensionSchema4 as createDataExtensionSchema,
|
|
3029
3112
|
deleteByWhiteListedMetaSite4 as deleteByWhiteListedMetaSite,
|
|
3113
|
+
deleteUserDefinedFields4 as deleteUserDefinedFields,
|
|
3030
3114
|
listDataExtensionSchemas4 as listDataExtensionSchemas,
|
|
3031
3115
|
onDataExtensionSchemaCreated2 as onDataExtensionSchemaCreated,
|
|
3032
3116
|
onDataExtensionSchemaDeleted2 as onDataExtensionSchemaDeleted,
|