@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/es/meta.d.mts
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.mjs';
|
|
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.mjs';
|
|
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/es/meta.mjs
CHANGED
|
@@ -56,6 +56,9 @@ function createDataExtensionSchema(payload) {
|
|
|
56
56
|
method: "POST",
|
|
57
57
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema",
|
|
58
58
|
packageName: PACKAGE_NAME,
|
|
59
|
+
migrationOptions: {
|
|
60
|
+
optInTransformResponse: true
|
|
61
|
+
},
|
|
59
62
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
60
63
|
protoPath: "/v1/schemas",
|
|
61
64
|
data: serializedData,
|
|
@@ -92,6 +95,9 @@ function updateDataExtensionSchema(payload) {
|
|
|
92
95
|
method: "PUT",
|
|
93
96
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema",
|
|
94
97
|
packageName: PACKAGE_NAME,
|
|
98
|
+
migrationOptions: {
|
|
99
|
+
optInTransformResponse: true
|
|
100
|
+
},
|
|
95
101
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
96
102
|
protoPath: "/v1/schemas",
|
|
97
103
|
data: serializedData,
|
|
@@ -119,6 +125,9 @@ function listDataExtensionSchemas(payload) {
|
|
|
119
125
|
method: "GET",
|
|
120
126
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas",
|
|
121
127
|
packageName: PACKAGE_NAME,
|
|
128
|
+
migrationOptions: {
|
|
129
|
+
optInTransformResponse: true
|
|
130
|
+
},
|
|
122
131
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
123
132
|
protoPath: "/v1/schemas",
|
|
124
133
|
data: payload,
|
|
@@ -146,6 +155,9 @@ function deleteByWhiteListedMetaSite(payload) {
|
|
|
146
155
|
method: "POST",
|
|
147
156
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite",
|
|
148
157
|
packageName: PACKAGE_NAME,
|
|
158
|
+
migrationOptions: {
|
|
159
|
+
optInTransformResponse: true
|
|
160
|
+
},
|
|
149
161
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
150
162
|
protoPath: "/v1/schemas/delete-by-white-listed-meta-site",
|
|
151
163
|
data: payload,
|
|
@@ -157,6 +169,36 @@ function deleteByWhiteListedMetaSite(payload) {
|
|
|
157
169
|
}
|
|
158
170
|
return __deleteByWhiteListedMetaSite;
|
|
159
171
|
}
|
|
172
|
+
function deleteUserDefinedFields(payload) {
|
|
173
|
+
function __deleteUserDefinedFields({ host }) {
|
|
174
|
+
const metadata = {
|
|
175
|
+
entityFqdn: "wix.data_extensions.v1.data_extension_schema",
|
|
176
|
+
method: "POST",
|
|
177
|
+
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields",
|
|
178
|
+
packageName: PACKAGE_NAME,
|
|
179
|
+
migrationOptions: {
|
|
180
|
+
optInTransformResponse: true
|
|
181
|
+
},
|
|
182
|
+
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
183
|
+
protoPath: "/v1/schemas/delete-user-defined-fields",
|
|
184
|
+
data: payload,
|
|
185
|
+
host
|
|
186
|
+
}),
|
|
187
|
+
data: payload,
|
|
188
|
+
transformResponse: (payload2) => transformPaths(payload2, [
|
|
189
|
+
{
|
|
190
|
+
transformFn: transformRESTTimestampToSDKTimestamp,
|
|
191
|
+
paths: [
|
|
192
|
+
{ path: "dataExtensionSchema.updatedDate" },
|
|
193
|
+
{ path: "dataExtensionSchema.createdDate" }
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
])
|
|
197
|
+
};
|
|
198
|
+
return metadata;
|
|
199
|
+
}
|
|
200
|
+
return __deleteUserDefinedFields;
|
|
201
|
+
}
|
|
160
202
|
|
|
161
203
|
// src/data-extensions-v1-data-extension-schema-schemas.meta.ts
|
|
162
204
|
function createDataExtensionSchema2() {
|
|
@@ -239,9 +281,30 @@ function deleteByWhiteListedMetaSite2() {
|
|
|
239
281
|
__originalResponseType: null
|
|
240
282
|
};
|
|
241
283
|
}
|
|
284
|
+
function deleteUserDefinedFields2() {
|
|
285
|
+
const payload = {};
|
|
286
|
+
const getRequestOptions = deleteUserDefinedFields(
|
|
287
|
+
payload
|
|
288
|
+
);
|
|
289
|
+
const getUrl = (context) => {
|
|
290
|
+
const { url } = getRequestOptions(context);
|
|
291
|
+
return url;
|
|
292
|
+
};
|
|
293
|
+
return {
|
|
294
|
+
getUrl,
|
|
295
|
+
httpMethod: "POST",
|
|
296
|
+
path: "/v1/schemas/delete-user-defined-fields",
|
|
297
|
+
pathParams: {},
|
|
298
|
+
__requestType: null,
|
|
299
|
+
__originalRequestType: null,
|
|
300
|
+
__responseType: null,
|
|
301
|
+
__originalResponseType: null
|
|
302
|
+
};
|
|
303
|
+
}
|
|
242
304
|
export {
|
|
243
305
|
createDataExtensionSchema2 as createDataExtensionSchema,
|
|
244
306
|
deleteByWhiteListedMetaSite2 as deleteByWhiteListedMetaSite,
|
|
307
|
+
deleteUserDefinedFields2 as deleteUserDefinedFields,
|
|
245
308
|
listDataExtensionSchemas2 as listDataExtensionSchemas,
|
|
246
309
|
updateDataExtensionSchema2 as updateDataExtensionSchema
|
|
247
310
|
};
|
package/build/es/meta.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/data-extensions-v1-data-extension-schema-schemas.http.ts","../../src/data-extensions-v1-data-extension-schema-schemas.meta.ts"],"sourcesContent":["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":["payload","createDataExtensionSchema","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite"]}
|
|
1
|
+
{"version":3,"sources":["../../src/data-extensions-v1-data-extension-schema-schemas.http.ts","../../src/data-extensions-v1-data-extension-schema-schemas.meta.ts"],"sourcesContent":["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":["payload","createDataExtensionSchema","updateDataExtensionSchema","listDataExtensionSchemas","deleteByWhiteListedMetaSite","deleteUserDefinedFields"]}
|
|
@@ -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.js';
|
|
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.js';
|
|
2
|
+
import { DataExtensionSchema, UpdateDataExtensionSchemaResponse, ListDataExtensionSchemasOptions, ListDataExtensionSchemasResponse, DeleteByWhiteListedMetaSiteResponse, DeleteUserDefinedFieldsOptions, DeleteUserDefinedFieldsResponse, DataExtensionSchemaCreatedEnvelope, DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaUpdatedEnvelope } from './index.typings.js';
|
|
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.js';
|
|
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 };
|
|
@@ -258,6 +258,7 @@ __export(index_exports, {
|
|
|
258
258
|
WritingModeValue: () => WritingModeValue,
|
|
259
259
|
createDataExtensionSchema: () => createDataExtensionSchema4,
|
|
260
260
|
deleteByWhiteListedMetaSite: () => deleteByWhiteListedMetaSite4,
|
|
261
|
+
deleteUserDefinedFields: () => deleteUserDefinedFields4,
|
|
261
262
|
listDataExtensionSchemas: () => listDataExtensionSchemas4,
|
|
262
263
|
onDataExtensionSchemaCreated: () => onDataExtensionSchemaCreated2,
|
|
263
264
|
onDataExtensionSchemaDeleted: () => onDataExtensionSchemaDeleted2,
|
|
@@ -334,6 +335,9 @@ function createDataExtensionSchema(payload) {
|
|
|
334
335
|
method: "POST",
|
|
335
336
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.CreateDataExtensionSchema",
|
|
336
337
|
packageName: PACKAGE_NAME,
|
|
338
|
+
migrationOptions: {
|
|
339
|
+
optInTransformResponse: true
|
|
340
|
+
},
|
|
337
341
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
338
342
|
protoPath: "/v1/schemas",
|
|
339
343
|
data: serializedData,
|
|
@@ -370,6 +374,9 @@ function updateDataExtensionSchema(payload) {
|
|
|
370
374
|
method: "PUT",
|
|
371
375
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.UpdateDataExtensionSchema",
|
|
372
376
|
packageName: PACKAGE_NAME,
|
|
377
|
+
migrationOptions: {
|
|
378
|
+
optInTransformResponse: true
|
|
379
|
+
},
|
|
373
380
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
374
381
|
protoPath: "/v1/schemas",
|
|
375
382
|
data: serializedData,
|
|
@@ -397,6 +404,9 @@ function listDataExtensionSchemas(payload) {
|
|
|
397
404
|
method: "GET",
|
|
398
405
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.ListDataExtensionSchemas",
|
|
399
406
|
packageName: PACKAGE_NAME,
|
|
407
|
+
migrationOptions: {
|
|
408
|
+
optInTransformResponse: true
|
|
409
|
+
},
|
|
400
410
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
401
411
|
protoPath: "/v1/schemas",
|
|
402
412
|
data: payload,
|
|
@@ -424,6 +434,9 @@ function deleteByWhiteListedMetaSite(payload) {
|
|
|
424
434
|
method: "POST",
|
|
425
435
|
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteByWhiteListedMetaSite",
|
|
426
436
|
packageName: PACKAGE_NAME,
|
|
437
|
+
migrationOptions: {
|
|
438
|
+
optInTransformResponse: true
|
|
439
|
+
},
|
|
427
440
|
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
428
441
|
protoPath: "/v1/schemas/delete-by-white-listed-meta-site",
|
|
429
442
|
data: payload,
|
|
@@ -435,6 +448,36 @@ function deleteByWhiteListedMetaSite(payload) {
|
|
|
435
448
|
}
|
|
436
449
|
return __deleteByWhiteListedMetaSite;
|
|
437
450
|
}
|
|
451
|
+
function deleteUserDefinedFields(payload) {
|
|
452
|
+
function __deleteUserDefinedFields({ host }) {
|
|
453
|
+
const metadata = {
|
|
454
|
+
entityFqdn: "wix.data_extensions.v1.data_extension_schema",
|
|
455
|
+
method: "POST",
|
|
456
|
+
methodFqn: "wix.infra.dataextensions.v1.DataExtensionSchemaService.DeleteUserDefinedFields",
|
|
457
|
+
packageName: PACKAGE_NAME,
|
|
458
|
+
migrationOptions: {
|
|
459
|
+
optInTransformResponse: true
|
|
460
|
+
},
|
|
461
|
+
url: resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl({
|
|
462
|
+
protoPath: "/v1/schemas/delete-user-defined-fields",
|
|
463
|
+
data: payload,
|
|
464
|
+
host
|
|
465
|
+
}),
|
|
466
|
+
data: payload,
|
|
467
|
+
transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
|
|
468
|
+
{
|
|
469
|
+
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
470
|
+
paths: [
|
|
471
|
+
{ path: "dataExtensionSchema.updatedDate" },
|
|
472
|
+
{ path: "dataExtensionSchema.createdDate" }
|
|
473
|
+
]
|
|
474
|
+
}
|
|
475
|
+
])
|
|
476
|
+
};
|
|
477
|
+
return metadata;
|
|
478
|
+
}
|
|
479
|
+
return __deleteUserDefinedFields;
|
|
480
|
+
}
|
|
438
481
|
|
|
439
482
|
// src/data-extensions-v1-data-extension-schema-schemas.universal.ts
|
|
440
483
|
var DataExtensionSchemaState = /* @__PURE__ */ ((DataExtensionSchemaState2) => {
|
|
@@ -960,6 +1003,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
|
|
|
960
1003
|
BackOfficeHostingPlatforms2["PICASSO_EDITOR"] = "PICASSO_EDITOR";
|
|
961
1004
|
BackOfficeHostingPlatforms2["BASE44_DASHBOARD_POC"] = "BASE44_DASHBOARD_POC";
|
|
962
1005
|
BackOfficeHostingPlatforms2["WIXEL_EDITOR"] = "WIXEL_EDITOR";
|
|
1006
|
+
BackOfficeHostingPlatforms2["BASE44_PLATFORM"] = "BASE44_PLATFORM";
|
|
963
1007
|
return BackOfficeHostingPlatforms2;
|
|
964
1008
|
})(BackOfficeHostingPlatforms || {});
|
|
965
1009
|
var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {
|
|
@@ -2957,6 +3001,37 @@ async function deleteByWhiteListedMetaSite2(metaSiteId) {
|
|
|
2957
3001
|
throw transformedError;
|
|
2958
3002
|
}
|
|
2959
3003
|
}
|
|
3004
|
+
async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
|
|
3005
|
+
const { httpClient, sideEffects } = arguments[2];
|
|
3006
|
+
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
3007
|
+
dataExtensionSchemaId,
|
|
3008
|
+
fieldsToDelete: options?.fieldsToDelete
|
|
3009
|
+
});
|
|
3010
|
+
const reqOpts = deleteUserDefinedFields(
|
|
3011
|
+
payload
|
|
3012
|
+
);
|
|
3013
|
+
sideEffects?.onSiteCall?.();
|
|
3014
|
+
try {
|
|
3015
|
+
const result = await httpClient.request(reqOpts);
|
|
3016
|
+
sideEffects?.onSuccess?.(result);
|
|
3017
|
+
return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
|
|
3018
|
+
} catch (err) {
|
|
3019
|
+
const transformedError = (0, import_transform_error.transformError)(
|
|
3020
|
+
err,
|
|
3021
|
+
{
|
|
3022
|
+
spreadPathsToArguments: {},
|
|
3023
|
+
explicitPathsToArguments: {
|
|
3024
|
+
dataExtensionSchemaId: "$[0]",
|
|
3025
|
+
fieldsToDelete: "$[1].fieldsToDelete"
|
|
3026
|
+
},
|
|
3027
|
+
singleArgumentUnchanged: false
|
|
3028
|
+
},
|
|
3029
|
+
["dataExtensionSchemaId", "options"]
|
|
3030
|
+
);
|
|
3031
|
+
sideEffects?.onError?.(err);
|
|
3032
|
+
throw transformedError;
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
2960
3035
|
|
|
2961
3036
|
// src/data-extensions-v1-data-extension-schema-schemas.public.ts
|
|
2962
3037
|
function createDataExtensionSchema3(httpClient) {
|
|
@@ -2988,6 +3063,14 @@ function deleteByWhiteListedMetaSite3(httpClient) {
|
|
|
2988
3063
|
{ httpClient }
|
|
2989
3064
|
);
|
|
2990
3065
|
}
|
|
3066
|
+
function deleteUserDefinedFields3(httpClient) {
|
|
3067
|
+
return (dataExtensionSchemaId, options) => deleteUserDefinedFields2(
|
|
3068
|
+
dataExtensionSchemaId,
|
|
3069
|
+
options,
|
|
3070
|
+
// @ts-ignore
|
|
3071
|
+
{ httpClient }
|
|
3072
|
+
);
|
|
3073
|
+
}
|
|
2991
3074
|
var onDataExtensionSchemaCreated = (0, import_sdk_types.EventDefinition)(
|
|
2992
3075
|
"wix.data_extensions.v1.data_extension_schema_created",
|
|
2993
3076
|
true,
|
|
@@ -3044,6 +3127,7 @@ var createDataExtensionSchema4 = /* @__PURE__ */ (0, import_rest_modules3.create
|
|
|
3044
3127
|
var updateDataExtensionSchema4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(updateDataExtensionSchema3);
|
|
3045
3128
|
var listDataExtensionSchemas4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(listDataExtensionSchemas3);
|
|
3046
3129
|
var deleteByWhiteListedMetaSite4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(deleteByWhiteListedMetaSite3);
|
|
3130
|
+
var deleteUserDefinedFields4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(deleteUserDefinedFields3);
|
|
3047
3131
|
var onDataExtensionSchemaCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
3048
3132
|
onDataExtensionSchemaCreated
|
|
3049
3133
|
);
|
|
@@ -3293,6 +3377,7 @@ var onDataExtensionSchemaUpdated2 = (0, import_event_definition_modules.createEv
|
|
|
3293
3377
|
WritingModeValue,
|
|
3294
3378
|
createDataExtensionSchema,
|
|
3295
3379
|
deleteByWhiteListedMetaSite,
|
|
3380
|
+
deleteUserDefinedFields,
|
|
3296
3381
|
listDataExtensionSchemas,
|
|
3297
3382
|
onDataExtensionSchemaCreated,
|
|
3298
3383
|
onDataExtensionSchemaDeleted,
|