@matochmat/api-client 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":["../src/v2/bonusStampCode.ts","../src/v2/cateringDish.ts","../src/v2/cateringDishCategory.ts","../src/v2/cateringDishTab.ts","../src/v2/cateringFunctionality.ts","../src/v2/city.ts","../src/v2/cityUploadConnection.ts","../src/v2/coupon.ts","../src/v2/crawlingConfiguration.ts","../src/v2/crawlingConfigurationModel.ts","../src/v2/crawlingConfigurationTextContentStrategyType.ts","../src/v2/customerQuote.ts","../src/v2/customerQuoteUploadConnection.ts","../src/v2/deliveryInfo.ts","../src/v2/dinnerDish.ts","../src/v2/dinnerDishCategory.ts","../src/v2/dinnerDishTab.ts","../src/v2/dinnerFunctionality.ts","../src/v2/dinnerFunctionalityType.ts","../src/v2/displaySolutionV1Configuration.ts","../src/v2/emailTemplate.ts","../src/v2/firebaseDeviceRegistrationToken.ts","../src/v2/integrationV1Configuration.ts","../src/v2/integrationV2Configuration.ts","../src/v2/lunchBox.ts","../src/v2/lunchBoxFunctionality.ts","../src/v2/lunchFunctionality.ts","../src/v2/menuCrawlerProxy.ts","../src/v2/notice.ts","../src/v2/notificationPreference.ts","../src/v2/openingHour.ts","../src/v2/order.ts","../src/v2/orderItem.ts","../src/v2/pdfV1Configuration.ts","../src/v2/pdfV1ConfigurationType.ts","../src/v2/pdfV2Configuration.ts","../src/v2/pdfV2ConfigurationType.ts","../src/v2/policy.ts","../src/v2/restaurant.ts","../src/v2/restaurantFunctionalityVisibilityType.ts","../src/v2/restaurantUploadConnection.ts","../src/v2/session.ts","../src/v2/showcase.ts","../src/v2/showcasePositionType.ts","../src/v2/showcaseType.ts","../src/v2/showcaseUploadConnection.ts","../src/v2/showcaseViewCount.ts","../src/v2/subscriptionPeriod.ts","../src/v2/systemSetting.ts","../src/v2/tableBooking.ts","../src/v2/takeAway.ts","../src/v2/teamMember.ts","../src/v2/teamMemberUploadConnection.ts","../src/v2/updatedByType.ts","../src/v2/upload.ts","../src/v2/user.ts","../src/v3/blockContent.ts","../src/v3/blockContentUploadConnectionType.ts","../src/v3/couponLocation.ts","../src/v3/restaurantManagement.ts","../src/v3/restaurantRegistration.ts","../src/v3/restaurantRegistrationState.ts","../src/v3/showcaseLocation.ts","../src/v3/showcaseUserRoleConnection.ts"],"sourcesContent":["import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the bonus stamp code endpoint.\n */\nexport type ApiV2BonusStampCodeType =\n{\n\t/**\n\t * The batch the code belongs to.\n\t */\n\tbatch: string;\n\n\t/**\n\t * The actual bonus stamp code.\n\t */\n\tcode: string;\n\n\t/**\n\t * Whether or not the code has been deactivated.\n\t */\n\tdeactivated: boolean;\n\n\t/**\n\t * Timestamp for when the code was generated.\n\t */\n\tgenerated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the code was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant the code is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for bonus stamp codes.\n */\nexport type ApiV2BonusStampCodeResponseType = ApiV2BaseResponseType<ApiV2BonusStampCodeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2BonusStampCodeApiEndpointSlug = 'bonus-stamp-codes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishType } from '@matochmat/api-client/src/v2/dish';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish endpoint.\n */\nexport type ApiV2CateringDishType = ApiV2DishType &\n{\n\t/**\n\t * ID of the category that the catering dish belongs to.\n\t */\n\tcateringDishCategoryId: number;\n};\n\n/**\n * The API response type for catering dishes.\n */\nexport type ApiV2CateringDishResponseType = ApiV2BaseResponseType<ApiV2CateringDishType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishApiEndpointSlug = 'catering-dishes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishCategoryType } from '@matochmat/api-client/src/v2/dishCategory';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish category endpoint.\n */\nexport type ApiV2CateringDishCategoryType = ApiV2DishCategoryType &\n{\n\t/**\n\t * ID of the category that the catering dish belongs to.\n\t */\n\tcateringDishTabId: number;\n};\n\n/**\n * The API response type for catering dish categories.\n */\nexport type ApiV2CateringDishCategoryResponseType = ApiV2BaseResponseType<ApiV2CateringDishCategoryType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishCategoryApiEndpointSlug = 'catering-dish-categories';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishTabType } from '@matochmat/api-client/src/v2/dishTab';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish category endpoint.\n */\nexport type ApiV2CateringDishTabType = ApiV2DishTabType;\n\n/**\n * The API response type for catering dish categories.\n */\nexport type ApiV2CateringDishTabResponseType = ApiV2BaseResponseType<ApiV2CateringDishTabType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishTabApiEndpointSlug = 'catering-dish-tabs';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the catering functionality endpoint.\n */\nexport type ApiV2CateringFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Number of columns to display catering menu in.\n\t */\n\tcolumns: 1|2|3;\n\n\t/**\n\t * Text about catering conditions.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * The email address to send catering requests to.\n\t */\n\trequestEmail: string;\n\n\t/**\n\t * To what date to show the restaurant's catering participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n\n\t/**\n\t * Whether or not the restaurant has a catering venue available for hire.\n\t */\n\tvenueAvailable: boolean;\n\n\t/**\n\t * Text next to the venue image gallery.\n\t */\n\tvenueText: string;\n\n\t/**\n\t * Title shown above the venue text.\n\t */\n\tvenueTextTitle: string;\n};\n\n/**\n * The API response type for catering functionality items.\n */\nexport type ApiV2CateringFunctionalityResponseType = ApiV2BaseResponseType<ApiV2CateringFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringFunctionalityApiEndpointSlug = 'catering-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CityUploadConnectionType } from '@matochmat/api-client/src/v2/cityUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the city endpoint.\n */\nexport type ApiV2CityType =\n{\n\t/**\n\t * Determines whether the city is active or not.\n\t * @deprecated This is no longer in use and you should instead look at the city type.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchPanorama: string;\n\n\t/**\n\t * Aliases to match against when searching. Not actually displayed on the page.\n\t */\n\taliases: string[];\n\n\t/**\n\t * Determines whether the city has bonus stamp information active or not. Note that this is exactly that, a toggle for INFORMATION only. It does NOT change either visibility or functionality of bonus stamps if a restaurant in the city has them active.\n\t */\n\tbonusStampsActive: boolean;\n\n\t/**\n\t * Determines whether the city has any catering restaurants active.\n\t */\n\tcateringFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any catering restaurants in sales mode.\n\t */\n\tcateringFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the catering list.\n\t */\n\tcateringIntroText: string;\n\n\t/**\n\t * String representation of when the city was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Whether or not the city uses daily lunch tip functionality.\n\t */\n\tdailyLunchTipActive: boolean;\n\n\t/**\n\t * Determines whether the city has any dinner restaurants active.\n\t */\n\tdinnerFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any dinner restaurants in sales mode.\n\t */\n\tdinnerFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the dinner list.\n\t */\n\tdinnerIntroText: string;\n\n\t/**\n\t * Unique ID for the city.\n\t */\n\tid: number;\n\n\t/**\n\t * Intro text to display on the functionality selection pages.\n\t */\n\tintroText: string;\n\n\t/**\n\t * String representation of the last time the city was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Determines whether the city has any lunch box restaurants active.\n\t */\n\tlunchBoxFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any lunch box restaurants in sales mode.\n\t */\n\tlunchBoxFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the lunch box list.\n\t */\n\tlunchBoxIntroText: string;\n\n\t/**\n\t * Determines whether the city has any lunch restaurants active.\n\t */\n\tlunchFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any lunch restaurants in sales mode.\n\t */\n\tlunchFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the lunch page.\n\t */\n\tlunchIntroText: string;\n\n\t/**\n\t * Readable name of the city.\n\t */\n\tname: string;\n\n\t/**\n\t * Determines whether or not to send a notification to the administrative personnel when a restaurant owner with a restaurant in this city logs in.\n\t */\n\tnotifyWhenRestaurantLogsIn: boolean;\n\n\t/**\n\t * OG image for the city.\n\t */\n\tsharingImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the city and the upload.\n\t\t */\n\t\tcityUpload: ApiV2CityUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Machine readable name of the city used in URLs among other places.\n\t */\n\tslug: string;\n};\n\n/**\n * The API response type for cities.\n */\nexport type ApiV2CityResponseType = ApiV2BaseResponseType<ApiV2CityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CityApiEndpointSlug = 'cities';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2CityUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * City ID upload belongs to.\n\t */\n\tcityId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tcityUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CityUploadConnectionApiEndpointSlug = 'city-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the coupon endpoint.\n */\nexport type ApiV2CouponType =\n{\n\t/**\n\t * Determines whether or not the coupon is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * The actual coupon code string.\n\t */\n\tcode: string;\n\n\t/**\n\t * String representation of when the coupon was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Description of the coupon.\n\t */\n\tdescription: string;\n\n\t/**\n\t * String representation of the end date of the coupon validity.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the coupon.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the coupon was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the coupon.\n\t */\n\tname: string;\n\n\t/**\n\t * String representation of the start date of the coupon validity.\n\t */\n\tstartDate: string;\n\n\t/**\n\t * Determines whether or not the coupon is valid for all cities.\n\t */\n\tvalidForAllCities: boolean;\n};\n\n/**\n * The API response type for coupons.\n */\nexport type ApiV2CouponResponseType = ApiV2BaseResponseType<ApiV2CouponType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CouponApiEndpointSlug = 'coupons';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CrawlingConfigurationTextContentStrategyTypeType } from '@matochmat/api-client/src/v2/crawlingConfigurationTextContentStrategyType';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration endpoint.\n */\nexport type ApiV2CrawlingConfigurationType =\n{\n\t/**\n\t * Whether or not the functionality is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * Additional prompt to send to the data processor.\n\t */\n\tadditionalPrompt: string;\n\n\t/**\n\t * Determines if the restaurant should be crawled even if a menu already exists.\n\t */\n\tcrawlEvenIfMenuExists: boolean;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for crawling configuration functionality.\n\t */\n\tid: number;\n\n\t/**\n\t * Max tokens to use for parsing data.\n\t */\n\tmaxTokens: number;\n\n\t/**\n\t * Model to use for parsing data.\n\t */\n\tmodel: string;\n\n\t/**\n\t * Restaurant ID the functionality relates to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Strategy to use for getting text content.\n\t */\n\ttextContentStrategyTypeId: ApiV2CrawlingConfigurationTextContentStrategyTypeType[ 'id' ];\n\n\t/**\n\t * URL to crawl.\n\t */\n\turl: string;\n\n\t/**\n\t * Weekdays to crawl on.\n\t */\n\tweekdays: number[];\n};\n\n/**\n * The API response type for crawling configurations.\n */\nexport type ApiV2CrawlingConfigurationResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationApiEndpointSlug = 'crawling-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration model endpoint.\n */\nexport type ApiV2CrawlingConfigurationModelType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for crawling configuration functionality.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n\n\t/**\n\t * Actual name used in the APIs.\n\t */\n\tslug: string;\n\n\t/**\n\t * Sort order. Lower for earlier.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * The API response type for crawling configuration models.\n */\nexport type ApiV2CrawlingConfigurationModelResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationModelType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationModelApiEndpointSlug = 'crawling-configuration-models';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration text content strategy type endpoint.\n */\nexport type ApiV2CrawlingConfigurationTextContentStrategyTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2|3;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for crawling configurations.\n */\nexport type ApiV2CrawlingConfigurationTextContentStrategyTypeResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationTextContentStrategyTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationTextContentStrategyTypeApiEndpointSlug = 'crawling-configuration-text-content-strategy-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CustomerQuoteUploadConnectionType } from '@matochmat/api-client/src/v2/customerQuoteUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the customer quote endpoint.\n */\nexport type ApiV2CustomerQuoteType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * String representation of which date the ad should stop displaying.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the quoted person.\n\t */\n\tname: string;\n\n\t/**\n\t * Profile image for the customer quote.\n\t */\n\tprofileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the customer quote and the upload.\n\t\t */\n\t\tcustomerQuoteUpload: ApiV2CustomerQuoteUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Name of the role that the customer quote holds.\n\t */\n\tquoteText: string;\n\n\t/**\n\t * Name of the restaurant the quote is relevant for.\n\t */\n\trestaurantName: string;\n\n\t/**\n\t * Numeric sorting order to determine display order.\n\t */\n\tsortOrder: number;\n}\n\n/**\n * The API response type for customer quotes.\n */\nexport type ApiV2CustomerQuoteResponseType = ApiV2BaseResponseType<ApiV2CustomerQuoteType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CustomerQuoteApiEndpointSlug = 'customer-quotes';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2CustomerQuoteUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Customer quote ID upload belongs to.\n\t */\n\tcustomerQuoteId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tcustomerQuoteUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CustomerQuoteUploadConnectionApiEndpointSlug = 'customer-quote-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the delivery info endpoint.\n */\nexport type ApiV2DeliveryInfoType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * ID of the specific type of delivery info that's selected.\n\t */\n\tdeliveryInfoTypeId: number;\n\n\t/**\n\t * Delivery link.\n\t */\n\tdeliveryLink: string;\n\n\t/**\n\t * Email to use for delivery info.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number for booking tables.\n\t */\n\tphone: string;\n\n\t/**\n\t * ID of the restaurant that the delivery info info is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Informational text about delivery info conditions.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for delivery info.\n */\nexport type ApiV2DeliveryInfoResponseType = ApiV2BaseResponseType<ApiV2DeliveryInfoType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DeliveryInfoApiEndpointSlug = 'delivery-info';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishType } from '@matochmat/api-client/src/v2/dish';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish endpoint.\n */\nexport type ApiV2DinnerDishType = ApiV2DishType &\n{\n\t/**\n\t * ID of the category that the dinner dish belongs to.\n\t */\n\tdinnerDishCategoryId: number;\n};\n\n/**\n * The API response type for dinner dishes.\n */\nexport type ApiV2DinnerDishResponseType = ApiV2BaseResponseType<ApiV2DinnerDishType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishApiEndpointSlug = 'dinner-dishes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishCategoryType } from '@matochmat/api-client/src/v2/dishCategory';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish category endpoint.\n */\nexport type ApiV2DinnerDishCategoryType = ApiV2DishCategoryType &\n{\n\t/**\n\t * ID of the category that the dinner dish belongs to.\n\t */\n\tdinnerDishTabId: number;\n};\n\n/**\n * The API response type for dinner dish categories.\n */\nexport type ApiV2DinnerDishCategoryResponseType = ApiV2BaseResponseType<ApiV2DinnerDishCategoryType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishCategoryApiEndpointSlug = 'dinner-dish-categories';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishTabType } from '@matochmat/api-client/src/v2/dishTab';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish category endpoint.\n */\nexport type ApiV2DinnerDishTabType = ApiV2DishTabType;\n\n/**\n * The API response type for dinner dish categories.\n */\nexport type ApiV2DinnerDishTabResponseType = ApiV2BaseResponseType<ApiV2DinnerDishTabType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishTabApiEndpointSlug = 'dinner-dish-tabs';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2OpeningHourType } from '@matochmat/api-client/src/v2/openingHour';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\nimport type { ApiV2RestaurantUploadConnectionType } from '@matochmat/api-client/src/v2/restaurantUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner functionality endpoint.\n */\nexport type ApiV2DinnerFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Number of columns to display dinner menu in.\n\t */\n\tcolumns: 1|2|3;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Determines what type of dinner functionality to show.\n\t */\n\tdinnerFunctionalityTypeId: number;\n\n\t/**\n\t * Background for the restaurant details page header.\n\t */\n\tdinnerMenuImage:\n\t{\n\t\t/**\n\t\t *\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t *\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Link to use for external link type menus.\n\t */\n\tmenuLink: string;\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * List of opening hours for the dinner.\n\t */\n\topeningHourList:\n\t{\n\t\titems: ApiV2OpeningHourType[];\n\t};\n\n\t/**\n\t * To what date to show the restaurant's dinner participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for dinner functionality items.\n */\nexport type ApiV2DinnerFunctionalityResponseType = ApiV2BaseResponseType<ApiV2DinnerFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerFunctionalityApiEndpointSlug = 'dinner-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner functionality type endpoint.\n */\nexport type ApiV2DinnerFunctionalityTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for dinner functionality types.\n */\nexport type ApiV2DinnerFunctionalityTypeResponseType = ApiV2BaseResponseType<ApiV2DinnerFunctionalityTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerFunctionalityTypeApiEndpointSlug = 'dinner-functionality-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the display solution v1 configuration endpoint.\n */\nexport type ApiV2DisplaySolutionV1ConfigurationType =\n{\n\t/**\n\t * Whether or not the display solution is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * JSX for rendering the actual display solution. Note that as the name suggests this is JSX and not plain JS.\n\t */\n\trenderJsx: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Generic setup settings for the display solution.\n\t */\n\tsettings: string;\n};\n\n/**\n * The API response type for display solution v1 configurations.\n */\nexport type ApiV2DisplaySolutionV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2DisplaySolutionV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DisplaySolutionV1ConfigurationApiEndpointSlug = 'display-solution-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the email template endpoint.\n */\nexport type ApiV2EmailTemplateType =\n{\n\t/**\n\t * Determines if the template is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * Main text content.\n\t */\n\tcontent: string;\n\n\t/**\n\t * String representation of when the email template was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Determines if the template should default to sending a blind carbon copy to Hubspot.\n\t */\n\thubspotBcc: boolean;\n\n\t/**\n\t * Unique ID for the email template.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the email template was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the email template.\n\t */\n\tname: string;\n\n\t/**\n\t * Determines if the template is required by the system (which will limit what admins can do with it in regards to disabling and deleting).\n\t */\n\trequiredBySystem: boolean;\n\n\t/**\n\t * Determines if the template should be shown in the GUI where admins can choose a template for their emails.\n\t */\n\tshowInTemplateSelection: boolean;\n\n\t/**\n\t * Title of the email.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for email templates.\n */\nexport type ApiV2EmailTemplateResponseType = ApiV2BaseResponseType<ApiV2EmailTemplateType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2EmailTemplateApiEndpointSlug = 'email-templates';\n","/**\n * API endpoint slug.\n */\nexport const apiV2FirebaseDeviceRegistrationTokenApiEndpointSlug = 'firebase-device-registration-tokens';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the integration v1 configuration endpoint.\n */\nexport type ApiV2IntegrationV1ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * The type of integration to display.\n\t */\n\tintegrationTypeId: 1|2|3;\n\n\t/**\n\t * Integration specific JS.\n\t */\n\tjs: string;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2IntegrationV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2IntegrationV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2IntegrationV1ConfigurationApiEndpointSlug = 'integration-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the integration v1 configuration endpoint.\n */\nexport type ApiV2IntegrationV2ConfigurationType =\n{\n\t/**\n\t * Whether or not the integration is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * JS for preparing the page before the actual rendering. This should normally be left empty and used only for special scenarios where the site you're integrating isn't built dynamically enough to support rendering the integration to look the same as the rest of the page (hardcoded things, strict post type setups, etc.). Note that as the name suggests this is JSX to be used for setting up the necessary stuff beforehand and not JSX (which you're expected to place in {@link ApiV2IntegrationV2ConfigurationType.renderJsx} instead).\n\t */\n\tpreRenderJs: string;\n\n\t/**\n\t * JSX for rendering the actual integration. Note that as the name suggests this is JSX and not plain JS (which you're expected to place in {@link ApiV2IntegrationV2ConfigurationType.preRenderJs} instead).\n\t */\n\trenderJsx: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2IntegrationV2ConfigurationResponseType = ApiV2BaseResponseType<ApiV2IntegrationV2ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2IntegrationV2ConfigurationApiEndpointSlug = 'integration-v2-configurations';\n","/**\n * API endpoint slug.\n */\nexport const apiV2LunchBoxApiEndpointSlug = 'lunch-boxes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the lunch box functionality endpoint.\n */\nexport type ApiV2LunchBoxFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Conditions for ordering lunch boxes.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Latest possible time for placing orders.\n\t */\n\tlatestOrderTime: string;\n\n\t/**\n\t * The email address to send confirmation emails to.\n\t */\n\torderConfirmationEmail: string;\n\n\t/**\n\t * Earliest time for picking up orders.\n\t */\n\tpickupTimeFrom: string;\n\n\t/**\n\t * Latest time for picking up orders.\n\t */\n\tpickupTimeTo: string;\n\n\t/**\n\t * To what date to show the restaurant's lunch box participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for lunch box functionality.\n */\nexport type ApiV2LunchBoxFunctionalityResponseType = ApiV2BaseResponseType<ApiV2LunchBoxFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2LunchBoxFunctionalityApiEndpointSlug = 'lunch-box-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2LunchDishType } from '@matochmat/api-client/src/v2/lunchDish';\nimport type { ApiV2OpeningHourType } from '@matochmat/api-client/src/v2/openingHour';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the lunch functionality endpoint.\n */\nexport type ApiV2LunchFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Controls whether or not the restaurant has bonus stamps active.\n\t */\n\tbonusStampsActive: boolean;\n\n\t/**\n\t * Text entered by the restaurant concerning which-if any-special conditions apply for getting bonus stamps.\n\t */\n\tbonusStampsConditionsText: string;\n\n\t/**\n\t * Date when the restaurant should be displayed as the daily lunch tip.\n\t */\n\tdailyLunchTipDate: string|null;\n\n\t/**\n\t * Date when the restaurant would've been displayed as the daily lunch tip but was intentionally skipped.\n\t */\n\tdailyLunchTipSkippedDate: string|null;\n\n\t/**\n\t * Which days to send empty menu reminders.\n\t */\n\temptyMenuReminderDays: number[];\n\n\t/**\n\t * Email to use when sending out empty menu reminders.\n\t */\n\temptyMenuReminderEmail: string;\n\n\t/**\n\t * String representation of the date when empty menu reminder was last sent. Used to avoid sending twice the same day if the script is run twice.\n\t */\n\temptyMenuReminderLastSent: string;\n\n\t/**\n\t * Default lunch menu data.\n\t */\n\tlunchDefault: ApiV2LunchDishType[];\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * List of opening hours for the lunch.\n\t */\n\topeningHourList:\n\t{\n\t\titems: ApiV2OpeningHourType[];\n\t};\n\n\t/**\n\t * To what date to show the restaurant's lunch participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for lunch functionality.\n */\nexport type ApiV2LunchFunctionalityResponseType = ApiV2BaseResponseType<ApiV2LunchFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2LunchFunctionalityApiEndpointSlug = 'lunch-functionality';\n","/**\n * Endpoint for the local API to connect with the menu crawler.\n */\nexport const apiV2MenuCrawlerProxyApiEndpointSlug = 'menu-crawler-proxy';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the notice endpoint.\n */\nexport type ApiV2NoticeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Whether or not the notice has been handled.\n\t */\n\thandled: boolean;\n\n\t/**\n\t * Timestamp for when the notice was handled.\n\t */\n\thandledOn: string;\n\n\t/**\n\t * Unique ID for the notice.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Title of the notice.\n\t */\n\ttext: string;\n\n\t/**\n\t * Title of the notice.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for notices.\n */\nexport type ApiV2NoticeResponseType = ApiV2BaseResponseType<ApiV2NoticeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2NoticeApiEndpointSlug = 'notices';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the notification preference endpoint.\n */\nexport type ApiV2NotificationPreferenceType =\n{\n\t/**\n\t * Whether or not the notifications are active. We keep this as a separate value to allow users to keep their preferences after toggling notifications off and then on (as deleting it and re-adding it would mean data loss for any future properties/columns we choose to save on this class).\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the user was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant that we want to send notifications for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the user to send notifications to. Note that this isn't used to send the actual notifications, that part is handled by device registration tokens that the user gets from Firebase if they do indeed opt in to push notifications. Note that those are indeed opt-in, and just because we have a notification preference here it does NOT necessarily mean we actually have any registration tokens to send the notifications to.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for notification preferences.\n */\nexport type ApiV2NotificationPreferenceResponseType = ApiV2BaseResponseType<ApiV2NotificationPreferenceType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2NotificationPreferenceApiEndpointSlug = 'notification-preferences';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the opening hour endpoint.\n */\nexport type ApiV2OpeningHourType =\n{\n\t/**\n\t * Time of day when the restaurant closes.\n\t */\n\tclosingTime: string;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * ID of the dinner functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tdinnerFunctionalityId: number|null;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Day of the week the opening hours are relevant for. This is ISO (not american) weekday number (not index).\n\t */\n\tisoWeekdayNumber: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the lunch box functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tlunchBoxFunctionalityId: number|null;\n\n\t/**\n\t * ID of the lunch functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tlunchFunctionalityId: number|null;\n\n\t/**\n\t * Whether or not the restaurant is open on this day.\n\t */\n\topen: boolean;\n\n\t/**\n\t * Time of day when the restaurant opens.\n\t */\n\topeningTime: string;\n};\n\n/**\n * The API response type for opening hour items.\n */\nexport type ApiV2OpeningHourResponseType = ApiV2BaseResponseType<ApiV2OpeningHourType[], number>;\n\n/**\n * API endpoint slug.\n */\n\nexport const apiV2OpeningHourApiEndpointSlug = 'opening-hours';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order endpoint.\n */\nexport type ApiV2OrderType =\n{\n\t/**\n\t * Keeps track of whether or not the user has confirmed their order.\n\t */\n\tconfirmed: boolean;\n\n\t/**\n\t * Timestamp for when the order was confirmed.\n\t */\n\tconfirmedDate: string|null;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email address to the customer.\n\t */\n\tcustomerEmail: string;\n\n\t/**\n\t * First name of the customer.\n\t */\n\tcustomerFirstName: string;\n\n\t/**\n\t * Last name of the customer.\n\t */\n\tcustomerLastName: string;\n\n\t/**\n\t * Phone number to the customer.\n\t */\n\tcustomerPhone: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Order number to display to the user. Not to be confused with the database ID.\n\t */\n\torderNumber: number|null;\n\n\t/**\n\t * Keeps track of whether or not the restaurant has processed the order.\n\t */\n\tprocessed: boolean;\n\n\t/**\n\t * Timestamp for when the order was processed.\n\t */\n\tprocessedDate: string|null;\n\n\t/**\n\t * ID of the restaurant that placed the order was placed on.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the user that placed the order.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for orders.\n */\nexport type ApiV2OrderResponseType = ApiV2BaseResponseType<ApiV2OrderType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2OrderApiEndpointSlug = 'orders';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order items endpoint.\n */\nexport type ApiV2OrderItemType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Description of the lunch box.\n\t */\n\tdescription: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the lunch box that the item refers to.\n\t */\n\tlunchBoxId: number|null;\n\n\t/**\n\t * Name of the lunch box.\n\t */\n\tname: string;\n\n\t/**\n\t * ID of the order that the item belongs to.\n\t */\n\torderId: number;\n\n\t/**\n\t * Price of the lunch box.\n\t */\n\tprice: number;\n\n\t/**\n\t * Number of items ordered.\n\t */\n\tquantity: number;\n\n\t/**\n\t * List of tags for the dish.\n\t */\n\ttags: string[];\n};\n\n/**\n * The API response type for order items.\n */\nexport type ApiV2OrderItemResponseType = ApiV2BaseResponseType<ApiV2OrderItemType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2OrderItemApiEndpointSlug = 'order-items';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the PDF v1 configuration endpoint.\n */\nexport type ApiV2PdfV1ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * PDF specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Template (HTML code and custom shortcodes) for custom daily PDF menus.\n\t */\n\tdailyTemplate: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The type of PDF to display.\n\t */\n\tpdfV1ConfigurationTypeId: 1|2;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Template (HTML code and custom shortcodes) for custom weekly PDF menus.\n\t */\n\tweeklyTemplate: string;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2PdfV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2PdfV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV1ConfigurationApiEndpointSlug = 'pdf-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2PdfV1ConfigurationTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for PDF v1 configuration types.\n */\nexport type ApiV2PdfV1ConfigurationTypeResponseType = ApiV2BaseResponseType<ApiV2PdfV1ConfigurationTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV1ConfigurationTypeApiEndpointSlug = 'pdf-v1-configuration-types';\n\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the PDF v2 configuration endpoint.\n */\nexport type ApiV2PdfV2ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * PDF specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * The render JSX for the daily lunch menu (only relevant for custom PDFs).\n\t */\n\tdailyLunchMenuRenderJsx: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The type of PDF to display.\n\t */\n\tpdfV2ConfigurationTypeId: 1|2;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Generic setup settings for the PDF.\n\t */\n\tsettings: string;\n\n\t/**\n\t * The render JSX for the weekly lunch menu (only relevant for custom PDFs).\n\t */\n\tweeklyLunchMenuRenderJsx: string;\n};\n\n/**\n * The API response type for integration v2 configurations.\n */\nexport type ApiV2PdfV2ConfigurationResponseType = ApiV2BaseResponseType<ApiV2PdfV2ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV2ConfigurationApiEndpointSlug = 'pdf-v2-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2PdfV2ConfigurationTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for PDF v2 configuration types.\n */\nexport type ApiV2PdfV2ConfigurationTypeResponseType = ApiV2BaseResponseType<ApiV2PdfV2ConfigurationTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV2ConfigurationTypeApiEndpointSlug = 'pdf-v2-configuration-types';\n\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the policy endpoint.\n */\nexport type ApiV2PolicyType =\n{\n\t/**\n\t * String representation of when the policy was last created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the policy.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the policy was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Actual policy text.\n\t */\n\tpolicyText: string;\n\n\t/**\n\t * Date stamp for when the policy is valid from.\n\t */\n\tvalidFrom: string;\n};\n\n/**\n * The API response type for policys.\n */\nexport type ApiV2PolicyResponseType = ApiV2BaseResponseType<ApiV2PolicyType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PolicyApiEndpointSlug = 'policies';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CateringFunctionalityType } from '@matochmat/api-client/src/v2/cateringFunctionality';\nimport type { ApiV2CrawlingConfigurationType } from '@matochmat/api-client/src/v2/crawlingConfiguration';\nimport type { ApiV2DeliveryInfoType } from '@matochmat/api-client/src/v2/deliveryInfo';\nimport type { ApiV2DinnerFunctionalityType } from '@matochmat/api-client/src/v2/dinnerFunctionality';\nimport type { ApiV2LunchBoxFunctionalityType } from '@matochmat/api-client/src/v2/lunchBoxFunctionality';\nimport type { ApiV2LunchFunctionalityType } from '@matochmat/api-client/src/v2/lunchFunctionality';\nimport type { ApiV2RestaurantUploadConnectionType } from '@matochmat/api-client/src/v2/restaurantUploadConnection';\nimport type { ApiV2TableBookingType } from '@matochmat/api-client/src/v2/tableBooking';\nimport type { ApiV2TakeAwayType } from '@matochmat/api-client/src/v2/takeAway';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the restaurant endpoint.\n */\nexport type ApiV2RestaurantType =\n{\n\t/**\n\t * Text that describes the restaurant. Displays on the page to give lunch guests a bit of info and is commonly also used for page metadata.\n\t */\n\tabout: string;\n\n\t/**\n\t * String representation of the street address for the restaurant.\n\t */\n\taddress: string;\n\n\t/**\n\t * Aliases to match against when searching. Not actually displayed on the page.\n\t */\n\taliases: string[];\n\n\t/**\n\t *\n\t */\n\tcateringFunctionality: ApiV2CateringFunctionalityType;\n\n\t/**\n\t * City ID determining which city the restaurant belongs to.\n\t */\n\tcityId: number;\n\n\t/**\n\t * A compounded rating collected from different rating sites around the web.\n\t */\n\tcompoundRating: number|null;\n\n\t/**\n\t *\n\t */\n\tcrawlingConfiguration: ApiV2CrawlingConfigurationType;\n\n\t/**\n\t * String representation of when the restaurant was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Delivery information.\n\t */\n\tdeliveryInfo: ApiV2DeliveryInfoType;\n\n\t/**\n\t * Background for the restaurant details page header.\n\t */\n\tdetailsPageHeaderBackground:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t *\n\t */\n\tdinnerFunctionality: ApiV2DinnerFunctionalityType;\n\n\t/**\n\t * Restaurant email. Used only for displaying to lunch guests and not for sending emails from the system.\n\t */\n\temail: string;\n\n\t/**\n\t * URL to the restaurant's Facebook page.\n\t */\n\tfacebook: string;\n\n\t/**\n\t * Unique entity ID.\n\t */\n\tid: number;\n\n\t/**\n\t * URL to the restaurant's Instagram page.\n\t */\n\tinstagram: string;\n\n\t/**\n\t * String representation of when the restaurant was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * String representation of latitude.\n\t */\n\tlatitude: string;\n\n\t/**\n\t * Restaurant logotype info.\n\t */\n\tlogotype:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Background for the restaurant logotype.\n\t */\n\tlogotypeBackground:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * String representation of longitude.\n\t */\n\tlongitude: string;\n\n\t/**\n\t *\n\t */\n\tlunchBoxFunctionality: ApiV2LunchBoxFunctionalityType;\n\n\t/**\n\t *\n\t */\n\tlunchFunctionality: ApiV2LunchFunctionalityType;\n\n\t/**\n\t * Name of the restaurant.\n\t */\n\tname: string;\n\n\t/**\n\t * Text shown below or in conjunction with name to convey further information. Useful when two restaurants have the same title but are located in different places or when a restaurant has changed name (for instance \"Loremrestaurangen (f.d. Ipsumrestaurangen)\").\n\t */\n\tnameSubtext: string;\n\n\t/**\n\t * Obfuscated unique ID. Used for legacy purposes only.\n\t * @deprecated Only used for legacy support for apps and third parties. In the long run we may consider removing this.\n\t * @see ID is now saved as a plain property.\n\t */\n\tobfuscatedId: string;\n\n\t/**\n\t * Determines which version of PDFs to use.\n\t */\n\tpdfVersion: 2;\n\n\t/**\n\t * Whether or not the restaurant is pending and awaiting approval.\n\t */\n\tpending: boolean;\n\n\t/**\n\t * Phone number to the restaurant.\n\t */\n\tphone: string;\n\n\t/**\n\t * Where the price range of the items the restaurant serves starts at. This is on a scale of 1 to 4.\n\t */\n\tpriceRangeFrom: number|null;\n\n\t/**\n\t * Where the price range of the items the restaurant serves ends at. This is on a scale of 1 to 4.\n\t */\n\tpriceRangeTo: number|null;\n\n\t/**\n\t * Tags the restaurant is connected to.\n\t */\n\trestaurantTagIds: number[];\n\n\t/**\n\t * Machine readable name of the restaurant.\n\t */\n\tslug: string;\n\n\t/**\n\t * The URL for the static map image.\n\t */\n\tstaticMapImageUrl: string;\n\n\t/**\n\t * Table booking info for the restaurant.\n\t */\n\ttableBooking: ApiV2TableBookingType;\n\n\t/**\n\t * Take away info for the restaurant.\n\t */\n\ttakeAway: ApiV2TakeAwayType;\n\n\t/**\n\t * Type for who updates the restaurant's menus.\n\t */\n\tupdatedByTypeId: 1|2|3;\n\n\t/**\n\t * URL to the restaurant's own website.\n\t */\n\twebsite: string;\n};\n\n/**\n * The API response type for restaurants.\n */\nexport type ApiV2RestaurantResponseType = ApiV2BaseResponseType<ApiV2RestaurantType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantApiEndpointSlug = 'restaurants';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the restaurant functionality visibility types endpoint.\n */\nexport type ApiV2RestaurantFunctionalityVisibilityTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2|3|4;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for restaurant functionality visibility types.\n */\nexport type ApiV2RestaurantFunctionalityVisibilityTypeResponseType = ApiV2BaseResponseType<ApiV2RestaurantFunctionalityVisibilityTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantFunctionalityVisibilityTypeApiEndpointSlug = 'restaurant-functionality-visibility-types';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2RestaurantUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Background color for the upload.\n\t */\n\tbackgroundColor: string;\n\n\t/**\n\t * ID of the restaurant the entity belongs to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t *\n\t */\n\trestaurantUploadTypeId: number;\n\n\t/**\n\t * Sort order for the connection.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantUploadConnectionApiEndpointSlug = 'restaurant-uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2SessionApiEndpointSlug = 'session';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2ShowcasePositionTypeType } from '@matochmat/api-client/src/v2/showcasePositionType';\nimport type { ApiV2ShowcaseTypeType } from '@matochmat/api-client/src/v2/showcaseType';\nimport type { ApiV2ShowcaseUploadConnectionType } from '@matochmat/api-client/src/v2/showcaseUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase endpoint.\n */\nexport type ApiV2ShowcaseType =\n{\n\t/**\n\t * Determines whether or not to use `allow-same-origin` for iframes.\n\t */\n\tallowSameOrigin: boolean;\n\n\t/**\n\t * String representation of when the showcase was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Desktop image for the showcase.\n\t */\n\tdesktopImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the showcase and the upload.\n\t\t */\n\t\tshowcaseUpload: ApiV2ShowcaseUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Whether or not to display the ad in all cities.\n\t */\n\tdisplayInAllCities: boolean;\n\n\t/**\n\t * Whether or not to display the ad in the app variant of the page.\n\t */\n\tdisplayInApp: boolean;\n\n\t/**\n\t * Whether or not to display the ad on the web variant of the page.\n\t */\n\tdisplayOnWeb: boolean;\n\n\t/**\n\t * String representation of which date the ad should stop displaying.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the showcase.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the ad was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Link to where a click on the showcase should send the user in desktop.\n\t */\n\tlinkHrefDesktop: string;\n\n\t/**\n\t * Link to where a click on the showcase should send the user in mobile.\n\t */\n\tlinkHrefMobile: string;\n\n\t/**\n\t * Max view count before the showcase stops being displayed.\n\t */\n\tmaxViewCount: number|null;\n\n\t/**\n\t * Mobile image for the showcase.\n\t */\n\tmobileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the showcase and the upload.\n\t\t */\n\t\tshowcaseUpload: ApiV2ShowcaseUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Readable name of the showcase.\n\t */\n\tname: string;\n\n\t/**\n\t * Whether or not to open the link in a new tab.\n\t */\n\topenInNewTab: boolean;\n\n\t/**\n\t * Script content to load when using the script type.\n\t */\n\tscriptContent: string;\n\n\t/**\n\t * ID of the position type (which defines where on the page the ad should be displayed) for the showcase.\n\t */\n\tshowcasePositionTypeId: ApiV2ShowcasePositionTypeType[ 'id' ];\n\n\t/**\n\t * ID of the showcase type.\n\t */\n\tshowcaseTypeId: ApiV2ShowcaseTypeType[ 'id' ];\n\n\t/**\n\t * String representation of which date the ad should start displaying.\n\t */\n\tstartDate: string;\n};\n\n/**\n * The API response type for showcases.\n */\nexport type ApiV2ShowcaseResponseType = ApiV2BaseResponseType<ApiV2ShowcaseType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseApiEndpointSlug = 'showcases';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase position type endpoint.\n */\nexport type ApiV2ShowcasePositionTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Height for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueHeightDesktop: number;\n\n\t/**\n\t * Height for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueHeightMobile: number;\n\n\t/**\n\t * Width for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueWidthDesktop: number;\n\n\t/**\n\t * Width for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueWidthMobile: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the entity.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for showcases.\n */\nexport type ApiV2ShowcasePositionTypeResponseType = ApiV2BaseResponseType<ApiV2ShowcasePositionTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcasePositionTypeApiEndpointSlug = 'showcase-position-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase type endpoint.\n */\nexport type ApiV2ShowcaseTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Height for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueHeightDesktop: number;\n\n\t/**\n\t * Height for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueHeightMobile: number;\n\n\t/**\n\t * Width for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueWidthDesktop: number;\n\n\t/**\n\t * Width for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueWidthMobile: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the entity.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for showcase types.\n */\nexport type ApiV2ShowcaseTypeResponseType = ApiV2BaseResponseType<ApiV2ShowcaseTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseTypeApiEndpointSlug = 'showcase-types';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2ShowcaseUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Showcase ID upload belongs to.\n\t */\n\tshowcaseId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tshowcaseUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseUploadConnectionApiEndpointSlug = 'showcase-uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseViewCountApiEndpointSlug = 'showcase-view-counts';\n\n/**\n * Legacy support for an earlier variant having incorrect variable casing.\n */\nexport const apiV2ShowCaseViewCountApiEndpointSlug = apiV2ShowcaseViewCountApiEndpointSlug;\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order items endpoint.\n */\nexport type ApiV2SubscriptionPeriodType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * End date for the subscription period\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for subscription period.\n\t */\n\tid: number;\n\n\t/**\n\t * Whether or not the period has been invalidated.\n\t */\n\tinvalidated: boolean;\n\n\t/**\n\t * Keeps track of whether or not the current period is a trial period.\n\t */\n\tisTrialPeriod: boolean;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Keeps track of whether the period was manually created or not.\n\t */\n\tmanuallyCreated: boolean;\n\n\t/**\n\t * Restaurant ID the period relates to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Start date for the subscription period.\n\t */\n\tstartDate: string;\n};\n\n/**\n * The API response type for order items.\n */\nexport type ApiV2SubscriptionPeriodResponseType = ApiV2BaseResponseType<ApiV2SubscriptionPeriodType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2SubscriptionPeriodApiEndpointSlug = 'subscription-periods';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2//baseResponse';\n\n/**\n * Type for available/allowed system settings.\n */\nexport type SystemSettingKeyType =\n'allowPositionFeaturesOutsideApp'|\n'allowRestaurantsToUploadFiles'|\n'appUpdateNoticeDismissButtonEnabled'|\n'appUpdateNoticeForVersionsOlderThan'|\n'appUpdateNoticeText'|\n'appUpdateNoticeTitle'|\n'autoCorrections'|\n'cateringRequestFormEnabled'|\n'cateringRequestFormOnIntegrationsEnabled'|\n'cateringDefaultSortIsShuffled'|\n'dinnerDefaultSortIsShuffled'|\n'dinnerDishCategoryColumnSelectionEnabled'|\n'dinnerFunctionalityLinksEnabled'|\n'emptyMenuRemindersActive'|\n'faux404CityCateringPageText'|\n'faux404CityCateringPageTitle'|\n'faux404CityDinnerPageText'|\n'faux404CityDinnerPageTitle'|\n'faux404CityLunchBoxPageText'|\n'faux404CityLunchBoxPageTitle'|\n'faux404CityPageText'|\n'faux404CityPageTitle'|\n'getTheAppBannerActive'|\n'googleMapsApiKey'|\n'lunchBoxesNoticeDisplayTime'|\n'mapFunctionalityEnabled'|\n'promptUserToShareDialogActive'|\n'ptrEnabled'|\n'readShoppingCartDataFromStorage'|\n'showcaseMoreInformationContent'|\n'showcaseMoreInformationTitle'|\n'searchTagsEnabled'|\n'simulatedServerTimeShift'|\n'tellRestaurantAboutUsActive'|\n'tellUsAboutRestaurantActive';\n\n/**\n * Type for the individual array items in v2 of the API for the system settings endpoint.\n */\nexport type ApiV2SystemSettingType<T = unknown> =\n{\n\t/**\n\t * Whether or not the setting is backend only. This will still be sent to the frontend in some cases (admin editing etc.) which is why it's still available here.\n\t */\n\tbackendOnly?: boolean;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Key for the setting.\n\t */\n\tsettingKey: SystemSettingKeyType;\n\n\t/**\n\t * Value for the setting.\n\t */\n\tsettingValue: T;\n};\n\n/**\n * The API response type for system settings.\n */\nexport type ApiV2SystemSettingResponseType = ApiV2BaseResponseType<ApiV2SystemSettingType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2SystemSettingApiEndpointSlug = 'system-settings';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the table booking endpoint.\n */\nexport type ApiV2TableBookingType =\n{\n\t/**\n\t * Booking link.\n\t */\n\tbookingLink: string;\n\n\t/**\n\t * Text about table booking conditions.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email to use for table booking.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Link to use for iframe embeds of external table booking systems.\n\t */\n\tiframeLink: string;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number for booking tables.\n\t */\n\tphone: string;\n\n\t/**\n\t * ID of the restaurant that the table booking info is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the specific type of table booking that's selected.\n\t */\n\ttableBookingTypeId: number;\n\n\t/**\n\t * Informational text about table booking conditions.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for table booking info.\n */\nexport type ApiV2TableBookingResponseType = ApiV2BaseResponseType<ApiV2TableBookingType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TableBookingApiEndpointSlug = 'table-booking';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the take away endpoint.\n */\nexport type ApiV2TakeAwayType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email adress to be used for ordering take away.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number used for ordering take away.\n\t */\n\tphone: string;\n\n\t/**\n\t * Restaurant ID the entity belongs to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Link to external take away site.\n\t */\n\ttakeAwayLink: string;\n\n\t/**\n\t * ID of the specific type of take away that's selected.\n\t */\n\ttakeAwayTypeId: number;\n\n\t/**\n\t * Text to display to end users when displaying take away information.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for take away info.\n */\nexport type ApiV2TakeAwayResponseType = ApiV2BaseResponseType<ApiV2TakeAwayType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TakeAwayApiEndpointSlug = 'take-away';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2TeamMemberUploadConnectionType } from '@matochmat/api-client/src/v2/teamMemberUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the team member endpoint.\n */\nexport type ApiV2TeamMemberType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * First name (given name).\n\t */\n\tfirstName: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Last name (family name).\n\t */\n\tlastName: string;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The profile image for the team member.\n\t */\n\tprofileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the team member and the upload.\n\t\t */\n\t\tteamMemberUpload: ApiV2TeamMemberUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Name of the role that the team member holds.\n\t */\n\troleName: string;\n\n\t/**\n\t * Numeric sorting order to determine display order.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * The API response type for team member.\n */\nexport type ApiV2TeamMemberResponseType = ApiV2BaseResponseType<ApiV2TeamMemberType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TeamMemberApiEndpointSlug = 'team-members';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2TeamMemberUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Team member ID upload belongs to.\n\t */\n\tteamMemberId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tteamMemberUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TeamMemberUploadConnectionApiEndpointSlug = 'team-member-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2UpdatedByTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for \"Updated by\" types.\n */\nexport type ApiV2UpdatedByTypeResponseType = ApiV2BaseResponseType<ApiV2UpdatedByTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2UpdatedByTypeApiEndpointSlug = 'updated-by-types';\n\n","export type ApiV2UploadType =\n{\n\t/**\n\t * Determines whether or not this uses our alternative OG image variant.\n\t */\n\talternativeOgImage: boolean;\n\n\t/**\n\t * Base name of the file.\n\t */\n\tbaseName: string;\n\n\t/**\n\t * File extension.\n\t */\n\textension: string;\n\n\t/**\n\t * Unique entity ID.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Factor to use for modifying image max sizes in different parts of the system.\n\t */\n\tmaxSizeFactor: number;\n\n\t/**\n\t * Directory path to the file.\n\t */\n\tpath: string;\n\n\t/**\n\t * Timestamp for when the image was first uploaded.\n\t */\n\tuploaded: string;\n\n\t/**\n\t * Who uploaded the file.\n\t */\n\tuploader: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2UploadsApiEndpointSlug = 'uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2UserApiEndpointSlug = 'users';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\nimport type { ApiV3BlockContentUploadConnectionType } from '@matochmat/api-client/src/v3/blockContentUploadConnectionType';\nimport type { ApiV3UploadType } from '@matochmat/api-client/src/v3/upload';\n\n/**\n * Type for the individual array items in v3 of the API for the block content endpoint.\n */\nexport type ApiV3BlockContentType =\n{\n\t/**\n\t * Type ID for which type of block content it is.\n\t */\n\tblockContentTypeId: 1|2|3|4;\n\n\t/**\n\t * JSON with the block data.\n\t */\n\t// TODO: Make this more relevant\n\tblocks: any;\n\n\t/**\n\t * Timestamp for when the entity was last created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Description of the content to use for metadata.\n\t */\n\tdescription: string;\n\n\t/**\n\t * Featured image for the content.\n\t */\n\tfeaturedImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the block content and the upload.\n\t\t */\n\t\tblockContentUpload: ApiV3BlockContentUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV3UploadType;\n\t};\n\n\t/**\n\t * Unique ID for the content.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Slug for block content that is displayed as a standalone page.\n\t */\n\tslug: string;\n\n\t/**\n\t * Whether or not the slug is \"locked\", meaning it should be treated as non-editable due to some constraint such as being linked to from hardcoded buttons or links.\n\t */\n\tslugIsLocked: boolean;\n\n\t/**\n\t * Title for block content that is displayed as a standalone page.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for block content items.\n */\nexport type ApiV3BlockContentResponseType = ApiV3BaseResponseType<ApiV3BlockContentType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3BlockContentApiEndpointSlug = 'block-content';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV3BlockContentUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * ID of the block content the entity belongs to.\n\t */\n\tblockContentId: number;\n\n\t/**\n\t *\n\t */\n\tblockContentUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV3BlockContentUploadConnectionApiEndpointSlug = 'block-content-uploads';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the coupon location endpoint.\n */\nexport type ApiV3CouponLocationType =\n{\n\t/**\n\t * City ID for the location.\n\t */\n\tcityId: number;\n\n\t/**\n\t * ID of the coupon the location represents.\n\t */\n\tcouponId: number;\n\n\t/**\n\t * Unique ID for the coupon location.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n};\n\n/**\n * The API response type for coupon location items.\n */\nexport type ApiV3CouponLocationResponseType = ApiV3BaseResponseType<ApiV3CouponLocationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3CouponLocationApiEndpointSlug = 'coupon-locations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant management endpoint.\n */\nexport type ApiV3RestaurantManagementType =\n{\n\t/**\n\t * String representation of when the entity relation was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the restaurant management.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity relation was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Restaurant ID.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * User ID.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for restaurant management items.\n */\nexport type ApiV3RestaurantManagementResponseType = ApiV3BaseResponseType<ApiV3RestaurantManagementType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantManagementApiEndpointSlug = 'restaurant-management';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant registration endpoint.\n */\nexport type ApiV3RestaurantRegistrationType =\n{\n\t/**\n\t *\n\t */\n\tadditionalInfoStepCompleted: boolean;\n\n\t/**\n\t *\n\t */\n\tcitySelectionStepCompleted: boolean;\n\n\t/**\n\t *\n\t */\n\tcreateAccountStepCompleted: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t *\n\t */\n\tcreateRestaurantStepCompleted: boolean;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the city the restaurant should be registered in.\n\t */\n\trestaurantCityId: number|null;\n\n\t/**\n\t * ID of the restaurant which the registration concerns.\n\t */\n\trestaurantId: number|null;\n\n\t/**\n\t *\n\t */\n\trestaurantRegistrationStateId: number;\n\n\t/**\n\t * Token to allow resuming an abandoned registration.\n\t */\n\tresumeToken: string;\n\n\t/**\n\t * ID of the user which the registration concerns.\n\t */\n\tuserId: number|null;\n};\n\n/**\n * The API response type for restaurant registration items.\n */\nexport type ApiV3RestaurantRegistrationResponseType = ApiV3BaseResponseType<ApiV3RestaurantRegistrationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantRegistrationApiEndpointSlug = 'restaurant-registrations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant registration state endpoint.\n */\nexport type ApiV3RestaurantRegistrationStateType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the state.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for restaurant registration state items.\n */\nexport type ApiV3RestaurantRegistrationStateResponseType = ApiV3BaseResponseType<ApiV3RestaurantRegistrationStateType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantRegistrationStateApiEndpointSlug = 'restaurant-registration-states';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the showcase location endpoint.\n */\nexport type ApiV3ShowcaseLocationType =\n{\n\t/**\n\t * City ID for the location.\n\t */\n\tcityId: number;\n\n\t/**\n\t * Unique ID for the showcase location.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the showcase the location represents.\n\t */\n\tshowcaseId: number;\n};\n\n/**\n * The API response type for showcase location items.\n */\nexport type ApiV3ShowcaseLocationResponseType = ApiV3BaseResponseType<ApiV3ShowcaseLocationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3ShowcaseLocationApiEndpointSlug = 'showcase-locations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the showcase user role connection endpoint.\n */\nexport type ApiV3ShowcaseUserRoleConnectionType =\n{\n\t/**\n\t * String representation of when the entity relation was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the showcase user role connection.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity relation was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Showcase ID.\n\t */\n\tshowcaseId: number;\n\n\t/**\n\t * User role ID.\n\t */\n\tuserRoleId: number;\n};\n\n/**\n * The API response type for showcase user role connection items.\n */\nexport type ApiV3ShowcaseUserRoleConnectionResponseType = ApiV3BaseResponseType<ApiV3ShowcaseUserRoleConnectionType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3ShowcaseUserRoleConnectionApiEndpointSlug = 'showcase-user-role-connections';\n"],"names":[],"mappings":";;AAgDA;;AAEG;AACI,MAAM,kCAAkC,GAAG;;AChClD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACHhD;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACTxD;;AAEG;AACI,MAAM,mCAAmC,GAAG;;ACsCnD;;AAEG;AACI,MAAM,yCAAyC,GAAG;;ACsJzD;;AAEG;AACI,MAAM,wBAAwB,GAAG;;ACnMxC;;AAEG;AACI,MAAM,wCAAwC,GAAG;;AC6CxD;;AAEG;AACI,MAAM,0BAA0B,GAAG;;ACG1C;;AAEG;AACI,MAAM,yCAAyC,GAAG;;AC7BzD;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACb9D;;AAEG;AACI,MAAM,gEAAgE,GAAG;;ACmChF;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AC3DjD;;AAEG;AACI,MAAM,iDAAiD,GAAG;;ACwCjE;;AAEG;AACI,MAAM,gCAAgC,GAAG;;AC1ChD;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACH9C;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACTtD;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AC4DjD;;AAEG;AACI,MAAM,uCAAuC,GAAG;;AC9CvD;;AAEG;AACI,MAAM,2CAA2C,GAAG;;ACiB3D;;AAEG;AACI,MAAM,kDAAkD,GAAG;;ACOlE;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AClEjD;;AAEG;AACI,MAAM,mDAAmD,GAAG;;AC6CnE;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACE9D;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACxD9D;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACyC5C;;AAEG;AACI,MAAM,yCAAyC,GAAG;;AC2BzD;;AAEG;AACI,MAAM,sCAAsC,GAAG;;AC7EtD;;AAEG;AACI,MAAM,oCAAoC,GAAG;;AC6CpD;;AAEG;AACI,MAAM,0BAA0B,GAAG;;ACR1C;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACiB1D;;AAEG;AAEI,MAAM,+BAA+B,GAAG;;ACgB/C;;AAEG;AACI,MAAM,yBAAyB,GAAG;;ACvBzC;;AAEG;AACI,MAAM,6BAA6B,GAAG;;ACb7C;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACvBtD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACsB1D;;AAEG;AACI,MAAM,sCAAsC,GAAG;;AC5BtD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACE1D;;AAEG;AACI,MAAM,0BAA0B,GAAG;;AC0M1C;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACrN9C;;AAEG;AACI,MAAM,yDAAyD,GAAG;;ACXzE;;AAEG;AACI,MAAM,8CAA8C,GAAG;;AC5B9D;;AAEG;AACI,MAAM,2BAA2B,GAAG;;ACmI3C;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACpF5C;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACHxD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACzChD;;AAEG;AACI,MAAM,4CAA4C,GAAG;;AClB5D;;AAEG;AACI,MAAM,qCAAqC,GAAG;AAErD;;AAEG;AACI,MAAM,qCAAqC,GAAG;;ACkDrD;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACiBtD;;AAEG;AACI,MAAM,iCAAiC,GAAG;;ACbjD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACbhD;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACK5C;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACtD9C;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACe9D;;AAEG;AACI,MAAM,iCAAiC,GAAG;;ACYjD;;AAEG;AACI,MAAM,2BAA2B,GAAG;;ACnD3C;;AAEG;AACI,MAAM,wBAAwB,GAAG;;AC0ExC;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACjEhD;;AAEG;AACI,MAAM,gDAAgD,GAAG;;ACehE;;AAEG;AACI,MAAM,kCAAkC,GAAG;;ACElD;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACgCxD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;AC3C1D;;AAEG;AACI,MAAM,+CAA+C,GAAG;;ACH/D;;AAEG;AACI,MAAM,oCAAoC,GAAG;;ACEpD;;AAEG;AACI,MAAM,8CAA8C,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":["../src/v2/bonusStampCode.ts","../src/v2/cateringDish.ts","../src/v2/cateringDishCategory.ts","../src/v2/cateringDishTab.ts","../src/v2/cateringFunctionality.ts","../src/v2/city.ts","../src/v2/cityUploadConnection.ts","../src/v2/coupon.ts","../src/v2/crawlingConfiguration.ts","../src/v2/crawlingConfigurationModel.ts","../src/v2/crawlingConfigurationTextContentStrategyType.ts","../src/v2/customerQuote.ts","../src/v2/customerQuoteUploadConnection.ts","../src/v2/deliveryInfo.ts","../src/v2/dinnerDish.ts","../src/v2/dinnerDishCategory.ts","../src/v2/dinnerDishTab.ts","../src/v2/dinnerFunctionality.ts","../src/v2/dinnerFunctionalityType.ts","../src/v2/displaySolutionV1Configuration.ts","../src/v2/emailTemplate.ts","../src/v2/firebaseDeviceRegistrationToken.ts","../src/v2/integrationV1Configuration.ts","../src/v2/integrationV2Configuration.ts","../src/v2/lunchBox.ts","../src/v2/lunchBoxFunctionality.ts","../src/v2/lunchFunctionality.ts","../src/v2/menuCrawlerProxy.ts","../src/v2/notice.ts","../src/v2/notificationPreference.ts","../src/v2/openingHour.ts","../src/v2/order.ts","../src/v2/orderItem.ts","../src/v2/pdfV1Configuration.ts","../src/v2/pdfV1ConfigurationType.ts","../src/v2/pdfV2Configuration.ts","../src/v2/pdfV2ConfigurationType.ts","../src/v2/policy.ts","../src/v2/restaurant.ts","../src/v2/restaurantFunctionalityVisibilityType.ts","../src/v2/restaurantUploadConnection.ts","../src/v2/session.ts","../src/v2/showcase.ts","../src/v2/showcasePositionType.ts","../src/v2/showcaseType.ts","../src/v2/showcaseUploadConnection.ts","../src/v2/showcaseViewCount.ts","../src/v2/subscriptionPeriod.ts","../src/v2/systemSetting.ts","../src/v2/tableBooking.ts","../src/v2/takeAway.ts","../src/v2/teamMember.ts","../src/v2/teamMemberUploadConnection.ts","../src/v2/updatedByType.ts","../src/v2/upload.ts","../src/v2/user.ts","../src/v3/blockContent.ts","../src/v3/blockContentUploadConnectionType.ts","../src/v3/couponLocation.ts","../src/v3/restaurantManagement.ts","../src/v3/restaurantRegistration.ts","../src/v3/restaurantRegistrationState.ts","../src/v3/showcaseLocation.ts","../src/v3/showcaseUserRoleConnection.ts"],"sourcesContent":["import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the bonus stamp code endpoint.\n */\nexport type ApiV2BonusStampCodeType =\n{\n\t/**\n\t * The batch the code belongs to.\n\t */\n\tbatch: string;\n\n\t/**\n\t * The actual bonus stamp code.\n\t */\n\tcode: string;\n\n\t/**\n\t * Whether or not the code has been deactivated.\n\t */\n\tdeactivated: boolean;\n\n\t/**\n\t * Timestamp for when the code was generated.\n\t */\n\tgenerated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the code was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant the code is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for bonus stamp codes.\n */\nexport type ApiV2BonusStampCodeResponseType = ApiV2BaseResponseType<ApiV2BonusStampCodeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2BonusStampCodeApiEndpointSlug = 'bonus-stamp-codes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishType } from '@matochmat/api-client/src/v2/dish';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish endpoint.\n */\nexport type ApiV2CateringDishType = ApiV2DishType &\n{\n\t/**\n\t * ID of the category that the catering dish belongs to.\n\t */\n\tcateringDishCategoryId: number;\n};\n\n/**\n * The API response type for catering dishes.\n */\nexport type ApiV2CateringDishResponseType = ApiV2BaseResponseType<ApiV2CateringDishType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishApiEndpointSlug = 'catering-dishes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishCategoryType } from '@matochmat/api-client/src/v2/dishCategory';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish category endpoint.\n */\nexport type ApiV2CateringDishCategoryType = ApiV2DishCategoryType &\n{\n\t/**\n\t * ID of the category that the catering dish belongs to.\n\t */\n\tcateringDishTabId: number;\n};\n\n/**\n * The API response type for catering dish categories.\n */\nexport type ApiV2CateringDishCategoryResponseType = ApiV2BaseResponseType<ApiV2CateringDishCategoryType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishCategoryApiEndpointSlug = 'catering-dish-categories';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishTabType } from '@matochmat/api-client/src/v2/dishTab';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish category endpoint.\n */\nexport type ApiV2CateringDishTabType = ApiV2DishTabType;\n\n/**\n * The API response type for catering dish categories.\n */\nexport type ApiV2CateringDishTabResponseType = ApiV2BaseResponseType<ApiV2CateringDishTabType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishTabApiEndpointSlug = 'catering-dish-tabs';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the catering functionality endpoint.\n */\nexport type ApiV2CateringFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Number of columns to display catering menu in.\n\t */\n\tcolumns: 1|2|3;\n\n\t/**\n\t * Text about catering conditions.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * The email address to send catering requests to.\n\t */\n\trequestEmail: string;\n\n\t/**\n\t * To what date to show the restaurant's catering participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n\n\t/**\n\t * Whether or not the restaurant has a catering venue available for hire.\n\t */\n\tvenueAvailable: boolean;\n\n\t/**\n\t * Text next to the venue image gallery.\n\t */\n\tvenueText: string;\n\n\t/**\n\t * Title shown above the venue text.\n\t */\n\tvenueTextTitle: string;\n};\n\n/**\n * The API response type for catering functionality items.\n */\nexport type ApiV2CateringFunctionalityResponseType = ApiV2BaseResponseType<ApiV2CateringFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringFunctionalityApiEndpointSlug = 'catering-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CityUploadConnectionType } from '@matochmat/api-client/src/v2/cityUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the city endpoint.\n */\nexport type ApiV2CityType =\n{\n\t/**\n\t * Determines whether the city is active or not.\n\t * @deprecated This is no longer in use and you should instead look at the city type.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchPanorama: string;\n\n\t/**\n\t * Aliases to match against when searching. Not actually displayed on the page.\n\t */\n\taliases: string[];\n\n\t/**\n\t * Determines whether the city has bonus stamp information active or not. Note that this is exactly that, a toggle for INFORMATION only. It does NOT change either visibility or functionality of bonus stamps if a restaurant in the city has them active.\n\t */\n\tbonusStampsActive: boolean;\n\n\t/**\n\t * Determines whether the city has any catering restaurants active.\n\t */\n\tcateringFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any catering restaurants in sales mode.\n\t */\n\tcateringFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the catering list.\n\t */\n\tcateringIntroText: string;\n\n\t/**\n\t * String representation of when the city was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Whether or not the city uses daily lunch tip functionality.\n\t */\n\tdailyLunchTipActive: boolean;\n\n\t/**\n\t * Determines whether the city has any dinner restaurants active.\n\t */\n\tdinnerFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any dinner restaurants in sales mode.\n\t */\n\tdinnerFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the dinner list.\n\t */\n\tdinnerIntroText: string;\n\n\t/**\n\t * Unique ID for the city.\n\t */\n\tid: number;\n\n\t/**\n\t * Intro text to display on the functionality selection pages.\n\t */\n\tintroText: string;\n\n\t/**\n\t * String representation of the last time the city was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Determines whether the city has any lunch box restaurants active.\n\t */\n\tlunchBoxFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any lunch box restaurants in sales mode.\n\t */\n\tlunchBoxFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the lunch box list.\n\t */\n\tlunchBoxIntroText: string;\n\n\t/**\n\t * Determines whether the city has any lunch restaurants active.\n\t */\n\tlunchFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any lunch restaurants in sales mode.\n\t */\n\tlunchFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the lunch page.\n\t */\n\tlunchIntroText: string;\n\n\t/**\n\t * Readable name of the city.\n\t */\n\tname: string;\n\n\t/**\n\t * Determines whether or not to send a notification to the administrative personnel when a restaurant owner with a restaurant in this city logs in.\n\t */\n\tnotifyWhenRestaurantLogsIn: boolean;\n\n\t/**\n\t * OG image for the city.\n\t */\n\tsharingImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the city and the upload.\n\t\t */\n\t\tcityUpload: ApiV2CityUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Machine readable name of the city used in URLs among other places.\n\t */\n\tslug: string;\n};\n\n/**\n * The API response type for cities.\n */\nexport type ApiV2CityResponseType = ApiV2BaseResponseType<ApiV2CityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CityApiEndpointSlug = 'cities';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2CityUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * City ID upload belongs to.\n\t */\n\tcityId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tcityUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CityUploadConnectionApiEndpointSlug = 'city-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the coupon endpoint.\n */\nexport type ApiV2CouponType =\n{\n\t/**\n\t * Determines whether or not the coupon is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * The actual coupon code string.\n\t */\n\tcode: string;\n\n\t/**\n\t * String representation of when the coupon was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Description of the coupon.\n\t */\n\tdescription: string;\n\n\t/**\n\t * String representation of the end date of the coupon validity.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the coupon.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the coupon was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the coupon.\n\t */\n\tname: string;\n\n\t/**\n\t * String representation of the start date of the coupon validity.\n\t */\n\tstartDate: string;\n\n\t/**\n\t * Determines whether or not the coupon is valid for all cities.\n\t */\n\tvalidForAllCities: boolean;\n};\n\n/**\n * The API response type for coupons.\n */\nexport type ApiV2CouponResponseType = ApiV2BaseResponseType<ApiV2CouponType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CouponApiEndpointSlug = 'coupons';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CrawlingConfigurationTextContentStrategyTypeType } from '@matochmat/api-client/src/v2/crawlingConfigurationTextContentStrategyType';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration endpoint.\n */\nexport type ApiV2CrawlingConfigurationType =\n{\n\t/**\n\t * Whether or not the functionality is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * Additional prompt to send to the data processor.\n\t */\n\tadditionalPrompt: string;\n\n\t/**\n\t * Determines if the restaurant should be crawled even if a menu already exists.\n\t */\n\tcrawlEvenIfMenuExists: boolean;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for crawling configuration functionality.\n\t */\n\tid: number;\n\n\t/**\n\t * Max tokens to use for parsing data.\n\t */\n\tmaxTokens: number;\n\n\t/**\n\t * Model to use for parsing data.\n\t */\n\tmodel: string;\n\n\t/**\n\t * Restaurant ID the functionality relates to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Strategy to use for getting text content.\n\t */\n\ttextContentStrategyTypeId: ApiV2CrawlingConfigurationTextContentStrategyTypeType[ 'id' ];\n\n\t/**\n\t * URL to crawl.\n\t */\n\turl: string;\n\n\t/**\n\t * Weekdays to crawl on.\n\t */\n\tweekdays: number[];\n};\n\n/**\n * The API response type for crawling configurations.\n */\nexport type ApiV2CrawlingConfigurationResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationApiEndpointSlug = 'crawling-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration model endpoint.\n */\nexport type ApiV2CrawlingConfigurationModelType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for crawling configuration functionality.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n\n\t/**\n\t * Actual name used in the APIs.\n\t */\n\tslug: string;\n\n\t/**\n\t * Sort order. Lower for earlier.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * The API response type for crawling configuration models.\n */\nexport type ApiV2CrawlingConfigurationModelResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationModelType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationModelApiEndpointSlug = 'crawling-configuration-models';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration text content strategy type endpoint.\n */\nexport type ApiV2CrawlingConfigurationTextContentStrategyTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2|3;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for crawling configurations.\n */\nexport type ApiV2CrawlingConfigurationTextContentStrategyTypeResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationTextContentStrategyTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationTextContentStrategyTypeApiEndpointSlug = 'crawling-configuration-text-content-strategy-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CustomerQuoteUploadConnectionType } from '@matochmat/api-client/src/v2/customerQuoteUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the customer quote endpoint.\n */\nexport type ApiV2CustomerQuoteType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * String representation of which date the ad should stop displaying.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the quoted person.\n\t */\n\tname: string;\n\n\t/**\n\t * Profile image for the customer quote.\n\t */\n\tprofileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the customer quote and the upload.\n\t\t */\n\t\tcustomerQuoteUpload: ApiV2CustomerQuoteUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Name of the role that the customer quote holds.\n\t */\n\tquoteText: string;\n\n\t/**\n\t * Name of the restaurant the quote is relevant for.\n\t */\n\trestaurantName: string;\n\n\t/**\n\t * Numeric sorting order to determine display order.\n\t */\n\tsortOrder: number;\n}\n\n/**\n * The API response type for customer quotes.\n */\nexport type ApiV2CustomerQuoteResponseType = ApiV2BaseResponseType<ApiV2CustomerQuoteType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CustomerQuoteApiEndpointSlug = 'customer-quotes';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2CustomerQuoteUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Customer quote ID upload belongs to.\n\t */\n\tcustomerQuoteId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tcustomerQuoteUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CustomerQuoteUploadConnectionApiEndpointSlug = 'customer-quote-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the delivery info endpoint.\n */\nexport type ApiV2DeliveryInfoType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * ID of the specific type of delivery info that's selected.\n\t */\n\tdeliveryInfoTypeId: number;\n\n\t/**\n\t * Delivery link.\n\t */\n\tdeliveryLink: string;\n\n\t/**\n\t * Email to use for delivery info.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number for booking tables.\n\t */\n\tphone: string;\n\n\t/**\n\t * ID of the restaurant that the delivery info info is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Informational text about delivery info conditions.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for delivery info.\n */\nexport type ApiV2DeliveryInfoResponseType = ApiV2BaseResponseType<ApiV2DeliveryInfoType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DeliveryInfoApiEndpointSlug = 'delivery-info';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishType } from '@matochmat/api-client/src/v2/dish';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish endpoint.\n */\nexport type ApiV2DinnerDishType = ApiV2DishType &\n{\n\t/**\n\t * ID of the category that the dinner dish belongs to.\n\t */\n\tdinnerDishCategoryId: number;\n};\n\n/**\n * The API response type for dinner dishes.\n */\nexport type ApiV2DinnerDishResponseType = ApiV2BaseResponseType<ApiV2DinnerDishType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishApiEndpointSlug = 'dinner-dishes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishCategoryType } from '@matochmat/api-client/src/v2/dishCategory';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish category endpoint.\n */\nexport type ApiV2DinnerDishCategoryType = ApiV2DishCategoryType &\n{\n\t/**\n\t * ID of the category that the dinner dish belongs to.\n\t */\n\tdinnerDishTabId: number;\n};\n\n/**\n * The API response type for dinner dish categories.\n */\nexport type ApiV2DinnerDishCategoryResponseType = ApiV2BaseResponseType<ApiV2DinnerDishCategoryType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishCategoryApiEndpointSlug = 'dinner-dish-categories';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishTabType } from '@matochmat/api-client/src/v2/dishTab';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish category endpoint.\n */\nexport type ApiV2DinnerDishTabType = ApiV2DishTabType;\n\n/**\n * The API response type for dinner dish categories.\n */\nexport type ApiV2DinnerDishTabResponseType = ApiV2BaseResponseType<ApiV2DinnerDishTabType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishTabApiEndpointSlug = 'dinner-dish-tabs';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2OpeningHourType } from '@matochmat/api-client/src/v2/openingHour';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\nimport type { ApiV2RestaurantUploadConnectionType } from '@matochmat/api-client/src/v2/restaurantUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner functionality endpoint.\n */\nexport type ApiV2DinnerFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Number of columns to display dinner menu in.\n\t */\n\tcolumns: 1|2|3;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Determines what type of dinner functionality to show.\n\t */\n\tdinnerFunctionalityTypeId: number;\n\n\t/**\n\t * Background for the restaurant details page header.\n\t */\n\tdinnerMenuImage:\n\t{\n\t\t/**\n\t\t *\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t *\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Link to use for external link type menus.\n\t */\n\tmenuLink: string;\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * List of opening hours for the dinner.\n\t */\n\topeningHourList:\n\t{\n\t\titems: ApiV2OpeningHourType[];\n\t};\n\n\t/**\n\t * To what date to show the restaurant's dinner participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for dinner functionality items.\n */\nexport type ApiV2DinnerFunctionalityResponseType = ApiV2BaseResponseType<ApiV2DinnerFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerFunctionalityApiEndpointSlug = 'dinner-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner functionality type endpoint.\n */\nexport type ApiV2DinnerFunctionalityTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for dinner functionality types.\n */\nexport type ApiV2DinnerFunctionalityTypeResponseType = ApiV2BaseResponseType<ApiV2DinnerFunctionalityTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerFunctionalityTypeApiEndpointSlug = 'dinner-functionality-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the display solution v1 configuration endpoint.\n */\nexport type ApiV2DisplaySolutionV1ConfigurationType =\n{\n\t/**\n\t * Whether or not the display solution is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * JSX for rendering the actual display solution. Note that as the name suggests this is JSX and not plain JS.\n\t */\n\trenderJsx: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Generic setup settings for the display solution.\n\t */\n\tsettings: string;\n};\n\n/**\n * The API response type for display solution v1 configurations.\n */\nexport type ApiV2DisplaySolutionV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2DisplaySolutionV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DisplaySolutionV1ConfigurationApiEndpointSlug = 'display-solution-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the email template endpoint.\n */\nexport type ApiV2EmailTemplateType =\n{\n\t/**\n\t * Determines if the template is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * Main text content.\n\t */\n\tcontent: string;\n\n\t/**\n\t * String representation of when the email template was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Determines if the template should default to sending a blind carbon copy to Hubspot.\n\t */\n\thubspotBcc: boolean;\n\n\t/**\n\t * Unique ID for the email template.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the email template was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the email template.\n\t */\n\tname: string;\n\n\t/**\n\t * Determines if the template is required by the system (which will limit what admins can do with it in regards to disabling and deleting).\n\t */\n\trequiredBySystem: boolean;\n\n\t/**\n\t * Determines if the template should be shown in the GUI where admins can choose a template for their emails.\n\t */\n\tshowInTemplateSelection: boolean;\n\n\t/**\n\t * Title of the email.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for email templates.\n */\nexport type ApiV2EmailTemplateResponseType = ApiV2BaseResponseType<ApiV2EmailTemplateType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2EmailTemplateApiEndpointSlug = 'email-templates';\n","/**\n * API endpoint slug.\n */\nexport const apiV2FirebaseDeviceRegistrationTokenApiEndpointSlug = 'firebase-device-registration-tokens';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the integration v1 configuration endpoint.\n */\nexport type ApiV2IntegrationV1ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * The type of integration to display.\n\t */\n\tintegrationTypeId: 1|2|3;\n\n\t/**\n\t * Integration specific JS.\n\t */\n\tjs: string;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2IntegrationV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2IntegrationV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2IntegrationV1ConfigurationApiEndpointSlug = 'integration-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the integration v1 configuration endpoint.\n */\nexport type ApiV2IntegrationV2ConfigurationType =\n{\n\t/**\n\t * Whether or not the integration is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * JS for preparing the page before the actual rendering. This should normally be left empty and used only for special scenarios where the site you're integrating isn't built dynamically enough to support rendering the integration to look the same as the rest of the page (hardcoded things, strict post type setups, etc.). Note that as the name suggests this is JSX to be used for setting up the necessary stuff beforehand and not JSX (which you're expected to place in {@link ApiV2IntegrationV2ConfigurationType.renderJsx} instead).\n\t */\n\tpreRenderJs: string;\n\n\t/**\n\t * JSX for rendering the actual integration. Note that as the name suggests this is JSX and not plain JS (which you're expected to place in {@link ApiV2IntegrationV2ConfigurationType.preRenderJs} instead).\n\t */\n\trenderJsx: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2IntegrationV2ConfigurationResponseType = ApiV2BaseResponseType<ApiV2IntegrationV2ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2IntegrationV2ConfigurationApiEndpointSlug = 'integration-v2-configurations';\n","/**\n * API endpoint slug.\n */\nexport const apiV2LunchBoxApiEndpointSlug = 'lunch-boxes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the lunch box functionality endpoint.\n */\nexport type ApiV2LunchBoxFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Conditions for ordering lunch boxes.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Latest possible time for placing orders.\n\t */\n\tlatestOrderTime: string;\n\n\t/**\n\t * The email address to send confirmation emails to.\n\t */\n\torderConfirmationEmail: string;\n\n\t/**\n\t * Earliest time for picking up orders.\n\t */\n\tpickupTimeFrom: string;\n\n\t/**\n\t * Latest time for picking up orders.\n\t */\n\tpickupTimeTo: string;\n\n\t/**\n\t * To what date to show the restaurant's lunch box participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for lunch box functionality.\n */\nexport type ApiV2LunchBoxFunctionalityResponseType = ApiV2BaseResponseType<ApiV2LunchBoxFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2LunchBoxFunctionalityApiEndpointSlug = 'lunch-box-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2LunchDishType } from '@matochmat/api-client/src/v2/lunchDish';\nimport type { ApiV2OpeningHourType } from '@matochmat/api-client/src/v2/openingHour';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the lunch functionality endpoint.\n */\nexport type ApiV2LunchFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Controls whether or not the restaurant has bonus stamps active.\n\t */\n\tbonusStampsActive: boolean;\n\n\t/**\n\t * Text entered by the restaurant concerning which-if any-special conditions apply for getting bonus stamps.\n\t */\n\tbonusStampsConditionsText: string;\n\n\t/**\n\t * Date when the restaurant should be displayed as the daily lunch tip.\n\t */\n\tdailyLunchTipDate: string|null;\n\n\t/**\n\t * Date when the restaurant would've been displayed as the daily lunch tip but was intentionally skipped.\n\t */\n\tdailyLunchTipSkippedDate: string|null;\n\n\t/**\n\t * Which days to send empty menu reminders.\n\t */\n\temptyMenuReminderDays: number[];\n\n\t/**\n\t * Email to use when sending out empty menu reminders.\n\t */\n\temptyMenuReminderEmail: string;\n\n\t/**\n\t * String representation of the date when empty menu reminder was last sent. Used to avoid sending twice the same day if the script is run twice.\n\t */\n\temptyMenuReminderLastSent: string;\n\n\t/**\n\t * Default lunch menu data.\n\t */\n\tlunchDefault: ApiV2LunchDishType[];\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * List of opening hours for the lunch.\n\t */\n\topeningHourList:\n\t{\n\t\titems: ApiV2OpeningHourType[];\n\t};\n\n\t/**\n\t * To what date to show the restaurant's lunch participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for lunch functionality.\n */\nexport type ApiV2LunchFunctionalityResponseType = ApiV2BaseResponseType<ApiV2LunchFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2LunchFunctionalityApiEndpointSlug = 'lunch-functionality';\n","/**\n * Endpoint for the local API to connect with the menu crawler.\n */\nexport const apiV2MenuCrawlerProxyApiEndpointSlug = 'menu-crawler-proxy';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the notice endpoint.\n */\nexport type ApiV2NoticeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Whether or not the notice has been handled.\n\t */\n\thandled: boolean;\n\n\t/**\n\t * Timestamp for when the notice was handled.\n\t */\n\thandledOn: string;\n\n\t/**\n\t * Unique ID for the notice.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Title of the notice.\n\t */\n\ttext: string;\n\n\t/**\n\t * Title of the notice.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for notices.\n */\nexport type ApiV2NoticeResponseType = ApiV2BaseResponseType<ApiV2NoticeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2NoticeApiEndpointSlug = 'notices';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the notification preference endpoint.\n */\nexport type ApiV2NotificationPreferenceType =\n{\n\t/**\n\t * Whether or not the notifications are active. We keep this as a separate value to allow users to keep their preferences after toggling notifications off and then on (as deleting it and re-adding it would mean data loss for any future properties/columns we choose to save on this class).\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the user was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant that we want to send notifications for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the user to send notifications to. Note that this isn't used to send the actual notifications, that part is handled by device registration tokens that the user gets from Firebase if they do indeed opt in to push notifications. Note that those are indeed opt-in, and just because we have a notification preference here it does NOT necessarily mean we actually have any registration tokens to send the notifications to.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for notification preferences.\n */\nexport type ApiV2NotificationPreferenceResponseType = ApiV2BaseResponseType<ApiV2NotificationPreferenceType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2NotificationPreferenceApiEndpointSlug = 'notification-preferences';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the opening hour endpoint.\n */\nexport type ApiV2OpeningHourType =\n{\n\t/**\n\t * Time of day when the restaurant closes.\n\t */\n\tclosingTime: string;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * ID of the dinner functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tdinnerFunctionalityId: number|null;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Day of the week the opening hours are relevant for. This is ISO (not american) weekday number (not index).\n\t */\n\tisoWeekdayNumber: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the lunch box functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tlunchBoxFunctionalityId: number|null;\n\n\t/**\n\t * ID of the lunch functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tlunchFunctionalityId: number|null;\n\n\t/**\n\t * Whether or not the restaurant is open on this day.\n\t */\n\topen: boolean;\n\n\t/**\n\t * Time of day when the restaurant opens.\n\t */\n\topeningTime: string;\n};\n\n/**\n * The API response type for opening hour items.\n */\nexport type ApiV2OpeningHourResponseType = ApiV2BaseResponseType<ApiV2OpeningHourType[], number>;\n\n/**\n * API endpoint slug.\n */\n\nexport const apiV2OpeningHourApiEndpointSlug = 'opening-hours';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order endpoint.\n */\nexport type ApiV2OrderType =\n{\n\t/**\n\t * Keeps track of whether or not the user has confirmed their order.\n\t */\n\tconfirmed: boolean;\n\n\t/**\n\t * Timestamp for when the order was confirmed.\n\t */\n\tconfirmedDate: string|null;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email address to the customer.\n\t */\n\tcustomerEmail: string;\n\n\t/**\n\t * First name of the customer.\n\t */\n\tcustomerFirstName: string;\n\n\t/**\n\t * Last name of the customer.\n\t */\n\tcustomerLastName: string;\n\n\t/**\n\t * Phone number to the customer.\n\t */\n\tcustomerPhone: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Order number to display to the user. Not to be confused with the database ID.\n\t */\n\torderNumber: number|null;\n\n\t/**\n\t * Keeps track of whether or not the restaurant has processed the order.\n\t */\n\tprocessed: boolean;\n\n\t/**\n\t * Timestamp for when the order was processed.\n\t */\n\tprocessedDate: string|null;\n\n\t/**\n\t * ID of the restaurant that placed the order was placed on.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the user that placed the order.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for orders.\n */\nexport type ApiV2OrderResponseType = ApiV2BaseResponseType<ApiV2OrderType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2OrderApiEndpointSlug = 'orders';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order items endpoint.\n */\nexport type ApiV2OrderItemType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Description of the lunch box.\n\t */\n\tdescription: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the lunch box that the item refers to.\n\t */\n\tlunchBoxId: number|null;\n\n\t/**\n\t * Name of the lunch box.\n\t */\n\tname: string;\n\n\t/**\n\t * ID of the order that the item belongs to.\n\t */\n\torderId: number;\n\n\t/**\n\t * Price of the lunch box.\n\t */\n\tprice: number;\n\n\t/**\n\t * Number of items ordered.\n\t */\n\tquantity: number;\n\n\t/**\n\t * List of tags for the dish.\n\t */\n\ttags: string[];\n};\n\n/**\n * The API response type for order items.\n */\nexport type ApiV2OrderItemResponseType = ApiV2BaseResponseType<ApiV2OrderItemType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2OrderItemApiEndpointSlug = 'order-items';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the PDF v1 configuration endpoint.\n */\nexport type ApiV2PdfV1ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * PDF specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Template (HTML code and custom shortcodes) for custom daily PDF menus.\n\t */\n\tdailyTemplate: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The type of PDF to display.\n\t */\n\tpdfV1ConfigurationTypeId: 1|2;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Template (HTML code and custom shortcodes) for custom weekly PDF menus.\n\t */\n\tweeklyTemplate: string;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2PdfV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2PdfV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV1ConfigurationApiEndpointSlug = 'pdf-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2PdfV1ConfigurationTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for PDF v1 configuration types.\n */\nexport type ApiV2PdfV1ConfigurationTypeResponseType = ApiV2BaseResponseType<ApiV2PdfV1ConfigurationTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV1ConfigurationTypeApiEndpointSlug = 'pdf-v1-configuration-types';\n\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the PDF v2 configuration endpoint.\n */\nexport type ApiV2PdfV2ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * PDF specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * The render JSX for the daily lunch menu (only relevant for custom PDFs).\n\t */\n\tdailyLunchMenuRenderJsx: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The type of PDF to display.\n\t */\n\tpdfV2ConfigurationTypeId: 1|2;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Generic setup settings for the PDF.\n\t */\n\tsettings: string;\n\n\t/**\n\t * The render JSX for the weekly lunch menu (only relevant for custom PDFs).\n\t */\n\tweeklyLunchMenuRenderJsx: string;\n};\n\n/**\n * The API response type for integration v2 configurations.\n */\nexport type ApiV2PdfV2ConfigurationResponseType = ApiV2BaseResponseType<ApiV2PdfV2ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV2ConfigurationApiEndpointSlug = 'pdf-v2-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2PdfV2ConfigurationTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for PDF v2 configuration types.\n */\nexport type ApiV2PdfV2ConfigurationTypeResponseType = ApiV2BaseResponseType<ApiV2PdfV2ConfigurationTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV2ConfigurationTypeApiEndpointSlug = 'pdf-v2-configuration-types';\n\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the policy endpoint.\n */\nexport type ApiV2PolicyType =\n{\n\t/**\n\t * String representation of when the policy was last created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the policy.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the policy was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Actual policy text.\n\t */\n\tpolicyText: string;\n\n\t/**\n\t * Date stamp for when the policy is valid from.\n\t */\n\tvalidFrom: string;\n};\n\n/**\n * The API response type for policys.\n */\nexport type ApiV2PolicyResponseType = ApiV2BaseResponseType<ApiV2PolicyType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PolicyApiEndpointSlug = 'policies';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CateringFunctionalityType } from '@matochmat/api-client/src/v2/cateringFunctionality';\nimport type { ApiV2CrawlingConfigurationType } from '@matochmat/api-client/src/v2/crawlingConfiguration';\nimport type { ApiV2DeliveryInfoType } from '@matochmat/api-client/src/v2/deliveryInfo';\nimport type { ApiV2DinnerFunctionalityType } from '@matochmat/api-client/src/v2/dinnerFunctionality';\nimport type { ApiV2LunchBoxFunctionalityType } from '@matochmat/api-client/src/v2/lunchBoxFunctionality';\nimport type { ApiV2LunchFunctionalityType } from '@matochmat/api-client/src/v2/lunchFunctionality';\nimport type { ApiV2RestaurantUploadConnectionType } from '@matochmat/api-client/src/v2/restaurantUploadConnection';\nimport type { ApiV2TableBookingType } from '@matochmat/api-client/src/v2/tableBooking';\nimport type { ApiV2TakeAwayType } from '@matochmat/api-client/src/v2/takeAway';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the restaurant endpoint.\n */\nexport type ApiV2RestaurantType =\n{\n\t/**\n\t * Text that describes the restaurant. Displays on the page to give lunch guests a bit of info and is commonly also used for page metadata.\n\t */\n\tabout: string;\n\n\t/**\n\t * String representation of the street address for the restaurant.\n\t */\n\taddress: string;\n\n\t/**\n\t * Aliases to match against when searching. Not actually displayed on the page.\n\t */\n\taliases: string[];\n\n\t/**\n\t *\n\t */\n\tcateringFunctionality: ApiV2CateringFunctionalityType;\n\n\t/**\n\t * City ID determining which city the restaurant belongs to.\n\t */\n\tcityId: number;\n\n\t/**\n\t * A compounded rating collected from different rating sites around the web.\n\t */\n\tcompoundRating: number|null;\n\n\t/**\n\t *\n\t */\n\tcrawlingConfiguration: ApiV2CrawlingConfigurationType;\n\n\t/**\n\t * String representation of when the restaurant was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Delivery information.\n\t */\n\tdeliveryInfo: ApiV2DeliveryInfoType;\n\n\t/**\n\t * Background for the restaurant details page header.\n\t */\n\tdetailsPageHeaderBackground:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t *\n\t */\n\tdinnerFunctionality: ApiV2DinnerFunctionalityType;\n\n\t/**\n\t * Restaurant email. Used only for displaying to lunch guests and not for sending emails from the system.\n\t */\n\temail: string;\n\n\t/**\n\t * URL to the restaurant's Facebook page.\n\t */\n\tfacebook: string;\n\n\t/**\n\t * Unique entity ID.\n\t */\n\tid: number;\n\n\t/**\n\t * URL to the restaurant's Instagram page.\n\t */\n\tinstagram: string;\n\n\t/**\n\t * String representation of when the restaurant was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * String representation of latitude.\n\t */\n\tlatitude: string;\n\n\t/**\n\t * Restaurant logotype info.\n\t */\n\tlogotype:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Background for the restaurant logotype.\n\t */\n\tlogotypeBackground:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * String representation of longitude.\n\t */\n\tlongitude: string;\n\n\t/**\n\t *\n\t */\n\tlunchBoxFunctionality: ApiV2LunchBoxFunctionalityType;\n\n\t/**\n\t *\n\t */\n\tlunchFunctionality: ApiV2LunchFunctionalityType;\n\n\t/**\n\t * Name of the restaurant.\n\t */\n\tname: string;\n\n\t/**\n\t * Text shown below or in conjunction with name to convey further information. Useful when two restaurants have the same title but are located in different places or when a restaurant has changed name (for instance \"Loremrestaurangen (f.d. Ipsumrestaurangen)\").\n\t */\n\tnameSubtext: string;\n\n\t/**\n\t * Obfuscated unique ID. Used for legacy purposes only.\n\t * @deprecated Only used for legacy support for apps and third parties. In the long run we may consider removing this.\n\t * @see ID is now saved as a plain property.\n\t */\n\tobfuscatedId: string;\n\n\t/**\n\t * Determines which version of PDFs to use.\n\t */\n\tpdfVersion: 2;\n\n\t/**\n\t * Whether or not the restaurant is pending and awaiting approval.\n\t */\n\tpending: boolean;\n\n\t/**\n\t * Phone number to the restaurant.\n\t */\n\tphone: string;\n\n\t/**\n\t * Where the price range of the items the restaurant serves starts at. This is on a scale of 1 to 4.\n\t */\n\tpriceRangeFrom: number|null;\n\n\t/**\n\t * Where the price range of the items the restaurant serves ends at. This is on a scale of 1 to 4.\n\t */\n\tpriceRangeTo: number|null;\n\n\t/**\n\t * Tags the restaurant is connected to.\n\t */\n\trestaurantTagIds: number[];\n\n\t/**\n\t * Machine readable name of the restaurant.\n\t */\n\tslug: string;\n\n\t/**\n\t * The URL for the static map image.\n\t */\n\tstaticMapImageUrl: string;\n\n\t/**\n\t * Table booking info for the restaurant.\n\t */\n\ttableBooking: ApiV2TableBookingType;\n\n\t/**\n\t * Take away info for the restaurant.\n\t */\n\ttakeAway: ApiV2TakeAwayType;\n\n\t/**\n\t * Type for who updates the restaurant's menus.\n\t */\n\tupdatedByTypeId: 1|2|3;\n\n\t/**\n\t * URL to the restaurant's own website.\n\t */\n\twebsite: string;\n};\n\n/**\n * The API response type for restaurants.\n */\nexport type ApiV2RestaurantResponseType = ApiV2BaseResponseType<ApiV2RestaurantType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantApiEndpointSlug = 'restaurants';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the restaurant functionality visibility types endpoint.\n */\nexport type ApiV2RestaurantFunctionalityVisibilityTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2|3|4;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for restaurant functionality visibility types.\n */\nexport type ApiV2RestaurantFunctionalityVisibilityTypeResponseType = ApiV2BaseResponseType<ApiV2RestaurantFunctionalityVisibilityTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantFunctionalityVisibilityTypeApiEndpointSlug = 'restaurant-functionality-visibility-types';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2RestaurantUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Background color for the upload.\n\t */\n\tbackgroundColor: string;\n\n\t/**\n\t * ID of the restaurant the entity belongs to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t *\n\t */\n\trestaurantUploadTypeId: number;\n\n\t/**\n\t * Sort order for the connection.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantUploadConnectionApiEndpointSlug = 'restaurant-uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2SessionApiEndpointSlug = 'session';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2ShowcasePositionTypeType } from '@matochmat/api-client/src/v2/showcasePositionType';\nimport type { ApiV2ShowcaseTypeType } from '@matochmat/api-client/src/v2/showcaseType';\nimport type { ApiV2ShowcaseUploadConnectionType } from '@matochmat/api-client/src/v2/showcaseUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase endpoint.\n */\nexport type ApiV2ShowcaseType =\n{\n\t/**\n\t * Determines whether or not to use `allow-same-origin` for iframes.\n\t */\n\tallowSameOrigin: boolean;\n\n\t/**\n\t * String representation of when the showcase was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Desktop image for the showcase.\n\t */\n\tdesktopImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the showcase and the upload.\n\t\t */\n\t\tshowcaseUpload: ApiV2ShowcaseUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Whether or not to display the ad in all cities.\n\t */\n\tdisplayInAllCities: boolean;\n\n\t/**\n\t * Whether or not to display the ad in the app variant of the page.\n\t */\n\tdisplayInApp: boolean;\n\n\t/**\n\t * Whether or not to display the ad on the web variant of the page.\n\t */\n\tdisplayOnWeb: boolean;\n\n\t/**\n\t * String representation of which date the ad should stop displaying.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the showcase.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the ad was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Link to where a click on the showcase should send the user in desktop.\n\t */\n\tlinkHrefDesktop: string;\n\n\t/**\n\t * Link to where a click on the showcase should send the user in mobile.\n\t */\n\tlinkHrefMobile: string;\n\n\t/**\n\t * Max view count before the showcase stops being displayed.\n\t */\n\tmaxViewCount: number|null;\n\n\t/**\n\t * Mobile image for the showcase.\n\t */\n\tmobileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the showcase and the upload.\n\t\t */\n\t\tshowcaseUpload: ApiV2ShowcaseUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Readable name of the showcase.\n\t */\n\tname: string;\n\n\t/**\n\t * Whether or not to open the link in a new tab.\n\t */\n\topenInNewTab: boolean;\n\n\t/**\n\t * Script content to load when using the script type.\n\t */\n\tscriptContent: string;\n\n\t/**\n\t * ID of the position type (which defines where on the page the ad should be displayed) for the showcase.\n\t */\n\tshowcasePositionTypeId: ApiV2ShowcasePositionTypeType[ 'id' ];\n\n\t/**\n\t * ID of the showcase type.\n\t */\n\tshowcaseTypeId: ApiV2ShowcaseTypeType[ 'id' ];\n\n\t/**\n\t * String representation of which date the ad should start displaying.\n\t */\n\tstartDate: string;\n};\n\n/**\n * The API response type for showcases.\n */\nexport type ApiV2ShowcaseResponseType = ApiV2BaseResponseType<ApiV2ShowcaseType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseApiEndpointSlug = 'showcases';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase position type endpoint.\n */\nexport type ApiV2ShowcasePositionTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Height for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueHeightDesktop: number;\n\n\t/**\n\t * Height for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueHeightMobile: number;\n\n\t/**\n\t * Width for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueWidthDesktop: number;\n\n\t/**\n\t * Width for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueWidthMobile: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the entity.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for showcases.\n */\nexport type ApiV2ShowcasePositionTypeResponseType = ApiV2BaseResponseType<ApiV2ShowcasePositionTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcasePositionTypeApiEndpointSlug = 'showcase-position-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase type endpoint.\n */\nexport type ApiV2ShowcaseTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Height for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueHeightDesktop: number;\n\n\t/**\n\t * Height for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueHeightMobile: number;\n\n\t/**\n\t * Width for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueWidthDesktop: number;\n\n\t/**\n\t * Width for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueWidthMobile: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the entity.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for showcase types.\n */\nexport type ApiV2ShowcaseTypeResponseType = ApiV2BaseResponseType<ApiV2ShowcaseTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseTypeApiEndpointSlug = 'showcase-types';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2ShowcaseUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Showcase ID upload belongs to.\n\t */\n\tshowcaseId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tshowcaseUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseUploadConnectionApiEndpointSlug = 'showcase-uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseViewCountApiEndpointSlug = 'showcase-view-counts';\n\n/**\n * Legacy support for an earlier variant having incorrect variable casing.\n */\nexport const apiV2ShowCaseViewCountApiEndpointSlug = apiV2ShowcaseViewCountApiEndpointSlug;\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order items endpoint.\n */\nexport type ApiV2SubscriptionPeriodType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * End date for the subscription period\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for subscription period.\n\t */\n\tid: number;\n\n\t/**\n\t * Whether or not the period has been invalidated.\n\t */\n\tinvalidated: boolean;\n\n\t/**\n\t * Keeps track of whether or not the current period is a trial period.\n\t */\n\tisTrialPeriod: boolean;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Keeps track of whether the period was manually created or not.\n\t */\n\tmanuallyCreated: boolean;\n\n\t/**\n\t * Restaurant ID the period relates to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Start date for the subscription period.\n\t */\n\tstartDate: string;\n};\n\n/**\n * The API response type for order items.\n */\nexport type ApiV2SubscriptionPeriodResponseType = ApiV2BaseResponseType<ApiV2SubscriptionPeriodType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2SubscriptionPeriodApiEndpointSlug = 'subscription-periods';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2//baseResponse';\n\n/**\n * Type for available/allowed system settings.\n */\nexport type SystemSettingKeyType =\n'allowPositionFeaturesOutsideApp'|\n'allowRestaurantsToUploadFiles'|\n'appUpdateNoticeDismissButtonEnabled'|\n'appUpdateNoticeForVersionsOlderThan'|\n'appUpdateNoticeText'|\n'appUpdateNoticeTitle'|\n'autoCorrections'|\n'cateringRequestFormEnabled'|\n'cateringRequestFormOnIntegrationsEnabled'|\n'cateringDefaultSortIsShuffled'|\n'dinnerDefaultSortIsShuffled'|\n'dinnerDishCategoryColumnSelectionEnabled'|\n'dinnerFunctionalityLinksEnabled'|\n'emptyMenuRemindersActive'|\n'faux404CityCateringPageText'|\n'faux404CityCateringPageTitle'|\n'faux404CityDinnerPageText'|\n'faux404CityDinnerPageTitle'|\n'faux404CityLunchBoxPageText'|\n'faux404CityLunchBoxPageTitle'|\n'faux404CityPageText'|\n'faux404CityPageTitle'|\n'getTheAppBannerActive'|\n'googleMapsApiKey'|\n'lunchBoxesNoticeDisplayTime'|\n'mapFunctionalityEnabled'|\n'promptUserToShareDialogActive'|\n'ptrEnabled'|\n'readShoppingCartDataFromStorage'|\n'showcaseMoreInformationContent'|\n'showcaseMoreInformationTitle'|\n'searchTagsEnabled'|\n'simulatedServerTimeShift'|\n'tellRestaurantAboutUsActive'|\n'tellUsAboutRestaurantActive';\n\n/**\n * Type for the individual array items in v2 of the API for the system settings endpoint.\n */\nexport type ApiV2SystemSettingType<T = unknown> =\n{\n\t/**\n\t * Whether or not the setting is backend only. This will still be sent to the frontend in some cases (admin editing etc.) which is why it's still available here.\n\t */\n\tbackendOnly?: boolean;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Key for the setting.\n\t */\n\tsettingKey: SystemSettingKeyType;\n\n\t/**\n\t * Value for the setting.\n\t */\n\tsettingValue: T;\n};\n\n/**\n * The API response type for system settings.\n */\nexport type ApiV2SystemSettingResponseType = ApiV2BaseResponseType<ApiV2SystemSettingType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2SystemSettingApiEndpointSlug = 'system-settings';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the table booking endpoint.\n */\nexport type ApiV2TableBookingType =\n{\n\t/**\n\t * Booking link.\n\t */\n\tbookingLink: string;\n\n\t/**\n\t * Text about table booking conditions.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email to use for table booking.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Link to use for iframe embeds of external table booking systems.\n\t */\n\tiframeLink: string;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number for booking tables.\n\t */\n\tphone: string;\n\n\t/**\n\t * ID of the restaurant that the table booking info is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the specific type of table booking that's selected.\n\t */\n\ttableBookingTypeId: number;\n\n\t/**\n\t * Informational text about table booking conditions.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for table booking info.\n */\nexport type ApiV2TableBookingResponseType = ApiV2BaseResponseType<ApiV2TableBookingType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TableBookingApiEndpointSlug = 'table-booking';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the take away endpoint.\n */\nexport type ApiV2TakeAwayType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email adress to be used for ordering take away.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number used for ordering take away.\n\t */\n\tphone: string;\n\n\t/**\n\t * Restaurant ID the entity belongs to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Link to external take away site.\n\t */\n\ttakeAwayLink: string;\n\n\t/**\n\t * ID of the specific type of take away that's selected.\n\t */\n\ttakeAwayTypeId: number;\n\n\t/**\n\t * Text to display to end users when displaying take away information.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for take away info.\n */\nexport type ApiV2TakeAwayResponseType = ApiV2BaseResponseType<ApiV2TakeAwayType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TakeAwayApiEndpointSlug = 'take-away';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2TeamMemberUploadConnectionType } from '@matochmat/api-client/src/v2/teamMemberUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the team member endpoint.\n */\nexport type ApiV2TeamMemberType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * First name (given name).\n\t */\n\tfirstName: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Last name (family name).\n\t */\n\tlastName: string;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The profile image for the team member.\n\t */\n\tprofileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the team member and the upload.\n\t\t */\n\t\tteamMemberUpload: ApiV2TeamMemberUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Name of the role that the team member holds.\n\t */\n\troleName: string;\n\n\t/**\n\t * Numeric sorting order to determine display order.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * The API response type for team member.\n */\nexport type ApiV2TeamMemberResponseType = ApiV2BaseResponseType<ApiV2TeamMemberType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TeamMemberApiEndpointSlug = 'team-members';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2TeamMemberUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Team member ID upload belongs to.\n\t */\n\tteamMemberId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tteamMemberUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TeamMemberUploadConnectionApiEndpointSlug = 'team-member-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2UpdatedByTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for \"Updated by\" types.\n */\nexport type ApiV2UpdatedByTypeResponseType = ApiV2BaseResponseType<ApiV2UpdatedByTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2UpdatedByTypeApiEndpointSlug = 'updated-by-types';\n\n","export type ApiV2UploadType =\n{\n\t/**\n\t * Determines whether or not this uses our alternative OG image variant.\n\t */\n\talternativeOgImage: boolean;\n\n\t/**\n\t * Base name of the file.\n\t */\n\tbaseName: string;\n\n\t/**\n\t * File extension.\n\t */\n\textension: string;\n\n\t/**\n\t * Unique entity ID.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Factor to use for modifying image max sizes in different parts of the system.\n\t */\n\tmaxSizeFactor: number;\n\n\t/**\n\t * Directory path to the file.\n\t */\n\tpath: string;\n\n\t/**\n\t * Timestamp for when the image was first uploaded.\n\t */\n\tuploaded: string;\n\n\t/**\n\t * Who uploaded the file.\n\t */\n\tuploader: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2UploadsApiEndpointSlug = 'uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2UserApiEndpointSlug = 'users';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\nimport type { ApiV3BlockContentUploadConnectionType } from '@matochmat/api-client/src/v3/blockContentUploadConnectionType';\nimport type { ApiV3UploadType } from '@matochmat/api-client/src/v3/upload';\n\n/**\n * Type for the individual array items in v3 of the API for the block content endpoint.\n */\nexport type ApiV3BlockContentType =\n{\n\t/**\n\t * Type ID for which type of block content it is.\n\t */\n\tblockContentTypeId: 1|2|3|4;\n\n\t/**\n\t * JSON with the block data.\n\t */\n\t// TODO: Make this more relevant\n\tblocks:\n\t{\n\t\tcontent: any[];\n\t\troot: { props: Record<string, any>; };\n\t\tzones: any[];\n\t};\n\n\t/**\n\t * Timestamp for when the entity was last created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Description of the content to use for metadata.\n\t */\n\tdescription: string;\n\n\t/**\n\t * Featured image for the content.\n\t */\n\tfeaturedImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the block content and the upload.\n\t\t */\n\t\tblockContentUpload: ApiV3BlockContentUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV3UploadType;\n\t};\n\n\t/**\n\t * Unique ID for the content.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Slug for block content that is displayed as a standalone page.\n\t */\n\tslug: string;\n\n\t/**\n\t * Whether or not the slug is \"locked\", meaning it should be treated as non-editable due to some constraint such as being linked to from hardcoded buttons or links.\n\t */\n\tslugIsLocked: boolean;\n\n\t/**\n\t * Title for block content that is displayed as a standalone page.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for block content items.\n */\nexport type ApiV3BlockContentResponseType = ApiV3BaseResponseType<ApiV3BlockContentType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3BlockContentApiEndpointSlug = 'block-content';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV3BlockContentUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * ID of the block content the entity belongs to.\n\t */\n\tblockContentId: number;\n\n\t/**\n\t *\n\t */\n\tblockContentUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV3BlockContentUploadConnectionApiEndpointSlug = 'block-content-uploads';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the coupon location endpoint.\n */\nexport type ApiV3CouponLocationType =\n{\n\t/**\n\t * City ID for the location.\n\t */\n\tcityId: number;\n\n\t/**\n\t * ID of the coupon the location represents.\n\t */\n\tcouponId: number;\n\n\t/**\n\t * Unique ID for the coupon location.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n};\n\n/**\n * The API response type for coupon location items.\n */\nexport type ApiV3CouponLocationResponseType = ApiV3BaseResponseType<ApiV3CouponLocationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3CouponLocationApiEndpointSlug = 'coupon-locations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant management endpoint.\n */\nexport type ApiV3RestaurantManagementType =\n{\n\t/**\n\t * String representation of when the entity relation was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the restaurant management.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity relation was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Restaurant ID.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * User ID.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for restaurant management items.\n */\nexport type ApiV3RestaurantManagementResponseType = ApiV3BaseResponseType<ApiV3RestaurantManagementType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantManagementApiEndpointSlug = 'restaurant-management';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant registration endpoint.\n */\nexport type ApiV3RestaurantRegistrationType =\n{\n\t/**\n\t *\n\t */\n\tadditionalInfoStepCompleted: boolean;\n\n\t/**\n\t *\n\t */\n\tcitySelectionStepCompleted: boolean;\n\n\t/**\n\t *\n\t */\n\tcreateAccountStepCompleted: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t *\n\t */\n\tcreateRestaurantStepCompleted: boolean;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the city the restaurant should be registered in.\n\t */\n\trestaurantCityId: number|null;\n\n\t/**\n\t * ID of the restaurant which the registration concerns.\n\t */\n\trestaurantId: number|null;\n\n\t/**\n\t *\n\t */\n\trestaurantRegistrationStateId: number;\n\n\t/**\n\t * Token to allow resuming an abandoned registration.\n\t */\n\tresumeToken: string;\n\n\t/**\n\t * ID of the user which the registration concerns.\n\t */\n\tuserId: number|null;\n};\n\n/**\n * The API response type for restaurant registration items.\n */\nexport type ApiV3RestaurantRegistrationResponseType = ApiV3BaseResponseType<ApiV3RestaurantRegistrationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantRegistrationApiEndpointSlug = 'restaurant-registrations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant registration state endpoint.\n */\nexport type ApiV3RestaurantRegistrationStateType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the state.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for restaurant registration state items.\n */\nexport type ApiV3RestaurantRegistrationStateResponseType = ApiV3BaseResponseType<ApiV3RestaurantRegistrationStateType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantRegistrationStateApiEndpointSlug = 'restaurant-registration-states';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the showcase location endpoint.\n */\nexport type ApiV3ShowcaseLocationType =\n{\n\t/**\n\t * City ID for the location.\n\t */\n\tcityId: number;\n\n\t/**\n\t * Unique ID for the showcase location.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the showcase the location represents.\n\t */\n\tshowcaseId: number;\n};\n\n/**\n * The API response type for showcase location items.\n */\nexport type ApiV3ShowcaseLocationResponseType = ApiV3BaseResponseType<ApiV3ShowcaseLocationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3ShowcaseLocationApiEndpointSlug = 'showcase-locations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the showcase user role connection endpoint.\n */\nexport type ApiV3ShowcaseUserRoleConnectionType =\n{\n\t/**\n\t * String representation of when the entity relation was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the showcase user role connection.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity relation was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Showcase ID.\n\t */\n\tshowcaseId: number;\n\n\t/**\n\t * User role ID.\n\t */\n\tuserRoleId: number;\n};\n\n/**\n * The API response type for showcase user role connection items.\n */\nexport type ApiV3ShowcaseUserRoleConnectionResponseType = ApiV3BaseResponseType<ApiV3ShowcaseUserRoleConnectionType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3ShowcaseUserRoleConnectionApiEndpointSlug = 'showcase-user-role-connections';\n"],"names":[],"mappings":";;AAgDA;;AAEG;AACI,MAAM,kCAAkC,GAAG;;AChClD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACHhD;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACTxD;;AAEG;AACI,MAAM,mCAAmC,GAAG;;ACsCnD;;AAEG;AACI,MAAM,yCAAyC,GAAG;;ACsJzD;;AAEG;AACI,MAAM,wBAAwB,GAAG;;ACnMxC;;AAEG;AACI,MAAM,wCAAwC,GAAG;;AC6CxD;;AAEG;AACI,MAAM,0BAA0B,GAAG;;ACG1C;;AAEG;AACI,MAAM,yCAAyC,GAAG;;AC7BzD;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACb9D;;AAEG;AACI,MAAM,gEAAgE,GAAG;;ACmChF;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AC3DjD;;AAEG;AACI,MAAM,iDAAiD,GAAG;;ACwCjE;;AAEG;AACI,MAAM,gCAAgC,GAAG;;AC1ChD;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACH9C;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACTtD;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AC4DjD;;AAEG;AACI,MAAM,uCAAuC,GAAG;;AC9CvD;;AAEG;AACI,MAAM,2CAA2C,GAAG;;ACiB3D;;AAEG;AACI,MAAM,kDAAkD,GAAG;;ACOlE;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AClEjD;;AAEG;AACI,MAAM,mDAAmD,GAAG;;AC6CnE;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACE9D;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACxD9D;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACyC5C;;AAEG;AACI,MAAM,yCAAyC,GAAG;;AC2BzD;;AAEG;AACI,MAAM,sCAAsC,GAAG;;AC7EtD;;AAEG;AACI,MAAM,oCAAoC,GAAG;;AC6CpD;;AAEG;AACI,MAAM,0BAA0B,GAAG;;ACR1C;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACiB1D;;AAEG;AAEI,MAAM,+BAA+B,GAAG;;ACgB/C;;AAEG;AACI,MAAM,yBAAyB,GAAG;;ACvBzC;;AAEG;AACI,MAAM,6BAA6B,GAAG;;ACb7C;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACvBtD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACsB1D;;AAEG;AACI,MAAM,sCAAsC,GAAG;;AC5BtD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACE1D;;AAEG;AACI,MAAM,0BAA0B,GAAG;;AC0M1C;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACrN9C;;AAEG;AACI,MAAM,yDAAyD,GAAG;;ACXzE;;AAEG;AACI,MAAM,8CAA8C,GAAG;;AC5B9D;;AAEG;AACI,MAAM,2BAA2B,GAAG;;ACmI3C;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACpF5C;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACHxD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACzChD;;AAEG;AACI,MAAM,4CAA4C,GAAG;;AClB5D;;AAEG;AACI,MAAM,qCAAqC,GAAG;AAErD;;AAEG;AACI,MAAM,qCAAqC,GAAG;;ACkDrD;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACiBtD;;AAEG;AACI,MAAM,iCAAiC,GAAG;;ACbjD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACbhD;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACK5C;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACtD9C;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACe9D;;AAEG;AACI,MAAM,iCAAiC,GAAG;;ACYjD;;AAEG;AACI,MAAM,2BAA2B,GAAG;;ACnD3C;;AAEG;AACI,MAAM,wBAAwB,GAAG;;AC+ExC;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACtEhD;;AAEG;AACI,MAAM,gDAAgD,GAAG;;ACehE;;AAEG;AACI,MAAM,kCAAkC,GAAG;;ACElD;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACgCxD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;AC3C1D;;AAEG;AACI,MAAM,+CAA+C,GAAG;;ACH/D;;AAEG;AACI,MAAM,oCAAoC,GAAG;;ACEpD;;AAEG;AACI,MAAM,8CAA8C,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":["../src/v2/bonusStampCode.ts","../src/v2/cateringDish.ts","../src/v2/cateringDishCategory.ts","../src/v2/cateringDishTab.ts","../src/v2/cateringFunctionality.ts","../src/v2/city.ts","../src/v2/cityUploadConnection.ts","../src/v2/coupon.ts","../src/v2/crawlingConfiguration.ts","../src/v2/crawlingConfigurationModel.ts","../src/v2/crawlingConfigurationTextContentStrategyType.ts","../src/v2/customerQuote.ts","../src/v2/customerQuoteUploadConnection.ts","../src/v2/deliveryInfo.ts","../src/v2/dinnerDish.ts","../src/v2/dinnerDishCategory.ts","../src/v2/dinnerDishTab.ts","../src/v2/dinnerFunctionality.ts","../src/v2/dinnerFunctionalityType.ts","../src/v2/displaySolutionV1Configuration.ts","../src/v2/emailTemplate.ts","../src/v2/firebaseDeviceRegistrationToken.ts","../src/v2/integrationV1Configuration.ts","../src/v2/integrationV2Configuration.ts","../src/v2/lunchBox.ts","../src/v2/lunchBoxFunctionality.ts","../src/v2/lunchFunctionality.ts","../src/v2/menuCrawlerProxy.ts","../src/v2/notice.ts","../src/v2/notificationPreference.ts","../src/v2/openingHour.ts","../src/v2/order.ts","../src/v2/orderItem.ts","../src/v2/pdfV1Configuration.ts","../src/v2/pdfV1ConfigurationType.ts","../src/v2/pdfV2Configuration.ts","../src/v2/pdfV2ConfigurationType.ts","../src/v2/policy.ts","../src/v2/restaurant.ts","../src/v2/restaurantFunctionalityVisibilityType.ts","../src/v2/restaurantUploadConnection.ts","../src/v2/session.ts","../src/v2/showcase.ts","../src/v2/showcasePositionType.ts","../src/v2/showcaseType.ts","../src/v2/showcaseUploadConnection.ts","../src/v2/showcaseViewCount.ts","../src/v2/subscriptionPeriod.ts","../src/v2/systemSetting.ts","../src/v2/tableBooking.ts","../src/v2/takeAway.ts","../src/v2/teamMember.ts","../src/v2/teamMemberUploadConnection.ts","../src/v2/updatedByType.ts","../src/v2/upload.ts","../src/v2/user.ts","../src/v3/blockContent.ts","../src/v3/blockContentUploadConnectionType.ts","../src/v3/couponLocation.ts","../src/v3/restaurantManagement.ts","../src/v3/restaurantRegistration.ts","../src/v3/restaurantRegistrationState.ts","../src/v3/showcaseLocation.ts","../src/v3/showcaseUserRoleConnection.ts"],"sourcesContent":["import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the bonus stamp code endpoint.\n */\nexport type ApiV2BonusStampCodeType =\n{\n\t/**\n\t * The batch the code belongs to.\n\t */\n\tbatch: string;\n\n\t/**\n\t * The actual bonus stamp code.\n\t */\n\tcode: string;\n\n\t/**\n\t * Whether or not the code has been deactivated.\n\t */\n\tdeactivated: boolean;\n\n\t/**\n\t * Timestamp for when the code was generated.\n\t */\n\tgenerated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the code was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant the code is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for bonus stamp codes.\n */\nexport type ApiV2BonusStampCodeResponseType = ApiV2BaseResponseType<ApiV2BonusStampCodeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2BonusStampCodeApiEndpointSlug = 'bonus-stamp-codes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishType } from '@matochmat/api-client/src/v2/dish';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish endpoint.\n */\nexport type ApiV2CateringDishType = ApiV2DishType &\n{\n\t/**\n\t * ID of the category that the catering dish belongs to.\n\t */\n\tcateringDishCategoryId: number;\n};\n\n/**\n * The API response type for catering dishes.\n */\nexport type ApiV2CateringDishResponseType = ApiV2BaseResponseType<ApiV2CateringDishType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishApiEndpointSlug = 'catering-dishes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishCategoryType } from '@matochmat/api-client/src/v2/dishCategory';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish category endpoint.\n */\nexport type ApiV2CateringDishCategoryType = ApiV2DishCategoryType &\n{\n\t/**\n\t * ID of the category that the catering dish belongs to.\n\t */\n\tcateringDishTabId: number;\n};\n\n/**\n * The API response type for catering dish categories.\n */\nexport type ApiV2CateringDishCategoryResponseType = ApiV2BaseResponseType<ApiV2CateringDishCategoryType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishCategoryApiEndpointSlug = 'catering-dish-categories';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishTabType } from '@matochmat/api-client/src/v2/dishTab';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish category endpoint.\n */\nexport type ApiV2CateringDishTabType = ApiV2DishTabType;\n\n/**\n * The API response type for catering dish categories.\n */\nexport type ApiV2CateringDishTabResponseType = ApiV2BaseResponseType<ApiV2CateringDishTabType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishTabApiEndpointSlug = 'catering-dish-tabs';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the catering functionality endpoint.\n */\nexport type ApiV2CateringFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Number of columns to display catering menu in.\n\t */\n\tcolumns: 1|2|3;\n\n\t/**\n\t * Text about catering conditions.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * The email address to send catering requests to.\n\t */\n\trequestEmail: string;\n\n\t/**\n\t * To what date to show the restaurant's catering participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n\n\t/**\n\t * Whether or not the restaurant has a catering venue available for hire.\n\t */\n\tvenueAvailable: boolean;\n\n\t/**\n\t * Text next to the venue image gallery.\n\t */\n\tvenueText: string;\n\n\t/**\n\t * Title shown above the venue text.\n\t */\n\tvenueTextTitle: string;\n};\n\n/**\n * The API response type for catering functionality items.\n */\nexport type ApiV2CateringFunctionalityResponseType = ApiV2BaseResponseType<ApiV2CateringFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringFunctionalityApiEndpointSlug = 'catering-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CityUploadConnectionType } from '@matochmat/api-client/src/v2/cityUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the city endpoint.\n */\nexport type ApiV2CityType =\n{\n\t/**\n\t * Determines whether the city is active or not.\n\t * @deprecated This is no longer in use and you should instead look at the city type.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchPanorama: string;\n\n\t/**\n\t * Aliases to match against when searching. Not actually displayed on the page.\n\t */\n\taliases: string[];\n\n\t/**\n\t * Determines whether the city has bonus stamp information active or not. Note that this is exactly that, a toggle for INFORMATION only. It does NOT change either visibility or functionality of bonus stamps if a restaurant in the city has them active.\n\t */\n\tbonusStampsActive: boolean;\n\n\t/**\n\t * Determines whether the city has any catering restaurants active.\n\t */\n\tcateringFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any catering restaurants in sales mode.\n\t */\n\tcateringFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the catering list.\n\t */\n\tcateringIntroText: string;\n\n\t/**\n\t * String representation of when the city was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Whether or not the city uses daily lunch tip functionality.\n\t */\n\tdailyLunchTipActive: boolean;\n\n\t/**\n\t * Determines whether the city has any dinner restaurants active.\n\t */\n\tdinnerFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any dinner restaurants in sales mode.\n\t */\n\tdinnerFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the dinner list.\n\t */\n\tdinnerIntroText: string;\n\n\t/**\n\t * Unique ID for the city.\n\t */\n\tid: number;\n\n\t/**\n\t * Intro text to display on the functionality selection pages.\n\t */\n\tintroText: string;\n\n\t/**\n\t * String representation of the last time the city was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Determines whether the city has any lunch box restaurants active.\n\t */\n\tlunchBoxFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any lunch box restaurants in sales mode.\n\t */\n\tlunchBoxFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the lunch box list.\n\t */\n\tlunchBoxIntroText: string;\n\n\t/**\n\t * Determines whether the city has any lunch restaurants active.\n\t */\n\tlunchFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any lunch restaurants in sales mode.\n\t */\n\tlunchFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the lunch page.\n\t */\n\tlunchIntroText: string;\n\n\t/**\n\t * Readable name of the city.\n\t */\n\tname: string;\n\n\t/**\n\t * Determines whether or not to send a notification to the administrative personnel when a restaurant owner with a restaurant in this city logs in.\n\t */\n\tnotifyWhenRestaurantLogsIn: boolean;\n\n\t/**\n\t * OG image for the city.\n\t */\n\tsharingImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the city and the upload.\n\t\t */\n\t\tcityUpload: ApiV2CityUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Machine readable name of the city used in URLs among other places.\n\t */\n\tslug: string;\n};\n\n/**\n * The API response type for cities.\n */\nexport type ApiV2CityResponseType = ApiV2BaseResponseType<ApiV2CityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CityApiEndpointSlug = 'cities';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2CityUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * City ID upload belongs to.\n\t */\n\tcityId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tcityUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CityUploadConnectionApiEndpointSlug = 'city-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the coupon endpoint.\n */\nexport type ApiV2CouponType =\n{\n\t/**\n\t * Determines whether or not the coupon is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * The actual coupon code string.\n\t */\n\tcode: string;\n\n\t/**\n\t * String representation of when the coupon was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Description of the coupon.\n\t */\n\tdescription: string;\n\n\t/**\n\t * String representation of the end date of the coupon validity.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the coupon.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the coupon was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the coupon.\n\t */\n\tname: string;\n\n\t/**\n\t * String representation of the start date of the coupon validity.\n\t */\n\tstartDate: string;\n\n\t/**\n\t * Determines whether or not the coupon is valid for all cities.\n\t */\n\tvalidForAllCities: boolean;\n};\n\n/**\n * The API response type for coupons.\n */\nexport type ApiV2CouponResponseType = ApiV2BaseResponseType<ApiV2CouponType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CouponApiEndpointSlug = 'coupons';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CrawlingConfigurationTextContentStrategyTypeType } from '@matochmat/api-client/src/v2/crawlingConfigurationTextContentStrategyType';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration endpoint.\n */\nexport type ApiV2CrawlingConfigurationType =\n{\n\t/**\n\t * Whether or not the functionality is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * Additional prompt to send to the data processor.\n\t */\n\tadditionalPrompt: string;\n\n\t/**\n\t * Determines if the restaurant should be crawled even if a menu already exists.\n\t */\n\tcrawlEvenIfMenuExists: boolean;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for crawling configuration functionality.\n\t */\n\tid: number;\n\n\t/**\n\t * Max tokens to use for parsing data.\n\t */\n\tmaxTokens: number;\n\n\t/**\n\t * Model to use for parsing data.\n\t */\n\tmodel: string;\n\n\t/**\n\t * Restaurant ID the functionality relates to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Strategy to use for getting text content.\n\t */\n\ttextContentStrategyTypeId: ApiV2CrawlingConfigurationTextContentStrategyTypeType[ 'id' ];\n\n\t/**\n\t * URL to crawl.\n\t */\n\turl: string;\n\n\t/**\n\t * Weekdays to crawl on.\n\t */\n\tweekdays: number[];\n};\n\n/**\n * The API response type for crawling configurations.\n */\nexport type ApiV2CrawlingConfigurationResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationApiEndpointSlug = 'crawling-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration model endpoint.\n */\nexport type ApiV2CrawlingConfigurationModelType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for crawling configuration functionality.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n\n\t/**\n\t * Actual name used in the APIs.\n\t */\n\tslug: string;\n\n\t/**\n\t * Sort order. Lower for earlier.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * The API response type for crawling configuration models.\n */\nexport type ApiV2CrawlingConfigurationModelResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationModelType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationModelApiEndpointSlug = 'crawling-configuration-models';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration text content strategy type endpoint.\n */\nexport type ApiV2CrawlingConfigurationTextContentStrategyTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2|3;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for crawling configurations.\n */\nexport type ApiV2CrawlingConfigurationTextContentStrategyTypeResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationTextContentStrategyTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationTextContentStrategyTypeApiEndpointSlug = 'crawling-configuration-text-content-strategy-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CustomerQuoteUploadConnectionType } from '@matochmat/api-client/src/v2/customerQuoteUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the customer quote endpoint.\n */\nexport type ApiV2CustomerQuoteType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * String representation of which date the ad should stop displaying.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the quoted person.\n\t */\n\tname: string;\n\n\t/**\n\t * Profile image for the customer quote.\n\t */\n\tprofileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the customer quote and the upload.\n\t\t */\n\t\tcustomerQuoteUpload: ApiV2CustomerQuoteUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Name of the role that the customer quote holds.\n\t */\n\tquoteText: string;\n\n\t/**\n\t * Name of the restaurant the quote is relevant for.\n\t */\n\trestaurantName: string;\n\n\t/**\n\t * Numeric sorting order to determine display order.\n\t */\n\tsortOrder: number;\n}\n\n/**\n * The API response type for customer quotes.\n */\nexport type ApiV2CustomerQuoteResponseType = ApiV2BaseResponseType<ApiV2CustomerQuoteType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CustomerQuoteApiEndpointSlug = 'customer-quotes';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2CustomerQuoteUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Customer quote ID upload belongs to.\n\t */\n\tcustomerQuoteId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tcustomerQuoteUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CustomerQuoteUploadConnectionApiEndpointSlug = 'customer-quote-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the delivery info endpoint.\n */\nexport type ApiV2DeliveryInfoType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * ID of the specific type of delivery info that's selected.\n\t */\n\tdeliveryInfoTypeId: number;\n\n\t/**\n\t * Delivery link.\n\t */\n\tdeliveryLink: string;\n\n\t/**\n\t * Email to use for delivery info.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number for booking tables.\n\t */\n\tphone: string;\n\n\t/**\n\t * ID of the restaurant that the delivery info info is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Informational text about delivery info conditions.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for delivery info.\n */\nexport type ApiV2DeliveryInfoResponseType = ApiV2BaseResponseType<ApiV2DeliveryInfoType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DeliveryInfoApiEndpointSlug = 'delivery-info';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishType } from '@matochmat/api-client/src/v2/dish';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish endpoint.\n */\nexport type ApiV2DinnerDishType = ApiV2DishType &\n{\n\t/**\n\t * ID of the category that the dinner dish belongs to.\n\t */\n\tdinnerDishCategoryId: number;\n};\n\n/**\n * The API response type for dinner dishes.\n */\nexport type ApiV2DinnerDishResponseType = ApiV2BaseResponseType<ApiV2DinnerDishType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishApiEndpointSlug = 'dinner-dishes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishCategoryType } from '@matochmat/api-client/src/v2/dishCategory';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish category endpoint.\n */\nexport type ApiV2DinnerDishCategoryType = ApiV2DishCategoryType &\n{\n\t/**\n\t * ID of the category that the dinner dish belongs to.\n\t */\n\tdinnerDishTabId: number;\n};\n\n/**\n * The API response type for dinner dish categories.\n */\nexport type ApiV2DinnerDishCategoryResponseType = ApiV2BaseResponseType<ApiV2DinnerDishCategoryType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishCategoryApiEndpointSlug = 'dinner-dish-categories';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishTabType } from '@matochmat/api-client/src/v2/dishTab';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish category endpoint.\n */\nexport type ApiV2DinnerDishTabType = ApiV2DishTabType;\n\n/**\n * The API response type for dinner dish categories.\n */\nexport type ApiV2DinnerDishTabResponseType = ApiV2BaseResponseType<ApiV2DinnerDishTabType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishTabApiEndpointSlug = 'dinner-dish-tabs';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2OpeningHourType } from '@matochmat/api-client/src/v2/openingHour';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\nimport type { ApiV2RestaurantUploadConnectionType } from '@matochmat/api-client/src/v2/restaurantUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner functionality endpoint.\n */\nexport type ApiV2DinnerFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Number of columns to display dinner menu in.\n\t */\n\tcolumns: 1|2|3;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Determines what type of dinner functionality to show.\n\t */\n\tdinnerFunctionalityTypeId: number;\n\n\t/**\n\t * Background for the restaurant details page header.\n\t */\n\tdinnerMenuImage:\n\t{\n\t\t/**\n\t\t *\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t *\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Link to use for external link type menus.\n\t */\n\tmenuLink: string;\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * List of opening hours for the dinner.\n\t */\n\topeningHourList:\n\t{\n\t\titems: ApiV2OpeningHourType[];\n\t};\n\n\t/**\n\t * To what date to show the restaurant's dinner participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for dinner functionality items.\n */\nexport type ApiV2DinnerFunctionalityResponseType = ApiV2BaseResponseType<ApiV2DinnerFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerFunctionalityApiEndpointSlug = 'dinner-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner functionality type endpoint.\n */\nexport type ApiV2DinnerFunctionalityTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for dinner functionality types.\n */\nexport type ApiV2DinnerFunctionalityTypeResponseType = ApiV2BaseResponseType<ApiV2DinnerFunctionalityTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerFunctionalityTypeApiEndpointSlug = 'dinner-functionality-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the display solution v1 configuration endpoint.\n */\nexport type ApiV2DisplaySolutionV1ConfigurationType =\n{\n\t/**\n\t * Whether or not the display solution is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * JSX for rendering the actual display solution. Note that as the name suggests this is JSX and not plain JS.\n\t */\n\trenderJsx: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Generic setup settings for the display solution.\n\t */\n\tsettings: string;\n};\n\n/**\n * The API response type for display solution v1 configurations.\n */\nexport type ApiV2DisplaySolutionV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2DisplaySolutionV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DisplaySolutionV1ConfigurationApiEndpointSlug = 'display-solution-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the email template endpoint.\n */\nexport type ApiV2EmailTemplateType =\n{\n\t/**\n\t * Determines if the template is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * Main text content.\n\t */\n\tcontent: string;\n\n\t/**\n\t * String representation of when the email template was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Determines if the template should default to sending a blind carbon copy to Hubspot.\n\t */\n\thubspotBcc: boolean;\n\n\t/**\n\t * Unique ID for the email template.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the email template was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the email template.\n\t */\n\tname: string;\n\n\t/**\n\t * Determines if the template is required by the system (which will limit what admins can do with it in regards to disabling and deleting).\n\t */\n\trequiredBySystem: boolean;\n\n\t/**\n\t * Determines if the template should be shown in the GUI where admins can choose a template for their emails.\n\t */\n\tshowInTemplateSelection: boolean;\n\n\t/**\n\t * Title of the email.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for email templates.\n */\nexport type ApiV2EmailTemplateResponseType = ApiV2BaseResponseType<ApiV2EmailTemplateType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2EmailTemplateApiEndpointSlug = 'email-templates';\n","/**\n * API endpoint slug.\n */\nexport const apiV2FirebaseDeviceRegistrationTokenApiEndpointSlug = 'firebase-device-registration-tokens';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the integration v1 configuration endpoint.\n */\nexport type ApiV2IntegrationV1ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * The type of integration to display.\n\t */\n\tintegrationTypeId: 1|2|3;\n\n\t/**\n\t * Integration specific JS.\n\t */\n\tjs: string;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2IntegrationV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2IntegrationV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2IntegrationV1ConfigurationApiEndpointSlug = 'integration-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the integration v1 configuration endpoint.\n */\nexport type ApiV2IntegrationV2ConfigurationType =\n{\n\t/**\n\t * Whether or not the integration is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * JS for preparing the page before the actual rendering. This should normally be left empty and used only for special scenarios where the site you're integrating isn't built dynamically enough to support rendering the integration to look the same as the rest of the page (hardcoded things, strict post type setups, etc.). Note that as the name suggests this is JSX to be used for setting up the necessary stuff beforehand and not JSX (which you're expected to place in {@link ApiV2IntegrationV2ConfigurationType.renderJsx} instead).\n\t */\n\tpreRenderJs: string;\n\n\t/**\n\t * JSX for rendering the actual integration. Note that as the name suggests this is JSX and not plain JS (which you're expected to place in {@link ApiV2IntegrationV2ConfigurationType.preRenderJs} instead).\n\t */\n\trenderJsx: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2IntegrationV2ConfigurationResponseType = ApiV2BaseResponseType<ApiV2IntegrationV2ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2IntegrationV2ConfigurationApiEndpointSlug = 'integration-v2-configurations';\n","/**\n * API endpoint slug.\n */\nexport const apiV2LunchBoxApiEndpointSlug = 'lunch-boxes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the lunch box functionality endpoint.\n */\nexport type ApiV2LunchBoxFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Conditions for ordering lunch boxes.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Latest possible time for placing orders.\n\t */\n\tlatestOrderTime: string;\n\n\t/**\n\t * The email address to send confirmation emails to.\n\t */\n\torderConfirmationEmail: string;\n\n\t/**\n\t * Earliest time for picking up orders.\n\t */\n\tpickupTimeFrom: string;\n\n\t/**\n\t * Latest time for picking up orders.\n\t */\n\tpickupTimeTo: string;\n\n\t/**\n\t * To what date to show the restaurant's lunch box participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for lunch box functionality.\n */\nexport type ApiV2LunchBoxFunctionalityResponseType = ApiV2BaseResponseType<ApiV2LunchBoxFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2LunchBoxFunctionalityApiEndpointSlug = 'lunch-box-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2LunchDishType } from '@matochmat/api-client/src/v2/lunchDish';\nimport type { ApiV2OpeningHourType } from '@matochmat/api-client/src/v2/openingHour';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the lunch functionality endpoint.\n */\nexport type ApiV2LunchFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Controls whether or not the restaurant has bonus stamps active.\n\t */\n\tbonusStampsActive: boolean;\n\n\t/**\n\t * Text entered by the restaurant concerning which-if any-special conditions apply for getting bonus stamps.\n\t */\n\tbonusStampsConditionsText: string;\n\n\t/**\n\t * Date when the restaurant should be displayed as the daily lunch tip.\n\t */\n\tdailyLunchTipDate: string|null;\n\n\t/**\n\t * Date when the restaurant would've been displayed as the daily lunch tip but was intentionally skipped.\n\t */\n\tdailyLunchTipSkippedDate: string|null;\n\n\t/**\n\t * Which days to send empty menu reminders.\n\t */\n\temptyMenuReminderDays: number[];\n\n\t/**\n\t * Email to use when sending out empty menu reminders.\n\t */\n\temptyMenuReminderEmail: string;\n\n\t/**\n\t * String representation of the date when empty menu reminder was last sent. Used to avoid sending twice the same day if the script is run twice.\n\t */\n\temptyMenuReminderLastSent: string;\n\n\t/**\n\t * Default lunch menu data.\n\t */\n\tlunchDefault: ApiV2LunchDishType[];\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * List of opening hours for the lunch.\n\t */\n\topeningHourList:\n\t{\n\t\titems: ApiV2OpeningHourType[];\n\t};\n\n\t/**\n\t * To what date to show the restaurant's lunch participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for lunch functionality.\n */\nexport type ApiV2LunchFunctionalityResponseType = ApiV2BaseResponseType<ApiV2LunchFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2LunchFunctionalityApiEndpointSlug = 'lunch-functionality';\n","/**\n * Endpoint for the local API to connect with the menu crawler.\n */\nexport const apiV2MenuCrawlerProxyApiEndpointSlug = 'menu-crawler-proxy';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the notice endpoint.\n */\nexport type ApiV2NoticeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Whether or not the notice has been handled.\n\t */\n\thandled: boolean;\n\n\t/**\n\t * Timestamp for when the notice was handled.\n\t */\n\thandledOn: string;\n\n\t/**\n\t * Unique ID for the notice.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Title of the notice.\n\t */\n\ttext: string;\n\n\t/**\n\t * Title of the notice.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for notices.\n */\nexport type ApiV2NoticeResponseType = ApiV2BaseResponseType<ApiV2NoticeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2NoticeApiEndpointSlug = 'notices';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the notification preference endpoint.\n */\nexport type ApiV2NotificationPreferenceType =\n{\n\t/**\n\t * Whether or not the notifications are active. We keep this as a separate value to allow users to keep their preferences after toggling notifications off and then on (as deleting it and re-adding it would mean data loss for any future properties/columns we choose to save on this class).\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the user was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant that we want to send notifications for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the user to send notifications to. Note that this isn't used to send the actual notifications, that part is handled by device registration tokens that the user gets from Firebase if they do indeed opt in to push notifications. Note that those are indeed opt-in, and just because we have a notification preference here it does NOT necessarily mean we actually have any registration tokens to send the notifications to.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for notification preferences.\n */\nexport type ApiV2NotificationPreferenceResponseType = ApiV2BaseResponseType<ApiV2NotificationPreferenceType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2NotificationPreferenceApiEndpointSlug = 'notification-preferences';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the opening hour endpoint.\n */\nexport type ApiV2OpeningHourType =\n{\n\t/**\n\t * Time of day when the restaurant closes.\n\t */\n\tclosingTime: string;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * ID of the dinner functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tdinnerFunctionalityId: number|null;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Day of the week the opening hours are relevant for. This is ISO (not american) weekday number (not index).\n\t */\n\tisoWeekdayNumber: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the lunch box functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tlunchBoxFunctionalityId: number|null;\n\n\t/**\n\t * ID of the lunch functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tlunchFunctionalityId: number|null;\n\n\t/**\n\t * Whether or not the restaurant is open on this day.\n\t */\n\topen: boolean;\n\n\t/**\n\t * Time of day when the restaurant opens.\n\t */\n\topeningTime: string;\n};\n\n/**\n * The API response type for opening hour items.\n */\nexport type ApiV2OpeningHourResponseType = ApiV2BaseResponseType<ApiV2OpeningHourType[], number>;\n\n/**\n * API endpoint slug.\n */\n\nexport const apiV2OpeningHourApiEndpointSlug = 'opening-hours';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order endpoint.\n */\nexport type ApiV2OrderType =\n{\n\t/**\n\t * Keeps track of whether or not the user has confirmed their order.\n\t */\n\tconfirmed: boolean;\n\n\t/**\n\t * Timestamp for when the order was confirmed.\n\t */\n\tconfirmedDate: string|null;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email address to the customer.\n\t */\n\tcustomerEmail: string;\n\n\t/**\n\t * First name of the customer.\n\t */\n\tcustomerFirstName: string;\n\n\t/**\n\t * Last name of the customer.\n\t */\n\tcustomerLastName: string;\n\n\t/**\n\t * Phone number to the customer.\n\t */\n\tcustomerPhone: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Order number to display to the user. Not to be confused with the database ID.\n\t */\n\torderNumber: number|null;\n\n\t/**\n\t * Keeps track of whether or not the restaurant has processed the order.\n\t */\n\tprocessed: boolean;\n\n\t/**\n\t * Timestamp for when the order was processed.\n\t */\n\tprocessedDate: string|null;\n\n\t/**\n\t * ID of the restaurant that placed the order was placed on.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the user that placed the order.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for orders.\n */\nexport type ApiV2OrderResponseType = ApiV2BaseResponseType<ApiV2OrderType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2OrderApiEndpointSlug = 'orders';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order items endpoint.\n */\nexport type ApiV2OrderItemType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Description of the lunch box.\n\t */\n\tdescription: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the lunch box that the item refers to.\n\t */\n\tlunchBoxId: number|null;\n\n\t/**\n\t * Name of the lunch box.\n\t */\n\tname: string;\n\n\t/**\n\t * ID of the order that the item belongs to.\n\t */\n\torderId: number;\n\n\t/**\n\t * Price of the lunch box.\n\t */\n\tprice: number;\n\n\t/**\n\t * Number of items ordered.\n\t */\n\tquantity: number;\n\n\t/**\n\t * List of tags for the dish.\n\t */\n\ttags: string[];\n};\n\n/**\n * The API response type for order items.\n */\nexport type ApiV2OrderItemResponseType = ApiV2BaseResponseType<ApiV2OrderItemType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2OrderItemApiEndpointSlug = 'order-items';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the PDF v1 configuration endpoint.\n */\nexport type ApiV2PdfV1ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * PDF specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Template (HTML code and custom shortcodes) for custom daily PDF menus.\n\t */\n\tdailyTemplate: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The type of PDF to display.\n\t */\n\tpdfV1ConfigurationTypeId: 1|2;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Template (HTML code and custom shortcodes) for custom weekly PDF menus.\n\t */\n\tweeklyTemplate: string;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2PdfV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2PdfV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV1ConfigurationApiEndpointSlug = 'pdf-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2PdfV1ConfigurationTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for PDF v1 configuration types.\n */\nexport type ApiV2PdfV1ConfigurationTypeResponseType = ApiV2BaseResponseType<ApiV2PdfV1ConfigurationTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV1ConfigurationTypeApiEndpointSlug = 'pdf-v1-configuration-types';\n\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the PDF v2 configuration endpoint.\n */\nexport type ApiV2PdfV2ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * PDF specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * The render JSX for the daily lunch menu (only relevant for custom PDFs).\n\t */\n\tdailyLunchMenuRenderJsx: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The type of PDF to display.\n\t */\n\tpdfV2ConfigurationTypeId: 1|2;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Generic setup settings for the PDF.\n\t */\n\tsettings: string;\n\n\t/**\n\t * The render JSX for the weekly lunch menu (only relevant for custom PDFs).\n\t */\n\tweeklyLunchMenuRenderJsx: string;\n};\n\n/**\n * The API response type for integration v2 configurations.\n */\nexport type ApiV2PdfV2ConfigurationResponseType = ApiV2BaseResponseType<ApiV2PdfV2ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV2ConfigurationApiEndpointSlug = 'pdf-v2-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2PdfV2ConfigurationTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for PDF v2 configuration types.\n */\nexport type ApiV2PdfV2ConfigurationTypeResponseType = ApiV2BaseResponseType<ApiV2PdfV2ConfigurationTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV2ConfigurationTypeApiEndpointSlug = 'pdf-v2-configuration-types';\n\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the policy endpoint.\n */\nexport type ApiV2PolicyType =\n{\n\t/**\n\t * String representation of when the policy was last created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the policy.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the policy was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Actual policy text.\n\t */\n\tpolicyText: string;\n\n\t/**\n\t * Date stamp for when the policy is valid from.\n\t */\n\tvalidFrom: string;\n};\n\n/**\n * The API response type for policys.\n */\nexport type ApiV2PolicyResponseType = ApiV2BaseResponseType<ApiV2PolicyType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PolicyApiEndpointSlug = 'policies';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CateringFunctionalityType } from '@matochmat/api-client/src/v2/cateringFunctionality';\nimport type { ApiV2CrawlingConfigurationType } from '@matochmat/api-client/src/v2/crawlingConfiguration';\nimport type { ApiV2DeliveryInfoType } from '@matochmat/api-client/src/v2/deliveryInfo';\nimport type { ApiV2DinnerFunctionalityType } from '@matochmat/api-client/src/v2/dinnerFunctionality';\nimport type { ApiV2LunchBoxFunctionalityType } from '@matochmat/api-client/src/v2/lunchBoxFunctionality';\nimport type { ApiV2LunchFunctionalityType } from '@matochmat/api-client/src/v2/lunchFunctionality';\nimport type { ApiV2RestaurantUploadConnectionType } from '@matochmat/api-client/src/v2/restaurantUploadConnection';\nimport type { ApiV2TableBookingType } from '@matochmat/api-client/src/v2/tableBooking';\nimport type { ApiV2TakeAwayType } from '@matochmat/api-client/src/v2/takeAway';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the restaurant endpoint.\n */\nexport type ApiV2RestaurantType =\n{\n\t/**\n\t * Text that describes the restaurant. Displays on the page to give lunch guests a bit of info and is commonly also used for page metadata.\n\t */\n\tabout: string;\n\n\t/**\n\t * String representation of the street address for the restaurant.\n\t */\n\taddress: string;\n\n\t/**\n\t * Aliases to match against when searching. Not actually displayed on the page.\n\t */\n\taliases: string[];\n\n\t/**\n\t *\n\t */\n\tcateringFunctionality: ApiV2CateringFunctionalityType;\n\n\t/**\n\t * City ID determining which city the restaurant belongs to.\n\t */\n\tcityId: number;\n\n\t/**\n\t * A compounded rating collected from different rating sites around the web.\n\t */\n\tcompoundRating: number|null;\n\n\t/**\n\t *\n\t */\n\tcrawlingConfiguration: ApiV2CrawlingConfigurationType;\n\n\t/**\n\t * String representation of when the restaurant was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Delivery information.\n\t */\n\tdeliveryInfo: ApiV2DeliveryInfoType;\n\n\t/**\n\t * Background for the restaurant details page header.\n\t */\n\tdetailsPageHeaderBackground:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t *\n\t */\n\tdinnerFunctionality: ApiV2DinnerFunctionalityType;\n\n\t/**\n\t * Restaurant email. Used only for displaying to lunch guests and not for sending emails from the system.\n\t */\n\temail: string;\n\n\t/**\n\t * URL to the restaurant's Facebook page.\n\t */\n\tfacebook: string;\n\n\t/**\n\t * Unique entity ID.\n\t */\n\tid: number;\n\n\t/**\n\t * URL to the restaurant's Instagram page.\n\t */\n\tinstagram: string;\n\n\t/**\n\t * String representation of when the restaurant was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * String representation of latitude.\n\t */\n\tlatitude: string;\n\n\t/**\n\t * Restaurant logotype info.\n\t */\n\tlogotype:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Background for the restaurant logotype.\n\t */\n\tlogotypeBackground:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * String representation of longitude.\n\t */\n\tlongitude: string;\n\n\t/**\n\t *\n\t */\n\tlunchBoxFunctionality: ApiV2LunchBoxFunctionalityType;\n\n\t/**\n\t *\n\t */\n\tlunchFunctionality: ApiV2LunchFunctionalityType;\n\n\t/**\n\t * Name of the restaurant.\n\t */\n\tname: string;\n\n\t/**\n\t * Text shown below or in conjunction with name to convey further information. Useful when two restaurants have the same title but are located in different places or when a restaurant has changed name (for instance \"Loremrestaurangen (f.d. Ipsumrestaurangen)\").\n\t */\n\tnameSubtext: string;\n\n\t/**\n\t * Obfuscated unique ID. Used for legacy purposes only.\n\t * @deprecated Only used for legacy support for apps and third parties. In the long run we may consider removing this.\n\t * @see ID is now saved as a plain property.\n\t */\n\tobfuscatedId: string;\n\n\t/**\n\t * Determines which version of PDFs to use.\n\t */\n\tpdfVersion: 2;\n\n\t/**\n\t * Whether or not the restaurant is pending and awaiting approval.\n\t */\n\tpending: boolean;\n\n\t/**\n\t * Phone number to the restaurant.\n\t */\n\tphone: string;\n\n\t/**\n\t * Where the price range of the items the restaurant serves starts at. This is on a scale of 1 to 4.\n\t */\n\tpriceRangeFrom: number|null;\n\n\t/**\n\t * Where the price range of the items the restaurant serves ends at. This is on a scale of 1 to 4.\n\t */\n\tpriceRangeTo: number|null;\n\n\t/**\n\t * Tags the restaurant is connected to.\n\t */\n\trestaurantTagIds: number[];\n\n\t/**\n\t * Machine readable name of the restaurant.\n\t */\n\tslug: string;\n\n\t/**\n\t * The URL for the static map image.\n\t */\n\tstaticMapImageUrl: string;\n\n\t/**\n\t * Table booking info for the restaurant.\n\t */\n\ttableBooking: ApiV2TableBookingType;\n\n\t/**\n\t * Take away info for the restaurant.\n\t */\n\ttakeAway: ApiV2TakeAwayType;\n\n\t/**\n\t * Type for who updates the restaurant's menus.\n\t */\n\tupdatedByTypeId: 1|2|3;\n\n\t/**\n\t * URL to the restaurant's own website.\n\t */\n\twebsite: string;\n};\n\n/**\n * The API response type for restaurants.\n */\nexport type ApiV2RestaurantResponseType = ApiV2BaseResponseType<ApiV2RestaurantType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantApiEndpointSlug = 'restaurants';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the restaurant functionality visibility types endpoint.\n */\nexport type ApiV2RestaurantFunctionalityVisibilityTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2|3|4;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for restaurant functionality visibility types.\n */\nexport type ApiV2RestaurantFunctionalityVisibilityTypeResponseType = ApiV2BaseResponseType<ApiV2RestaurantFunctionalityVisibilityTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantFunctionalityVisibilityTypeApiEndpointSlug = 'restaurant-functionality-visibility-types';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2RestaurantUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Background color for the upload.\n\t */\n\tbackgroundColor: string;\n\n\t/**\n\t * ID of the restaurant the entity belongs to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t *\n\t */\n\trestaurantUploadTypeId: number;\n\n\t/**\n\t * Sort order for the connection.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantUploadConnectionApiEndpointSlug = 'restaurant-uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2SessionApiEndpointSlug = 'session';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2ShowcasePositionTypeType } from '@matochmat/api-client/src/v2/showcasePositionType';\nimport type { ApiV2ShowcaseTypeType } from '@matochmat/api-client/src/v2/showcaseType';\nimport type { ApiV2ShowcaseUploadConnectionType } from '@matochmat/api-client/src/v2/showcaseUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase endpoint.\n */\nexport type ApiV2ShowcaseType =\n{\n\t/**\n\t * Determines whether or not to use `allow-same-origin` for iframes.\n\t */\n\tallowSameOrigin: boolean;\n\n\t/**\n\t * String representation of when the showcase was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Desktop image for the showcase.\n\t */\n\tdesktopImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the showcase and the upload.\n\t\t */\n\t\tshowcaseUpload: ApiV2ShowcaseUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Whether or not to display the ad in all cities.\n\t */\n\tdisplayInAllCities: boolean;\n\n\t/**\n\t * Whether or not to display the ad in the app variant of the page.\n\t */\n\tdisplayInApp: boolean;\n\n\t/**\n\t * Whether or not to display the ad on the web variant of the page.\n\t */\n\tdisplayOnWeb: boolean;\n\n\t/**\n\t * String representation of which date the ad should stop displaying.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the showcase.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the ad was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Link to where a click on the showcase should send the user in desktop.\n\t */\n\tlinkHrefDesktop: string;\n\n\t/**\n\t * Link to where a click on the showcase should send the user in mobile.\n\t */\n\tlinkHrefMobile: string;\n\n\t/**\n\t * Max view count before the showcase stops being displayed.\n\t */\n\tmaxViewCount: number|null;\n\n\t/**\n\t * Mobile image for the showcase.\n\t */\n\tmobileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the showcase and the upload.\n\t\t */\n\t\tshowcaseUpload: ApiV2ShowcaseUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Readable name of the showcase.\n\t */\n\tname: string;\n\n\t/**\n\t * Whether or not to open the link in a new tab.\n\t */\n\topenInNewTab: boolean;\n\n\t/**\n\t * Script content to load when using the script type.\n\t */\n\tscriptContent: string;\n\n\t/**\n\t * ID of the position type (which defines where on the page the ad should be displayed) for the showcase.\n\t */\n\tshowcasePositionTypeId: ApiV2ShowcasePositionTypeType[ 'id' ];\n\n\t/**\n\t * ID of the showcase type.\n\t */\n\tshowcaseTypeId: ApiV2ShowcaseTypeType[ 'id' ];\n\n\t/**\n\t * String representation of which date the ad should start displaying.\n\t */\n\tstartDate: string;\n};\n\n/**\n * The API response type for showcases.\n */\nexport type ApiV2ShowcaseResponseType = ApiV2BaseResponseType<ApiV2ShowcaseType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseApiEndpointSlug = 'showcases';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase position type endpoint.\n */\nexport type ApiV2ShowcasePositionTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Height for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueHeightDesktop: number;\n\n\t/**\n\t * Height for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueHeightMobile: number;\n\n\t/**\n\t * Width for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueWidthDesktop: number;\n\n\t/**\n\t * Width for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueWidthMobile: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the entity.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for showcases.\n */\nexport type ApiV2ShowcasePositionTypeResponseType = ApiV2BaseResponseType<ApiV2ShowcasePositionTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcasePositionTypeApiEndpointSlug = 'showcase-position-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase type endpoint.\n */\nexport type ApiV2ShowcaseTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Height for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueHeightDesktop: number;\n\n\t/**\n\t * Height for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueHeightMobile: number;\n\n\t/**\n\t * Width for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueWidthDesktop: number;\n\n\t/**\n\t * Width for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueWidthMobile: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the entity.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for showcase types.\n */\nexport type ApiV2ShowcaseTypeResponseType = ApiV2BaseResponseType<ApiV2ShowcaseTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseTypeApiEndpointSlug = 'showcase-types';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2ShowcaseUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Showcase ID upload belongs to.\n\t */\n\tshowcaseId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tshowcaseUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseUploadConnectionApiEndpointSlug = 'showcase-uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseViewCountApiEndpointSlug = 'showcase-view-counts';\n\n/**\n * Legacy support for an earlier variant having incorrect variable casing.\n */\nexport const apiV2ShowCaseViewCountApiEndpointSlug = apiV2ShowcaseViewCountApiEndpointSlug;\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order items endpoint.\n */\nexport type ApiV2SubscriptionPeriodType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * End date for the subscription period\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for subscription period.\n\t */\n\tid: number;\n\n\t/**\n\t * Whether or not the period has been invalidated.\n\t */\n\tinvalidated: boolean;\n\n\t/**\n\t * Keeps track of whether or not the current period is a trial period.\n\t */\n\tisTrialPeriod: boolean;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Keeps track of whether the period was manually created or not.\n\t */\n\tmanuallyCreated: boolean;\n\n\t/**\n\t * Restaurant ID the period relates to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Start date for the subscription period.\n\t */\n\tstartDate: string;\n};\n\n/**\n * The API response type for order items.\n */\nexport type ApiV2SubscriptionPeriodResponseType = ApiV2BaseResponseType<ApiV2SubscriptionPeriodType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2SubscriptionPeriodApiEndpointSlug = 'subscription-periods';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2//baseResponse';\n\n/**\n * Type for available/allowed system settings.\n */\nexport type SystemSettingKeyType =\n'allowPositionFeaturesOutsideApp'|\n'allowRestaurantsToUploadFiles'|\n'appUpdateNoticeDismissButtonEnabled'|\n'appUpdateNoticeForVersionsOlderThan'|\n'appUpdateNoticeText'|\n'appUpdateNoticeTitle'|\n'autoCorrections'|\n'cateringRequestFormEnabled'|\n'cateringRequestFormOnIntegrationsEnabled'|\n'cateringDefaultSortIsShuffled'|\n'dinnerDefaultSortIsShuffled'|\n'dinnerDishCategoryColumnSelectionEnabled'|\n'dinnerFunctionalityLinksEnabled'|\n'emptyMenuRemindersActive'|\n'faux404CityCateringPageText'|\n'faux404CityCateringPageTitle'|\n'faux404CityDinnerPageText'|\n'faux404CityDinnerPageTitle'|\n'faux404CityLunchBoxPageText'|\n'faux404CityLunchBoxPageTitle'|\n'faux404CityPageText'|\n'faux404CityPageTitle'|\n'getTheAppBannerActive'|\n'googleMapsApiKey'|\n'lunchBoxesNoticeDisplayTime'|\n'mapFunctionalityEnabled'|\n'promptUserToShareDialogActive'|\n'ptrEnabled'|\n'readShoppingCartDataFromStorage'|\n'showcaseMoreInformationContent'|\n'showcaseMoreInformationTitle'|\n'searchTagsEnabled'|\n'simulatedServerTimeShift'|\n'tellRestaurantAboutUsActive'|\n'tellUsAboutRestaurantActive';\n\n/**\n * Type for the individual array items in v2 of the API for the system settings endpoint.\n */\nexport type ApiV2SystemSettingType<T = unknown> =\n{\n\t/**\n\t * Whether or not the setting is backend only. This will still be sent to the frontend in some cases (admin editing etc.) which is why it's still available here.\n\t */\n\tbackendOnly?: boolean;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Key for the setting.\n\t */\n\tsettingKey: SystemSettingKeyType;\n\n\t/**\n\t * Value for the setting.\n\t */\n\tsettingValue: T;\n};\n\n/**\n * The API response type for system settings.\n */\nexport type ApiV2SystemSettingResponseType = ApiV2BaseResponseType<ApiV2SystemSettingType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2SystemSettingApiEndpointSlug = 'system-settings';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the table booking endpoint.\n */\nexport type ApiV2TableBookingType =\n{\n\t/**\n\t * Booking link.\n\t */\n\tbookingLink: string;\n\n\t/**\n\t * Text about table booking conditions.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email to use for table booking.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Link to use for iframe embeds of external table booking systems.\n\t */\n\tiframeLink: string;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number for booking tables.\n\t */\n\tphone: string;\n\n\t/**\n\t * ID of the restaurant that the table booking info is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the specific type of table booking that's selected.\n\t */\n\ttableBookingTypeId: number;\n\n\t/**\n\t * Informational text about table booking conditions.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for table booking info.\n */\nexport type ApiV2TableBookingResponseType = ApiV2BaseResponseType<ApiV2TableBookingType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TableBookingApiEndpointSlug = 'table-booking';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the take away endpoint.\n */\nexport type ApiV2TakeAwayType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email adress to be used for ordering take away.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number used for ordering take away.\n\t */\n\tphone: string;\n\n\t/**\n\t * Restaurant ID the entity belongs to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Link to external take away site.\n\t */\n\ttakeAwayLink: string;\n\n\t/**\n\t * ID of the specific type of take away that's selected.\n\t */\n\ttakeAwayTypeId: number;\n\n\t/**\n\t * Text to display to end users when displaying take away information.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for take away info.\n */\nexport type ApiV2TakeAwayResponseType = ApiV2BaseResponseType<ApiV2TakeAwayType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TakeAwayApiEndpointSlug = 'take-away';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2TeamMemberUploadConnectionType } from '@matochmat/api-client/src/v2/teamMemberUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the team member endpoint.\n */\nexport type ApiV2TeamMemberType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * First name (given name).\n\t */\n\tfirstName: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Last name (family name).\n\t */\n\tlastName: string;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The profile image for the team member.\n\t */\n\tprofileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the team member and the upload.\n\t\t */\n\t\tteamMemberUpload: ApiV2TeamMemberUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Name of the role that the team member holds.\n\t */\n\troleName: string;\n\n\t/**\n\t * Numeric sorting order to determine display order.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * The API response type for team member.\n */\nexport type ApiV2TeamMemberResponseType = ApiV2BaseResponseType<ApiV2TeamMemberType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TeamMemberApiEndpointSlug = 'team-members';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2TeamMemberUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Team member ID upload belongs to.\n\t */\n\tteamMemberId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tteamMemberUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TeamMemberUploadConnectionApiEndpointSlug = 'team-member-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2UpdatedByTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for \"Updated by\" types.\n */\nexport type ApiV2UpdatedByTypeResponseType = ApiV2BaseResponseType<ApiV2UpdatedByTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2UpdatedByTypeApiEndpointSlug = 'updated-by-types';\n\n","export type ApiV2UploadType =\n{\n\t/**\n\t * Determines whether or not this uses our alternative OG image variant.\n\t */\n\talternativeOgImage: boolean;\n\n\t/**\n\t * Base name of the file.\n\t */\n\tbaseName: string;\n\n\t/**\n\t * File extension.\n\t */\n\textension: string;\n\n\t/**\n\t * Unique entity ID.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Factor to use for modifying image max sizes in different parts of the system.\n\t */\n\tmaxSizeFactor: number;\n\n\t/**\n\t * Directory path to the file.\n\t */\n\tpath: string;\n\n\t/**\n\t * Timestamp for when the image was first uploaded.\n\t */\n\tuploaded: string;\n\n\t/**\n\t * Who uploaded the file.\n\t */\n\tuploader: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2UploadsApiEndpointSlug = 'uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2UserApiEndpointSlug = 'users';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\nimport type { ApiV3BlockContentUploadConnectionType } from '@matochmat/api-client/src/v3/blockContentUploadConnectionType';\nimport type { ApiV3UploadType } from '@matochmat/api-client/src/v3/upload';\n\n/**\n * Type for the individual array items in v3 of the API for the block content endpoint.\n */\nexport type ApiV3BlockContentType =\n{\n\t/**\n\t * Type ID for which type of block content it is.\n\t */\n\tblockContentTypeId: 1|2|3|4;\n\n\t/**\n\t * JSON with the block data.\n\t */\n\t// TODO: Make this more relevant\n\tblocks: any;\n\n\t/**\n\t * Timestamp for when the entity was last created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Description of the content to use for metadata.\n\t */\n\tdescription: string;\n\n\t/**\n\t * Featured image for the content.\n\t */\n\tfeaturedImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the block content and the upload.\n\t\t */\n\t\tblockContentUpload: ApiV3BlockContentUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV3UploadType;\n\t};\n\n\t/**\n\t * Unique ID for the content.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Slug for block content that is displayed as a standalone page.\n\t */\n\tslug: string;\n\n\t/**\n\t * Whether or not the slug is \"locked\", meaning it should be treated as non-editable due to some constraint such as being linked to from hardcoded buttons or links.\n\t */\n\tslugIsLocked: boolean;\n\n\t/**\n\t * Title for block content that is displayed as a standalone page.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for block content items.\n */\nexport type ApiV3BlockContentResponseType = ApiV3BaseResponseType<ApiV3BlockContentType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3BlockContentApiEndpointSlug = 'block-content';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV3BlockContentUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * ID of the block content the entity belongs to.\n\t */\n\tblockContentId: number;\n\n\t/**\n\t *\n\t */\n\tblockContentUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV3BlockContentUploadConnectionApiEndpointSlug = 'block-content-uploads';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the coupon location endpoint.\n */\nexport type ApiV3CouponLocationType =\n{\n\t/**\n\t * City ID for the location.\n\t */\n\tcityId: number;\n\n\t/**\n\t * ID of the coupon the location represents.\n\t */\n\tcouponId: number;\n\n\t/**\n\t * Unique ID for the coupon location.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n};\n\n/**\n * The API response type for coupon location items.\n */\nexport type ApiV3CouponLocationResponseType = ApiV3BaseResponseType<ApiV3CouponLocationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3CouponLocationApiEndpointSlug = 'coupon-locations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant management endpoint.\n */\nexport type ApiV3RestaurantManagementType =\n{\n\t/**\n\t * String representation of when the entity relation was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the restaurant management.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity relation was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Restaurant ID.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * User ID.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for restaurant management items.\n */\nexport type ApiV3RestaurantManagementResponseType = ApiV3BaseResponseType<ApiV3RestaurantManagementType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantManagementApiEndpointSlug = 'restaurant-management';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant registration endpoint.\n */\nexport type ApiV3RestaurantRegistrationType =\n{\n\t/**\n\t *\n\t */\n\tadditionalInfoStepCompleted: boolean;\n\n\t/**\n\t *\n\t */\n\tcitySelectionStepCompleted: boolean;\n\n\t/**\n\t *\n\t */\n\tcreateAccountStepCompleted: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t *\n\t */\n\tcreateRestaurantStepCompleted: boolean;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the city the restaurant should be registered in.\n\t */\n\trestaurantCityId: number|null;\n\n\t/**\n\t * ID of the restaurant which the registration concerns.\n\t */\n\trestaurantId: number|null;\n\n\t/**\n\t *\n\t */\n\trestaurantRegistrationStateId: number;\n\n\t/**\n\t * Token to allow resuming an abandoned registration.\n\t */\n\tresumeToken: string;\n\n\t/**\n\t * ID of the user which the registration concerns.\n\t */\n\tuserId: number|null;\n};\n\n/**\n * The API response type for restaurant registration items.\n */\nexport type ApiV3RestaurantRegistrationResponseType = ApiV3BaseResponseType<ApiV3RestaurantRegistrationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantRegistrationApiEndpointSlug = 'restaurant-registrations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant registration state endpoint.\n */\nexport type ApiV3RestaurantRegistrationStateType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the state.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for restaurant registration state items.\n */\nexport type ApiV3RestaurantRegistrationStateResponseType = ApiV3BaseResponseType<ApiV3RestaurantRegistrationStateType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantRegistrationStateApiEndpointSlug = 'restaurant-registration-states';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the showcase location endpoint.\n */\nexport type ApiV3ShowcaseLocationType =\n{\n\t/**\n\t * City ID for the location.\n\t */\n\tcityId: number;\n\n\t/**\n\t * Unique ID for the showcase location.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the showcase the location represents.\n\t */\n\tshowcaseId: number;\n};\n\n/**\n * The API response type for showcase location items.\n */\nexport type ApiV3ShowcaseLocationResponseType = ApiV3BaseResponseType<ApiV3ShowcaseLocationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3ShowcaseLocationApiEndpointSlug = 'showcase-locations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the showcase user role connection endpoint.\n */\nexport type ApiV3ShowcaseUserRoleConnectionType =\n{\n\t/**\n\t * String representation of when the entity relation was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the showcase user role connection.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity relation was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Showcase ID.\n\t */\n\tshowcaseId: number;\n\n\t/**\n\t * User role ID.\n\t */\n\tuserRoleId: number;\n};\n\n/**\n * The API response type for showcase user role connection items.\n */\nexport type ApiV3ShowcaseUserRoleConnectionResponseType = ApiV3BaseResponseType<ApiV3ShowcaseUserRoleConnectionType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3ShowcaseUserRoleConnectionApiEndpointSlug = 'showcase-user-role-connections';\n"],"names":[],"mappings":"AAgDA;;AAEG;AACI,MAAM,kCAAkC,GAAG;;AChClD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACHhD;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACTxD;;AAEG;AACI,MAAM,mCAAmC,GAAG;;ACsCnD;;AAEG;AACI,MAAM,yCAAyC,GAAG;;ACsJzD;;AAEG;AACI,MAAM,wBAAwB,GAAG;;ACnMxC;;AAEG;AACI,MAAM,wCAAwC,GAAG;;AC6CxD;;AAEG;AACI,MAAM,0BAA0B,GAAG;;ACG1C;;AAEG;AACI,MAAM,yCAAyC,GAAG;;AC7BzD;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACb9D;;AAEG;AACI,MAAM,gEAAgE,GAAG;;ACmChF;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AC3DjD;;AAEG;AACI,MAAM,iDAAiD,GAAG;;ACwCjE;;AAEG;AACI,MAAM,gCAAgC,GAAG;;AC1ChD;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACH9C;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACTtD;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AC4DjD;;AAEG;AACI,MAAM,uCAAuC,GAAG;;AC9CvD;;AAEG;AACI,MAAM,2CAA2C,GAAG;;ACiB3D;;AAEG;AACI,MAAM,kDAAkD,GAAG;;ACOlE;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AClEjD;;AAEG;AACI,MAAM,mDAAmD,GAAG;;AC6CnE;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACE9D;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACxD9D;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACyC5C;;AAEG;AACI,MAAM,yCAAyC,GAAG;;AC2BzD;;AAEG;AACI,MAAM,sCAAsC,GAAG;;AC7EtD;;AAEG;AACI,MAAM,oCAAoC,GAAG;;AC6CpD;;AAEG;AACI,MAAM,0BAA0B,GAAG;;ACR1C;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACiB1D;;AAEG;AAEI,MAAM,+BAA+B,GAAG;;ACgB/C;;AAEG;AACI,MAAM,yBAAyB,GAAG;;ACvBzC;;AAEG;AACI,MAAM,6BAA6B,GAAG;;ACb7C;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACvBtD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACsB1D;;AAEG;AACI,MAAM,sCAAsC,GAAG;;AC5BtD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACE1D;;AAEG;AACI,MAAM,0BAA0B,GAAG;;AC0M1C;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACrN9C;;AAEG;AACI,MAAM,yDAAyD,GAAG;;ACXzE;;AAEG;AACI,MAAM,8CAA8C,GAAG;;AC5B9D;;AAEG;AACI,MAAM,2BAA2B,GAAG;;ACmI3C;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACpF5C;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACHxD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACzChD;;AAEG;AACI,MAAM,4CAA4C,GAAG;;AClB5D;;AAEG;AACI,MAAM,qCAAqC,GAAG;AAErD;;AAEG;AACI,MAAM,qCAAqC,GAAG;;ACkDrD;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACiBtD;;AAEG;AACI,MAAM,iCAAiC,GAAG;;ACbjD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACbhD;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACK5C;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACtD9C;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACe9D;;AAEG;AACI,MAAM,iCAAiC,GAAG;;ACYjD;;AAEG;AACI,MAAM,2BAA2B,GAAG;;ACnD3C;;AAEG;AACI,MAAM,wBAAwB,GAAG;;AC0ExC;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACjEhD;;AAEG;AACI,MAAM,gDAAgD,GAAG;;ACehE;;AAEG;AACI,MAAM,kCAAkC,GAAG;;ACElD;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACgCxD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;AC3C1D;;AAEG;AACI,MAAM,+CAA+C,GAAG;;ACH/D;;AAEG;AACI,MAAM,oCAAoC,GAAG;;ACEpD;;AAEG;AACI,MAAM,8CAA8C,GAAG;;;;"}
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../src/v2/bonusStampCode.ts","../src/v2/cateringDish.ts","../src/v2/cateringDishCategory.ts","../src/v2/cateringDishTab.ts","../src/v2/cateringFunctionality.ts","../src/v2/city.ts","../src/v2/cityUploadConnection.ts","../src/v2/coupon.ts","../src/v2/crawlingConfiguration.ts","../src/v2/crawlingConfigurationModel.ts","../src/v2/crawlingConfigurationTextContentStrategyType.ts","../src/v2/customerQuote.ts","../src/v2/customerQuoteUploadConnection.ts","../src/v2/deliveryInfo.ts","../src/v2/dinnerDish.ts","../src/v2/dinnerDishCategory.ts","../src/v2/dinnerDishTab.ts","../src/v2/dinnerFunctionality.ts","../src/v2/dinnerFunctionalityType.ts","../src/v2/displaySolutionV1Configuration.ts","../src/v2/emailTemplate.ts","../src/v2/firebaseDeviceRegistrationToken.ts","../src/v2/integrationV1Configuration.ts","../src/v2/integrationV2Configuration.ts","../src/v2/lunchBox.ts","../src/v2/lunchBoxFunctionality.ts","../src/v2/lunchFunctionality.ts","../src/v2/menuCrawlerProxy.ts","../src/v2/notice.ts","../src/v2/notificationPreference.ts","../src/v2/openingHour.ts","../src/v2/order.ts","../src/v2/orderItem.ts","../src/v2/pdfV1Configuration.ts","../src/v2/pdfV1ConfigurationType.ts","../src/v2/pdfV2Configuration.ts","../src/v2/pdfV2ConfigurationType.ts","../src/v2/policy.ts","../src/v2/restaurant.ts","../src/v2/restaurantFunctionalityVisibilityType.ts","../src/v2/restaurantUploadConnection.ts","../src/v2/session.ts","../src/v2/showcase.ts","../src/v2/showcasePositionType.ts","../src/v2/showcaseType.ts","../src/v2/showcaseUploadConnection.ts","../src/v2/showcaseViewCount.ts","../src/v2/subscriptionPeriod.ts","../src/v2/systemSetting.ts","../src/v2/tableBooking.ts","../src/v2/takeAway.ts","../src/v2/teamMember.ts","../src/v2/teamMemberUploadConnection.ts","../src/v2/updatedByType.ts","../src/v2/upload.ts","../src/v2/user.ts","../src/v3/blockContent.ts","../src/v3/blockContentUploadConnectionType.ts","../src/v3/couponLocation.ts","../src/v3/restaurantManagement.ts","../src/v3/restaurantRegistration.ts","../src/v3/restaurantRegistrationState.ts","../src/v3/showcaseLocation.ts","../src/v3/showcaseUserRoleConnection.ts"],"sourcesContent":["import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the bonus stamp code endpoint.\n */\nexport type ApiV2BonusStampCodeType =\n{\n\t/**\n\t * The batch the code belongs to.\n\t */\n\tbatch: string;\n\n\t/**\n\t * The actual bonus stamp code.\n\t */\n\tcode: string;\n\n\t/**\n\t * Whether or not the code has been deactivated.\n\t */\n\tdeactivated: boolean;\n\n\t/**\n\t * Timestamp for when the code was generated.\n\t */\n\tgenerated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the code was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant the code is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for bonus stamp codes.\n */\nexport type ApiV2BonusStampCodeResponseType = ApiV2BaseResponseType<ApiV2BonusStampCodeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2BonusStampCodeApiEndpointSlug = 'bonus-stamp-codes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishType } from '@matochmat/api-client/src/v2/dish';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish endpoint.\n */\nexport type ApiV2CateringDishType = ApiV2DishType &\n{\n\t/**\n\t * ID of the category that the catering dish belongs to.\n\t */\n\tcateringDishCategoryId: number;\n};\n\n/**\n * The API response type for catering dishes.\n */\nexport type ApiV2CateringDishResponseType = ApiV2BaseResponseType<ApiV2CateringDishType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishApiEndpointSlug = 'catering-dishes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishCategoryType } from '@matochmat/api-client/src/v2/dishCategory';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish category endpoint.\n */\nexport type ApiV2CateringDishCategoryType = ApiV2DishCategoryType &\n{\n\t/**\n\t * ID of the category that the catering dish belongs to.\n\t */\n\tcateringDishTabId: number;\n};\n\n/**\n * The API response type for catering dish categories.\n */\nexport type ApiV2CateringDishCategoryResponseType = ApiV2BaseResponseType<ApiV2CateringDishCategoryType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishCategoryApiEndpointSlug = 'catering-dish-categories';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishTabType } from '@matochmat/api-client/src/v2/dishTab';\n\n/**\n * Type for the individual array items in v2 of the API for the catering dish category endpoint.\n */\nexport type ApiV2CateringDishTabType = ApiV2DishTabType;\n\n/**\n * The API response type for catering dish categories.\n */\nexport type ApiV2CateringDishTabResponseType = ApiV2BaseResponseType<ApiV2CateringDishTabType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringDishTabApiEndpointSlug = 'catering-dish-tabs';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the catering functionality endpoint.\n */\nexport type ApiV2CateringFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Number of columns to display catering menu in.\n\t */\n\tcolumns: 1|2|3;\n\n\t/**\n\t * Text about catering conditions.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * The email address to send catering requests to.\n\t */\n\trequestEmail: string;\n\n\t/**\n\t * To what date to show the restaurant's catering participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n\n\t/**\n\t * Whether or not the restaurant has a catering venue available for hire.\n\t */\n\tvenueAvailable: boolean;\n\n\t/**\n\t * Text next to the venue image gallery.\n\t */\n\tvenueText: string;\n\n\t/**\n\t * Title shown above the venue text.\n\t */\n\tvenueTextTitle: string;\n};\n\n/**\n * The API response type for catering functionality items.\n */\nexport type ApiV2CateringFunctionalityResponseType = ApiV2BaseResponseType<ApiV2CateringFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CateringFunctionalityApiEndpointSlug = 'catering-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CityUploadConnectionType } from '@matochmat/api-client/src/v2/cityUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the city endpoint.\n */\nexport type ApiV2CityType =\n{\n\t/**\n\t * Determines whether the city is active or not.\n\t * @deprecated This is no longer in use and you should instead look at the city type.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdCateringPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdDinnerPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesBottom: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchBoxesPanorama: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchListInline: string;\n\n\t/**\n\t * AdSense unit ID.\n\t */\n\tadSenseUnitIdLunchPanorama: string;\n\n\t/**\n\t * Aliases to match against when searching. Not actually displayed on the page.\n\t */\n\taliases: string[];\n\n\t/**\n\t * Determines whether the city has bonus stamp information active or not. Note that this is exactly that, a toggle for INFORMATION only. It does NOT change either visibility or functionality of bonus stamps if a restaurant in the city has them active.\n\t */\n\tbonusStampsActive: boolean;\n\n\t/**\n\t * Determines whether the city has any catering restaurants active.\n\t */\n\tcateringFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any catering restaurants in sales mode.\n\t */\n\tcateringFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the catering list.\n\t */\n\tcateringIntroText: string;\n\n\t/**\n\t * String representation of when the city was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Whether or not the city uses daily lunch tip functionality.\n\t */\n\tdailyLunchTipActive: boolean;\n\n\t/**\n\t * Determines whether the city has any dinner restaurants active.\n\t */\n\tdinnerFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any dinner restaurants in sales mode.\n\t */\n\tdinnerFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the dinner list.\n\t */\n\tdinnerIntroText: string;\n\n\t/**\n\t * Unique ID for the city.\n\t */\n\tid: number;\n\n\t/**\n\t * Intro text to display on the functionality selection pages.\n\t */\n\tintroText: string;\n\n\t/**\n\t * String representation of the last time the city was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Determines whether the city has any lunch box restaurants active.\n\t */\n\tlunchBoxFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any lunch box restaurants in sales mode.\n\t */\n\tlunchBoxFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the lunch box list.\n\t */\n\tlunchBoxIntroText: string;\n\n\t/**\n\t * Determines whether the city has any lunch restaurants active.\n\t */\n\tlunchFunctionalityActive: boolean;\n\n\t/**\n\t * Determines whether the city has any lunch restaurants in sales mode.\n\t */\n\tlunchFunctionalityInSalesMode: boolean;\n\n\t/**\n\t * Intro text for the lunch page.\n\t */\n\tlunchIntroText: string;\n\n\t/**\n\t * Readable name of the city.\n\t */\n\tname: string;\n\n\t/**\n\t * Determines whether or not to send a notification to the administrative personnel when a restaurant owner with a restaurant in this city logs in.\n\t */\n\tnotifyWhenRestaurantLogsIn: boolean;\n\n\t/**\n\t * OG image for the city.\n\t */\n\tsharingImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the city and the upload.\n\t\t */\n\t\tcityUpload: ApiV2CityUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Machine readable name of the city used in URLs among other places.\n\t */\n\tslug: string;\n};\n\n/**\n * The API response type for cities.\n */\nexport type ApiV2CityResponseType = ApiV2BaseResponseType<ApiV2CityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CityApiEndpointSlug = 'cities';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2CityUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * City ID upload belongs to.\n\t */\n\tcityId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tcityUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CityUploadConnectionApiEndpointSlug = 'city-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the coupon endpoint.\n */\nexport type ApiV2CouponType =\n{\n\t/**\n\t * Determines whether or not the coupon is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * The actual coupon code string.\n\t */\n\tcode: string;\n\n\t/**\n\t * String representation of when the coupon was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Description of the coupon.\n\t */\n\tdescription: string;\n\n\t/**\n\t * String representation of the end date of the coupon validity.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the coupon.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the coupon was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the coupon.\n\t */\n\tname: string;\n\n\t/**\n\t * String representation of the start date of the coupon validity.\n\t */\n\tstartDate: string;\n\n\t/**\n\t * Determines whether or not the coupon is valid for all cities.\n\t */\n\tvalidForAllCities: boolean;\n};\n\n/**\n * The API response type for coupons.\n */\nexport type ApiV2CouponResponseType = ApiV2BaseResponseType<ApiV2CouponType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CouponApiEndpointSlug = 'coupons';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CrawlingConfigurationTextContentStrategyTypeType } from '@matochmat/api-client/src/v2/crawlingConfigurationTextContentStrategyType';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration endpoint.\n */\nexport type ApiV2CrawlingConfigurationType =\n{\n\t/**\n\t * Whether or not the functionality is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * Additional prompt to send to the data processor.\n\t */\n\tadditionalPrompt: string;\n\n\t/**\n\t * Determines if the restaurant should be crawled even if a menu already exists.\n\t */\n\tcrawlEvenIfMenuExists: boolean;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for crawling configuration functionality.\n\t */\n\tid: number;\n\n\t/**\n\t * Max tokens to use for parsing data.\n\t */\n\tmaxTokens: number;\n\n\t/**\n\t * Model to use for parsing data.\n\t */\n\tmodel: string;\n\n\t/**\n\t * Restaurant ID the functionality relates to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Strategy to use for getting text content.\n\t */\n\ttextContentStrategyTypeId: ApiV2CrawlingConfigurationTextContentStrategyTypeType[ 'id' ];\n\n\t/**\n\t * URL to crawl.\n\t */\n\turl: string;\n\n\t/**\n\t * Weekdays to crawl on.\n\t */\n\tweekdays: number[];\n};\n\n/**\n * The API response type for crawling configurations.\n */\nexport type ApiV2CrawlingConfigurationResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationApiEndpointSlug = 'crawling-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration model endpoint.\n */\nexport type ApiV2CrawlingConfigurationModelType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for crawling configuration functionality.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n\n\t/**\n\t * Actual name used in the APIs.\n\t */\n\tslug: string;\n\n\t/**\n\t * Sort order. Lower for earlier.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * The API response type for crawling configuration models.\n */\nexport type ApiV2CrawlingConfigurationModelResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationModelType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationModelApiEndpointSlug = 'crawling-configuration-models';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the crawling configuration text content strategy type endpoint.\n */\nexport type ApiV2CrawlingConfigurationTextContentStrategyTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2|3;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for crawling configurations.\n */\nexport type ApiV2CrawlingConfigurationTextContentStrategyTypeResponseType = ApiV2BaseResponseType<ApiV2CrawlingConfigurationTextContentStrategyTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CrawlingConfigurationTextContentStrategyTypeApiEndpointSlug = 'crawling-configuration-text-content-strategy-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CustomerQuoteUploadConnectionType } from '@matochmat/api-client/src/v2/customerQuoteUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the customer quote endpoint.\n */\nexport type ApiV2CustomerQuoteType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * String representation of which date the ad should stop displaying.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the quoted person.\n\t */\n\tname: string;\n\n\t/**\n\t * Profile image for the customer quote.\n\t */\n\tprofileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the customer quote and the upload.\n\t\t */\n\t\tcustomerQuoteUpload: ApiV2CustomerQuoteUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Name of the role that the customer quote holds.\n\t */\n\tquoteText: string;\n\n\t/**\n\t * Name of the restaurant the quote is relevant for.\n\t */\n\trestaurantName: string;\n\n\t/**\n\t * Numeric sorting order to determine display order.\n\t */\n\tsortOrder: number;\n}\n\n/**\n * The API response type for customer quotes.\n */\nexport type ApiV2CustomerQuoteResponseType = ApiV2BaseResponseType<ApiV2CustomerQuoteType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CustomerQuoteApiEndpointSlug = 'customer-quotes';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2CustomerQuoteUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Customer quote ID upload belongs to.\n\t */\n\tcustomerQuoteId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tcustomerQuoteUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2CustomerQuoteUploadConnectionApiEndpointSlug = 'customer-quote-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the delivery info endpoint.\n */\nexport type ApiV2DeliveryInfoType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * ID of the specific type of delivery info that's selected.\n\t */\n\tdeliveryInfoTypeId: number;\n\n\t/**\n\t * Delivery link.\n\t */\n\tdeliveryLink: string;\n\n\t/**\n\t * Email to use for delivery info.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number for booking tables.\n\t */\n\tphone: string;\n\n\t/**\n\t * ID of the restaurant that the delivery info info is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Informational text about delivery info conditions.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for delivery info.\n */\nexport type ApiV2DeliveryInfoResponseType = ApiV2BaseResponseType<ApiV2DeliveryInfoType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DeliveryInfoApiEndpointSlug = 'delivery-info';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishType } from '@matochmat/api-client/src/v2/dish';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish endpoint.\n */\nexport type ApiV2DinnerDishType = ApiV2DishType &\n{\n\t/**\n\t * ID of the category that the dinner dish belongs to.\n\t */\n\tdinnerDishCategoryId: number;\n};\n\n/**\n * The API response type for dinner dishes.\n */\nexport type ApiV2DinnerDishResponseType = ApiV2BaseResponseType<ApiV2DinnerDishType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishApiEndpointSlug = 'dinner-dishes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishCategoryType } from '@matochmat/api-client/src/v2/dishCategory';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish category endpoint.\n */\nexport type ApiV2DinnerDishCategoryType = ApiV2DishCategoryType &\n{\n\t/**\n\t * ID of the category that the dinner dish belongs to.\n\t */\n\tdinnerDishTabId: number;\n};\n\n/**\n * The API response type for dinner dish categories.\n */\nexport type ApiV2DinnerDishCategoryResponseType = ApiV2BaseResponseType<ApiV2DinnerDishCategoryType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishCategoryApiEndpointSlug = 'dinner-dish-categories';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2DishTabType } from '@matochmat/api-client/src/v2/dishTab';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner dish category endpoint.\n */\nexport type ApiV2DinnerDishTabType = ApiV2DishTabType;\n\n/**\n * The API response type for dinner dish categories.\n */\nexport type ApiV2DinnerDishTabResponseType = ApiV2BaseResponseType<ApiV2DinnerDishTabType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerDishTabApiEndpointSlug = 'dinner-dish-tabs';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2OpeningHourType } from '@matochmat/api-client/src/v2/openingHour';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\nimport type { ApiV2RestaurantUploadConnectionType } from '@matochmat/api-client/src/v2/restaurantUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner functionality endpoint.\n */\nexport type ApiV2DinnerFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Number of columns to display dinner menu in.\n\t */\n\tcolumns: 1|2|3;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Determines what type of dinner functionality to show.\n\t */\n\tdinnerFunctionalityTypeId: number;\n\n\t/**\n\t * Background for the restaurant details page header.\n\t */\n\tdinnerMenuImage:\n\t{\n\t\t/**\n\t\t *\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t *\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Link to use for external link type menus.\n\t */\n\tmenuLink: string;\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * List of opening hours for the dinner.\n\t */\n\topeningHourList:\n\t{\n\t\titems: ApiV2OpeningHourType[];\n\t};\n\n\t/**\n\t * To what date to show the restaurant's dinner participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for dinner functionality items.\n */\nexport type ApiV2DinnerFunctionalityResponseType = ApiV2BaseResponseType<ApiV2DinnerFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerFunctionalityApiEndpointSlug = 'dinner-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the dinner functionality type endpoint.\n */\nexport type ApiV2DinnerFunctionalityTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for dinner functionality types.\n */\nexport type ApiV2DinnerFunctionalityTypeResponseType = ApiV2BaseResponseType<ApiV2DinnerFunctionalityTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DinnerFunctionalityTypeApiEndpointSlug = 'dinner-functionality-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the display solution v1 configuration endpoint.\n */\nexport type ApiV2DisplaySolutionV1ConfigurationType =\n{\n\t/**\n\t * Whether or not the display solution is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * JSX for rendering the actual display solution. Note that as the name suggests this is JSX and not plain JS.\n\t */\n\trenderJsx: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Generic setup settings for the display solution.\n\t */\n\tsettings: string;\n};\n\n/**\n * The API response type for display solution v1 configurations.\n */\nexport type ApiV2DisplaySolutionV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2DisplaySolutionV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2DisplaySolutionV1ConfigurationApiEndpointSlug = 'display-solution-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the email template endpoint.\n */\nexport type ApiV2EmailTemplateType =\n{\n\t/**\n\t * Determines if the template is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * Main text content.\n\t */\n\tcontent: string;\n\n\t/**\n\t * String representation of when the email template was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Determines if the template should default to sending a blind carbon copy to Hubspot.\n\t */\n\thubspotBcc: boolean;\n\n\t/**\n\t * Unique ID for the email template.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the email template was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Name of the email template.\n\t */\n\tname: string;\n\n\t/**\n\t * Determines if the template is required by the system (which will limit what admins can do with it in regards to disabling and deleting).\n\t */\n\trequiredBySystem: boolean;\n\n\t/**\n\t * Determines if the template should be shown in the GUI where admins can choose a template for their emails.\n\t */\n\tshowInTemplateSelection: boolean;\n\n\t/**\n\t * Title of the email.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for email templates.\n */\nexport type ApiV2EmailTemplateResponseType = ApiV2BaseResponseType<ApiV2EmailTemplateType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2EmailTemplateApiEndpointSlug = 'email-templates';\n","/**\n * API endpoint slug.\n */\nexport const apiV2FirebaseDeviceRegistrationTokenApiEndpointSlug = 'firebase-device-registration-tokens';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the integration v1 configuration endpoint.\n */\nexport type ApiV2IntegrationV1ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * The type of integration to display.\n\t */\n\tintegrationTypeId: 1|2|3;\n\n\t/**\n\t * Integration specific JS.\n\t */\n\tjs: string;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2IntegrationV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2IntegrationV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2IntegrationV1ConfigurationApiEndpointSlug = 'integration-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the integration v1 configuration endpoint.\n */\nexport type ApiV2IntegrationV2ConfigurationType =\n{\n\t/**\n\t * Whether or not the integration is active.\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Integration specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * JS for preparing the page before the actual rendering. This should normally be left empty and used only for special scenarios where the site you're integrating isn't built dynamically enough to support rendering the integration to look the same as the rest of the page (hardcoded things, strict post type setups, etc.). Note that as the name suggests this is JSX to be used for setting up the necessary stuff beforehand and not JSX (which you're expected to place in {@link ApiV2IntegrationV2ConfigurationType.renderJsx} instead).\n\t */\n\tpreRenderJs: string;\n\n\t/**\n\t * JSX for rendering the actual integration. Note that as the name suggests this is JSX and not plain JS (which you're expected to place in {@link ApiV2IntegrationV2ConfigurationType.preRenderJs} instead).\n\t */\n\trenderJsx: string;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2IntegrationV2ConfigurationResponseType = ApiV2BaseResponseType<ApiV2IntegrationV2ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2IntegrationV2ConfigurationApiEndpointSlug = 'integration-v2-configurations';\n","/**\n * API endpoint slug.\n */\nexport const apiV2LunchBoxApiEndpointSlug = 'lunch-boxes';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the lunch box functionality endpoint.\n */\nexport type ApiV2LunchBoxFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Conditions for ordering lunch boxes.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Latest possible time for placing orders.\n\t */\n\tlatestOrderTime: string;\n\n\t/**\n\t * The email address to send confirmation emails to.\n\t */\n\torderConfirmationEmail: string;\n\n\t/**\n\t * Earliest time for picking up orders.\n\t */\n\tpickupTimeFrom: string;\n\n\t/**\n\t * Latest time for picking up orders.\n\t */\n\tpickupTimeTo: string;\n\n\t/**\n\t * To what date to show the restaurant's lunch box participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for lunch box functionality.\n */\nexport type ApiV2LunchBoxFunctionalityResponseType = ApiV2BaseResponseType<ApiV2LunchBoxFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2LunchBoxFunctionalityApiEndpointSlug = 'lunch-box-functionality';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2LunchDishType } from '@matochmat/api-client/src/v2/lunchDish';\nimport type { ApiV2OpeningHourType } from '@matochmat/api-client/src/v2/openingHour';\nimport type { ApiV2RestaurantFunctionalityType } from '@matochmat/api-client/src/v2/restaurantFunctionality';\n\n/**\n * Type for the individual array items in v2 of the API for the lunch functionality endpoint.\n */\nexport type ApiV2LunchFunctionalityType = ApiV2RestaurantFunctionalityType &\n{\n\t/**\n\t * Controls whether or not the restaurant has bonus stamps active.\n\t */\n\tbonusStampsActive: boolean;\n\n\t/**\n\t * Text entered by the restaurant concerning which-if any-special conditions apply for getting bonus stamps.\n\t */\n\tbonusStampsConditionsText: string;\n\n\t/**\n\t * Date when the restaurant should be displayed as the daily lunch tip.\n\t */\n\tdailyLunchTipDate: string|null;\n\n\t/**\n\t * Date when the restaurant would've been displayed as the daily lunch tip but was intentionally skipped.\n\t */\n\tdailyLunchTipSkippedDate: string|null;\n\n\t/**\n\t * Which days to send empty menu reminders.\n\t */\n\temptyMenuReminderDays: number[];\n\n\t/**\n\t * Email to use when sending out empty menu reminders.\n\t */\n\temptyMenuReminderEmail: string;\n\n\t/**\n\t * String representation of the date when empty menu reminder was last sent. Used to avoid sending twice the same day if the script is run twice.\n\t */\n\temptyMenuReminderLastSent: string;\n\n\t/**\n\t * Default lunch menu data.\n\t */\n\tlunchDefault: ApiV2LunchDishType[];\n\n\t/**\n\t * Text shown above the menu to provide generic information not directly related to the dishes themselves.\n\t */\n\tmenuText: string;\n\n\t/**\n\t * List of opening hours for the lunch.\n\t */\n\topeningHourList:\n\t{\n\t\titems: ApiV2OpeningHourType[];\n\t};\n\n\t/**\n\t * To what date to show the restaurant's lunch participation as \"new\".\n\t */\n\tshowAsNewUntil: string|null;\n};\n\n/**\n * The API response type for lunch functionality.\n */\nexport type ApiV2LunchFunctionalityResponseType = ApiV2BaseResponseType<ApiV2LunchFunctionalityType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2LunchFunctionalityApiEndpointSlug = 'lunch-functionality';\n","/**\n * Endpoint for the local API to connect with the menu crawler.\n */\nexport const apiV2MenuCrawlerProxyApiEndpointSlug = 'menu-crawler-proxy';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the notice endpoint.\n */\nexport type ApiV2NoticeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Whether or not the notice has been handled.\n\t */\n\thandled: boolean;\n\n\t/**\n\t * Timestamp for when the notice was handled.\n\t */\n\thandledOn: string;\n\n\t/**\n\t * Unique ID for the notice.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Title of the notice.\n\t */\n\ttext: string;\n\n\t/**\n\t * Title of the notice.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for notices.\n */\nexport type ApiV2NoticeResponseType = ApiV2BaseResponseType<ApiV2NoticeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2NoticeApiEndpointSlug = 'notices';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the notification preference endpoint.\n */\nexport type ApiV2NotificationPreferenceType =\n{\n\t/**\n\t * Whether or not the notifications are active. We keep this as a separate value to allow users to keep their preferences after toggling notifications off and then on (as deleting it and re-adding it would mean data loss for any future properties/columns we choose to save on this class).\n\t */\n\tactive: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the user was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the restaurant that we want to send notifications for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the user to send notifications to. Note that this isn't used to send the actual notifications, that part is handled by device registration tokens that the user gets from Firebase if they do indeed opt in to push notifications. Note that those are indeed opt-in, and just because we have a notification preference here it does NOT necessarily mean we actually have any registration tokens to send the notifications to.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for notification preferences.\n */\nexport type ApiV2NotificationPreferenceResponseType = ApiV2BaseResponseType<ApiV2NotificationPreferenceType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2NotificationPreferenceApiEndpointSlug = 'notification-preferences';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the opening hour endpoint.\n */\nexport type ApiV2OpeningHourType =\n{\n\t/**\n\t * Time of day when the restaurant closes.\n\t */\n\tclosingTime: string;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * ID of the dinner functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tdinnerFunctionalityId: number|null;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Day of the week the opening hours are relevant for. This is ISO (not american) weekday number (not index).\n\t */\n\tisoWeekdayNumber: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the lunch box functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tlunchBoxFunctionalityId: number|null;\n\n\t/**\n\t * ID of the lunch functionality object the opening hour is relevant for, or null if this specific opening hour os connected to a different object type.\n\t */\n\tlunchFunctionalityId: number|null;\n\n\t/**\n\t * Whether or not the restaurant is open on this day.\n\t */\n\topen: boolean;\n\n\t/**\n\t * Time of day when the restaurant opens.\n\t */\n\topeningTime: string;\n};\n\n/**\n * The API response type for opening hour items.\n */\nexport type ApiV2OpeningHourResponseType = ApiV2BaseResponseType<ApiV2OpeningHourType[], number>;\n\n/**\n * API endpoint slug.\n */\n\nexport const apiV2OpeningHourApiEndpointSlug = 'opening-hours';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order endpoint.\n */\nexport type ApiV2OrderType =\n{\n\t/**\n\t * Keeps track of whether or not the user has confirmed their order.\n\t */\n\tconfirmed: boolean;\n\n\t/**\n\t * Timestamp for when the order was confirmed.\n\t */\n\tconfirmedDate: string|null;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email address to the customer.\n\t */\n\tcustomerEmail: string;\n\n\t/**\n\t * First name of the customer.\n\t */\n\tcustomerFirstName: string;\n\n\t/**\n\t * Last name of the customer.\n\t */\n\tcustomerLastName: string;\n\n\t/**\n\t * Phone number to the customer.\n\t */\n\tcustomerPhone: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Order number to display to the user. Not to be confused with the database ID.\n\t */\n\torderNumber: number|null;\n\n\t/**\n\t * Keeps track of whether or not the restaurant has processed the order.\n\t */\n\tprocessed: boolean;\n\n\t/**\n\t * Timestamp for when the order was processed.\n\t */\n\tprocessedDate: string|null;\n\n\t/**\n\t * ID of the restaurant that placed the order was placed on.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the user that placed the order.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for orders.\n */\nexport type ApiV2OrderResponseType = ApiV2BaseResponseType<ApiV2OrderType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2OrderApiEndpointSlug = 'orders';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order items endpoint.\n */\nexport type ApiV2OrderItemType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Description of the lunch box.\n\t */\n\tdescription: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the lunch box that the item refers to.\n\t */\n\tlunchBoxId: number|null;\n\n\t/**\n\t * Name of the lunch box.\n\t */\n\tname: string;\n\n\t/**\n\t * ID of the order that the item belongs to.\n\t */\n\torderId: number;\n\n\t/**\n\t * Price of the lunch box.\n\t */\n\tprice: number;\n\n\t/**\n\t * Number of items ordered.\n\t */\n\tquantity: number;\n\n\t/**\n\t * List of tags for the dish.\n\t */\n\ttags: string[];\n};\n\n/**\n * The API response type for order items.\n */\nexport type ApiV2OrderItemResponseType = ApiV2BaseResponseType<ApiV2OrderItemType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2OrderItemApiEndpointSlug = 'order-items';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the PDF v1 configuration endpoint.\n */\nexport type ApiV2PdfV1ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * PDF specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * Template (HTML code and custom shortcodes) for custom daily PDF menus.\n\t */\n\tdailyTemplate: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The type of PDF to display.\n\t */\n\tpdfV1ConfigurationTypeId: 1|2;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Template (HTML code and custom shortcodes) for custom weekly PDF menus.\n\t */\n\tweeklyTemplate: string;\n};\n\n/**\n * The API response type for integration v1 configurations.\n */\nexport type ApiV2PdfV1ConfigurationResponseType = ApiV2BaseResponseType<ApiV2PdfV1ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV1ConfigurationApiEndpointSlug = 'pdf-v1-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2PdfV1ConfigurationTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for PDF v1 configuration types.\n */\nexport type ApiV2PdfV1ConfigurationTypeResponseType = ApiV2BaseResponseType<ApiV2PdfV1ConfigurationTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV1ConfigurationTypeApiEndpointSlug = 'pdf-v1-configuration-types';\n\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the PDF v2 configuration endpoint.\n */\nexport type ApiV2PdfV2ConfigurationType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * PDF specific CSS.\n\t */\n\tcss: string;\n\n\t/**\n\t * The render JSX for the daily lunch menu (only relevant for custom PDFs).\n\t */\n\tdailyLunchMenuRenderJsx: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The type of PDF to display.\n\t */\n\tpdfV2ConfigurationTypeId: 1|2;\n\n\t/**\n\t * ID of the restaurant the configuration is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Generic setup settings for the PDF.\n\t */\n\tsettings: string;\n\n\t/**\n\t * The render JSX for the weekly lunch menu (only relevant for custom PDFs).\n\t */\n\tweeklyLunchMenuRenderJsx: string;\n};\n\n/**\n * The API response type for integration v2 configurations.\n */\nexport type ApiV2PdfV2ConfigurationResponseType = ApiV2BaseResponseType<ApiV2PdfV2ConfigurationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV2ConfigurationApiEndpointSlug = 'pdf-v2-configurations';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2PdfV2ConfigurationTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for PDF v2 configuration types.\n */\nexport type ApiV2PdfV2ConfigurationTypeResponseType = ApiV2BaseResponseType<ApiV2PdfV2ConfigurationTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PdfV2ConfigurationTypeApiEndpointSlug = 'pdf-v2-configuration-types';\n\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the policy endpoint.\n */\nexport type ApiV2PolicyType =\n{\n\t/**\n\t * String representation of when the policy was last created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the policy.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the policy was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Actual policy text.\n\t */\n\tpolicyText: string;\n\n\t/**\n\t * Date stamp for when the policy is valid from.\n\t */\n\tvalidFrom: string;\n};\n\n/**\n * The API response type for policys.\n */\nexport type ApiV2PolicyResponseType = ApiV2BaseResponseType<ApiV2PolicyType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2PolicyApiEndpointSlug = 'policies';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2CateringFunctionalityType } from '@matochmat/api-client/src/v2/cateringFunctionality';\nimport type { ApiV2CrawlingConfigurationType } from '@matochmat/api-client/src/v2/crawlingConfiguration';\nimport type { ApiV2DeliveryInfoType } from '@matochmat/api-client/src/v2/deliveryInfo';\nimport type { ApiV2DinnerFunctionalityType } from '@matochmat/api-client/src/v2/dinnerFunctionality';\nimport type { ApiV2LunchBoxFunctionalityType } from '@matochmat/api-client/src/v2/lunchBoxFunctionality';\nimport type { ApiV2LunchFunctionalityType } from '@matochmat/api-client/src/v2/lunchFunctionality';\nimport type { ApiV2RestaurantUploadConnectionType } from '@matochmat/api-client/src/v2/restaurantUploadConnection';\nimport type { ApiV2TableBookingType } from '@matochmat/api-client/src/v2/tableBooking';\nimport type { ApiV2TakeAwayType } from '@matochmat/api-client/src/v2/takeAway';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the restaurant endpoint.\n */\nexport type ApiV2RestaurantType =\n{\n\t/**\n\t * Text that describes the restaurant. Displays on the page to give lunch guests a bit of info and is commonly also used for page metadata.\n\t */\n\tabout: string;\n\n\t/**\n\t * String representation of the street address for the restaurant.\n\t */\n\taddress: string;\n\n\t/**\n\t * Aliases to match against when searching. Not actually displayed on the page.\n\t */\n\taliases: string[];\n\n\t/**\n\t *\n\t */\n\tcateringFunctionality: ApiV2CateringFunctionalityType;\n\n\t/**\n\t * City ID determining which city the restaurant belongs to.\n\t */\n\tcityId: number;\n\n\t/**\n\t * A compounded rating collected from different rating sites around the web.\n\t */\n\tcompoundRating: number|null;\n\n\t/**\n\t *\n\t */\n\tcrawlingConfiguration: ApiV2CrawlingConfigurationType;\n\n\t/**\n\t * String representation of when the restaurant was created.\n\t */\n\tcreated: null|string;\n\n\t/**\n\t * Delivery information.\n\t */\n\tdeliveryInfo: ApiV2DeliveryInfoType;\n\n\t/**\n\t * Background for the restaurant details page header.\n\t */\n\tdetailsPageHeaderBackground:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t *\n\t */\n\tdinnerFunctionality: ApiV2DinnerFunctionalityType;\n\n\t/**\n\t * Restaurant email. Used only for displaying to lunch guests and not for sending emails from the system.\n\t */\n\temail: string;\n\n\t/**\n\t * URL to the restaurant's Facebook page.\n\t */\n\tfacebook: string;\n\n\t/**\n\t * Unique entity ID.\n\t */\n\tid: number;\n\n\t/**\n\t * URL to the restaurant's Instagram page.\n\t */\n\tinstagram: string;\n\n\t/**\n\t * String representation of when the restaurant was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * String representation of latitude.\n\t */\n\tlatitude: string;\n\n\t/**\n\t * Restaurant logotype info.\n\t */\n\tlogotype:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Background for the restaurant logotype.\n\t */\n\tlogotypeBackground:\n\t{\n\t\t/**\n\t\t * The upload connection between the restaurant and the upload.\n\t\t */\n\t\trestaurantUpload: ApiV2RestaurantUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * String representation of longitude.\n\t */\n\tlongitude: string;\n\n\t/**\n\t *\n\t */\n\tlunchBoxFunctionality: ApiV2LunchBoxFunctionalityType;\n\n\t/**\n\t *\n\t */\n\tlunchFunctionality: ApiV2LunchFunctionalityType;\n\n\t/**\n\t * Name of the restaurant.\n\t */\n\tname: string;\n\n\t/**\n\t * Text shown below or in conjunction with name to convey further information. Useful when two restaurants have the same title but are located in different places or when a restaurant has changed name (for instance \"Loremrestaurangen (f.d. Ipsumrestaurangen)\").\n\t */\n\tnameSubtext: string;\n\n\t/**\n\t * Obfuscated unique ID. Used for legacy purposes only.\n\t * @deprecated Only used for legacy support for apps and third parties. In the long run we may consider removing this.\n\t * @see ID is now saved as a plain property.\n\t */\n\tobfuscatedId: string;\n\n\t/**\n\t * Determines which version of PDFs to use.\n\t */\n\tpdfVersion: 2;\n\n\t/**\n\t * Whether or not the restaurant is pending and awaiting approval.\n\t */\n\tpending: boolean;\n\n\t/**\n\t * Phone number to the restaurant.\n\t */\n\tphone: string;\n\n\t/**\n\t * Where the price range of the items the restaurant serves starts at. This is on a scale of 1 to 4.\n\t */\n\tpriceRangeFrom: number|null;\n\n\t/**\n\t * Where the price range of the items the restaurant serves ends at. This is on a scale of 1 to 4.\n\t */\n\tpriceRangeTo: number|null;\n\n\t/**\n\t * Tags the restaurant is connected to.\n\t */\n\trestaurantTagIds: number[];\n\n\t/**\n\t * Machine readable name of the restaurant.\n\t */\n\tslug: string;\n\n\t/**\n\t * The URL for the static map image.\n\t */\n\tstaticMapImageUrl: string;\n\n\t/**\n\t * Table booking info for the restaurant.\n\t */\n\ttableBooking: ApiV2TableBookingType;\n\n\t/**\n\t * Take away info for the restaurant.\n\t */\n\ttakeAway: ApiV2TakeAwayType;\n\n\t/**\n\t * Type for who updates the restaurant's menus.\n\t */\n\tupdatedByTypeId: 1|2|3;\n\n\t/**\n\t * URL to the restaurant's own website.\n\t */\n\twebsite: string;\n};\n\n/**\n * The API response type for restaurants.\n */\nexport type ApiV2RestaurantResponseType = ApiV2BaseResponseType<ApiV2RestaurantType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantApiEndpointSlug = 'restaurants';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the restaurant functionality visibility types endpoint.\n */\nexport type ApiV2RestaurantFunctionalityVisibilityTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: 1|2|3|4;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for restaurant functionality visibility types.\n */\nexport type ApiV2RestaurantFunctionalityVisibilityTypeResponseType = ApiV2BaseResponseType<ApiV2RestaurantFunctionalityVisibilityTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantFunctionalityVisibilityTypeApiEndpointSlug = 'restaurant-functionality-visibility-types';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2RestaurantUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Background color for the upload.\n\t */\n\tbackgroundColor: string;\n\n\t/**\n\t * ID of the restaurant the entity belongs to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t *\n\t */\n\trestaurantUploadTypeId: number;\n\n\t/**\n\t * Sort order for the connection.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2RestaurantUploadConnectionApiEndpointSlug = 'restaurant-uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2SessionApiEndpointSlug = 'session';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2ShowcasePositionTypeType } from '@matochmat/api-client/src/v2/showcasePositionType';\nimport type { ApiV2ShowcaseTypeType } from '@matochmat/api-client/src/v2/showcaseType';\nimport type { ApiV2ShowcaseUploadConnectionType } from '@matochmat/api-client/src/v2/showcaseUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase endpoint.\n */\nexport type ApiV2ShowcaseType =\n{\n\t/**\n\t * Determines whether or not to use `allow-same-origin` for iframes.\n\t */\n\tallowSameOrigin: boolean;\n\n\t/**\n\t * String representation of when the showcase was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Desktop image for the showcase.\n\t */\n\tdesktopImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the showcase and the upload.\n\t\t */\n\t\tshowcaseUpload: ApiV2ShowcaseUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Whether or not to display the ad in all cities.\n\t */\n\tdisplayInAllCities: boolean;\n\n\t/**\n\t * Whether or not to display the ad in the app variant of the page.\n\t */\n\tdisplayInApp: boolean;\n\n\t/**\n\t * Whether or not to display the ad on the web variant of the page.\n\t */\n\tdisplayOnWeb: boolean;\n\n\t/**\n\t * String representation of which date the ad should stop displaying.\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for the showcase.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the ad was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Link to where a click on the showcase should send the user in desktop.\n\t */\n\tlinkHrefDesktop: string;\n\n\t/**\n\t * Link to where a click on the showcase should send the user in mobile.\n\t */\n\tlinkHrefMobile: string;\n\n\t/**\n\t * Max view count before the showcase stops being displayed.\n\t */\n\tmaxViewCount: number|null;\n\n\t/**\n\t * Mobile image for the showcase.\n\t */\n\tmobileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the showcase and the upload.\n\t\t */\n\t\tshowcaseUpload: ApiV2ShowcaseUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Readable name of the showcase.\n\t */\n\tname: string;\n\n\t/**\n\t * Whether or not to open the link in a new tab.\n\t */\n\topenInNewTab: boolean;\n\n\t/**\n\t * Script content to load when using the script type.\n\t */\n\tscriptContent: string;\n\n\t/**\n\t * ID of the position type (which defines where on the page the ad should be displayed) for the showcase.\n\t */\n\tshowcasePositionTypeId: ApiV2ShowcasePositionTypeType[ 'id' ];\n\n\t/**\n\t * ID of the showcase type.\n\t */\n\tshowcaseTypeId: ApiV2ShowcaseTypeType[ 'id' ];\n\n\t/**\n\t * String representation of which date the ad should start displaying.\n\t */\n\tstartDate: string;\n};\n\n/**\n * The API response type for showcases.\n */\nexport type ApiV2ShowcaseResponseType = ApiV2BaseResponseType<ApiV2ShowcaseType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseApiEndpointSlug = 'showcases';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase position type endpoint.\n */\nexport type ApiV2ShowcasePositionTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Height for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueHeightDesktop: number;\n\n\t/**\n\t * Height for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueHeightMobile: number;\n\n\t/**\n\t * Width for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueWidthDesktop: number;\n\n\t/**\n\t * Width for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueWidthMobile: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the entity.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for showcases.\n */\nexport type ApiV2ShowcasePositionTypeResponseType = ApiV2BaseResponseType<ApiV2ShowcasePositionTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcasePositionTypeApiEndpointSlug = 'showcase-position-types';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the showcase type endpoint.\n */\nexport type ApiV2ShowcaseTypeType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Height for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueHeightDesktop: number;\n\n\t/**\n\t * Height for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueHeightMobile: number;\n\n\t/**\n\t * Width for aspect ratio base value for the desktop version.\n\t */\n\timageAspectRatioBaseValueWidthDesktop: number;\n\n\t/**\n\t * Width for aspect ratio base value for the mobile version.\n\t */\n\timageAspectRatioBaseValueWidthMobile: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the entity.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for showcase types.\n */\nexport type ApiV2ShowcaseTypeResponseType = ApiV2BaseResponseType<ApiV2ShowcaseTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseTypeApiEndpointSlug = 'showcase-types';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2ShowcaseUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Showcase ID upload belongs to.\n\t */\n\tshowcaseId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tshowcaseUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseUploadConnectionApiEndpointSlug = 'showcase-uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2ShowcaseViewCountApiEndpointSlug = 'showcase-view-counts';\n\n/**\n * Legacy support for an earlier variant having incorrect variable casing.\n */\nexport const apiV2ShowCaseViewCountApiEndpointSlug = apiV2ShowcaseViewCountApiEndpointSlug;\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the order items endpoint.\n */\nexport type ApiV2SubscriptionPeriodType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * End date for the subscription period\n\t */\n\tendDate: string;\n\n\t/**\n\t * Unique ID for subscription period.\n\t */\n\tid: number;\n\n\t/**\n\t * Whether or not the period has been invalidated.\n\t */\n\tinvalidated: boolean;\n\n\t/**\n\t * Keeps track of whether or not the current period is a trial period.\n\t */\n\tisTrialPeriod: boolean;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Keeps track of whether the period was manually created or not.\n\t */\n\tmanuallyCreated: boolean;\n\n\t/**\n\t * Restaurant ID the period relates to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Start date for the subscription period.\n\t */\n\tstartDate: string;\n};\n\n/**\n * The API response type for order items.\n */\nexport type ApiV2SubscriptionPeriodResponseType = ApiV2BaseResponseType<ApiV2SubscriptionPeriodType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2SubscriptionPeriodApiEndpointSlug = 'subscription-periods';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2//baseResponse';\n\n/**\n * Type for available/allowed system settings.\n */\nexport type SystemSettingKeyType =\n'allowPositionFeaturesOutsideApp'|\n'allowRestaurantsToUploadFiles'|\n'appUpdateNoticeDismissButtonEnabled'|\n'appUpdateNoticeForVersionsOlderThan'|\n'appUpdateNoticeText'|\n'appUpdateNoticeTitle'|\n'autoCorrections'|\n'cateringRequestFormEnabled'|\n'cateringRequestFormOnIntegrationsEnabled'|\n'cateringDefaultSortIsShuffled'|\n'dinnerDefaultSortIsShuffled'|\n'dinnerDishCategoryColumnSelectionEnabled'|\n'dinnerFunctionalityLinksEnabled'|\n'emptyMenuRemindersActive'|\n'faux404CityCateringPageText'|\n'faux404CityCateringPageTitle'|\n'faux404CityDinnerPageText'|\n'faux404CityDinnerPageTitle'|\n'faux404CityLunchBoxPageText'|\n'faux404CityLunchBoxPageTitle'|\n'faux404CityPageText'|\n'faux404CityPageTitle'|\n'getTheAppBannerActive'|\n'googleMapsApiKey'|\n'lunchBoxesNoticeDisplayTime'|\n'mapFunctionalityEnabled'|\n'promptUserToShareDialogActive'|\n'ptrEnabled'|\n'readShoppingCartDataFromStorage'|\n'showcaseMoreInformationContent'|\n'showcaseMoreInformationTitle'|\n'searchTagsEnabled'|\n'simulatedServerTimeShift'|\n'tellRestaurantAboutUsActive'|\n'tellUsAboutRestaurantActive';\n\n/**\n * Type for the individual array items in v2 of the API for the system settings endpoint.\n */\nexport type ApiV2SystemSettingType<T = unknown> =\n{\n\t/**\n\t * Whether or not the setting is backend only. This will still be sent to the frontend in some cases (admin editing etc.) which is why it's still available here.\n\t */\n\tbackendOnly?: boolean;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Key for the setting.\n\t */\n\tsettingKey: SystemSettingKeyType;\n\n\t/**\n\t * Value for the setting.\n\t */\n\tsettingValue: T;\n};\n\n/**\n * The API response type for system settings.\n */\nexport type ApiV2SystemSettingResponseType = ApiV2BaseResponseType<ApiV2SystemSettingType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2SystemSettingApiEndpointSlug = 'system-settings';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the table booking endpoint.\n */\nexport type ApiV2TableBookingType =\n{\n\t/**\n\t * Booking link.\n\t */\n\tbookingLink: string;\n\n\t/**\n\t * Text about table booking conditions.\n\t */\n\tconditionsText: string;\n\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email to use for table booking.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Link to use for iframe embeds of external table booking systems.\n\t */\n\tiframeLink: string;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number for booking tables.\n\t */\n\tphone: string;\n\n\t/**\n\t * ID of the restaurant that the table booking info is relevant for.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * ID of the specific type of table booking that's selected.\n\t */\n\ttableBookingTypeId: number;\n\n\t/**\n\t * Informational text about table booking conditions.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for table booking info.\n */\nexport type ApiV2TableBookingResponseType = ApiV2BaseResponseType<ApiV2TableBookingType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TableBookingApiEndpointSlug = 'table-booking';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n * Type for the individual array items in v2 of the API for the take away endpoint.\n */\nexport type ApiV2TakeAwayType =\n{\n\t/**\n\t * Timestamp for when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Email adress to be used for ordering take away.\n\t */\n\temail: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Phone number used for ordering take away.\n\t */\n\tphone: string;\n\n\t/**\n\t * Restaurant ID the entity belongs to.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * Link to external take away site.\n\t */\n\ttakeAwayLink: string;\n\n\t/**\n\t * ID of the specific type of take away that's selected.\n\t */\n\ttakeAwayTypeId: number;\n\n\t/**\n\t * Text to display to end users when displaying take away information.\n\t */\n\ttext: string;\n};\n\n/**\n * The API response type for take away info.\n */\nexport type ApiV2TakeAwayResponseType = ApiV2BaseResponseType<ApiV2TakeAwayType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TakeAwayApiEndpointSlug = 'take-away';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\nimport type { ApiV2TeamMemberUploadConnectionType } from '@matochmat/api-client/src/v2/teamMemberUploadConnection';\nimport type { ApiV2UploadType } from '@matochmat/api-client/src/v2/upload';\n\n/**\n * Type for the individual array items in v2 of the API for the team member endpoint.\n */\nexport type ApiV2TeamMemberType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * First name (given name).\n\t */\n\tfirstName: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * Last name (family name).\n\t */\n\tlastName: string;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * The profile image for the team member.\n\t */\n\tprofileImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the team member and the upload.\n\t\t */\n\t\tteamMemberUpload: ApiV2TeamMemberUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV2UploadType;\n\t};\n\n\t/**\n\t * Name of the role that the team member holds.\n\t */\n\troleName: string;\n\n\t/**\n\t * Numeric sorting order to determine display order.\n\t */\n\tsortOrder: number;\n};\n\n/**\n * The API response type for team member.\n */\nexport type ApiV2TeamMemberResponseType = ApiV2BaseResponseType<ApiV2TeamMemberType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TeamMemberApiEndpointSlug = 'team-members';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV2TeamMemberUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * Team member ID upload belongs to.\n\t */\n\tteamMemberId: number;\n\n\t/**\n\t * ID of upload type.\n\t */\n\tteamMemberUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2TeamMemberUploadConnectionApiEndpointSlug = 'team-member-uploads';\n","import type { ApiV2BaseResponseType } from '@matochmat/api-client/src/v2/baseResponse';\n\n/**\n *\n */\nexport type ApiV2UpdatedByTypeType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of the last time the entity was updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for \"Updated by\" types.\n */\nexport type ApiV2UpdatedByTypeResponseType = ApiV2BaseResponseType<ApiV2UpdatedByTypeType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV2UpdatedByTypeApiEndpointSlug = 'updated-by-types';\n\n","export type ApiV2UploadType =\n{\n\t/**\n\t * Determines whether or not this uses our alternative OG image variant.\n\t */\n\talternativeOgImage: boolean;\n\n\t/**\n\t * Base name of the file.\n\t */\n\tbaseName: string;\n\n\t/**\n\t * File extension.\n\t */\n\textension: string;\n\n\t/**\n\t * Unique entity ID.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Factor to use for modifying image max sizes in different parts of the system.\n\t */\n\tmaxSizeFactor: number;\n\n\t/**\n\t * Directory path to the file.\n\t */\n\tpath: string;\n\n\t/**\n\t * Timestamp for when the image was first uploaded.\n\t */\n\tuploaded: string;\n\n\t/**\n\t * Who uploaded the file.\n\t */\n\tuploader: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV2UploadsApiEndpointSlug = 'uploads';\n","/**\n * API endpoint slug.\n */\nexport const apiV2UserApiEndpointSlug = 'users';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\nimport type { ApiV3BlockContentUploadConnectionType } from '@matochmat/api-client/src/v3/blockContentUploadConnectionType';\nimport type { ApiV3UploadType } from '@matochmat/api-client/src/v3/upload';\n\n/**\n * Type for the individual array items in v3 of the API for the block content endpoint.\n */\nexport type ApiV3BlockContentType =\n{\n\t/**\n\t * Type ID for which type of block content it is.\n\t */\n\tblockContentTypeId: 1|2|3|4;\n\n\t/**\n\t * JSON with the block data.\n\t */\n\t// TODO: Make this more relevant\n\tblocks:\n\t{\n\t\tcontent: any[];\n\t\troot: { props: Record<string, any>; };\n\t\tzones: any[];\n\t};\n\n\t/**\n\t * Timestamp for when the entity was last created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Description of the content to use for metadata.\n\t */\n\tdescription: string;\n\n\t/**\n\t * Featured image for the content.\n\t */\n\tfeaturedImage:\n\t{\n\t\t/**\n\t\t * The upload connection between the block content and the upload.\n\t\t */\n\t\tblockContentUpload: ApiV3BlockContentUploadConnectionType;\n\n\t\t/**\n\t\t * Information about the actual upload.\n\t\t */\n\t\tupload: ApiV3UploadType;\n\t};\n\n\t/**\n\t * Unique ID for the content.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Slug for block content that is displayed as a standalone page.\n\t */\n\tslug: string;\n\n\t/**\n\t * Whether or not the slug is \"locked\", meaning it should be treated as non-editable due to some constraint such as being linked to from hardcoded buttons or links.\n\t */\n\tslugIsLocked: boolean;\n\n\t/**\n\t * Title for block content that is displayed as a standalone page.\n\t */\n\ttitle: string;\n};\n\n/**\n * The API response type for block content items.\n */\nexport type ApiV3BlockContentResponseType = ApiV3BaseResponseType<ApiV3BlockContentType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3BlockContentApiEndpointSlug = 'block-content';\n","import type { ApiV2UploadConnectionType } from '@matochmat/api-client/src/v2/uploadConnection';\n\nexport type ApiV3BlockContentUploadConnectionType = ApiV2UploadConnectionType &\n{\n\t/**\n\t * ID of the block content the entity belongs to.\n\t */\n\tblockContentId: number;\n\n\t/**\n\t *\n\t */\n\tblockContentUploadTypeId: number;\n};\n\n/**\n * API endpoint slug.\n */\nexport const apiV3BlockContentUploadConnectionApiEndpointSlug = 'block-content-uploads';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the coupon location endpoint.\n */\nexport type ApiV3CouponLocationType =\n{\n\t/**\n\t * City ID for the location.\n\t */\n\tcityId: number;\n\n\t/**\n\t * ID of the coupon the location represents.\n\t */\n\tcouponId: number;\n\n\t/**\n\t * Unique ID for the coupon location.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n};\n\n/**\n * The API response type for coupon location items.\n */\nexport type ApiV3CouponLocationResponseType = ApiV3BaseResponseType<ApiV3CouponLocationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3CouponLocationApiEndpointSlug = 'coupon-locations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant management endpoint.\n */\nexport type ApiV3RestaurantManagementType =\n{\n\t/**\n\t * String representation of when the entity relation was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the restaurant management.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity relation was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Restaurant ID.\n\t */\n\trestaurantId: number;\n\n\t/**\n\t * User ID.\n\t */\n\tuserId: number;\n};\n\n/**\n * The API response type for restaurant management items.\n */\nexport type ApiV3RestaurantManagementResponseType = ApiV3BaseResponseType<ApiV3RestaurantManagementType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantManagementApiEndpointSlug = 'restaurant-management';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant registration endpoint.\n */\nexport type ApiV3RestaurantRegistrationType =\n{\n\t/**\n\t *\n\t */\n\tadditionalInfoStepCompleted: boolean;\n\n\t/**\n\t *\n\t */\n\tcitySelectionStepCompleted: boolean;\n\n\t/**\n\t *\n\t */\n\tcreateAccountStepCompleted: boolean;\n\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t *\n\t */\n\tcreateRestaurantStepCompleted: boolean;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the city the restaurant should be registered in.\n\t */\n\trestaurantCityId: number|null;\n\n\t/**\n\t * ID of the restaurant which the registration concerns.\n\t */\n\trestaurantId: number|null;\n\n\t/**\n\t *\n\t */\n\trestaurantRegistrationStateId: number;\n\n\t/**\n\t * Token to allow resuming an abandoned registration.\n\t */\n\tresumeToken: string;\n\n\t/**\n\t * ID of the user which the registration concerns.\n\t */\n\tuserId: number|null;\n};\n\n/**\n * The API response type for restaurant registration items.\n */\nexport type ApiV3RestaurantRegistrationResponseType = ApiV3BaseResponseType<ApiV3RestaurantRegistrationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantRegistrationApiEndpointSlug = 'restaurant-registrations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the restaurant registration state endpoint.\n */\nexport type ApiV3RestaurantRegistrationStateType =\n{\n\t/**\n\t * String representation of when the entity was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the entity.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Human readable name of the state.\n\t */\n\tname: string;\n};\n\n/**\n * The API response type for restaurant registration state items.\n */\nexport type ApiV3RestaurantRegistrationStateResponseType = ApiV3BaseResponseType<ApiV3RestaurantRegistrationStateType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3RestaurantRegistrationStateApiEndpointSlug = 'restaurant-registration-states';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the showcase location endpoint.\n */\nexport type ApiV3ShowcaseLocationType =\n{\n\t/**\n\t * City ID for the location.\n\t */\n\tcityId: number;\n\n\t/**\n\t * Unique ID for the showcase location.\n\t */\n\tid: number;\n\n\t/**\n\t * Timestamp for when the entity was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * ID of the showcase the location represents.\n\t */\n\tshowcaseId: number;\n};\n\n/**\n * The API response type for showcase location items.\n */\nexport type ApiV3ShowcaseLocationResponseType = ApiV3BaseResponseType<ApiV3ShowcaseLocationType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3ShowcaseLocationApiEndpointSlug = 'showcase-locations';\n","import type { ApiV3BaseResponseType } from '@matochmat/api-client/src/v3/baseResponse';\n\n/**\n * Type for the individual array items in v3 of the API for the showcase user role connection endpoint.\n */\nexport type ApiV3ShowcaseUserRoleConnectionType =\n{\n\t/**\n\t * String representation of when the entity relation was created.\n\t */\n\tcreated: string;\n\n\t/**\n\t * Unique ID for the showcase user role connection.\n\t */\n\tid: number;\n\n\t/**\n\t * String representation of when the entity relation was last updated.\n\t */\n\tlastUpdated: string;\n\n\t/**\n\t * Showcase ID.\n\t */\n\tshowcaseId: number;\n\n\t/**\n\t * User role ID.\n\t */\n\tuserRoleId: number;\n};\n\n/**\n * The API response type for showcase user role connection items.\n */\nexport type ApiV3ShowcaseUserRoleConnectionResponseType = ApiV3BaseResponseType<ApiV3ShowcaseUserRoleConnectionType[], number>;\n\n/**\n * API endpoint slug.\n */\nexport const apiV3ShowcaseUserRoleConnectionApiEndpointSlug = 'showcase-user-role-connections';\n"],"names":[],"mappings":"AAgDA;;AAEG;AACI,MAAM,kCAAkC,GAAG;;AChClD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACHhD;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACTxD;;AAEG;AACI,MAAM,mCAAmC,GAAG;;ACsCnD;;AAEG;AACI,MAAM,yCAAyC,GAAG;;ACsJzD;;AAEG;AACI,MAAM,wBAAwB,GAAG;;ACnMxC;;AAEG;AACI,MAAM,wCAAwC,GAAG;;AC6CxD;;AAEG;AACI,MAAM,0BAA0B,GAAG;;ACG1C;;AAEG;AACI,MAAM,yCAAyC,GAAG;;AC7BzD;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACb9D;;AAEG;AACI,MAAM,gEAAgE,GAAG;;ACmChF;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AC3DjD;;AAEG;AACI,MAAM,iDAAiD,GAAG;;ACwCjE;;AAEG;AACI,MAAM,gCAAgC,GAAG;;AC1ChD;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACH9C;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACTtD;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AC4DjD;;AAEG;AACI,MAAM,uCAAuC,GAAG;;AC9CvD;;AAEG;AACI,MAAM,2CAA2C,GAAG;;ACiB3D;;AAEG;AACI,MAAM,kDAAkD,GAAG;;ACOlE;;AAEG;AACI,MAAM,iCAAiC,GAAG;;AClEjD;;AAEG;AACI,MAAM,mDAAmD,GAAG;;AC6CnE;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACE9D;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACxD9D;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACyC5C;;AAEG;AACI,MAAM,yCAAyC,GAAG;;AC2BzD;;AAEG;AACI,MAAM,sCAAsC,GAAG;;AC7EtD;;AAEG;AACI,MAAM,oCAAoC,GAAG;;AC6CpD;;AAEG;AACI,MAAM,0BAA0B,GAAG;;ACR1C;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACiB1D;;AAEG;AAEI,MAAM,+BAA+B,GAAG;;ACgB/C;;AAEG;AACI,MAAM,yBAAyB,GAAG;;ACvBzC;;AAEG;AACI,MAAM,6BAA6B,GAAG;;ACb7C;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACvBtD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACsB1D;;AAEG;AACI,MAAM,sCAAsC,GAAG;;AC5BtD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;ACE1D;;AAEG;AACI,MAAM,0BAA0B,GAAG;;AC0M1C;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACrN9C;;AAEG;AACI,MAAM,yDAAyD,GAAG;;ACXzE;;AAEG;AACI,MAAM,8CAA8C,GAAG;;AC5B9D;;AAEG;AACI,MAAM,2BAA2B,GAAG;;ACmI3C;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACpF5C;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACHxD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACzChD;;AAEG;AACI,MAAM,4CAA4C,GAAG;;AClB5D;;AAEG;AACI,MAAM,qCAAqC,GAAG;AAErD;;AAEG;AACI,MAAM,qCAAqC,GAAG;;ACkDrD;;AAEG;AACI,MAAM,sCAAsC,GAAG;;ACiBtD;;AAEG;AACI,MAAM,iCAAiC,GAAG;;ACbjD;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACbhD;;AAEG;AACI,MAAM,4BAA4B,GAAG;;ACK5C;;AAEG;AACI,MAAM,8BAA8B,GAAG;;ACtD9C;;AAEG;AACI,MAAM,8CAA8C,GAAG;;ACe9D;;AAEG;AACI,MAAM,iCAAiC,GAAG;;ACYjD;;AAEG;AACI,MAAM,2BAA2B,GAAG;;ACnD3C;;AAEG;AACI,MAAM,wBAAwB,GAAG;;AC+ExC;;AAEG;AACI,MAAM,gCAAgC,GAAG;;ACtEhD;;AAEG;AACI,MAAM,gDAAgD,GAAG;;ACehE;;AAEG;AACI,MAAM,kCAAkC,GAAG;;ACElD;;AAEG;AACI,MAAM,wCAAwC,GAAG;;ACgCxD;;AAEG;AACI,MAAM,0CAA0C,GAAG;;AC3C1D;;AAEG;AACI,MAAM,+CAA+C,GAAG;;ACH/D;;AAEG;AACI,MAAM,oCAAoC,GAAG;;ACEpD;;AAEG;AACI,MAAM,8CAA8C,GAAG;;;;"}
|
|
@@ -12,7 +12,13 @@ export type ApiV3BlockContentType = {
|
|
|
12
12
|
/**
|
|
13
13
|
* JSON with the block data.
|
|
14
14
|
*/
|
|
15
|
-
blocks:
|
|
15
|
+
blocks: {
|
|
16
|
+
content: any[];
|
|
17
|
+
root: {
|
|
18
|
+
props: Record<string, any>;
|
|
19
|
+
};
|
|
20
|
+
zones: any[];
|
|
21
|
+
};
|
|
16
22
|
/**
|
|
17
23
|
* Timestamp for when the entity was last created.
|
|
18
24
|
*/
|
package/package.json
CHANGED