{"version":3,"sources":["../../../src/ecom-v1-shipping-option-shipping-options.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const CreateShippingOptionRequest = z.object({\n  shippingOption: z\n    .object({\n      _id: z\n        .string()\n        .describe('ShippingOption ID.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the ShippingOption was created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the ShippingOption was last updated.')\n        .optional()\n        .nullable(),\n      deliveryRegionId: z\n        .string()\n        .describe('Associated delivery region id.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional(),\n      deliveryRegionIds: z.array(z.string()).max(50).optional(),\n      title: z\n        .string()\n        .describe('Delivery option configured for the ShippingOption')\n        .max(1000)\n        .optional()\n        .nullable(),\n      estimatedDeliveryTime: z\n        .string()\n        .describe('Estimated delivery time. For example, \"2-3 business days\".')\n        .max(500)\n        .optional()\n        .nullable(),\n      rates: z\n        .array(\n          z.object({\n            amount: z\n              .string()\n              .describe(\n                'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n              )\n              .optional(),\n            conditions: z\n              .array(\n                z.object({\n                  type: z\n                    .enum([\n                      'BY_TOTAL_WEIGHT',\n                      'BY_TOTAL_PRICE',\n                      'BY_TOTAL_QUANTITY',\n                    ])\n                    .optional(),\n                  value: z\n                    .string()\n                    .describe(\n                      'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                    )\n                    .optional(),\n                  operator: z.enum(['EQ', 'GT', 'GTE', 'LT', 'LTE']).optional(),\n                })\n              )\n              .min(0)\n              .max(10)\n              .optional(),\n            multiplyByQuantity: z\n              .boolean()\n              .describe(\n                'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n              )\n              .optional(),\n          })\n        )\n        .min(1)\n        .max(50)\n        .optional(),\n      extendedFields: z\n        .object({\n          namespaces: z\n            .record(z.string(), z.record(z.string(), z.any()))\n            .describe(\n              'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n            )\n            .optional(),\n        })\n        .describe('Data Extensions')\n        .optional(),\n    })\n    .describe('ShippingOption to be created.'),\n});\nexport const CreateShippingOptionResponse = z.object({\n  _id: z\n    .string()\n    .describe('ShippingOption ID.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  revision: z\n    .string()\n    .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n    .describe(\n      'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n    )\n    .optional()\n    .nullable(),\n  _createdDate: z\n    .date()\n    .describe('Date and time the ShippingOption was created.')\n    .optional()\n    .nullable(),\n  _updatedDate: z\n    .date()\n    .describe('Date and time the ShippingOption was last updated.')\n    .optional()\n    .nullable(),\n  deliveryRegionId: z\n    .string()\n    .describe('Associated delivery region id.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional(),\n  deliveryRegionIds: z.array(z.string()).max(50).optional(),\n  title: z\n    .string()\n    .describe('Delivery option configured for the ShippingOption')\n    .max(1000)\n    .optional()\n    .nullable(),\n  estimatedDeliveryTime: z\n    .string()\n    .describe('Estimated delivery time. For example, \"2-3 business days\".')\n    .max(500)\n    .optional()\n    .nullable(),\n  rates: z\n    .array(\n      z.object({\n        amount: z\n          .string()\n          .describe(\n            'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n          )\n          .optional(),\n        conditions: z\n          .array(\n            z.object({\n              type: z\n                .enum([\n                  'BY_TOTAL_WEIGHT',\n                  'BY_TOTAL_PRICE',\n                  'BY_TOTAL_QUANTITY',\n                ])\n                .optional(),\n              value: z\n                .string()\n                .describe(\n                  'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                )\n                .optional(),\n              operator: z\n                .enum(['EQ', 'GT', 'GTE', 'LT', 'LTE'])\n                .describe('Logical operator.')\n                .optional(),\n            })\n          )\n          .min(0)\n          .max(10)\n          .optional(),\n        multiplyByQuantity: z\n          .boolean()\n          .describe(\n            'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n          )\n          .optional(),\n      })\n    )\n    .min(1)\n    .max(50)\n    .optional(),\n  extendedFields: z\n    .object({\n      namespaces: z\n        .record(z.string(), z.record(z.string(), z.any()))\n        .describe(\n          'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n        )\n        .optional(),\n    })\n    .describe('Data Extensions')\n    .optional(),\n});\nexport const GetShippingOptionRequest = z.object({\n  shippingOptionId: z\n    .string()\n    .describe('ID of the ShippingOption to retrieve.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n});\nexport const GetShippingOptionResponse = z.object({\n  _id: z\n    .string()\n    .describe('ShippingOption ID.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  revision: z\n    .string()\n    .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n    .describe(\n      'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n    )\n    .optional()\n    .nullable(),\n  _createdDate: z\n    .date()\n    .describe('Date and time the ShippingOption was created.')\n    .optional()\n    .nullable(),\n  _updatedDate: z\n    .date()\n    .describe('Date and time the ShippingOption was last updated.')\n    .optional()\n    .nullable(),\n  deliveryRegionId: z\n    .string()\n    .describe('Associated delivery region id.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional(),\n  deliveryRegionIds: z.array(z.string()).max(50).optional(),\n  title: z\n    .string()\n    .describe('Delivery option configured for the ShippingOption')\n    .max(1000)\n    .optional()\n    .nullable(),\n  estimatedDeliveryTime: z\n    .string()\n    .describe('Estimated delivery time. For example, \"2-3 business days\".')\n    .max(500)\n    .optional()\n    .nullable(),\n  rates: z\n    .array(\n      z.object({\n        amount: z\n          .string()\n          .describe(\n            'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n          )\n          .optional(),\n        conditions: z\n          .array(\n            z.object({\n              type: z\n                .enum([\n                  'BY_TOTAL_WEIGHT',\n                  'BY_TOTAL_PRICE',\n                  'BY_TOTAL_QUANTITY',\n                ])\n                .optional(),\n              value: z\n                .string()\n                .describe(\n                  'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                )\n                .optional(),\n              operator: z\n                .enum(['EQ', 'GT', 'GTE', 'LT', 'LTE'])\n                .describe('Logical operator.')\n                .optional(),\n            })\n          )\n          .min(0)\n          .max(10)\n          .optional(),\n        multiplyByQuantity: z\n          .boolean()\n          .describe(\n            'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n          )\n          .optional(),\n      })\n    )\n    .min(1)\n    .max(50)\n    .optional(),\n  extendedFields: z\n    .object({\n      namespaces: z\n        .record(z.string(), z.record(z.string(), z.any()))\n        .describe(\n          'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n        )\n        .optional(),\n    })\n    .describe('Data Extensions')\n    .optional(),\n});\nexport const UpdateShippingOptionRequest = z.object({\n  _id: z\n    .string()\n    .describe('ShippingOption ID.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n  shippingOption: z\n    .object({\n      _id: z\n        .string()\n        .describe('ShippingOption ID.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n        ),\n      _createdDate: z\n        .date()\n        .describe('Date and time the ShippingOption was created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the ShippingOption was last updated.')\n        .optional()\n        .nullable(),\n      deliveryRegionId: z\n        .string()\n        .describe('Associated delivery region id.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional(),\n      deliveryRegionIds: z.array(z.string()).max(50).optional(),\n      title: z\n        .string()\n        .describe('Delivery option configured for the ShippingOption')\n        .max(1000)\n        .optional()\n        .nullable(),\n      estimatedDeliveryTime: z\n        .string()\n        .describe('Estimated delivery time. For example, \"2-3 business days\".')\n        .max(500)\n        .optional()\n        .nullable(),\n      rates: z\n        .array(\n          z.object({\n            amount: z\n              .string()\n              .describe(\n                'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n              )\n              .optional(),\n            conditions: z\n              .array(\n                z.object({\n                  type: z\n                    .enum([\n                      'BY_TOTAL_WEIGHT',\n                      'BY_TOTAL_PRICE',\n                      'BY_TOTAL_QUANTITY',\n                    ])\n                    .optional(),\n                  value: z\n                    .string()\n                    .describe(\n                      'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                    )\n                    .optional(),\n                  operator: z.enum(['EQ', 'GT', 'GTE', 'LT', 'LTE']).optional(),\n                })\n              )\n              .min(0)\n              .max(10)\n              .optional(),\n            multiplyByQuantity: z\n              .boolean()\n              .describe(\n                'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n              )\n              .optional(),\n          })\n        )\n        .min(1)\n        .max(50)\n        .optional(),\n      extendedFields: z\n        .object({\n          namespaces: z\n            .record(z.string(), z.record(z.string(), z.any()))\n            .describe(\n              'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n            )\n            .optional(),\n        })\n        .describe('Data Extensions')\n        .optional(),\n    })\n    .describe('ShippingOption to be updated, may be partial.'),\n});\nexport const UpdateShippingOptionResponse = z.object({\n  _id: z\n    .string()\n    .describe('ShippingOption ID.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  revision: z\n    .string()\n    .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n    .describe(\n      'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n    )\n    .optional()\n    .nullable(),\n  _createdDate: z\n    .date()\n    .describe('Date and time the ShippingOption was created.')\n    .optional()\n    .nullable(),\n  _updatedDate: z\n    .date()\n    .describe('Date and time the ShippingOption was last updated.')\n    .optional()\n    .nullable(),\n  deliveryRegionId: z\n    .string()\n    .describe('Associated delivery region id.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional(),\n  deliveryRegionIds: z.array(z.string()).max(50).optional(),\n  title: z\n    .string()\n    .describe('Delivery option configured for the ShippingOption')\n    .max(1000)\n    .optional()\n    .nullable(),\n  estimatedDeliveryTime: z\n    .string()\n    .describe('Estimated delivery time. For example, \"2-3 business days\".')\n    .max(500)\n    .optional()\n    .nullable(),\n  rates: z\n    .array(\n      z.object({\n        amount: z\n          .string()\n          .describe(\n            'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n          )\n          .optional(),\n        conditions: z\n          .array(\n            z.object({\n              type: z\n                .enum([\n                  'BY_TOTAL_WEIGHT',\n                  'BY_TOTAL_PRICE',\n                  'BY_TOTAL_QUANTITY',\n                ])\n                .optional(),\n              value: z\n                .string()\n                .describe(\n                  'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                )\n                .optional(),\n              operator: z\n                .enum(['EQ', 'GT', 'GTE', 'LT', 'LTE'])\n                .describe('Logical operator.')\n                .optional(),\n            })\n          )\n          .min(0)\n          .max(10)\n          .optional(),\n        multiplyByQuantity: z\n          .boolean()\n          .describe(\n            'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n          )\n          .optional(),\n      })\n    )\n    .min(1)\n    .max(50)\n    .optional(),\n  extendedFields: z\n    .object({\n      namespaces: z\n        .record(z.string(), z.record(z.string(), z.any()))\n        .describe(\n          'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n        )\n        .optional(),\n    })\n    .describe('Data Extensions')\n    .optional(),\n});\nexport const DeleteShippingOptionRequest = z.object({\n  shippingOptionId: z\n    .string()\n    .describe('Id of the ShippingOption to delete.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n});\nexport const DeleteShippingOptionResponse = z.object({});\nexport const QueryShippingOptionsRequest = z.object({\n  query: z\n    .intersection(\n      z.object({\n        filter: z\n          .record(z.string(), z.any())\n          .describe(\n            'Filter object in the following format:\\n`\"filter\" : {\\n\"fieldName1\": \"value1\",\\n\"fieldName2\":{\"$operator\":\"value2\"}\\n}`\\nExample of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`'\n          )\n          .optional()\n          .nullable(),\n        sort: z\n          .array(\n            z.object({\n              fieldName: z\n                .string()\n                .describe('Name of the field to sort by.')\n                .max(512)\n                .optional(),\n              order: z.enum(['ASC', 'DESC']).optional(),\n            })\n          )\n          .max(5)\n          .optional(),\n      }),\n      z.xor([\n        z.object({ cursorPaging: z.never().optional() }),\n        z.object({\n          cursorPaging: z\n            .object({\n              limit: z\n                .number()\n                .int()\n                .describe('Maximum number of items to return in the results.')\n                .min(0)\n                .max(100)\n                .optional()\n                .nullable(),\n              cursor: z\n                .string()\n                .describe(\n                  \"Pointer to the next or previous page in the list of results.\\n\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n                )\n                .max(16000)\n                .optional()\n                .nullable(),\n            })\n            .describe(\n              'Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.'\n            ),\n        }),\n      ])\n    )\n    .describe('WQL expression.'),\n});\nexport const QueryShippingOptionsResponse = z.object({\n  shippingOptions: z\n    .array(\n      z.object({\n        _id: z\n          .string()\n          .describe('ShippingOption ID.')\n          .regex(\n            /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n            'Must be a valid GUID'\n          )\n          .optional()\n          .nullable(),\n        revision: z\n          .string()\n          .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n          .describe(\n            'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n          )\n          .optional()\n          .nullable(),\n        _createdDate: z\n          .date()\n          .describe('Date and time the ShippingOption was created.')\n          .optional()\n          .nullable(),\n        _updatedDate: z\n          .date()\n          .describe('Date and time the ShippingOption was last updated.')\n          .optional()\n          .nullable(),\n        deliveryRegionId: z\n          .string()\n          .describe('Associated delivery region id.')\n          .regex(\n            /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n            'Must be a valid GUID'\n          )\n          .optional(),\n        deliveryRegionIds: z.array(z.string()).max(50).optional(),\n        title: z\n          .string()\n          .describe('Delivery option configured for the ShippingOption')\n          .max(1000)\n          .optional()\n          .nullable(),\n        estimatedDeliveryTime: z\n          .string()\n          .describe(\n            'Estimated delivery time. For example, \"2-3 business days\".'\n          )\n          .max(500)\n          .optional()\n          .nullable(),\n        rates: z\n          .array(\n            z.object({\n              amount: z\n                .string()\n                .describe(\n                  'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n                )\n                .optional(),\n              conditions: z\n                .array(\n                  z.object({\n                    type: z\n                      .enum([\n                        'BY_TOTAL_WEIGHT',\n                        'BY_TOTAL_PRICE',\n                        'BY_TOTAL_QUANTITY',\n                      ])\n                      .optional(),\n                    value: z\n                      .string()\n                      .describe(\n                        'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                      )\n                      .optional(),\n                    operator: z\n                      .enum(['EQ', 'GT', 'GTE', 'LT', 'LTE'])\n                      .describe('Logical operator.')\n                      .optional(),\n                  })\n                )\n                .min(0)\n                .max(10)\n                .optional(),\n              multiplyByQuantity: z\n                .boolean()\n                .describe(\n                  'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n                )\n                .optional(),\n            })\n          )\n          .min(1)\n          .max(50)\n          .optional(),\n        extendedFields: z\n          .object({\n            namespaces: z\n              .record(z.string(), z.record(z.string(), z.any()))\n              .describe(\n                'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n              )\n              .optional(),\n          })\n          .describe('Data Extensions')\n          .optional(),\n      })\n    )\n    .min(0)\n    .max(100)\n    .optional(),\n  pagingMetadata: z\n    .object({\n      count: z\n        .number()\n        .int()\n        .describe('Number of items returned in the response.')\n        .optional()\n        .nullable(),\n      cursors: z\n        .object({\n          next: z\n            .string()\n            .describe(\n              'Cursor string pointing to the next page in the list of results.'\n            )\n            .max(16000)\n            .optional()\n            .nullable(),\n          prev: z\n            .string()\n            .describe(\n              'Cursor pointing to the previous page in the list of results.'\n            )\n            .max(16000)\n            .optional()\n            .nullable(),\n        })\n        .describe(\n          'Cursor strings that point to the next page, previous page, or both.'\n        )\n        .optional(),\n      hasNext: z\n        .boolean()\n        .describe(\n          'Whether there are more pages to retrieve following the current page.\\n\\n+ `true`: Another page of results can be retrieved.\\n+ `false`: This is the last page.'\n        )\n        .optional()\n        .nullable(),\n    })\n    .describe('Paging metadata')\n    .optional(),\n});\nexport const UpdateExtendedFieldsRequest = z.object({\n  _id: z.string().describe('ID of the entity to update.'),\n  namespace: z\n    .string()\n    .describe(\n      'Identifier for the app whose extended fields are being updated.'\n    ),\n  options: z.object({\n    namespaceData: z\n      .record(z.string(), z.any())\n      .describe(\n        'Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured.'\n      ),\n  }),\n});\nexport const UpdateExtendedFieldsResponse = z.object({\n  shippingOption: z\n    .object({\n      _id: z\n        .string()\n        .describe('ShippingOption ID.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the ShippingOption was created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the ShippingOption was last updated.')\n        .optional()\n        .nullable(),\n      deliveryRegionId: z\n        .string()\n        .describe('Associated delivery region id.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional(),\n      deliveryRegionIds: z.array(z.string()).max(50).optional(),\n      title: z\n        .string()\n        .describe('Delivery option configured for the ShippingOption')\n        .max(1000)\n        .optional()\n        .nullable(),\n      estimatedDeliveryTime: z\n        .string()\n        .describe('Estimated delivery time. For example, \"2-3 business days\".')\n        .max(500)\n        .optional()\n        .nullable(),\n      rates: z\n        .array(\n          z.object({\n            amount: z\n              .string()\n              .describe(\n                'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n              )\n              .optional(),\n            conditions: z\n              .array(\n                z.object({\n                  type: z\n                    .enum([\n                      'BY_TOTAL_WEIGHT',\n                      'BY_TOTAL_PRICE',\n                      'BY_TOTAL_QUANTITY',\n                    ])\n                    .optional(),\n                  value: z\n                    .string()\n                    .describe(\n                      'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                    )\n                    .optional(),\n                  operator: z\n                    .enum(['EQ', 'GT', 'GTE', 'LT', 'LTE'])\n                    .describe('Logical operator.')\n                    .optional(),\n                })\n              )\n              .min(0)\n              .max(10)\n              .optional(),\n            multiplyByQuantity: z\n              .boolean()\n              .describe(\n                'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n              )\n              .optional(),\n          })\n        )\n        .min(1)\n        .max(50)\n        .optional(),\n      extendedFields: z\n        .object({\n          namespaces: z\n            .record(z.string(), z.record(z.string(), z.any()))\n            .describe(\n              'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n            )\n            .optional(),\n        })\n        .describe('Data Extensions')\n        .optional(),\n    })\n    .describe('Updated ShippingOption.')\n    .optional(),\n});\nexport const AddDeliveryRegionRequest = z.object({\n  shippingOptionId: z\n    .string()\n    .describe('ID of the ShippingOption to be updated.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n  deliveryRegionId: z\n    .string()\n    .describe('ID of the delivery region that should use this ShippingOption.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n  options: z.object({\n    revision: z\n      .string()\n      .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n      .describe('Revision of the ShippingOption.'),\n  }),\n});\nexport const AddDeliveryRegionResponse = z.object({\n  shippingOption: z\n    .object({\n      _id: z\n        .string()\n        .describe('ShippingOption ID.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the ShippingOption was created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the ShippingOption was last updated.')\n        .optional()\n        .nullable(),\n      deliveryRegionId: z\n        .string()\n        .describe('Associated delivery region id.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional(),\n      deliveryRegionIds: z.array(z.string()).max(50).optional(),\n      title: z\n        .string()\n        .describe('Delivery option configured for the ShippingOption')\n        .max(1000)\n        .optional()\n        .nullable(),\n      estimatedDeliveryTime: z\n        .string()\n        .describe('Estimated delivery time. For example, \"2-3 business days\".')\n        .max(500)\n        .optional()\n        .nullable(),\n      rates: z\n        .array(\n          z.object({\n            amount: z\n              .string()\n              .describe(\n                'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n              )\n              .optional(),\n            conditions: z\n              .array(\n                z.object({\n                  type: z\n                    .enum([\n                      'BY_TOTAL_WEIGHT',\n                      'BY_TOTAL_PRICE',\n                      'BY_TOTAL_QUANTITY',\n                    ])\n                    .optional(),\n                  value: z\n                    .string()\n                    .describe(\n                      'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                    )\n                    .optional(),\n                  operator: z\n                    .enum(['EQ', 'GT', 'GTE', 'LT', 'LTE'])\n                    .describe('Logical operator.')\n                    .optional(),\n                })\n              )\n              .min(0)\n              .max(10)\n              .optional(),\n            multiplyByQuantity: z\n              .boolean()\n              .describe(\n                'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n              )\n              .optional(),\n          })\n        )\n        .min(1)\n        .max(50)\n        .optional(),\n      extendedFields: z\n        .object({\n          namespaces: z\n            .record(z.string(), z.record(z.string(), z.any()))\n            .describe(\n              'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n            )\n            .optional(),\n        })\n        .describe('Data Extensions')\n        .optional(),\n    })\n    .describe('Updated ShippingOption.')\n    .optional(),\n});\nexport const RemoveDeliveryRegionRequest = z.object({\n  shippingOptionId: z\n    .string()\n    .describe('ID of the ShippingOption to be updated.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n  deliveryRegionId: z\n    .string()\n    .describe(\n      'ID of the delivery region that should not use this ShippingOption anymore.'\n    )\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n  options: z.object({\n    revision: z\n      .string()\n      .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n      .describe('Revision of the ShippingOption.'),\n  }),\n});\nexport const RemoveDeliveryRegionResponse = z.object({\n  shippingOption: z\n    .object({\n      _id: z\n        .string()\n        .describe('ShippingOption ID.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the ShippingOption is updated.\\nTo prevent conflicting changes,\\nthe current revision must be passed when updating the ShippingOption.\\n\\nIgnored when creating a ShippingOption.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the ShippingOption was created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the ShippingOption was last updated.')\n        .optional()\n        .nullable(),\n      deliveryRegionId: z\n        .string()\n        .describe('Associated delivery region id.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional(),\n      deliveryRegionIds: z.array(z.string()).max(50).optional(),\n      title: z\n        .string()\n        .describe('Delivery option configured for the ShippingOption')\n        .max(1000)\n        .optional()\n        .nullable(),\n      estimatedDeliveryTime: z\n        .string()\n        .describe('Estimated delivery time. For example, \"2-3 business days\".')\n        .max(500)\n        .optional()\n        .nullable(),\n      rates: z\n        .array(\n          z.object({\n            amount: z\n              .string()\n              .describe(\n                'there is an AND logic between all the conditions. Empty conditions means true.\\nThe amount of the rate that will be returned if all conditions are met.'\n              )\n              .optional(),\n            conditions: z\n              .array(\n                z.object({\n                  type: z\n                    .enum([\n                      'BY_TOTAL_WEIGHT',\n                      'BY_TOTAL_PRICE',\n                      'BY_TOTAL_QUANTITY',\n                    ])\n                    .optional(),\n                  value: z\n                    .string()\n                    .describe(\n                      'The value in respective to the condition type\\nWeight values should be in the same weight units of the store: KG / LB\\nTotal price is according to the store currency\\nQuantity of items should be integers'\n                    )\n                    .optional(),\n                  operator: z\n                    .enum(['EQ', 'GT', 'GTE', 'LT', 'LTE'])\n                    .describe('Logical operator.')\n                    .optional(),\n                })\n              )\n              .min(0)\n              .max(10)\n              .optional(),\n            multiplyByQuantity: z\n              .boolean()\n              .describe(\n                'When this flag is set to true, multiply the amount by the number of line items passed on the request.'\n              )\n              .optional(),\n          })\n        )\n        .min(1)\n        .max(50)\n        .optional(),\n      extendedFields: z\n        .object({\n          namespaces: z\n            .record(z.string(), z.record(z.string(), z.any()))\n            .describe(\n              'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n            )\n            .optional(),\n        })\n        .describe('Data Extensions')\n        .optional(),\n    })\n    .describe('Updated ShippingOption.')\n    .optional(),\n});\n"],"mappings":"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","names":[]}