{"version":3,"sources":["../../src/restaurants-v1-fulfillment-method-fulfillment-methods.http.ts","../../src/restaurants-v1-fulfillment-method-fulfillment-methods.types.ts","../../src/restaurants-v1-fulfillment-method-fulfillment-methods.meta.ts"],"sourcesContent":["import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKFloatToRESTFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformRESTFloatToSDKFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformSDKFieldMaskToRESTFieldMask } from '@wix/sdk-runtime/transformations/field-mask';\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';\n\nfunction resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    'api._api_base_domain_': [\n      {\n        srcPath: '/fulfillment-methods',\n        destPath: '',\n      },\n    ],\n    '*.dev.wix-code.com': [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    _: [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    _base_domain_: [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'editor._base_domain_': [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'blocks._base_domain_': [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'create.editorx': [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'editor.wixapps.net': [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'manage._base_domain_': [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'users._base_domain_': [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'www._base_domain_': [\n      {\n        srcPath: '/_api/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'www.wixapis.com': [\n      {\n        srcPath: '/fulfillment-methods/v1',\n        destPath: '/v1',\n      },\n    ],\n    'apps._base_domain_': [\n      {\n        srcPath: '/_api/fulfillment-methods',\n        destPath: '',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_restaurants_fulfillment-methods';\n\n/**\n * Creates a new fulfillment method.\n *\n * >**Note:** `fulfillmentMethod.availability.time_zone` uses the time zone specified in the [`language and regions`](https://www.wix.com/my-account/site-selector/?buttonText=Select%20Site&title=Select%20a%20Site&autoSelectOnSingleSite=true&actionUrl=https:%2F%2Fwww.wix.com%2Fdashboard%2F%7B%7BmetaSiteId%7D%7D%2Fsettings/language-and-region) settings in the dashboard, regardless of the value provided.\n */\nexport function createFulfillmentMethod(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __createFulfillmentMethod({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKTimestampToRESTTimestamp,\n        paths: [\n          { path: 'fulfillmentMethod.createdDate' },\n          { path: 'fulfillmentMethod.updatedDate' },\n        ],\n      },\n      {\n        transformFn: transformSDKFloatToRESTFloat,\n        paths: [\n          { path: 'fulfillmentMethod.pickupOptions.address.geocode.latitude' },\n          { path: 'fulfillmentMethod.pickupOptions.address.geocode.longitude' },\n          {\n            path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n          },\n          {\n            path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n          },\n          {\n            path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n          },\n          {\n            path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n          },\n          { path: 'fulfillmentMethod.dineInOptions.address.geocode.latitude' },\n          { path: 'fulfillmentMethod.dineInOptions.address.geocode.longitude' },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.CreateFulfillmentMethod',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods',\n        data: serializedData,\n        host,\n      }),\n      data: serializedData,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'fulfillmentMethod.createdDate' },\n              { path: 'fulfillmentMethod.updatedDate' },\n            ],\n          },\n          {\n            transformFn: transformRESTFloatToSDKFloat,\n            paths: [\n              {\n                path: 'fulfillmentMethod.pickupOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.pickupOptions.address.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.dineInOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.dineInOptions.address.geocode.longitude',\n              },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __createFulfillmentMethod;\n}\n\n/** Create multiple fulfillment methods at once. */\nexport function bulkCreateFulfillmentMethods(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkCreateFulfillmentMethods({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKTimestampToRESTTimestamp,\n        paths: [\n          { path: 'fulfillmentMethods.createdDate' },\n          { path: 'fulfillmentMethods.updatedDate' },\n        ],\n      },\n      {\n        transformFn: transformSDKFloatToRESTFloat,\n        paths: [\n          { path: 'fulfillmentMethods.pickupOptions.address.geocode.latitude' },\n          {\n            path: 'fulfillmentMethods.pickupOptions.address.geocode.longitude',\n          },\n          {\n            path: 'fulfillmentMethods.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n          },\n          {\n            path: 'fulfillmentMethods.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n          },\n          {\n            path: 'fulfillmentMethods.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n          },\n          {\n            path: 'fulfillmentMethods.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n          },\n          { path: 'fulfillmentMethods.dineInOptions.address.geocode.latitude' },\n          {\n            path: 'fulfillmentMethods.dineInOptions.address.geocode.longitude',\n          },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.BulkCreateFulfillmentMethods',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/bulk/fulfillment-methods/create',\n        data: serializedData,\n        host,\n      }),\n      data: serializedData,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'results.fulfillmentMethod.createdDate' },\n              { path: 'results.fulfillmentMethod.updatedDate' },\n            ],\n          },\n          {\n            transformFn: transformRESTFloatToSDKFloat,\n            paths: [\n              {\n                path: 'results.fulfillmentMethod.pickupOptions.address.geocode.latitude',\n              },\n              {\n                path: 'results.fulfillmentMethod.pickupOptions.address.geocode.longitude',\n              },\n              {\n                path: 'results.fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n              },\n              {\n                path: 'results.fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n              },\n              {\n                path: 'results.fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n              },\n              {\n                path: 'results.fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n              },\n              {\n                path: 'results.fulfillmentMethod.dineInOptions.address.geocode.latitude',\n              },\n              {\n                path: 'results.fulfillmentMethod.dineInOptions.address.geocode.longitude',\n              },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __bulkCreateFulfillmentMethods;\n}\n\n/** Retrieves a fulfillment method. */\nexport function getFulfillmentMethod(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __getFulfillmentMethod({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'GET' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.GetFulfillmentMethod',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods/{fulfillmentMethodId}',\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: 'fulfillmentMethod.createdDate' },\n              { path: 'fulfillmentMethod.updatedDate' },\n            ],\n          },\n          {\n            transformFn: transformRESTFloatToSDKFloat,\n            paths: [\n              {\n                path: 'fulfillmentMethod.pickupOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.pickupOptions.address.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.dineInOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.dineInOptions.address.geocode.longitude',\n              },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __getFulfillmentMethod;\n}\n\n/**\n * Updates a fulfillment method.\n *\n * Each time the fulfillment method is updated, its revision increments by 1. The existing revision must be included when updating the fulfillment method. This ensures you're working with the latest fulfillment method information, and it prevents unintended overwrites.\n */\nexport function updateFulfillmentMethod(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __updateFulfillmentMethod({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKFieldMaskToRESTFieldMask,\n        paths: [{ path: 'fieldMask' }],\n      },\n      {\n        transformFn: transformSDKTimestampToRESTTimestamp,\n        paths: [\n          { path: 'fulfillmentMethod.createdDate' },\n          { path: 'fulfillmentMethod.updatedDate' },\n        ],\n      },\n      {\n        transformFn: transformSDKFloatToRESTFloat,\n        paths: [\n          { path: 'fulfillmentMethod.pickupOptions.address.geocode.latitude' },\n          { path: 'fulfillmentMethod.pickupOptions.address.geocode.longitude' },\n          {\n            path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n          },\n          {\n            path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n          },\n          {\n            path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n          },\n          {\n            path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n          },\n          { path: 'fulfillmentMethod.dineInOptions.address.geocode.latitude' },\n          { path: 'fulfillmentMethod.dineInOptions.address.geocode.longitude' },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'PATCH' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.UpdateFulfillmentMethod',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods/{fulfillmentMethod.id}',\n        data: serializedData,\n        host,\n      }),\n      data: serializedData,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'fulfillmentMethod.createdDate' },\n              { path: 'fulfillmentMethod.updatedDate' },\n            ],\n          },\n          {\n            transformFn: transformRESTFloatToSDKFloat,\n            paths: [\n              {\n                path: 'fulfillmentMethod.pickupOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.pickupOptions.address.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n              },\n              {\n                path: 'fulfillmentMethod.dineInOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethod.dineInOptions.address.geocode.longitude',\n              },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __updateFulfillmentMethod;\n}\n\n/** Deletes a fulfillment method. */\nexport function deleteFulfillmentMethod(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __deleteFulfillmentMethod({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'DELETE' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.DeleteFulfillmentMethod',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods/{fulfillmentMethodId}',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __deleteFulfillmentMethod;\n}\n\n/**\n * Creates a query to retrieve a list of fulfillment methods.\n *\n * The `queryFulfillmentMethods()` function builds a query to retrieve a list of fulfillment methods and returns a `FulfillmentMethodsQueryBuilder` object.\n *\n * The returned object contains the query definition, which is used to run the query using the [`find()`](/fulfillment-methods/fulfillment-methods-query-builder/find) function.\n *\n * You can refine the query by chaining `FulfillmentMethodsQueryBuilder` functions onto the query. `FulfillmentMethodsQueryBuilder` functions enable you to filter, sort, and control the results that `queryFulfillmentMethods()` returns.\n *\n * `queryFulfillmentMethods()` runs with the following `FulfillmentMethodsQueryBuilder` defaults, which you can override:\n *\n * * [`limit(50)`](/fulfillment-methods/fulfillment-methods-query-builder/limit)\n * * [`ascending('entityId')`](/fulfillment-methods/fulfillment-methods-query-builder/ascending)\n *\n * The following `FulfillmentMethodsQueryBuilder` functions are supported for `queryFulfillmentMethods()`. For a full description of the fulfillment method object, see the object returned for the [`items`](/fulfillment-methods/fulfillment-methods-query-result/items) property in `FulfillmentMethodsQueryResult`.\n */\nexport function queryFulfillmentMethods(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __queryFulfillmentMethods({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKFieldMaskToRESTFieldMask,\n        paths: [{ path: 'projectionMask' }],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.QueryFulfillmentMethods',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods/query',\n        data: serializedData,\n        host,\n      }),\n      data: serializedData,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'fulfillmentMethods.createdDate' },\n              { path: 'fulfillmentMethods.updatedDate' },\n            ],\n          },\n          {\n            transformFn: transformRESTFloatToSDKFloat,\n            paths: [\n              {\n                path: 'fulfillmentMethods.pickupOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.pickupOptions.address.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.dineInOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.dineInOptions.address.geocode.longitude',\n              },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __queryFulfillmentMethods;\n}\n\n/** Retrieves a list of up to 100 fulfillment methods. */\nexport function listFulfillmentMethods(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __listFulfillmentMethods({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKFloatToRESTFloat,\n        paths: [\n          { path: 'address.geocode.latitude' },\n          { path: 'address.geocode.longitude' },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'GET' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.ListFulfillmentMethods',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods',\n        data: serializedData,\n        host,\n      }),\n      params: toURLSearchParams(serializedData),\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'fulfillmentMethods.createdDate' },\n              { path: 'fulfillmentMethods.updatedDate' },\n            ],\n          },\n          {\n            transformFn: transformRESTFloatToSDKFloat,\n            paths: [\n              {\n                path: 'fulfillmentMethods.pickupOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.pickupOptions.address.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.dineInOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.dineInOptions.address.geocode.longitude',\n              },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __listFulfillmentMethods;\n}\n\n/**\n * Retrieves a list of up to 100 fulfillment methods available for a given address.\n *\n * The response will only include:\n * - Non-delivery fulfillment methods.\n * - Delivery fulfillment methods that are available to the given address according to their delivery areas.\n */\nexport function listAvailableFulfillmentMethodsForAddress(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __listAvailableFulfillmentMethodsForAddress({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKFloatToRESTFloat,\n        paths: [\n          { path: 'address.geocode.latitude' },\n          { path: 'address.geocode.longitude' },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.ListAvailableFulfillmentMethodsForAddress',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods/available-for-address',\n        data: serializedData,\n        host,\n      }),\n      data: serializedData,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'fulfillmentMethods.createdDate' },\n              { path: 'fulfillmentMethods.updatedDate' },\n            ],\n          },\n          {\n            transformFn: transformRESTFloatToSDKFloat,\n            paths: [\n              {\n                path: 'fulfillmentMethods.pickupOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.pickupOptions.address.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.radiusOptions.centerPointAddress.geocode.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.customOptions.geocodes.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.deliveryOptions.deliveryArea.customOptions.geocodes.longitude',\n              },\n              {\n                path: 'fulfillmentMethods.dineInOptions.address.geocode.latitude',\n              },\n              {\n                path: 'fulfillmentMethods.dineInOptions.address.geocode.longitude',\n              },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __listAvailableFulfillmentMethodsForAddress;\n}\n\n/**\n * Retrieves the accumulated availability of all fulfillment methods.\n * @deprecated It has been replaced with wix.restaurants.fulfillment.v1.FulfillmentMethodsService.GetAggregatedMethodAvailability(), and will be removed on 2024-09-29.\n */\nexport function getAccumulatedFulfillmentMethodsAvailability(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __getAccumulatedFulfillmentMethodsAvailability({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'GET' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.GetAccumulatedFulfillmentMethodsAvailability',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods/accumulated-availability',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __getAccumulatedFulfillmentMethodsAvailability;\n}\n\n/**\n * Retrieves the combined availability of a list of fulfillment methods.\n *\n * The combined availability is a list of times during which one or more of the given fulfillment methods is available, and the types of those fulfillment methods.\n * @deprecated It has been replaced with wix.restaurants.fulfillment.v1.FulfillmentMethodsService.GetAggregatedMethodAvailability(), and will be removed on 2025-02-10.\n */\nexport function getCombinedMethodAvailability(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __getCombinedMethodAvailability({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'GET' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.GetCombinedMethodAvailability',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods/combined-availability',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __getCombinedMethodAvailability;\n}\n\n/**\n * Retrieves the aggregated availability of a list of fulfillment methods.\n *\n * The aggregated availability is a list of times during which one or more of the given fulfillment methods is available, and the types of those fulfillment methods.\n */\nexport function getAggregatedMethodAvailability(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __getAggregatedMethodAvailability({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.GetAggregatedMethodAvailability',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/fulfillment-methods/aggregated-availability',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __getAggregatedMethodAvailability;\n}\n\n/**\n * Synchronously update tags on multiple fulfillment methods.\n * If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.\n */\nexport function bulkUpdateFulfillmentMethodTags(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkUpdateFulfillmentMethodTags({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.BulkUpdateFulfillmentMethodTags',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/bulk/fulfillment-methods/update-tags',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __bulkUpdateFulfillmentMethodTags;\n}\n\n/**\n * Asynchronously update tags on multiple fulfillment methods according to the specified filter.\n * If a filter isn't specified, this method updates all fulfillment methods.\n * If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.\n */\nexport function bulkUpdateFulfillmentMethodTagsByFilter(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkUpdateFulfillmentMethodTagsByFilter({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.fulfillment_method',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.fulfillment.v1.FulfillmentMethodsService.BulkUpdateFulfillmentMethodTagsByFilter',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsFulfillmentV1FulfillmentMethodsServiceUrl({\n        protoPath: '/v1/bulk/fulfillment-methods/update-tags-by-filter',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __bulkUpdateFulfillmentMethodTagsByFilter;\n}\n","/** A Fulfillment Method represents a way in which a restaurant can provide orders to its customers. */\nexport interface FulfillmentMethod extends FulfillmentMethodMethodOptionsOneOf {\n  /** Data specific for pickup fulfillment method. */\n  pickupOptions?: PickupInfo;\n  /** Data specific for delivery fulfillment method. */\n  deliveryOptions?: DeliveryInfo;\n  /**\n   * Fulfillment method ID.\n   * @format GUID\n   * @readonly\n   */\n  id?: string | null;\n  /**\n   * The current state of an item. Each time the item is modified, its `revision` changes by the server. for an update operation to succeed, you MUST pass the latest revision.\n   * @readonly\n   */\n  revision?: string | null;\n  /**\n   * Date and time the fulfillment method was created.\n   * @readonly\n   */\n  createdDate?: Date | null;\n  /**\n   * Date and time the fulfillment method was last updated.\n   * @readonly\n   */\n  updatedDate?: Date | null;\n  /** Type of fulfillment method. */\n  type?: FulfillmentMethodTypeWithLiterals;\n  /**\n   * Fulfillment method name.\n   * @minLength 1\n   * @maxLength 30\n   */\n  name?: string | null;\n  /** Whether the fulfillment method is enabled. */\n  enabled?: boolean | null;\n  /**\n   * Fee for using this fulfillment method.\n   * @decimalValue options { maxScale:3 }\n   */\n  fee?: string | null;\n  /** Availability of this fulfillment method. */\n  availability?: Availability;\n  /**\n   * Minimum order price to qualify for using this fulfillment method.\n   * @decimalValue options { maxScale:3 }\n   */\n  minOrderPrice?: string | null;\n  /**\n   * Business location ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) of the operation this fulfillment method belongs to.\n   * @format GUID\n   * @readonly\n   */\n  businessLocationId?: string | null;\n  /** Extended fields. */\n  extendedFields?: ExtendedFields;\n  /** Tags used to classify and sort different types of fulfillment methods. */\n  tags?: Tags;\n}\n\n/** @oneof */\nexport interface FulfillmentMethodMethodOptionsOneOf {\n  /** Data specific for pickup fulfillment method. */\n  pickupOptions?: PickupInfo;\n  /** Data specific for delivery fulfillment method. */\n  deliveryOptions?: DeliveryInfo;\n}\n\nexport enum FulfillmentMethodType {\n  /** Unknown fulfillment type. */\n  UNKNOWN_FULFILLMENT_TYPE = 'UNKNOWN_FULFILLMENT_TYPE',\n  /** The customer must pick up the order from the restaurant. */\n  PICKUP = 'PICKUP',\n  /** The restaurant, or someone on behalf of the restaurant, must deliver the order to the customer. */\n  DELIVERY = 'DELIVERY',\n}\n\n/** @enumType */\nexport type FulfillmentMethodTypeWithLiterals =\n  | FulfillmentMethodType\n  | 'UNKNOWN_FULFILLMENT_TYPE'\n  | 'PICKUP'\n  | 'DELIVERY';\n\nexport interface PickupInfo {\n  /**\n   * Instructions for the pickup.\n   * @maxLength 250\n   */\n  instructions?: string | null;\n  /**\n   * Pickup address.\n   *\n   * This is set to the address of the restaurant.\n   * @readonly\n   */\n  address?: CommonAddress;\n}\n\n/** Physical address */\nexport interface CommonAddress extends CommonAddressStreetOneOf {\n  /** Street name and number. */\n  streetAddress?: StreetAddress;\n  /** Main address line, usually street and number as free text. */\n  addressLine?: string | null;\n  /**\n   * Country code.\n   * @format COUNTRY\n   */\n  country?: string | null;\n  /** Subdivision. Usually a state, region, prefecture, or province code, according to [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). */\n  subdivision?: string | null;\n  /** City name. */\n  city?: string | null;\n  /** Zip/postal code. */\n  postalCode?: string | null;\n  /** Free text providing more detailed address info. Usually contains Apt, Suite, and Floor. */\n  addressLine2?: string | null;\n  /** A string containing the full address of this location. */\n  formattedAddress?: string | null;\n  /** Free text to help find the address. */\n  hint?: string | null;\n  /** Coordinates of the physical address. */\n  geocode?: AddressLocation;\n  /** Country full name. */\n  countryFullname?: string | null;\n  /** Subdivision full name. */\n  subdivisionFullname?: string | null;\n  /**\n   * Multi-level subdivisions from top to bottom.\n   * @maxSize 6\n   */\n  subdivisions?: Subdivision[];\n}\n\n/** @oneof */\nexport interface CommonAddressStreetOneOf {\n  /** Street name and number. */\n  streetAddress?: StreetAddress;\n  /** Main address line, usually street and number as free text. */\n  addressLine?: string | null;\n}\n\nexport interface StreetAddress {\n  /** Street number. */\n  number?: string;\n  /** Street name. */\n  name?: string;\n  /** Apartment number. */\n  apt?: string;\n  /** Optional address line 1 */\n  formattedAddressLine?: string | null;\n}\n\nexport interface AddressLocation {\n  /** Address latitude. */\n  latitude?: number | null;\n  /** Address longitude. */\n  longitude?: number | null;\n}\n\nexport interface Subdivision {\n  /** Short subdivision code. */\n  code?: string;\n  /** Subdivision full name. */\n  name?: string;\n}\n\nexport enum SubdivisionType {\n  UNKNOWN_SUBDIVISION_TYPE = 'UNKNOWN_SUBDIVISION_TYPE',\n  /** State */\n  ADMINISTRATIVE_AREA_LEVEL_1 = 'ADMINISTRATIVE_AREA_LEVEL_1',\n  /** County */\n  ADMINISTRATIVE_AREA_LEVEL_2 = 'ADMINISTRATIVE_AREA_LEVEL_2',\n  /** City/town */\n  ADMINISTRATIVE_AREA_LEVEL_3 = 'ADMINISTRATIVE_AREA_LEVEL_3',\n  /** Neighborhood/quarter */\n  ADMINISTRATIVE_AREA_LEVEL_4 = 'ADMINISTRATIVE_AREA_LEVEL_4',\n  /** Street/block */\n  ADMINISTRATIVE_AREA_LEVEL_5 = 'ADMINISTRATIVE_AREA_LEVEL_5',\n  /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */\n  COUNTRY = 'COUNTRY',\n}\n\n/** @enumType */\nexport type SubdivisionTypeWithLiterals =\n  | SubdivisionType\n  | 'UNKNOWN_SUBDIVISION_TYPE'\n  | 'ADMINISTRATIVE_AREA_LEVEL_1'\n  | 'ADMINISTRATIVE_AREA_LEVEL_2'\n  | 'ADMINISTRATIVE_AREA_LEVEL_3'\n  | 'ADMINISTRATIVE_AREA_LEVEL_4'\n  | 'ADMINISTRATIVE_AREA_LEVEL_5'\n  | 'COUNTRY';\n\nexport interface DeliveryInfo {\n  /** Estimated delivery time in minutes. */\n  deliveryTimeInMinutes?: number | null;\n  /**\n   * Threshold for offering free delivery.\n   * If the order price exceeds this threshold, the delivery fee is waived.\n   * @decimalValue options { maxScale:3 }\n   */\n  freeDeliveryThreshold?: string | null;\n  /** Delivery area supported by this delivery fulfillment method. */\n  deliveryArea?: DeliveryArea;\n  /**\n   * Delivery provider app id.\n   * @format GUID\n   * @readonly\n   */\n  deliveryProviderAppId?: string | null;\n  /**\n   * Pickup instructions for couriers.\n   * @maxLength 250\n   */\n  courierPickupInstructions?: string | null;\n}\n\nexport interface DeliveryArea extends DeliveryAreaAreaOptionsOneOf {\n  /** Settings for a radius delivery area. */\n  radiusOptions?: Radius;\n  /** Settings for a postal code delivery area. */\n  postalCodeOptions?: PostalCode;\n  /** Settings for a custom delivery area. */\n  customOptions?: CustomArea;\n  /** Type of delivery area. */\n  type?: TypeWithLiterals;\n}\n\n/** @oneof */\nexport interface DeliveryAreaAreaOptionsOneOf {\n  /** Settings for a radius delivery area. */\n  radiusOptions?: Radius;\n  /** Settings for a postal code delivery area. */\n  postalCodeOptions?: PostalCode;\n  /** Settings for a custom delivery area. */\n  customOptions?: CustomArea;\n}\n\nexport enum Type {\n  /** Unknown delivery area type. */\n  UNKNOWN_DELIVERY_AREA = 'UNKNOWN_DELIVERY_AREA',\n  /** Delivery area defined by a radius around the restaurant's address. */\n  RADIUS = 'RADIUS',\n  /** Delivery area defined by a list of postal codes. */\n  POSTAL_CODE = 'POSTAL_CODE',\n  /** Delivery area defined by a custom polygon. */\n  CUSTOM = 'CUSTOM',\n  /** Delivery area that is determined by the provider. Setting this option, you must also provide `delivery_provider_app_id`. */\n  PROVIDER_DEFINED = 'PROVIDER_DEFINED',\n}\n\n/** @enumType */\nexport type TypeWithLiterals =\n  | Type\n  | 'UNKNOWN_DELIVERY_AREA'\n  | 'RADIUS'\n  | 'POSTAL_CODE'\n  | 'CUSTOM'\n  | 'PROVIDER_DEFINED';\n\nexport interface Radius {\n  /**\n   * Minimum distance value.\n   * The unit of the radius is specified in the `unit` field.\n   * @decimalValue options { gte:0, lte:10000, maxScale:3 }\n   */\n  minDistance?: string | null;\n  /**\n   * Maximum distance value.\n   * The unit of the radius is specified in the `unit` field.\n   * @decimalValue options { gte:0, lte:10000, maxScale:3 }\n   */\n  maxDistance?: string | null;\n  /**\n   * Address at the center of the circle.\n   * @readonly\n   */\n  centerPointAddress?: CommonAddress;\n  /** Unit of measurement of the radius. */\n  unit?: UnitWithLiterals;\n}\n\nexport enum Unit {\n  /** Unknown unit. */\n  UNKNOWN_UNIT = 'UNKNOWN_UNIT',\n  /** Miles. */\n  MILES = 'MILES',\n  /** Kilometers. */\n  KILOMETERS = 'KILOMETERS',\n}\n\n/** @enumType */\nexport type UnitWithLiterals = Unit | 'UNKNOWN_UNIT' | 'MILES' | 'KILOMETERS';\n\nexport interface PostalCode {\n  /**\n   * Country code in [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format.\n   * @format COUNTRY\n   * @readonly\n   */\n  countryCode?: string | null;\n  /**\n   * List of postal codes and postal code regexes. For example, `10001`, `10002` or `1000*`.\n   * A postal code regex will enable you to define a range of postal codes using an asterisk (*).\n   * For example, to include the postal codes in the range of `10001`-`10009`, use `1000*`.\n   * @maxLength 20\n   * @minLength 1\n   * @maxSize 100\n   */\n  postalCodes?: string[] | null;\n}\n\nexport interface CustomArea {\n  /** Geocodes of the polygon defining the delivery area. */\n  geocodes?: AddressLocation[];\n}\n\nexport interface Availability {\n  /** A list of availability times for the days of the week. */\n  availableTimes?: DayOfWeekAvailability[];\n  /**\n   * The timezone in which the availability times are given.\n   * @readonly\n   */\n  timeZone?: string | null;\n}\n\nexport interface DayOfWeekAvailability {\n  /** The day of week this availability relates to. */\n  dayOfWeek?: EntitiesDayOfWeekWithLiterals;\n  /** A list of time ranges during which the fulfillment should be available. */\n  timeRanges?: TimeOfDayRange[];\n}\n\nexport enum EntitiesDayOfWeek {\n  /** Monday. */\n  MON = 'MON',\n  /** Tuesday. */\n  TUE = 'TUE',\n  /** Wednesday. */\n  WED = 'WED',\n  /** Thursday. */\n  THU = 'THU',\n  /** Friday. */\n  FRI = 'FRI',\n  /** Saturday. */\n  SAT = 'SAT',\n  /** Sunday. */\n  SUN = 'SUN',\n}\n\n/** @enumType */\nexport type EntitiesDayOfWeekWithLiterals =\n  | EntitiesDayOfWeek\n  | 'MON'\n  | 'TUE'\n  | 'WED'\n  | 'THU'\n  | 'FRI'\n  | 'SAT'\n  | 'SUN';\n\nexport interface TimeOfDayRange {\n  /** The start time in time of day representation. */\n  startTime?: TimeOfDay;\n  /** The end time in time of day representation. */\n  endTime?: TimeOfDay;\n}\n\nexport interface TimeOfDay {\n  /**\n   * Hours. <br />\n   * Min: `0`. <br />\n   * Max: `23`.\n   */\n  hours?: number;\n  /**\n   * Minutes. <br />\n   * Min: `0`. <br />\n   * Max: `23`.\n   */\n  minutes?: number;\n}\n\nexport interface ExtendedFields {\n  /**\n   * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\n   * The value of each key is structured according to the schema defined when the extended fields were configured.\n   *\n   * You can only access fields for which you have the appropriate permissions.\n   *\n   * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).\n   */\n  namespaces?: Record<string, Record<string, any>>;\n}\n\n/**\n * Common object for tags.\n * Should be use as in this example:\n * message Foo {\n * string id = 1;\n * ...\n * Tags tags = 5\n * }\n *\n * example of taggable entity\n * {\n * id: \"123\"\n * tags: {\n * tags: {\n * tag_ids:[\"11\",\"22\"]\n * },\n * private_tags: {\n * tag_ids: [\"33\", \"44\"]\n * }\n * }\n * }\n */\nexport interface Tags {\n  /** Tags that require an additional permission in order to access them, normally not given to site members or visitors. */\n  privateTags?: TagList;\n  /** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */\n  tags?: TagList;\n}\n\nexport interface TagList {\n  /**\n   * List of tag IDs\n   * @maxSize 100\n   * @maxLength 5\n   */\n  tagIds?: string[];\n}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n  createdEvent?: EntityCreatedEvent;\n  updatedEvent?: EntityUpdatedEvent;\n  deletedEvent?: EntityDeletedEvent;\n  actionEvent?: ActionEvent;\n  /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n  id?: string;\n  /**\n   * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n   * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n   */\n  entityFqdn?: string;\n  /**\n   * Event action name, placed at the top level to make it easier for users to dispatch messages.\n   * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n   */\n  slug?: string;\n  /** ID of the entity associated with the event. */\n  entityId?: string;\n  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n  eventTime?: Date | null;\n  /**\n   * Whether the event was triggered as a result of a privacy regulation application\n   * (for example, GDPR).\n   */\n  triggeredByAnonymizeRequest?: boolean | null;\n  /** If present, indicates the action that triggered the event. */\n  originatedFrom?: string | null;\n  /**\n   * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n   * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n   */\n  entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n  createdEvent?: EntityCreatedEvent;\n  updatedEvent?: EntityUpdatedEvent;\n  deletedEvent?: EntityDeletedEvent;\n  actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n  entityAsJson?: string;\n  /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */\n  restoreInfo?: RestoreInfo;\n}\n\nexport interface RestoreInfo {\n  deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n  /**\n   * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n   * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n   * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n   */\n  currentEntityAsJson?: string;\n}\n\nexport interface EntityDeletedEvent {\n  /** Entity that was deleted. */\n  deletedEntityAsJson?: string | null;\n}\n\nexport interface ActionEvent {\n  bodyAsJson?: string;\n}\n\nexport interface MessageEnvelope {\n  /**\n   * App instance ID.\n   * @format GUID\n   */\n  instanceId?: string | null;\n  /**\n   * Event type.\n   * @maxLength 150\n   */\n  eventType?: string;\n  /** The identification type and identity data. */\n  identity?: IdentificationData;\n  /** Stringify payload. */\n  data?: string;\n  /** Details related to the account */\n  accountInfo?: AccountInfo;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n  /**\n   * ID of a site visitor that has not logged in to the site.\n   * @format GUID\n   */\n  anonymousVisitorId?: string;\n  /**\n   * ID of a site visitor that has logged in to the site.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * ID of a Wix user (site owner, contributor, etc.).\n   * @format GUID\n   */\n  wixUserId?: string;\n  /**\n   * ID of an app.\n   * @format GUID\n   */\n  appId?: string;\n  /** @readonly */\n  identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n  /**\n   * ID of a site visitor that has not logged in to the site.\n   * @format GUID\n   */\n  anonymousVisitorId?: string;\n  /**\n   * ID of a site visitor that has logged in to the site.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * ID of a Wix user (site owner, contributor, etc.).\n   * @format GUID\n   */\n  wixUserId?: string;\n  /**\n   * ID of an app.\n   * @format GUID\n   */\n  appId?: string;\n}\n\nexport enum WebhookIdentityType {\n  UNKNOWN = 'UNKNOWN',\n  ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n  MEMBER = 'MEMBER',\n  WIX_USER = 'WIX_USER',\n  APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n  | WebhookIdentityType\n  | 'UNKNOWN'\n  | 'ANONYMOUS_VISITOR'\n  | 'MEMBER'\n  | 'WIX_USER'\n  | 'APP';\n\nexport interface DineInInfo extends DineInInfoAdditionalInfoLabelOptionsOneOf {\n  /** Options for AdditionalInfoLabel. Required when `type` is `CUSTOM`. */\n  customOptions?: CustomConfig;\n  /**\n   * Instructions for dine-in orders.\n   * @maxLength 250\n   */\n  customerInstructions?: string | null;\n  /**\n   * Label for an additional information field shown to customers when placing a dine-in order.\n   * Use this when you want to collect optional details (e.g., \"Table number\", \"Room number\").\n   * If no additional information is needed, leave this field empty.\n   * Defines how customers provide information about their seating place when placing a dine-in order.\n   * This determines whether customers need to specify their seating place and how they input it.\n   */\n  additionalInfoLabel?: AdditionalInfoLabelWithLiterals;\n  /**\n   * Dine-in address. This is the restaurant's address.\n   * @readonly\n   */\n  address?: CommonAddress;\n}\n\n/** @oneof */\nexport interface DineInInfoAdditionalInfoLabelOptionsOneOf {\n  /** Options for AdditionalInfoLabel. Required when `type` is `CUSTOM`. */\n  customOptions?: CustomConfig;\n}\n\nexport enum AdditionalInfoLabel {\n  /** No identification required. Customers don't need to specify their seating place. */\n  NO_ADDITIONAL_INFO_LABEL = 'NO_ADDITIONAL_INFO_LABEL',\n  /** Customers select their table number from a predefined list of tables available in the restaurant. */\n  TABLE_NUMBER = 'TABLE_NUMBER',\n  /** Customers select their table number from a predefined list of tables available in the restaurant. */\n  ROOM_NUMBER = 'ROOM_NUMBER',\n  /** Customers can enter any custom text or number to identify their seating place (e.g. booth, area, room, etc.). */\n  CUSTOM = 'CUSTOM',\n}\n\n/** @enumType */\nexport type AdditionalInfoLabelWithLiterals =\n  | AdditionalInfoLabel\n  | 'NO_ADDITIONAL_INFO_LABEL'\n  | 'TABLE_NUMBER'\n  | 'ROOM_NUMBER'\n  | 'CUSTOM';\n\nexport interface CustomConfig {\n  /** @maxLength 40 */\n  customInfo?: string | null;\n}\n\nexport interface InvalidateCache extends InvalidateCacheGetByOneOf {\n  /**\n   * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!\n   * @format GUID\n   */\n  siteId?: string;\n  /** Invalidate by App */\n  app?: App;\n  /** Invalidate by page id */\n  page?: Page;\n  /** Invalidate by URI path */\n  uri?: URI;\n  /** Invalidate by file (for media files such as PDFs) */\n  file?: File;\n  /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */\n  customTag?: CustomTag;\n  /** Invalidate by multiple page ids */\n  pages?: Pages;\n  /** Invalidate by multiple URI paths */\n  uris?: URIs;\n  /**\n   * tell us why you're invalidating the cache. You don't need to add your app name\n   * @maxLength 256\n   */\n  reason?: string | null;\n  /** Is local DS */\n  localDc?: boolean;\n  hardPurge?: boolean;\n  /**\n   * Optional caller-provided ID for tracking this invalidation through the system.\n   * When set, the corresponding CDN purge completion event will include this ID,\n   * allowing you to confirm when the invalidation has fully propagated.\n   * Example: generate a UUID, pass it here, and later match it in the CDN purge completion event.\n   * @maxLength 256\n   */\n  correlationId?: string | null;\n}\n\n/** @oneof */\nexport interface InvalidateCacheGetByOneOf {\n  /**\n   * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!\n   * @format GUID\n   */\n  siteId?: string;\n  /** Invalidate by App */\n  app?: App;\n  /** Invalidate by page id */\n  page?: Page;\n  /** Invalidate by URI path */\n  uri?: URI;\n  /** Invalidate by file (for media files such as PDFs) */\n  file?: File;\n  /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */\n  customTag?: CustomTag;\n  /** Invalidate by multiple page ids */\n  pages?: Pages;\n  /** Invalidate by multiple URI paths */\n  uris?: URIs;\n}\n\nexport interface App {\n  /**\n   * The AppDefId\n   * @minLength 1\n   */\n  appDefId?: string;\n  /**\n   * The instance Id\n   * @format GUID\n   */\n  instanceId?: string;\n}\n\nexport interface Page {\n  /**\n   * the msid the page is on\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by Page ID\n   * @minLength 1\n   */\n  pageId?: string;\n}\n\nexport interface URI {\n  /**\n   * the msid the URI is on\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes\n   * @minLength 1\n   */\n  uriPath?: string;\n}\n\nexport interface File {\n  /**\n   * the msid the file is related to\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by filename (for media files such as PDFs)\n   * @minLength 1\n   * @maxLength 256\n   */\n  fileName?: string;\n}\n\nexport interface CustomTag {\n  /**\n   * the msid the tag is related to\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Tag to invalidate by\n   * @minLength 1\n   * @maxLength 256\n   */\n  tag?: string;\n}\n\nexport interface Pages {\n  /**\n   * the msid the pages are on\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by multiple Page IDs in a single message\n   * @maxSize 100\n   * @minLength 1\n   */\n  pageIds?: string[];\n}\n\nexport interface URIs {\n  /**\n   * the msid the URIs are on\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * URI paths to invalidate (e.g. page/my/path) - without leading/trailing slashes\n   * @maxSize 100\n   * @minLength 1\n   */\n  uriPaths?: string[];\n}\n\nexport interface CreateFulfillmentMethodRequest {\n  /** Fulfillment method to create. */\n  fulfillmentMethod: FulfillmentMethod;\n}\n\nexport interface CreateFulfillmentMethodResponse {\n  /** The created fulfillment method. */\n  fulfillmentMethod?: FulfillmentMethod;\n}\n\nexport interface BulkCreateFulfillmentMethodsRequest {\n  /**\n   * Fulfillment methods to create.\n   * @maxSize 100\n   */\n  fulfillmentMethods?: FulfillmentMethod[];\n  /** If true, the created entities will be returned. */\n  returnEntity?: boolean;\n}\n\nexport interface BulkCreateFulfillmentMethodsResponse {\n  /** Information about the created fulfillment method. */\n  results?: BulkCreateFulfillmentMethodResult[];\n  /** Metadata for the API call. */\n  bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkCreateFulfillmentMethodResult {\n  /** Metadata for fulfillment method creation. */\n  itemMetadata?: ItemMetadata;\n  /** Created fulfillment method. */\n  fulfillmentMethod?: FulfillmentMethod;\n}\n\nexport interface ItemMetadata {\n  /** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */\n  id?: string | null;\n  /** Index of the item within the request array. Allows for correlation between request and response items. */\n  originalIndex?: number;\n  /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */\n  success?: boolean;\n  /** Details about the error in case of failure. */\n  error?: ApplicationError;\n}\n\nexport interface ApplicationError {\n  /** Error code. */\n  code?: string;\n  /** Description of the error. */\n  description?: string;\n  /** Data related to the error. */\n  data?: Record<string, any> | null;\n}\n\nexport interface BulkActionMetadata {\n  /** Number of items that were successfully processed. */\n  totalSuccesses?: number;\n  /** Number of items that couldn't be processed. */\n  totalFailures?: number;\n  /** Number of failures without details because detailed failure threshold was exceeded. */\n  undetailedFailures?: number;\n}\n\nexport interface GetFulfillmentMethodRequest {\n  /**\n   * The ID of the fulfillment method to retrieve.\n   * @format GUID\n   */\n  fulfillmentMethodId: string;\n}\n\nexport interface GetFulfillmentMethodResponse {\n  /** The retrieved fulfillment method. */\n  fulfillmentMethod?: FulfillmentMethod;\n}\n\nexport interface UpdateFulfillmentMethodRequest {\n  /**\n   * Fulfillment method to update.\n   * The fulfillment method update may be partial with the use of `field_mask`.\n   */\n  fulfillmentMethod: FulfillmentMethod;\n}\n\nexport interface UpdateFulfillmentMethodResponse {\n  /** The updated fulfillment method. */\n  fulfillmentMethod?: FulfillmentMethod;\n}\n\nexport interface DeleteFulfillmentMethodRequest {\n  /**\n   * The ID of the fulfillment method to delete.\n   * @format GUID\n   */\n  fulfillmentMethodId: string;\n}\n\nexport interface DeleteFulfillmentMethodResponse {}\n\nexport interface QueryFulfillmentMethodsRequest {\n  /** The query by which to select fulfillment methods. */\n  query?: CursorQuery;\n}\n\nexport interface CursorQuery extends CursorQueryPagingMethodOneOf {\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  cursorPaging?: CursorPaging;\n  /**\n   * Filter object in the following format:\n   * `\"filter\" : {\n   * \"fieldName1\": \"value1\",\n   * \"fieldName2\":{\"$operator\":\"value2\"}\n   * }`\n   * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`\n   */\n  filter?: Record<string, any> | null;\n  /**\n   * Sort object in the following format:\n   * `[{\"fieldName\":\"sortField1\",\"order\":\"ASC\"},{\"fieldName\":\"sortField2\",\"order\":\"DESC\"}]`\n   * @maxSize 4\n   */\n  sort?: Sorting[];\n}\n\n/** @oneof */\nexport interface CursorQueryPagingMethodOneOf {\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  cursorPaging?: CursorPaging;\n}\n\nexport interface Sorting {\n  /**\n   * Name of the field to sort by.\n   * @maxLength 64\n   */\n  fieldName?: string;\n  /** Sort order. */\n  order?: SortOrderWithLiterals;\n}\n\nexport enum SortOrder {\n  ASC = 'ASC',\n  DESC = 'DESC',\n}\n\n/** @enumType */\nexport type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';\n\nexport interface CursorPaging {\n  /**\n   * Maximum number of items to return in the results.\n   * @max 100\n   */\n  limit?: number | null;\n  /**\n   * Pointer to the next or previous page in the list of results.\n   *\n   * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\n   * Not relevant for the first request.\n   * @maxLength 16000\n   */\n  cursor?: string | null;\n}\n\nexport interface QueryFulfillmentMethodsResponse {\n  /** The retrieved fulfillment methods. */\n  fulfillmentMethods?: FulfillmentMethod[];\n  /** The metadata of the paginated results. */\n  pagingMetadata?: CursorPagingMetadata;\n}\n\nexport interface CursorPagingMetadata {\n  /** Number of items returned in the response. */\n  count?: number | null;\n  /** Cursor strings that point to the next page, previous page, or both. */\n  cursors?: Cursors;\n  /**\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  hasNext?: boolean | null;\n}\n\nexport interface Cursors {\n  /**\n   * Cursor string pointing to the next page in the list of results.\n   * @maxLength 16000\n   */\n  next?: string | null;\n  /**\n   * Cursor pointing to the previous page in the list of results.\n   * @maxLength 16000\n   */\n  prev?: string | null;\n}\n\nexport interface ListFulfillmentMethodsRequest {\n  /** Cursor paging */\n  cursorPaging?: CursorPaging;\n}\n\nexport interface ListFulfillmentMethodsResponse {\n  /** The retrieved fulfillment methods. */\n  fulfillmentMethods?: FulfillmentMethod[];\n  /** The metadata of the paginated results. */\n  pagingMetadata?: CursorPagingMetadata;\n}\n\nexport interface ListAvailableFulfillmentMethodsForAddressRequest {\n  /** The address by which to filter delivery fulfillment methods. */\n  address?: CommonAddress;\n  /** Cursor paging */\n  cursorPaging?: CursorPaging;\n  /**\n   * If provided, only fulfillment methods with the given IDs will be returned.\n   * @format GUID\n   * @maxSize 500\n   */\n  fulfillmentMethodIds?: string[];\n}\n\nexport interface ListAvailableFulfillmentMethodsForAddressResponse {\n  /** The retrieved fulfillment methods. */\n  fulfillmentMethods?: FulfillmentMethod[];\n  /** The metadata of the paginated results. */\n  pagingMetadata?: CursorPagingMetadata;\n}\n\nexport interface ListActiveFulfillmentMethodsRequest {\n  /**\n   * Only fulfillment methods with the given IDs will be returned.\n   * @format GUID\n   * @maxSize 500\n   */\n  fulfillmentMethodIds?: string[];\n  /** Cursor paging */\n  cursorPaging?: CursorPaging;\n}\n\nexport interface ListActiveFulfillmentMethodsResponse {\n  /** The enabled fulfillment methods. */\n  fulfillmentMethods?: FulfillmentMethod[];\n  /** The metadata of the paginated results. */\n  pagingMetadata?: CursorPagingMetadata;\n}\n\nexport interface GetAccumulatedFulfillmentMethodsAvailabilityRequest {\n  /**\n   * fulfillment method ids to check availability for.\n   * @format GUID\n   * @maxSize 500\n   */\n  fulfillmentMethodIds?: string[];\n}\n\nexport interface GetAccumulatedFulfillmentMethodsAvailabilityResponse {\n  /** The accumulated availability of all fulfillment methods. */\n  availability?: Availability;\n  /** Fulfillment methods types that accumulate availability. */\n  types?: FulfillmentMethodTypeWithLiterals[];\n}\n\nexport interface GetCombinedMethodAvailabilityRequest {\n  /**\n   * IDs of fulfillment methods used to determine the combined availability.\n   * @format GUID\n   * @maxSize 500\n   */\n  fulfillmentMethodIds: string[];\n}\n\nexport interface GetCombinedMethodAvailabilityResponse {\n  /** The combined availability of the given fulfillment methods. */\n  combinedAvailability?: Availability;\n  /**\n   * Types of fulfillment methods available during at least some the combined availability's `availableTimes`.\n   * @maxSize 100\n   */\n  fulfillmentTypes?: FulfillmentMethodTypeWithLiterals[];\n}\n\nexport interface GetAggregatedMethodAvailabilityRequest {\n  /**\n   * IDs of fulfillment methods used to determine the aggregated availability.\n   * @format GUID\n   * @maxSize 500\n   */\n  fulfillmentMethodIds: string[];\n}\n\nexport interface GetAggregatedMethodAvailabilityResponse {\n  /** The aggregated availability of the given fulfillment methods. */\n  aggregatedAvailability?: Availability;\n  /**\n   * Types of fulfillment methods available during at least some the aggregated availability's `availableTimes`.\n   * @maxSize 100\n   */\n  fulfillmentTypes?: FulfillmentMethodTypeWithLiterals[];\n}\n\nexport interface BulkUpdateFulfillmentMethodTagsRequest {\n  /**\n   * IDs of the fulfillment methods to update tags for.\n   * @minSize 1\n   * @maxSize 100\n   * @format GUID\n   */\n  fulfillmentMethodIds: string[];\n  /** Tags to assign to the fulfillment methods. */\n  assignTags?: Tags;\n  /** Tags to unassign from the fulfillment methods. */\n  unassignTags?: Tags;\n}\n\nexport interface BulkUpdateFulfillmentMethodTagsResponse {\n  /**\n   * Results of the bulk update.\n   * @minSize 1\n   * @maxSize 100\n   */\n  results?: BulkUpdateFulfillmentMethodTagsResult[];\n  /** Metadata for the bulk update. */\n  bulkActionMetadata?: CommonBulkActionMetadata;\n}\n\nexport interface CommonItemMetadata {\n  /**\n   * Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\n   * @format GUID\n   */\n  id?: string | null;\n  /** Index of the item within the request array. Allows for correlation between request and response items. */\n  originalIndex?: number;\n  /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */\n  success?: boolean;\n  /** Details about the error in case of failure. */\n  error?: ApplicationError;\n}\n\nexport interface BulkUpdateFulfillmentMethodTagsResult {\n  /** Metadata for the updated fulfillment method. */\n  itemMetadata?: CommonItemMetadata;\n}\n\nexport interface CommonBulkActionMetadata {\n  /** Number of items that were successfully processed. */\n  totalSuccesses?: number;\n  /** Number of items that couldn't be processed. */\n  totalFailures?: number;\n  /** Number of failures without details because detailed failure threshold was exceeded. */\n  undetailedFailures?: number;\n}\n\nexport interface BulkUpdateFulfillmentMethodTagsByFilterRequest {\n  /** Filter that determines which fulfillment methods to update tags for. */\n  filter: Record<string, any> | null;\n  /** Tags to assign to the fulfillment methods. */\n  assignTags?: Tags;\n  /** Tags to unassign from the fulfillment methods. */\n  unassignTags?: Tags;\n}\n\nexport interface BulkUpdateFulfillmentMethodTagsByFilterResponse {\n  /**\n   * Job ID. Pass this ID to Get Async Job ([SDK](https://dev.wix.com/docs/sdk/backend-modules/async-jobs/get-async-job) | [REST](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job)) to track the job's status.\n   * @format GUID\n   */\n  jobId?: string;\n}\n\n/** Encapsulates all details written to the Greyhound topic when a site's properties are updated. */\nexport interface SitePropertiesNotification {\n  /** The site ID for which this update notification applies. */\n  metasiteId?: string;\n  /** The actual update event. */\n  event?: SitePropertiesEvent;\n  /**\n   * A convenience set of mappings from the MetaSite ID to its constituent services.\n   * @maxSize 500\n   */\n  translations?: Translation[];\n  /** Context of the notification */\n  changeContext?: ChangeContext;\n}\n\n/** The actual update event for a particular notification. */\nexport interface SitePropertiesEvent {\n  /** Version of the site's properties represented by this update. */\n  version?: number;\n  /** Set of properties that were updated - corresponds to the fields in \"properties\". */\n  fields?: string[];\n  /** Updated properties. */\n  properties?: Properties;\n}\n\nexport interface Properties {\n  /** Site categories. */\n  categories?: Categories;\n  /** Site locale. */\n  locale?: Locale;\n  /**\n   * Site language.\n   *\n   * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.\n   */\n  language?: string | null;\n  /**\n   * Site currency format used to bill customers.\n   *\n   * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.\n   */\n  paymentCurrency?: string | null;\n  /** Timezone in `America/New_York` format. */\n  timeZone?: string | null;\n  /** Email address. */\n  email?: string | null;\n  /** Phone number. */\n  phone?: string | null;\n  /** Fax number. */\n  fax?: string | null;\n  /** Address. */\n  address?: Address;\n  /** Site display name. */\n  siteDisplayName?: string | null;\n  /** Business name. */\n  businessName?: string | null;\n  /** Path to the site's logo in Wix Media (without Wix Media base URL). */\n  logo?: string | null;\n  /** Site description. */\n  description?: string | null;\n  /**\n   * Business schedule. Regular and exceptional time periods when the business is open or the service is available.\n   *\n   * __Note:__ Not supported by Wix Bookings.\n   */\n  businessSchedule?: BusinessSchedule;\n  /** Supported languages of a site and the primary language. */\n  multilingual?: Multilingual;\n  /** Cookie policy the Wix user defined for their site (before the site visitor interacts with/limits it). */\n  consentPolicy?: ConsentPolicy;\n  /**\n   * Supported values: `FITNESS SERVICE`, `RESTAURANT`, `BLOG`, `STORE`, `EVENT`, `UNKNOWN`.\n   *\n   * Site business type.\n   */\n  businessConfig?: string | null;\n  /** External site URL that uses Wix as its headless business solution. */\n  externalSiteUrl?: string | null;\n  /** Track clicks analytics. */\n  trackClicksAnalytics?: boolean;\n  /**\n   * Company ID issued to the business by local authorities. Appears on invoices and price quotes.\n   * @maxLength 50\n   */\n  companyId?: string | null;\n}\n\nexport interface Categories {\n  /** Primary site category. */\n  primary?: string;\n  /**\n   * Secondary site category.\n   * @maxSize 50\n   */\n  secondary?: string[];\n  /** Business Term Id */\n  businessTermId?: string | null;\n}\n\nexport interface Locale {\n  /** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */\n  languageCode?: string;\n  /** Two-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format. */\n  country?: string;\n}\n\nexport interface Address {\n  /** Street name. */\n  street?: string;\n  /** City name. */\n  city?: string;\n  /** Two-letter country code in an [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format. */\n  country?: string;\n  /** State. */\n  state?: string;\n  /**\n   * Zip or postal code.\n   * @maxLength 20\n   */\n  zip?: string;\n  /** Extra information to be displayed in the address. */\n  hint?: AddressHint;\n  /** Whether this address represents a physical location. */\n  isPhysical?: boolean;\n  /** Google-formatted version of this address. */\n  googleFormattedAddress?: string;\n  /** Street number. */\n  streetNumber?: string;\n  /** Apartment number. */\n  apartmentNumber?: string;\n  /** Geographic coordinates of location. */\n  coordinates?: GeoCoordinates;\n}\n\n/**\n * Extra information on displayed addresses.\n * This is used for display purposes. Used to add additional data about the address, such as \"In the passage\".\n * Free text. In addition, the user can state where to display the additional description - before, after, or instead of the address string.\n */\nexport interface AddressHint {\n  /** Extra text displayed next to, or instead of, the actual address. */\n  text?: string;\n  /** Where the extra text should be displayed. */\n  placement?: PlacementTypeWithLiterals;\n}\n\n/** Where the extra text should be displayed: before, after or instead of the actual address. */\nexport enum PlacementType {\n  BEFORE = 'BEFORE',\n  AFTER = 'AFTER',\n  REPLACE = 'REPLACE',\n}\n\n/** @enumType */\nexport type PlacementTypeWithLiterals =\n  | PlacementType\n  | 'BEFORE'\n  | 'AFTER'\n  | 'REPLACE';\n\n/** Geocoordinates for a particular address. */\nexport interface GeoCoordinates {\n  /** Latitude of the location. Must be between -90 and 90. */\n  latitude?: number;\n  /** Longitude of the location. Must be between -180 and 180. */\n  longitude?: number;\n}\n\n/** Business schedule. Regular and exceptional time periods when the business is open or the service is available. */\nexport interface BusinessSchedule {\n  /**\n   * Weekly recurring time periods when the business is regularly open or the service is available. Limited to 100 time periods.\n   * @maxSize 100\n   */\n  periods?: TimePeriod[];\n  /**\n   * Exceptions to the business's regular hours. The business can be open or closed during the exception.\n   * @maxSize 100\n   */\n  specialHourPeriod?: SpecialHourPeriod[];\n}\n\n/** Weekly recurring time periods when the business is regularly open or the service is available. */\nexport interface TimePeriod {\n  /** Day of the week the period starts on. */\n  openDay?: DayOfWeekWithLiterals;\n  /**\n   * Time the period starts in 24-hour [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) extended format. Valid values are `00:00` to `24:00`, where `24:00` represents\n   * midnight at the end of the specified day.\n   */\n  openTime?: string;\n  /** Day of the week the period ends on. */\n  closeDay?: DayOfWeekWithLiterals;\n  /**\n   * Time the period ends in 24-hour [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) extended format. Valid values are `00:00` to `24:00`, where `24:00` represents\n   * midnight at the end of the specified day.\n   *\n   * __Note:__ If `openDay` and `closeDay` specify the same day of the week `closeTime` must be later than `openTime`.\n   */\n  closeTime?: string;\n}\n\n/** Enumerates the days of the week. */\nexport enum DayOfWeek {\n  MONDAY = 'MONDAY',\n  TUESDAY = 'TUESDAY',\n  WEDNESDAY = 'WEDNESDAY',\n  THURSDAY = 'THURSDAY',\n  FRIDAY = 'FRIDAY',\n  SATURDAY = 'SATURDAY',\n  SUNDAY = 'SUNDAY',\n}\n\n/** @enumType */\nexport type DayOfWeekWithLiterals =\n  | DayOfWeek\n  | 'MONDAY'\n  | 'TUESDAY'\n  | 'WEDNESDAY'\n  | 'THURSDAY'\n  | 'FRIDAY'\n  | 'SATURDAY'\n  | 'SUNDAY';\n\n/** Exception to the business's regular hours. The business can be open or closed during the exception. */\nexport interface SpecialHourPeriod {\n  /** Start date and time of the exception in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format and [Coordinated Universal Time (UTC)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). */\n  startDate?: string;\n  /** End date and time of the exception in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format and [Coordinated Universal Time (UTC)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). */\n  endDate?: string;\n  /**\n   * Whether the business is closed (or the service is not available) during the exception.\n   *\n   * Default: `true`.\n   */\n  isClosed?: boolean;\n  /** Additional info about the exception. For example, \"We close earlier on New Year's Eve.\" */\n  comment?: string;\n}\n\nexport interface Multilingual {\n  /**\n   * Supported languages list.\n   * @maxSize 200\n   */\n  supportedLanguages?: SupportedLanguage[];\n  /** Whether to redirect to user language. */\n  autoRedirect?: boolean;\n}\n\nexport interface SupportedLanguage {\n  /** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */\n  languageCode?: string;\n  /** Locale. */\n  locale?: Locale;\n  /** Whether the supported language is the primary language for the site. */\n  isPrimary?: boolean;\n  /** Language icon. */\n  countryCode?: string;\n  /** How the language will be resolved. For internal use. */\n  resolutionMethod?: ResolutionMethodWithLiterals;\n  /** Whether the supported language is the primary language for site visitors. */\n  isVisitorPrimary?: boolean | null;\n}\n\nexport enum ResolutionMethod {\n  QUERY_PARAM = 'QUERY_PARAM',\n  SUBDOMAIN = 'SUBDOMAIN',\n  SUBDIRECTORY = 'SUBDIRECTORY',\n}\n\n/** @enumType */\nexport type ResolutionMethodWithLiterals =\n  | ResolutionMethod\n  | 'QUERY_PARAM'\n  | 'SUBDOMAIN'\n  | 'SUBDIRECTORY';\n\nexport interface ConsentPolicy {\n  /** Whether the site uses cookies that are essential to site operation. Always `true`. */\n  essential?: boolean | null;\n  /** Whether the site uses cookies that affect site performance and other functional measurements. */\n  functional?: boolean | null;\n  /** Whether the site uses cookies that collect analytics about how the site is used (in order to improve it). */\n  analytics?: boolean | null;\n  /** Whether the site uses cookies that collect information allowing better customization of the experience for a current visitor. */\n  advertising?: boolean | null;\n  /** CCPA compliance flag. */\n  dataToThirdParty?: boolean | null;\n}\n\n/** A single mapping from the MetaSite ID to a particular service. */\nexport interface Translation {\n  /** The service type. */\n  serviceType?: string;\n  /** The application definition ID; this only applies to services of type ThirdPartyApps. */\n  appDefId?: string;\n  /** The instance ID of the service. */\n  instanceId?: string;\n}\n\nexport interface ChangeContext extends ChangeContextPayloadOneOf {\n  /** Properties were updated. */\n  propertiesChange?: PropertiesChange;\n  /** Default properties were created on site creation. */\n  siteCreated?: SiteCreated;\n  /** Properties were cloned on site cloning. */\n  siteCloned?: SiteCloned;\n}\n\n/** @oneof */\nexport interface ChangeContextPayloadOneOf {\n  /** Properties were updated. */\n  propertiesChange?: PropertiesChange;\n  /** Default properties were created on site creation. */\n  siteCreated?: SiteCreated;\n  /** Properties were cloned on site cloning. */\n  siteCloned?: SiteCloned;\n}\n\nexport interface PropertiesChange {}\n\nexport interface SiteCreated {\n  /** Origin template site id. */\n  originTemplateId?: string | null;\n}\n\nexport interface SiteCloned {\n  /** Origin site id. */\n  originMetaSiteId?: string;\n}\n\nexport interface Empty {}\n\nexport interface AccountInfo {\n  /**\n   * ID of the Wix account associated with the event.\n   * @format GUID\n   */\n  accountId?: string | null;\n  /**\n   * ID of the parent Wix account. Only included when accountId belongs to a child account.\n   * @format GUID\n   */\n  parentAccountId?: string | null;\n  /**\n   * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.\n   * @format GUID\n   */\n  siteId?: string | null;\n}\n\n/** @docsIgnore */\nexport type BulkUpdateFulfillmentMethodTagsApplicationErrors = {\n  code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n  description?: string;\n  data?: Record<string, any>;\n};\n/** @docsIgnore */\nexport type BulkUpdateFulfillmentMethodTagsByFilterApplicationErrors = {\n  code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n  description?: string;\n  data?: Record<string, any>;\n};\n","import * as ambassadorWixRestaurantsV1FulfillmentMethod from './restaurants-v1-fulfillment-method-fulfillment-methods.http.js';\nimport * as ambassadorWixRestaurantsV1FulfillmentMethodTypes from './restaurants-v1-fulfillment-method-fulfillment-methods.types.js';\nimport * as ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes from './restaurants-v1-fulfillment-method-fulfillment-methods.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 createFulfillmentMethod(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.CreateFulfillmentMethodRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.CreateFulfillmentMethodRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.CreateFulfillmentMethodResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.CreateFulfillmentMethodResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.createFulfillmentMethod(\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/fulfillment-methods',\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 bulkCreateFulfillmentMethods(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.BulkCreateFulfillmentMethodsRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.BulkCreateFulfillmentMethodsRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.BulkCreateFulfillmentMethodsResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.BulkCreateFulfillmentMethodsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.bulkCreateFulfillmentMethods(\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/bulk/fulfillment-methods/create',\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 getFulfillmentMethod(): __PublicMethodMetaInfo<\n  'GET',\n  { fulfillmentMethodId: string },\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.GetFulfillmentMethodRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.GetFulfillmentMethodRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.GetFulfillmentMethodResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.GetFulfillmentMethodResponse\n> {\n  const payload = { fulfillmentMethodId: ':fulfillmentMethodId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.getFulfillmentMethod(payload);\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/fulfillment-methods/{fulfillmentMethodId}',\n    pathParams: { fulfillmentMethodId: 'fulfillmentMethodId' },\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 updateFulfillmentMethod(): __PublicMethodMetaInfo<\n  'PATCH',\n  { fulfillmentMethodId: string },\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.UpdateFulfillmentMethodRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.UpdateFulfillmentMethodRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.UpdateFulfillmentMethodResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.UpdateFulfillmentMethodResponse\n> {\n  const payload = { fulfillmentMethod: { id: ':fulfillmentMethodId' } } as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.updateFulfillmentMethod(\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: 'PATCH',\n    path: '/v1/fulfillment-methods/{fulfillmentMethod.id}',\n    pathParams: { fulfillmentMethodId: 'fulfillmentMethodId' },\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 deleteFulfillmentMethod(): __PublicMethodMetaInfo<\n  'DELETE',\n  { fulfillmentMethodId: string },\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.DeleteFulfillmentMethodRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.DeleteFulfillmentMethodRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.DeleteFulfillmentMethodResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.DeleteFulfillmentMethodResponse\n> {\n  const payload = { fulfillmentMethodId: ':fulfillmentMethodId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.deleteFulfillmentMethod(\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: 'DELETE',\n    path: '/v1/fulfillment-methods/{fulfillmentMethodId}',\n    pathParams: { fulfillmentMethodId: 'fulfillmentMethodId' },\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 queryFulfillmentMethods(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.QueryFulfillmentMethodsRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.QueryFulfillmentMethodsRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.QueryFulfillmentMethodsResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.QueryFulfillmentMethodsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.queryFulfillmentMethods(\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/fulfillment-methods/query',\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 listFulfillmentMethods(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.ListFulfillmentMethodsRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.ListFulfillmentMethodsRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.ListFulfillmentMethodsResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.ListFulfillmentMethodsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.listFulfillmentMethods(payload);\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/fulfillment-methods',\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 listAvailableFulfillmentMethodsForAddress(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.ListAvailableFulfillmentMethodsForAddressRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.ListAvailableFulfillmentMethodsForAddressRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.ListAvailableFulfillmentMethodsForAddressResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.ListAvailableFulfillmentMethodsForAddressResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.listAvailableFulfillmentMethodsForAddress(\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/fulfillment-methods/available-for-address',\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 getAccumulatedFulfillmentMethodsAvailability(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.GetAccumulatedFulfillmentMethodsAvailabilityRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.GetAccumulatedFulfillmentMethodsAvailabilityRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.GetAccumulatedFulfillmentMethodsAvailabilityResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.GetAccumulatedFulfillmentMethodsAvailabilityResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.getAccumulatedFulfillmentMethodsAvailability(\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/fulfillment-methods/accumulated-availability',\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 getCombinedMethodAvailability(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.GetCombinedMethodAvailabilityRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.GetCombinedMethodAvailabilityRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.GetCombinedMethodAvailabilityResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.GetCombinedMethodAvailabilityResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.getCombinedMethodAvailability(\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/fulfillment-methods/combined-availability',\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 getAggregatedMethodAvailability(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.GetAggregatedMethodAvailabilityRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.GetAggregatedMethodAvailabilityRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.GetAggregatedMethodAvailabilityResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.GetAggregatedMethodAvailabilityResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.getAggregatedMethodAvailability(\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/fulfillment-methods/aggregated-availability',\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 bulkUpdateFulfillmentMethodTags(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.BulkUpdateFulfillmentMethodTagsRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.BulkUpdateFulfillmentMethodTagsRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.BulkUpdateFulfillmentMethodTagsResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.BulkUpdateFulfillmentMethodTagsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.bulkUpdateFulfillmentMethodTags(\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/bulk/fulfillment-methods/update-tags',\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 bulkUpdateFulfillmentMethodTagsByFilter(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.BulkUpdateFulfillmentMethodTagsByFilterRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.BulkUpdateFulfillmentMethodTagsByFilterRequest,\n  ambassadorWixRestaurantsV1FulfillmentMethodUniversalTypes.BulkUpdateFulfillmentMethodTagsByFilterResponse,\n  ambassadorWixRestaurantsV1FulfillmentMethodTypes.BulkUpdateFulfillmentMethodTagsByFilterResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1FulfillmentMethod.bulkUpdateFulfillmentMethodTagsByFilter(\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/bulk/fulfillment-methods/update-tags-by-filter',\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 {\n  FulfillmentMethod as FulfillmentMethodOriginal,\n  FulfillmentMethodMethodOptionsOneOf as FulfillmentMethodMethodOptionsOneOfOriginal,\n  FulfillmentMethodType as FulfillmentMethodTypeOriginal,\n  FulfillmentMethodTypeWithLiterals as FulfillmentMethodTypeWithLiteralsOriginal,\n  PickupInfo as PickupInfoOriginal,\n  CommonAddress as CommonAddressOriginal,\n  CommonAddressStreetOneOf as CommonAddressStreetOneOfOriginal,\n  StreetAddress as StreetAddressOriginal,\n  AddressLocation as AddressLocationOriginal,\n  Subdivision as SubdivisionOriginal,\n  SubdivisionType as SubdivisionTypeOriginal,\n  SubdivisionTypeWithLiterals as SubdivisionTypeWithLiteralsOriginal,\n  DeliveryInfo as DeliveryInfoOriginal,\n  DeliveryArea as DeliveryAreaOriginal,\n  DeliveryAreaAreaOptionsOneOf as DeliveryAreaAreaOptionsOneOfOriginal,\n  Type as TypeOriginal,\n  TypeWithLiterals as TypeWithLiteralsOriginal,\n  Radius as RadiusOriginal,\n  Unit as UnitOriginal,\n  UnitWithLiterals as UnitWithLiteralsOriginal,\n  PostalCode as PostalCodeOriginal,\n  CustomArea as CustomAreaOriginal,\n  Availability as AvailabilityOriginal,\n  DayOfWeekAvailability as DayOfWeekAvailabilityOriginal,\n  EntitiesDayOfWeek as EntitiesDayOfWeekOriginal,\n  EntitiesDayOfWeekWithLiterals as EntitiesDayOfWeekWithLiteralsOriginal,\n  TimeOfDayRange as TimeOfDayRangeOriginal,\n  TimeOfDay as TimeOfDayOriginal,\n  ExtendedFields as ExtendedFieldsOriginal,\n  Tags as TagsOriginal,\n  TagList as TagListOriginal,\n  DomainEvent as DomainEventOriginal,\n  DomainEventBodyOneOf as DomainEventBodyOneOfOriginal,\n  EntityCreatedEvent as EntityCreatedEventOriginal,\n  RestoreInfo as RestoreInfoOriginal,\n  EntityUpdatedEvent as EntityUpdatedEventOriginal,\n  EntityDeletedEvent as EntityDeletedEventOriginal,\n  ActionEvent as ActionEventOriginal,\n  MessageEnvelope as MessageEnvelopeOriginal,\n  IdentificationData as IdentificationDataOriginal,\n  IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal,\n  WebhookIdentityType as WebhookIdentityTypeOriginal,\n  WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal,\n  DineInInfo as DineInInfoOriginal,\n  DineInInfoAdditionalInfoLabelOptionsOneOf as DineInInfoAdditionalInfoLabelOptionsOneOfOriginal,\n  AdditionalInfoLabel as AdditionalInfoLabelOriginal,\n  AdditionalInfoLabelWithLiterals as AdditionalInfoLabelWithLiteralsOriginal,\n  CustomConfig as CustomConfigOriginal,\n  InvalidateCache as InvalidateCacheOriginal,\n  InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal,\n  App as AppOriginal,\n  Page as PageOriginal,\n  URI as URIOriginal,\n  File as FileOriginal,\n  CustomTag as CustomTagOriginal,\n  Pages as PagesOriginal,\n  URIs as URIsOriginal,\n  CreateFulfillmentMethodRequest as CreateFulfillmentMethodRequestOriginal,\n  CreateFulfillmentMethodResponse as CreateFulfillmentMethodResponseOriginal,\n  BulkCreateFulfillmentMethodsRequest as BulkCreateFulfillmentMethodsRequestOriginal,\n  BulkCreateFulfillmentMethodsResponse as BulkCreateFulfillmentMethodsResponseOriginal,\n  BulkCreateFulfillmentMethodResult as BulkCreateFulfillmentMethodResultOriginal,\n  ItemMetadata as ItemMetadataOriginal,\n  ApplicationError as ApplicationErrorOriginal,\n  BulkActionMetadata as BulkActionMetadataOriginal,\n  GetFulfillmentMethodRequest as GetFulfillmentMethodRequestOriginal,\n  GetFulfillmentMethodResponse as GetFulfillmentMethodResponseOriginal,\n  UpdateFulfillmentMethodRequest as UpdateFulfillmentMethodRequestOriginal,\n  UpdateFulfillmentMethodResponse as UpdateFulfillmentMethodResponseOriginal,\n  DeleteFulfillmentMethodRequest as DeleteFulfillmentMethodRequestOriginal,\n  DeleteFulfillmentMethodResponse as DeleteFulfillmentMethodResponseOriginal,\n  QueryFulfillmentMethodsRequest as QueryFulfillmentMethodsRequestOriginal,\n  CursorQuery as CursorQueryOriginal,\n  CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal,\n  Sorting as SortingOriginal,\n  SortOrder as SortOrderOriginal,\n  SortOrderWithLiterals as SortOrderWithLiteralsOriginal,\n  CursorPaging as CursorPagingOriginal,\n  QueryFulfillmentMethodsResponse as QueryFulfillmentMethodsResponseOriginal,\n  CursorPagingMetadata as CursorPagingMetadataOriginal,\n  Cursors as CursorsOriginal,\n  ListFulfillmentMethodsRequest as ListFulfillmentMethodsRequestOriginal,\n  ListFulfillmentMethodsResponse as ListFulfillmentMethodsResponseOriginal,\n  ListAvailableFulfillmentMethodsForAddressRequest as ListAvailableFulfillmentMethodsForAddressRequestOriginal,\n  ListAvailableFulfillmentMethodsForAddressResponse as ListAvailableFulfillmentMethodsForAddressResponseOriginal,\n  ListActiveFulfillmentMethodsRequest as ListActiveFulfillmentMethodsRequestOriginal,\n  ListActiveFulfillmentMethodsResponse as ListActiveFulfillmentMethodsResponseOriginal,\n  GetAccumulatedFulfillmentMethodsAvailabilityRequest as GetAccumulatedFulfillmentMethodsAvailabilityRequestOriginal,\n  GetAccumulatedFulfillmentMethodsAvailabilityResponse as GetAccumulatedFulfillmentMethodsAvailabilityResponseOriginal,\n  GetCombinedMethodAvailabilityRequest as GetCombinedMethodAvailabilityRequestOriginal,\n  GetCombinedMethodAvailabilityResponse as GetCombinedMethodAvailabilityResponseOriginal,\n  GetAggregatedMethodAvailabilityRequest as GetAggregatedMethodAvailabilityRequestOriginal,\n  GetAggregatedMethodAvailabilityResponse as GetAggregatedMethodAvailabilityResponseOriginal,\n  BulkUpdateFulfillmentMethodTagsRequest as BulkUpdateFulfillmentMethodTagsRequestOriginal,\n  BulkUpdateFulfillmentMethodTagsResponse as BulkUpdateFulfillmentMethodTagsResponseOriginal,\n  CommonItemMetadata as CommonItemMetadataOriginal,\n  BulkUpdateFulfillmentMethodTagsResult as BulkUpdateFulfillmentMethodTagsResultOriginal,\n  CommonBulkActionMetadata as CommonBulkActionMetadataOriginal,\n  BulkUpdateFulfillmentMethodTagsByFilterRequest as BulkUpdateFulfillmentMethodTagsByFilterRequestOriginal,\n  BulkUpdateFulfillmentMethodTagsByFilterResponse as BulkUpdateFulfillmentMethodTagsByFilterResponseOriginal,\n  SitePropertiesNotification as SitePropertiesNotificationOriginal,\n  SitePropertiesEvent as SitePropertiesEventOriginal,\n  Properties as PropertiesOriginal,\n  Categories as CategoriesOriginal,\n  Locale as LocaleOriginal,\n  Address as AddressOriginal,\n  AddressHint as AddressHintOriginal,\n  PlacementType as PlacementTypeOriginal,\n  PlacementTypeWithLiterals as PlacementTypeWithLiteralsOriginal,\n  GeoCoordinates as GeoCoordinatesOriginal,\n  BusinessSchedule as BusinessScheduleOriginal,\n  TimePeriod as TimePeriodOriginal,\n  DayOfWeek as DayOfWeekOriginal,\n  DayOfWeekWithLiterals as DayOfWeekWithLiteralsOriginal,\n  SpecialHourPeriod as SpecialHourPeriodOriginal,\n  Multilingual as MultilingualOriginal,\n  SupportedLanguage as SupportedLanguageOriginal,\n  ResolutionMethod as ResolutionMethodOriginal,\n  ResolutionMethodWithLiterals as ResolutionMethodWithLiteralsOriginal,\n  ConsentPolicy as ConsentPolicyOriginal,\n  Translation as TranslationOriginal,\n  ChangeContext as ChangeContextOriginal,\n  ChangeContextPayloadOneOf as ChangeContextPayloadOneOfOriginal,\n  PropertiesChange as PropertiesChangeOriginal,\n  SiteCreated as SiteCreatedOriginal,\n  SiteCloned as SiteClonedOriginal,\n  Empty as EmptyOriginal,\n  AccountInfo as AccountInfoOriginal,\n  BulkUpdateFulfillmentMethodTagsApplicationErrors as BulkUpdateFulfillmentMethodTagsApplicationErrorsOriginal,\n  BulkUpdateFulfillmentMethodTagsByFilterApplicationErrors as BulkUpdateFulfillmentMethodTagsByFilterApplicationErrorsOriginal,\n} from './restaurants-v1-fulfillment-method-fulfillment-methods.types.js';\n"],"mappings":"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","names":["payload","FulfillmentMethodType","SubdivisionType","Type","Unit","EntitiesDayOfWeek","WebhookIdentityType","AdditionalInfoLabel","SortOrder","PlacementType","DayOfWeek","ResolutionMethod","createFulfillmentMethod","bulkCreateFulfillmentMethods","getFulfillmentMethod","updateFulfillmentMethod","deleteFulfillmentMethod","queryFulfillmentMethods","listFulfillmentMethods","listAvailableFulfillmentMethodsForAddress","getAccumulatedFulfillmentMethodsAvailability","getCombinedMethodAvailability","getAggregatedMethodAvailability","bulkUpdateFulfillmentMethodTags","bulkUpdateFulfillmentMethodTagsByFilter"]}