@wix/auto_sdk_data-extension-schema_schemas 1.0.230 → 1.0.232

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +31 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +127 -3
  5. package/build/cjs/index.typings.js +31 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +127 -3
  8. package/build/cjs/meta.js +31 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +27 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +127 -3
  14. package/build/es/index.typings.mjs +27 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +127 -3
  17. package/build/es/meta.mjs +27 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +31 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +127 -3
  23. package/build/internal/cjs/index.typings.js +31 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +127 -3
  26. package/build/internal/cjs/meta.js +31 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +27 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +127 -3
  32. package/build/internal/es/index.typings.mjs +27 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +127 -3
  35. package/build/internal/es/meta.mjs +27 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
package/build/es/meta.mjs CHANGED
@@ -441,6 +441,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
441
441
  ComponentType2["ROLLOUT_STEP_EXECUTOR"] = "ROLLOUT_STEP_EXECUTOR";
442
442
  ComponentType2["BOOKINGS_PLATFORM_PREMIUM_VALIDATION"] = "BOOKINGS_PLATFORM_PREMIUM_VALIDATION";
443
443
  ComponentType2["GLOBAL_CSS"] = "GLOBAL_CSS";
444
+ ComponentType2["CONNECTOR_CONFIG"] = "CONNECTOR_CONFIG";
444
445
  return ComponentType2;
445
446
  })(ComponentType || {});
446
447
  var WidgetVertical = /* @__PURE__ */ ((WidgetVertical2) => {
@@ -2208,6 +2209,11 @@ var InputType = /* @__PURE__ */ ((InputType2) => {
2208
2209
  InputType2["date"] = "date";
2209
2210
  return InputType2;
2210
2211
  })(InputType || {});
2212
+ var FunctionRole = /* @__PURE__ */ ((FunctionRole2) => {
2213
+ FunctionRole2["UNKNOWN_FUNCTION_ROLE"] = "UNKNOWN_FUNCTION_ROLE";
2214
+ FunctionRole2["data_type_conversion"] = "data_type_conversion";
2215
+ return FunctionRole2;
2216
+ })(FunctionRole || {});
2211
2217
  var FilterOperator = /* @__PURE__ */ ((FilterOperator2) => {
2212
2218
  FilterOperator2["UNKNOWN_FilterOperator"] = "UNKNOWN_FilterOperator";
2213
2219
  FilterOperator2["eq"] = "eq";
@@ -3046,6 +3052,23 @@ var PremiumProviderFailurePolicy = /* @__PURE__ */ ((PremiumProviderFailurePolic
3046
3052
  PremiumProviderFailurePolicy2["FAIL_CLOSED"] = "FAIL_CLOSED";
3047
3053
  return PremiumProviderFailurePolicy2;
3048
3054
  })(PremiumProviderFailurePolicy || {});
3055
+ var ScopeSeparator = /* @__PURE__ */ ((ScopeSeparator2) => {
3056
+ ScopeSeparator2["UNKNOWN_SCOPE_SEPARATOR"] = "UNKNOWN_SCOPE_SEPARATOR";
3057
+ ScopeSeparator2["SPACE"] = "SPACE";
3058
+ ScopeSeparator2["COMMA"] = "COMMA";
3059
+ return ScopeSeparator2;
3060
+ })(ScopeSeparator || {});
3061
+ var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
3062
+ TokenEndpointAuthMethod2["UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD"] = "UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD";
3063
+ TokenEndpointAuthMethod2["CLIENT_SECRET_POST"] = "CLIENT_SECRET_POST";
3064
+ TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
3065
+ return TokenEndpointAuthMethod2;
3066
+ })(TokenEndpointAuthMethod || {});
3067
+ var AuthType = /* @__PURE__ */ ((AuthType2) => {
3068
+ AuthType2["OAUTH2"] = "OAUTH2";
3069
+ AuthType2["API_KEY"] = "API_KEY";
3070
+ return AuthType2;
3071
+ })(AuthType || {});
3049
3072
  var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
3050
3073
  WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
3051
3074
  WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
@@ -3179,6 +3202,7 @@ export {
3179
3202
  ArrayComponentType as ArrayComponentTypeOriginal,
3180
3203
  AspectRatio as AspectRatioOriginal,
3181
3204
  AssetType as AssetTypeOriginal,
3205
+ AuthType as AuthTypeOriginal,
3182
3206
  AvatarShape as AvatarShapeOriginal,
3183
3207
  BackOfficeHostingPlatforms as BackOfficeHostingPlatformsOriginal,
3184
3208
  BackOfficeScriptAssetType as BackOfficeScriptAssetTypeOriginal,
@@ -3262,6 +3286,7 @@ export {
3262
3286
  FirstDayOfWeek as FirstDayOfWeekOriginal,
3263
3287
  FontType as FontTypeOriginal,
3264
3288
  Format as FormatOriginal,
3289
+ FunctionRole as FunctionRoleOriginal,
3265
3290
  GIFType as GIFTypeOriginal,
3266
3291
  GradientType as GradientTypeOriginal,
3267
3292
  GroupType as GroupTypeOriginal,
@@ -3379,6 +3404,7 @@ export {
3379
3404
  SchemaFieldFieldType as SchemaFieldFieldTypeOriginal,
3380
3405
  SchemaScope as SchemaScopeOriginal,
3381
3406
  Scope as ScopeOriginal,
3407
+ ScopeSeparator as ScopeSeparatorOriginal,
3382
3408
  ScopeType as ScopeTypeOriginal,
3383
3409
  ScriptType as ScriptTypeOriginal,
3384
3410
  SidebarDataType as SidebarDataTypeOriginal,
@@ -3409,6 +3435,7 @@ export {
3409
3435
  ThumbnailsAlignment as ThumbnailsAlignmentOriginal,
3410
3436
  ThumbnailsSize as ThumbnailsSizeOriginal,
3411
3437
  TimeConstraintType as TimeConstraintTypeOriginal,
3438
+ TokenEndpointAuthMethod as TokenEndpointAuthMethodOriginal,
3412
3439
  Trigger as TriggerOriginal,
3413
3440
  Type as TypeOriginal,
3414
3441
  TypedDynamicParamType as TypedDynamicParamTypeOriginal,