{"version":3,"sources":["../../../src/restaurants-v1-operation-group-operation-groups.http.ts","../../../src/restaurants-v1-operation-group-operation-groups.types.ts","../../../src/restaurants-v1-operation-group-operation-groups.meta.ts"],"sourcesContent":["import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { 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 resolveWixRestaurantsV1OperationGroupServiceUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    'dev._base_domain_': [\n      {\n        srcPath: '/_api/restaurants-operation-group',\n        destPath: '',\n      },\n    ],\n    'editor._base_domain_': [\n      {\n        srcPath: '/_api/restaurants-operation-group',\n        destPath: '',\n      },\n    ],\n    'blocks._base_domain_': [\n      {\n        srcPath: '/_api/restaurants-operation-group',\n        destPath: '',\n      },\n    ],\n    'create.editorx': [\n      {\n        srcPath: '/_api/restaurants-operation-group',\n        destPath: '',\n      },\n    ],\n    _: [\n      {\n        srcPath: '/_api/restaurants-operation-group',\n        destPath: '',\n      },\n      {\n        srcPath: '/restaurants/v1/bulk/operation-groups',\n        destPath: '/v1/bulk/operation-groups',\n      },\n      {\n        srcPath: '/restaurants/v1/operation-groups',\n        destPath: '/v1/operation-groups',\n      },\n    ],\n    'apps._base_domain_': [\n      {\n        srcPath: '/_api/restaurants-operation-group',\n        destPath: '',\n      },\n    ],\n    '*.dev.wix-code.com': [\n      {\n        srcPath: '/_api/restaurants-operation-group',\n        destPath: '',\n      },\n      {\n        srcPath: '/restaurants/v1/bulk/operation-groups',\n        destPath: '/v1/bulk/operation-groups',\n      },\n      {\n        srcPath: '/restaurants/v1/operation-groups',\n        destPath: '/v1/operation-groups',\n      },\n    ],\n    'manage._base_domain_': [\n      {\n        srcPath: '/_api/restaurants-operation-group',\n        destPath: '',\n      },\n    ],\n    'www.wixapis.com': [\n      {\n        srcPath: '/restaurants/v1/operation-groups',\n        destPath: '/v1/operation-groups',\n      },\n      {\n        srcPath: '/restaurants/v1/bulk/operation-groups',\n        destPath: '/v1/bulk/operation-groups',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_restaurants_operation-groups';\n\n/** Creates a OperationGroup. */\nexport function createOperationGroup(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __createOperationGroup({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKTimestampToRESTTimestamp,\n        paths: [\n          { path: 'operationGroup.createdDate' },\n          { path: 'operationGroup.updatedDate' },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.CreateOperationGroup',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/operation-groups',\n        data: serializedData,\n        host,\n      }),\n      data: serializedData,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'operationGroup.createdDate' },\n              { path: 'operationGroup.updatedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __createOperationGroup;\n}\n\n/** Retrieves a OperationGroup. */\nexport function getOperationGroup(payload: object): RequestOptionsFactory<any> {\n  function __getOperationGroup({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'GET' as any,\n      methodFqn: 'wix.restaurants.v1.OperationGroupService.GetOperationGroup',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/operation-groups/{operationGroupId}',\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: 'operationGroup.createdDate' },\n              { path: 'operationGroup.updatedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __getOperationGroup;\n}\n\n/**\n * Updates a OperationGroup.\n *\n *\n * Each time the OperationGroup is updated,\n * `revision` increments by 1.\n * The current `revision` must be passed when updating the OperationGroup.\n * This ensures you're working with the latest OperationGroup\n * and prevents unintended overwrites.\n */\nexport function updateOperationGroup(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __updateOperationGroup({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKFieldMaskToRESTFieldMask,\n        paths: [{ path: 'fieldMask' }],\n      },\n      {\n        transformFn: transformSDKTimestampToRESTTimestamp,\n        paths: [\n          { path: 'operationGroup.createdDate' },\n          { path: 'operationGroup.updatedDate' },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'PATCH' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.UpdateOperationGroup',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/operation-groups/{operationGroup.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: 'operationGroup.createdDate' },\n              { path: 'operationGroup.updatedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __updateOperationGroup;\n}\n\n/**\n * Deletes a OperationGroup.\n *\n *\n * Deleting a OperationGroup permanently removes them from the OperationGroup List.\n */\nexport function deleteOperationGroup(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __deleteOperationGroup({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'DELETE' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.DeleteOperationGroup',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/operation-groups/{operationGroupId}',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __deleteOperationGroup;\n}\n\n/** Retrieves a list of OperationGroups. */\nexport function queryOperationGroups(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __queryOperationGroups({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'GET' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.QueryOperationGroups',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/operation-groups/query',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload, true),\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'operationGroups.createdDate' },\n              { path: 'operationGroups.updatedDate' },\n            ],\n          },\n        ]),\n      fallback: [\n        {\n          method: 'POST' as any,\n          url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n            protoPath: '/v1/operation-groups/query',\n            data: payload,\n            host,\n          }),\n          data: payload,\n        },\n      ],\n    };\n\n    return metadata;\n  }\n\n  return __queryOperationGroups;\n}\n\n/** Create multiple OperationGroups in a single request. Works synchronously. */\nexport function bulkCreateOperationGroups(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkCreateOperationGroups({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKTimestampToRESTTimestamp,\n        paths: [\n          { path: 'operationGroups.createdDate' },\n          { path: 'operationGroups.updatedDate' },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.BulkCreateOperationGroups',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/bulk/operation-groups/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.item.createdDate' },\n              { path: 'results.item.updatedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __bulkCreateOperationGroups;\n}\n\n/** Update multiple OperationGroups in a single request. Works synchronously. */\nexport function bulkUpdateOperationGroups(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkUpdateOperationGroups({ host }: any) {\n    const serializedData = transformPaths(payload, [\n      {\n        transformFn: transformSDKFieldMaskToRESTFieldMask,\n        paths: [{ path: 'operationGroups.fieldMask' }],\n      },\n      {\n        transformFn: transformSDKTimestampToRESTTimestamp,\n        paths: [\n          { path: 'operationGroups.operationGroup.createdDate' },\n          { path: 'operationGroups.operationGroup.updatedDate' },\n        ],\n      },\n    ]);\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroups',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/bulk/operation-groups/update',\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.item.createdDate' },\n              { path: 'results.item.updatedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __bulkUpdateOperationGroups;\n}\n\n/** Delete multiple OperationGroups in a single request. Works synchronously. */\nexport function bulkDeleteOperationGroups(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkDeleteOperationGroups({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.BulkDeleteOperationGroups',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/bulk/operation-groups/delete',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __bulkDeleteOperationGroups;\n}\n\n/**\n * Synchronously update tags on multiple operation groups.\n * If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.\n */\nexport function bulkUpdateOperationGroupTags(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkUpdateOperationGroupTags({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroupTags',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/bulk/operation-groups/update-tags',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __bulkUpdateOperationGroupTags;\n}\n\n/**\n * Asynchronously update tags on multiple operation groups according to the specified filter.\n * If a filter isn't specified, this method updates all operation groups.\n * If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.\n */\nexport function bulkUpdateOperationGroupTagsByFilter(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkUpdateOperationGroupTagsByFilter({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.v1.operation_group',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.restaurants.v1.OperationGroupService.BulkUpdateOperationGroupTagsByFilter',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixRestaurantsV1OperationGroupServiceUrl({\n        protoPath: '/v1/bulk/operation-groups/update-tags-by-filter',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __bulkUpdateOperationGroupTagsByFilter;\n}\n","/**\n * An operation group is a aggregation of operations that each one of them point to a different location.\n * Each operation group has different ordering page.\n */\nexport interface OperationGroup {\n  /**\n   * OperationsGroup ID.\n   * @format GUID\n   * @readonly\n   */\n  id?: string | null;\n  /**\n   * Revision number, which increments by 1 each time the OperationsGroup is updated.\n   * To prevent conflicting changes,\n   * the current revision must be passed when updating the OperationsGroup.\n   *\n   * Ignored when creating a OperationsGroup.\n   * @readonly\n   */\n  revision?: string | null;\n  /**\n   * Date and time the OperationsGroup was created.\n   * @readonly\n   */\n  createdDate?: Date | null;\n  /**\n   * Date and time the OperationsGroup was last updated.\n   * @readonly\n   */\n  updatedDate?: Date | null;\n  /**\n   * The name of the operations group\n   * @minLength 1\n   * @maxLength 500\n   */\n  name?: string | null;\n  /** Data Extensions */\n  extendedFields?: ExtendedFields;\n  /** Tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) used to classify and sort different types of operation groups. */\n  tags?: Tags;\n}\n\nexport interface Image {\n  /**\n   * Image ID.\n   * @maxLength 100\n   */\n  id?: string;\n  /**\n   * Image URL.\n   * @maxLength 200\n   */\n  url?: string;\n  /**\n   * Image height in pixels.\n   * @min 1\n   */\n  height?: number;\n  /**\n   * Image width in pixels.\n   * @min 1\n   */\n  width?: number;\n  /**\n   * Image alt text.\n   * @maxLength 1000\n   */\n  altText?: string | null;\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 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\nexport interface CreateOperationGroupRequest {\n  /** OperationGroup to be created. */\n  operationGroup: OperationGroup;\n}\n\nexport interface CreateOperationGroupResponse {\n  /** The created OperationGroup. */\n  operationGroup?: OperationGroup;\n}\n\nexport interface GetOperationGroupRequest {\n  /**\n   * ID of the OperationGroup to retrieve.\n   * @format GUID\n   */\n  operationGroupId: string;\n}\n\nexport interface GetOperationGroupResponse {\n  /** The requested OperationGroup. */\n  operationGroup?: OperationGroup;\n}\n\nexport interface UpdateOperationGroupRequest {\n  /** OperationGroup to be updated, may be partial. */\n  operationGroup: OperationGroup;\n}\n\nexport interface UpdateOperationGroupResponse {\n  /** Updated OperationGroup. */\n  operationGroup?: OperationGroup;\n}\n\nexport interface DeleteOperationGroupRequest {\n  /**\n   * Id of the OperationGroup to delete.\n   * @format GUID\n   */\n  operationGroupId: string;\n}\n\nexport interface DeleteOperationGroupResponse {}\n\nexport interface QueryOperationGroupsRequest {\n  /** WQL expression. */\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 5\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 512\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 QueryOperationGroupsResponse {\n  /** List of OperationGroups. */\n  operationGroups?: OperationGroup[];\n  /** Paging metadata */\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 BulkCreateOperationGroupsRequest {\n  /**\n   * List of OperationGroups to be created\n   * @minSize 1\n   * @maxSize 100\n   */\n  operationGroups: OperationGroup[];\n  /** set to `true` if you wish to receive back the created OperationGroups in the response */\n  returnEntity?: boolean;\n}\n\nexport interface BulkCreateOperationGroupsResponse {\n  /**\n   * List of the bulk create operation results including the OperationGroups and metadata.\n   * @minSize 1\n   * @maxSize 100\n   */\n  results?: BulkOperationGroupResult[];\n  /** Metadata regarding the bulk create operation */\n  bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface ItemMetadata {\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 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 BulkOperationGroupResult {\n  /** Metadata regarding the specific single create operation */\n  itemMetadata?: ItemMetadata;\n  /** Only exists if `returnEntity` was set to true in the request */\n  item?: OperationGroup;\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 BulkUpdateOperationGroupsRequest {\n  /**\n   * List of OperationGroups to be updated.\n   * @minSize 1\n   * @maxSize 100\n   */\n  operationGroups: MaskedOperationGroup[];\n  /** set to `true` if you wish to receive back the updated OperationGroups in the response */\n  returnEntity?: boolean;\n}\n\nexport interface MaskedOperationGroup {\n  /** OperationGroup to be updated, may be partial */\n  operationGroup?: OperationGroup;\n}\n\nexport interface BulkUpdateOperationGroupsResponse {\n  /**\n   * Results\n   * @minSize 1\n   * @maxSize 100\n   */\n  results?: BulkUpdateOperationGroupsResponseBulkOperationGroupResult[];\n  /** Metadata regarding the bulk update operation */\n  bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkUpdateOperationGroupsResponseBulkOperationGroupResult {\n  /** Metadata regarding the specific single update operation */\n  itemMetadata?: ItemMetadata;\n  /** Only exists if `returnEntity` was set to true in the request */\n  item?: OperationGroup;\n}\n\nexport interface BulkDeleteOperationGroupsRequest {\n  /**\n   * OperationGroup ids to be deleted\n   * @minSize 1\n   * @maxSize 100\n   * @format GUID\n   */\n  operationGroupIds: string[];\n}\n\nexport interface BulkDeleteOperationGroupsResponse {\n  /**\n   * Results\n   * @minSize 1\n   * @maxSize 100\n   */\n  results?: BulkDeleteOperationGroupsResponseBulkOperationGroupResult[];\n  /** Metadata regarding the bulk delete operation */\n  bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkDeleteOperationGroupsResponseBulkOperationGroupResult {\n  /** Metadata regarding the specific single delete operation */\n  itemMetadata?: ItemMetadata;\n}\n\nexport interface BulkUpdateOperationGroupTagsRequest {\n  /**\n   * IDs of the operation groups to update tags for.\n   * @minSize 1\n   * @maxSize 100\n   * @format GUID\n   */\n  operationGroupIds: string[];\n  /** Tags to assign to the operation groups. */\n  assignTags?: Tags;\n  /** Tags to unassign from the operation groups. */\n  unassignTags?: Tags;\n}\n\nexport interface BulkUpdateOperationGroupTagsResponse {\n  /**\n   * Results of the bulk update.\n   * @minSize 1\n   * @maxSize 100\n   */\n  results?: BulkUpdateOperationGroupTagsResult[];\n  /** Metadata for the bulk update. */\n  bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkUpdateOperationGroupTagsResult {\n  /** Metadata for the updated operation group. */\n  itemMetadata?: ItemMetadata;\n}\n\nexport interface BulkUpdateOperationGroupTagsByFilterRequest {\n  /** Filter that determines which operation groups to update tags for. */\n  filter: Record<string, any> | null;\n  /** Tags to assign to the operation groups. */\n  assignTags?: Tags;\n  /** Tags to unassign from the operation groups. */\n  unassignTags?: Tags;\n}\n\nexport interface BulkUpdateOperationGroupTagsByFilterResponse {\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/** @docsIgnore */\nexport type BulkUpdateOperationGroupTagsApplicationErrors = {\n  code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n  description?: string;\n  data?: Record<string, any>;\n};\n/** @docsIgnore */\nexport type BulkUpdateOperationGroupTagsByFilterApplicationErrors = {\n  code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n  description?: string;\n  data?: Record<string, any>;\n};\n","import * as ambassadorWixRestaurantsV1OperationGroup from './restaurants-v1-operation-group-operation-groups.http.js';\nimport * as ambassadorWixRestaurantsV1OperationGroupTypes from './restaurants-v1-operation-group-operation-groups.types.js';\nimport * as ambassadorWixRestaurantsV1OperationGroupUniversalTypes from './restaurants-v1-operation-group-operation-groups.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 createOperationGroup(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.CreateOperationGroupRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.CreateOperationGroupRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.CreateOperationGroupResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.CreateOperationGroupResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.createOperationGroup(payload);\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/operation-groups',\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 getOperationGroup(): __PublicMethodMetaInfo<\n  'GET',\n  { operationGroupId: string },\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.GetOperationGroupRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.GetOperationGroupRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.GetOperationGroupResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.GetOperationGroupResponse\n> {\n  const payload = { operationGroupId: ':operationGroupId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.getOperationGroup(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/operation-groups/{operationGroupId}',\n    pathParams: { operationGroupId: 'operationGroupId' },\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 updateOperationGroup(): __PublicMethodMetaInfo<\n  'PATCH',\n  { operationGroupId: string },\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.UpdateOperationGroupRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.UpdateOperationGroupRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.UpdateOperationGroupResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.UpdateOperationGroupResponse\n> {\n  const payload = { operationGroup: { id: ':operationGroupId' } } as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.updateOperationGroup(payload);\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/operation-groups/{operationGroup.id}',\n    pathParams: { operationGroupId: 'operationGroupId' },\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 deleteOperationGroup(): __PublicMethodMetaInfo<\n  'DELETE',\n  { operationGroupId: string },\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.DeleteOperationGroupRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.DeleteOperationGroupRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.DeleteOperationGroupResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.DeleteOperationGroupResponse\n> {\n  const payload = { operationGroupId: ':operationGroupId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.deleteOperationGroup(payload);\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/operation-groups/{operationGroupId}',\n    pathParams: { operationGroupId: 'operationGroupId' },\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 queryOperationGroups(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.QueryOperationGroupsRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.QueryOperationGroupsRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.QueryOperationGroupsResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.QueryOperationGroupsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.queryOperationGroups(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/operation-groups/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 bulkCreateOperationGroups(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkCreateOperationGroupsRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkCreateOperationGroupsRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkCreateOperationGroupsResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkCreateOperationGroupsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.bulkCreateOperationGroups(payload);\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/operation-groups/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 bulkUpdateOperationGroups(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkUpdateOperationGroupsRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkUpdateOperationGroupsRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkUpdateOperationGroupsResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkUpdateOperationGroupsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.bulkUpdateOperationGroups(payload);\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/operation-groups/update',\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 bulkDeleteOperationGroups(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkDeleteOperationGroupsRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkDeleteOperationGroupsRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkDeleteOperationGroupsResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkDeleteOperationGroupsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.bulkDeleteOperationGroups(payload);\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/operation-groups/delete',\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 bulkUpdateOperationGroupTags(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkUpdateOperationGroupTagsRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkUpdateOperationGroupTagsRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkUpdateOperationGroupTagsResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkUpdateOperationGroupTagsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.bulkUpdateOperationGroupTags(\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/operation-groups/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 bulkUpdateOperationGroupTagsByFilter(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkUpdateOperationGroupTagsByFilterRequest,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkUpdateOperationGroupTagsByFilterRequest,\n  ambassadorWixRestaurantsV1OperationGroupUniversalTypes.BulkUpdateOperationGroupTagsByFilterResponse,\n  ambassadorWixRestaurantsV1OperationGroupTypes.BulkUpdateOperationGroupTagsByFilterResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsV1OperationGroup.bulkUpdateOperationGroupTagsByFilter(\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/operation-groups/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  OperationGroup as OperationGroupOriginal,\n  Image as ImageOriginal,\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  AccountInfo as AccountInfoOriginal,\n  CreateOperationGroupRequest as CreateOperationGroupRequestOriginal,\n  CreateOperationGroupResponse as CreateOperationGroupResponseOriginal,\n  GetOperationGroupRequest as GetOperationGroupRequestOriginal,\n  GetOperationGroupResponse as GetOperationGroupResponseOriginal,\n  UpdateOperationGroupRequest as UpdateOperationGroupRequestOriginal,\n  UpdateOperationGroupResponse as UpdateOperationGroupResponseOriginal,\n  DeleteOperationGroupRequest as DeleteOperationGroupRequestOriginal,\n  DeleteOperationGroupResponse as DeleteOperationGroupResponseOriginal,\n  QueryOperationGroupsRequest as QueryOperationGroupsRequestOriginal,\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  QueryOperationGroupsResponse as QueryOperationGroupsResponseOriginal,\n  CursorPagingMetadata as CursorPagingMetadataOriginal,\n  Cursors as CursorsOriginal,\n  BulkCreateOperationGroupsRequest as BulkCreateOperationGroupsRequestOriginal,\n  BulkCreateOperationGroupsResponse as BulkCreateOperationGroupsResponseOriginal,\n  ItemMetadata as ItemMetadataOriginal,\n  ApplicationError as ApplicationErrorOriginal,\n  BulkOperationGroupResult as BulkOperationGroupResultOriginal,\n  BulkActionMetadata as BulkActionMetadataOriginal,\n  BulkUpdateOperationGroupsRequest as BulkUpdateOperationGroupsRequestOriginal,\n  MaskedOperationGroup as MaskedOperationGroupOriginal,\n  BulkUpdateOperationGroupsResponse as BulkUpdateOperationGroupsResponseOriginal,\n  BulkUpdateOperationGroupsResponseBulkOperationGroupResult as BulkUpdateOperationGroupsResponseBulkOperationGroupResultOriginal,\n  BulkDeleteOperationGroupsRequest as BulkDeleteOperationGroupsRequestOriginal,\n  BulkDeleteOperationGroupsResponse as BulkDeleteOperationGroupsResponseOriginal,\n  BulkDeleteOperationGroupsResponseBulkOperationGroupResult as BulkDeleteOperationGroupsResponseBulkOperationGroupResultOriginal,\n  BulkUpdateOperationGroupTagsRequest as BulkUpdateOperationGroupTagsRequestOriginal,\n  BulkUpdateOperationGroupTagsResponse as BulkUpdateOperationGroupTagsResponseOriginal,\n  BulkUpdateOperationGroupTagsResult as BulkUpdateOperationGroupTagsResultOriginal,\n  BulkUpdateOperationGroupTagsByFilterRequest as BulkUpdateOperationGroupTagsByFilterRequestOriginal,\n  BulkUpdateOperationGroupTagsByFilterResponse as BulkUpdateOperationGroupTagsByFilterResponseOriginal,\n  BulkUpdateOperationGroupTagsApplicationErrors as BulkUpdateOperationGroupTagsApplicationErrorsOriginal,\n  BulkUpdateOperationGroupTagsByFilterApplicationErrors as BulkUpdateOperationGroupTagsByFilterApplicationErrorsOriginal,\n} from './restaurants-v1-operation-group-operation-groups.types.js';\n"],"mappings":"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","names":["payload","WebhookIdentityType","SortOrder","createOperationGroup","getOperationGroup","updateOperationGroup","deleteOperationGroup","queryOperationGroups","bulkCreateOperationGroups","bulkUpdateOperationGroups","bulkDeleteOperationGroups","bulkUpdateOperationGroupTags","bulkUpdateOperationGroupTagsByFilter"]}