@wix/create-app 0.0.163 → 0.0.165

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/index.js CHANGED
@@ -58073,6 +58073,7 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
58073
58073
  FailedToUploadStaticFiles: {},
58074
58074
  FailedCreatingAppProject: {},
58075
58075
  FailedToGetAppProject: {},
58076
+ FailedToCreateCodestoreProject: {},
58076
58077
  FailedCreatingAppDeployment: {},
58077
58078
  FailedFinalizingAppDeployment: {},
58078
58079
  FailedCreatingNewFunnelProject: {},
@@ -58080,7 +58081,10 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
58080
58081
  FailedToCreateShareUrl: {},
58081
58082
  FailedToListShareUrls: {},
58082
58083
  FailedToParseNextVersion: (0, import_variant11.fields)(),
58083
- FailedToDistributeClientManifestUpdate: {}
58084
+ FailedToDistributeClientManifestUpdate: {},
58085
+ FailedToCreateRoutesWithMetaSiteUrl: {},
58086
+ FailedToGetGitHubOnboardingStatus: (0, import_variant11.fields)(),
58087
+ FailedToInitGitHubRepository: (0, import_variant11.fields)()
58084
58088
  });
58085
58089
  var CliUserErrorCode = (0, import_variant11.variant)({
58086
58090
  LatestVersionOfCreateAppRequired: (0, import_variant11.fields)(),
@@ -58102,6 +58106,7 @@ var CliUserErrorCode = (0, import_variant11.variant)({
58102
58106
  FailedToRemoveDir: (0, import_variant11.fields)(),
58103
58107
  InvalidJsonFile: (0, import_variant11.fields)(),
58104
58108
  FailedToWriteWixLock: {},
58109
+ FailedToWriteDependenciesMetadata: {},
58105
58110
  InvalidVeloConfigJson: (0, import_variant11.fields)(),
58106
58111
  DashboardPageConfigNotFound: (0, import_variant11.fields)(),
58107
58112
  EmbeddedScriptConfigNotFound: (0, import_variant11.fields)(),
@@ -58154,7 +58159,13 @@ var CliUserErrorCode = (0, import_variant11.variant)({
58154
58159
  FailedToQueryPublishedContents: {},
58155
58160
  NoTranslationPublishedContents: {},
58156
58161
  TranslationUnsupportedForProjectType: {},
58162
+ TranslationFileNotFound: (0, import_variant11.fields)(),
58163
+ InvalidTranslationsFileSchema: (0, import_variant11.fields)(),
58164
+ ConnectUnsupportedForProjectType: {},
58157
58165
  MultilingualAppNotInstalled: {},
58166
+ FailedToFetchPrimaryLanguage: {},
58167
+ FailedToPushTranslations: {},
58168
+ FailedToPullTranslations: {},
58158
58169
  AppForVersionNotFound: (0, import_variant11.fields)(),
58159
58170
  UnknownServicePlugin: (0, import_variant11.fields)(),
58160
58171
  InvalidServicePluginFolder: (0, import_variant11.fields)(),
@@ -58206,7 +58217,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
58206
58217
  EAccessPermissionDenied: {},
58207
58218
  InvalidSiteComponentElementItem: (0, import_variant11.fields)(),
58208
58219
  TrustedAppIsNotMarkedAsInternal: {},
58209
- DevCommandFailed: {}
58220
+ DevCommandFailed: {},
58221
+ VibeRepositorySetupTimedout: {}
58210
58222
  });
58211
58223
  var CliErrorCode = (0, import_variant11.variant)({
58212
58224
  ...CliSystemErrorCode,
@@ -67622,7 +67634,32 @@ function getErrorComponent(code, cause) {
67622
67634
  );
67623
67635
  },
67624
67636
  TranslationUnsupportedForProjectType: () => {
67625
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Translation pull command only applicable for headless sites." });
67637
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Translation command only applicable for headless sites." });
67638
+ },
67639
+ TranslationFileNotFound: ({ filePath }) => {
67640
+ return () => /* @__PURE__ */ import_react77.default.createElement(
67641
+ ErrorMessage,
67642
+ {
67643
+ message: `Translation file not found at \`${filePath}\`.`,
67644
+ hint: `Please create a \`${filePath}\` file in your project and run the command again.`,
67645
+ explanation: `The translation file is used to store the translation keys and values for your project.`
67646
+ }
67647
+ );
67648
+ },
67649
+ InvalidTranslationsFileSchema: ({ filePath, zodError }) => {
67650
+ return () => /* @__PURE__ */ import_react77.default.createElement(
67651
+ ErrorMessage,
67652
+ {
67653
+ message: defaultOutdent`
67654
+ Invalid translations file format at \`${filePath}\`:
67655
+ The following errors were found:
67656
+ ${zodError.errors.map(formatZodIssue).join("\n")}`,
67657
+ hint: "The translations file should be a JSON object with string values, or a nested object with string values."
67658
+ }
67659
+ );
67660
+ },
67661
+ ConnectUnsupportedForProjectType: () => {
67662
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "The connect command is only available for Site projects." });
67626
67663
  },
67627
67664
  FailedToRenewAuthToken: () => {
67628
67665
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to renew access token." });
@@ -67856,6 +67893,14 @@ function getErrorComponent(code, cause) {
67856
67893
  FailedToWriteWixLock: () => {
67857
67894
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: `Failed to write 'wix.lock'` });
67858
67895
  },
67896
+ FailedToWriteDependenciesMetadata: () => {
67897
+ return () => /* @__PURE__ */ import_react77.default.createElement(
67898
+ ErrorMessage,
67899
+ {
67900
+ message: `Failed to write 'dependencies-metadata.json'`
67901
+ }
67902
+ );
67903
+ },
67859
67904
  InvalidVeloConfigJson: ({ configFilename }) => {
67860
67905
  return () => /* @__PURE__ */ import_react77.default.createElement(
67861
67906
  ErrorMessage,
@@ -68507,6 +68552,33 @@ function getErrorComponent(code, cause) {
68507
68552
  }
68508
68553
  );
68509
68554
  },
68555
+ FailedToFetchPrimaryLanguage: () => {
68556
+ return () => /* @__PURE__ */ import_react77.default.createElement(
68557
+ ErrorMessage,
68558
+ {
68559
+ message: "Failed to fetch the primary language for your site.",
68560
+ hint: "Please ensure Wix Multilingual is installed and configured on your site."
68561
+ }
68562
+ );
68563
+ },
68564
+ FailedToPushTranslations: () => {
68565
+ return () => /* @__PURE__ */ import_react77.default.createElement(
68566
+ ErrorMessage,
68567
+ {
68568
+ message: "Failed to push translations to Wix Multilingual.",
68569
+ hint: `Please ensure the "Wix Multilingual" app is installed on your site and try again.`
68570
+ }
68571
+ );
68572
+ },
68573
+ FailedToPullTranslations: () => {
68574
+ return () => /* @__PURE__ */ import_react77.default.createElement(
68575
+ ErrorMessage,
68576
+ {
68577
+ message: "Failed to pull translations from Wix Multilingual.",
68578
+ hint: "Please check your internet connection and try again."
68579
+ }
68580
+ );
68581
+ },
68510
68582
  InvalidServicePluginFolder: ({ relativePath }) => {
68511
68583
  return () => /* @__PURE__ */ import_react77.default.createElement(
68512
68584
  ErrorMessage,
@@ -68925,6 +68997,9 @@ ${errorMessage2}`
68925
68997
  FailedToGetAppProject: () => {
68926
68998
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while getting an app project." });
68927
68999
  },
69000
+ FailedToCreateCodestoreProject: () => {
69001
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while creating a codestore project." });
69002
+ },
68928
69003
  FailedCreatingAppDeployment: () => {
68929
69004
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occoured while creating an app deployment." });
68930
69005
  },
@@ -69010,6 +69085,25 @@ ${errorMessage2}`
69010
69085
  FailedToDistributeClientManifestUpdate: () => {
69011
69086
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to distribute client manifest update." });
69012
69087
  },
69088
+ FailedToCreateRoutesWithMetaSiteUrl: () => {
69089
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create routes with meta site URL." });
69090
+ },
69091
+ FailedToGetGitHubOnboardingStatus: ({ projectId }) => {
69092
+ return () => /* @__PURE__ */ import_react77.default.createElement(
69093
+ SystemErrorMessage,
69094
+ {
69095
+ message: `Failed to get GitHub onboarding status for project ${projectId}.`
69096
+ }
69097
+ );
69098
+ },
69099
+ FailedToInitGitHubRepository: ({ projectId }) => {
69100
+ return () => /* @__PURE__ */ import_react77.default.createElement(
69101
+ SystemErrorMessage,
69102
+ {
69103
+ message: `Failed to initialize GitHub repository for project ${projectId}.`
69104
+ }
69105
+ );
69106
+ },
69013
69107
  InvalidSiteComponentElementItem: ({ elementPath }) => {
69014
69108
  return () => /* @__PURE__ */ import_react77.default.createElement(
69015
69109
  ErrorMessage,
@@ -69024,7 +69118,16 @@ ${errorMessage2}`
69024
69118
  ErrorMessage,
69025
69119
  {
69026
69120
  message: "Your component configuration is incorrect. It's encountering the error 'scriptAsset is not supported'. This typically indicates that your app isn't recognized as a Wix App.",
69027
- hint: "To resolve this, please visit your app dashboard in Dev Center and ensure the 'Wix App' toggle is enabled."
69121
+ hint: "To resolve this, please visit your app dashboard in Dev Center and ensure the app is marked as 'Developed by Wix'."
69122
+ }
69123
+ );
69124
+ },
69125
+ VibeRepositorySetupTimedout: () => {
69126
+ return () => /* @__PURE__ */ import_react77.default.createElement(
69127
+ ErrorMessage,
69128
+ {
69129
+ cause,
69130
+ message: "The Vibe repository setup timed out. Please try again."
69028
69131
  }
69029
69132
  );
69030
69133
  },
@@ -73730,7 +73833,7 @@ function reportCommandStartEvent({
73730
73833
  var package_default = {
73731
73834
  name: "@wix/create-app",
73732
73835
  description: "Create Wix apps",
73733
- version: "0.0.163",
73836
+ version: "0.0.165",
73734
73837
  author: "Ihor Machuzhak",
73735
73838
  bin: "bin/index.cjs",
73736
73839
  devDependencies: {
@@ -75543,8 +75646,8 @@ function isInsideGitRepo(cwd3) {
75543
75646
  async function getGitRoot(cwd3) {
75544
75647
  return runCommand("git rev-parse --show-toplevel", { cwd: cwd3 });
75545
75648
  }
75546
- async function gitInit(cwd3) {
75547
- await runCommand("git init", { cwd: cwd3 });
75649
+ async function gitInit(cwd3, branch = "main") {
75650
+ await runCommand(`git init -b ${branch.trim()}`, { cwd: cwd3 });
75548
75651
  }
75549
75652
  async function gitCommit(cwd3) {
75550
75653
  await runCommand("git add -A", { cwd: cwd3 });
@@ -77175,7 +77278,8 @@ var __String = {
77175
77278
  phoneInputOptions: "_phoneInput",
77176
77279
  dateInputOptions: "_dateInput",
77177
77280
  timeInputOptions: "_timeInput",
77178
- datePickerOptions: "_datePicker"
77281
+ datePickerOptions: "_datePicker",
77282
+ passwordOptions: "_password"
77179
77283
  };
77180
77284
  var _actionProviderSPIConfig = { actionConfig: "_actionSPIConfig" };
77181
77285
  var _actionSPIConfig = { icon: "_wixCommonImage" };
@@ -77185,6 +77289,7 @@ var _adminConfigurableTextInput = {
77185
77289
  adminConfigurableSettings: "google.protobuf.FieldMask"
77186
77290
  };
77187
77291
  var _andCondition = { conditions: "_conditionNode" };
77292
+ var _apiContext = { items: "Map#_contextItem" };
77188
77293
  var _appData = { components: "_component", pricingModels: "_pricingModel" };
77189
77294
  var _appEmbedData = { image: "_media" };
77190
77295
  var _appointment = { description: "_richContent" };
@@ -77239,10 +77344,19 @@ var _componentData = {
77239
77344
  function: "__Function",
77240
77345
  papiProvider: "_pluginConfig",
77241
77346
  multilingualTranslationSchemaGroup: "_schemaGroup",
77242
- editorReactComponent: "_editorReactComponent"
77347
+ editorReactComponent: "_editorReactComponent",
77348
+ editorContextProvider: "_editorContextProvider",
77349
+ editorFunctionLibrary: "_editorFunctionLibrary"
77243
77350
  };
77244
77351
  var _componentsMultilineAddress = { description: "_richContent" };
77245
77352
  var _conditionNode = { and: "_andCondition", or: "_orCondition" };
77353
+ var _contextArrayItems = { item: "_contextItem" };
77354
+ var _contextDataItems = { items: "Map#_contextItem" };
77355
+ var _contextItem = {
77356
+ arrayItems: "_contextArrayItems",
77357
+ data: "_contextDataItems",
77358
+ function: "_editorFunction"
77359
+ };
77246
77360
  var _cssCustomPropertyItem = { number: "_cssNumber" };
77247
77361
  var _cssNumber = {
77248
77362
  minimum: "google.protobuf.FloatValue",
@@ -77257,7 +77371,8 @@ var _dataComponentField = {
77257
77371
  var _dataItem = {
77258
77372
  number: "__Number",
77259
77373
  arrayItems: "_arrayItems",
77260
- data: "_dataItems"
77374
+ data: "_dataItems",
77375
+ function: "_editorFunction"
77261
77376
  };
77262
77377
  var _dataItems = { items: "Map#_dataItem" };
77263
77378
  var _dateInput = { description: "_richContent", media: "_mediaItem" };
@@ -77276,12 +77391,21 @@ var _devCenterTestingComponentData = {
77276
77391
  var _displayField = { richContentOptions: "_richContentOptions" };
77277
77392
  var _donationInput = { description: "_richContent", media: "_mediaItem" };
77278
77393
  var _dropdown = { description: "_richContent", media: "_mediaItem" };
77394
+ var _editorContextProvider = {
77395
+ context: "_apiContext",
77396
+ data: "Map#_dataItem"
77397
+ };
77279
77398
  var _editorElement = {
77280
77399
  data: "Map#_dataItem",
77281
77400
  elements: "Map#_elementItem",
77282
77401
  presets: "Map#_presetItem",
77283
77402
  cssCustomProperties: "Map#_cssCustomPropertyItem"
77284
77403
  };
77404
+ var _editorFunction = {
77405
+ parameters: "_functionParameter",
77406
+ returns: "_functionReturnType"
77407
+ };
77408
+ var _editorFunctionLibrary = { functions: "Map#_editorFunction" };
77285
77409
  var _editorPresence = { presetsEditorPresence: "_presetEditorPresence" };
77286
77410
  var _editorReactComponent = { editorElement: "_editorElement" };
77287
77411
  var _elementItem = {
@@ -77312,6 +77436,17 @@ var _formTemplate = {
77312
77436
  rules: "_v2Rule",
77313
77437
  submitSettings: "_submitSettings"
77314
77438
  };
77439
+ var _functionParameter = {
77440
+ arrayItems: "_functionParameterArrayItems",
77441
+ data: "_functionParameterItems",
77442
+ function: "_editorFunction"
77443
+ };
77444
+ var _functionParameterArrayItems = { item: "_functionParameter" };
77445
+ var _functionParameterItems = { items: "Map#_functionParameter" };
77446
+ var _functionReturnType = {
77447
+ arrayItems: "_functionParameterArrayItems",
77448
+ data: "_functionParameterItems"
77449
+ };
77315
77450
  var _functionsShopPriceSpiConfig = {
77316
77451
  shopNumber: "google.protobuf.DoubleValue"
77317
77452
  };
@@ -77407,6 +77542,7 @@ var _packageDimension = {
77407
77542
  height: "google.protobuf.DoubleValue"
77408
77543
  };
77409
77544
  var _packageType = { dimension: "_packageDimension", image: "_image" };
77545
+ var _password = { description: "_richContent", media: "_mediaItem" };
77410
77546
  var _payment = {
77411
77547
  checkboxGroupOptions: "_productCheckboxGroup",
77412
77548
  donationInputOptions: "_donationInput",
@@ -77638,6 +77774,7 @@ function getAppByVersion(payload5) {
77638
77774
  _address,
77639
77775
  _adminConfigurableTextInput,
77640
77776
  _andCondition,
77777
+ _apiContext,
77641
77778
  _appData,
77642
77779
  _appEmbedData,
77643
77780
  _appointment,
@@ -77661,6 +77798,9 @@ function getAppByVersion(payload5) {
77661
77798
  _componentData,
77662
77799
  _componentsMultilineAddress,
77663
77800
  _conditionNode,
77801
+ _contextArrayItems,
77802
+ _contextDataItems,
77803
+ _contextItem,
77664
77804
  _cssCustomPropertyItem,
77665
77805
  _cssNumber,
77666
77806
  _dataComponent,
@@ -77676,7 +77816,10 @@ function getAppByVersion(payload5) {
77676
77816
  _displayField,
77677
77817
  _donationInput,
77678
77818
  _dropdown,
77819
+ _editorContextProvider,
77679
77820
  _editorElement,
77821
+ _editorFunction,
77822
+ _editorFunctionLibrary,
77680
77823
  _editorPresence,
77681
77824
  _editorReactComponent,
77682
77825
  _elementItem,
@@ -77689,6 +77832,10 @@ function getAppByVersion(payload5) {
77689
77832
  _focalPoint,
77690
77833
  _formLayout,
77691
77834
  _formTemplate,
77835
+ _functionParameter,
77836
+ _functionParameterArrayItems,
77837
+ _functionParameterItems,
77838
+ _functionReturnType,
77692
77839
  _functionsShopPriceSpiConfig,
77693
77840
  _galleryData,
77694
77841
  _galleryOptions,
@@ -77719,6 +77866,7 @@ function getAppByVersion(payload5) {
77719
77866
  _orCondition,
77720
77867
  _packageDimension,
77721
77868
  _packageType,
77869
+ _password,
77722
77870
  _payment,
77723
77871
  _paymentInput,
77724
77872
  _phoneInput,
@@ -78018,6 +78166,24 @@ function resolveWixHeadlessV1OAuthAppServiceUrl(opts) {
78018
78166
  srcPath: "/oauth-app-service",
78019
78167
  destPath: ""
78020
78168
  }
78169
+ ],
78170
+ "editor._base_domain_": [
78171
+ {
78172
+ srcPath: "/_api/oauth-app-service",
78173
+ destPath: ""
78174
+ }
78175
+ ],
78176
+ "blocks._base_domain_": [
78177
+ {
78178
+ srcPath: "/_api/oauth-app-service",
78179
+ destPath: ""
78180
+ }
78181
+ ],
78182
+ "create.editorx": [
78183
+ {
78184
+ srcPath: "/_api/oauth-app-service",
78185
+ destPath: ""
78186
+ }
78021
78187
  ]
78022
78188
  };
78023
78189
  return resolveUrl(Object.assign(opts, { domainToMappings }));
@@ -82306,6 +82472,15 @@ var ComponentType2;
82306
82472
  ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
82307
82473
  ComponentType3["PROVIDER_SUPPRESSION_SERVICE_PLUGIN"] = "PROVIDER_SUPPRESSION_SERVICE_PLUGIN";
82308
82474
  ComponentType3["ECOM_FORMS"] = "ECOM_FORMS";
82475
+ ComponentType3["EDITOR_CONTEXT_PROVIDER"] = "EDITOR_CONTEXT_PROVIDER";
82476
+ ComponentType3["EDITOR_FUNCTION_LIBRARY"] = "EDITOR_FUNCTION_LIBRARY";
82477
+ ComponentType3["BOOKINGS_PLATFORM_CONFIGURATION"] = "BOOKINGS_PLATFORM_CONFIGURATION";
82478
+ ComponentType3["BOOKINGS_VALIDATION_PROVIDER"] = "BOOKINGS_VALIDATION_PROVIDER";
82479
+ ComponentType3["APP_ROUTER"] = "APP_ROUTER";
82480
+ ComponentType3["WIXEL_BINDING"] = "WIXEL_BINDING";
82481
+ ComponentType3["SHUB_MARKETPLACE_PROVIDER"] = "SHUB_MARKETPLACE_PROVIDER";
82482
+ ComponentType3["GENERIC_FUNCTION_ACTIVATION"] = "GENERIC_FUNCTION_ACTIVATION";
82483
+ ComponentType3["BOOKING_ACTION_URLS_PROVIDER"] = "BOOKING_ACTION_URLS_PROVIDER";
82309
82484
  })(ComponentType2 || (ComponentType2 = {}));
82310
82485
  var WidgetVertical2;
82311
82486
  (function(WidgetVertical3) {
@@ -82667,6 +82842,7 @@ var BackOfficeHostingPlatforms2;
82667
82842
  BackOfficeHostingPlatforms3["BASE44_DASHBOARD_POC"] = "BASE44_DASHBOARD_POC";
82668
82843
  BackOfficeHostingPlatforms3["WIXEL_EDITOR"] = "WIXEL_EDITOR";
82669
82844
  BackOfficeHostingPlatforms3["BASE44_PLATFORM"] = "BASE44_PLATFORM";
82845
+ BackOfficeHostingPlatforms3["PAYMENTS_BO"] = "PAYMENTS_BO";
82670
82846
  })(BackOfficeHostingPlatforms2 || (BackOfficeHostingPlatforms2 = {}));
82671
82847
  var DtsDefinitionType2;
82672
82848
  (function(DtsDefinitionType3) {
@@ -82769,6 +82945,7 @@ var Tag2;
82769
82945
  Tag3["PIPELINE_LINKED_ENTITY"] = "PIPELINE_LINKED_ENTITY";
82770
82946
  Tag3["GET_PAID"] = "GET_PAID";
82771
82947
  Tag3["PIPELINE_CARD_CATALOG_ITEM"] = "PIPELINE_CARD_CATALOG_ITEM";
82948
+ Tag3["OWNER_CHECKOUT"] = "OWNER_CHECKOUT";
82772
82949
  })(Tag2 || (Tag2 = {}));
82773
82950
  var FilterSelectionType2;
82774
82951
  (function(FilterSelectionType3) {
@@ -83124,6 +83301,11 @@ var ResponsivenessBehaviour2;
83124
83301
  ResponsivenessBehaviour3["STACK"] = "STACK";
83125
83302
  ResponsivenessBehaviour3["WRAP"] = "WRAP";
83126
83303
  })(ResponsivenessBehaviour2 || (ResponsivenessBehaviour2 = {}));
83304
+ var DesignTarget;
83305
+ (function(DesignTarget2) {
83306
+ DesignTarget2["LAYOUT"] = "LAYOUT";
83307
+ DesignTarget2["CELL"] = "CELL";
83308
+ })(DesignTarget || (DesignTarget = {}));
83127
83309
  var TestEnum2;
83128
83310
  (function(TestEnum3) {
83129
83311
  TestEnum3["UNKNOWN_TEST_ENUM"] = "UNKNOWN_TEST_ENUM";
@@ -83396,6 +83578,7 @@ var StringComponentType2;
83396
83578
  StringComponentType3["TIME_INPUT"] = "TIME_INPUT";
83397
83579
  StringComponentType3["DATE_PICKER"] = "DATE_PICKER";
83398
83580
  StringComponentType3["SERVICES_DROPDOWN"] = "SERVICES_DROPDOWN";
83581
+ StringComponentType3["PASSWORD"] = "PASSWORD";
83399
83582
  })(StringComponentType2 || (StringComponentType2 = {}));
83400
83583
  var ImagePosition2;
83401
83584
  (function(ImagePosition3) {
@@ -83735,6 +83918,7 @@ var Escalation2;
83735
83918
  Escalation3["BLOCK_FUTURE_ROLLOUT"] = "BLOCK_FUTURE_ROLLOUT";
83736
83919
  Escalation3["OPEN_BUG_SLA"] = "OPEN_BUG_SLA";
83737
83920
  Escalation3["VISIBILITY"] = "VISIBILITY";
83921
+ Escalation3["SEND_SLACK_MESSAGE"] = "SEND_SLACK_MESSAGE";
83738
83922
  })(Escalation2 || (Escalation2 = {}));
83739
83923
  var ImportanceLevel2;
83740
83924
  (function(ImportanceLevel3) {
@@ -83837,6 +84021,12 @@ var DataType2;
83837
84021
  DataType3["direction"] = "direction";
83838
84022
  DataType3["menuItems"] = "menuItems";
83839
84023
  DataType3["data"] = "data";
84024
+ DataType3["function"] = "function";
84025
+ DataType3["onClick"] = "onClick";
84026
+ DataType3["onChange"] = "onChange";
84027
+ DataType3["onKeyPress"] = "onKeyPress";
84028
+ DataType3["onKeyUp"] = "onKeyUp";
84029
+ DataType3["onSubmit"] = "onSubmit";
83840
84030
  })(DataType2 || (DataType2 = {}));
83841
84031
  var A11yAttributes2;
83842
84032
  (function(A11yAttributes3) {
@@ -84208,6 +84398,8 @@ var FilterFunction2;
84208
84398
  FilterFunction3["opacity"] = "opacity";
84209
84399
  FilterFunction3["sepia"] = "sepia";
84210
84400
  FilterFunction3["saturate"] = "saturate";
84401
+ FilterFunction3["dropShadow"] = "dropShadow";
84402
+ FilterFunction3["hueRotate"] = "hueRotate";
84211
84403
  })(FilterFunction2 || (FilterFunction2 = {}));
84212
84404
  var DisplayValueEnumDisplayValue2;
84213
84405
  (function(DisplayValueEnumDisplayValue3) {
@@ -84226,6 +84418,11 @@ var DisplayValueEnumDisplayValue2;
84226
84418
  DisplayValueEnumDisplayValue3["inline_table"] = "inline_table";
84227
84419
  DisplayValueEnumDisplayValue3["inline_flex"] = "inline_flex";
84228
84420
  DisplayValueEnumDisplayValue3["inline_grid"] = "inline_grid";
84421
+ DisplayValueEnumDisplayValue3["inlineBlock"] = "inlineBlock";
84422
+ DisplayValueEnumDisplayValue3["inlineTable"] = "inlineTable";
84423
+ DisplayValueEnumDisplayValue3["inlineFlex"] = "inlineFlex";
84424
+ DisplayValueEnumDisplayValue3["inlineGrid"] = "inlineGrid";
84425
+ DisplayValueEnumDisplayValue3["listItem"] = "listItem";
84229
84426
  })(DisplayValueEnumDisplayValue2 || (DisplayValueEnumDisplayValue2 = {}));
84230
84427
  var WritingModeValue2;
84231
84428
  (function(WritingModeValue3) {
@@ -84391,6 +84588,16 @@ var GroupType2;
84391
84588
  GroupType3["arrayItem"] = "arrayItem";
84392
84589
  GroupType3["listItem"] = "listItem";
84393
84590
  })(GroupType2 || (GroupType2 = {}));
84591
+ var ImageType;
84592
+ (function(ImageType2) {
84593
+ ImageType2["UNKNOWN_ImageType"] = "UNKNOWN_ImageType";
84594
+ ImageType2["url"] = "url";
84595
+ ImageType2["image"] = "image";
84596
+ ImageType2["imageSet"] = "imageSet";
84597
+ ImageType2["crossFade"] = "crossFade";
84598
+ ImageType2["element"] = "element";
84599
+ ImageType2["gradient"] = "gradient";
84600
+ })(ImageType || (ImageType = {}));
84394
84601
  var CssPropertyEnumCssPropertyType2;
84395
84602
  (function(CssPropertyEnumCssPropertyType3) {
84396
84603
  CssPropertyEnumCssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
@@ -84508,6 +84715,16 @@ var CssPropertyEnumCssPropertyType2;
84508
84715
  CssPropertyEnumCssPropertyType3["strokeOpacity"] = "strokeOpacity";
84509
84716
  CssPropertyEnumCssPropertyType3["fill"] = "fill";
84510
84717
  CssPropertyEnumCssPropertyType3["fillOpacity"] = "fillOpacity";
84718
+ CssPropertyEnumCssPropertyType3["fillRule"] = "fillRule";
84719
+ CssPropertyEnumCssPropertyType3["mask"] = "mask";
84720
+ CssPropertyEnumCssPropertyType3["maskImage"] = "maskImage";
84721
+ CssPropertyEnumCssPropertyType3["maskMode"] = "maskMode";
84722
+ CssPropertyEnumCssPropertyType3["maskRepeat"] = "maskRepeat";
84723
+ CssPropertyEnumCssPropertyType3["maskPosition"] = "maskPosition";
84724
+ CssPropertyEnumCssPropertyType3["maskClip"] = "maskClip";
84725
+ CssPropertyEnumCssPropertyType3["maskOrigin"] = "maskOrigin";
84726
+ CssPropertyEnumCssPropertyType3["maskSize"] = "maskSize";
84727
+ CssPropertyEnumCssPropertyType3["maskComposite"] = "maskComposite";
84511
84728
  })(CssPropertyEnumCssPropertyType2 || (CssPropertyEnumCssPropertyType2 = {}));
84512
84729
  var InteractionsTrigger2;
84513
84730
  (function(InteractionsTrigger3) {
@@ -84566,9 +84783,11 @@ var OperatorEnumOperator2;
84566
84783
  OperatorEnumOperator3["EMPTY"] = "EMPTY";
84567
84784
  OperatorEnumOperator3["NOT_EMPTY"] = "NOT_EMPTY";
84568
84785
  OperatorEnumOperator3["STARTS_WITH"] = "STARTS_WITH";
84569
- OperatorEnumOperator3["HAS_ALL"] = "HAS_ALL";
84570
- OperatorEnumOperator3["HAS_SOME"] = "HAS_SOME";
84786
+ OperatorEnumOperator3["WITH_ALL"] = "WITH_ALL";
84787
+ OperatorEnumOperator3["WITH_SOME_OF"] = "WITH_SOME_OF";
84571
84788
  OperatorEnumOperator3["ANY"] = "ANY";
84789
+ OperatorEnumOperator3["WITH_NONE_OF"] = "WITH_NONE_OF";
84790
+ OperatorEnumOperator3["WITH_PREFIX_FROM"] = "WITH_PREFIX_FROM";
84572
84791
  })(OperatorEnumOperator2 || (OperatorEnumOperator2 = {}));
84573
84792
  var ParameterType2;
84574
84793
  (function(ParameterType3) {
@@ -84578,9 +84797,9 @@ var ParameterType2;
84578
84797
  ParameterType3["DECIMAL"] = "DECIMAL";
84579
84798
  ParameterType3["BOOL"] = "BOOL";
84580
84799
  ParameterType3["CURRENCY"] = "CURRENCY";
84581
- ParameterType3["COUNTRY_SUBDIVISION"] = "COUNTRY_SUBDIVISION";
84582
84800
  ParameterType3["LANGUAGE"] = "LANGUAGE";
84583
84801
  ParameterType3["MONEY"] = "MONEY";
84802
+ ParameterType3["COUNTRY_WITH_SUBDIVISION"] = "COUNTRY_WITH_SUBDIVISION";
84584
84803
  })(ParameterType2 || (ParameterType2 = {}));
84585
84804
  var FilterValueDefinitionMode2;
84586
84805
  (function(FilterValueDefinitionMode3) {
@@ -84592,7 +84811,6 @@ var FilterValueDefinitionMode2;
84592
84811
  FilterValueDefinitionMode3["DECIMAL_LIST"] = "DECIMAL_LIST";
84593
84812
  FilterValueDefinitionMode3["BOOL_LIST"] = "BOOL_LIST";
84594
84813
  FilterValueDefinitionMode3["CURRENCY_LIST"] = "CURRENCY_LIST";
84595
- FilterValueDefinitionMode3["COUNTRY_SUBDIVISION_LIST"] = "COUNTRY_SUBDIVISION_LIST";
84596
84814
  FilterValueDefinitionMode3["LANGUAGE_TAG_LIST"] = "LANGUAGE_TAG_LIST";
84597
84815
  })(FilterValueDefinitionMode2 || (FilterValueDefinitionMode2 = {}));
84598
84816
  var TimeConstraintType2;
@@ -84611,7 +84829,10 @@ var TimeConstraintType2;
84611
84829
  var ValueConstraintType2;
84612
84830
  (function(ValueConstraintType3) {
84613
84831
  ValueConstraintType3["UNKNOWN_VALUE_CONSTRAINT_TYPE"] = "UNKNOWN_VALUE_CONSTRAINT_TYPE";
84832
+ ValueConstraintType3["NONE"] = "NONE";
84614
84833
  ValueConstraintType3["PREDEFINED_VALUES"] = "PREDEFINED_VALUES";
84834
+ ValueConstraintType3["MIN_MAX_RANGE"] = "MIN_MAX_RANGE";
84835
+ ValueConstraintType3["RANGE"] = "RANGE";
84615
84836
  })(ValueConstraintType2 || (ValueConstraintType2 = {}));
84616
84837
  var Category2;
84617
84838
  (function(Category3) {
@@ -84633,6 +84854,16 @@ var RegionScopeScope2;
84633
84854
  RegionScopeScope3["SPECIFIC_REGIONS"] = "SPECIFIC_REGIONS";
84634
84855
  RegionScopeScope3["WORLDWIDE"] = "WORLDWIDE";
84635
84856
  })(RegionScopeScope2 || (RegionScopeScope2 = {}));
84857
+ var ValidationTargetMethod;
84858
+ (function(ValidationTargetMethod2) {
84859
+ ValidationTargetMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
84860
+ ValidationTargetMethod2["RESCHEDULE"] = "RESCHEDULE";
84861
+ ValidationTargetMethod2["CREATE"] = "CREATE";
84862
+ ValidationTargetMethod2["CANCEL"] = "CANCEL";
84863
+ ValidationTargetMethod2["CREATE_MULTI_SERVICE"] = "CREATE_MULTI_SERVICE";
84864
+ ValidationTargetMethod2["CANCEL_MULTI_SERVICE"] = "CANCEL_MULTI_SERVICE";
84865
+ ValidationTargetMethod2["RESCHEDULE_MULTI_SERVICE"] = "RESCHEDULE_MULTI_SERVICE";
84866
+ })(ValidationTargetMethod || (ValidationTargetMethod = {}));
84636
84867
  var VibeActionType2;
84637
84868
  (function(VibeActionType3) {
84638
84869
  VibeActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
@@ -84652,7 +84883,19 @@ var AssetType2;
84652
84883
  AssetType3["DOC"] = "DOC";
84653
84884
  AssetType3["SLIDE"] = "SLIDE";
84654
84885
  AssetType3["WIDGET"] = "WIDGET";
84886
+ AssetType3["FONT"] = "FONT";
84887
+ AssetType3["ICONS"] = "ICONS";
84655
84888
  })(AssetType2 || (AssetType2 = {}));
84889
+ var FileMediaType;
84890
+ (function(FileMediaType2) {
84891
+ FileMediaType2["UNKNOWN_FILE_MEDIA_TYPE"] = "UNKNOWN_FILE_MEDIA_TYPE";
84892
+ FileMediaType2["IMAGE_MEDIA_TYPE"] = "IMAGE_MEDIA_TYPE";
84893
+ FileMediaType2["VIDEO_MEDIA_TYPE"] = "VIDEO_MEDIA_TYPE";
84894
+ FileMediaType2["DOCUMENT_MEDIA_TYPE"] = "DOCUMENT_MEDIA_TYPE";
84895
+ FileMediaType2["VECTOR_MEDIA_TYPE"] = "VECTOR_MEDIA_TYPE";
84896
+ FileMediaType2["ICON_MEDIA_TYPE"] = "ICON_MEDIA_TYPE";
84897
+ FileMediaType2["FONT_MEDIA_TYPE"] = "FONT_MEDIA_TYPE";
84898
+ })(FileMediaType || (FileMediaType = {}));
84656
84899
  var OpenConsentIn2;
84657
84900
  (function(OpenConsentIn3) {
84658
84901
  OpenConsentIn3["NONE_VALUE"] = "NONE_VALUE";
@@ -86228,7 +86471,7 @@ function getFiles(cwd3) {
86228
86471
  // ../gena/src/generator.ts
86229
86472
  var fm = import_front_matter.default;
86230
86473
  function shouldSkipParsing(file) {
86231
- return [".png", ".jpg", ".gif", ".astro"].includes(
86474
+ return [".png", ".jpg", ".gif", ".astro", ".zip"].includes(
86232
86475
  extname(file).toLowerCase()
86233
86476
  );
86234
86477
  }