{"version":3,"sources":["../../src/restaurants-order-pacing-v1-policy-order-pacing-policy.http.ts","../../src/restaurants-order-pacing-v1-policy-order-pacing-policy.types.ts","../../src/restaurants-order-pacing-v1-policy-order-pacing-policy.meta.ts"],"sourcesContent":["import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressRestaurantsPacingPoliciesOrderPacingPoliciesUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    'www.wixapis.com': [\n      {\n        srcPath: '/restaurants/order-pacing/v1/policies',\n        destPath: '/v1/policies',\n      },\n      {\n        srcPath: '/restaurants/v1/order-pacing-policies',\n        destPath: '/v1',\n      },\n    ],\n    'manage._base_domain_': [\n      {\n        srcPath: '/_api/restaurants-order-pacing-policies',\n        destPath: '/api',\n      },\n      {\n        srcPath: '/order-pacing/v1/policies',\n        destPath: '/v1/policies',\n      },\n    ],\n    'www._base_domain_': [\n      {\n        srcPath: '/_api/restaurants-order-pacing-policies',\n        destPath: '',\n      },\n    ],\n    'api._api_base_domain_': [\n      {\n        srcPath: '/restaurants-order-pacing-policies',\n        destPath: '',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_restaurants_order-pacing-policy';\n\n/**\n * Creates a new Policy\n * The default location id for the metaSite will be used if the location_id is not provided\n */\nexport function createPolicy(payload: object): RequestOptionsFactory<any> {\n  function __createPolicy({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.order_pacing.v1.policy',\n      method: 'POST' as any,\n      methodFqn:\n        'com.wixpress.restaurants.pacing.policies.OrderPacingPolicies.CreatePolicy',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressRestaurantsPacingPoliciesOrderPacingPoliciesUrl({\n        protoPath: '/v1/policies',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __createPolicy;\n}\n\n/**\n * Get a Policy by location_id\n * The default location id for the metaSite will be used if the location_id is not provided\n */\nexport function getPolicy(payload: object): RequestOptionsFactory<any> {\n  function __getPolicy({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.order_pacing.v1.policy',\n      method: 'GET' as any,\n      methodFqn:\n        'com.wixpress.restaurants.pacing.policies.OrderPacingPolicies.GetPolicy',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressRestaurantsPacingPoliciesOrderPacingPoliciesUrl({\n        protoPath: '/v1/policies',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __getPolicy;\n}\n\n/**\n * Update a Policy\n * The default location id for the metaSite will be used if the location_id is not provided\n * Pass the latest `revision` for a successful update\n */\nexport function updatePolicy(payload: object): RequestOptionsFactory<any> {\n  function __updatePolicy({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.restaurants.order_pacing.v1.policy',\n      method: 'POST' as any,\n      methodFqn:\n        'com.wixpress.restaurants.pacing.policies.OrderPacingPolicies.UpdatePolicy',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressRestaurantsPacingPoliciesOrderPacingPoliciesUrl({\n        protoPath: '/v1/policies/{policy.id}',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __updatePolicy;\n}\n","/** Policy is the main entity of OrderPacingPolicies that can be used for lorem ipsum dolor */\nexport interface Policy {\n  /**\n   * The policy's id\n   * @format GUID\n   */\n  id?: string | null;\n  /**\n   * Current state of this policy.\n   * Each time the policy is modified, its `revision` changes.\n   * For an update operation to succeed, you MUST pass the latest revision\n   */\n  revision?: string | null;\n  /** The active state of this policy - is it enabled or not */\n  enabled?: boolean;\n  /**\n   * The location id this policy is related to\n   * @format GUID\n   */\n  locationId?: string | null;\n  /**\n   * The pacing rules this policy should enforce\n   * @minSize 1\n   * @maxSize 1\n   */\n  rules?: PolicyRule[];\n  /** Extended fields. */\n  extendedFields?: ExtendedFields;\n}\n\nexport interface PolicyRule {\n  /**\n   * The volume limit\n   * @min 1\n   */\n  volumeLimit?: number;\n  /** Should the volume limit include contactless dine-in orders. */\n  includeContactlessDineinOrders?: boolean;\n  /**\n   * A list of weekly time intervals in which the policy should be enforced.\n   * An empty list means that the enforcement times are during the opening hours of the restaurant.\n   */\n  enforcementTimes?: WeeklyTimeInterval[];\n}\n\nexport interface WeeklyTimeInterval {\n  /**\n   * The minute of the week the interval starts\n   * @max 10080\n   */\n  minuteOfWeek?: number;\n  /**\n   * The duration in minutes of the interval, starting from the minute_of_week\n   * @min 1\n   * @max 10080\n   */\n  durationInMinutes?: 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\nexport interface CreatePolicyRequest {\n  /** The policy to be created */\n  policy: Policy;\n}\n\nexport interface CreatePolicyResponse {\n  /** The created Policy */\n  policy?: Policy;\n}\n\nexport interface GetPolicyRequest {\n  /**\n   * The location_id the policy belongs to\n   * @format GUID\n   */\n  locationId?: string | null;\n}\n\nexport interface GetPolicyResponse {\n  /** The retrieved Policy */\n  policy?: Policy;\n}\n\nexport interface UpdatePolicyRequest {\n  /** Policy to be updated, may be partial */\n  policy: Policy;\n}\n\nexport interface UpdatePolicyResponse {\n  /** The updated Policy */\n  policy?: Policy;\n}\n\nexport interface RestaurantLocationsUpdatedEvent {\n  /** @format GUID */\n  metaSiteId?: string;\n  triggerBy?: SyncLocationsSourceWithLiterals;\n  prevLocationsProperties?: RestaurantLocationProperties[];\n  updatedLocationsProperties?: RestaurantLocationProperties[];\n  specialEvent?: SpecialEvent;\n}\n\nexport enum Type {\n  UNKNOWN = 'UNKNOWN',\n  FROM_ZERO_LOCATIONS_TO_ONE_LOCATION = 'FROM_ZERO_LOCATIONS_TO_ONE_LOCATION',\n  FROM_ONE_LOCATION_TO_ZERO_LOCATIONS = 'FROM_ONE_LOCATION_TO_ZERO_LOCATIONS',\n}\n\n/** @enumType */\nexport type TypeWithLiterals =\n  | Type\n  | 'UNKNOWN'\n  | 'FROM_ZERO_LOCATIONS_TO_ONE_LOCATION'\n  | 'FROM_ONE_LOCATION_TO_ZERO_LOCATIONS';\n\nexport enum SyncLocationsSource {\n  API = 'API',\n  LOCATION_EVENT = 'LOCATION_EVENT',\n  RESTAURANT_PROVISIONED_EVENT = 'RESTAURANT_PROVISIONED_EVENT',\n}\n\n/** @enumType */\nexport type SyncLocationsSourceWithLiterals =\n  | SyncLocationsSource\n  | 'API'\n  | 'LOCATION_EVENT'\n  | 'RESTAURANT_PROVISIONED_EVENT';\n\nexport interface RestaurantLocationProperties {\n  locationId?: string;\n  defaultLocation?: boolean;\n  archived?: boolean;\n}\n\nexport interface SpecialEvent {\n  type?: TypeWithLiterals;\n  locationId?: string;\n}\n\nexport interface Empty {}\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","import * as ambassadorWixRestaurantsOrderPacingV1Policy from './restaurants-order-pacing-v1-policy-order-pacing-policy.http.js';\nimport * as ambassadorWixRestaurantsOrderPacingV1PolicyTypes from './restaurants-order-pacing-v1-policy-order-pacing-policy.types.js';\nimport * as ambassadorWixRestaurantsOrderPacingV1PolicyUniversalTypes from './restaurants-order-pacing-v1-policy-order-pacing-policy.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 createPolicy(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixRestaurantsOrderPacingV1PolicyUniversalTypes.CreatePolicyRequest,\n  ambassadorWixRestaurantsOrderPacingV1PolicyTypes.CreatePolicyRequest,\n  ambassadorWixRestaurantsOrderPacingV1PolicyUniversalTypes.CreatePolicyResponse,\n  ambassadorWixRestaurantsOrderPacingV1PolicyTypes.CreatePolicyResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsOrderPacingV1Policy.createPolicy(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/policies',\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 getPolicy(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixRestaurantsOrderPacingV1PolicyUniversalTypes.GetPolicyRequest,\n  ambassadorWixRestaurantsOrderPacingV1PolicyTypes.GetPolicyRequest,\n  ambassadorWixRestaurantsOrderPacingV1PolicyUniversalTypes.GetPolicyResponse,\n  ambassadorWixRestaurantsOrderPacingV1PolicyTypes.GetPolicyResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsOrderPacingV1Policy.getPolicy(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/policies',\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 updatePolicy(): __PublicMethodMetaInfo<\n  'POST',\n  { policyId: string },\n  ambassadorWixRestaurantsOrderPacingV1PolicyUniversalTypes.UpdatePolicyRequest,\n  ambassadorWixRestaurantsOrderPacingV1PolicyTypes.UpdatePolicyRequest,\n  ambassadorWixRestaurantsOrderPacingV1PolicyUniversalTypes.UpdatePolicyResponse,\n  ambassadorWixRestaurantsOrderPacingV1PolicyTypes.UpdatePolicyResponse\n> {\n  const payload = { policy: { id: ':policyId' } } as any;\n\n  const getRequestOptions =\n    ambassadorWixRestaurantsOrderPacingV1Policy.updatePolicy(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/policies/{policy.id}',\n    pathParams: { policyId: 'policyId' },\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  Policy as PolicyOriginal,\n  PolicyRule as PolicyRuleOriginal,\n  WeeklyTimeInterval as WeeklyTimeIntervalOriginal,\n  ExtendedFields as ExtendedFieldsOriginal,\n  CreatePolicyRequest as CreatePolicyRequestOriginal,\n  CreatePolicyResponse as CreatePolicyResponseOriginal,\n  GetPolicyRequest as GetPolicyRequestOriginal,\n  GetPolicyResponse as GetPolicyResponseOriginal,\n  UpdatePolicyRequest as UpdatePolicyRequestOriginal,\n  UpdatePolicyResponse as UpdatePolicyResponseOriginal,\n  RestaurantLocationsUpdatedEvent as RestaurantLocationsUpdatedEventOriginal,\n  Type as TypeOriginal,\n  TypeWithLiterals as TypeWithLiteralsOriginal,\n  SyncLocationsSource as SyncLocationsSourceOriginal,\n  SyncLocationsSourceWithLiterals as SyncLocationsSourceWithLiteralsOriginal,\n  RestaurantLocationProperties as RestaurantLocationPropertiesOriginal,\n  SpecialEvent as SpecialEventOriginal,\n  Empty as EmptyOriginal,\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} from './restaurants-order-pacing-v1-policy-order-pacing-policy.types.js';\n"],"mappings":"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","names":["Type","SyncLocationsSource","WebhookIdentityType","createPolicy","getPolicy","updatePolicy"]}