@deliverart/sdk-js-integration 2.16.4 → 2.18.0
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 +2860 -327
- package/dist/index.d.cts +24176 -11020
- package/dist/index.d.ts +24176 -11020
- package/dist/index.js +2481 -241
- package/package.json +10 -10
package/dist/index.js
CHANGED
|
@@ -10835,11 +10835,11 @@ function _stringbool(Classes, _params) {
|
|
|
10835
10835
|
const _Boolean = Classes.Boolean ?? $ZodBoolean;
|
|
10836
10836
|
const _String = Classes.String ?? $ZodString;
|
|
10837
10837
|
const stringSchema = new _String({ type: "string", error: params.error });
|
|
10838
|
-
const
|
|
10838
|
+
const booleanSchema6 = new _Boolean({ type: "boolean", error: params.error });
|
|
10839
10839
|
const codec2 = new _Codec({
|
|
10840
10840
|
type: "pipe",
|
|
10841
10841
|
in: stringSchema,
|
|
10842
|
-
out:
|
|
10842
|
+
out: booleanSchema6,
|
|
10843
10843
|
transform: (input, payload) => {
|
|
10844
10844
|
let data = input;
|
|
10845
10845
|
if (params.case !== "sensitive")
|
|
@@ -13776,7 +13776,12 @@ function date4(params) {
|
|
|
13776
13776
|
config(en_default());
|
|
13777
13777
|
|
|
13778
13778
|
// src/types.ts
|
|
13779
|
-
import {
|
|
13779
|
+
import {
|
|
13780
|
+
IriObject,
|
|
13781
|
+
iriNullableSchema,
|
|
13782
|
+
iriSchema,
|
|
13783
|
+
matchesIriPattern
|
|
13784
|
+
} from "@deliverart/sdk-js-global-types";
|
|
13780
13785
|
var integrationStatuses = ["pending", "active", "deleting"];
|
|
13781
13786
|
var integrationStatusSchema = external_exports.enum(integrationStatuses);
|
|
13782
13787
|
var integrationProviders = ["deliverart", "cassa_in_cloud"];
|
|
@@ -13786,11 +13791,12 @@ var integrationServices = [
|
|
|
13786
13791
|
"justeat",
|
|
13787
13792
|
"glovo",
|
|
13788
13793
|
"cassa_in_cloud",
|
|
13794
|
+
"tilby",
|
|
13789
13795
|
"kitchen",
|
|
13790
13796
|
"ecommerce"
|
|
13791
13797
|
];
|
|
13792
13798
|
var integrationServiceSchema = external_exports.enum(integrationServices);
|
|
13793
|
-
var exclusiveIntegrationServices = ["kitchen", "cassa_in_cloud"];
|
|
13799
|
+
var exclusiveIntegrationServices = ["kitchen", "cassa_in_cloud", "tilby"];
|
|
13794
13800
|
var exclusiveIntegrationServiceSchema = external_exports.enum(exclusiveIntegrationServices);
|
|
13795
13801
|
var integrationClientLogRequestMethods = ["DELETE", "GET", "PATCH", "POST", "PUT"];
|
|
13796
13802
|
var integrationClientLogRequestMethodSchema = external_exports.enum(integrationClientLogRequestMethods);
|
|
@@ -13873,9 +13879,7 @@ var integrationDeliverooDebugSiteTypes = [
|
|
|
13873
13879
|
"ON_DEMAND_CONVENIENCE",
|
|
13874
13880
|
"UNKNOWN"
|
|
13875
13881
|
];
|
|
13876
|
-
var integrationDeliverooDebugSiteTypeSchema = external_exports.enum(
|
|
13877
|
-
integrationDeliverooDebugSiteTypes
|
|
13878
|
-
);
|
|
13882
|
+
var integrationDeliverooDebugSiteTypeSchema = external_exports.enum(integrationDeliverooDebugSiteTypes);
|
|
13879
13883
|
var integrationGlovoMenuUpdateStatuses = [
|
|
13880
13884
|
"SUCCESS",
|
|
13881
13885
|
"PROCESSING",
|
|
@@ -13980,6 +13984,63 @@ var integrationCassaInCloudTimetablesSyncSteps = ["timetables"];
|
|
|
13980
13984
|
var integrationCassaInCloudTimetablesSyncStepSchema = external_exports.enum(
|
|
13981
13985
|
integrationCassaInCloudTimetablesSyncSteps
|
|
13982
13986
|
);
|
|
13987
|
+
var integrationTilbySyncDirections = ["inbound", "outbound"];
|
|
13988
|
+
var integrationTilbySyncDirectionSchema = external_exports.enum(integrationTilbySyncDirections);
|
|
13989
|
+
var integrationTilbySyncModes = ["full", "incremental"];
|
|
13990
|
+
var integrationTilbySyncModeSchema = external_exports.enum(integrationTilbySyncModes);
|
|
13991
|
+
var integrationTilbyMappingSyncStatuses = [
|
|
13992
|
+
"pending",
|
|
13993
|
+
"synced",
|
|
13994
|
+
"manual_resolution_required",
|
|
13995
|
+
"skipped",
|
|
13996
|
+
"failed",
|
|
13997
|
+
"unsupported"
|
|
13998
|
+
];
|
|
13999
|
+
var integrationTilbyMappingSyncStatusSchema = external_exports.enum(integrationTilbyMappingSyncStatuses);
|
|
14000
|
+
var integrationTilbyMappingSyncFailureCodes = [
|
|
14001
|
+
"missing_remote_identifier",
|
|
14002
|
+
"missing_remote_vat",
|
|
14003
|
+
"missing_remote_category",
|
|
14004
|
+
"missing_remote_department",
|
|
14005
|
+
"unresolved_vat_mapping",
|
|
14006
|
+
"unresolved_category_mapping",
|
|
14007
|
+
"unresolved_department_mapping",
|
|
14008
|
+
"customer_conflict",
|
|
14009
|
+
"remote_deleted",
|
|
14010
|
+
"local_entity_not_found",
|
|
14011
|
+
"remote_entity_not_found",
|
|
14012
|
+
"remote_api_error",
|
|
14013
|
+
"validation_failed",
|
|
14014
|
+
"ambiguous_mapping",
|
|
14015
|
+
"disabled_by_settings",
|
|
14016
|
+
"manual_resolution_required",
|
|
14017
|
+
"unresolved_product_mapping",
|
|
14018
|
+
"unresolved_variant_mapping",
|
|
14019
|
+
"unsupported_order_item",
|
|
14020
|
+
"unsupported_order_type",
|
|
14021
|
+
"invalid_schedule",
|
|
14022
|
+
"remote_sale_not_open",
|
|
14023
|
+
"unsupported_remote_model",
|
|
14024
|
+
"unsupported_bundle",
|
|
14025
|
+
"unsupported_modifier",
|
|
14026
|
+
"unsupported_sales_mode",
|
|
14027
|
+
"unsupported_variant",
|
|
14028
|
+
"unsupported_component",
|
|
14029
|
+
"unknown"
|
|
14030
|
+
];
|
|
14031
|
+
var integrationTilbyMappingSyncFailureCodeSchema = external_exports.enum(
|
|
14032
|
+
integrationTilbyMappingSyncFailureCodes
|
|
14033
|
+
);
|
|
14034
|
+
var integrationTilbyFiscalMappingsSyncSteps = ["vat", "departments"];
|
|
14035
|
+
var integrationTilbyFiscalMappingsSyncStepSchema = external_exports.enum(
|
|
14036
|
+
integrationTilbyFiscalMappingsSyncSteps
|
|
14037
|
+
);
|
|
14038
|
+
var integrationTilbyCustomersSyncSteps = ["customers"];
|
|
14039
|
+
var integrationTilbyCustomersSyncStepSchema = external_exports.enum(integrationTilbyCustomersSyncSteps);
|
|
14040
|
+
var integrationTilbyMenuSyncSteps = ["categories", "components", "products"];
|
|
14041
|
+
var integrationTilbyMenuSyncStepSchema = external_exports.enum(integrationTilbyMenuSyncSteps);
|
|
14042
|
+
var integrationTilbyOrdersSyncSteps = ["orders"];
|
|
14043
|
+
var integrationTilbyOrdersSyncStepSchema = external_exports.enum(integrationTilbyOrdersSyncSteps);
|
|
13983
14044
|
function createIriSchemas(path) {
|
|
13984
14045
|
return {
|
|
13985
14046
|
iriSchema: iriSchema(path),
|
|
@@ -14053,6 +14114,8 @@ var integrationJustEatMenuVersionIriSchema = integrationMenuVersionPathSchemas.j
|
|
|
14053
14114
|
var integrationJustEatMenuVersionNullableIriSchema = integrationMenuVersionPathSchemas.justeat.iriNullableSchema;
|
|
14054
14115
|
var integrationCassaInCloudIriSchema = integrationPathSchemas.cassa_in_cloud.iriSchema;
|
|
14055
14116
|
var integrationCassaInCloudNullableIriSchema = integrationPathSchemas.cassa_in_cloud.iriNullableSchema;
|
|
14117
|
+
var integrationTilbyIriSchema = integrationPathSchemas.tilby.iriSchema;
|
|
14118
|
+
var integrationTilbyNullableIriSchema = integrationPathSchemas.tilby.iriNullableSchema;
|
|
14056
14119
|
var integrationEcommerceIriSchema = integrationPathSchemas.ecommerce.iriSchema;
|
|
14057
14120
|
var integrationEcommerceNullableIriSchema = integrationPathSchemas.ecommerce.iriNullableSchema;
|
|
14058
14121
|
var integrationIriSchema = iriSchema("/integrations/:id");
|
|
@@ -14107,24 +14170,78 @@ var integrationCassaInCloudSyncSalesModesErrorLogIriSchema = iriSchema(
|
|
|
14107
14170
|
var integrationCassaInCloudSyncTimetablesErrorLogIriSchema = iriSchema(
|
|
14108
14171
|
"/integrations/cassa_in_cloud/:id/sync_timetables_processes/:processId/error_logs/:errorLogId"
|
|
14109
14172
|
);
|
|
14173
|
+
var integrationTilbySyncFiscalMappingsProcessIriSchema = iriSchema(
|
|
14174
|
+
"/integrations/tilby/:id/sync_fiscal_mappings_processes/:processId"
|
|
14175
|
+
);
|
|
14176
|
+
var integrationTilbySyncCustomersProcessIriSchema = iriSchema(
|
|
14177
|
+
"/integrations/tilby/:id/sync_customers_processes/:processId"
|
|
14178
|
+
);
|
|
14179
|
+
var integrationTilbySyncMenuProcessIriSchema = iriSchema(
|
|
14180
|
+
"/integrations/tilby/:id/sync_menu_processes/:processId"
|
|
14181
|
+
);
|
|
14182
|
+
var integrationTilbySyncOrdersProcessIriSchema = iriSchema(
|
|
14183
|
+
"/integrations/tilby/:id/sync_orders_processes/:processId"
|
|
14184
|
+
);
|
|
14185
|
+
var integrationTilbySyncFiscalMappingsErrorLogIriSchema = iriSchema(
|
|
14186
|
+
"/integrations/tilby/:id/sync_fiscal_mappings_processes/:processId/error_logs/:errorLogId"
|
|
14187
|
+
);
|
|
14188
|
+
var integrationTilbySyncCustomersErrorLogIriSchema = iriSchema(
|
|
14189
|
+
"/integrations/tilby/:id/sync_customers_processes/:processId/error_logs/:errorLogId"
|
|
14190
|
+
);
|
|
14191
|
+
var integrationTilbySyncMenuErrorLogIriSchema = iriSchema(
|
|
14192
|
+
"/integrations/tilby/:id/sync_menu_processes/:processId/error_logs/:errorLogId"
|
|
14193
|
+
);
|
|
14194
|
+
var integrationTilbySyncOrdersErrorLogIriSchema = iriSchema(
|
|
14195
|
+
"/integrations/tilby/:id/sync_orders_processes/:processId/error_logs/:errorLogId"
|
|
14196
|
+
);
|
|
14110
14197
|
var integrationCassaInCloudWebHookSettingIriSchema = iriSchema(
|
|
14111
14198
|
"/integrations/cassa_in_cloud/:id/webhook_settings/:webHookId"
|
|
14112
14199
|
);
|
|
14200
|
+
var integrationTilbyWebHookSettingIriSchema = iriSchema(
|
|
14201
|
+
"/integrations/tilby/:id/webhook_settings/:webHookId"
|
|
14202
|
+
);
|
|
14203
|
+
var integrationTilbyWebHookEventIriSchema = iriSchema(
|
|
14204
|
+
"/integrations/tilby/:id/webhook_events/:eventId"
|
|
14205
|
+
);
|
|
14113
14206
|
var integrationCassaInCloudDepartmentMappingIriSchema = iriSchema(
|
|
14114
14207
|
"/integrations/cassa_in_cloud/:id/department_mappings/:departmentId"
|
|
14115
14208
|
);
|
|
14209
|
+
var integrationTilbyDepartmentMappingIriSchema = iriSchema(
|
|
14210
|
+
"/integrations/tilby/:id/department_mappings/:mappingId"
|
|
14211
|
+
);
|
|
14212
|
+
var integrationTilbyDepartmentMappingNullableIriSchema = iriNullableSchema(
|
|
14213
|
+
"/integrations/tilby/:id/department_mappings/:mappingId"
|
|
14214
|
+
);
|
|
14215
|
+
var integrationTilbyVatMappingIriSchema = iriSchema(
|
|
14216
|
+
"/integrations/tilby/:id/vat_mappings/:mappingId"
|
|
14217
|
+
);
|
|
14218
|
+
var integrationTilbyVatMappingNullableIriSchema = iriNullableSchema(
|
|
14219
|
+
"/integrations/tilby/:id/vat_mappings/:mappingId"
|
|
14220
|
+
);
|
|
14116
14221
|
var integrationCassaInCloudCategoryMappingIriSchema = iriSchema(
|
|
14117
14222
|
"/integrations/cassa_in_cloud/:id/category_mappings/:categoryId"
|
|
14118
14223
|
);
|
|
14119
14224
|
var integrationCassaInCloudCategoryMappingNullableIriSchema = iriNullableSchema(
|
|
14120
14225
|
"/integrations/cassa_in_cloud/:id/category_mappings/:categoryId"
|
|
14121
14226
|
);
|
|
14227
|
+
var integrationTilbyCategoryMappingIriSchema = iriSchema(
|
|
14228
|
+
"/integrations/tilby/:id/category_mappings/:mappingId"
|
|
14229
|
+
);
|
|
14230
|
+
var integrationTilbyCategoryMappingNullableIriSchema = iriNullableSchema(
|
|
14231
|
+
"/integrations/tilby/:id/category_mappings/:mappingId"
|
|
14232
|
+
);
|
|
14122
14233
|
var integrationCassaInCloudOptionMappingIriSchema = iriSchema(
|
|
14123
14234
|
"/integrations/cassa_in_cloud/:id/option_mappings/:optionId"
|
|
14124
14235
|
);
|
|
14125
14236
|
var integrationCassaInCloudComponentMappingIriSchema = iriSchema(
|
|
14126
14237
|
"/integrations/cassa_in_cloud/:id/component_mappings/:componentId"
|
|
14127
14238
|
);
|
|
14239
|
+
var integrationTilbyComponentMappingIriSchema = iriSchema(
|
|
14240
|
+
"/integrations/tilby/:id/component_mappings/:mappingId"
|
|
14241
|
+
);
|
|
14242
|
+
var integrationTilbyComponentMappingNullableIriSchema = iriNullableSchema(
|
|
14243
|
+
"/integrations/tilby/:id/component_mappings/:mappingId"
|
|
14244
|
+
);
|
|
14128
14245
|
var integrationCassaInCloudOrganizationMappingIriSchema = iriSchema(
|
|
14129
14246
|
"/integrations/cassa_in_cloud/:id/organization_mappings/:mappingId"
|
|
14130
14247
|
);
|
|
@@ -14134,12 +14251,24 @@ var integrationCassaInCloudProductMappingIriSchema = iriSchema(
|
|
|
14134
14251
|
var integrationCassaInCloudProductMappingNullableIriSchema = iriNullableSchema(
|
|
14135
14252
|
"/integrations/cassa_in_cloud/:id/product_mappings/:productId"
|
|
14136
14253
|
);
|
|
14254
|
+
var integrationTilbyProductMappingIriSchema = iriSchema(
|
|
14255
|
+
"/integrations/tilby/:id/product_mappings/:mappingId"
|
|
14256
|
+
);
|
|
14257
|
+
var integrationTilbyProductMappingNullableIriSchema = iriNullableSchema(
|
|
14258
|
+
"/integrations/tilby/:id/product_mappings/:mappingId"
|
|
14259
|
+
);
|
|
14137
14260
|
var integrationCassaInCloudProductVariantMappingIriSchema = iriSchema(
|
|
14138
14261
|
"/integrations/cassa_in_cloud/:id/product_mappings/:productId/variant_mappings/:variantId"
|
|
14139
14262
|
);
|
|
14140
14263
|
var integrationCassaInCloudProductVariantMappingNullableIriSchema = iriNullableSchema(
|
|
14141
14264
|
"/integrations/cassa_in_cloud/:id/product_mappings/:productId/variant_mappings/:variantId"
|
|
14142
14265
|
);
|
|
14266
|
+
var integrationTilbyProductVariantMappingIriSchema = iriSchema(
|
|
14267
|
+
"/integrations/tilby/:id/product_mappings/:productId/variant_mappings/:variantId"
|
|
14268
|
+
);
|
|
14269
|
+
var integrationTilbyProductVariantMappingNullableIriSchema = iriNullableSchema(
|
|
14270
|
+
"/integrations/tilby/:id/product_mappings/:productId/variant_mappings/:variantId"
|
|
14271
|
+
);
|
|
14143
14272
|
var integrationCassaInCloudSalesModeMappingIriSchema = iriSchema(
|
|
14144
14273
|
"/integrations/cassa_in_cloud/:id/sales_mode_mappings/:mappingId"
|
|
14145
14274
|
);
|
|
@@ -14149,12 +14278,24 @@ var integrationCassaInCloudCustomerMappingIriSchema = iriSchema(
|
|
|
14149
14278
|
var integrationCassaInCloudCustomerMappingNullableIriSchema = iriNullableSchema(
|
|
14150
14279
|
"/integrations/cassa_in_cloud/:id/customer_mappings/:mappingId"
|
|
14151
14280
|
);
|
|
14281
|
+
var integrationTilbyCustomerMappingIriSchema = iriSchema(
|
|
14282
|
+
"/integrations/tilby/:id/customer_mappings/:mappingId"
|
|
14283
|
+
);
|
|
14284
|
+
var integrationTilbyCustomerMappingNullableIriSchema = iriNullableSchema(
|
|
14285
|
+
"/integrations/tilby/:id/customer_mappings/:mappingId"
|
|
14286
|
+
);
|
|
14152
14287
|
var integrationCassaInCloudOrderMappingIriSchema = iriSchema(
|
|
14153
14288
|
"/integrations/cassa_in_cloud/:id/order_mappings/:orderId"
|
|
14154
14289
|
);
|
|
14155
14290
|
var integrationCassaInCloudOrderMappingNullableIriSchema = iriNullableSchema(
|
|
14156
14291
|
"/integrations/cassa_in_cloud/:id/order_mappings/:orderId"
|
|
14157
14292
|
);
|
|
14293
|
+
var integrationTilbyOrderMappingIriSchema = iriSchema(
|
|
14294
|
+
"/integrations/tilby/:id/order_mappings/:mappingId"
|
|
14295
|
+
);
|
|
14296
|
+
var integrationTilbyOrderMappingNullableIriSchema = iriNullableSchema(
|
|
14297
|
+
"/integrations/tilby/:id/order_mappings/:mappingId"
|
|
14298
|
+
);
|
|
14158
14299
|
var integrationCassaInCloudOptionValueMappingIriSchema = iriSchema(
|
|
14159
14300
|
"/integrations/cassa_in_cloud/:id/option_value_mappings/:optionValueId"
|
|
14160
14301
|
);
|
|
@@ -15263,6 +15404,16 @@ var integrationDeliverooDebugDaysOffResponseSchema = external_exports.object({
|
|
|
15263
15404
|
page: integrationDeliverooDebugPageSchema,
|
|
15264
15405
|
daysOff: external_exports.array(integrationDeliverooDebugDayOffSchema)
|
|
15265
15406
|
});
|
|
15407
|
+
var integrationDeliverooSiteDayOffInputSchema = external_exports.object({
|
|
15408
|
+
localStartTime: external_exports.string(),
|
|
15409
|
+
localEndTime: external_exports.string()
|
|
15410
|
+
});
|
|
15411
|
+
var integrationDeliverooSiteDayOffResponseSchema = integrationDeliverooDebugDayOffSchema;
|
|
15412
|
+
var integrationDeliverooSiteDaysOffResponseSchema = external_exports.object({
|
|
15413
|
+
count: external_exports.coerce.number().nonnegative(),
|
|
15414
|
+
page: integrationDeliverooDebugPageSchema,
|
|
15415
|
+
daysOff: external_exports.array(integrationDeliverooDebugDayOffSchema)
|
|
15416
|
+
});
|
|
15266
15417
|
|
|
15267
15418
|
// src/service-schemas/ecommerce.ts
|
|
15268
15419
|
import {
|
|
@@ -15692,6 +15843,24 @@ var integrationJustEatSyncMenuProcessesQuerySchema = external_exports.object({
|
|
|
15692
15843
|
"order[createdAt]": sortDirSchema6.optional(),
|
|
15693
15844
|
page: external_exports.coerce.number().optional()
|
|
15694
15845
|
});
|
|
15846
|
+
var integrationJustEatMenuItemAvailabilityDeltaSchema = external_exports.object({
|
|
15847
|
+
id: external_exports.string(),
|
|
15848
|
+
menuItemId: external_exports.string(),
|
|
15849
|
+
attempts: external_exports.coerce.number().int().nonnegative(),
|
|
15850
|
+
createdAt: datetimeSchema7,
|
|
15851
|
+
updatedAt: datetimeSchema7
|
|
15852
|
+
});
|
|
15853
|
+
var integrationJustEatMenuItemAvailabilityDeltaDetailsSchema = integrationJustEatMenuItemAvailabilityDeltaSchema.extend({
|
|
15854
|
+
integration: integrationJustEatIriSchema
|
|
15855
|
+
});
|
|
15856
|
+
var integrationJustEatMenuItemAvailabilityDeltasQuerySchema = external_exports.object({
|
|
15857
|
+
"order[createdAt]": sortDirSchema6.optional(),
|
|
15858
|
+
"order[updatedAt]": sortDirSchema6.optional(),
|
|
15859
|
+
"order[attempts]": sortDirSchema6.optional(),
|
|
15860
|
+
id: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
15861
|
+
menuItemId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
15862
|
+
page: external_exports.coerce.number().optional()
|
|
15863
|
+
});
|
|
15695
15864
|
var integrationJustEatOrderSchema = external_exports.object({
|
|
15696
15865
|
id: external_exports.string(),
|
|
15697
15866
|
order: orderNullableIriSchema4,
|
|
@@ -15781,6 +15950,553 @@ var integrationKitchenAccessTokensQuerySchema = external_exports.object({
|
|
|
15781
15950
|
page: external_exports.coerce.number().optional()
|
|
15782
15951
|
});
|
|
15783
15952
|
|
|
15953
|
+
// src/service-schemas/tilby.ts
|
|
15954
|
+
import { customerIriSchema as customerIriSchema2 } from "@deliverart/sdk-js-customer";
|
|
15955
|
+
import {
|
|
15956
|
+
booleanSchema as booleanSchema5,
|
|
15957
|
+
datetimeSchema as datetimeSchema9,
|
|
15958
|
+
sortDirSchema as sortDirSchema8,
|
|
15959
|
+
timestampsFilterSchema as timestampsFilterSchema7
|
|
15960
|
+
} from "@deliverart/sdk-js-global-types";
|
|
15961
|
+
import {
|
|
15962
|
+
menuItemCategoryNullableIriSchema,
|
|
15963
|
+
menuItemModifierNullableIriSchema,
|
|
15964
|
+
menuItemNullableIriSchema as menuItemNullableIriSchema2,
|
|
15965
|
+
menuItemPriceOverrideNullableIriSchema as menuItemPriceOverrideNullableIriSchema2
|
|
15966
|
+
} from "@deliverart/sdk-js-menu";
|
|
15967
|
+
import { orderNullableIriSchema as orderNullableIriSchema5 } from "@deliverart/sdk-js-order";
|
|
15968
|
+
var exactStringFilterSchema2 = external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional();
|
|
15969
|
+
var exactNumberFilterSchema = external_exports.union([external_exports.coerce.number(), external_exports.array(external_exports.coerce.number())]).optional();
|
|
15970
|
+
var dateFilterShape = {
|
|
15971
|
+
"createdAt[before]": external_exports.string().optional(),
|
|
15972
|
+
"createdAt[strictly_before]": external_exports.string().optional(),
|
|
15973
|
+
"createdAt[after]": external_exports.string().optional(),
|
|
15974
|
+
"createdAt[strictly_after]": external_exports.string().optional()
|
|
15975
|
+
};
|
|
15976
|
+
var integrationTilbySyncSettingsSchema = external_exports.object({
|
|
15977
|
+
externalCascadeDeleteOrder: external_exports.boolean().default(true),
|
|
15978
|
+
internalCascadeDeleteOrder: external_exports.boolean().default(true),
|
|
15979
|
+
internalCascadeUpdateOrderStatus: external_exports.boolean().default(true),
|
|
15980
|
+
externalCascadeDeleteCustomer: external_exports.boolean().default(true),
|
|
15981
|
+
internalCascadeDeleteCustomer: external_exports.boolean().default(true),
|
|
15982
|
+
internalCascadeUpdateCustomer: external_exports.boolean().default(true),
|
|
15983
|
+
skipSyncProductDescription: external_exports.boolean().default(false),
|
|
15984
|
+
skipSyncImages: external_exports.boolean().default(false),
|
|
15985
|
+
syncInboundMenu: external_exports.boolean().default(true),
|
|
15986
|
+
syncOutboundMenu: external_exports.boolean().default(false),
|
|
15987
|
+
syncInboundCustomers: external_exports.boolean().default(false),
|
|
15988
|
+
syncOutboundCustomers: external_exports.boolean().default(true),
|
|
15989
|
+
syncInboundOrders: external_exports.boolean().default(false),
|
|
15990
|
+
syncOutboundOrders: external_exports.boolean().default(true),
|
|
15991
|
+
syncInboundStock: external_exports.boolean().default(false),
|
|
15992
|
+
syncOutboundStock: external_exports.boolean().default(false),
|
|
15993
|
+
syncWebhooks: external_exports.boolean().default(true),
|
|
15994
|
+
syncClosedSalesOnly: external_exports.boolean().default(false),
|
|
15995
|
+
allowClosedSaleCreation: external_exports.boolean().default(false)
|
|
15996
|
+
});
|
|
15997
|
+
var integrationTilbyEditableSyncSettingsSchema = integrationTilbySyncSettingsSchema.omit({
|
|
15998
|
+
allowClosedSaleCreation: true
|
|
15999
|
+
}).partial();
|
|
16000
|
+
var integrationTilbySyncTimesSchema = external_exports.object({
|
|
16001
|
+
latestWebHookSyncAt: datetimeSchema9.nullable(),
|
|
16002
|
+
latestFiscalMappingsSyncInboundAt: datetimeSchema9.nullable(),
|
|
16003
|
+
latestMenuSyncInboundAt: datetimeSchema9.nullable(),
|
|
16004
|
+
latestMenuSyncOutboundAt: datetimeSchema9.nullable(),
|
|
16005
|
+
latestCustomersSyncInboundAt: datetimeSchema9.nullable(),
|
|
16006
|
+
latestCustomersSyncOutboundAt: datetimeSchema9.nullable(),
|
|
16007
|
+
latestOrdersSyncInboundAt: datetimeSchema9.nullable(),
|
|
16008
|
+
latestOrdersSyncOutboundAt: datetimeSchema9.nullable(),
|
|
16009
|
+
latestStockSyncInboundAt: datetimeSchema9.nullable(),
|
|
16010
|
+
latestStockSyncOutboundAt: datetimeSchema9.nullable()
|
|
16011
|
+
});
|
|
16012
|
+
var integrationTilbySchema = integrationBaseSchema.omit({ service: true }).extend({
|
|
16013
|
+
service: integrationServiceSchema.extract(["tilby"]),
|
|
16014
|
+
clientId: external_exports.string().nullable(),
|
|
16015
|
+
shopId: external_exports.coerce.number().nullable(),
|
|
16016
|
+
shopUuid: external_exports.string().nullable(),
|
|
16017
|
+
shopName: external_exports.string().nullable(),
|
|
16018
|
+
webhookEmail: external_exports.string().nullable(),
|
|
16019
|
+
xClient: external_exports.string(),
|
|
16020
|
+
defaultSellerId: external_exports.coerce.number().nullable(),
|
|
16021
|
+
defaultSellerName: external_exports.string(),
|
|
16022
|
+
autoPrintOrder: external_exports.boolean(),
|
|
16023
|
+
deliverartChannelId: external_exports.string().nullable(),
|
|
16024
|
+
deliverartChannelName: external_exports.string(),
|
|
16025
|
+
defaultPaymentMethodId: external_exports.coerce.number().nullable(),
|
|
16026
|
+
defaultPaymentMethodName: external_exports.string().nullable(),
|
|
16027
|
+
defaultPaymentMethodTypeId: external_exports.coerce.number().nullable(),
|
|
16028
|
+
defaultPaymentMethodTypeName: external_exports.string().nullable(),
|
|
16029
|
+
defaultStockLocationId: external_exports.coerce.number(),
|
|
16030
|
+
syncSettings: integrationTilbySyncSettingsSchema,
|
|
16031
|
+
syncTimes: integrationTilbySyncTimesSchema
|
|
16032
|
+
});
|
|
16033
|
+
var integrationTilbyDetailsSchema = integrationTilbySchema.extend({
|
|
16034
|
+
apiToken: external_exports.string()
|
|
16035
|
+
}).extend(integrationDetailsFieldsSchema.shape);
|
|
16036
|
+
var integrationTilbyEditableFieldsSchema = external_exports.object({
|
|
16037
|
+
apiToken: external_exports.string().trim().min(1, "apiToken.required"),
|
|
16038
|
+
webhookEmail: external_exports.string().email().nullable().default(null),
|
|
16039
|
+
xClient: external_exports.string().trim().min(1, "xClient.required").default("deliverart"),
|
|
16040
|
+
defaultSellerId: external_exports.coerce.number().nullable().default(null),
|
|
16041
|
+
defaultSellerName: external_exports.string().trim().min(1, "defaultSellerName.required").default("Deliverart"),
|
|
16042
|
+
autoPrintOrder: external_exports.boolean().default(false),
|
|
16043
|
+
deliverartChannelName: external_exports.string().trim().min(1, "deliverartChannelName.required").default("Deliverart"),
|
|
16044
|
+
defaultPaymentMethodId: external_exports.coerce.number().nullable().default(null),
|
|
16045
|
+
defaultPaymentMethodName: external_exports.string().nullable().default(null),
|
|
16046
|
+
defaultPaymentMethodTypeId: external_exports.coerce.number().nullable().default(null),
|
|
16047
|
+
defaultPaymentMethodTypeName: external_exports.string().nullable().default(null),
|
|
16048
|
+
defaultStockLocationId: external_exports.coerce.number().int().positive().default(1),
|
|
16049
|
+
syncSettings: integrationTilbyEditableSyncSettingsSchema.default({}),
|
|
16050
|
+
provider: integrationProviderSchema.default("deliverart")
|
|
16051
|
+
});
|
|
16052
|
+
var integrationsTilbyQuerySchema = external_exports.object({
|
|
16053
|
+
"order[createdAt]": sortDirSchema8.optional(),
|
|
16054
|
+
"order[updatedAt]": sortDirSchema8.optional(),
|
|
16055
|
+
"order[syncTimes.latestWebHookSyncAt]": sortDirSchema8.optional(),
|
|
16056
|
+
"order[syncTimes.latestFiscalMappingsSyncInboundAt]": sortDirSchema8.optional(),
|
|
16057
|
+
"order[syncTimes.latestMenuSyncInboundAt]": sortDirSchema8.optional(),
|
|
16058
|
+
"order[syncTimes.latestMenuSyncOutboundAt]": sortDirSchema8.optional(),
|
|
16059
|
+
"order[syncTimes.latestCustomersSyncInboundAt]": sortDirSchema8.optional(),
|
|
16060
|
+
"order[syncTimes.latestCustomersSyncOutboundAt]": sortDirSchema8.optional(),
|
|
16061
|
+
"order[syncTimes.latestOrdersSyncInboundAt]": sortDirSchema8.optional(),
|
|
16062
|
+
"order[syncTimes.latestOrdersSyncOutboundAt]": sortDirSchema8.optional(),
|
|
16063
|
+
"order[syncTimes.latestStockSyncInboundAt]": sortDirSchema8.optional(),
|
|
16064
|
+
"order[syncTimes.latestStockSyncOutboundAt]": sortDirSchema8.optional(),
|
|
16065
|
+
id: exactStringFilterSchema2,
|
|
16066
|
+
clientId: exactStringFilterSchema2,
|
|
16067
|
+
shopId: exactNumberFilterSchema,
|
|
16068
|
+
shopUuid: exactStringFilterSchema2,
|
|
16069
|
+
shopName: exactStringFilterSchema2,
|
|
16070
|
+
status: external_exports.union([integrationStatusSchema, external_exports.array(integrationStatusSchema)]).optional(),
|
|
16071
|
+
connectionId: exactStringFilterSchema2,
|
|
16072
|
+
autoPrintOrder: booleanSchema5.optional(),
|
|
16073
|
+
service: integrationServiceSchema.extract(["tilby"]).optional(),
|
|
16074
|
+
"syncTimes.latestWebHookSyncAt[before]": external_exports.string().optional(),
|
|
16075
|
+
"syncTimes.latestWebHookSyncAt[strictly_before]": external_exports.string().optional(),
|
|
16076
|
+
"syncTimes.latestWebHookSyncAt[after]": external_exports.string().optional(),
|
|
16077
|
+
"syncTimes.latestWebHookSyncAt[strictly_after]": external_exports.string().optional(),
|
|
16078
|
+
"syncTimes.latestFiscalMappingsSyncInboundAt[before]": external_exports.string().optional(),
|
|
16079
|
+
"syncTimes.latestFiscalMappingsSyncInboundAt[strictly_before]": external_exports.string().optional(),
|
|
16080
|
+
"syncTimes.latestFiscalMappingsSyncInboundAt[after]": external_exports.string().optional(),
|
|
16081
|
+
"syncTimes.latestFiscalMappingsSyncInboundAt[strictly_after]": external_exports.string().optional(),
|
|
16082
|
+
"syncTimes.latestMenuSyncInboundAt[before]": external_exports.string().optional(),
|
|
16083
|
+
"syncTimes.latestMenuSyncInboundAt[strictly_before]": external_exports.string().optional(),
|
|
16084
|
+
"syncTimes.latestMenuSyncInboundAt[after]": external_exports.string().optional(),
|
|
16085
|
+
"syncTimes.latestMenuSyncInboundAt[strictly_after]": external_exports.string().optional(),
|
|
16086
|
+
"syncTimes.latestMenuSyncOutboundAt[before]": external_exports.string().optional(),
|
|
16087
|
+
"syncTimes.latestMenuSyncOutboundAt[strictly_before]": external_exports.string().optional(),
|
|
16088
|
+
"syncTimes.latestMenuSyncOutboundAt[after]": external_exports.string().optional(),
|
|
16089
|
+
"syncTimes.latestMenuSyncOutboundAt[strictly_after]": external_exports.string().optional(),
|
|
16090
|
+
"syncTimes.latestCustomersSyncInboundAt[before]": external_exports.string().optional(),
|
|
16091
|
+
"syncTimes.latestCustomersSyncInboundAt[strictly_before]": external_exports.string().optional(),
|
|
16092
|
+
"syncTimes.latestCustomersSyncInboundAt[after]": external_exports.string().optional(),
|
|
16093
|
+
"syncTimes.latestCustomersSyncInboundAt[strictly_after]": external_exports.string().optional(),
|
|
16094
|
+
"syncTimes.latestCustomersSyncOutboundAt[before]": external_exports.string().optional(),
|
|
16095
|
+
"syncTimes.latestCustomersSyncOutboundAt[strictly_before]": external_exports.string().optional(),
|
|
16096
|
+
"syncTimes.latestCustomersSyncOutboundAt[after]": external_exports.string().optional(),
|
|
16097
|
+
"syncTimes.latestCustomersSyncOutboundAt[strictly_after]": external_exports.string().optional(),
|
|
16098
|
+
"syncTimes.latestOrdersSyncInboundAt[before]": external_exports.string().optional(),
|
|
16099
|
+
"syncTimes.latestOrdersSyncInboundAt[strictly_before]": external_exports.string().optional(),
|
|
16100
|
+
"syncTimes.latestOrdersSyncInboundAt[after]": external_exports.string().optional(),
|
|
16101
|
+
"syncTimes.latestOrdersSyncInboundAt[strictly_after]": external_exports.string().optional(),
|
|
16102
|
+
"syncTimes.latestOrdersSyncOutboundAt[before]": external_exports.string().optional(),
|
|
16103
|
+
"syncTimes.latestOrdersSyncOutboundAt[strictly_before]": external_exports.string().optional(),
|
|
16104
|
+
"syncTimes.latestOrdersSyncOutboundAt[after]": external_exports.string().optional(),
|
|
16105
|
+
"syncTimes.latestOrdersSyncOutboundAt[strictly_after]": external_exports.string().optional(),
|
|
16106
|
+
"syncTimes.latestStockSyncInboundAt[before]": external_exports.string().optional(),
|
|
16107
|
+
"syncTimes.latestStockSyncInboundAt[strictly_before]": external_exports.string().optional(),
|
|
16108
|
+
"syncTimes.latestStockSyncInboundAt[after]": external_exports.string().optional(),
|
|
16109
|
+
"syncTimes.latestStockSyncInboundAt[strictly_after]": external_exports.string().optional(),
|
|
16110
|
+
"syncTimes.latestStockSyncOutboundAt[before]": external_exports.string().optional(),
|
|
16111
|
+
"syncTimes.latestStockSyncOutboundAt[strictly_before]": external_exports.string().optional(),
|
|
16112
|
+
"syncTimes.latestStockSyncOutboundAt[after]": external_exports.string().optional(),
|
|
16113
|
+
"syncTimes.latestStockSyncOutboundAt[strictly_after]": external_exports.string().optional(),
|
|
16114
|
+
page: external_exports.coerce.number().optional()
|
|
16115
|
+
}).extend(timestampsFilterSchema7.shape);
|
|
16116
|
+
var integrationTilbyMappingSyncStateSchema = external_exports.object({
|
|
16117
|
+
syncedInbound: external_exports.boolean(),
|
|
16118
|
+
syncedOutbound: external_exports.boolean(),
|
|
16119
|
+
syncStatus: integrationTilbyMappingSyncStatusSchema,
|
|
16120
|
+
lastSyncDirection: integrationTilbySyncDirectionSchema.nullable(),
|
|
16121
|
+
lastSyncAttemptedAt: datetimeSchema9.nullable(),
|
|
16122
|
+
lastSyncedAt: datetimeSchema9.nullable(),
|
|
16123
|
+
syncFailureCode: integrationTilbyMappingSyncFailureCodeSchema.nullable(),
|
|
16124
|
+
syncFailureDetail: external_exports.string().nullable()
|
|
16125
|
+
});
|
|
16126
|
+
var integrationTilbyMappingSyncStateEditableFieldsSchema = integrationTilbyMappingSyncStateSchema.pick({
|
|
16127
|
+
syncStatus: true,
|
|
16128
|
+
syncFailureCode: true,
|
|
16129
|
+
syncFailureDetail: true
|
|
16130
|
+
}).partial();
|
|
16131
|
+
var mappingQueryBaseShape = {
|
|
16132
|
+
"order[createdAt]": sortDirSchema8.optional(),
|
|
16133
|
+
id: exactStringFilterSchema2,
|
|
16134
|
+
syncStatus: external_exports.union([
|
|
16135
|
+
integrationTilbyMappingSyncStatusSchema,
|
|
16136
|
+
external_exports.array(integrationTilbyMappingSyncStatusSchema)
|
|
16137
|
+
]).optional(),
|
|
16138
|
+
syncFailureCode: external_exports.union([
|
|
16139
|
+
integrationTilbyMappingSyncFailureCodeSchema,
|
|
16140
|
+
external_exports.array(integrationTilbyMappingSyncFailureCodeSchema)
|
|
16141
|
+
]).optional(),
|
|
16142
|
+
lastSyncDirection: external_exports.union([integrationTilbySyncDirectionSchema, external_exports.array(integrationTilbySyncDirectionSchema)]).optional(),
|
|
16143
|
+
syncedInbound: booleanSchema5.optional(),
|
|
16144
|
+
syncedOutbound: booleanSchema5.optional(),
|
|
16145
|
+
...dateFilterShape
|
|
16146
|
+
};
|
|
16147
|
+
var integrationTilbyDepartmentMappingSchema = integrationTilbyMappingSyncStateSchema.extend({
|
|
16148
|
+
id: external_exports.string(),
|
|
16149
|
+
tilbyDepartmentId: external_exports.coerce.number().nullable(),
|
|
16150
|
+
tilbyDepartmentName: external_exports.string().nullable(),
|
|
16151
|
+
vatPerc: external_exports.string().nullable(),
|
|
16152
|
+
internalDepartmentCode: external_exports.string().nullable(),
|
|
16153
|
+
resolved: external_exports.boolean(),
|
|
16154
|
+
createdAt: datetimeSchema9
|
|
16155
|
+
});
|
|
16156
|
+
var integrationTilbyDepartmentMappingDetailsSchema = integrationTilbyDepartmentMappingSchema.extend({
|
|
16157
|
+
integration: integrationTilbyIriSchema,
|
|
16158
|
+
resolutionNotes: external_exports.string().nullable()
|
|
16159
|
+
});
|
|
16160
|
+
var integrationTilbyDepartmentMappingEditableFieldsSchema = integrationTilbyMappingSyncStateEditableFieldsSchema.extend({
|
|
16161
|
+
internalDepartmentCode: external_exports.string().nullable().optional(),
|
|
16162
|
+
resolved: external_exports.boolean().optional(),
|
|
16163
|
+
resolutionNotes: external_exports.string().nullable().optional()
|
|
16164
|
+
});
|
|
16165
|
+
var integrationTilbyDepartmentMappingsQuerySchema = external_exports.object({
|
|
16166
|
+
...mappingQueryBaseShape,
|
|
16167
|
+
tilbyDepartmentId: exactNumberFilterSchema,
|
|
16168
|
+
tilbyDepartmentName: exactStringFilterSchema2,
|
|
16169
|
+
internalDepartmentCode: exactStringFilterSchema2,
|
|
16170
|
+
resolved: booleanSchema5.optional()
|
|
16171
|
+
});
|
|
16172
|
+
var integrationTilbyVatMappingSchema = integrationTilbyMappingSyncStateSchema.extend({
|
|
16173
|
+
id: external_exports.string(),
|
|
16174
|
+
tilbyVatId: external_exports.coerce.number().nullable(),
|
|
16175
|
+
tilbyVatPerc: external_exports.string().nullable(),
|
|
16176
|
+
internalVatPerc: external_exports.string().nullable(),
|
|
16177
|
+
resolved: external_exports.boolean(),
|
|
16178
|
+
createdAt: datetimeSchema9
|
|
16179
|
+
});
|
|
16180
|
+
var integrationTilbyVatMappingDetailsSchema = integrationTilbyVatMappingSchema.extend({
|
|
16181
|
+
integration: integrationTilbyIriSchema,
|
|
16182
|
+
resolutionNotes: external_exports.string().nullable()
|
|
16183
|
+
});
|
|
16184
|
+
var integrationTilbyVatMappingEditableFieldsSchema = integrationTilbyMappingSyncStateEditableFieldsSchema.extend({
|
|
16185
|
+
internalVatPerc: external_exports.string().nullable().optional(),
|
|
16186
|
+
resolved: external_exports.boolean().optional(),
|
|
16187
|
+
resolutionNotes: external_exports.string().nullable().optional()
|
|
16188
|
+
});
|
|
16189
|
+
var integrationTilbyVatMappingsQuerySchema = external_exports.object({
|
|
16190
|
+
...mappingQueryBaseShape,
|
|
16191
|
+
tilbyVatId: exactNumberFilterSchema,
|
|
16192
|
+
resolved: booleanSchema5.optional()
|
|
16193
|
+
});
|
|
16194
|
+
var integrationTilbyCategoryMappingSchema = integrationTilbyMappingSyncStateSchema.extend({
|
|
16195
|
+
id: external_exports.string(),
|
|
16196
|
+
tilbyCategoryId: external_exports.coerce.number().nullable(),
|
|
16197
|
+
tilbyCategoryUuid: external_exports.string().nullable(),
|
|
16198
|
+
externalId: external_exports.string().nullable(),
|
|
16199
|
+
tilbyCategoryName: external_exports.string().nullable(),
|
|
16200
|
+
createdAt: datetimeSchema9
|
|
16201
|
+
});
|
|
16202
|
+
var integrationTilbyCategoryMappingDetailsSchema = integrationTilbyCategoryMappingSchema.extend({
|
|
16203
|
+
integration: integrationTilbyIriSchema,
|
|
16204
|
+
menuItemCategory: menuItemCategoryNullableIriSchema
|
|
16205
|
+
});
|
|
16206
|
+
var integrationTilbyCategoryMappingEditableFieldsSchema = integrationTilbyMappingSyncStateEditableFieldsSchema.extend({
|
|
16207
|
+
menuItemCategory: menuItemCategoryNullableIriSchema.optional()
|
|
16208
|
+
});
|
|
16209
|
+
var integrationTilbyCategoryMappingsQuerySchema = external_exports.object({
|
|
16210
|
+
...mappingQueryBaseShape,
|
|
16211
|
+
tilbyCategoryId: exactNumberFilterSchema,
|
|
16212
|
+
tilbyCategoryUuid: exactStringFilterSchema2,
|
|
16213
|
+
externalId: exactStringFilterSchema2,
|
|
16214
|
+
tilbyCategoryName: exactStringFilterSchema2,
|
|
16215
|
+
menuItemCategory: exactStringFilterSchema2
|
|
16216
|
+
});
|
|
16217
|
+
var integrationTilbyComponentMappingSchema = integrationTilbyMappingSyncStateSchema.extend(
|
|
16218
|
+
{
|
|
16219
|
+
id: external_exports.string(),
|
|
16220
|
+
tilbyComponentId: external_exports.coerce.number().nullable(),
|
|
16221
|
+
tilbyComponentUuid: external_exports.string().nullable(),
|
|
16222
|
+
externalId: external_exports.string().nullable(),
|
|
16223
|
+
tilbyComponentName: external_exports.string().nullable(),
|
|
16224
|
+
createdAt: datetimeSchema9
|
|
16225
|
+
}
|
|
16226
|
+
);
|
|
16227
|
+
var integrationTilbyComponentMappingDetailsSchema = integrationTilbyComponentMappingSchema.extend({
|
|
16228
|
+
integration: integrationTilbyIriSchema,
|
|
16229
|
+
menuItemModifier: menuItemModifierNullableIriSchema
|
|
16230
|
+
});
|
|
16231
|
+
var integrationTilbyComponentMappingEditableFieldsSchema = integrationTilbyMappingSyncStateEditableFieldsSchema.extend({
|
|
16232
|
+
menuItemModifier: menuItemModifierNullableIriSchema.optional()
|
|
16233
|
+
});
|
|
16234
|
+
var integrationTilbyComponentMappingsQuerySchema = external_exports.object({
|
|
16235
|
+
...mappingQueryBaseShape,
|
|
16236
|
+
tilbyComponentId: exactNumberFilterSchema,
|
|
16237
|
+
tilbyComponentUuid: exactStringFilterSchema2,
|
|
16238
|
+
externalId: exactStringFilterSchema2,
|
|
16239
|
+
tilbyComponentName: exactStringFilterSchema2,
|
|
16240
|
+
menuItemModifier: exactStringFilterSchema2
|
|
16241
|
+
});
|
|
16242
|
+
var integrationTilbyProductMappingSchema = integrationTilbyMappingSyncStateSchema.extend({
|
|
16243
|
+
id: external_exports.string(),
|
|
16244
|
+
categoryMapping: integrationTilbyCategoryMappingNullableIriSchema,
|
|
16245
|
+
departmentMapping: integrationTilbyDepartmentMappingNullableIriSchema,
|
|
16246
|
+
tilbyItemId: external_exports.coerce.number().nullable(),
|
|
16247
|
+
tilbyItemUuid: external_exports.string().nullable(),
|
|
16248
|
+
externalId: external_exports.string().nullable(),
|
|
16249
|
+
sku: external_exports.string().nullable(),
|
|
16250
|
+
tilbyItemName: external_exports.string().nullable(),
|
|
16251
|
+
tilbyItemIsGroupItem: external_exports.boolean().nullable(),
|
|
16252
|
+
createdAt: datetimeSchema9
|
|
16253
|
+
});
|
|
16254
|
+
var integrationTilbyProductMappingDetailsSchema = integrationTilbyProductMappingSchema.extend({
|
|
16255
|
+
integration: integrationTilbyIriSchema,
|
|
16256
|
+
menuItem: menuItemNullableIriSchema2,
|
|
16257
|
+
variants: external_exports.array(integrationTilbyProductVariantMappingIriSchema)
|
|
16258
|
+
});
|
|
16259
|
+
var integrationTilbyProductMappingEditableFieldsSchema = integrationTilbyMappingSyncStateEditableFieldsSchema.extend({
|
|
16260
|
+
menuItem: menuItemNullableIriSchema2.optional(),
|
|
16261
|
+
categoryMapping: integrationTilbyCategoryMappingNullableIriSchema.optional(),
|
|
16262
|
+
departmentMapping: integrationTilbyDepartmentMappingNullableIriSchema.optional()
|
|
16263
|
+
});
|
|
16264
|
+
var integrationTilbyProductMappingsQuerySchema = external_exports.object({
|
|
16265
|
+
...mappingQueryBaseShape,
|
|
16266
|
+
tilbyItemId: exactNumberFilterSchema,
|
|
16267
|
+
tilbyItemUuid: exactStringFilterSchema2,
|
|
16268
|
+
externalId: exactStringFilterSchema2,
|
|
16269
|
+
sku: exactStringFilterSchema2,
|
|
16270
|
+
tilbyItemName: exactStringFilterSchema2,
|
|
16271
|
+
menuItem: exactStringFilterSchema2,
|
|
16272
|
+
categoryMapping: exactStringFilterSchema2,
|
|
16273
|
+
departmentMapping: exactStringFilterSchema2,
|
|
16274
|
+
tilbyItemIsGroupItem: booleanSchema5.optional()
|
|
16275
|
+
});
|
|
16276
|
+
var integrationTilbyProductVariantMappingSchema = integrationTilbyMappingSyncStateSchema.extend({
|
|
16277
|
+
id: external_exports.string(),
|
|
16278
|
+
tilbyCombinationId: external_exports.coerce.number().nullable(),
|
|
16279
|
+
tilbyCombinationUuid: external_exports.string().nullable(),
|
|
16280
|
+
externalId: external_exports.string().nullable(),
|
|
16281
|
+
sku: external_exports.string().nullable(),
|
|
16282
|
+
tilbyCombinationName: external_exports.string().nullable(),
|
|
16283
|
+
createdAt: datetimeSchema9
|
|
16284
|
+
});
|
|
16285
|
+
var integrationTilbyProductVariantMappingDetailsSchema = integrationTilbyProductVariantMappingSchema.extend({
|
|
16286
|
+
productMapping: integrationTilbyProductMappingIriSchema,
|
|
16287
|
+
menuItemPriceOverride: menuItemPriceOverrideNullableIriSchema2
|
|
16288
|
+
});
|
|
16289
|
+
var integrationTilbyProductVariantMappingEditableFieldsSchema = integrationTilbyMappingSyncStateEditableFieldsSchema.extend({
|
|
16290
|
+
menuItemPriceOverride: menuItemPriceOverrideNullableIriSchema2.optional()
|
|
16291
|
+
});
|
|
16292
|
+
var integrationTilbyProductVariantMappingsQuerySchema = external_exports.object({
|
|
16293
|
+
...mappingQueryBaseShape,
|
|
16294
|
+
tilbyCombinationId: exactNumberFilterSchema,
|
|
16295
|
+
tilbyCombinationUuid: exactStringFilterSchema2,
|
|
16296
|
+
externalId: exactStringFilterSchema2,
|
|
16297
|
+
sku: exactStringFilterSchema2,
|
|
16298
|
+
menuItemPriceOverride: exactStringFilterSchema2
|
|
16299
|
+
});
|
|
16300
|
+
var integrationTilbyCustomerMappingSchema = integrationTilbyMappingSyncStateSchema.extend({
|
|
16301
|
+
id: external_exports.string(),
|
|
16302
|
+
tilbyCustomerId: external_exports.coerce.number(),
|
|
16303
|
+
tilbyCustomerUuid: external_exports.string().nullable(),
|
|
16304
|
+
externalId: external_exports.string().nullable(),
|
|
16305
|
+
createdAt: datetimeSchema9
|
|
16306
|
+
});
|
|
16307
|
+
var integrationTilbyCustomerMappingDetailsSchema = integrationTilbyCustomerMappingSchema.extend({
|
|
16308
|
+
integration: integrationTilbyIriSchema,
|
|
16309
|
+
customer: customerIriSchema2
|
|
16310
|
+
});
|
|
16311
|
+
var integrationTilbyCustomerMappingsQuerySchema = external_exports.object({
|
|
16312
|
+
...mappingQueryBaseShape,
|
|
16313
|
+
tilbyCustomerId: exactNumberFilterSchema,
|
|
16314
|
+
tilbyCustomerUuid: exactStringFilterSchema2,
|
|
16315
|
+
externalId: exactStringFilterSchema2,
|
|
16316
|
+
customer: exactStringFilterSchema2
|
|
16317
|
+
});
|
|
16318
|
+
var integrationTilbyOrderMappingSchema = integrationTilbyMappingSyncStateSchema.extend({
|
|
16319
|
+
id: external_exports.string(),
|
|
16320
|
+
tilbySaleId: external_exports.coerce.number().nullable(),
|
|
16321
|
+
tilbySaleUuid: external_exports.string().nullable(),
|
|
16322
|
+
tilbySaleStatus: external_exports.string().nullable(),
|
|
16323
|
+
tilbySaleAmount: external_exports.string().nullable(),
|
|
16324
|
+
tilbySaleFinalAmount: external_exports.string().nullable(),
|
|
16325
|
+
externalId: external_exports.string().nullable(),
|
|
16326
|
+
errorMessage: external_exports.string().nullable(),
|
|
16327
|
+
createdAt: datetimeSchema9,
|
|
16328
|
+
latestSaleSyncAt: datetimeSchema9.nullable()
|
|
16329
|
+
});
|
|
16330
|
+
var integrationTilbyOrderMappingDetailsSchema = integrationTilbyOrderMappingSchema.extend({
|
|
16331
|
+
integration: integrationTilbyIriSchema,
|
|
16332
|
+
order: orderNullableIriSchema5
|
|
16333
|
+
});
|
|
16334
|
+
var integrationTilbyOrderMappingsQuerySchema = external_exports.object({
|
|
16335
|
+
...mappingQueryBaseShape,
|
|
16336
|
+
tilbySaleId: exactNumberFilterSchema,
|
|
16337
|
+
tilbySaleUuid: exactStringFilterSchema2,
|
|
16338
|
+
tilbySaleStatus: exactStringFilterSchema2,
|
|
16339
|
+
externalId: exactStringFilterSchema2,
|
|
16340
|
+
page: external_exports.coerce.number().optional()
|
|
16341
|
+
});
|
|
16342
|
+
var syncProcessQuerySchema = external_exports.object({
|
|
16343
|
+
"order[createdAt]": sortDirSchema8.optional(),
|
|
16344
|
+
"order[endAt]": sortDirSchema8.optional(),
|
|
16345
|
+
direction: external_exports.union([integrationTilbySyncDirectionSchema, external_exports.array(integrationTilbySyncDirectionSchema)]).optional(),
|
|
16346
|
+
mode: external_exports.union([integrationTilbySyncModeSchema, external_exports.array(integrationTilbySyncModeSchema)]).optional(),
|
|
16347
|
+
"createdAt[before]": external_exports.string().optional(),
|
|
16348
|
+
"createdAt[strictly_before]": external_exports.string().optional(),
|
|
16349
|
+
"createdAt[after]": external_exports.string().optional(),
|
|
16350
|
+
"createdAt[strictly_after]": external_exports.string().optional(),
|
|
16351
|
+
"endAt[before]": external_exports.string().optional(),
|
|
16352
|
+
"endAt[strictly_before]": external_exports.string().optional(),
|
|
16353
|
+
"endAt[after]": external_exports.string().optional(),
|
|
16354
|
+
"endAt[strictly_after]": external_exports.string().optional(),
|
|
16355
|
+
page: external_exports.coerce.number().optional()
|
|
16356
|
+
});
|
|
16357
|
+
var syncProcessBaseSchema = external_exports.object({
|
|
16358
|
+
id: external_exports.string(),
|
|
16359
|
+
direction: integrationTilbySyncDirectionSchema,
|
|
16360
|
+
mode: integrationTilbySyncModeSchema,
|
|
16361
|
+
createdAt: datetimeSchema9,
|
|
16362
|
+
syncFromAt: datetimeSchema9.nullable(),
|
|
16363
|
+
syncCutoffAt: datetimeSchema9.nullable(),
|
|
16364
|
+
endAt: datetimeSchema9.nullable()
|
|
16365
|
+
});
|
|
16366
|
+
var integrationTilbySyncFiscalMappingsProcessSchema = syncProcessBaseSchema.extend({
|
|
16367
|
+
currentSteps: external_exports.array(integrationTilbyFiscalMappingsSyncStepSchema)
|
|
16368
|
+
});
|
|
16369
|
+
var integrationTilbySyncFiscalMappingsProcessDetailsSchema = integrationTilbySyncFiscalMappingsProcessSchema.extend({
|
|
16370
|
+
integration: integrationTilbyIriSchema,
|
|
16371
|
+
errors: external_exports.array(integrationTilbySyncFiscalMappingsErrorLogIriSchema)
|
|
16372
|
+
});
|
|
16373
|
+
var integrationTilbySyncFiscalMappingsProcessesQuerySchema = syncProcessQuerySchema;
|
|
16374
|
+
var integrationTilbySyncCustomersProcessSchema = syncProcessBaseSchema.extend({
|
|
16375
|
+
currentSteps: external_exports.array(integrationTilbyCustomersSyncStepSchema)
|
|
16376
|
+
});
|
|
16377
|
+
var integrationTilbySyncCustomersProcessDetailsSchema = integrationTilbySyncCustomersProcessSchema.extend({
|
|
16378
|
+
integration: integrationTilbyIriSchema,
|
|
16379
|
+
errors: external_exports.array(integrationTilbySyncCustomersErrorLogIriSchema)
|
|
16380
|
+
});
|
|
16381
|
+
var integrationTilbySyncCustomersProcessesQuerySchema = syncProcessQuerySchema;
|
|
16382
|
+
var integrationTilbySyncMenuProcessSchema = syncProcessBaseSchema.extend({
|
|
16383
|
+
currentSteps: external_exports.array(integrationTilbyMenuSyncStepSchema)
|
|
16384
|
+
});
|
|
16385
|
+
var integrationTilbySyncMenuProcessDetailsSchema = integrationTilbySyncMenuProcessSchema.extend({
|
|
16386
|
+
integration: integrationTilbyIriSchema,
|
|
16387
|
+
errors: external_exports.array(integrationTilbySyncMenuErrorLogIriSchema)
|
|
16388
|
+
});
|
|
16389
|
+
var integrationTilbySyncMenuProcessesQuerySchema = syncProcessQuerySchema;
|
|
16390
|
+
var integrationTilbySyncOrdersProcessSchema = syncProcessBaseSchema.extend({
|
|
16391
|
+
currentSteps: external_exports.array(integrationTilbyOrdersSyncStepSchema)
|
|
16392
|
+
});
|
|
16393
|
+
var integrationTilbySyncOrdersProcessDetailsSchema = integrationTilbySyncOrdersProcessSchema.extend({
|
|
16394
|
+
integration: integrationTilbyIriSchema,
|
|
16395
|
+
errors: external_exports.array(integrationTilbySyncOrdersErrorLogIriSchema)
|
|
16396
|
+
});
|
|
16397
|
+
var integrationTilbySyncOrdersProcessesQuerySchema = syncProcessQuerySchema;
|
|
16398
|
+
function createSyncErrorLogSchemas(stepSchema, processSchema) {
|
|
16399
|
+
const schema = external_exports.object({
|
|
16400
|
+
id: external_exports.string(),
|
|
16401
|
+
step: stepSchema,
|
|
16402
|
+
externalId: external_exports.string().nullable(),
|
|
16403
|
+
internalId: external_exports.string().nullable(),
|
|
16404
|
+
message: external_exports.string(),
|
|
16405
|
+
trace: external_exports.string(),
|
|
16406
|
+
createdAt: datetimeSchema9
|
|
16407
|
+
});
|
|
16408
|
+
return {
|
|
16409
|
+
schema,
|
|
16410
|
+
detailsSchema: schema.extend({
|
|
16411
|
+
process: processSchema
|
|
16412
|
+
}),
|
|
16413
|
+
querySchema: external_exports.object({
|
|
16414
|
+
"order[createdAt]": sortDirSchema8.optional(),
|
|
16415
|
+
step: external_exports.union([stepSchema, external_exports.array(stepSchema)]).optional(),
|
|
16416
|
+
externalId: exactStringFilterSchema2,
|
|
16417
|
+
internalId: exactStringFilterSchema2,
|
|
16418
|
+
...dateFilterShape,
|
|
16419
|
+
page: external_exports.coerce.number().optional()
|
|
16420
|
+
})
|
|
16421
|
+
};
|
|
16422
|
+
}
|
|
16423
|
+
var integrationTilbySyncFiscalMappingsErrorLogSchemas = createSyncErrorLogSchemas(
|
|
16424
|
+
integrationTilbyFiscalMappingsSyncStepSchema,
|
|
16425
|
+
integrationTilbySyncFiscalMappingsProcessIriSchema
|
|
16426
|
+
);
|
|
16427
|
+
var integrationTilbySyncFiscalMappingsErrorLogSchema = integrationTilbySyncFiscalMappingsErrorLogSchemas.schema;
|
|
16428
|
+
var integrationTilbySyncFiscalMappingsErrorLogDetailsSchema = integrationTilbySyncFiscalMappingsErrorLogSchemas.detailsSchema;
|
|
16429
|
+
var integrationTilbySyncFiscalMappingsErrorLogsQuerySchema = integrationTilbySyncFiscalMappingsErrorLogSchemas.querySchema;
|
|
16430
|
+
var integrationTilbySyncCustomersErrorLogSchemas = createSyncErrorLogSchemas(
|
|
16431
|
+
integrationTilbyCustomersSyncStepSchema,
|
|
16432
|
+
integrationTilbySyncCustomersProcessIriSchema
|
|
16433
|
+
);
|
|
16434
|
+
var integrationTilbySyncCustomersErrorLogSchema = integrationTilbySyncCustomersErrorLogSchemas.schema;
|
|
16435
|
+
var integrationTilbySyncCustomersErrorLogDetailsSchema = integrationTilbySyncCustomersErrorLogSchemas.detailsSchema;
|
|
16436
|
+
var integrationTilbySyncCustomersErrorLogsQuerySchema = integrationTilbySyncCustomersErrorLogSchemas.querySchema;
|
|
16437
|
+
var integrationTilbySyncMenuErrorLogSchemas = createSyncErrorLogSchemas(
|
|
16438
|
+
integrationTilbyMenuSyncStepSchema,
|
|
16439
|
+
integrationTilbySyncMenuProcessIriSchema
|
|
16440
|
+
);
|
|
16441
|
+
var integrationTilbySyncMenuErrorLogSchema = integrationTilbySyncMenuErrorLogSchemas.schema;
|
|
16442
|
+
var integrationTilbySyncMenuErrorLogDetailsSchema = integrationTilbySyncMenuErrorLogSchemas.detailsSchema;
|
|
16443
|
+
var integrationTilbySyncMenuErrorLogsQuerySchema = integrationTilbySyncMenuErrorLogSchemas.querySchema;
|
|
16444
|
+
var integrationTilbySyncOrdersErrorLogSchemas = createSyncErrorLogSchemas(
|
|
16445
|
+
integrationTilbyOrdersSyncStepSchema,
|
|
16446
|
+
integrationTilbySyncOrdersProcessIriSchema
|
|
16447
|
+
);
|
|
16448
|
+
var integrationTilbySyncOrdersErrorLogSchema = integrationTilbySyncOrdersErrorLogSchemas.schema;
|
|
16449
|
+
var integrationTilbySyncOrdersErrorLogDetailsSchema = integrationTilbySyncOrdersErrorLogSchemas.detailsSchema;
|
|
16450
|
+
var integrationTilbySyncOrdersErrorLogsQuerySchema = integrationTilbySyncOrdersErrorLogSchemas.querySchema;
|
|
16451
|
+
var integrationTilbyWebHookSettingSchema = external_exports.object({
|
|
16452
|
+
id: external_exports.string(),
|
|
16453
|
+
entityName: external_exports.string(),
|
|
16454
|
+
eventType: external_exports.string(),
|
|
16455
|
+
tilbyWebHookId: external_exports.string().nullable(),
|
|
16456
|
+
active: external_exports.boolean(),
|
|
16457
|
+
createdAt: datetimeSchema9
|
|
16458
|
+
});
|
|
16459
|
+
var integrationTilbyWebHookSettingDetailsSchema = integrationTilbyWebHookSettingSchema.extend({
|
|
16460
|
+
integration: integrationTilbyIriSchema,
|
|
16461
|
+
url: external_exports.string(),
|
|
16462
|
+
email: external_exports.string().nullable()
|
|
16463
|
+
});
|
|
16464
|
+
var integrationTilbyWebHookSettingsQuerySchema = external_exports.object({
|
|
16465
|
+
"order[createdAt]": sortDirSchema8.optional(),
|
|
16466
|
+
id: exactStringFilterSchema2,
|
|
16467
|
+
entityName: exactStringFilterSchema2,
|
|
16468
|
+
eventType: exactStringFilterSchema2,
|
|
16469
|
+
tilbyWebHookId: exactStringFilterSchema2,
|
|
16470
|
+
active: booleanSchema5.optional(),
|
|
16471
|
+
page: external_exports.coerce.number().optional()
|
|
16472
|
+
});
|
|
16473
|
+
var integrationTilbyWebHookEventSchema = external_exports.object({
|
|
16474
|
+
id: external_exports.string(),
|
|
16475
|
+
entityName: external_exports.string().nullable(),
|
|
16476
|
+
eventType: external_exports.string().nullable(),
|
|
16477
|
+
notificationUuid: external_exports.string().nullable(),
|
|
16478
|
+
environmentId: external_exports.string().nullable(),
|
|
16479
|
+
clientId: external_exports.string().nullable(),
|
|
16480
|
+
nRetry: external_exports.coerce.number().nullable(),
|
|
16481
|
+
createdAt: datetimeSchema9
|
|
16482
|
+
});
|
|
16483
|
+
var integrationTilbyWebHookEventDetailsSchema = integrationTilbyWebHookEventSchema.extend({
|
|
16484
|
+
integration: integrationTilbyIriSchema,
|
|
16485
|
+
signature: external_exports.string().nullable(),
|
|
16486
|
+
rawBody: external_exports.string(),
|
|
16487
|
+
payload: external_exports.unknown()
|
|
16488
|
+
});
|
|
16489
|
+
var integrationTilbyWebHookEventsQuerySchema = external_exports.object({
|
|
16490
|
+
"order[createdAt]": sortDirSchema8.optional(),
|
|
16491
|
+
id: exactStringFilterSchema2,
|
|
16492
|
+
entityName: exactStringFilterSchema2,
|
|
16493
|
+
eventType: exactStringFilterSchema2,
|
|
16494
|
+
notificationUuid: exactStringFilterSchema2,
|
|
16495
|
+
clientId: exactStringFilterSchema2,
|
|
16496
|
+
...dateFilterShape,
|
|
16497
|
+
page: external_exports.coerce.number().optional()
|
|
16498
|
+
});
|
|
16499
|
+
|
|
15784
16500
|
// src/integration-schemas.ts
|
|
15785
16501
|
var integrationSchema = external_exports.discriminatedUnion("service", [
|
|
15786
16502
|
integrationKitchenSchema,
|
|
@@ -15788,6 +16504,7 @@ var integrationSchema = external_exports.discriminatedUnion("service", [
|
|
|
15788
16504
|
integrationDeliverooSchema,
|
|
15789
16505
|
integrationGlovoSchema,
|
|
15790
16506
|
integrationCassaInCloudSchema,
|
|
16507
|
+
integrationTilbySchema,
|
|
15791
16508
|
integrationEcommerceSchema
|
|
15792
16509
|
]);
|
|
15793
16510
|
var integrationDetailsSchema = external_exports.discriminatedUnion("service", [
|
|
@@ -15796,6 +16513,7 @@ var integrationDetailsSchema = external_exports.discriminatedUnion("service", [
|
|
|
15796
16513
|
integrationDeliverooDetailsSchema,
|
|
15797
16514
|
integrationGlovoDetailsSchema,
|
|
15798
16515
|
integrationCassaInCloudDetailsSchema,
|
|
16516
|
+
integrationTilbyDetailsSchema,
|
|
15799
16517
|
integrationEcommerceDetailsSchema
|
|
15800
16518
|
]);
|
|
15801
16519
|
|
|
@@ -15937,14 +16655,14 @@ var GetIntegrationActivationRequestDetails = class extends AbstractApiRequest5 {
|
|
|
15937
16655
|
import { AbstractApiRequest as AbstractApiRequest6 } from "@deliverart/sdk-js-core";
|
|
15938
16656
|
import {
|
|
15939
16657
|
createPaginatedSchema,
|
|
15940
|
-
sortDirSchema as
|
|
15941
|
-
timestampsFilterSchema as
|
|
16658
|
+
sortDirSchema as sortDirSchema9,
|
|
16659
|
+
timestampsFilterSchema as timestampsFilterSchema8
|
|
15942
16660
|
} from "@deliverart/sdk-js-global-types";
|
|
15943
16661
|
var getIntegrationActivationRequestsQuerySchema = external_exports.object({
|
|
15944
|
-
"order[service]":
|
|
15945
|
-
"order[status]":
|
|
15946
|
-
"order[createdAt]":
|
|
15947
|
-
"order[updatedAt]":
|
|
16662
|
+
"order[service]": sortDirSchema9.optional(),
|
|
16663
|
+
"order[status]": sortDirSchema9.optional(),
|
|
16664
|
+
"order[createdAt]": sortDirSchema9.optional(),
|
|
16665
|
+
"order[updatedAt]": sortDirSchema9.optional(),
|
|
15948
16666
|
service: external_exports.union([integrationServiceSchema, external_exports.array(integrationServiceSchema)]).optional(),
|
|
15949
16667
|
provider: external_exports.union([integrationProviderSchema, external_exports.array(integrationProviderSchema)]).optional(),
|
|
15950
16668
|
status: external_exports.union([activatableIntegrationStatusSchema, external_exports.array(activatableIntegrationStatusSchema)]).optional(),
|
|
@@ -15954,7 +16672,7 @@ var getIntegrationActivationRequestsQuerySchema = external_exports.object({
|
|
|
15954
16672
|
]).optional(),
|
|
15955
16673
|
connectionId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
15956
16674
|
page: external_exports.coerce.number().optional()
|
|
15957
|
-
}).extend(
|
|
16675
|
+
}).extend(timestampsFilterSchema8.shape);
|
|
15958
16676
|
var getIntegrationActivationRequestsInputSchema = external_exports.undefined();
|
|
15959
16677
|
var getIntegrationActivationRequestsResponseSchema = createPaginatedSchema(
|
|
15960
16678
|
integrationActivationRequestSchema
|
|
@@ -15979,12 +16697,12 @@ var GetIntegrationActivationRequests = class extends AbstractApiRequest6 {
|
|
|
15979
16697
|
|
|
15980
16698
|
// src/requests/activation-requests/GetIntegrationActivationRequestsFromPointOfSale.ts
|
|
15981
16699
|
import { AbstractApiRequest as AbstractApiRequest7 } from "@deliverart/sdk-js-core";
|
|
15982
|
-
import { sortDirSchema as
|
|
16700
|
+
import { sortDirSchema as sortDirSchema10, timestampsFilterSchema as timestampsFilterSchema9 } from "@deliverart/sdk-js-global-types";
|
|
15983
16701
|
var getIntegrationActivationRequestsFromPointOfSaleQuerySchema = external_exports.object({
|
|
15984
|
-
"order[service]":
|
|
15985
|
-
"order[status]":
|
|
15986
|
-
"order[createdAt]":
|
|
15987
|
-
"order[updatedAt]":
|
|
16702
|
+
"order[service]": sortDirSchema10.optional(),
|
|
16703
|
+
"order[status]": sortDirSchema10.optional(),
|
|
16704
|
+
"order[createdAt]": sortDirSchema10.optional(),
|
|
16705
|
+
"order[updatedAt]": sortDirSchema10.optional(),
|
|
15988
16706
|
service: external_exports.union([integrationServiceSchema, external_exports.array(integrationServiceSchema)]).optional(),
|
|
15989
16707
|
provider: external_exports.union([integrationProviderSchema, external_exports.array(integrationProviderSchema)]).optional(),
|
|
15990
16708
|
status: external_exports.union([activatableIntegrationStatusSchema, external_exports.array(activatableIntegrationStatusSchema)]).optional(),
|
|
@@ -15994,7 +16712,7 @@ var getIntegrationActivationRequestsFromPointOfSaleQuerySchema = external_export
|
|
|
15994
16712
|
]).optional(),
|
|
15995
16713
|
connectionId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
15996
16714
|
page: external_exports.coerce.number().optional()
|
|
15997
|
-
}).extend(
|
|
16715
|
+
}).extend(timestampsFilterSchema9.shape);
|
|
15998
16716
|
var getIntegrationActivationRequestsFromPointOfSaleInputSchema = external_exports.undefined();
|
|
15999
16717
|
var getIntegrationActivationRequestsFromPointOfSaleResponseSchema = external_exports.array(
|
|
16000
16718
|
integrationActivationRequestSchema
|
|
@@ -16209,18 +16927,18 @@ var GetIntegrationCancellationRequestDetails = class extends AbstractApiRequest1
|
|
|
16209
16927
|
import { AbstractApiRequest as AbstractApiRequest15 } from "@deliverart/sdk-js-core";
|
|
16210
16928
|
import {
|
|
16211
16929
|
createPaginatedSchema as createPaginatedSchema2,
|
|
16212
|
-
sortDirSchema as
|
|
16213
|
-
timestampsFilterSchema as
|
|
16930
|
+
sortDirSchema as sortDirSchema11,
|
|
16931
|
+
timestampsFilterSchema as timestampsFilterSchema10
|
|
16214
16932
|
} from "@deliverart/sdk-js-global-types";
|
|
16215
16933
|
var getIntegrationCancellationRequestsQuerySchema = external_exports.object({
|
|
16216
|
-
"order[createdAt]":
|
|
16217
|
-
"order[updatedAt]":
|
|
16934
|
+
"order[createdAt]": sortDirSchema11.optional(),
|
|
16935
|
+
"order[updatedAt]": sortDirSchema11.optional(),
|
|
16218
16936
|
status: external_exports.union([
|
|
16219
16937
|
integrationCancellationRequestStatusSchema,
|
|
16220
16938
|
external_exports.array(integrationCancellationRequestStatusSchema)
|
|
16221
16939
|
]).optional(),
|
|
16222
16940
|
page: external_exports.coerce.number().optional()
|
|
16223
|
-
}).extend(
|
|
16941
|
+
}).extend(timestampsFilterSchema10.shape);
|
|
16224
16942
|
var getIntegrationCancellationRequestsInputSchema = external_exports.undefined();
|
|
16225
16943
|
var getIntegrationCancellationRequestsResponseSchema = createPaginatedSchema2(
|
|
16226
16944
|
integrationCancellationRequestSchema
|
|
@@ -16310,7 +17028,7 @@ var GetIntegrationIssueDetails = class extends AbstractApiRequest18 {
|
|
|
16310
17028
|
|
|
16311
17029
|
// src/requests/GetIntegrationIssues.ts
|
|
16312
17030
|
import { AbstractApiRequest as AbstractApiRequest19 } from "@deliverart/sdk-js-core";
|
|
16313
|
-
import { sortDirSchema as
|
|
17031
|
+
import { sortDirSchema as sortDirSchema12 } from "@deliverart/sdk-js-global-types";
|
|
16314
17032
|
var getIntegrationIssuesQuerySchema = external_exports.object({
|
|
16315
17033
|
id: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
16316
17034
|
scope: external_exports.union([integrationIssueScopeSchema, external_exports.array(integrationIssueScopeSchema)]).optional(),
|
|
@@ -16318,10 +17036,10 @@ var getIntegrationIssuesQuerySchema = external_exports.object({
|
|
|
16318
17036
|
blocking: external_exports.coerce.boolean().optional(),
|
|
16319
17037
|
retriable: external_exports.coerce.boolean().optional(),
|
|
16320
17038
|
"resolvedAt[exists]": external_exports.coerce.boolean().optional(),
|
|
16321
|
-
"order[firstSeenAt]":
|
|
16322
|
-
"order[lastSeenAt]":
|
|
16323
|
-
"order[retryAfterAt]":
|
|
16324
|
-
"order[resolvedAt]":
|
|
17039
|
+
"order[firstSeenAt]": sortDirSchema12.optional(),
|
|
17040
|
+
"order[lastSeenAt]": sortDirSchema12.optional(),
|
|
17041
|
+
"order[retryAfterAt]": sortDirSchema12.optional(),
|
|
17042
|
+
"order[resolvedAt]": sortDirSchema12.optional(),
|
|
16325
17043
|
"firstSeenAt[before]": external_exports.string().optional(),
|
|
16326
17044
|
"firstSeenAt[strictly_before]": external_exports.string().optional(),
|
|
16327
17045
|
"firstSeenAt[after]": external_exports.string().optional(),
|
|
@@ -16364,17 +17082,17 @@ var GetIntegrationIssues = class extends AbstractApiRequest19 {
|
|
|
16364
17082
|
import { AbstractApiRequest as AbstractApiRequest20 } from "@deliverart/sdk-js-core";
|
|
16365
17083
|
import {
|
|
16366
17084
|
createPaginatedSchema as createPaginatedSchema3,
|
|
16367
|
-
sortDirSchema as
|
|
16368
|
-
timestampsFilterSchema as
|
|
17085
|
+
sortDirSchema as sortDirSchema13,
|
|
17086
|
+
timestampsFilterSchema as timestampsFilterSchema11
|
|
16369
17087
|
} from "@deliverart/sdk-js-global-types";
|
|
16370
17088
|
var getIntegrationsQuerySchema = external_exports.object({
|
|
16371
17089
|
status: external_exports.union([integrationStatusSchema, external_exports.array(integrationStatusSchema)]).optional(),
|
|
16372
17090
|
connectionId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
16373
17091
|
service: integrationServiceSchema.optional(),
|
|
16374
|
-
"order[createdAt]":
|
|
16375
|
-
"order[updatedAt]":
|
|
17092
|
+
"order[createdAt]": sortDirSchema13.optional(),
|
|
17093
|
+
"order[updatedAt]": sortDirSchema13.optional(),
|
|
16376
17094
|
page: external_exports.coerce.number().optional()
|
|
16377
|
-
}).extend(
|
|
17095
|
+
}).extend(timestampsFilterSchema11.shape);
|
|
16378
17096
|
var getIntegrationsInputSchema = external_exports.undefined();
|
|
16379
17097
|
var getIntegrationsResponseSchema = createPaginatedSchema3(integrationSchema);
|
|
16380
17098
|
var GetIntegrations = class extends AbstractApiRequest20 {
|
|
@@ -16397,15 +17115,15 @@ var GetIntegrations = class extends AbstractApiRequest20 {
|
|
|
16397
17115
|
|
|
16398
17116
|
// src/requests/GetIntegrationsFromPointOfSale.ts
|
|
16399
17117
|
import { AbstractApiRequest as AbstractApiRequest21 } from "@deliverart/sdk-js-core";
|
|
16400
|
-
import { sortDirSchema as
|
|
17118
|
+
import { sortDirSchema as sortDirSchema14, timestampsFilterSchema as timestampsFilterSchema12 } from "@deliverart/sdk-js-global-types";
|
|
16401
17119
|
var getIntegrationsFromPointOfSaleQuerySchema = external_exports.object({
|
|
16402
17120
|
status: external_exports.union([integrationStatusSchema, external_exports.array(integrationStatusSchema)]).optional(),
|
|
16403
17121
|
connectionId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
16404
17122
|
service: integrationServiceSchema.optional(),
|
|
16405
|
-
"order[createdAt]":
|
|
16406
|
-
"order[updatedAt]":
|
|
17123
|
+
"order[createdAt]": sortDirSchema14.optional(),
|
|
17124
|
+
"order[updatedAt]": sortDirSchema14.optional(),
|
|
16407
17125
|
page: external_exports.coerce.number().optional()
|
|
16408
|
-
}).extend(
|
|
17126
|
+
}).extend(timestampsFilterSchema12.shape);
|
|
16409
17127
|
var getIntegrationsFromPointOfSaleInputSchema = external_exports.undefined();
|
|
16410
17128
|
var getIntegrationsFromPointOfSaleResponseSchema = external_exports.array(integrationSchema);
|
|
16411
17129
|
var GetIntegrationsFromPointOfSale = class extends AbstractApiRequest21 {
|
|
@@ -18105,14 +18823,36 @@ var UpdateIntegrationCassaInCloud = class extends AbstractApiRequest90 {
|
|
|
18105
18823
|
}
|
|
18106
18824
|
};
|
|
18107
18825
|
|
|
18108
|
-
// src/requests/services/deliveroo/
|
|
18826
|
+
// src/requests/services/deliveroo/CancelIntegrationDeliverooSiteDayOff.ts
|
|
18109
18827
|
import { AbstractApiRequest as AbstractApiRequest91 } from "@deliverart/sdk-js-core";
|
|
18828
|
+
var cancelIntegrationDeliverooSiteDayOffInputSchema = external_exports.undefined();
|
|
18829
|
+
var cancelIntegrationDeliverooSiteDayOffResponseSchema = integrationDeliverooSiteDayOffResponseSchema;
|
|
18830
|
+
var CancelIntegrationDeliverooSiteDayOff = class extends AbstractApiRequest91 {
|
|
18831
|
+
constructor(integrationDeliverooId, dayOffId) {
|
|
18832
|
+
super(void 0);
|
|
18833
|
+
this.method = "DELETE";
|
|
18834
|
+
this.contentType = "application/json";
|
|
18835
|
+
this.accept = "application/json";
|
|
18836
|
+
this.inputSchema = cancelIntegrationDeliverooSiteDayOffInputSchema;
|
|
18837
|
+
this.outputSchema = cancelIntegrationDeliverooSiteDayOffResponseSchema;
|
|
18838
|
+
this.querySchema = void 0;
|
|
18839
|
+
this.headersSchema = void 0;
|
|
18840
|
+
this.integrationDeliverooId = integrationDeliverooId;
|
|
18841
|
+
this.dayOffId = dayOffId;
|
|
18842
|
+
}
|
|
18843
|
+
getPath() {
|
|
18844
|
+
return `/integrations/deliveroo/${this.integrationDeliverooId}/site/days_off/${this.dayOffId}`;
|
|
18845
|
+
}
|
|
18846
|
+
};
|
|
18847
|
+
|
|
18848
|
+
// src/requests/services/deliveroo/CreateIntegrationDeliveroo.ts
|
|
18849
|
+
import { AbstractApiRequest as AbstractApiRequest92 } from "@deliverart/sdk-js-core";
|
|
18110
18850
|
import { pointOfSaleIriSchema as pointOfSaleIriSchema6 } from "@deliverart/sdk-js-point-of-sale";
|
|
18111
18851
|
var createIntegrationDeliverooInputSchema = integrationDeliverooEditableFieldsSchema.extend({
|
|
18112
18852
|
pointOfSale: pointOfSaleIriSchema6
|
|
18113
18853
|
});
|
|
18114
18854
|
var createIntegrationDeliverooResponseSchema = integrationDeliverooDetailsSchema;
|
|
18115
|
-
var CreateIntegrationDeliveroo = class extends
|
|
18855
|
+
var CreateIntegrationDeliveroo = class extends AbstractApiRequest92 {
|
|
18116
18856
|
constructor(input) {
|
|
18117
18857
|
super(input);
|
|
18118
18858
|
this.method = "POST";
|
|
@@ -18128,12 +18868,33 @@ var CreateIntegrationDeliveroo = class extends AbstractApiRequest91 {
|
|
|
18128
18868
|
}
|
|
18129
18869
|
};
|
|
18130
18870
|
|
|
18871
|
+
// src/requests/services/deliveroo/CreateIntegrationDeliverooSiteDayOff.ts
|
|
18872
|
+
import { AbstractApiRequest as AbstractApiRequest93 } from "@deliverart/sdk-js-core";
|
|
18873
|
+
var createIntegrationDeliverooSiteDayOffInputSchema = integrationDeliverooSiteDayOffInputSchema;
|
|
18874
|
+
var createIntegrationDeliverooSiteDayOffResponseSchema = integrationDeliverooSiteDayOffResponseSchema;
|
|
18875
|
+
var CreateIntegrationDeliverooSiteDayOff = class extends AbstractApiRequest93 {
|
|
18876
|
+
constructor(integrationDeliverooId, input) {
|
|
18877
|
+
super(input);
|
|
18878
|
+
this.method = "POST";
|
|
18879
|
+
this.contentType = "application/json";
|
|
18880
|
+
this.accept = "application/json";
|
|
18881
|
+
this.inputSchema = createIntegrationDeliverooSiteDayOffInputSchema;
|
|
18882
|
+
this.outputSchema = createIntegrationDeliverooSiteDayOffResponseSchema;
|
|
18883
|
+
this.querySchema = void 0;
|
|
18884
|
+
this.headersSchema = void 0;
|
|
18885
|
+
this.integrationDeliverooId = integrationDeliverooId;
|
|
18886
|
+
}
|
|
18887
|
+
getPath() {
|
|
18888
|
+
return `/integrations/deliveroo/${this.integrationDeliverooId}/site/days_off`;
|
|
18889
|
+
}
|
|
18890
|
+
};
|
|
18891
|
+
|
|
18131
18892
|
// src/requests/services/deliveroo/DeleteIntegrationDeliveroo.ts
|
|
18132
|
-
import { AbstractApiRequest as
|
|
18893
|
+
import { AbstractApiRequest as AbstractApiRequest94 } from "@deliverart/sdk-js-core";
|
|
18133
18894
|
import { emptyResponseSchema as emptyResponseSchema5 } from "@deliverart/sdk-js-global-types";
|
|
18134
18895
|
var deleteIntegrationDeliverooInputSchema = external_exports.undefined();
|
|
18135
18896
|
var deleteIntegrationDeliverooResponseSchema = emptyResponseSchema5;
|
|
18136
|
-
var DeleteIntegrationDeliveroo = class extends
|
|
18897
|
+
var DeleteIntegrationDeliveroo = class extends AbstractApiRequest94 {
|
|
18137
18898
|
constructor(integrationDeliverooId) {
|
|
18138
18899
|
super(void 0);
|
|
18139
18900
|
this.method = "DELETE";
|
|
@@ -18151,10 +18912,10 @@ var DeleteIntegrationDeliveroo = class extends AbstractApiRequest92 {
|
|
|
18151
18912
|
};
|
|
18152
18913
|
|
|
18153
18914
|
// src/requests/services/deliveroo/GetIntegrationDeliverooBrands.ts
|
|
18154
|
-
import { AbstractApiRequest as
|
|
18915
|
+
import { AbstractApiRequest as AbstractApiRequest95 } from "@deliverart/sdk-js-core";
|
|
18155
18916
|
var getIntegrationDeliverooBrandsInputSchema = external_exports.undefined();
|
|
18156
18917
|
var getIntegrationDeliverooBrandsResponseSchema = integrationDeliverooDebugBrandsResponseSchema;
|
|
18157
|
-
var GetIntegrationDeliverooBrands = class extends
|
|
18918
|
+
var GetIntegrationDeliverooBrands = class extends AbstractApiRequest95 {
|
|
18158
18919
|
constructor() {
|
|
18159
18920
|
super(void 0);
|
|
18160
18921
|
this.method = "GET";
|
|
@@ -18171,10 +18932,10 @@ var GetIntegrationDeliverooBrands = class extends AbstractApiRequest93 {
|
|
|
18171
18932
|
};
|
|
18172
18933
|
|
|
18173
18934
|
// src/requests/services/deliveroo/GetIntegrationDeliverooBrandSites.ts
|
|
18174
|
-
import { AbstractApiRequest as
|
|
18935
|
+
import { AbstractApiRequest as AbstractApiRequest96 } from "@deliverart/sdk-js-core";
|
|
18175
18936
|
var getIntegrationDeliverooBrandSitesInputSchema = external_exports.undefined();
|
|
18176
18937
|
var getIntegrationDeliverooBrandSitesResponseSchema = integrationDeliverooDebugSitesResponseSchema;
|
|
18177
|
-
var GetIntegrationDeliverooBrandSites = class extends
|
|
18938
|
+
var GetIntegrationDeliverooBrandSites = class extends AbstractApiRequest96 {
|
|
18178
18939
|
constructor(brandId) {
|
|
18179
18940
|
super(void 0);
|
|
18180
18941
|
this.method = "GET";
|
|
@@ -18192,10 +18953,10 @@ var GetIntegrationDeliverooBrandSites = class extends AbstractApiRequest94 {
|
|
|
18192
18953
|
};
|
|
18193
18954
|
|
|
18194
18955
|
// src/requests/services/deliveroo/GetIntegrationDeliverooClientLogRequestDetails.ts
|
|
18195
|
-
import { AbstractApiRequest as
|
|
18956
|
+
import { AbstractApiRequest as AbstractApiRequest97 } from "@deliverart/sdk-js-core";
|
|
18196
18957
|
var getIntegrationDeliverooClientLogRequestDetailsInputSchema = external_exports.undefined();
|
|
18197
18958
|
var getIntegrationDeliverooClientLogRequestDetailsResponseSchema = integrationClientLogRequestDetailsSchema;
|
|
18198
|
-
var GetIntegrationDeliverooClientLogRequestDetails = class extends
|
|
18959
|
+
var GetIntegrationDeliverooClientLogRequestDetails = class extends AbstractApiRequest97 {
|
|
18199
18960
|
constructor(integrationDeliverooId, requestId) {
|
|
18200
18961
|
super(void 0);
|
|
18201
18962
|
this.method = "GET";
|
|
@@ -18214,14 +18975,14 @@ var GetIntegrationDeliverooClientLogRequestDetails = class extends AbstractApiRe
|
|
|
18214
18975
|
};
|
|
18215
18976
|
|
|
18216
18977
|
// src/requests/services/deliveroo/GetIntegrationDeliverooClientLogRequests.ts
|
|
18217
|
-
import { AbstractApiRequest as
|
|
18978
|
+
import { AbstractApiRequest as AbstractApiRequest98 } from "@deliverart/sdk-js-core";
|
|
18218
18979
|
import { createPaginatedSchema as createPaginatedSchema17 } from "@deliverart/sdk-js-global-types";
|
|
18219
18980
|
var getIntegrationDeliverooClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
18220
18981
|
var getIntegrationDeliverooClientLogRequestsInputSchema = external_exports.undefined();
|
|
18221
18982
|
var getIntegrationDeliverooClientLogRequestsResponseSchema = createPaginatedSchema17(
|
|
18222
18983
|
integrationClientLogRequestSchema
|
|
18223
18984
|
);
|
|
18224
|
-
var GetIntegrationDeliverooClientLogRequests = class extends
|
|
18985
|
+
var GetIntegrationDeliverooClientLogRequests = class extends AbstractApiRequest98 {
|
|
18225
18986
|
constructor(integrationDeliverooId, options) {
|
|
18226
18987
|
super(void 0, options);
|
|
18227
18988
|
this.method = "GET";
|
|
@@ -18241,7 +19002,7 @@ var GetIntegrationDeliverooClientLogRequests = class extends AbstractApiRequest9
|
|
|
18241
19002
|
};
|
|
18242
19003
|
|
|
18243
19004
|
// src/requests/services/deliveroo/GetIntegrationDeliverooClientLogRequestsFromOrder.ts
|
|
18244
|
-
import { AbstractApiRequest as
|
|
19005
|
+
import { AbstractApiRequest as AbstractApiRequest99 } from "@deliverart/sdk-js-core";
|
|
18245
19006
|
var getIntegrationDeliverooClientLogRequestsFromOrderQuerySchema = clientLogRequestQuerySchema.omit({
|
|
18246
19007
|
page: true
|
|
18247
19008
|
});
|
|
@@ -18249,7 +19010,7 @@ var getIntegrationDeliverooClientLogRequestsFromOrderInputSchema = external_expo
|
|
|
18249
19010
|
var getIntegrationDeliverooClientLogRequestsFromOrderResponseSchema = external_exports.array(
|
|
18250
19011
|
integrationClientLogRequestSchema
|
|
18251
19012
|
);
|
|
18252
|
-
var GetIntegrationDeliverooClientLogRequestsFromOrder = class extends
|
|
19013
|
+
var GetIntegrationDeliverooClientLogRequestsFromOrder = class extends AbstractApiRequest99 {
|
|
18253
19014
|
constructor(orderId, options) {
|
|
18254
19015
|
super(void 0, options);
|
|
18255
19016
|
this.method = "GET";
|
|
@@ -18269,10 +19030,10 @@ var GetIntegrationDeliverooClientLogRequestsFromOrder = class extends AbstractAp
|
|
|
18269
19030
|
};
|
|
18270
19031
|
|
|
18271
19032
|
// src/requests/services/deliveroo/GetIntegrationDeliverooDetails.ts
|
|
18272
|
-
import { AbstractApiRequest as
|
|
19033
|
+
import { AbstractApiRequest as AbstractApiRequest100 } from "@deliverart/sdk-js-core";
|
|
18273
19034
|
var getIntegrationDeliverooDetailsInputSchema = external_exports.undefined();
|
|
18274
19035
|
var getIntegrationDeliverooDetailsResponseSchema = integrationDeliverooDetailsSchema;
|
|
18275
|
-
var GetIntegrationDeliverooDetails = class extends
|
|
19036
|
+
var GetIntegrationDeliverooDetails = class extends AbstractApiRequest100 {
|
|
18276
19037
|
constructor(integrationDeliverooId) {
|
|
18277
19038
|
super(void 0);
|
|
18278
19039
|
this.method = "GET";
|
|
@@ -18290,14 +19051,14 @@ var GetIntegrationDeliverooDetails = class extends AbstractApiRequest98 {
|
|
|
18290
19051
|
};
|
|
18291
19052
|
|
|
18292
19053
|
// src/requests/services/deliveroo/GetIntegrationDeliverooGlobalClientLogRequests.ts
|
|
18293
|
-
import { AbstractApiRequest as
|
|
19054
|
+
import { AbstractApiRequest as AbstractApiRequest101 } from "@deliverart/sdk-js-core";
|
|
18294
19055
|
import { createPaginatedSchema as createPaginatedSchema18 } from "@deliverart/sdk-js-global-types";
|
|
18295
19056
|
var getIntegrationDeliverooGlobalClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
18296
19057
|
var getIntegrationDeliverooGlobalClientLogRequestsInputSchema = external_exports.undefined();
|
|
18297
19058
|
var getIntegrationDeliverooGlobalClientLogRequestsResponseSchema = createPaginatedSchema18(
|
|
18298
19059
|
integrationClientLogRequestSchema
|
|
18299
19060
|
);
|
|
18300
|
-
var GetIntegrationDeliverooGlobalClientLogRequests = class extends
|
|
19061
|
+
var GetIntegrationDeliverooGlobalClientLogRequests = class extends AbstractApiRequest101 {
|
|
18301
19062
|
constructor(options) {
|
|
18302
19063
|
super(void 0, options);
|
|
18303
19064
|
this.method = "GET";
|
|
@@ -18315,24 +19076,48 @@ var GetIntegrationDeliverooGlobalClientLogRequests = class extends AbstractApiRe
|
|
|
18315
19076
|
}
|
|
18316
19077
|
};
|
|
18317
19078
|
|
|
18318
|
-
// src/requests/services/deliveroo/
|
|
18319
|
-
import { AbstractApiRequest as
|
|
18320
|
-
|
|
18321
|
-
|
|
18322
|
-
service: true
|
|
19079
|
+
// src/requests/services/deliveroo/GetIntegrationDeliverooIntegrationSiteDaysOff.ts
|
|
19080
|
+
import { AbstractApiRequest as AbstractApiRequest102 } from "@deliverart/sdk-js-core";
|
|
19081
|
+
var getIntegrationDeliverooIntegrationSiteDaysOffQuerySchema = external_exports.object({
|
|
19082
|
+
page: external_exports.coerce.number().optional()
|
|
18323
19083
|
});
|
|
18324
|
-
var
|
|
18325
|
-
|
|
18326
|
-
|
|
18327
|
-
|
|
18328
|
-
var GetIntegrationDeliverooList = class extends AbstractApiRequest100 {
|
|
18329
|
-
constructor(options) {
|
|
19084
|
+
var getIntegrationDeliverooIntegrationSiteDaysOffInputSchema = external_exports.undefined();
|
|
19085
|
+
var getIntegrationDeliverooIntegrationSiteDaysOffResponseSchema = integrationDeliverooSiteDaysOffResponseSchema;
|
|
19086
|
+
var GetIntegrationDeliverooIntegrationSiteDaysOff = class extends AbstractApiRequest102 {
|
|
19087
|
+
constructor(integrationDeliverooId, options) {
|
|
18330
19088
|
super(void 0, options);
|
|
18331
19089
|
this.method = "GET";
|
|
18332
19090
|
this.contentType = "application/json";
|
|
18333
19091
|
this.accept = "application/json";
|
|
18334
|
-
this.inputSchema =
|
|
18335
|
-
this.outputSchema =
|
|
19092
|
+
this.inputSchema = getIntegrationDeliverooIntegrationSiteDaysOffInputSchema;
|
|
19093
|
+
this.outputSchema = getIntegrationDeliverooIntegrationSiteDaysOffResponseSchema;
|
|
19094
|
+
this.querySchema = getIntegrationDeliverooIntegrationSiteDaysOffQuerySchema;
|
|
19095
|
+
this.headersSchema = void 0;
|
|
19096
|
+
this.integrationDeliverooId = integrationDeliverooId;
|
|
19097
|
+
}
|
|
19098
|
+
getPath() {
|
|
19099
|
+
return `/integrations/deliveroo/${this.integrationDeliverooId}/site/days_off`;
|
|
19100
|
+
}
|
|
19101
|
+
};
|
|
19102
|
+
|
|
19103
|
+
// src/requests/services/deliveroo/GetIntegrationDeliverooList.ts
|
|
19104
|
+
import { AbstractApiRequest as AbstractApiRequest103 } from "@deliverart/sdk-js-core";
|
|
19105
|
+
import { createPaginatedSchema as createPaginatedSchema19 } from "@deliverart/sdk-js-global-types";
|
|
19106
|
+
var getIntegrationDeliverooListQuerySchema = integrationsDeliverooQuerySchema.omit({
|
|
19107
|
+
service: true
|
|
19108
|
+
});
|
|
19109
|
+
var getIntegrationDeliverooListResponseSchema = createPaginatedSchema19(
|
|
19110
|
+
integrationDeliverooSchema
|
|
19111
|
+
);
|
|
19112
|
+
var getIntegrationDeliverooListInputSchema = external_exports.undefined();
|
|
19113
|
+
var GetIntegrationDeliverooList = class extends AbstractApiRequest103 {
|
|
19114
|
+
constructor(options) {
|
|
19115
|
+
super(void 0, options);
|
|
19116
|
+
this.method = "GET";
|
|
19117
|
+
this.contentType = "application/json";
|
|
19118
|
+
this.accept = "application/json";
|
|
19119
|
+
this.inputSchema = getIntegrationDeliverooListInputSchema;
|
|
19120
|
+
this.outputSchema = getIntegrationDeliverooListResponseSchema;
|
|
18336
19121
|
this.querySchema = getIntegrationDeliverooListQuerySchema;
|
|
18337
19122
|
this.headersSchema = void 0;
|
|
18338
19123
|
this.listItemSchema = integrationDeliverooSchema;
|
|
@@ -18344,11 +19129,11 @@ var GetIntegrationDeliverooList = class extends AbstractApiRequest100 {
|
|
|
18344
19129
|
};
|
|
18345
19130
|
|
|
18346
19131
|
// src/requests/services/deliveroo/GetIntegrationDeliverooMenuValidation.ts
|
|
18347
|
-
import { AbstractApiRequest as
|
|
19132
|
+
import { AbstractApiRequest as AbstractApiRequest104 } from "@deliverart/sdk-js-core";
|
|
18348
19133
|
import { emptyResponseSchema as emptyResponseSchema6 } from "@deliverart/sdk-js-global-types";
|
|
18349
19134
|
var getIntegrationDeliverooMenuValidationInputSchema = external_exports.undefined();
|
|
18350
19135
|
var getIntegrationDeliverooMenuValidationResponseSchema = emptyResponseSchema6;
|
|
18351
|
-
var GetIntegrationDeliverooMenuValidation = class extends
|
|
19136
|
+
var GetIntegrationDeliverooMenuValidation = class extends AbstractApiRequest104 {
|
|
18352
19137
|
constructor(integrationDeliverooId) {
|
|
18353
19138
|
super(void 0);
|
|
18354
19139
|
this.method = "GET";
|
|
@@ -18366,10 +19151,10 @@ var GetIntegrationDeliverooMenuValidation = class extends AbstractApiRequest101
|
|
|
18366
19151
|
};
|
|
18367
19152
|
|
|
18368
19153
|
// src/requests/services/deliveroo/GetIntegrationDeliverooMenuVersionDetails.ts
|
|
18369
|
-
import { AbstractApiRequest as
|
|
19154
|
+
import { AbstractApiRequest as AbstractApiRequest105 } from "@deliverart/sdk-js-core";
|
|
18370
19155
|
var getIntegrationDeliverooMenuVersionDetailsInputSchema = external_exports.undefined();
|
|
18371
19156
|
var getIntegrationDeliverooMenuVersionDetailsResponseSchema = menuVersionDetailsSchema;
|
|
18372
|
-
var GetIntegrationDeliverooMenuVersionDetails = class extends
|
|
19157
|
+
var GetIntegrationDeliverooMenuVersionDetails = class extends AbstractApiRequest105 {
|
|
18373
19158
|
constructor(integrationDeliverooId, versionId) {
|
|
18374
19159
|
super(void 0);
|
|
18375
19160
|
this.method = "GET";
|
|
@@ -18388,14 +19173,14 @@ var GetIntegrationDeliverooMenuVersionDetails = class extends AbstractApiRequest
|
|
|
18388
19173
|
};
|
|
18389
19174
|
|
|
18390
19175
|
// src/requests/services/deliveroo/GetIntegrationDeliverooMenuVersions.ts
|
|
18391
|
-
import { AbstractApiRequest as
|
|
19176
|
+
import { AbstractApiRequest as AbstractApiRequest106 } from "@deliverart/sdk-js-core";
|
|
18392
19177
|
import { createPaginatedSchema as createPaginatedSchema20 } from "@deliverart/sdk-js-global-types";
|
|
18393
19178
|
var getIntegrationDeliverooMenuVersionsQuerySchema = external_exports.object({
|
|
18394
19179
|
page: external_exports.coerce.number().optional()
|
|
18395
19180
|
});
|
|
18396
19181
|
var getIntegrationDeliverooMenuVersionsInputSchema = external_exports.undefined();
|
|
18397
19182
|
var getIntegrationDeliverooMenuVersionsResponseSchema = createPaginatedSchema20(menuVersionSchema);
|
|
18398
|
-
var GetIntegrationDeliverooMenuVersions = class extends
|
|
19183
|
+
var GetIntegrationDeliverooMenuVersions = class extends AbstractApiRequest106 {
|
|
18399
19184
|
constructor(integrationDeliverooId, options) {
|
|
18400
19185
|
super(void 0, options);
|
|
18401
19186
|
this.method = "GET";
|
|
@@ -18415,10 +19200,10 @@ var GetIntegrationDeliverooMenuVersions = class extends AbstractApiRequest103 {
|
|
|
18415
19200
|
};
|
|
18416
19201
|
|
|
18417
19202
|
// src/requests/services/deliveroo/GetIntegrationDeliverooOrderDetails.ts
|
|
18418
|
-
import { AbstractApiRequest as
|
|
19203
|
+
import { AbstractApiRequest as AbstractApiRequest107 } from "@deliverart/sdk-js-core";
|
|
18419
19204
|
var getIntegrationDeliverooOrderDetailsInputSchema = external_exports.undefined();
|
|
18420
19205
|
var getIntegrationDeliverooOrderDetailsResponseSchema = integrationDeliverooOrderDetailsSchema;
|
|
18421
|
-
var GetIntegrationDeliverooOrderDetails = class extends
|
|
19206
|
+
var GetIntegrationDeliverooOrderDetails = class extends AbstractApiRequest107 {
|
|
18422
19207
|
constructor(integrationDeliverooId, orderId) {
|
|
18423
19208
|
super(void 0);
|
|
18424
19209
|
this.method = "GET";
|
|
@@ -18437,14 +19222,14 @@ var GetIntegrationDeliverooOrderDetails = class extends AbstractApiRequest104 {
|
|
|
18437
19222
|
};
|
|
18438
19223
|
|
|
18439
19224
|
// src/requests/services/deliveroo/GetIntegrationDeliverooOrders.ts
|
|
18440
|
-
import { AbstractApiRequest as
|
|
19225
|
+
import { AbstractApiRequest as AbstractApiRequest108 } from "@deliverart/sdk-js-core";
|
|
18441
19226
|
import { createPaginatedSchema as createPaginatedSchema21 } from "@deliverart/sdk-js-global-types";
|
|
18442
19227
|
var getIntegrationDeliverooOrdersQuerySchema = integrationDeliverooOrdersQuerySchema;
|
|
18443
19228
|
var getIntegrationDeliverooOrdersInputSchema = external_exports.undefined();
|
|
18444
19229
|
var getIntegrationDeliverooOrdersResponseSchema = createPaginatedSchema21(
|
|
18445
19230
|
integrationDeliverooOrderSchema
|
|
18446
19231
|
);
|
|
18447
|
-
var GetIntegrationDeliverooOrders = class extends
|
|
19232
|
+
var GetIntegrationDeliverooOrders = class extends AbstractApiRequest108 {
|
|
18448
19233
|
constructor(integrationDeliverooId, options) {
|
|
18449
19234
|
super(void 0, options);
|
|
18450
19235
|
this.method = "GET";
|
|
@@ -18464,7 +19249,7 @@ var GetIntegrationDeliverooOrders = class extends AbstractApiRequest105 {
|
|
|
18464
19249
|
};
|
|
18465
19250
|
|
|
18466
19251
|
// src/requests/services/deliveroo/GetIntegrationDeliverooOrdersFromOrder.ts
|
|
18467
|
-
import { AbstractApiRequest as
|
|
19252
|
+
import { AbstractApiRequest as AbstractApiRequest109 } from "@deliverart/sdk-js-core";
|
|
18468
19253
|
var getIntegrationDeliverooOrdersFromOrderQuerySchema = integrationDeliverooOrdersQuerySchema.omit({
|
|
18469
19254
|
page: true
|
|
18470
19255
|
});
|
|
@@ -18472,7 +19257,7 @@ var getIntegrationDeliverooOrdersFromOrderInputSchema = external_exports.undefin
|
|
|
18472
19257
|
var getIntegrationDeliverooOrdersFromOrderResponseSchema = external_exports.array(
|
|
18473
19258
|
integrationDeliverooOrderSchema
|
|
18474
19259
|
);
|
|
18475
|
-
var GetIntegrationDeliverooOrdersFromOrder = class extends
|
|
19260
|
+
var GetIntegrationDeliverooOrdersFromOrder = class extends AbstractApiRequest109 {
|
|
18476
19261
|
constructor(orderId, options) {
|
|
18477
19262
|
super(void 0, options);
|
|
18478
19263
|
this.method = "GET";
|
|
@@ -18492,10 +19277,10 @@ var GetIntegrationDeliverooOrdersFromOrder = class extends AbstractApiRequest106
|
|
|
18492
19277
|
};
|
|
18493
19278
|
|
|
18494
19279
|
// src/requests/services/deliveroo/GetIntegrationDeliverooSiteBrandIds.ts
|
|
18495
|
-
import { AbstractApiRequest as
|
|
19280
|
+
import { AbstractApiRequest as AbstractApiRequest110 } from "@deliverart/sdk-js-core";
|
|
18496
19281
|
var getIntegrationDeliverooSiteBrandIdsInputSchema = external_exports.undefined();
|
|
18497
19282
|
var getIntegrationDeliverooSiteBrandIdsResponseSchema = integrationDeliverooDebugSiteBrandIdsResponseSchema;
|
|
18498
|
-
var GetIntegrationDeliverooSiteBrandIds = class extends
|
|
19283
|
+
var GetIntegrationDeliverooSiteBrandIds = class extends AbstractApiRequest110 {
|
|
18499
19284
|
constructor(siteId) {
|
|
18500
19285
|
super(void 0);
|
|
18501
19286
|
this.method = "GET";
|
|
@@ -18513,13 +19298,13 @@ var GetIntegrationDeliverooSiteBrandIds = class extends AbstractApiRequest107 {
|
|
|
18513
19298
|
};
|
|
18514
19299
|
|
|
18515
19300
|
// src/requests/services/deliveroo/GetIntegrationDeliverooSiteDaysOff.ts
|
|
18516
|
-
import { AbstractApiRequest as
|
|
19301
|
+
import { AbstractApiRequest as AbstractApiRequest111 } from "@deliverart/sdk-js-core";
|
|
18517
19302
|
var getIntegrationDeliverooSiteDaysOffQuerySchema = external_exports.object({
|
|
18518
19303
|
page: external_exports.coerce.number().optional()
|
|
18519
19304
|
});
|
|
18520
19305
|
var getIntegrationDeliverooSiteDaysOffInputSchema = external_exports.undefined();
|
|
18521
19306
|
var getIntegrationDeliverooSiteDaysOffResponseSchema = integrationDeliverooDebugDaysOffResponseSchema;
|
|
18522
|
-
var GetIntegrationDeliverooSiteDaysOff = class extends
|
|
19307
|
+
var GetIntegrationDeliverooSiteDaysOff = class extends AbstractApiRequest111 {
|
|
18523
19308
|
constructor(brandId, siteId, options) {
|
|
18524
19309
|
super(void 0, options);
|
|
18525
19310
|
this.method = "GET";
|
|
@@ -18538,10 +19323,10 @@ var GetIntegrationDeliverooSiteDaysOff = class extends AbstractApiRequest108 {
|
|
|
18538
19323
|
};
|
|
18539
19324
|
|
|
18540
19325
|
// src/requests/services/deliveroo/GetIntegrationDeliverooSyncMenuProcessDetails.ts
|
|
18541
|
-
import { AbstractApiRequest as
|
|
19326
|
+
import { AbstractApiRequest as AbstractApiRequest112 } from "@deliverart/sdk-js-core";
|
|
18542
19327
|
var getIntegrationDeliverooSyncMenuProcessDetailsInputSchema = external_exports.undefined();
|
|
18543
19328
|
var getIntegrationDeliverooSyncMenuProcessDetailsResponseSchema = integrationDeliverooSyncMenuProcessDetailsSchema;
|
|
18544
|
-
var GetIntegrationDeliverooSyncMenuProcessDetails = class extends
|
|
19329
|
+
var GetIntegrationDeliverooSyncMenuProcessDetails = class extends AbstractApiRequest112 {
|
|
18545
19330
|
constructor(integrationDeliverooId, processId) {
|
|
18546
19331
|
super(void 0);
|
|
18547
19332
|
this.method = "GET";
|
|
@@ -18560,14 +19345,14 @@ var GetIntegrationDeliverooSyncMenuProcessDetails = class extends AbstractApiReq
|
|
|
18560
19345
|
};
|
|
18561
19346
|
|
|
18562
19347
|
// src/requests/services/deliveroo/GetIntegrationDeliverooSyncMenuProcesses.ts
|
|
18563
|
-
import { AbstractApiRequest as
|
|
19348
|
+
import { AbstractApiRequest as AbstractApiRequest113 } from "@deliverart/sdk-js-core";
|
|
18564
19349
|
import { createPaginatedSchema as createPaginatedSchema22 } from "@deliverart/sdk-js-global-types";
|
|
18565
19350
|
var getIntegrationDeliverooSyncMenuProcessesQuerySchema = integrationDeliverooSyncMenuProcessesQuerySchema;
|
|
18566
19351
|
var getIntegrationDeliverooSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
18567
19352
|
var getIntegrationDeliverooSyncMenuProcessesResponseSchema = createPaginatedSchema22(
|
|
18568
19353
|
integrationDeliverooSyncMenuProcessSchema
|
|
18569
19354
|
);
|
|
18570
|
-
var GetIntegrationDeliverooSyncMenuProcesses = class extends
|
|
19355
|
+
var GetIntegrationDeliverooSyncMenuProcesses = class extends AbstractApiRequest113 {
|
|
18571
19356
|
constructor(integrationDeliverooId, options) {
|
|
18572
19357
|
super(void 0, options);
|
|
18573
19358
|
this.method = "GET";
|
|
@@ -18587,10 +19372,10 @@ var GetIntegrationDeliverooSyncMenuProcesses = class extends AbstractApiRequest1
|
|
|
18587
19372
|
};
|
|
18588
19373
|
|
|
18589
19374
|
// src/requests/services/deliveroo/GetIntegrationDeliverooWebhookEventDetails.ts
|
|
18590
|
-
import { AbstractApiRequest as
|
|
19375
|
+
import { AbstractApiRequest as AbstractApiRequest114 } from "@deliverart/sdk-js-core";
|
|
18591
19376
|
var getIntegrationDeliverooWebhookEventDetailsInputSchema = external_exports.undefined();
|
|
18592
19377
|
var getIntegrationDeliverooWebhookEventDetailsResponseSchema = integrationDeliverooWebhookEventDetailsSchema;
|
|
18593
|
-
var GetIntegrationDeliverooWebhookEventDetails = class extends
|
|
19378
|
+
var GetIntegrationDeliverooWebhookEventDetails = class extends AbstractApiRequest114 {
|
|
18594
19379
|
constructor(integrationDeliverooId, eventId) {
|
|
18595
19380
|
super(void 0);
|
|
18596
19381
|
this.method = "GET";
|
|
@@ -18609,14 +19394,14 @@ var GetIntegrationDeliverooWebhookEventDetails = class extends AbstractApiReques
|
|
|
18609
19394
|
};
|
|
18610
19395
|
|
|
18611
19396
|
// src/requests/services/deliveroo/GetIntegrationDeliverooWebhookEvents.ts
|
|
18612
|
-
import { AbstractApiRequest as
|
|
19397
|
+
import { AbstractApiRequest as AbstractApiRequest115 } from "@deliverart/sdk-js-core";
|
|
18613
19398
|
import { createPaginatedSchema as createPaginatedSchema23 } from "@deliverart/sdk-js-global-types";
|
|
18614
19399
|
var getIntegrationDeliverooWebhookEventsQuerySchema = integrationDeliverooWebhookEventsQueryParamsSchema;
|
|
18615
19400
|
var getIntegrationDeliverooWebhookEventsInputSchema = external_exports.undefined();
|
|
18616
19401
|
var getIntegrationDeliverooWebhookEventsResponseSchema = createPaginatedSchema23(
|
|
18617
19402
|
integrationDeliverooWebhookEventSchema
|
|
18618
19403
|
);
|
|
18619
|
-
var GetIntegrationDeliverooWebhookEvents = class extends
|
|
19404
|
+
var GetIntegrationDeliverooWebhookEvents = class extends AbstractApiRequest115 {
|
|
18620
19405
|
constructor(integrationDeliverooId, options) {
|
|
18621
19406
|
super(void 0, options);
|
|
18622
19407
|
this.method = "GET";
|
|
@@ -18636,7 +19421,7 @@ var GetIntegrationDeliverooWebhookEvents = class extends AbstractApiRequest112 {
|
|
|
18636
19421
|
};
|
|
18637
19422
|
|
|
18638
19423
|
// src/requests/services/deliveroo/GetIntegrationDeliverooWebhookEventsFromOrder.ts
|
|
18639
|
-
import { AbstractApiRequest as
|
|
19424
|
+
import { AbstractApiRequest as AbstractApiRequest116 } from "@deliverart/sdk-js-core";
|
|
18640
19425
|
var getIntegrationDeliverooWebhookEventsFromOrderQuerySchema = integrationDeliverooWebhookEventsQueryParamsSchema.omit({
|
|
18641
19426
|
page: true
|
|
18642
19427
|
});
|
|
@@ -18644,7 +19429,7 @@ var getIntegrationDeliverooWebhookEventsFromOrderInputSchema = external_exports.
|
|
|
18644
19429
|
var getIntegrationDeliverooWebhookEventsFromOrderResponseSchema = external_exports.array(
|
|
18645
19430
|
integrationDeliverooWebhookEventSchema
|
|
18646
19431
|
);
|
|
18647
|
-
var GetIntegrationDeliverooWebhookEventsFromOrder = class extends
|
|
19432
|
+
var GetIntegrationDeliverooWebhookEventsFromOrder = class extends AbstractApiRequest116 {
|
|
18648
19433
|
constructor(orderId, options) {
|
|
18649
19434
|
super(void 0, options);
|
|
18650
19435
|
this.method = "GET";
|
|
@@ -18664,12 +19449,12 @@ var GetIntegrationDeliverooWebhookEventsFromOrder = class extends AbstractApiReq
|
|
|
18664
19449
|
};
|
|
18665
19450
|
|
|
18666
19451
|
// src/requests/services/deliveroo/IntegrationDeliverooSyncMenu.ts
|
|
18667
|
-
import { AbstractApiRequest as
|
|
19452
|
+
import { AbstractApiRequest as AbstractApiRequest117 } from "@deliverart/sdk-js-core";
|
|
18668
19453
|
var integrationDeliverooSyncMenuInputSchema = external_exports.undefined();
|
|
18669
19454
|
var integrationDeliverooSyncMenuResponseSchema = external_exports.object({
|
|
18670
19455
|
message: external_exports.string()
|
|
18671
19456
|
});
|
|
18672
|
-
var IntegrationDeliverooSyncMenu = class extends
|
|
19457
|
+
var IntegrationDeliverooSyncMenu = class extends AbstractApiRequest117 {
|
|
18673
19458
|
constructor(integrationDeliverooId) {
|
|
18674
19459
|
super(void 0);
|
|
18675
19460
|
this.method = "POST";
|
|
@@ -18687,12 +19472,12 @@ var IntegrationDeliverooSyncMenu = class extends AbstractApiRequest114 {
|
|
|
18687
19472
|
};
|
|
18688
19473
|
|
|
18689
19474
|
// src/requests/services/deliveroo/IntegrationDeliverooSyncOpeningHours.ts
|
|
18690
|
-
import { AbstractApiRequest as
|
|
19475
|
+
import { AbstractApiRequest as AbstractApiRequest118 } from "@deliverart/sdk-js-core";
|
|
18691
19476
|
var integrationDeliverooSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
18692
19477
|
var integrationDeliverooSyncOpeningHoursResponseSchema = external_exports.object({
|
|
18693
19478
|
message: external_exports.string()
|
|
18694
19479
|
});
|
|
18695
|
-
var IntegrationDeliverooSyncOpeningHours = class extends
|
|
19480
|
+
var IntegrationDeliverooSyncOpeningHours = class extends AbstractApiRequest118 {
|
|
18696
19481
|
constructor(integrationDeliverooId) {
|
|
18697
19482
|
super(void 0);
|
|
18698
19483
|
this.method = "POST";
|
|
@@ -18710,10 +19495,10 @@ var IntegrationDeliverooSyncOpeningHours = class extends AbstractApiRequest115 {
|
|
|
18710
19495
|
};
|
|
18711
19496
|
|
|
18712
19497
|
// src/requests/services/deliveroo/UpdateIntegrationDeliveroo.ts
|
|
18713
|
-
import { AbstractApiRequest as
|
|
19498
|
+
import { AbstractApiRequest as AbstractApiRequest119 } from "@deliverart/sdk-js-core";
|
|
18714
19499
|
var updateIntegrationDeliverooInputSchema = integrationDeliverooEditableFieldsSchema.partial();
|
|
18715
19500
|
var updateIntegrationDeliverooResponseSchema = integrationDeliverooDetailsSchema;
|
|
18716
|
-
var UpdateIntegrationDeliveroo = class extends
|
|
19501
|
+
var UpdateIntegrationDeliveroo = class extends AbstractApiRequest119 {
|
|
18717
19502
|
constructor(integrationDeliverooId, input) {
|
|
18718
19503
|
super(input);
|
|
18719
19504
|
this.method = "PATCH";
|
|
@@ -18730,14 +19515,36 @@ var UpdateIntegrationDeliveroo = class extends AbstractApiRequest116 {
|
|
|
18730
19515
|
}
|
|
18731
19516
|
};
|
|
18732
19517
|
|
|
19518
|
+
// src/requests/services/deliveroo/UpdateIntegrationDeliverooSiteDayOff.ts
|
|
19519
|
+
import { AbstractApiRequest as AbstractApiRequest120 } from "@deliverart/sdk-js-core";
|
|
19520
|
+
var updateIntegrationDeliverooSiteDayOffInputSchema = integrationDeliverooSiteDayOffInputSchema;
|
|
19521
|
+
var updateIntegrationDeliverooSiteDayOffResponseSchema = integrationDeliverooSiteDayOffResponseSchema;
|
|
19522
|
+
var UpdateIntegrationDeliverooSiteDayOff = class extends AbstractApiRequest120 {
|
|
19523
|
+
constructor(integrationDeliverooId, dayOffId, input) {
|
|
19524
|
+
super(input);
|
|
19525
|
+
this.method = "PUT";
|
|
19526
|
+
this.contentType = "application/json";
|
|
19527
|
+
this.accept = "application/json";
|
|
19528
|
+
this.inputSchema = updateIntegrationDeliverooSiteDayOffInputSchema;
|
|
19529
|
+
this.outputSchema = updateIntegrationDeliverooSiteDayOffResponseSchema;
|
|
19530
|
+
this.querySchema = void 0;
|
|
19531
|
+
this.headersSchema = void 0;
|
|
19532
|
+
this.integrationDeliverooId = integrationDeliverooId;
|
|
19533
|
+
this.dayOffId = dayOffId;
|
|
19534
|
+
}
|
|
19535
|
+
getPath() {
|
|
19536
|
+
return `/integrations/deliveroo/${this.integrationDeliverooId}/site/days_off/${this.dayOffId}`;
|
|
19537
|
+
}
|
|
19538
|
+
};
|
|
19539
|
+
|
|
18733
19540
|
// src/requests/services/deliveroo/UpdateIntegrationDeliverooSiteStatus.ts
|
|
18734
|
-
import { AbstractApiRequest as
|
|
19541
|
+
import { AbstractApiRequest as AbstractApiRequest121 } from "@deliverart/sdk-js-core";
|
|
18735
19542
|
import { emptyResponseSchema as emptyResponseSchema7 } from "@deliverart/sdk-js-global-types";
|
|
18736
19543
|
var updateIntegrationDeliverooSiteStatusInputSchema = external_exports.object({
|
|
18737
19544
|
status: integrationDeliverooSiteStatusSchema
|
|
18738
19545
|
});
|
|
18739
19546
|
var updateIntegrationDeliverooSiteStatusResponseSchema = emptyResponseSchema7;
|
|
18740
|
-
var UpdateIntegrationDeliverooSiteStatus = class extends
|
|
19547
|
+
var UpdateIntegrationDeliverooSiteStatus = class extends AbstractApiRequest121 {
|
|
18741
19548
|
constructor(integrationDeliverooId, input) {
|
|
18742
19549
|
super(input);
|
|
18743
19550
|
this.method = "POST";
|
|
@@ -18755,7 +19562,7 @@ var UpdateIntegrationDeliverooSiteStatus = class extends AbstractApiRequest117 {
|
|
|
18755
19562
|
};
|
|
18756
19563
|
|
|
18757
19564
|
// src/requests/services/ecommerce/CreateIntegrationEcommerce.ts
|
|
18758
|
-
import { AbstractApiRequest as
|
|
19565
|
+
import { AbstractApiRequest as AbstractApiRequest122 } from "@deliverart/sdk-js-core";
|
|
18759
19566
|
import { pointOfSaleIriSchema as pointOfSaleIriSchema7 } from "@deliverart/sdk-js-point-of-sale";
|
|
18760
19567
|
var createIntegrationEcommerceInputSchema = integrationEcommerceEditableFieldsSchema.extend(
|
|
18761
19568
|
{
|
|
@@ -18763,7 +19570,7 @@ var createIntegrationEcommerceInputSchema = integrationEcommerceEditableFieldsSc
|
|
|
18763
19570
|
}
|
|
18764
19571
|
);
|
|
18765
19572
|
var createIntegrationEcommerceResponseSchema = integrationEcommerceDetailsSchema;
|
|
18766
|
-
var CreateIntegrationEcommerce = class extends
|
|
19573
|
+
var CreateIntegrationEcommerce = class extends AbstractApiRequest122 {
|
|
18767
19574
|
constructor(input) {
|
|
18768
19575
|
super(input);
|
|
18769
19576
|
this.method = "POST";
|
|
@@ -18780,11 +19587,11 @@ var CreateIntegrationEcommerce = class extends AbstractApiRequest118 {
|
|
|
18780
19587
|
};
|
|
18781
19588
|
|
|
18782
19589
|
// src/requests/services/ecommerce/DeleteIntegrationEcommerce.ts
|
|
18783
|
-
import { AbstractApiRequest as
|
|
19590
|
+
import { AbstractApiRequest as AbstractApiRequest123 } from "@deliverart/sdk-js-core";
|
|
18784
19591
|
import { emptyResponseSchema as emptyResponseSchema8 } from "@deliverart/sdk-js-global-types";
|
|
18785
19592
|
var deleteIntegrationEcommerceInputSchema = external_exports.undefined();
|
|
18786
19593
|
var deleteIntegrationEcommerceResponseSchema = emptyResponseSchema8;
|
|
18787
|
-
var DeleteIntegrationEcommerce = class extends
|
|
19594
|
+
var DeleteIntegrationEcommerce = class extends AbstractApiRequest123 {
|
|
18788
19595
|
constructor(integrationEcommerceId) {
|
|
18789
19596
|
super(void 0);
|
|
18790
19597
|
this.method = "DELETE";
|
|
@@ -18802,10 +19609,10 @@ var DeleteIntegrationEcommerce = class extends AbstractApiRequest119 {
|
|
|
18802
19609
|
};
|
|
18803
19610
|
|
|
18804
19611
|
// src/requests/services/ecommerce/GetIntegrationEcommerceDetails.ts
|
|
18805
|
-
import { AbstractApiRequest as
|
|
19612
|
+
import { AbstractApiRequest as AbstractApiRequest124 } from "@deliverart/sdk-js-core";
|
|
18806
19613
|
var getIntegrationEcommerceDetailsInputSchema = external_exports.undefined();
|
|
18807
19614
|
var getIntegrationEcommerceDetailsResponseSchema = integrationEcommerceDetailsSchema;
|
|
18808
|
-
var GetIntegrationEcommerceDetails = class extends
|
|
19615
|
+
var GetIntegrationEcommerceDetails = class extends AbstractApiRequest124 {
|
|
18809
19616
|
constructor(integrationEcommerceId) {
|
|
18810
19617
|
super(void 0);
|
|
18811
19618
|
this.method = "GET";
|
|
@@ -18823,10 +19630,10 @@ var GetIntegrationEcommerceDetails = class extends AbstractApiRequest120 {
|
|
|
18823
19630
|
};
|
|
18824
19631
|
|
|
18825
19632
|
// src/requests/services/ecommerce/GetIntegrationEcommerceInfo.ts
|
|
18826
|
-
import { AbstractApiRequest as
|
|
19633
|
+
import { AbstractApiRequest as AbstractApiRequest125 } from "@deliverart/sdk-js-core";
|
|
18827
19634
|
var getIntegrationEcommerceInfoInputSchema = external_exports.undefined();
|
|
18828
19635
|
var getIntegrationEcommerceInfoResponseSchema = integrationEcommerceInfoSchema;
|
|
18829
|
-
var GetIntegrationEcommerceInfo = class extends
|
|
19636
|
+
var GetIntegrationEcommerceInfo = class extends AbstractApiRequest125 {
|
|
18830
19637
|
constructor(path) {
|
|
18831
19638
|
super(void 0);
|
|
18832
19639
|
this.method = "GET";
|
|
@@ -18844,7 +19651,7 @@ var GetIntegrationEcommerceInfo = class extends AbstractApiRequest121 {
|
|
|
18844
19651
|
};
|
|
18845
19652
|
|
|
18846
19653
|
// src/requests/services/ecommerce/GetIntegrationEcommerceList.ts
|
|
18847
|
-
import { AbstractApiRequest as
|
|
19654
|
+
import { AbstractApiRequest as AbstractApiRequest126 } from "@deliverart/sdk-js-core";
|
|
18848
19655
|
import { createPaginatedSchema as createPaginatedSchema24 } from "@deliverart/sdk-js-global-types";
|
|
18849
19656
|
var getIntegrationEcommerceListQuerySchema = integrationsEcommerceQuerySchema.omit({
|
|
18850
19657
|
service: true
|
|
@@ -18853,7 +19660,7 @@ var getIntegrationEcommerceListInputSchema = external_exports.undefined();
|
|
|
18853
19660
|
var getIntegrationEcommerceListResponseSchema = createPaginatedSchema24(
|
|
18854
19661
|
integrationEcommerceSchema
|
|
18855
19662
|
);
|
|
18856
|
-
var GetIntegrationEcommerceList = class extends
|
|
19663
|
+
var GetIntegrationEcommerceList = class extends AbstractApiRequest126 {
|
|
18857
19664
|
constructor(options) {
|
|
18858
19665
|
super(void 0, options);
|
|
18859
19666
|
this.method = "GET";
|
|
@@ -18872,10 +19679,10 @@ var GetIntegrationEcommerceList = class extends AbstractApiRequest122 {
|
|
|
18872
19679
|
};
|
|
18873
19680
|
|
|
18874
19681
|
// src/requests/services/ecommerce/UpdateIntegrationEcommerce.ts
|
|
18875
|
-
import { AbstractApiRequest as
|
|
19682
|
+
import { AbstractApiRequest as AbstractApiRequest127 } from "@deliverart/sdk-js-core";
|
|
18876
19683
|
var updateIntegrationEcommerceInputSchema = integrationEcommerceEditableFieldsSchema.partial();
|
|
18877
19684
|
var updateIntegrationEcommerceResponseSchema = integrationEcommerceDetailsSchema;
|
|
18878
|
-
var UpdateIntegrationEcommerce = class extends
|
|
19685
|
+
var UpdateIntegrationEcommerce = class extends AbstractApiRequest127 {
|
|
18879
19686
|
constructor(integrationEcommerceId, input) {
|
|
18880
19687
|
super(input);
|
|
18881
19688
|
this.method = "PATCH";
|
|
@@ -18893,13 +19700,13 @@ var UpdateIntegrationEcommerce = class extends AbstractApiRequest123 {
|
|
|
18893
19700
|
};
|
|
18894
19701
|
|
|
18895
19702
|
// src/requests/services/glovo/CreateIntegrationGlovo.ts
|
|
18896
|
-
import { AbstractApiRequest as
|
|
19703
|
+
import { AbstractApiRequest as AbstractApiRequest128 } from "@deliverart/sdk-js-core";
|
|
18897
19704
|
import { pointOfSaleIriSchema as pointOfSaleIriSchema8 } from "@deliverart/sdk-js-point-of-sale";
|
|
18898
19705
|
var createIntegrationGlovoInputSchema = integrationGlovoEditableFieldsSchema.extend({
|
|
18899
19706
|
pointOfSale: pointOfSaleIriSchema8
|
|
18900
19707
|
});
|
|
18901
19708
|
var createIntegrationGlovoResponseSchema = integrationGlovoDetailsSchema;
|
|
18902
|
-
var CreateIntegrationGlovo = class extends
|
|
19709
|
+
var CreateIntegrationGlovo = class extends AbstractApiRequest128 {
|
|
18903
19710
|
constructor(input) {
|
|
18904
19711
|
super(input);
|
|
18905
19712
|
this.method = "POST";
|
|
@@ -18916,11 +19723,11 @@ var CreateIntegrationGlovo = class extends AbstractApiRequest124 {
|
|
|
18916
19723
|
};
|
|
18917
19724
|
|
|
18918
19725
|
// src/requests/services/glovo/DeleteIntegrationGlovo.ts
|
|
18919
|
-
import { AbstractApiRequest as
|
|
19726
|
+
import { AbstractApiRequest as AbstractApiRequest129 } from "@deliverart/sdk-js-core";
|
|
18920
19727
|
import { emptyResponseSchema as emptyResponseSchema9 } from "@deliverart/sdk-js-global-types";
|
|
18921
19728
|
var deleteIntegrationGlovoInputSchema = external_exports.undefined();
|
|
18922
19729
|
var deleteIntegrationGlovoResponseSchema = emptyResponseSchema9;
|
|
18923
|
-
var DeleteIntegrationGlovo = class extends
|
|
19730
|
+
var DeleteIntegrationGlovo = class extends AbstractApiRequest129 {
|
|
18924
19731
|
constructor(integrationGlovoId) {
|
|
18925
19732
|
super(void 0);
|
|
18926
19733
|
this.method = "DELETE";
|
|
@@ -18938,10 +19745,10 @@ var DeleteIntegrationGlovo = class extends AbstractApiRequest125 {
|
|
|
18938
19745
|
};
|
|
18939
19746
|
|
|
18940
19747
|
// src/requests/services/glovo/GetIntegrationGlovoBulkUpdateDetails.ts
|
|
18941
|
-
import { AbstractApiRequest as
|
|
19748
|
+
import { AbstractApiRequest as AbstractApiRequest130 } from "@deliverart/sdk-js-core";
|
|
18942
19749
|
var getIntegrationGlovoBulkUpdateDetailsInputSchema = external_exports.undefined();
|
|
18943
19750
|
var getIntegrationGlovoBulkUpdateDetailsResponseSchema = integrationGlovoBulkUpdateDetailsSchema;
|
|
18944
|
-
var GetIntegrationGlovoBulkUpdateDetails = class extends
|
|
19751
|
+
var GetIntegrationGlovoBulkUpdateDetails = class extends AbstractApiRequest130 {
|
|
18945
19752
|
constructor(integrationGlovoId, bulkUpdateId) {
|
|
18946
19753
|
super(void 0);
|
|
18947
19754
|
this.method = "GET";
|
|
@@ -18960,14 +19767,14 @@ var GetIntegrationGlovoBulkUpdateDetails = class extends AbstractApiRequest126 {
|
|
|
18960
19767
|
};
|
|
18961
19768
|
|
|
18962
19769
|
// src/requests/services/glovo/GetIntegrationGlovoBulkUpdates.ts
|
|
18963
|
-
import { AbstractApiRequest as
|
|
19770
|
+
import { AbstractApiRequest as AbstractApiRequest131 } from "@deliverart/sdk-js-core";
|
|
18964
19771
|
import { createPaginatedSchema as createPaginatedSchema25 } from "@deliverart/sdk-js-global-types";
|
|
18965
19772
|
var getIntegrationGlovoBulkUpdatesQuerySchema = integrationGlovoBulkUpdatesQuerySchema;
|
|
18966
19773
|
var getIntegrationGlovoBulkUpdatesInputSchema = external_exports.undefined();
|
|
18967
19774
|
var getIntegrationGlovoBulkUpdatesResponseSchema = createPaginatedSchema25(
|
|
18968
19775
|
integrationGlovoBulkUpdateSchema
|
|
18969
19776
|
);
|
|
18970
|
-
var GetIntegrationGlovoBulkUpdates = class extends
|
|
19777
|
+
var GetIntegrationGlovoBulkUpdates = class extends AbstractApiRequest131 {
|
|
18971
19778
|
constructor(integrationGlovoId, options) {
|
|
18972
19779
|
super(void 0, options);
|
|
18973
19780
|
this.method = "GET";
|
|
@@ -18987,10 +19794,10 @@ var GetIntegrationGlovoBulkUpdates = class extends AbstractApiRequest127 {
|
|
|
18987
19794
|
};
|
|
18988
19795
|
|
|
18989
19796
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequestDetails.ts
|
|
18990
|
-
import { AbstractApiRequest as
|
|
19797
|
+
import { AbstractApiRequest as AbstractApiRequest132 } from "@deliverart/sdk-js-core";
|
|
18991
19798
|
var getIntegrationGlovoClientLogRequestDetailsInputSchema = external_exports.undefined();
|
|
18992
19799
|
var getIntegrationGlovoClientLogRequestDetailsResponseSchema = integrationClientLogRequestDetailsSchema;
|
|
18993
|
-
var GetIntegrationGlovoClientLogRequestDetails = class extends
|
|
19800
|
+
var GetIntegrationGlovoClientLogRequestDetails = class extends AbstractApiRequest132 {
|
|
18994
19801
|
constructor(integrationGlovoId, requestId) {
|
|
18995
19802
|
super(void 0);
|
|
18996
19803
|
this.method = "GET";
|
|
@@ -19009,14 +19816,14 @@ var GetIntegrationGlovoClientLogRequestDetails = class extends AbstractApiReques
|
|
|
19009
19816
|
};
|
|
19010
19817
|
|
|
19011
19818
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequests.ts
|
|
19012
|
-
import { AbstractApiRequest as
|
|
19819
|
+
import { AbstractApiRequest as AbstractApiRequest133 } from "@deliverart/sdk-js-core";
|
|
19013
19820
|
import { createPaginatedSchema as createPaginatedSchema26 } from "@deliverart/sdk-js-global-types";
|
|
19014
19821
|
var getIntegrationGlovoClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
19015
19822
|
var getIntegrationGlovoClientLogRequestsInputSchema = external_exports.undefined();
|
|
19016
19823
|
var getIntegrationGlovoClientLogRequestsResponseSchema = createPaginatedSchema26(
|
|
19017
19824
|
integrationClientLogRequestSchema
|
|
19018
19825
|
);
|
|
19019
|
-
var GetIntegrationGlovoClientLogRequests = class extends
|
|
19826
|
+
var GetIntegrationGlovoClientLogRequests = class extends AbstractApiRequest133 {
|
|
19020
19827
|
constructor(integrationGlovoId, options) {
|
|
19021
19828
|
super(void 0, options);
|
|
19022
19829
|
this.method = "GET";
|
|
@@ -19036,7 +19843,7 @@ var GetIntegrationGlovoClientLogRequests = class extends AbstractApiRequest129 {
|
|
|
19036
19843
|
};
|
|
19037
19844
|
|
|
19038
19845
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequestsFromOrder.ts
|
|
19039
|
-
import { AbstractApiRequest as
|
|
19846
|
+
import { AbstractApiRequest as AbstractApiRequest134 } from "@deliverart/sdk-js-core";
|
|
19040
19847
|
var getIntegrationGlovoClientLogRequestsFromOrderQuerySchema = clientLogRequestQuerySchema.omit(
|
|
19041
19848
|
{
|
|
19042
19849
|
page: true
|
|
@@ -19046,7 +19853,7 @@ var getIntegrationGlovoClientLogRequestsFromOrderInputSchema = external_exports.
|
|
|
19046
19853
|
var getIntegrationGlovoClientLogRequestsFromOrderResponseSchema = external_exports.array(
|
|
19047
19854
|
integrationClientLogRequestSchema
|
|
19048
19855
|
);
|
|
19049
|
-
var GetIntegrationGlovoClientLogRequestsFromOrder = class extends
|
|
19856
|
+
var GetIntegrationGlovoClientLogRequestsFromOrder = class extends AbstractApiRequest134 {
|
|
19050
19857
|
constructor(orderId, options) {
|
|
19051
19858
|
super(void 0, options);
|
|
19052
19859
|
this.method = "GET";
|
|
@@ -19066,10 +19873,10 @@ var GetIntegrationGlovoClientLogRequestsFromOrder = class extends AbstractApiReq
|
|
|
19066
19873
|
};
|
|
19067
19874
|
|
|
19068
19875
|
// src/requests/services/glovo/GetIntegrationGlovoDetails.ts
|
|
19069
|
-
import { AbstractApiRequest as
|
|
19876
|
+
import { AbstractApiRequest as AbstractApiRequest135 } from "@deliverart/sdk-js-core";
|
|
19070
19877
|
var getIntegrationGlovoDetailsInputSchema = external_exports.undefined();
|
|
19071
19878
|
var getIntegrationGlovoDetailsResponseSchema = integrationGlovoDetailsSchema;
|
|
19072
|
-
var GetIntegrationGlovoDetails = class extends
|
|
19879
|
+
var GetIntegrationGlovoDetails = class extends AbstractApiRequest135 {
|
|
19073
19880
|
constructor(integrationGlovoId) {
|
|
19074
19881
|
super(void 0);
|
|
19075
19882
|
this.method = "GET";
|
|
@@ -19087,14 +19894,14 @@ var GetIntegrationGlovoDetails = class extends AbstractApiRequest131 {
|
|
|
19087
19894
|
};
|
|
19088
19895
|
|
|
19089
19896
|
// src/requests/services/glovo/GetIntegrationGlovoGlobalClientLogRequests.ts
|
|
19090
|
-
import { AbstractApiRequest as
|
|
19897
|
+
import { AbstractApiRequest as AbstractApiRequest136 } from "@deliverart/sdk-js-core";
|
|
19091
19898
|
import { createPaginatedSchema as createPaginatedSchema27 } from "@deliverart/sdk-js-global-types";
|
|
19092
19899
|
var getIntegrationGlovoGlobalClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
19093
19900
|
var getIntegrationGlovoGlobalClientLogRequestsInputSchema = external_exports.undefined();
|
|
19094
19901
|
var getIntegrationGlovoGlobalClientLogRequestsResponseSchema = createPaginatedSchema27(
|
|
19095
19902
|
integrationClientLogRequestSchema
|
|
19096
19903
|
);
|
|
19097
|
-
var GetIntegrationGlovoGlobalClientLogRequests = class extends
|
|
19904
|
+
var GetIntegrationGlovoGlobalClientLogRequests = class extends AbstractApiRequest136 {
|
|
19098
19905
|
constructor(options) {
|
|
19099
19906
|
super(void 0, options);
|
|
19100
19907
|
this.method = "GET";
|
|
@@ -19113,14 +19920,14 @@ var GetIntegrationGlovoGlobalClientLogRequests = class extends AbstractApiReques
|
|
|
19113
19920
|
};
|
|
19114
19921
|
|
|
19115
19922
|
// src/requests/services/glovo/GetIntegrationGlovoList.ts
|
|
19116
|
-
import { AbstractApiRequest as
|
|
19923
|
+
import { AbstractApiRequest as AbstractApiRequest137 } from "@deliverart/sdk-js-core";
|
|
19117
19924
|
import { createPaginatedSchema as createPaginatedSchema28 } from "@deliverart/sdk-js-global-types";
|
|
19118
19925
|
var getIntegrationGlovoListQuerySchema = integrationsGlovoQuerySchema.omit({
|
|
19119
19926
|
service: true
|
|
19120
19927
|
});
|
|
19121
19928
|
var getIntegrationGlovoListInputSchema = external_exports.undefined();
|
|
19122
19929
|
var getIntegrationGlovoListResponseSchema = createPaginatedSchema28(integrationGlovoSchema);
|
|
19123
|
-
var GetIntegrationGlovoList = class extends
|
|
19930
|
+
var GetIntegrationGlovoList = class extends AbstractApiRequest137 {
|
|
19124
19931
|
constructor(options) {
|
|
19125
19932
|
super(void 0, options);
|
|
19126
19933
|
this.method = "GET";
|
|
@@ -19139,10 +19946,10 @@ var GetIntegrationGlovoList = class extends AbstractApiRequest133 {
|
|
|
19139
19946
|
};
|
|
19140
19947
|
|
|
19141
19948
|
// src/requests/services/glovo/GetIntegrationGlovoMenuItemDeltaDetails.ts
|
|
19142
|
-
import { AbstractApiRequest as
|
|
19949
|
+
import { AbstractApiRequest as AbstractApiRequest138 } from "@deliverart/sdk-js-core";
|
|
19143
19950
|
var getIntegrationGlovoMenuItemDeltaDetailsInputSchema = external_exports.undefined();
|
|
19144
19951
|
var getIntegrationGlovoMenuItemDeltaDetailsResponseSchema = integrationGlovoMenuItemDeltaDetailsSchema;
|
|
19145
|
-
var GetIntegrationGlovoMenuItemDeltaDetails = class extends
|
|
19952
|
+
var GetIntegrationGlovoMenuItemDeltaDetails = class extends AbstractApiRequest138 {
|
|
19146
19953
|
constructor(integrationGlovoId, deltaId) {
|
|
19147
19954
|
super(void 0);
|
|
19148
19955
|
this.method = "GET";
|
|
@@ -19161,14 +19968,14 @@ var GetIntegrationGlovoMenuItemDeltaDetails = class extends AbstractApiRequest13
|
|
|
19161
19968
|
};
|
|
19162
19969
|
|
|
19163
19970
|
// src/requests/services/glovo/GetIntegrationGlovoMenuItemDeltas.ts
|
|
19164
|
-
import { AbstractApiRequest as
|
|
19971
|
+
import { AbstractApiRequest as AbstractApiRequest139 } from "@deliverart/sdk-js-core";
|
|
19165
19972
|
import { createPaginatedSchema as createPaginatedSchema29 } from "@deliverart/sdk-js-global-types";
|
|
19166
19973
|
var getIntegrationGlovoMenuItemDeltasQuerySchema = integrationGlovoMenuItemDeltasQuerySchema;
|
|
19167
19974
|
var getIntegrationGlovoMenuItemDeltasInputSchema = external_exports.undefined();
|
|
19168
19975
|
var getIntegrationGlovoMenuItemDeltasResponseSchema = createPaginatedSchema29(
|
|
19169
19976
|
integrationGlovoMenuItemDeltaSchema
|
|
19170
19977
|
);
|
|
19171
|
-
var GetIntegrationGlovoMenuItemDeltas = class extends
|
|
19978
|
+
var GetIntegrationGlovoMenuItemDeltas = class extends AbstractApiRequest139 {
|
|
19172
19979
|
constructor(integrationGlovoId, options) {
|
|
19173
19980
|
super(void 0, options);
|
|
19174
19981
|
this.method = "GET";
|
|
@@ -19188,11 +19995,11 @@ var GetIntegrationGlovoMenuItemDeltas = class extends AbstractApiRequest135 {
|
|
|
19188
19995
|
};
|
|
19189
19996
|
|
|
19190
19997
|
// src/requests/services/glovo/GetIntegrationGlovoMenuValidation.ts
|
|
19191
|
-
import { AbstractApiRequest as
|
|
19998
|
+
import { AbstractApiRequest as AbstractApiRequest140 } from "@deliverart/sdk-js-core";
|
|
19192
19999
|
import { emptyResponseSchema as emptyResponseSchema10 } from "@deliverart/sdk-js-global-types";
|
|
19193
20000
|
var getIntegrationGlovoMenuValidationInputSchema = external_exports.undefined();
|
|
19194
20001
|
var getIntegrationGlovoMenuValidationResponseSchema = emptyResponseSchema10;
|
|
19195
|
-
var GetIntegrationGlovoMenuValidation = class extends
|
|
20002
|
+
var GetIntegrationGlovoMenuValidation = class extends AbstractApiRequest140 {
|
|
19196
20003
|
constructor(integrationGlovoId) {
|
|
19197
20004
|
super(void 0);
|
|
19198
20005
|
this.method = "GET";
|
|
@@ -19210,10 +20017,10 @@ var GetIntegrationGlovoMenuValidation = class extends AbstractApiRequest136 {
|
|
|
19210
20017
|
};
|
|
19211
20018
|
|
|
19212
20019
|
// src/requests/services/glovo/GetIntegrationGlovoMenuUpdateDetails.ts
|
|
19213
|
-
import { AbstractApiRequest as
|
|
20020
|
+
import { AbstractApiRequest as AbstractApiRequest141 } from "@deliverart/sdk-js-core";
|
|
19214
20021
|
var getIntegrationGlovoMenuUpdateDetailsInputSchema = external_exports.undefined();
|
|
19215
20022
|
var getIntegrationGlovoMenuUpdateDetailsResponseSchema = integrationGlovoMenuUpdateDetailsSchema;
|
|
19216
|
-
var GetIntegrationGlovoMenuUpdateDetails = class extends
|
|
20023
|
+
var GetIntegrationGlovoMenuUpdateDetails = class extends AbstractApiRequest141 {
|
|
19217
20024
|
constructor(integrationGlovoId, processId) {
|
|
19218
20025
|
super(void 0);
|
|
19219
20026
|
this.method = "GET";
|
|
@@ -19232,14 +20039,14 @@ var GetIntegrationGlovoMenuUpdateDetails = class extends AbstractApiRequest137 {
|
|
|
19232
20039
|
};
|
|
19233
20040
|
|
|
19234
20041
|
// src/requests/services/glovo/GetIntegrationGlovoMenuUpdates.ts
|
|
19235
|
-
import { AbstractApiRequest as
|
|
20042
|
+
import { AbstractApiRequest as AbstractApiRequest142 } from "@deliverart/sdk-js-core";
|
|
19236
20043
|
import { createPaginatedSchema as createPaginatedSchema30 } from "@deliverart/sdk-js-global-types";
|
|
19237
20044
|
var getIntegrationGlovoMenuUpdatesQuerySchema = integrationGlovoMenuUpdatesQuerySchema;
|
|
19238
20045
|
var getIntegrationGlovoMenuUpdatesInputSchema = external_exports.undefined();
|
|
19239
20046
|
var getIntegrationGlovoMenuUpdatesResponseSchema = createPaginatedSchema30(
|
|
19240
20047
|
integrationGlovoMenuUpdateSchema
|
|
19241
20048
|
);
|
|
19242
|
-
var GetIntegrationGlovoMenuUpdates = class extends
|
|
20049
|
+
var GetIntegrationGlovoMenuUpdates = class extends AbstractApiRequest142 {
|
|
19243
20050
|
constructor(integrationId, options) {
|
|
19244
20051
|
super(void 0, options);
|
|
19245
20052
|
this.method = "GET";
|
|
@@ -19259,10 +20066,10 @@ var GetIntegrationGlovoMenuUpdates = class extends AbstractApiRequest138 {
|
|
|
19259
20066
|
};
|
|
19260
20067
|
|
|
19261
20068
|
// src/requests/services/glovo/GetIntegrationGlovoMenuVersionDetails.ts
|
|
19262
|
-
import { AbstractApiRequest as
|
|
20069
|
+
import { AbstractApiRequest as AbstractApiRequest143 } from "@deliverart/sdk-js-core";
|
|
19263
20070
|
var getIntegrationGlovoMenuVersionDetailsInputSchema = external_exports.undefined();
|
|
19264
20071
|
var getIntegrationGlovoMenuVersionDetailsResponseSchema = menuVersionDetailsSchema;
|
|
19265
|
-
var GetIntegrationGlovoMenuVersionDetails = class extends
|
|
20072
|
+
var GetIntegrationGlovoMenuVersionDetails = class extends AbstractApiRequest143 {
|
|
19266
20073
|
constructor(integrationGlovoId, versionId) {
|
|
19267
20074
|
super(void 0);
|
|
19268
20075
|
this.method = "GET";
|
|
@@ -19281,14 +20088,14 @@ var GetIntegrationGlovoMenuVersionDetails = class extends AbstractApiRequest139
|
|
|
19281
20088
|
};
|
|
19282
20089
|
|
|
19283
20090
|
// src/requests/services/glovo/GetIntegrationGlovoMenuVersions.ts
|
|
19284
|
-
import { AbstractApiRequest as
|
|
20091
|
+
import { AbstractApiRequest as AbstractApiRequest144 } from "@deliverart/sdk-js-core";
|
|
19285
20092
|
import { createPaginatedSchema as createPaginatedSchema31 } from "@deliverart/sdk-js-global-types";
|
|
19286
20093
|
var getIntegrationGlovoMenuVersionsQuerySchema = external_exports.object({
|
|
19287
20094
|
page: external_exports.coerce.number().optional()
|
|
19288
20095
|
});
|
|
19289
20096
|
var getIntegrationGlovoMenuVersionsInputSchema = external_exports.undefined();
|
|
19290
20097
|
var getIntegrationGlovoMenuVersionsResponseSchema = createPaginatedSchema31(menuVersionSchema);
|
|
19291
|
-
var GetIntegrationGlovoMenuVersions = class extends
|
|
20098
|
+
var GetIntegrationGlovoMenuVersions = class extends AbstractApiRequest144 {
|
|
19292
20099
|
constructor(integrationGlovoId, options) {
|
|
19293
20100
|
super(void 0, options);
|
|
19294
20101
|
this.method = "GET";
|
|
@@ -19308,10 +20115,10 @@ var GetIntegrationGlovoMenuVersions = class extends AbstractApiRequest140 {
|
|
|
19308
20115
|
};
|
|
19309
20116
|
|
|
19310
20117
|
// src/requests/services/glovo/GetIntegrationGlovoOrderDetails.ts
|
|
19311
|
-
import { AbstractApiRequest as
|
|
20118
|
+
import { AbstractApiRequest as AbstractApiRequest145 } from "@deliverart/sdk-js-core";
|
|
19312
20119
|
var getIntegrationGlovoOrderDetailsInputSchema = external_exports.undefined();
|
|
19313
20120
|
var getIntegrationGlovoOrderDetailsResponseSchema = integrationGlovoOrderDetailsSchema;
|
|
19314
|
-
var GetIntegrationGlovoOrderDetails = class extends
|
|
20121
|
+
var GetIntegrationGlovoOrderDetails = class extends AbstractApiRequest145 {
|
|
19315
20122
|
constructor(integrationGlovoId, orderId) {
|
|
19316
20123
|
super(void 0);
|
|
19317
20124
|
this.method = "GET";
|
|
@@ -19330,14 +20137,14 @@ var GetIntegrationGlovoOrderDetails = class extends AbstractApiRequest141 {
|
|
|
19330
20137
|
};
|
|
19331
20138
|
|
|
19332
20139
|
// src/requests/services/glovo/GetIntegrationGlovoOrders.ts
|
|
19333
|
-
import { AbstractApiRequest as
|
|
20140
|
+
import { AbstractApiRequest as AbstractApiRequest146 } from "@deliverart/sdk-js-core";
|
|
19334
20141
|
import { createPaginatedSchema as createPaginatedSchema32 } from "@deliverart/sdk-js-global-types";
|
|
19335
20142
|
var getIntegrationGlovoOrdersQuerySchema = integrationGlovoOrdersQuerySchema;
|
|
19336
20143
|
var getIntegrationGlovoOrdersInputSchema = external_exports.undefined();
|
|
19337
20144
|
var getIntegrationGlovoOrdersResponseSchema = createPaginatedSchema32(
|
|
19338
20145
|
integrationGlovoOrderSchema
|
|
19339
20146
|
);
|
|
19340
|
-
var GetIntegrationGlovoOrders = class extends
|
|
20147
|
+
var GetIntegrationGlovoOrders = class extends AbstractApiRequest146 {
|
|
19341
20148
|
constructor(integrationGlovoId, options) {
|
|
19342
20149
|
super(void 0, options);
|
|
19343
20150
|
this.method = "GET";
|
|
@@ -19357,7 +20164,7 @@ var GetIntegrationGlovoOrders = class extends AbstractApiRequest142 {
|
|
|
19357
20164
|
};
|
|
19358
20165
|
|
|
19359
20166
|
// src/requests/services/glovo/GetIntegrationGlovoOrdersFromOrder.ts
|
|
19360
|
-
import { AbstractApiRequest as
|
|
20167
|
+
import { AbstractApiRequest as AbstractApiRequest147 } from "@deliverart/sdk-js-core";
|
|
19361
20168
|
var getIntegrationGlovoOrdersFromOrderQuerySchema = integrationGlovoOrdersQuerySchema.omit(
|
|
19362
20169
|
{
|
|
19363
20170
|
page: true
|
|
@@ -19367,7 +20174,7 @@ var getIntegrationGlovoOrdersFromOrderInputSchema = external_exports.undefined()
|
|
|
19367
20174
|
var getIntegrationGlovoOrdersFromOrderResponseSchema = external_exports.array(
|
|
19368
20175
|
integrationGlovoOrderSchema
|
|
19369
20176
|
);
|
|
19370
|
-
var GetIntegrationGlovoOrdersFromOrder = class extends
|
|
20177
|
+
var GetIntegrationGlovoOrdersFromOrder = class extends AbstractApiRequest147 {
|
|
19371
20178
|
constructor(orderId, options) {
|
|
19372
20179
|
super(void 0, options);
|
|
19373
20180
|
this.method = "GET";
|
|
@@ -19387,10 +20194,10 @@ var GetIntegrationGlovoOrdersFromOrder = class extends AbstractApiRequest143 {
|
|
|
19387
20194
|
};
|
|
19388
20195
|
|
|
19389
20196
|
// src/requests/services/glovo/GetIntegrationGlovoSyncStatus.ts
|
|
19390
|
-
import { AbstractApiRequest as
|
|
20197
|
+
import { AbstractApiRequest as AbstractApiRequest148 } from "@deliverart/sdk-js-core";
|
|
19391
20198
|
var getIntegrationGlovoSyncStatusInputSchema = external_exports.undefined();
|
|
19392
20199
|
var getIntegrationGlovoSyncStatusResponseSchema = integrationGlovoSyncStatusResponseSchema;
|
|
19393
|
-
var GetIntegrationGlovoSyncStatus = class extends
|
|
20200
|
+
var GetIntegrationGlovoSyncStatus = class extends AbstractApiRequest148 {
|
|
19394
20201
|
constructor(integrationGlovoId) {
|
|
19395
20202
|
super(void 0);
|
|
19396
20203
|
this.method = "GET";
|
|
@@ -19408,10 +20215,10 @@ var GetIntegrationGlovoSyncStatus = class extends AbstractApiRequest144 {
|
|
|
19408
20215
|
};
|
|
19409
20216
|
|
|
19410
20217
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEventDetails.ts
|
|
19411
|
-
import { AbstractApiRequest as
|
|
20218
|
+
import { AbstractApiRequest as AbstractApiRequest149 } from "@deliverart/sdk-js-core";
|
|
19412
20219
|
var getIntegrationGlovoWebhookEventDetailsInputSchema = external_exports.undefined();
|
|
19413
20220
|
var getIntegrationGlovoWebhookEventDetailsResponseSchema = integrationGlovoWebhookEventDetailsSchema;
|
|
19414
|
-
var GetIntegrationGlovoWebhookEventDetails = class extends
|
|
20221
|
+
var GetIntegrationGlovoWebhookEventDetails = class extends AbstractApiRequest149 {
|
|
19415
20222
|
constructor(integrationGlovoId, eventId) {
|
|
19416
20223
|
super(void 0);
|
|
19417
20224
|
this.method = "GET";
|
|
@@ -19430,14 +20237,14 @@ var GetIntegrationGlovoWebhookEventDetails = class extends AbstractApiRequest145
|
|
|
19430
20237
|
};
|
|
19431
20238
|
|
|
19432
20239
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEvents.ts
|
|
19433
|
-
import { AbstractApiRequest as
|
|
20240
|
+
import { AbstractApiRequest as AbstractApiRequest150 } from "@deliverart/sdk-js-core";
|
|
19434
20241
|
import { createPaginatedSchema as createPaginatedSchema33 } from "@deliverart/sdk-js-global-types";
|
|
19435
20242
|
var getIntegrationGlovoWebhookEventsQuerySchema = integrationGlovoWebhookEventsQueryParamsSchema;
|
|
19436
20243
|
var getIntegrationGlovoWebhookEventsInputSchema = external_exports.undefined();
|
|
19437
20244
|
var getIntegrationGlovoWebhookEventsResponseSchema = createPaginatedSchema33(
|
|
19438
20245
|
integrationGlovoWebhookEventSchema
|
|
19439
20246
|
);
|
|
19440
|
-
var GetIntegrationGlovoWebhookEvents = class extends
|
|
20247
|
+
var GetIntegrationGlovoWebhookEvents = class extends AbstractApiRequest150 {
|
|
19441
20248
|
constructor(integrationGlovoId, options) {
|
|
19442
20249
|
super(void 0, options);
|
|
19443
20250
|
this.method = "GET";
|
|
@@ -19457,7 +20264,7 @@ var GetIntegrationGlovoWebhookEvents = class extends AbstractApiRequest146 {
|
|
|
19457
20264
|
};
|
|
19458
20265
|
|
|
19459
20266
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEventsFromOrder.ts
|
|
19460
|
-
import { AbstractApiRequest as
|
|
20267
|
+
import { AbstractApiRequest as AbstractApiRequest151 } from "@deliverart/sdk-js-core";
|
|
19461
20268
|
var getIntegrationGlovoWebhookEventsFromOrderQuerySchema = integrationGlovoWebhookEventsQueryParamsSchema.omit({
|
|
19462
20269
|
page: true
|
|
19463
20270
|
});
|
|
@@ -19465,7 +20272,7 @@ var getIntegrationGlovoWebhookEventsFromOrderInputSchema = external_exports.unde
|
|
|
19465
20272
|
var getIntegrationGlovoWebhookEventsFromOrderResponseSchema = external_exports.array(
|
|
19466
20273
|
integrationGlovoWebhookEventSchema
|
|
19467
20274
|
);
|
|
19468
|
-
var GetIntegrationGlovoWebhookEventsFromOrder = class extends
|
|
20275
|
+
var GetIntegrationGlovoWebhookEventsFromOrder = class extends AbstractApiRequest151 {
|
|
19469
20276
|
constructor(orderId, options) {
|
|
19470
20277
|
super(void 0, options);
|
|
19471
20278
|
this.method = "GET";
|
|
@@ -19485,12 +20292,12 @@ var GetIntegrationGlovoWebhookEventsFromOrder = class extends AbstractApiRequest
|
|
|
19485
20292
|
};
|
|
19486
20293
|
|
|
19487
20294
|
// src/requests/services/glovo/IntegrationGlovoSyncMenu.ts
|
|
19488
|
-
import { AbstractApiRequest as
|
|
20295
|
+
import { AbstractApiRequest as AbstractApiRequest152 } from "@deliverart/sdk-js-core";
|
|
19489
20296
|
var integrationGlovoSyncMenuInputSchema = external_exports.undefined();
|
|
19490
20297
|
var integrationGlovoSyncMenuResponseSchema = external_exports.object({
|
|
19491
20298
|
message: external_exports.string()
|
|
19492
20299
|
});
|
|
19493
|
-
var IntegrationGlovoSyncMenu = class extends
|
|
20300
|
+
var IntegrationGlovoSyncMenu = class extends AbstractApiRequest152 {
|
|
19494
20301
|
constructor(integrationGlovoId) {
|
|
19495
20302
|
super(void 0);
|
|
19496
20303
|
this.method = "POST";
|
|
@@ -19508,10 +20315,10 @@ var IntegrationGlovoSyncMenu = class extends AbstractApiRequest148 {
|
|
|
19508
20315
|
};
|
|
19509
20316
|
|
|
19510
20317
|
// src/requests/services/glovo/UpdateIntegrationGlovo.ts
|
|
19511
|
-
import { AbstractApiRequest as
|
|
20318
|
+
import { AbstractApiRequest as AbstractApiRequest153 } from "@deliverart/sdk-js-core";
|
|
19512
20319
|
var updateIntegrationGlovoInputSchema = integrationGlovoEditableFieldsSchema.partial();
|
|
19513
20320
|
var updateIntegrationGlovoResponseSchema = integrationGlovoDetailsSchema;
|
|
19514
|
-
var UpdateIntegrationGlovo = class extends
|
|
20321
|
+
var UpdateIntegrationGlovo = class extends AbstractApiRequest153 {
|
|
19515
20322
|
constructor(integrationGlovoId, input) {
|
|
19516
20323
|
super(input);
|
|
19517
20324
|
this.method = "PATCH";
|
|
@@ -19529,13 +20336,13 @@ var UpdateIntegrationGlovo = class extends AbstractApiRequest149 {
|
|
|
19529
20336
|
};
|
|
19530
20337
|
|
|
19531
20338
|
// src/requests/services/glovo/UpdateIntegrationGlovoStoreStatus.ts
|
|
19532
|
-
import { AbstractApiRequest as
|
|
20339
|
+
import { AbstractApiRequest as AbstractApiRequest154 } from "@deliverart/sdk-js-core";
|
|
19533
20340
|
import { emptyResponseSchema as emptyResponseSchema11 } from "@deliverart/sdk-js-global-types";
|
|
19534
20341
|
var updateIntegrationGlovoStoreStatusInputSchema = external_exports.object({
|
|
19535
20342
|
status: integrationGlovoStoreStatusSchema
|
|
19536
20343
|
});
|
|
19537
20344
|
var updateIntegrationGlovoStoreStatusResponseSchema = emptyResponseSchema11;
|
|
19538
|
-
var UpdateIntegrationGlovoStoreStatus = class extends
|
|
20345
|
+
var UpdateIntegrationGlovoStoreStatus = class extends AbstractApiRequest154 {
|
|
19539
20346
|
constructor(integrationGlovoId, input) {
|
|
19540
20347
|
super(input);
|
|
19541
20348
|
this.method = "POST";
|
|
@@ -19553,13 +20360,13 @@ var UpdateIntegrationGlovoStoreStatus = class extends AbstractApiRequest150 {
|
|
|
19553
20360
|
};
|
|
19554
20361
|
|
|
19555
20362
|
// src/requests/services/justeat/CreateIntegrationJustEat.ts
|
|
19556
|
-
import { AbstractApiRequest as
|
|
20363
|
+
import { AbstractApiRequest as AbstractApiRequest155 } from "@deliverart/sdk-js-core";
|
|
19557
20364
|
import { pointOfSaleIriSchema as pointOfSaleIriSchema9 } from "@deliverart/sdk-js-point-of-sale";
|
|
19558
20365
|
var createIntegrationJustEatInputSchema = integrationJustEatEditableFieldsSchema.extend({
|
|
19559
20366
|
pointOfSale: pointOfSaleIriSchema9
|
|
19560
20367
|
});
|
|
19561
20368
|
var createIntegrationJustEatResponseSchema = integrationJustEatDetailsSchema;
|
|
19562
|
-
var CreateIntegrationJustEat = class extends
|
|
20369
|
+
var CreateIntegrationJustEat = class extends AbstractApiRequest155 {
|
|
19563
20370
|
constructor(input) {
|
|
19564
20371
|
super(input);
|
|
19565
20372
|
this.method = "POST";
|
|
@@ -19576,11 +20383,11 @@ var CreateIntegrationJustEat = class extends AbstractApiRequest151 {
|
|
|
19576
20383
|
};
|
|
19577
20384
|
|
|
19578
20385
|
// src/requests/services/justeat/DeleteIntegrationJustEat.ts
|
|
19579
|
-
import { AbstractApiRequest as
|
|
20386
|
+
import { AbstractApiRequest as AbstractApiRequest156 } from "@deliverart/sdk-js-core";
|
|
19580
20387
|
import { emptyResponseSchema as emptyResponseSchema12 } from "@deliverart/sdk-js-global-types";
|
|
19581
20388
|
var deleteIntegrationJustEatInputSchema = external_exports.undefined();
|
|
19582
20389
|
var deleteIntegrationJustEatResponseSchema = emptyResponseSchema12;
|
|
19583
|
-
var DeleteIntegrationJustEat = class extends
|
|
20390
|
+
var DeleteIntegrationJustEat = class extends AbstractApiRequest156 {
|
|
19584
20391
|
constructor(integrationJustEatId) {
|
|
19585
20392
|
super(void 0);
|
|
19586
20393
|
this.method = "DELETE";
|
|
@@ -19598,10 +20405,10 @@ var DeleteIntegrationJustEat = class extends AbstractApiRequest152 {
|
|
|
19598
20405
|
};
|
|
19599
20406
|
|
|
19600
20407
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequestDetails.ts
|
|
19601
|
-
import { AbstractApiRequest as
|
|
20408
|
+
import { AbstractApiRequest as AbstractApiRequest157 } from "@deliverart/sdk-js-core";
|
|
19602
20409
|
var getIntegrationJustEatClientLogRequestDetailsInputSchema = external_exports.undefined();
|
|
19603
20410
|
var getIntegrationJustEatClientLogRequestDetailsResponseSchema = integrationClientLogRequestDetailsSchema;
|
|
19604
|
-
var GetIntegrationJustEatClientLogRequestDetails = class extends
|
|
20411
|
+
var GetIntegrationJustEatClientLogRequestDetails = class extends AbstractApiRequest157 {
|
|
19605
20412
|
constructor(integrationJustEatId, requestId) {
|
|
19606
20413
|
super(void 0);
|
|
19607
20414
|
this.method = "GET";
|
|
@@ -19620,14 +20427,14 @@ var GetIntegrationJustEatClientLogRequestDetails = class extends AbstractApiRequ
|
|
|
19620
20427
|
};
|
|
19621
20428
|
|
|
19622
20429
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequests.ts
|
|
19623
|
-
import { AbstractApiRequest as
|
|
20430
|
+
import { AbstractApiRequest as AbstractApiRequest158 } from "@deliverart/sdk-js-core";
|
|
19624
20431
|
import { createPaginatedSchema as createPaginatedSchema34 } from "@deliverart/sdk-js-global-types";
|
|
19625
20432
|
var getIntegrationJustEatClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
19626
20433
|
var getIntegrationJustEatClientLogRequestsInputSchema = external_exports.undefined();
|
|
19627
20434
|
var getIntegrationJustEatClientLogRequestsResponseSchema = createPaginatedSchema34(
|
|
19628
20435
|
integrationClientLogRequestSchema
|
|
19629
20436
|
);
|
|
19630
|
-
var GetIntegrationJustEatClientLogRequests = class extends
|
|
20437
|
+
var GetIntegrationJustEatClientLogRequests = class extends AbstractApiRequest158 {
|
|
19631
20438
|
constructor(integrationJustEatId, options) {
|
|
19632
20439
|
super(void 0, options);
|
|
19633
20440
|
this.method = "GET";
|
|
@@ -19647,7 +20454,7 @@ var GetIntegrationJustEatClientLogRequests = class extends AbstractApiRequest154
|
|
|
19647
20454
|
};
|
|
19648
20455
|
|
|
19649
20456
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequestsFromOrder.ts
|
|
19650
|
-
import { AbstractApiRequest as
|
|
20457
|
+
import { AbstractApiRequest as AbstractApiRequest159 } from "@deliverart/sdk-js-core";
|
|
19651
20458
|
var getIntegrationJustEatClientLogRequestsFromOrderQuerySchema = clientLogRequestQuerySchema.omit({
|
|
19652
20459
|
page: true
|
|
19653
20460
|
});
|
|
@@ -19655,7 +20462,7 @@ var getIntegrationJustEatClientLogRequestsFromOrderInputSchema = external_export
|
|
|
19655
20462
|
var getIntegrationJustEatClientLogRequestsFromOrderResponseSchema = external_exports.array(
|
|
19656
20463
|
integrationClientLogRequestSchema
|
|
19657
20464
|
);
|
|
19658
|
-
var GetIntegrationJustEatClientLogRequestsFromOrder = class extends
|
|
20465
|
+
var GetIntegrationJustEatClientLogRequestsFromOrder = class extends AbstractApiRequest159 {
|
|
19659
20466
|
constructor(orderId, options) {
|
|
19660
20467
|
super(void 0, options);
|
|
19661
20468
|
this.method = "GET";
|
|
@@ -19675,10 +20482,10 @@ var GetIntegrationJustEatClientLogRequestsFromOrder = class extends AbstractApiR
|
|
|
19675
20482
|
};
|
|
19676
20483
|
|
|
19677
20484
|
// src/requests/services/justeat/GetIntegrationJustEatDetails.ts
|
|
19678
|
-
import { AbstractApiRequest as
|
|
20485
|
+
import { AbstractApiRequest as AbstractApiRequest160 } from "@deliverart/sdk-js-core";
|
|
19679
20486
|
var getIntegrationJustEatDetailsInputSchema = external_exports.undefined();
|
|
19680
20487
|
var getIntegrationJustEatDetailsResponseSchema = integrationJustEatDetailsSchema;
|
|
19681
|
-
var GetIntegrationJustEatDetails = class extends
|
|
20488
|
+
var GetIntegrationJustEatDetails = class extends AbstractApiRequest160 {
|
|
19682
20489
|
constructor(integrationJustEatId) {
|
|
19683
20490
|
super(void 0);
|
|
19684
20491
|
this.method = "GET";
|
|
@@ -19696,14 +20503,14 @@ var GetIntegrationJustEatDetails = class extends AbstractApiRequest156 {
|
|
|
19696
20503
|
};
|
|
19697
20504
|
|
|
19698
20505
|
// src/requests/services/justeat/GetIntegrationJustEatGlobalClientLogRequests.ts
|
|
19699
|
-
import { AbstractApiRequest as
|
|
20506
|
+
import { AbstractApiRequest as AbstractApiRequest161 } from "@deliverart/sdk-js-core";
|
|
19700
20507
|
import { createPaginatedSchema as createPaginatedSchema35 } from "@deliverart/sdk-js-global-types";
|
|
19701
20508
|
var getIntegrationJustEatGlobalClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
19702
20509
|
var getIntegrationJustEatGlobalClientLogRequestsInputSchema = external_exports.undefined();
|
|
19703
20510
|
var getIntegrationJustEatGlobalClientLogRequestsResponseSchema = createPaginatedSchema35(
|
|
19704
20511
|
integrationClientLogRequestSchema
|
|
19705
20512
|
);
|
|
19706
|
-
var GetIntegrationJustEatGlobalClientLogRequests = class extends
|
|
20513
|
+
var GetIntegrationJustEatGlobalClientLogRequests = class extends AbstractApiRequest161 {
|
|
19707
20514
|
constructor(options) {
|
|
19708
20515
|
super(void 0, options);
|
|
19709
20516
|
this.method = "GET";
|
|
@@ -19722,14 +20529,14 @@ var GetIntegrationJustEatGlobalClientLogRequests = class extends AbstractApiRequ
|
|
|
19722
20529
|
};
|
|
19723
20530
|
|
|
19724
20531
|
// src/requests/services/justeat/GetIntegrationJustEatList.ts
|
|
19725
|
-
import { AbstractApiRequest as
|
|
20532
|
+
import { AbstractApiRequest as AbstractApiRequest162 } from "@deliverart/sdk-js-core";
|
|
19726
20533
|
import { createPaginatedSchema as createPaginatedSchema36 } from "@deliverart/sdk-js-global-types";
|
|
19727
20534
|
var getIntegrationJustEatListQuerySchema = integrationsJustEatQuerySchema.omit({
|
|
19728
20535
|
service: true
|
|
19729
20536
|
});
|
|
19730
20537
|
var getIntegrationJustEatListInputSchema = external_exports.undefined();
|
|
19731
20538
|
var getIntegrationJustEatListResponseSchema = createPaginatedSchema36(integrationJustEatSchema);
|
|
19732
|
-
var GetIntegrationJustEatList = class extends
|
|
20539
|
+
var GetIntegrationJustEatList = class extends AbstractApiRequest162 {
|
|
19733
20540
|
constructor(options) {
|
|
19734
20541
|
super(void 0, options);
|
|
19735
20542
|
this.method = "GET";
|
|
@@ -19747,12 +20554,59 @@ var GetIntegrationJustEatList = class extends AbstractApiRequest158 {
|
|
|
19747
20554
|
}
|
|
19748
20555
|
};
|
|
19749
20556
|
|
|
20557
|
+
// src/requests/services/justeat/GetIntegrationJustEatMenuItemAvailabilityDeltaDetails.ts
|
|
20558
|
+
import { AbstractApiRequest as AbstractApiRequest163 } from "@deliverart/sdk-js-core";
|
|
20559
|
+
var getIntegrationJustEatMenuItemAvailabilityDeltaDetailsInputSchema = external_exports.undefined();
|
|
20560
|
+
var getIntegrationJustEatMenuItemAvailabilityDeltaDetailsResponseSchema = integrationJustEatMenuItemAvailabilityDeltaDetailsSchema;
|
|
20561
|
+
var GetIntegrationJustEatMenuItemAvailabilityDeltaDetails = class extends AbstractApiRequest163 {
|
|
20562
|
+
constructor(integrationJustEatId, deltaId) {
|
|
20563
|
+
super(void 0);
|
|
20564
|
+
this.method = "GET";
|
|
20565
|
+
this.contentType = "application/json";
|
|
20566
|
+
this.accept = "application/json";
|
|
20567
|
+
this.inputSchema = getIntegrationJustEatMenuItemAvailabilityDeltaDetailsInputSchema;
|
|
20568
|
+
this.outputSchema = getIntegrationJustEatMenuItemAvailabilityDeltaDetailsResponseSchema;
|
|
20569
|
+
this.querySchema = void 0;
|
|
20570
|
+
this.headersSchema = void 0;
|
|
20571
|
+
this.integrationJustEatId = integrationJustEatId;
|
|
20572
|
+
this.deltaId = deltaId;
|
|
20573
|
+
}
|
|
20574
|
+
getPath() {
|
|
20575
|
+
return `/integrations/justeat/${this.integrationJustEatId}/menu_item_availability_deltas/${this.deltaId}`;
|
|
20576
|
+
}
|
|
20577
|
+
};
|
|
20578
|
+
|
|
20579
|
+
// src/requests/services/justeat/GetIntegrationJustEatMenuItemAvailabilityDeltas.ts
|
|
20580
|
+
import { AbstractApiRequest as AbstractApiRequest164 } from "@deliverart/sdk-js-core";
|
|
20581
|
+
import { createPaginatedSchema as createPaginatedSchema37 } from "@deliverart/sdk-js-global-types";
|
|
20582
|
+
var getIntegrationJustEatMenuItemAvailabilityDeltasQuerySchema = integrationJustEatMenuItemAvailabilityDeltasQuerySchema;
|
|
20583
|
+
var getIntegrationJustEatMenuItemAvailabilityDeltasInputSchema = external_exports.undefined();
|
|
20584
|
+
var getIntegrationJustEatMenuItemAvailabilityDeltasResponseSchema = createPaginatedSchema37(integrationJustEatMenuItemAvailabilityDeltaSchema);
|
|
20585
|
+
var GetIntegrationJustEatMenuItemAvailabilityDeltas = class extends AbstractApiRequest164 {
|
|
20586
|
+
constructor(integrationJustEatId, options) {
|
|
20587
|
+
super(void 0, options);
|
|
20588
|
+
this.method = "GET";
|
|
20589
|
+
this.contentType = "application/json";
|
|
20590
|
+
this.accept = "application/json";
|
|
20591
|
+
this.inputSchema = getIntegrationJustEatMenuItemAvailabilityDeltasInputSchema;
|
|
20592
|
+
this.outputSchema = getIntegrationJustEatMenuItemAvailabilityDeltasResponseSchema;
|
|
20593
|
+
this.querySchema = getIntegrationJustEatMenuItemAvailabilityDeltasQuerySchema;
|
|
20594
|
+
this.headersSchema = void 0;
|
|
20595
|
+
this.listItemSchema = integrationJustEatMenuItemAvailabilityDeltaSchema;
|
|
20596
|
+
this.paginationDefaultEnabled = true;
|
|
20597
|
+
this.integrationJustEatId = integrationJustEatId;
|
|
20598
|
+
}
|
|
20599
|
+
getPath() {
|
|
20600
|
+
return `/integrations/justeat/${this.integrationJustEatId}/menu_item_availability_deltas`;
|
|
20601
|
+
}
|
|
20602
|
+
};
|
|
20603
|
+
|
|
19750
20604
|
// src/requests/services/justeat/GetIntegrationJustEatMenuValidation.ts
|
|
19751
|
-
import { AbstractApiRequest as
|
|
20605
|
+
import { AbstractApiRequest as AbstractApiRequest165 } from "@deliverart/sdk-js-core";
|
|
19752
20606
|
import { emptyResponseSchema as emptyResponseSchema13 } from "@deliverart/sdk-js-global-types";
|
|
19753
20607
|
var getIntegrationJustEatMenuValidationInputSchema = external_exports.undefined();
|
|
19754
20608
|
var getIntegrationJustEatMenuValidationResponseSchema = emptyResponseSchema13;
|
|
19755
|
-
var GetIntegrationJustEatMenuValidation = class extends
|
|
20609
|
+
var GetIntegrationJustEatMenuValidation = class extends AbstractApiRequest165 {
|
|
19756
20610
|
constructor(integrationJustEatId, type) {
|
|
19757
20611
|
super(void 0);
|
|
19758
20612
|
this.method = "GET";
|
|
@@ -19771,10 +20625,10 @@ var GetIntegrationJustEatMenuValidation = class extends AbstractApiRequest159 {
|
|
|
19771
20625
|
};
|
|
19772
20626
|
|
|
19773
20627
|
// src/requests/services/justeat/GetIntegrationJustEatMenuVersionDetails.ts
|
|
19774
|
-
import { AbstractApiRequest as
|
|
20628
|
+
import { AbstractApiRequest as AbstractApiRequest166 } from "@deliverart/sdk-js-core";
|
|
19775
20629
|
var getIntegrationJustEatMenuVersionDetailsInputSchema = external_exports.undefined();
|
|
19776
20630
|
var getIntegrationJustEatMenuVersionDetailsResponseSchema = menuVersionDetailsSchema;
|
|
19777
|
-
var GetIntegrationJustEatMenuVersionDetails = class extends
|
|
20631
|
+
var GetIntegrationJustEatMenuVersionDetails = class extends AbstractApiRequest166 {
|
|
19778
20632
|
constructor(integrationJustEatId, versionId) {
|
|
19779
20633
|
super(void 0);
|
|
19780
20634
|
this.method = "GET";
|
|
@@ -19793,14 +20647,14 @@ var GetIntegrationJustEatMenuVersionDetails = class extends AbstractApiRequest16
|
|
|
19793
20647
|
};
|
|
19794
20648
|
|
|
19795
20649
|
// src/requests/services/justeat/GetIntegrationJustEatMenuVersions.ts
|
|
19796
|
-
import { AbstractApiRequest as
|
|
19797
|
-
import { createPaginatedSchema as
|
|
20650
|
+
import { AbstractApiRequest as AbstractApiRequest167 } from "@deliverart/sdk-js-core";
|
|
20651
|
+
import { createPaginatedSchema as createPaginatedSchema38 } from "@deliverart/sdk-js-global-types";
|
|
19798
20652
|
var getIntegrationJustEatMenuVersionsQuerySchema = external_exports.object({
|
|
19799
20653
|
page: external_exports.coerce.number().optional()
|
|
19800
20654
|
});
|
|
19801
20655
|
var getIntegrationJustEatMenuVersionsInputSchema = external_exports.undefined();
|
|
19802
|
-
var getIntegrationJustEatMenuVersionsResponseSchema =
|
|
19803
|
-
var GetIntegrationJustEatMenuVersions = class extends
|
|
20656
|
+
var getIntegrationJustEatMenuVersionsResponseSchema = createPaginatedSchema38(menuVersionSchema);
|
|
20657
|
+
var GetIntegrationJustEatMenuVersions = class extends AbstractApiRequest167 {
|
|
19804
20658
|
constructor(integrationJustEatId, options) {
|
|
19805
20659
|
super(void 0, options);
|
|
19806
20660
|
this.method = "GET";
|
|
@@ -19820,10 +20674,10 @@ var GetIntegrationJustEatMenuVersions = class extends AbstractApiRequest161 {
|
|
|
19820
20674
|
};
|
|
19821
20675
|
|
|
19822
20676
|
// src/requests/services/justeat/GetIntegrationJustEatOrderDetails.ts
|
|
19823
|
-
import { AbstractApiRequest as
|
|
20677
|
+
import { AbstractApiRequest as AbstractApiRequest168 } from "@deliverart/sdk-js-core";
|
|
19824
20678
|
var getIntegrationJustEatOrderDetailsInputSchema = external_exports.undefined();
|
|
19825
20679
|
var getIntegrationJustEatOrderDetailsResponseSchema = integrationJustEatOrderDetailsSchema;
|
|
19826
|
-
var GetIntegrationJustEatOrderDetails = class extends
|
|
20680
|
+
var GetIntegrationJustEatOrderDetails = class extends AbstractApiRequest168 {
|
|
19827
20681
|
constructor(integrationJustEatId, orderId) {
|
|
19828
20682
|
super(void 0);
|
|
19829
20683
|
this.method = "GET";
|
|
@@ -19842,14 +20696,14 @@ var GetIntegrationJustEatOrderDetails = class extends AbstractApiRequest162 {
|
|
|
19842
20696
|
};
|
|
19843
20697
|
|
|
19844
20698
|
// src/requests/services/justeat/GetIntegrationJustEatOrders.ts
|
|
19845
|
-
import { AbstractApiRequest as
|
|
19846
|
-
import { createPaginatedSchema as
|
|
20699
|
+
import { AbstractApiRequest as AbstractApiRequest169 } from "@deliverart/sdk-js-core";
|
|
20700
|
+
import { createPaginatedSchema as createPaginatedSchema39 } from "@deliverart/sdk-js-global-types";
|
|
19847
20701
|
var getIntegrationJustEatOrdersQuerySchema = integrationJustEatOrdersQueryParamsSchema;
|
|
19848
20702
|
var getIntegrationJustEatOrdersInputSchema = external_exports.undefined();
|
|
19849
|
-
var getIntegrationJustEatOrdersResponseSchema =
|
|
20703
|
+
var getIntegrationJustEatOrdersResponseSchema = createPaginatedSchema39(
|
|
19850
20704
|
integrationJustEatOrderSchema
|
|
19851
20705
|
);
|
|
19852
|
-
var GetIntegrationJustEatOrders = class extends
|
|
20706
|
+
var GetIntegrationJustEatOrders = class extends AbstractApiRequest169 {
|
|
19853
20707
|
constructor(integrationJustEatId, options) {
|
|
19854
20708
|
super(void 0, options);
|
|
19855
20709
|
this.method = "GET";
|
|
@@ -19869,7 +20723,7 @@ var GetIntegrationJustEatOrders = class extends AbstractApiRequest163 {
|
|
|
19869
20723
|
};
|
|
19870
20724
|
|
|
19871
20725
|
// src/requests/services/justeat/GetIntegrationJustEatOrdersFromOrder.ts
|
|
19872
|
-
import { AbstractApiRequest as
|
|
20726
|
+
import { AbstractApiRequest as AbstractApiRequest170 } from "@deliverart/sdk-js-core";
|
|
19873
20727
|
var getIntegrationJustEatOrdersFromOrderQuerySchema = integrationJustEatOrdersQueryParamsSchema.omit({
|
|
19874
20728
|
page: true
|
|
19875
20729
|
});
|
|
@@ -19877,7 +20731,7 @@ var getIntegrationJustEatOrdersFromOrderInputSchema = external_exports.undefined
|
|
|
19877
20731
|
var getIntegrationJustEatOrdersFromOrderResponseSchema = external_exports.array(
|
|
19878
20732
|
integrationJustEatOrderSchema
|
|
19879
20733
|
);
|
|
19880
|
-
var GetIntegrationJustEatOrdersFromOrder = class extends
|
|
20734
|
+
var GetIntegrationJustEatOrdersFromOrder = class extends AbstractApiRequest170 {
|
|
19881
20735
|
constructor(orderId, options) {
|
|
19882
20736
|
super(void 0, options);
|
|
19883
20737
|
this.method = "GET";
|
|
@@ -19897,10 +20751,10 @@ var GetIntegrationJustEatOrdersFromOrder = class extends AbstractApiRequest164 {
|
|
|
19897
20751
|
};
|
|
19898
20752
|
|
|
19899
20753
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcessDetails.ts
|
|
19900
|
-
import { AbstractApiRequest as
|
|
20754
|
+
import { AbstractApiRequest as AbstractApiRequest171 } from "@deliverart/sdk-js-core";
|
|
19901
20755
|
var getIntegrationJustEatSyncMenuProcessDetailsInputSchema = external_exports.undefined();
|
|
19902
20756
|
var getIntegrationJustEatSyncMenuProcessDetailsResponseSchema = integrationJustEatSyncMenuProcessDetailsSchema;
|
|
19903
|
-
var GetIntegrationJustEatSyncMenuProcessDetails = class extends
|
|
20757
|
+
var GetIntegrationJustEatSyncMenuProcessDetails = class extends AbstractApiRequest171 {
|
|
19904
20758
|
constructor(integrationJustEatId, processId) {
|
|
19905
20759
|
super(void 0);
|
|
19906
20760
|
this.method = "GET";
|
|
@@ -19919,14 +20773,14 @@ var GetIntegrationJustEatSyncMenuProcessDetails = class extends AbstractApiReque
|
|
|
19919
20773
|
};
|
|
19920
20774
|
|
|
19921
20775
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcesses.ts
|
|
19922
|
-
import { AbstractApiRequest as
|
|
19923
|
-
import { createPaginatedSchema as
|
|
20776
|
+
import { AbstractApiRequest as AbstractApiRequest172 } from "@deliverart/sdk-js-core";
|
|
20777
|
+
import { createPaginatedSchema as createPaginatedSchema40 } from "@deliverart/sdk-js-global-types";
|
|
19924
20778
|
var getIntegrationJustEatSyncMenuProcessesQuerySchema = integrationJustEatSyncMenuProcessesQuerySchema;
|
|
19925
20779
|
var getIntegrationJustEatSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
19926
|
-
var getIntegrationJustEatSyncMenuProcessesResponseSchema =
|
|
20780
|
+
var getIntegrationJustEatSyncMenuProcessesResponseSchema = createPaginatedSchema40(
|
|
19927
20781
|
integrationJustEatSyncMenuProcessSchema
|
|
19928
20782
|
);
|
|
19929
|
-
var GetIntegrationJustEatSyncMenuProcesses = class extends
|
|
20783
|
+
var GetIntegrationJustEatSyncMenuProcesses = class extends AbstractApiRequest172 {
|
|
19930
20784
|
constructor(integrationJustEatId, options) {
|
|
19931
20785
|
super(void 0, options);
|
|
19932
20786
|
this.method = "GET";
|
|
@@ -19946,12 +20800,12 @@ var GetIntegrationJustEatSyncMenuProcesses = class extends AbstractApiRequest166
|
|
|
19946
20800
|
};
|
|
19947
20801
|
|
|
19948
20802
|
// src/requests/services/justeat/IntegrationJustEatSyncMenu.ts
|
|
19949
|
-
import { AbstractApiRequest as
|
|
20803
|
+
import { AbstractApiRequest as AbstractApiRequest173 } from "@deliverart/sdk-js-core";
|
|
19950
20804
|
var integrationJustEatSyncMenuInputSchema = external_exports.undefined();
|
|
19951
20805
|
var integrationJustEatSyncMenuResponseSchema = external_exports.object({
|
|
19952
20806
|
message: external_exports.string()
|
|
19953
20807
|
});
|
|
19954
|
-
var IntegrationJustEatSyncMenu = class extends
|
|
20808
|
+
var IntegrationJustEatSyncMenu = class extends AbstractApiRequest173 {
|
|
19955
20809
|
constructor(integrationJustEatId) {
|
|
19956
20810
|
super(void 0);
|
|
19957
20811
|
this.method = "POST";
|
|
@@ -19969,12 +20823,12 @@ var IntegrationJustEatSyncMenu = class extends AbstractApiRequest167 {
|
|
|
19969
20823
|
};
|
|
19970
20824
|
|
|
19971
20825
|
// src/requests/services/justeat/IntegrationJustEatSyncOpeningTimes.ts
|
|
19972
|
-
import { AbstractApiRequest as
|
|
20826
|
+
import { AbstractApiRequest as AbstractApiRequest174 } from "@deliverart/sdk-js-core";
|
|
19973
20827
|
var integrationJustEatSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
19974
20828
|
var integrationJustEatSyncOpeningHoursResponseSchema = external_exports.object({
|
|
19975
20829
|
message: external_exports.string()
|
|
19976
20830
|
});
|
|
19977
|
-
var IntegrationJustEatSyncOpeningTimes = class extends
|
|
20831
|
+
var IntegrationJustEatSyncOpeningTimes = class extends AbstractApiRequest174 {
|
|
19978
20832
|
constructor(integrationJustEatId) {
|
|
19979
20833
|
super(void 0);
|
|
19980
20834
|
this.method = "POST";
|
|
@@ -19992,10 +20846,10 @@ var IntegrationJustEatSyncOpeningTimes = class extends AbstractApiRequest168 {
|
|
|
19992
20846
|
};
|
|
19993
20847
|
|
|
19994
20848
|
// src/requests/services/justeat/UpdateIntegrationJustEat.ts
|
|
19995
|
-
import { AbstractApiRequest as
|
|
20849
|
+
import { AbstractApiRequest as AbstractApiRequest175 } from "@deliverart/sdk-js-core";
|
|
19996
20850
|
var updateIntegrationJustEatInputSchema = integrationJustEatEditableFieldsSchema.partial();
|
|
19997
20851
|
var updateIntegrationJustEatResponseSchema = integrationJustEatDetailsSchema;
|
|
19998
|
-
var UpdateIntegrationJustEat = class extends
|
|
20852
|
+
var UpdateIntegrationJustEat = class extends AbstractApiRequest175 {
|
|
19999
20853
|
constructor(integrationJustEatId, input) {
|
|
20000
20854
|
super(input);
|
|
20001
20855
|
this.method = "PATCH";
|
|
@@ -20013,13 +20867,13 @@ var UpdateIntegrationJustEat = class extends AbstractApiRequest169 {
|
|
|
20013
20867
|
};
|
|
20014
20868
|
|
|
20015
20869
|
// src/requests/services/justeat/UpdateIntegrationJustEatRestaurantStatus.ts
|
|
20016
|
-
import { AbstractApiRequest as
|
|
20870
|
+
import { AbstractApiRequest as AbstractApiRequest176 } from "@deliverart/sdk-js-core";
|
|
20017
20871
|
import { emptyResponseSchema as emptyResponseSchema14 } from "@deliverart/sdk-js-global-types";
|
|
20018
20872
|
var updateIntegrationJustEatRestaurantStatusInputSchema = external_exports.object({
|
|
20019
20873
|
status: integrationJustEatRestaurantStatusSchema
|
|
20020
20874
|
});
|
|
20021
20875
|
var updateIntegrationJustEatRestaurantStatusResponseSchema = emptyResponseSchema14;
|
|
20022
|
-
var UpdateIntegrationJustEatRestaurantStatus = class extends
|
|
20876
|
+
var UpdateIntegrationJustEatRestaurantStatus = class extends AbstractApiRequest176 {
|
|
20023
20877
|
constructor(integrationJustEatId, input) {
|
|
20024
20878
|
super(input);
|
|
20025
20879
|
this.method = "POST";
|
|
@@ -20037,13 +20891,13 @@ var UpdateIntegrationJustEatRestaurantStatus = class extends AbstractApiRequest1
|
|
|
20037
20891
|
};
|
|
20038
20892
|
|
|
20039
20893
|
// src/requests/services/kitchen/CreateIntegrationKitchen.ts
|
|
20040
|
-
import { AbstractApiRequest as
|
|
20894
|
+
import { AbstractApiRequest as AbstractApiRequest177 } from "@deliverart/sdk-js-core";
|
|
20041
20895
|
import { pointOfSaleIriSchema as pointOfSaleIriSchema10 } from "@deliverart/sdk-js-point-of-sale";
|
|
20042
20896
|
var createIntegrationKitchenInputSchema = integrationKitchenEditableFieldsSchema.extend({
|
|
20043
20897
|
pointOfSale: pointOfSaleIriSchema10
|
|
20044
20898
|
});
|
|
20045
20899
|
var createIntegrationKitchenResponseSchema = integrationKitchenDetailsSchema;
|
|
20046
|
-
var CreateIntegrationKitchen = class extends
|
|
20900
|
+
var CreateIntegrationKitchen = class extends AbstractApiRequest177 {
|
|
20047
20901
|
constructor(input) {
|
|
20048
20902
|
super(input);
|
|
20049
20903
|
this.method = "POST";
|
|
@@ -20060,10 +20914,10 @@ var CreateIntegrationKitchen = class extends AbstractApiRequest171 {
|
|
|
20060
20914
|
};
|
|
20061
20915
|
|
|
20062
20916
|
// src/requests/services/kitchen/CreateIntegrationKitchenAccessToken.ts
|
|
20063
|
-
import { AbstractApiRequest as
|
|
20917
|
+
import { AbstractApiRequest as AbstractApiRequest178 } from "@deliverart/sdk-js-core";
|
|
20064
20918
|
var createIntegrationKitchenAccessTokenInputSchema = external_exports.undefined();
|
|
20065
20919
|
var createIntegrationKitchenAccessTokenResponseSchema = integrationKitchenAccessTokenDetailsSchema;
|
|
20066
|
-
var CreateIntegrationKitchenAccessToken = class extends
|
|
20920
|
+
var CreateIntegrationKitchenAccessToken = class extends AbstractApiRequest178 {
|
|
20067
20921
|
constructor(integrationKitchenId) {
|
|
20068
20922
|
super(void 0);
|
|
20069
20923
|
this.method = "POST";
|
|
@@ -20081,11 +20935,11 @@ var CreateIntegrationKitchenAccessToken = class extends AbstractApiRequest172 {
|
|
|
20081
20935
|
};
|
|
20082
20936
|
|
|
20083
20937
|
// src/requests/services/kitchen/DeleteIntegrationKitchen.ts
|
|
20084
|
-
import { AbstractApiRequest as
|
|
20938
|
+
import { AbstractApiRequest as AbstractApiRequest179 } from "@deliverart/sdk-js-core";
|
|
20085
20939
|
import { emptyResponseSchema as emptyResponseSchema15 } from "@deliverart/sdk-js-global-types";
|
|
20086
20940
|
var deleteIntegrationKitchenInputSchema = external_exports.undefined();
|
|
20087
20941
|
var deleteIntegrationKitchenResponseSchema = emptyResponseSchema15;
|
|
20088
|
-
var DeleteIntegrationKitchen = class extends
|
|
20942
|
+
var DeleteIntegrationKitchen = class extends AbstractApiRequest179 {
|
|
20089
20943
|
constructor(integrationKitchenId) {
|
|
20090
20944
|
super(void 0);
|
|
20091
20945
|
this.method = "DELETE";
|
|
@@ -20103,11 +20957,11 @@ var DeleteIntegrationKitchen = class extends AbstractApiRequest173 {
|
|
|
20103
20957
|
};
|
|
20104
20958
|
|
|
20105
20959
|
// src/requests/services/kitchen/DeleteIntegrationKitchenAccessToken.ts
|
|
20106
|
-
import { AbstractApiRequest as
|
|
20960
|
+
import { AbstractApiRequest as AbstractApiRequest180 } from "@deliverart/sdk-js-core";
|
|
20107
20961
|
import { emptyResponseSchema as emptyResponseSchema16 } from "@deliverart/sdk-js-global-types";
|
|
20108
20962
|
var deleteIntegrationKitchenAccessTokenInputSchema = external_exports.undefined();
|
|
20109
20963
|
var deleteIntegrationKitchenAccessTokenResponseSchema = emptyResponseSchema16;
|
|
20110
|
-
var DeleteIntegrationKitchenAccessToken = class extends
|
|
20964
|
+
var DeleteIntegrationKitchenAccessToken = class extends AbstractApiRequest180 {
|
|
20111
20965
|
constructor(integrationKitchenId, integrationKitchenAccessTokenId) {
|
|
20112
20966
|
super(void 0);
|
|
20113
20967
|
this.method = "DELETE";
|
|
@@ -20126,10 +20980,10 @@ var DeleteIntegrationKitchenAccessToken = class extends AbstractApiRequest174 {
|
|
|
20126
20980
|
};
|
|
20127
20981
|
|
|
20128
20982
|
// src/requests/services/kitchen/GetIntegrationKitchenAccessTokenDetails.ts
|
|
20129
|
-
import { AbstractApiRequest as
|
|
20983
|
+
import { AbstractApiRequest as AbstractApiRequest181 } from "@deliverart/sdk-js-core";
|
|
20130
20984
|
var getIntegrationKitchenAccessTokenDetailsInputSchema = external_exports.undefined();
|
|
20131
20985
|
var getIntegrationKitchenAccessTokenDetailsResponseSchema = integrationKitchenAccessTokenDetailsSchema;
|
|
20132
|
-
var GetIntegrationKitchenAccessTokenDetails = class extends
|
|
20986
|
+
var GetIntegrationKitchenAccessTokenDetails = class extends AbstractApiRequest181 {
|
|
20133
20987
|
constructor(integrationKitchenId, requestId) {
|
|
20134
20988
|
super(void 0);
|
|
20135
20989
|
this.method = "GET";
|
|
@@ -20148,14 +21002,14 @@ var GetIntegrationKitchenAccessTokenDetails = class extends AbstractApiRequest17
|
|
|
20148
21002
|
};
|
|
20149
21003
|
|
|
20150
21004
|
// src/requests/services/kitchen/GetIntegrationKitchenAccessTokens.ts
|
|
20151
|
-
import { AbstractApiRequest as
|
|
20152
|
-
import { createPaginatedSchema as
|
|
21005
|
+
import { AbstractApiRequest as AbstractApiRequest182 } from "@deliverart/sdk-js-core";
|
|
21006
|
+
import { createPaginatedSchema as createPaginatedSchema41 } from "@deliverart/sdk-js-global-types";
|
|
20153
21007
|
var getIntegrationKitchenAccessTokensQuerySchema = integrationKitchenAccessTokensQuerySchema;
|
|
20154
21008
|
var getIntegrationKitchenAccessTokensInputSchema = external_exports.undefined();
|
|
20155
|
-
var getIntegrationKitchenAccessTokensResponseSchema =
|
|
21009
|
+
var getIntegrationKitchenAccessTokensResponseSchema = createPaginatedSchema41(
|
|
20156
21010
|
integrationKitchenAccessTokenSchema
|
|
20157
21011
|
);
|
|
20158
|
-
var GetIntegrationKitchenAccessTokens = class extends
|
|
21012
|
+
var GetIntegrationKitchenAccessTokens = class extends AbstractApiRequest182 {
|
|
20159
21013
|
constructor(integrationKitchenId, options) {
|
|
20160
21014
|
super(void 0, options);
|
|
20161
21015
|
this.method = "GET";
|
|
@@ -20175,10 +21029,10 @@ var GetIntegrationKitchenAccessTokens = class extends AbstractApiRequest176 {
|
|
|
20175
21029
|
};
|
|
20176
21030
|
|
|
20177
21031
|
// src/requests/services/kitchen/GetIntegrationKitchenDetails.ts
|
|
20178
|
-
import { AbstractApiRequest as
|
|
21032
|
+
import { AbstractApiRequest as AbstractApiRequest183 } from "@deliverart/sdk-js-core";
|
|
20179
21033
|
var getIntegrationKitchenDetailsInputSchema = external_exports.undefined();
|
|
20180
21034
|
var getIntegrationKitchenDetailsResponseSchema = integrationKitchenDetailsSchema;
|
|
20181
|
-
var GetIntegrationKitchenDetails = class extends
|
|
21035
|
+
var GetIntegrationKitchenDetails = class extends AbstractApiRequest183 {
|
|
20182
21036
|
constructor(integrationKitchenId) {
|
|
20183
21037
|
super(void 0);
|
|
20184
21038
|
this.method = "GET";
|
|
@@ -20196,14 +21050,14 @@ var GetIntegrationKitchenDetails = class extends AbstractApiRequest177 {
|
|
|
20196
21050
|
};
|
|
20197
21051
|
|
|
20198
21052
|
// src/requests/services/kitchen/GetIntegrationKitchenList.ts
|
|
20199
|
-
import { AbstractApiRequest as
|
|
20200
|
-
import { createPaginatedSchema as
|
|
21053
|
+
import { AbstractApiRequest as AbstractApiRequest184 } from "@deliverart/sdk-js-core";
|
|
21054
|
+
import { createPaginatedSchema as createPaginatedSchema42 } from "@deliverart/sdk-js-global-types";
|
|
20201
21055
|
var getIntegrationKitchenListQuerySchema = integrationsKitchenQuerySchema.omit({
|
|
20202
21056
|
service: true
|
|
20203
21057
|
});
|
|
20204
|
-
var getIntegrationKitchenListResponseSchema =
|
|
21058
|
+
var getIntegrationKitchenListResponseSchema = createPaginatedSchema42(integrationKitchenSchema);
|
|
20205
21059
|
var getIntegrationKitchenListInputSchema = external_exports.undefined();
|
|
20206
|
-
var GetIntegrationKitchenList = class extends
|
|
21060
|
+
var GetIntegrationKitchenList = class extends AbstractApiRequest184 {
|
|
20207
21061
|
constructor(options) {
|
|
20208
21062
|
super(void 0, options);
|
|
20209
21063
|
this.method = "GET";
|
|
@@ -20222,10 +21076,10 @@ var GetIntegrationKitchenList = class extends AbstractApiRequest178 {
|
|
|
20222
21076
|
};
|
|
20223
21077
|
|
|
20224
21078
|
// src/requests/services/kitchen/UpdateIntegrationKitchen.ts
|
|
20225
|
-
import { AbstractApiRequest as
|
|
21079
|
+
import { AbstractApiRequest as AbstractApiRequest185 } from "@deliverart/sdk-js-core";
|
|
20226
21080
|
var updateIntegrationKitchenInputSchema = integrationKitchenEditableFieldsSchema.partial();
|
|
20227
21081
|
var updateIntegrationKitchenResponseSchema = integrationKitchenDetailsSchema;
|
|
20228
|
-
var UpdateIntegrationKitchen = class extends
|
|
21082
|
+
var UpdateIntegrationKitchen = class extends AbstractApiRequest185 {
|
|
20229
21083
|
constructor(integrationKitchenId, input) {
|
|
20230
21084
|
super(input);
|
|
20231
21085
|
this.method = "PATCH";
|
|
@@ -20242,11 +21096,1089 @@ var UpdateIntegrationKitchen = class extends AbstractApiRequest179 {
|
|
|
20242
21096
|
}
|
|
20243
21097
|
};
|
|
20244
21098
|
|
|
20245
|
-
// src/requests/
|
|
20246
|
-
import { AbstractApiRequest as
|
|
21099
|
+
// src/requests/services/tilby/index.ts
|
|
21100
|
+
import { AbstractApiRequest as AbstractApiRequest186 } from "@deliverart/sdk-js-core";
|
|
21101
|
+
import { createPaginatedSchema as createPaginatedSchema43, emptyResponseSchema as emptyResponseSchema17 } from "@deliverart/sdk-js-global-types";
|
|
21102
|
+
import { pointOfSaleIriSchema as pointOfSaleIriSchema11 } from "@deliverart/sdk-js-point-of-sale";
|
|
21103
|
+
var createIntegrationTilbyInputSchema = integrationTilbyEditableFieldsSchema.extend({
|
|
21104
|
+
pointOfSale: pointOfSaleIriSchema11
|
|
21105
|
+
});
|
|
21106
|
+
var createIntegrationTilbyResponseSchema = integrationTilbyDetailsSchema;
|
|
21107
|
+
var CreateIntegrationTilby = class extends AbstractApiRequest186 {
|
|
21108
|
+
constructor(input) {
|
|
21109
|
+
super(input);
|
|
21110
|
+
this.method = "POST";
|
|
21111
|
+
this.contentType = "application/json";
|
|
21112
|
+
this.accept = "application/json";
|
|
21113
|
+
this.inputSchema = createIntegrationTilbyInputSchema;
|
|
21114
|
+
this.outputSchema = createIntegrationTilbyResponseSchema;
|
|
21115
|
+
this.querySchema = void 0;
|
|
21116
|
+
this.headersSchema = void 0;
|
|
21117
|
+
}
|
|
21118
|
+
getPath() {
|
|
21119
|
+
return "/integrations/tilby";
|
|
21120
|
+
}
|
|
21121
|
+
};
|
|
21122
|
+
var updateIntegrationTilbyInputSchema = integrationTilbyEditableFieldsSchema.partial();
|
|
21123
|
+
var updateIntegrationTilbyResponseSchema = integrationTilbyDetailsSchema;
|
|
21124
|
+
var UpdateIntegrationTilby = class extends AbstractApiRequest186 {
|
|
21125
|
+
constructor(integrationTilbyId, input) {
|
|
21126
|
+
super(input);
|
|
21127
|
+
this.method = "PATCH";
|
|
21128
|
+
this.contentType = "application/merge-patch+json";
|
|
21129
|
+
this.accept = "application/json";
|
|
21130
|
+
this.inputSchema = updateIntegrationTilbyInputSchema;
|
|
21131
|
+
this.outputSchema = updateIntegrationTilbyResponseSchema;
|
|
21132
|
+
this.querySchema = void 0;
|
|
21133
|
+
this.headersSchema = void 0;
|
|
21134
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21135
|
+
}
|
|
21136
|
+
getPath() {
|
|
21137
|
+
return `/integrations/tilby/${this.integrationTilbyId}`;
|
|
21138
|
+
}
|
|
21139
|
+
};
|
|
21140
|
+
var deleteIntegrationTilbyInputSchema = external_exports.undefined();
|
|
21141
|
+
var deleteIntegrationTilbyResponseSchema = emptyResponseSchema17;
|
|
21142
|
+
var DeleteIntegrationTilby = class extends AbstractApiRequest186 {
|
|
21143
|
+
constructor(integrationTilbyId) {
|
|
21144
|
+
super(void 0);
|
|
21145
|
+
this.method = "DELETE";
|
|
21146
|
+
this.contentType = "application/json";
|
|
21147
|
+
this.accept = "application/json";
|
|
21148
|
+
this.inputSchema = deleteIntegrationTilbyInputSchema;
|
|
21149
|
+
this.outputSchema = deleteIntegrationTilbyResponseSchema;
|
|
21150
|
+
this.querySchema = void 0;
|
|
21151
|
+
this.headersSchema = void 0;
|
|
21152
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21153
|
+
}
|
|
21154
|
+
getPath() {
|
|
21155
|
+
return `/integrations/tilby/${this.integrationTilbyId}`;
|
|
21156
|
+
}
|
|
21157
|
+
};
|
|
21158
|
+
var getIntegrationTilbyDetailsInputSchema = external_exports.undefined();
|
|
21159
|
+
var getIntegrationTilbyDetailsResponseSchema = integrationTilbyDetailsSchema;
|
|
21160
|
+
var GetIntegrationTilbyDetails = class extends AbstractApiRequest186 {
|
|
21161
|
+
constructor(integrationTilbyId) {
|
|
21162
|
+
super(void 0);
|
|
21163
|
+
this.method = "GET";
|
|
21164
|
+
this.contentType = "application/json";
|
|
21165
|
+
this.accept = "application/json";
|
|
21166
|
+
this.inputSchema = getIntegrationTilbyDetailsInputSchema;
|
|
21167
|
+
this.outputSchema = getIntegrationTilbyDetailsResponseSchema;
|
|
21168
|
+
this.querySchema = void 0;
|
|
21169
|
+
this.headersSchema = void 0;
|
|
21170
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21171
|
+
}
|
|
21172
|
+
getPath() {
|
|
21173
|
+
return `/integrations/tilby/${this.integrationTilbyId}`;
|
|
21174
|
+
}
|
|
21175
|
+
};
|
|
21176
|
+
var getIntegrationTilbyListQuerySchema = integrationsTilbyQuerySchema.omit({
|
|
21177
|
+
service: true
|
|
21178
|
+
});
|
|
21179
|
+
var getIntegrationTilbyListInputSchema = external_exports.undefined();
|
|
21180
|
+
var getIntegrationTilbyListResponseSchema = createPaginatedSchema43(integrationTilbySchema);
|
|
21181
|
+
var GetIntegrationTilbyList = class extends AbstractApiRequest186 {
|
|
21182
|
+
constructor(options) {
|
|
21183
|
+
super(void 0, options);
|
|
21184
|
+
this.method = "GET";
|
|
21185
|
+
this.contentType = "application/json";
|
|
21186
|
+
this.accept = "application/json";
|
|
21187
|
+
this.inputSchema = getIntegrationTilbyListInputSchema;
|
|
21188
|
+
this.outputSchema = getIntegrationTilbyListResponseSchema;
|
|
21189
|
+
this.querySchema = getIntegrationTilbyListQuerySchema;
|
|
21190
|
+
this.headersSchema = void 0;
|
|
21191
|
+
this.listItemSchema = integrationTilbySchema;
|
|
21192
|
+
this.paginationDefaultEnabled = true;
|
|
21193
|
+
}
|
|
21194
|
+
getPath() {
|
|
21195
|
+
return "/integrations/tilby";
|
|
21196
|
+
}
|
|
21197
|
+
};
|
|
21198
|
+
var integrationTilbySyncInputSchema = external_exports.object({
|
|
21199
|
+
direction: integrationTilbySyncDirectionSchema,
|
|
21200
|
+
mode: integrationTilbySyncModeSchema
|
|
21201
|
+
});
|
|
21202
|
+
var integrationTilbyInboundOnlySyncInputSchema = integrationTilbySyncInputSchema.extend({
|
|
21203
|
+
direction: external_exports.literal("inbound")
|
|
21204
|
+
});
|
|
21205
|
+
var integrationTilbySyncResponseSchema = integrationAsyncMessageResponseSchema;
|
|
21206
|
+
var IntegrationTilbySyncFiscalMappings = class extends AbstractApiRequest186 {
|
|
21207
|
+
constructor(integrationTilbyId, input) {
|
|
21208
|
+
super(input);
|
|
21209
|
+
this.method = "POST";
|
|
21210
|
+
this.contentType = "application/json";
|
|
21211
|
+
this.accept = "application/json";
|
|
21212
|
+
this.inputSchema = integrationTilbyInboundOnlySyncInputSchema;
|
|
21213
|
+
this.outputSchema = integrationTilbySyncResponseSchema;
|
|
21214
|
+
this.querySchema = void 0;
|
|
21215
|
+
this.headersSchema = void 0;
|
|
21216
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21217
|
+
}
|
|
21218
|
+
getPath() {
|
|
21219
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync/fiscal_mappings`;
|
|
21220
|
+
}
|
|
21221
|
+
};
|
|
21222
|
+
var IntegrationTilbySyncCustomers = class extends AbstractApiRequest186 {
|
|
21223
|
+
constructor(integrationTilbyId, input) {
|
|
21224
|
+
super(input);
|
|
21225
|
+
this.method = "POST";
|
|
21226
|
+
this.contentType = "application/json";
|
|
21227
|
+
this.accept = "application/json";
|
|
21228
|
+
this.inputSchema = integrationTilbySyncInputSchema;
|
|
21229
|
+
this.outputSchema = integrationTilbySyncResponseSchema;
|
|
21230
|
+
this.querySchema = void 0;
|
|
21231
|
+
this.headersSchema = void 0;
|
|
21232
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21233
|
+
}
|
|
21234
|
+
getPath() {
|
|
21235
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync/customers`;
|
|
21236
|
+
}
|
|
21237
|
+
};
|
|
21238
|
+
var IntegrationTilbySyncMenu = class extends AbstractApiRequest186 {
|
|
21239
|
+
constructor(integrationTilbyId, input) {
|
|
21240
|
+
super(input);
|
|
21241
|
+
this.method = "POST";
|
|
21242
|
+
this.contentType = "application/json";
|
|
21243
|
+
this.accept = "application/json";
|
|
21244
|
+
this.inputSchema = integrationTilbySyncInputSchema;
|
|
21245
|
+
this.outputSchema = integrationTilbySyncResponseSchema;
|
|
21246
|
+
this.querySchema = void 0;
|
|
21247
|
+
this.headersSchema = void 0;
|
|
21248
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21249
|
+
}
|
|
21250
|
+
getPath() {
|
|
21251
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync/menu`;
|
|
21252
|
+
}
|
|
21253
|
+
};
|
|
21254
|
+
var IntegrationTilbySyncOrders = class extends AbstractApiRequest186 {
|
|
21255
|
+
constructor(integrationTilbyId, input) {
|
|
21256
|
+
super(input);
|
|
21257
|
+
this.method = "POST";
|
|
21258
|
+
this.contentType = "application/json";
|
|
21259
|
+
this.accept = "application/json";
|
|
21260
|
+
this.inputSchema = integrationTilbySyncInputSchema;
|
|
21261
|
+
this.outputSchema = integrationTilbySyncResponseSchema;
|
|
21262
|
+
this.querySchema = void 0;
|
|
21263
|
+
this.headersSchema = void 0;
|
|
21264
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21265
|
+
}
|
|
21266
|
+
getPath() {
|
|
21267
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync/orders`;
|
|
21268
|
+
}
|
|
21269
|
+
};
|
|
21270
|
+
var getIntegrationTilbyDepartmentMappingsQuerySchema = integrationTilbyDepartmentMappingsQuerySchema;
|
|
21271
|
+
var getIntegrationTilbyDepartmentMappingsInputSchema = external_exports.undefined();
|
|
21272
|
+
var getIntegrationTilbyDepartmentMappingsResponseSchema = external_exports.array(
|
|
21273
|
+
integrationTilbyDepartmentMappingSchema
|
|
21274
|
+
);
|
|
21275
|
+
var GetIntegrationTilbyDepartmentMappings = class extends AbstractApiRequest186 {
|
|
21276
|
+
constructor(integrationTilbyId, options) {
|
|
21277
|
+
super(void 0, options);
|
|
21278
|
+
this.method = "GET";
|
|
21279
|
+
this.contentType = "application/json";
|
|
21280
|
+
this.accept = "application/json";
|
|
21281
|
+
this.inputSchema = getIntegrationTilbyDepartmentMappingsInputSchema;
|
|
21282
|
+
this.outputSchema = getIntegrationTilbyDepartmentMappingsResponseSchema;
|
|
21283
|
+
this.querySchema = getIntegrationTilbyDepartmentMappingsQuerySchema;
|
|
21284
|
+
this.headersSchema = void 0;
|
|
21285
|
+
this.listItemSchema = integrationTilbyDepartmentMappingSchema;
|
|
21286
|
+
this.paginationDefaultEnabled = false;
|
|
21287
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21288
|
+
}
|
|
21289
|
+
getPath() {
|
|
21290
|
+
return `/integrations/tilby/${this.integrationTilbyId}/department_mappings`;
|
|
21291
|
+
}
|
|
21292
|
+
};
|
|
21293
|
+
var getIntegrationTilbyDepartmentMappingDetailsInputSchema = external_exports.undefined();
|
|
21294
|
+
var getIntegrationTilbyDepartmentMappingDetailsResponseSchema = integrationTilbyDepartmentMappingDetailsSchema;
|
|
21295
|
+
var GetIntegrationTilbyDepartmentMappingDetails = class extends AbstractApiRequest186 {
|
|
21296
|
+
constructor(integrationTilbyId, mappingId) {
|
|
21297
|
+
super(void 0);
|
|
21298
|
+
this.method = "GET";
|
|
21299
|
+
this.contentType = "application/json";
|
|
21300
|
+
this.accept = "application/json";
|
|
21301
|
+
this.inputSchema = getIntegrationTilbyDepartmentMappingDetailsInputSchema;
|
|
21302
|
+
this.outputSchema = getIntegrationTilbyDepartmentMappingDetailsResponseSchema;
|
|
21303
|
+
this.querySchema = void 0;
|
|
21304
|
+
this.headersSchema = void 0;
|
|
21305
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21306
|
+
this.mappingId = mappingId;
|
|
21307
|
+
}
|
|
21308
|
+
getPath() {
|
|
21309
|
+
return `/integrations/tilby/${this.integrationTilbyId}/department_mappings/${this.mappingId}`;
|
|
21310
|
+
}
|
|
21311
|
+
};
|
|
21312
|
+
var updateIntegrationTilbyDepartmentMappingInputSchema = integrationTilbyDepartmentMappingEditableFieldsSchema;
|
|
21313
|
+
var updateIntegrationTilbyDepartmentMappingResponseSchema = integrationTilbyDepartmentMappingSchema;
|
|
21314
|
+
var UpdateIntegrationTilbyDepartmentMapping = class extends AbstractApiRequest186 {
|
|
21315
|
+
constructor(integrationTilbyId, mappingId, input) {
|
|
21316
|
+
super(input);
|
|
21317
|
+
this.method = "PATCH";
|
|
21318
|
+
this.contentType = "application/merge-patch+json";
|
|
21319
|
+
this.accept = "application/json";
|
|
21320
|
+
this.inputSchema = updateIntegrationTilbyDepartmentMappingInputSchema;
|
|
21321
|
+
this.outputSchema = updateIntegrationTilbyDepartmentMappingResponseSchema;
|
|
21322
|
+
this.querySchema = void 0;
|
|
21323
|
+
this.headersSchema = void 0;
|
|
21324
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21325
|
+
this.mappingId = mappingId;
|
|
21326
|
+
}
|
|
21327
|
+
getPath() {
|
|
21328
|
+
return `/integrations/tilby/${this.integrationTilbyId}/department_mappings/${this.mappingId}`;
|
|
21329
|
+
}
|
|
21330
|
+
};
|
|
21331
|
+
var getIntegrationTilbyVatMappingsQuerySchema = integrationTilbyVatMappingsQuerySchema;
|
|
21332
|
+
var getIntegrationTilbyVatMappingsInputSchema = external_exports.undefined();
|
|
21333
|
+
var getIntegrationTilbyVatMappingsResponseSchema = external_exports.array(
|
|
21334
|
+
integrationTilbyVatMappingSchema
|
|
21335
|
+
);
|
|
21336
|
+
var GetIntegrationTilbyVatMappings = class extends AbstractApiRequest186 {
|
|
21337
|
+
constructor(integrationTilbyId, options) {
|
|
21338
|
+
super(void 0, options);
|
|
21339
|
+
this.method = "GET";
|
|
21340
|
+
this.contentType = "application/json";
|
|
21341
|
+
this.accept = "application/json";
|
|
21342
|
+
this.inputSchema = getIntegrationTilbyVatMappingsInputSchema;
|
|
21343
|
+
this.outputSchema = getIntegrationTilbyVatMappingsResponseSchema;
|
|
21344
|
+
this.querySchema = getIntegrationTilbyVatMappingsQuerySchema;
|
|
21345
|
+
this.headersSchema = void 0;
|
|
21346
|
+
this.listItemSchema = integrationTilbyVatMappingSchema;
|
|
21347
|
+
this.paginationDefaultEnabled = false;
|
|
21348
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21349
|
+
}
|
|
21350
|
+
getPath() {
|
|
21351
|
+
return `/integrations/tilby/${this.integrationTilbyId}/vat_mappings`;
|
|
21352
|
+
}
|
|
21353
|
+
};
|
|
21354
|
+
var getIntegrationTilbyVatMappingDetailsInputSchema = external_exports.undefined();
|
|
21355
|
+
var getIntegrationTilbyVatMappingDetailsResponseSchema = integrationTilbyVatMappingDetailsSchema;
|
|
21356
|
+
var GetIntegrationTilbyVatMappingDetails = class extends AbstractApiRequest186 {
|
|
21357
|
+
constructor(integrationTilbyId, mappingId) {
|
|
21358
|
+
super(void 0);
|
|
21359
|
+
this.method = "GET";
|
|
21360
|
+
this.contentType = "application/json";
|
|
21361
|
+
this.accept = "application/json";
|
|
21362
|
+
this.inputSchema = getIntegrationTilbyVatMappingDetailsInputSchema;
|
|
21363
|
+
this.outputSchema = getIntegrationTilbyVatMappingDetailsResponseSchema;
|
|
21364
|
+
this.querySchema = void 0;
|
|
21365
|
+
this.headersSchema = void 0;
|
|
21366
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21367
|
+
this.mappingId = mappingId;
|
|
21368
|
+
}
|
|
21369
|
+
getPath() {
|
|
21370
|
+
return `/integrations/tilby/${this.integrationTilbyId}/vat_mappings/${this.mappingId}`;
|
|
21371
|
+
}
|
|
21372
|
+
};
|
|
21373
|
+
var updateIntegrationTilbyVatMappingInputSchema = integrationTilbyVatMappingEditableFieldsSchema;
|
|
21374
|
+
var updateIntegrationTilbyVatMappingResponseSchema = integrationTilbyVatMappingSchema;
|
|
21375
|
+
var UpdateIntegrationTilbyVatMapping = class extends AbstractApiRequest186 {
|
|
21376
|
+
constructor(integrationTilbyId, mappingId, input) {
|
|
21377
|
+
super(input);
|
|
21378
|
+
this.method = "PATCH";
|
|
21379
|
+
this.contentType = "application/merge-patch+json";
|
|
21380
|
+
this.accept = "application/json";
|
|
21381
|
+
this.inputSchema = updateIntegrationTilbyVatMappingInputSchema;
|
|
21382
|
+
this.outputSchema = updateIntegrationTilbyVatMappingResponseSchema;
|
|
21383
|
+
this.querySchema = void 0;
|
|
21384
|
+
this.headersSchema = void 0;
|
|
21385
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21386
|
+
this.mappingId = mappingId;
|
|
21387
|
+
}
|
|
21388
|
+
getPath() {
|
|
21389
|
+
return `/integrations/tilby/${this.integrationTilbyId}/vat_mappings/${this.mappingId}`;
|
|
21390
|
+
}
|
|
21391
|
+
};
|
|
21392
|
+
var getIntegrationTilbyCategoryMappingsQuerySchema = integrationTilbyCategoryMappingsQuerySchema;
|
|
21393
|
+
var getIntegrationTilbyCategoryMappingsInputSchema = external_exports.undefined();
|
|
21394
|
+
var getIntegrationTilbyCategoryMappingsResponseSchema = external_exports.array(
|
|
21395
|
+
integrationTilbyCategoryMappingSchema
|
|
21396
|
+
);
|
|
21397
|
+
var GetIntegrationTilbyCategoryMappings = class extends AbstractApiRequest186 {
|
|
21398
|
+
constructor(integrationTilbyId, options) {
|
|
21399
|
+
super(void 0, options);
|
|
21400
|
+
this.method = "GET";
|
|
21401
|
+
this.contentType = "application/json";
|
|
21402
|
+
this.accept = "application/json";
|
|
21403
|
+
this.inputSchema = getIntegrationTilbyCategoryMappingsInputSchema;
|
|
21404
|
+
this.outputSchema = getIntegrationTilbyCategoryMappingsResponseSchema;
|
|
21405
|
+
this.querySchema = getIntegrationTilbyCategoryMappingsQuerySchema;
|
|
21406
|
+
this.headersSchema = void 0;
|
|
21407
|
+
this.listItemSchema = integrationTilbyCategoryMappingSchema;
|
|
21408
|
+
this.paginationDefaultEnabled = false;
|
|
21409
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21410
|
+
}
|
|
21411
|
+
getPath() {
|
|
21412
|
+
return `/integrations/tilby/${this.integrationTilbyId}/category_mappings`;
|
|
21413
|
+
}
|
|
21414
|
+
};
|
|
21415
|
+
var getIntegrationTilbyCategoryMappingDetailsInputSchema = external_exports.undefined();
|
|
21416
|
+
var getIntegrationTilbyCategoryMappingDetailsResponseSchema = integrationTilbyCategoryMappingDetailsSchema;
|
|
21417
|
+
var GetIntegrationTilbyCategoryMappingDetails = class extends AbstractApiRequest186 {
|
|
21418
|
+
constructor(integrationTilbyId, mappingId) {
|
|
21419
|
+
super(void 0);
|
|
21420
|
+
this.method = "GET";
|
|
21421
|
+
this.contentType = "application/json";
|
|
21422
|
+
this.accept = "application/json";
|
|
21423
|
+
this.inputSchema = getIntegrationTilbyCategoryMappingDetailsInputSchema;
|
|
21424
|
+
this.outputSchema = getIntegrationTilbyCategoryMappingDetailsResponseSchema;
|
|
21425
|
+
this.querySchema = void 0;
|
|
21426
|
+
this.headersSchema = void 0;
|
|
21427
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21428
|
+
this.mappingId = mappingId;
|
|
21429
|
+
}
|
|
21430
|
+
getPath() {
|
|
21431
|
+
return `/integrations/tilby/${this.integrationTilbyId}/category_mappings/${this.mappingId}`;
|
|
21432
|
+
}
|
|
21433
|
+
};
|
|
21434
|
+
var updateIntegrationTilbyCategoryMappingInputSchema = integrationTilbyCategoryMappingEditableFieldsSchema;
|
|
21435
|
+
var updateIntegrationTilbyCategoryMappingResponseSchema = integrationTilbyCategoryMappingSchema;
|
|
21436
|
+
var UpdateIntegrationTilbyCategoryMapping = class extends AbstractApiRequest186 {
|
|
21437
|
+
constructor(integrationTilbyId, mappingId, input) {
|
|
21438
|
+
super(input);
|
|
21439
|
+
this.method = "PATCH";
|
|
21440
|
+
this.contentType = "application/merge-patch+json";
|
|
21441
|
+
this.accept = "application/json";
|
|
21442
|
+
this.inputSchema = updateIntegrationTilbyCategoryMappingInputSchema;
|
|
21443
|
+
this.outputSchema = updateIntegrationTilbyCategoryMappingResponseSchema;
|
|
21444
|
+
this.querySchema = void 0;
|
|
21445
|
+
this.headersSchema = void 0;
|
|
21446
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21447
|
+
this.mappingId = mappingId;
|
|
21448
|
+
}
|
|
21449
|
+
getPath() {
|
|
21450
|
+
return `/integrations/tilby/${this.integrationTilbyId}/category_mappings/${this.mappingId}`;
|
|
21451
|
+
}
|
|
21452
|
+
};
|
|
21453
|
+
var getIntegrationTilbyComponentMappingsQuerySchema = integrationTilbyComponentMappingsQuerySchema;
|
|
21454
|
+
var getIntegrationTilbyComponentMappingsInputSchema = external_exports.undefined();
|
|
21455
|
+
var getIntegrationTilbyComponentMappingsResponseSchema = external_exports.array(
|
|
21456
|
+
integrationTilbyComponentMappingSchema
|
|
21457
|
+
);
|
|
21458
|
+
var GetIntegrationTilbyComponentMappings = class extends AbstractApiRequest186 {
|
|
21459
|
+
constructor(integrationTilbyId, options) {
|
|
21460
|
+
super(void 0, options);
|
|
21461
|
+
this.method = "GET";
|
|
21462
|
+
this.contentType = "application/json";
|
|
21463
|
+
this.accept = "application/json";
|
|
21464
|
+
this.inputSchema = getIntegrationTilbyComponentMappingsInputSchema;
|
|
21465
|
+
this.outputSchema = getIntegrationTilbyComponentMappingsResponseSchema;
|
|
21466
|
+
this.querySchema = getIntegrationTilbyComponentMappingsQuerySchema;
|
|
21467
|
+
this.headersSchema = void 0;
|
|
21468
|
+
this.listItemSchema = integrationTilbyComponentMappingSchema;
|
|
21469
|
+
this.paginationDefaultEnabled = false;
|
|
21470
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21471
|
+
}
|
|
21472
|
+
getPath() {
|
|
21473
|
+
return `/integrations/tilby/${this.integrationTilbyId}/component_mappings`;
|
|
21474
|
+
}
|
|
21475
|
+
};
|
|
21476
|
+
var getIntegrationTilbyComponentMappingDetailsInputSchema = external_exports.undefined();
|
|
21477
|
+
var getIntegrationTilbyComponentMappingDetailsResponseSchema = integrationTilbyComponentMappingDetailsSchema;
|
|
21478
|
+
var GetIntegrationTilbyComponentMappingDetails = class extends AbstractApiRequest186 {
|
|
21479
|
+
constructor(integrationTilbyId, mappingId) {
|
|
21480
|
+
super(void 0);
|
|
21481
|
+
this.method = "GET";
|
|
21482
|
+
this.contentType = "application/json";
|
|
21483
|
+
this.accept = "application/json";
|
|
21484
|
+
this.inputSchema = getIntegrationTilbyComponentMappingDetailsInputSchema;
|
|
21485
|
+
this.outputSchema = getIntegrationTilbyComponentMappingDetailsResponseSchema;
|
|
21486
|
+
this.querySchema = void 0;
|
|
21487
|
+
this.headersSchema = void 0;
|
|
21488
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21489
|
+
this.mappingId = mappingId;
|
|
21490
|
+
}
|
|
21491
|
+
getPath() {
|
|
21492
|
+
return `/integrations/tilby/${this.integrationTilbyId}/component_mappings/${this.mappingId}`;
|
|
21493
|
+
}
|
|
21494
|
+
};
|
|
21495
|
+
var updateIntegrationTilbyComponentMappingInputSchema = integrationTilbyComponentMappingEditableFieldsSchema;
|
|
21496
|
+
var updateIntegrationTilbyComponentMappingResponseSchema = integrationTilbyComponentMappingSchema;
|
|
21497
|
+
var UpdateIntegrationTilbyComponentMapping = class extends AbstractApiRequest186 {
|
|
21498
|
+
constructor(integrationTilbyId, mappingId, input) {
|
|
21499
|
+
super(input);
|
|
21500
|
+
this.method = "PATCH";
|
|
21501
|
+
this.contentType = "application/merge-patch+json";
|
|
21502
|
+
this.accept = "application/json";
|
|
21503
|
+
this.inputSchema = updateIntegrationTilbyComponentMappingInputSchema;
|
|
21504
|
+
this.outputSchema = updateIntegrationTilbyComponentMappingResponseSchema;
|
|
21505
|
+
this.querySchema = void 0;
|
|
21506
|
+
this.headersSchema = void 0;
|
|
21507
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21508
|
+
this.mappingId = mappingId;
|
|
21509
|
+
}
|
|
21510
|
+
getPath() {
|
|
21511
|
+
return `/integrations/tilby/${this.integrationTilbyId}/component_mappings/${this.mappingId}`;
|
|
21512
|
+
}
|
|
21513
|
+
};
|
|
21514
|
+
var getIntegrationTilbyProductMappingsQuerySchema = integrationTilbyProductMappingsQuerySchema;
|
|
21515
|
+
var getIntegrationTilbyProductMappingsInputSchema = external_exports.undefined();
|
|
21516
|
+
var getIntegrationTilbyProductMappingsResponseSchema = external_exports.array(
|
|
21517
|
+
integrationTilbyProductMappingSchema
|
|
21518
|
+
);
|
|
21519
|
+
var GetIntegrationTilbyProductMappings = class extends AbstractApiRequest186 {
|
|
21520
|
+
constructor(integrationTilbyId, options) {
|
|
21521
|
+
super(void 0, options);
|
|
21522
|
+
this.method = "GET";
|
|
21523
|
+
this.contentType = "application/json";
|
|
21524
|
+
this.accept = "application/json";
|
|
21525
|
+
this.inputSchema = getIntegrationTilbyProductMappingsInputSchema;
|
|
21526
|
+
this.outputSchema = getIntegrationTilbyProductMappingsResponseSchema;
|
|
21527
|
+
this.querySchema = getIntegrationTilbyProductMappingsQuerySchema;
|
|
21528
|
+
this.headersSchema = void 0;
|
|
21529
|
+
this.listItemSchema = integrationTilbyProductMappingSchema;
|
|
21530
|
+
this.paginationDefaultEnabled = false;
|
|
21531
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21532
|
+
}
|
|
21533
|
+
getPath() {
|
|
21534
|
+
return `/integrations/tilby/${this.integrationTilbyId}/product_mappings`;
|
|
21535
|
+
}
|
|
21536
|
+
};
|
|
21537
|
+
var getIntegrationTilbyProductMappingDetailsInputSchema = external_exports.undefined();
|
|
21538
|
+
var getIntegrationTilbyProductMappingDetailsResponseSchema = integrationTilbyProductMappingDetailsSchema;
|
|
21539
|
+
var GetIntegrationTilbyProductMappingDetails = class extends AbstractApiRequest186 {
|
|
21540
|
+
constructor(integrationTilbyId, mappingId) {
|
|
21541
|
+
super(void 0);
|
|
21542
|
+
this.method = "GET";
|
|
21543
|
+
this.contentType = "application/json";
|
|
21544
|
+
this.accept = "application/json";
|
|
21545
|
+
this.inputSchema = getIntegrationTilbyProductMappingDetailsInputSchema;
|
|
21546
|
+
this.outputSchema = getIntegrationTilbyProductMappingDetailsResponseSchema;
|
|
21547
|
+
this.querySchema = void 0;
|
|
21548
|
+
this.headersSchema = void 0;
|
|
21549
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21550
|
+
this.mappingId = mappingId;
|
|
21551
|
+
}
|
|
21552
|
+
getPath() {
|
|
21553
|
+
return `/integrations/tilby/${this.integrationTilbyId}/product_mappings/${this.mappingId}`;
|
|
21554
|
+
}
|
|
21555
|
+
};
|
|
21556
|
+
var updateIntegrationTilbyProductMappingInputSchema = integrationTilbyProductMappingEditableFieldsSchema;
|
|
21557
|
+
var updateIntegrationTilbyProductMappingResponseSchema = integrationTilbyProductMappingSchema;
|
|
21558
|
+
var UpdateIntegrationTilbyProductMapping = class extends AbstractApiRequest186 {
|
|
21559
|
+
constructor(integrationTilbyId, mappingId, input) {
|
|
21560
|
+
super(input);
|
|
21561
|
+
this.method = "PATCH";
|
|
21562
|
+
this.contentType = "application/merge-patch+json";
|
|
21563
|
+
this.accept = "application/json";
|
|
21564
|
+
this.inputSchema = updateIntegrationTilbyProductMappingInputSchema;
|
|
21565
|
+
this.outputSchema = updateIntegrationTilbyProductMappingResponseSchema;
|
|
21566
|
+
this.querySchema = void 0;
|
|
21567
|
+
this.headersSchema = void 0;
|
|
21568
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21569
|
+
this.mappingId = mappingId;
|
|
21570
|
+
}
|
|
21571
|
+
getPath() {
|
|
21572
|
+
return `/integrations/tilby/${this.integrationTilbyId}/product_mappings/${this.mappingId}`;
|
|
21573
|
+
}
|
|
21574
|
+
};
|
|
21575
|
+
var getIntegrationTilbyProductVariantMappingsQuerySchema = integrationTilbyProductVariantMappingsQuerySchema;
|
|
21576
|
+
var getIntegrationTilbyProductVariantMappingsInputSchema = external_exports.undefined();
|
|
21577
|
+
var getIntegrationTilbyProductVariantMappingsResponseSchema = external_exports.array(
|
|
21578
|
+
integrationTilbyProductVariantMappingSchema
|
|
21579
|
+
);
|
|
21580
|
+
var GetIntegrationTilbyProductVariantMappings = class extends AbstractApiRequest186 {
|
|
21581
|
+
constructor(integrationTilbyId, productId, options) {
|
|
21582
|
+
super(void 0, options);
|
|
21583
|
+
this.method = "GET";
|
|
21584
|
+
this.contentType = "application/json";
|
|
21585
|
+
this.accept = "application/json";
|
|
21586
|
+
this.inputSchema = getIntegrationTilbyProductVariantMappingsInputSchema;
|
|
21587
|
+
this.outputSchema = getIntegrationTilbyProductVariantMappingsResponseSchema;
|
|
21588
|
+
this.querySchema = getIntegrationTilbyProductVariantMappingsQuerySchema;
|
|
21589
|
+
this.headersSchema = void 0;
|
|
21590
|
+
this.listItemSchema = integrationTilbyProductVariantMappingSchema;
|
|
21591
|
+
this.paginationDefaultEnabled = false;
|
|
21592
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21593
|
+
this.productId = productId;
|
|
21594
|
+
}
|
|
21595
|
+
getPath() {
|
|
21596
|
+
return `/integrations/tilby/${this.integrationTilbyId}/product_mappings/${this.productId}/variant_mappings`;
|
|
21597
|
+
}
|
|
21598
|
+
};
|
|
21599
|
+
var getIntegrationTilbyProductVariantMappingDetailsInputSchema = external_exports.undefined();
|
|
21600
|
+
var getIntegrationTilbyProductVariantMappingDetailsResponseSchema = integrationTilbyProductVariantMappingDetailsSchema;
|
|
21601
|
+
var GetIntegrationTilbyProductVariantMappingDetails = class extends AbstractApiRequest186 {
|
|
21602
|
+
constructor(integrationTilbyId, productId, variantId) {
|
|
21603
|
+
super(void 0);
|
|
21604
|
+
this.method = "GET";
|
|
21605
|
+
this.contentType = "application/json";
|
|
21606
|
+
this.accept = "application/json";
|
|
21607
|
+
this.inputSchema = getIntegrationTilbyProductVariantMappingDetailsInputSchema;
|
|
21608
|
+
this.outputSchema = getIntegrationTilbyProductVariantMappingDetailsResponseSchema;
|
|
21609
|
+
this.querySchema = void 0;
|
|
21610
|
+
this.headersSchema = void 0;
|
|
21611
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21612
|
+
this.productId = productId;
|
|
21613
|
+
this.variantId = variantId;
|
|
21614
|
+
}
|
|
21615
|
+
getPath() {
|
|
21616
|
+
return `/integrations/tilby/${this.integrationTilbyId}/product_mappings/${this.productId}/variant_mappings/${this.variantId}`;
|
|
21617
|
+
}
|
|
21618
|
+
};
|
|
21619
|
+
var updateIntegrationTilbyProductVariantMappingInputSchema = integrationTilbyProductVariantMappingEditableFieldsSchema;
|
|
21620
|
+
var updateIntegrationTilbyProductVariantMappingResponseSchema = integrationTilbyProductVariantMappingSchema;
|
|
21621
|
+
var UpdateIntegrationTilbyProductVariantMapping = class extends AbstractApiRequest186 {
|
|
21622
|
+
constructor(integrationTilbyId, productId, variantId, input) {
|
|
21623
|
+
super(input);
|
|
21624
|
+
this.method = "PATCH";
|
|
21625
|
+
this.contentType = "application/merge-patch+json";
|
|
21626
|
+
this.accept = "application/json";
|
|
21627
|
+
this.inputSchema = updateIntegrationTilbyProductVariantMappingInputSchema;
|
|
21628
|
+
this.outputSchema = updateIntegrationTilbyProductVariantMappingResponseSchema;
|
|
21629
|
+
this.querySchema = void 0;
|
|
21630
|
+
this.headersSchema = void 0;
|
|
21631
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21632
|
+
this.productId = productId;
|
|
21633
|
+
this.variantId = variantId;
|
|
21634
|
+
}
|
|
21635
|
+
getPath() {
|
|
21636
|
+
return `/integrations/tilby/${this.integrationTilbyId}/product_mappings/${this.productId}/variant_mappings/${this.variantId}`;
|
|
21637
|
+
}
|
|
21638
|
+
};
|
|
21639
|
+
var getIntegrationTilbyCustomerMappingsQuerySchema = integrationTilbyCustomerMappingsQuerySchema;
|
|
21640
|
+
var getIntegrationTilbyCustomerMappingsInputSchema = external_exports.undefined();
|
|
21641
|
+
var getIntegrationTilbyCustomerMappingsResponseSchema = external_exports.array(
|
|
21642
|
+
integrationTilbyCustomerMappingSchema
|
|
21643
|
+
);
|
|
21644
|
+
var GetIntegrationTilbyCustomerMappings = class extends AbstractApiRequest186 {
|
|
21645
|
+
constructor(integrationTilbyId, options) {
|
|
21646
|
+
super(void 0, options);
|
|
21647
|
+
this.method = "GET";
|
|
21648
|
+
this.contentType = "application/json";
|
|
21649
|
+
this.accept = "application/json";
|
|
21650
|
+
this.inputSchema = getIntegrationTilbyCustomerMappingsInputSchema;
|
|
21651
|
+
this.outputSchema = getIntegrationTilbyCustomerMappingsResponseSchema;
|
|
21652
|
+
this.querySchema = getIntegrationTilbyCustomerMappingsQuerySchema;
|
|
21653
|
+
this.headersSchema = void 0;
|
|
21654
|
+
this.listItemSchema = integrationTilbyCustomerMappingSchema;
|
|
21655
|
+
this.paginationDefaultEnabled = false;
|
|
21656
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21657
|
+
}
|
|
21658
|
+
getPath() {
|
|
21659
|
+
return `/integrations/tilby/${this.integrationTilbyId}/customer_mappings`;
|
|
21660
|
+
}
|
|
21661
|
+
};
|
|
21662
|
+
var getIntegrationTilbyCustomerMappingDetailsInputSchema = external_exports.undefined();
|
|
21663
|
+
var getIntegrationTilbyCustomerMappingDetailsResponseSchema = integrationTilbyCustomerMappingDetailsSchema;
|
|
21664
|
+
var GetIntegrationTilbyCustomerMappingDetails = class extends AbstractApiRequest186 {
|
|
21665
|
+
constructor(integrationTilbyId, mappingId) {
|
|
21666
|
+
super(void 0);
|
|
21667
|
+
this.method = "GET";
|
|
21668
|
+
this.contentType = "application/json";
|
|
21669
|
+
this.accept = "application/json";
|
|
21670
|
+
this.inputSchema = getIntegrationTilbyCustomerMappingDetailsInputSchema;
|
|
21671
|
+
this.outputSchema = getIntegrationTilbyCustomerMappingDetailsResponseSchema;
|
|
21672
|
+
this.querySchema = void 0;
|
|
21673
|
+
this.headersSchema = void 0;
|
|
21674
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21675
|
+
this.mappingId = mappingId;
|
|
21676
|
+
}
|
|
21677
|
+
getPath() {
|
|
21678
|
+
return `/integrations/tilby/${this.integrationTilbyId}/customer_mappings/${this.mappingId}`;
|
|
21679
|
+
}
|
|
21680
|
+
};
|
|
21681
|
+
var getIntegrationTilbyOrderMappingsQuerySchema = integrationTilbyOrderMappingsQuerySchema;
|
|
21682
|
+
var getIntegrationTilbyOrderMappingsInputSchema = external_exports.undefined();
|
|
21683
|
+
var getIntegrationTilbyOrderMappingsResponseSchema = createPaginatedSchema43(
|
|
21684
|
+
integrationTilbyOrderMappingSchema
|
|
21685
|
+
);
|
|
21686
|
+
var GetIntegrationTilbyOrderMappings = class extends AbstractApiRequest186 {
|
|
21687
|
+
constructor(integrationTilbyId, options) {
|
|
21688
|
+
super(void 0, options);
|
|
21689
|
+
this.method = "GET";
|
|
21690
|
+
this.contentType = "application/json";
|
|
21691
|
+
this.accept = "application/json";
|
|
21692
|
+
this.inputSchema = getIntegrationTilbyOrderMappingsInputSchema;
|
|
21693
|
+
this.outputSchema = getIntegrationTilbyOrderMappingsResponseSchema;
|
|
21694
|
+
this.querySchema = getIntegrationTilbyOrderMappingsQuerySchema;
|
|
21695
|
+
this.headersSchema = void 0;
|
|
21696
|
+
this.listItemSchema = integrationTilbyOrderMappingSchema;
|
|
21697
|
+
this.paginationDefaultEnabled = true;
|
|
21698
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21699
|
+
}
|
|
21700
|
+
getPath() {
|
|
21701
|
+
return `/integrations/tilby/${this.integrationTilbyId}/order_mappings`;
|
|
21702
|
+
}
|
|
21703
|
+
};
|
|
21704
|
+
var getIntegrationTilbyOrderMappingDetailsInputSchema = external_exports.undefined();
|
|
21705
|
+
var getIntegrationTilbyOrderMappingDetailsResponseSchema = integrationTilbyOrderMappingDetailsSchema;
|
|
21706
|
+
var GetIntegrationTilbyOrderMappingDetails = class extends AbstractApiRequest186 {
|
|
21707
|
+
constructor(integrationTilbyId, mappingId) {
|
|
21708
|
+
super(void 0);
|
|
21709
|
+
this.method = "GET";
|
|
21710
|
+
this.contentType = "application/json";
|
|
21711
|
+
this.accept = "application/json";
|
|
21712
|
+
this.inputSchema = getIntegrationTilbyOrderMappingDetailsInputSchema;
|
|
21713
|
+
this.outputSchema = getIntegrationTilbyOrderMappingDetailsResponseSchema;
|
|
21714
|
+
this.querySchema = void 0;
|
|
21715
|
+
this.headersSchema = void 0;
|
|
21716
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21717
|
+
this.mappingId = mappingId;
|
|
21718
|
+
}
|
|
21719
|
+
getPath() {
|
|
21720
|
+
return `/integrations/tilby/${this.integrationTilbyId}/order_mappings/${this.mappingId}`;
|
|
21721
|
+
}
|
|
21722
|
+
};
|
|
21723
|
+
var getIntegrationTilbyOrderMappingsFromOrderQuerySchema = integrationTilbyOrderMappingsQuerySchema.omit({
|
|
21724
|
+
page: true
|
|
21725
|
+
});
|
|
21726
|
+
var getIntegrationTilbyOrderMappingsFromOrderInputSchema = external_exports.undefined();
|
|
21727
|
+
var getIntegrationTilbyOrderMappingsFromOrderResponseSchema = external_exports.array(
|
|
21728
|
+
integrationTilbyOrderMappingSchema
|
|
21729
|
+
);
|
|
21730
|
+
var GetIntegrationTilbyOrderMappingsFromOrder = class extends AbstractApiRequest186 {
|
|
21731
|
+
constructor(orderId, options) {
|
|
21732
|
+
super(void 0, options);
|
|
21733
|
+
this.method = "GET";
|
|
21734
|
+
this.contentType = "application/json";
|
|
21735
|
+
this.accept = "application/json";
|
|
21736
|
+
this.inputSchema = getIntegrationTilbyOrderMappingsFromOrderInputSchema;
|
|
21737
|
+
this.outputSchema = getIntegrationTilbyOrderMappingsFromOrderResponseSchema;
|
|
21738
|
+
this.querySchema = getIntegrationTilbyOrderMappingsFromOrderQuerySchema;
|
|
21739
|
+
this.headersSchema = void 0;
|
|
21740
|
+
this.listItemSchema = integrationTilbyOrderMappingSchema;
|
|
21741
|
+
this.paginationDefaultEnabled = false;
|
|
21742
|
+
this.orderId = orderId;
|
|
21743
|
+
}
|
|
21744
|
+
getPath() {
|
|
21745
|
+
return `/orders/${this.orderId}/tilby_orders`;
|
|
21746
|
+
}
|
|
21747
|
+
};
|
|
21748
|
+
var getIntegrationTilbySyncFiscalMappingsProcessesQuerySchema = integrationTilbySyncFiscalMappingsProcessesQuerySchema;
|
|
21749
|
+
var getIntegrationTilbySyncFiscalMappingsProcessesInputSchema = external_exports.undefined();
|
|
21750
|
+
var getIntegrationTilbySyncFiscalMappingsProcessesResponseSchema = createPaginatedSchema43(
|
|
21751
|
+
integrationTilbySyncFiscalMappingsProcessSchema
|
|
21752
|
+
);
|
|
21753
|
+
var GetIntegrationTilbySyncFiscalMappingsProcesses = class extends AbstractApiRequest186 {
|
|
21754
|
+
constructor(integrationTilbyId, options) {
|
|
21755
|
+
super(void 0, options);
|
|
21756
|
+
this.method = "GET";
|
|
21757
|
+
this.contentType = "application/json";
|
|
21758
|
+
this.accept = "application/json";
|
|
21759
|
+
this.inputSchema = getIntegrationTilbySyncFiscalMappingsProcessesInputSchema;
|
|
21760
|
+
this.outputSchema = getIntegrationTilbySyncFiscalMappingsProcessesResponseSchema;
|
|
21761
|
+
this.querySchema = getIntegrationTilbySyncFiscalMappingsProcessesQuerySchema;
|
|
21762
|
+
this.headersSchema = void 0;
|
|
21763
|
+
this.listItemSchema = integrationTilbySyncFiscalMappingsProcessSchema;
|
|
21764
|
+
this.paginationDefaultEnabled = true;
|
|
21765
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21766
|
+
}
|
|
21767
|
+
getPath() {
|
|
21768
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_fiscal_mappings_processes`;
|
|
21769
|
+
}
|
|
21770
|
+
};
|
|
21771
|
+
var getIntegrationTilbySyncFiscalMappingsProcessDetailsInputSchema = external_exports.undefined();
|
|
21772
|
+
var getIntegrationTilbySyncFiscalMappingsProcessDetailsResponseSchema = integrationTilbySyncFiscalMappingsProcessDetailsSchema;
|
|
21773
|
+
var GetIntegrationTilbySyncFiscalMappingsProcessDetails = class extends AbstractApiRequest186 {
|
|
21774
|
+
constructor(integrationTilbyId, processId) {
|
|
21775
|
+
super(void 0);
|
|
21776
|
+
this.method = "GET";
|
|
21777
|
+
this.contentType = "application/json";
|
|
21778
|
+
this.accept = "application/json";
|
|
21779
|
+
this.inputSchema = getIntegrationTilbySyncFiscalMappingsProcessDetailsInputSchema;
|
|
21780
|
+
this.outputSchema = getIntegrationTilbySyncFiscalMappingsProcessDetailsResponseSchema;
|
|
21781
|
+
this.querySchema = void 0;
|
|
21782
|
+
this.headersSchema = void 0;
|
|
21783
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21784
|
+
this.processId = processId;
|
|
21785
|
+
}
|
|
21786
|
+
getPath() {
|
|
21787
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_fiscal_mappings_processes/${this.processId}`;
|
|
21788
|
+
}
|
|
21789
|
+
};
|
|
21790
|
+
var getIntegrationTilbySyncFiscalMappingsErrorLogsQuerySchema = integrationTilbySyncFiscalMappingsErrorLogsQuerySchema;
|
|
21791
|
+
var getIntegrationTilbySyncFiscalMappingsErrorLogsInputSchema = external_exports.undefined();
|
|
21792
|
+
var getIntegrationTilbySyncFiscalMappingsErrorLogsResponseSchema = createPaginatedSchema43(
|
|
21793
|
+
integrationTilbySyncFiscalMappingsErrorLogSchema
|
|
21794
|
+
);
|
|
21795
|
+
var GetIntegrationTilbySyncFiscalMappingsErrorLogs = class extends AbstractApiRequest186 {
|
|
21796
|
+
constructor(integrationTilbyId, processId, options) {
|
|
21797
|
+
super(void 0, options);
|
|
21798
|
+
this.method = "GET";
|
|
21799
|
+
this.contentType = "application/json";
|
|
21800
|
+
this.accept = "application/json";
|
|
21801
|
+
this.inputSchema = getIntegrationTilbySyncFiscalMappingsErrorLogsInputSchema;
|
|
21802
|
+
this.outputSchema = getIntegrationTilbySyncFiscalMappingsErrorLogsResponseSchema;
|
|
21803
|
+
this.querySchema = getIntegrationTilbySyncFiscalMappingsErrorLogsQuerySchema;
|
|
21804
|
+
this.headersSchema = void 0;
|
|
21805
|
+
this.listItemSchema = integrationTilbySyncFiscalMappingsErrorLogSchema;
|
|
21806
|
+
this.paginationDefaultEnabled = true;
|
|
21807
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21808
|
+
this.processId = processId;
|
|
21809
|
+
}
|
|
21810
|
+
getPath() {
|
|
21811
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_fiscal_mappings_processes/${this.processId}/error_logs`;
|
|
21812
|
+
}
|
|
21813
|
+
};
|
|
21814
|
+
var getIntegrationTilbySyncFiscalMappingsErrorLogDetailsInputSchema = external_exports.undefined();
|
|
21815
|
+
var getIntegrationTilbySyncFiscalMappingsErrorLogDetailsResponseSchema = integrationTilbySyncFiscalMappingsErrorLogDetailsSchema;
|
|
21816
|
+
var GetIntegrationTilbySyncFiscalMappingsErrorLogDetails = class extends AbstractApiRequest186 {
|
|
21817
|
+
constructor(integrationTilbyId, processId, errorLogId) {
|
|
21818
|
+
super(void 0);
|
|
21819
|
+
this.method = "GET";
|
|
21820
|
+
this.contentType = "application/json";
|
|
21821
|
+
this.accept = "application/json";
|
|
21822
|
+
this.inputSchema = getIntegrationTilbySyncFiscalMappingsErrorLogDetailsInputSchema;
|
|
21823
|
+
this.outputSchema = getIntegrationTilbySyncFiscalMappingsErrorLogDetailsResponseSchema;
|
|
21824
|
+
this.querySchema = void 0;
|
|
21825
|
+
this.headersSchema = void 0;
|
|
21826
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21827
|
+
this.processId = processId;
|
|
21828
|
+
this.errorLogId = errorLogId;
|
|
21829
|
+
}
|
|
21830
|
+
getPath() {
|
|
21831
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_fiscal_mappings_processes/${this.processId}/error_logs/${this.errorLogId}`;
|
|
21832
|
+
}
|
|
21833
|
+
};
|
|
21834
|
+
var getIntegrationTilbySyncCustomersProcessesQuerySchema = integrationTilbySyncCustomersProcessesQuerySchema;
|
|
21835
|
+
var getIntegrationTilbySyncCustomersProcessesInputSchema = external_exports.undefined();
|
|
21836
|
+
var getIntegrationTilbySyncCustomersProcessesResponseSchema = createPaginatedSchema43(
|
|
21837
|
+
integrationTilbySyncCustomersProcessSchema
|
|
21838
|
+
);
|
|
21839
|
+
var GetIntegrationTilbySyncCustomersProcesses = class extends AbstractApiRequest186 {
|
|
21840
|
+
constructor(integrationTilbyId, options) {
|
|
21841
|
+
super(void 0, options);
|
|
21842
|
+
this.method = "GET";
|
|
21843
|
+
this.contentType = "application/json";
|
|
21844
|
+
this.accept = "application/json";
|
|
21845
|
+
this.inputSchema = getIntegrationTilbySyncCustomersProcessesInputSchema;
|
|
21846
|
+
this.outputSchema = getIntegrationTilbySyncCustomersProcessesResponseSchema;
|
|
21847
|
+
this.querySchema = getIntegrationTilbySyncCustomersProcessesQuerySchema;
|
|
21848
|
+
this.headersSchema = void 0;
|
|
21849
|
+
this.listItemSchema = integrationTilbySyncCustomersProcessSchema;
|
|
21850
|
+
this.paginationDefaultEnabled = true;
|
|
21851
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21852
|
+
}
|
|
21853
|
+
getPath() {
|
|
21854
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_customers_processes`;
|
|
21855
|
+
}
|
|
21856
|
+
};
|
|
21857
|
+
var getIntegrationTilbySyncCustomersProcessDetailsInputSchema = external_exports.undefined();
|
|
21858
|
+
var getIntegrationTilbySyncCustomersProcessDetailsResponseSchema = integrationTilbySyncCustomersProcessDetailsSchema;
|
|
21859
|
+
var GetIntegrationTilbySyncCustomersProcessDetails = class extends AbstractApiRequest186 {
|
|
21860
|
+
constructor(integrationTilbyId, processId) {
|
|
21861
|
+
super(void 0);
|
|
21862
|
+
this.method = "GET";
|
|
21863
|
+
this.contentType = "application/json";
|
|
21864
|
+
this.accept = "application/json";
|
|
21865
|
+
this.inputSchema = getIntegrationTilbySyncCustomersProcessDetailsInputSchema;
|
|
21866
|
+
this.outputSchema = getIntegrationTilbySyncCustomersProcessDetailsResponseSchema;
|
|
21867
|
+
this.querySchema = void 0;
|
|
21868
|
+
this.headersSchema = void 0;
|
|
21869
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21870
|
+
this.processId = processId;
|
|
21871
|
+
}
|
|
21872
|
+
getPath() {
|
|
21873
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_customers_processes/${this.processId}`;
|
|
21874
|
+
}
|
|
21875
|
+
};
|
|
21876
|
+
var getIntegrationTilbySyncCustomersErrorLogsQuerySchema = integrationTilbySyncCustomersErrorLogsQuerySchema;
|
|
21877
|
+
var getIntegrationTilbySyncCustomersErrorLogsInputSchema = external_exports.undefined();
|
|
21878
|
+
var getIntegrationTilbySyncCustomersErrorLogsResponseSchema = createPaginatedSchema43(
|
|
21879
|
+
integrationTilbySyncCustomersErrorLogSchema
|
|
21880
|
+
);
|
|
21881
|
+
var GetIntegrationTilbySyncCustomersErrorLogs = class extends AbstractApiRequest186 {
|
|
21882
|
+
constructor(integrationTilbyId, processId, options) {
|
|
21883
|
+
super(void 0, options);
|
|
21884
|
+
this.method = "GET";
|
|
21885
|
+
this.contentType = "application/json";
|
|
21886
|
+
this.accept = "application/json";
|
|
21887
|
+
this.inputSchema = getIntegrationTilbySyncCustomersErrorLogsInputSchema;
|
|
21888
|
+
this.outputSchema = getIntegrationTilbySyncCustomersErrorLogsResponseSchema;
|
|
21889
|
+
this.querySchema = getIntegrationTilbySyncCustomersErrorLogsQuerySchema;
|
|
21890
|
+
this.headersSchema = void 0;
|
|
21891
|
+
this.listItemSchema = integrationTilbySyncCustomersErrorLogSchema;
|
|
21892
|
+
this.paginationDefaultEnabled = true;
|
|
21893
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21894
|
+
this.processId = processId;
|
|
21895
|
+
}
|
|
21896
|
+
getPath() {
|
|
21897
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_customers_processes/${this.processId}/error_logs`;
|
|
21898
|
+
}
|
|
21899
|
+
};
|
|
21900
|
+
var getIntegrationTilbySyncCustomersErrorLogDetailsInputSchema = external_exports.undefined();
|
|
21901
|
+
var getIntegrationTilbySyncCustomersErrorLogDetailsResponseSchema = integrationTilbySyncCustomersErrorLogDetailsSchema;
|
|
21902
|
+
var GetIntegrationTilbySyncCustomersErrorLogDetails = class extends AbstractApiRequest186 {
|
|
21903
|
+
constructor(integrationTilbyId, processId, errorLogId) {
|
|
21904
|
+
super(void 0);
|
|
21905
|
+
this.method = "GET";
|
|
21906
|
+
this.contentType = "application/json";
|
|
21907
|
+
this.accept = "application/json";
|
|
21908
|
+
this.inputSchema = getIntegrationTilbySyncCustomersErrorLogDetailsInputSchema;
|
|
21909
|
+
this.outputSchema = getIntegrationTilbySyncCustomersErrorLogDetailsResponseSchema;
|
|
21910
|
+
this.querySchema = void 0;
|
|
21911
|
+
this.headersSchema = void 0;
|
|
21912
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21913
|
+
this.processId = processId;
|
|
21914
|
+
this.errorLogId = errorLogId;
|
|
21915
|
+
}
|
|
21916
|
+
getPath() {
|
|
21917
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_customers_processes/${this.processId}/error_logs/${this.errorLogId}`;
|
|
21918
|
+
}
|
|
21919
|
+
};
|
|
21920
|
+
var getIntegrationTilbySyncMenuProcessesQuerySchema = integrationTilbySyncMenuProcessesQuerySchema;
|
|
21921
|
+
var getIntegrationTilbySyncMenuProcessesInputSchema = external_exports.undefined();
|
|
21922
|
+
var getIntegrationTilbySyncMenuProcessesResponseSchema = createPaginatedSchema43(
|
|
21923
|
+
integrationTilbySyncMenuProcessSchema
|
|
21924
|
+
);
|
|
21925
|
+
var GetIntegrationTilbySyncMenuProcesses = class extends AbstractApiRequest186 {
|
|
21926
|
+
constructor(integrationTilbyId, options) {
|
|
21927
|
+
super(void 0, options);
|
|
21928
|
+
this.method = "GET";
|
|
21929
|
+
this.contentType = "application/json";
|
|
21930
|
+
this.accept = "application/json";
|
|
21931
|
+
this.inputSchema = getIntegrationTilbySyncMenuProcessesInputSchema;
|
|
21932
|
+
this.outputSchema = getIntegrationTilbySyncMenuProcessesResponseSchema;
|
|
21933
|
+
this.querySchema = getIntegrationTilbySyncMenuProcessesQuerySchema;
|
|
21934
|
+
this.headersSchema = void 0;
|
|
21935
|
+
this.listItemSchema = integrationTilbySyncMenuProcessSchema;
|
|
21936
|
+
this.paginationDefaultEnabled = true;
|
|
21937
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21938
|
+
}
|
|
21939
|
+
getPath() {
|
|
21940
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_menu_processes`;
|
|
21941
|
+
}
|
|
21942
|
+
};
|
|
21943
|
+
var getIntegrationTilbySyncMenuProcessDetailsInputSchema = external_exports.undefined();
|
|
21944
|
+
var getIntegrationTilbySyncMenuProcessDetailsResponseSchema = integrationTilbySyncMenuProcessDetailsSchema;
|
|
21945
|
+
var GetIntegrationTilbySyncMenuProcessDetails = class extends AbstractApiRequest186 {
|
|
21946
|
+
constructor(integrationTilbyId, processId) {
|
|
21947
|
+
super(void 0);
|
|
21948
|
+
this.method = "GET";
|
|
21949
|
+
this.contentType = "application/json";
|
|
21950
|
+
this.accept = "application/json";
|
|
21951
|
+
this.inputSchema = getIntegrationTilbySyncMenuProcessDetailsInputSchema;
|
|
21952
|
+
this.outputSchema = getIntegrationTilbySyncMenuProcessDetailsResponseSchema;
|
|
21953
|
+
this.querySchema = void 0;
|
|
21954
|
+
this.headersSchema = void 0;
|
|
21955
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21956
|
+
this.processId = processId;
|
|
21957
|
+
}
|
|
21958
|
+
getPath() {
|
|
21959
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_menu_processes/${this.processId}`;
|
|
21960
|
+
}
|
|
21961
|
+
};
|
|
21962
|
+
var getIntegrationTilbySyncMenuErrorLogsQuerySchema = integrationTilbySyncMenuErrorLogsQuerySchema;
|
|
21963
|
+
var getIntegrationTilbySyncMenuErrorLogsInputSchema = external_exports.undefined();
|
|
21964
|
+
var getIntegrationTilbySyncMenuErrorLogsResponseSchema = createPaginatedSchema43(
|
|
21965
|
+
integrationTilbySyncMenuErrorLogSchema
|
|
21966
|
+
);
|
|
21967
|
+
var GetIntegrationTilbySyncMenuErrorLogs = class extends AbstractApiRequest186 {
|
|
21968
|
+
constructor(integrationTilbyId, processId, options) {
|
|
21969
|
+
super(void 0, options);
|
|
21970
|
+
this.method = "GET";
|
|
21971
|
+
this.contentType = "application/json";
|
|
21972
|
+
this.accept = "application/json";
|
|
21973
|
+
this.inputSchema = getIntegrationTilbySyncMenuErrorLogsInputSchema;
|
|
21974
|
+
this.outputSchema = getIntegrationTilbySyncMenuErrorLogsResponseSchema;
|
|
21975
|
+
this.querySchema = getIntegrationTilbySyncMenuErrorLogsQuerySchema;
|
|
21976
|
+
this.headersSchema = void 0;
|
|
21977
|
+
this.listItemSchema = integrationTilbySyncMenuErrorLogSchema;
|
|
21978
|
+
this.paginationDefaultEnabled = true;
|
|
21979
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21980
|
+
this.processId = processId;
|
|
21981
|
+
}
|
|
21982
|
+
getPath() {
|
|
21983
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_menu_processes/${this.processId}/error_logs`;
|
|
21984
|
+
}
|
|
21985
|
+
};
|
|
21986
|
+
var getIntegrationTilbySyncMenuErrorLogDetailsInputSchema = external_exports.undefined();
|
|
21987
|
+
var getIntegrationTilbySyncMenuErrorLogDetailsResponseSchema = integrationTilbySyncMenuErrorLogDetailsSchema;
|
|
21988
|
+
var GetIntegrationTilbySyncMenuErrorLogDetails = class extends AbstractApiRequest186 {
|
|
21989
|
+
constructor(integrationTilbyId, processId, errorLogId) {
|
|
21990
|
+
super(void 0);
|
|
21991
|
+
this.method = "GET";
|
|
21992
|
+
this.contentType = "application/json";
|
|
21993
|
+
this.accept = "application/json";
|
|
21994
|
+
this.inputSchema = getIntegrationTilbySyncMenuErrorLogDetailsInputSchema;
|
|
21995
|
+
this.outputSchema = getIntegrationTilbySyncMenuErrorLogDetailsResponseSchema;
|
|
21996
|
+
this.querySchema = void 0;
|
|
21997
|
+
this.headersSchema = void 0;
|
|
21998
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21999
|
+
this.processId = processId;
|
|
22000
|
+
this.errorLogId = errorLogId;
|
|
22001
|
+
}
|
|
22002
|
+
getPath() {
|
|
22003
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_menu_processes/${this.processId}/error_logs/${this.errorLogId}`;
|
|
22004
|
+
}
|
|
22005
|
+
};
|
|
22006
|
+
var getIntegrationTilbySyncOrdersProcessesQuerySchema = integrationTilbySyncOrdersProcessesQuerySchema;
|
|
22007
|
+
var getIntegrationTilbySyncOrdersProcessesInputSchema = external_exports.undefined();
|
|
22008
|
+
var getIntegrationTilbySyncOrdersProcessesResponseSchema = createPaginatedSchema43(
|
|
22009
|
+
integrationTilbySyncOrdersProcessSchema
|
|
22010
|
+
);
|
|
22011
|
+
var GetIntegrationTilbySyncOrdersProcesses = class extends AbstractApiRequest186 {
|
|
22012
|
+
constructor(integrationTilbyId, options) {
|
|
22013
|
+
super(void 0, options);
|
|
22014
|
+
this.method = "GET";
|
|
22015
|
+
this.contentType = "application/json";
|
|
22016
|
+
this.accept = "application/json";
|
|
22017
|
+
this.inputSchema = getIntegrationTilbySyncOrdersProcessesInputSchema;
|
|
22018
|
+
this.outputSchema = getIntegrationTilbySyncOrdersProcessesResponseSchema;
|
|
22019
|
+
this.querySchema = getIntegrationTilbySyncOrdersProcessesQuerySchema;
|
|
22020
|
+
this.headersSchema = void 0;
|
|
22021
|
+
this.listItemSchema = integrationTilbySyncOrdersProcessSchema;
|
|
22022
|
+
this.paginationDefaultEnabled = true;
|
|
22023
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22024
|
+
}
|
|
22025
|
+
getPath() {
|
|
22026
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_orders_processes`;
|
|
22027
|
+
}
|
|
22028
|
+
};
|
|
22029
|
+
var getIntegrationTilbySyncOrdersProcessDetailsInputSchema = external_exports.undefined();
|
|
22030
|
+
var getIntegrationTilbySyncOrdersProcessDetailsResponseSchema = integrationTilbySyncOrdersProcessDetailsSchema;
|
|
22031
|
+
var GetIntegrationTilbySyncOrdersProcessDetails = class extends AbstractApiRequest186 {
|
|
22032
|
+
constructor(integrationTilbyId, processId) {
|
|
22033
|
+
super(void 0);
|
|
22034
|
+
this.method = "GET";
|
|
22035
|
+
this.contentType = "application/json";
|
|
22036
|
+
this.accept = "application/json";
|
|
22037
|
+
this.inputSchema = getIntegrationTilbySyncOrdersProcessDetailsInputSchema;
|
|
22038
|
+
this.outputSchema = getIntegrationTilbySyncOrdersProcessDetailsResponseSchema;
|
|
22039
|
+
this.querySchema = void 0;
|
|
22040
|
+
this.headersSchema = void 0;
|
|
22041
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22042
|
+
this.processId = processId;
|
|
22043
|
+
}
|
|
22044
|
+
getPath() {
|
|
22045
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_orders_processes/${this.processId}`;
|
|
22046
|
+
}
|
|
22047
|
+
};
|
|
22048
|
+
var getIntegrationTilbySyncOrdersErrorLogsQuerySchema = integrationTilbySyncOrdersErrorLogsQuerySchema;
|
|
22049
|
+
var getIntegrationTilbySyncOrdersErrorLogsInputSchema = external_exports.undefined();
|
|
22050
|
+
var getIntegrationTilbySyncOrdersErrorLogsResponseSchema = createPaginatedSchema43(
|
|
22051
|
+
integrationTilbySyncOrdersErrorLogSchema
|
|
22052
|
+
);
|
|
22053
|
+
var GetIntegrationTilbySyncOrdersErrorLogs = class extends AbstractApiRequest186 {
|
|
22054
|
+
constructor(integrationTilbyId, processId, options) {
|
|
22055
|
+
super(void 0, options);
|
|
22056
|
+
this.method = "GET";
|
|
22057
|
+
this.contentType = "application/json";
|
|
22058
|
+
this.accept = "application/json";
|
|
22059
|
+
this.inputSchema = getIntegrationTilbySyncOrdersErrorLogsInputSchema;
|
|
22060
|
+
this.outputSchema = getIntegrationTilbySyncOrdersErrorLogsResponseSchema;
|
|
22061
|
+
this.querySchema = getIntegrationTilbySyncOrdersErrorLogsQuerySchema;
|
|
22062
|
+
this.headersSchema = void 0;
|
|
22063
|
+
this.listItemSchema = integrationTilbySyncOrdersErrorLogSchema;
|
|
22064
|
+
this.paginationDefaultEnabled = true;
|
|
22065
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22066
|
+
this.processId = processId;
|
|
22067
|
+
}
|
|
22068
|
+
getPath() {
|
|
22069
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_orders_processes/${this.processId}/error_logs`;
|
|
22070
|
+
}
|
|
22071
|
+
};
|
|
22072
|
+
var getIntegrationTilbySyncOrdersErrorLogDetailsInputSchema = external_exports.undefined();
|
|
22073
|
+
var getIntegrationTilbySyncOrdersErrorLogDetailsResponseSchema = integrationTilbySyncOrdersErrorLogDetailsSchema;
|
|
22074
|
+
var GetIntegrationTilbySyncOrdersErrorLogDetails = class extends AbstractApiRequest186 {
|
|
22075
|
+
constructor(integrationTilbyId, processId, errorLogId) {
|
|
22076
|
+
super(void 0);
|
|
22077
|
+
this.method = "GET";
|
|
22078
|
+
this.contentType = "application/json";
|
|
22079
|
+
this.accept = "application/json";
|
|
22080
|
+
this.inputSchema = getIntegrationTilbySyncOrdersErrorLogDetailsInputSchema;
|
|
22081
|
+
this.outputSchema = getIntegrationTilbySyncOrdersErrorLogDetailsResponseSchema;
|
|
22082
|
+
this.querySchema = void 0;
|
|
22083
|
+
this.headersSchema = void 0;
|
|
22084
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22085
|
+
this.processId = processId;
|
|
22086
|
+
this.errorLogId = errorLogId;
|
|
22087
|
+
}
|
|
22088
|
+
getPath() {
|
|
22089
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_orders_processes/${this.processId}/error_logs/${this.errorLogId}`;
|
|
22090
|
+
}
|
|
22091
|
+
};
|
|
22092
|
+
var getIntegrationTilbyWebHookSettingsQuerySchema = integrationTilbyWebHookSettingsQuerySchema;
|
|
22093
|
+
var getIntegrationTilbyWebHookSettingsInputSchema = external_exports.undefined();
|
|
22094
|
+
var getIntegrationTilbyWebHookSettingsResponseSchema = external_exports.array(
|
|
22095
|
+
integrationTilbyWebHookSettingSchema
|
|
22096
|
+
);
|
|
22097
|
+
var GetIntegrationTilbyWebHookSettings = class extends AbstractApiRequest186 {
|
|
22098
|
+
constructor(integrationTilbyId, options) {
|
|
22099
|
+
super(void 0, options);
|
|
22100
|
+
this.method = "GET";
|
|
22101
|
+
this.contentType = "application/json";
|
|
22102
|
+
this.accept = "application/json";
|
|
22103
|
+
this.inputSchema = getIntegrationTilbyWebHookSettingsInputSchema;
|
|
22104
|
+
this.outputSchema = getIntegrationTilbyWebHookSettingsResponseSchema;
|
|
22105
|
+
this.querySchema = getIntegrationTilbyWebHookSettingsQuerySchema;
|
|
22106
|
+
this.headersSchema = void 0;
|
|
22107
|
+
this.listItemSchema = integrationTilbyWebHookSettingSchema;
|
|
22108
|
+
this.paginationDefaultEnabled = false;
|
|
22109
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22110
|
+
}
|
|
22111
|
+
getPath() {
|
|
22112
|
+
return `/integrations/tilby/${this.integrationTilbyId}/webhook_settings`;
|
|
22113
|
+
}
|
|
22114
|
+
};
|
|
22115
|
+
var getIntegrationTilbyWebHookSettingDetailsInputSchema = external_exports.undefined();
|
|
22116
|
+
var getIntegrationTilbyWebHookSettingDetailsResponseSchema = integrationTilbyWebHookSettingDetailsSchema;
|
|
22117
|
+
var GetIntegrationTilbyWebHookSettingDetails = class extends AbstractApiRequest186 {
|
|
22118
|
+
constructor(integrationTilbyId, webHookId) {
|
|
22119
|
+
super(void 0);
|
|
22120
|
+
this.method = "GET";
|
|
22121
|
+
this.contentType = "application/json";
|
|
22122
|
+
this.accept = "application/json";
|
|
22123
|
+
this.inputSchema = getIntegrationTilbyWebHookSettingDetailsInputSchema;
|
|
22124
|
+
this.outputSchema = getIntegrationTilbyWebHookSettingDetailsResponseSchema;
|
|
22125
|
+
this.querySchema = void 0;
|
|
22126
|
+
this.headersSchema = void 0;
|
|
22127
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22128
|
+
this.webHookId = webHookId;
|
|
22129
|
+
}
|
|
22130
|
+
getPath() {
|
|
22131
|
+
return `/integrations/tilby/${this.integrationTilbyId}/webhook_settings/${this.webHookId}`;
|
|
22132
|
+
}
|
|
22133
|
+
};
|
|
22134
|
+
var getIntegrationTilbyWebHookEventsQuerySchema = integrationTilbyWebHookEventsQuerySchema;
|
|
22135
|
+
var getIntegrationTilbyWebHookEventsInputSchema = external_exports.undefined();
|
|
22136
|
+
var getIntegrationTilbyWebHookEventsResponseSchema = createPaginatedSchema43(
|
|
22137
|
+
integrationTilbyWebHookEventSchema
|
|
22138
|
+
);
|
|
22139
|
+
var GetIntegrationTilbyWebHookEvents = class extends AbstractApiRequest186 {
|
|
22140
|
+
constructor(integrationTilbyId, options) {
|
|
22141
|
+
super(void 0, options);
|
|
22142
|
+
this.method = "GET";
|
|
22143
|
+
this.contentType = "application/json";
|
|
22144
|
+
this.accept = "application/json";
|
|
22145
|
+
this.inputSchema = getIntegrationTilbyWebHookEventsInputSchema;
|
|
22146
|
+
this.outputSchema = getIntegrationTilbyWebHookEventsResponseSchema;
|
|
22147
|
+
this.querySchema = getIntegrationTilbyWebHookEventsQuerySchema;
|
|
22148
|
+
this.headersSchema = void 0;
|
|
22149
|
+
this.listItemSchema = integrationTilbyWebHookEventSchema;
|
|
22150
|
+
this.paginationDefaultEnabled = true;
|
|
22151
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22152
|
+
}
|
|
22153
|
+
getPath() {
|
|
22154
|
+
return `/integrations/tilby/${this.integrationTilbyId}/webhook_events`;
|
|
22155
|
+
}
|
|
22156
|
+
};
|
|
22157
|
+
var getIntegrationTilbyWebHookEventDetailsInputSchema = external_exports.undefined();
|
|
22158
|
+
var getIntegrationTilbyWebHookEventDetailsResponseSchema = integrationTilbyWebHookEventDetailsSchema;
|
|
22159
|
+
var GetIntegrationTilbyWebHookEventDetails = class extends AbstractApiRequest186 {
|
|
22160
|
+
constructor(integrationTilbyId, eventId) {
|
|
22161
|
+
super(void 0);
|
|
22162
|
+
this.method = "GET";
|
|
22163
|
+
this.contentType = "application/json";
|
|
22164
|
+
this.accept = "application/json";
|
|
22165
|
+
this.inputSchema = getIntegrationTilbyWebHookEventDetailsInputSchema;
|
|
22166
|
+
this.outputSchema = getIntegrationTilbyWebHookEventDetailsResponseSchema;
|
|
22167
|
+
this.querySchema = void 0;
|
|
22168
|
+
this.headersSchema = void 0;
|
|
22169
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22170
|
+
this.eventId = eventId;
|
|
22171
|
+
}
|
|
22172
|
+
getPath() {
|
|
22173
|
+
return `/integrations/tilby/${this.integrationTilbyId}/webhook_events/${this.eventId}`;
|
|
22174
|
+
}
|
|
22175
|
+
};
|
|
22176
|
+
|
|
22177
|
+
// src/requests/UpdateIntegration.ts
|
|
22178
|
+
import { AbstractApiRequest as AbstractApiRequest187 } from "@deliverart/sdk-js-core";
|
|
20247
22179
|
var updateIntegrationInputSchema = writableIntegrationSchema.partial();
|
|
20248
22180
|
var updateIntegrationResponseSchema = integrationDetailsSchema;
|
|
20249
|
-
var UpdateIntegration = class extends
|
|
22181
|
+
var UpdateIntegration = class extends AbstractApiRequest187 {
|
|
20250
22182
|
constructor(integrationId, input) {
|
|
20251
22183
|
super(input);
|
|
20252
22184
|
this.method = "PATCH";
|
|
@@ -20266,15 +22198,18 @@ export {
|
|
|
20266
22198
|
ActivateIntegrationActivationRequest,
|
|
20267
22199
|
AnnotateIntegrationActivationRequest,
|
|
20268
22200
|
CancelIntegrationCancellationRequest,
|
|
22201
|
+
CancelIntegrationDeliverooSiteDayOff,
|
|
20269
22202
|
CreateIntegrationActivationRequest,
|
|
20270
22203
|
CreateIntegrationCancellationRequest,
|
|
20271
22204
|
CreateIntegrationCassaInCloud,
|
|
20272
22205
|
CreateIntegrationDeliveroo,
|
|
22206
|
+
CreateIntegrationDeliverooSiteDayOff,
|
|
20273
22207
|
CreateIntegrationEcommerce,
|
|
20274
22208
|
CreateIntegrationGlovo,
|
|
20275
22209
|
CreateIntegrationJustEat,
|
|
20276
22210
|
CreateIntegrationKitchen,
|
|
20277
22211
|
CreateIntegrationKitchenAccessToken,
|
|
22212
|
+
CreateIntegrationTilby,
|
|
20278
22213
|
DeleteIntegration,
|
|
20279
22214
|
DeleteIntegrationActivationRequest,
|
|
20280
22215
|
DeleteIntegrationCancellationRequest,
|
|
@@ -20285,6 +22220,7 @@ export {
|
|
|
20285
22220
|
DeleteIntegrationJustEat,
|
|
20286
22221
|
DeleteIntegrationKitchen,
|
|
20287
22222
|
DeleteIntegrationKitchenAccessToken,
|
|
22223
|
+
DeleteIntegrationTilby,
|
|
20288
22224
|
GetIntegrationActivationRequestDetails,
|
|
20289
22225
|
GetIntegrationActivationRequests,
|
|
20290
22226
|
GetIntegrationActivationRequestsFromPointOfSale,
|
|
@@ -20356,6 +22292,7 @@ export {
|
|
|
20356
22292
|
GetIntegrationDeliverooClientLogRequestsFromOrder,
|
|
20357
22293
|
GetIntegrationDeliverooDetails,
|
|
20358
22294
|
GetIntegrationDeliverooGlobalClientLogRequests,
|
|
22295
|
+
GetIntegrationDeliverooIntegrationSiteDaysOff,
|
|
20359
22296
|
GetIntegrationDeliverooList,
|
|
20360
22297
|
GetIntegrationDeliverooMenuValidation,
|
|
20361
22298
|
GetIntegrationDeliverooMenuVersionDetails,
|
|
@@ -20404,6 +22341,8 @@ export {
|
|
|
20404
22341
|
GetIntegrationJustEatDetails,
|
|
20405
22342
|
GetIntegrationJustEatGlobalClientLogRequests,
|
|
20406
22343
|
GetIntegrationJustEatList,
|
|
22344
|
+
GetIntegrationJustEatMenuItemAvailabilityDeltaDetails,
|
|
22345
|
+
GetIntegrationJustEatMenuItemAvailabilityDeltas,
|
|
20407
22346
|
GetIntegrationJustEatMenuValidation,
|
|
20408
22347
|
GetIntegrationJustEatMenuVersionDetails,
|
|
20409
22348
|
GetIntegrationJustEatMenuVersions,
|
|
@@ -20416,6 +22355,45 @@ export {
|
|
|
20416
22355
|
GetIntegrationKitchenAccessTokens,
|
|
20417
22356
|
GetIntegrationKitchenDetails,
|
|
20418
22357
|
GetIntegrationKitchenList,
|
|
22358
|
+
GetIntegrationTilbyCategoryMappingDetails,
|
|
22359
|
+
GetIntegrationTilbyCategoryMappings,
|
|
22360
|
+
GetIntegrationTilbyComponentMappingDetails,
|
|
22361
|
+
GetIntegrationTilbyComponentMappings,
|
|
22362
|
+
GetIntegrationTilbyCustomerMappingDetails,
|
|
22363
|
+
GetIntegrationTilbyCustomerMappings,
|
|
22364
|
+
GetIntegrationTilbyDepartmentMappingDetails,
|
|
22365
|
+
GetIntegrationTilbyDepartmentMappings,
|
|
22366
|
+
GetIntegrationTilbyDetails,
|
|
22367
|
+
GetIntegrationTilbyList,
|
|
22368
|
+
GetIntegrationTilbyOrderMappingDetails,
|
|
22369
|
+
GetIntegrationTilbyOrderMappings,
|
|
22370
|
+
GetIntegrationTilbyOrderMappingsFromOrder,
|
|
22371
|
+
GetIntegrationTilbyProductMappingDetails,
|
|
22372
|
+
GetIntegrationTilbyProductMappings,
|
|
22373
|
+
GetIntegrationTilbyProductVariantMappingDetails,
|
|
22374
|
+
GetIntegrationTilbyProductVariantMappings,
|
|
22375
|
+
GetIntegrationTilbySyncCustomersErrorLogDetails,
|
|
22376
|
+
GetIntegrationTilbySyncCustomersErrorLogs,
|
|
22377
|
+
GetIntegrationTilbySyncCustomersProcessDetails,
|
|
22378
|
+
GetIntegrationTilbySyncCustomersProcesses,
|
|
22379
|
+
GetIntegrationTilbySyncFiscalMappingsErrorLogDetails,
|
|
22380
|
+
GetIntegrationTilbySyncFiscalMappingsErrorLogs,
|
|
22381
|
+
GetIntegrationTilbySyncFiscalMappingsProcessDetails,
|
|
22382
|
+
GetIntegrationTilbySyncFiscalMappingsProcesses,
|
|
22383
|
+
GetIntegrationTilbySyncMenuErrorLogDetails,
|
|
22384
|
+
GetIntegrationTilbySyncMenuErrorLogs,
|
|
22385
|
+
GetIntegrationTilbySyncMenuProcessDetails,
|
|
22386
|
+
GetIntegrationTilbySyncMenuProcesses,
|
|
22387
|
+
GetIntegrationTilbySyncOrdersErrorLogDetails,
|
|
22388
|
+
GetIntegrationTilbySyncOrdersErrorLogs,
|
|
22389
|
+
GetIntegrationTilbySyncOrdersProcessDetails,
|
|
22390
|
+
GetIntegrationTilbySyncOrdersProcesses,
|
|
22391
|
+
GetIntegrationTilbyVatMappingDetails,
|
|
22392
|
+
GetIntegrationTilbyVatMappings,
|
|
22393
|
+
GetIntegrationTilbyWebHookEventDetails,
|
|
22394
|
+
GetIntegrationTilbyWebHookEvents,
|
|
22395
|
+
GetIntegrationTilbyWebHookSettingDetails,
|
|
22396
|
+
GetIntegrationTilbyWebHookSettings,
|
|
20419
22397
|
GetIntegrations,
|
|
20420
22398
|
GetIntegrationsFromPointOfSale,
|
|
20421
22399
|
IntegrationCassaInCloudSyncCustomers,
|
|
@@ -20430,12 +22408,17 @@ export {
|
|
|
20430
22408
|
IntegrationGlovoSyncMenu,
|
|
20431
22409
|
IntegrationJustEatSyncMenu,
|
|
20432
22410
|
IntegrationJustEatSyncOpeningTimes,
|
|
22411
|
+
IntegrationTilbySyncCustomers,
|
|
22412
|
+
IntegrationTilbySyncFiscalMappings,
|
|
22413
|
+
IntegrationTilbySyncMenu,
|
|
22414
|
+
IntegrationTilbySyncOrders,
|
|
20433
22415
|
RespondIntegrationActivationRequest,
|
|
20434
22416
|
SendIntegrationActivationRequestToPartner,
|
|
20435
22417
|
UpdateIntegration,
|
|
20436
22418
|
UpdateIntegrationActivationRequest,
|
|
20437
22419
|
UpdateIntegrationCassaInCloud,
|
|
20438
22420
|
UpdateIntegrationDeliveroo,
|
|
22421
|
+
UpdateIntegrationDeliverooSiteDayOff,
|
|
20439
22422
|
UpdateIntegrationDeliverooSiteStatus,
|
|
20440
22423
|
UpdateIntegrationEcommerce,
|
|
20441
22424
|
UpdateIntegrationGlovo,
|
|
@@ -20443,6 +22426,13 @@ export {
|
|
|
20443
22426
|
UpdateIntegrationJustEat,
|
|
20444
22427
|
UpdateIntegrationJustEatRestaurantStatus,
|
|
20445
22428
|
UpdateIntegrationKitchen,
|
|
22429
|
+
UpdateIntegrationTilby,
|
|
22430
|
+
UpdateIntegrationTilbyCategoryMapping,
|
|
22431
|
+
UpdateIntegrationTilbyComponentMapping,
|
|
22432
|
+
UpdateIntegrationTilbyDepartmentMapping,
|
|
22433
|
+
UpdateIntegrationTilbyProductMapping,
|
|
22434
|
+
UpdateIntegrationTilbyProductVariantMapping,
|
|
22435
|
+
UpdateIntegrationTilbyVatMapping,
|
|
20446
22436
|
activatableIntegrationBaseSchema,
|
|
20447
22437
|
activatableIntegrationHealthStatusSchema,
|
|
20448
22438
|
activatableIntegrationHealthStatuses,
|
|
@@ -20455,6 +22445,8 @@ export {
|
|
|
20455
22445
|
annotateIntegrationActivationRequestResponseSchema,
|
|
20456
22446
|
cancelIntegrationCancellationRequestInputSchema,
|
|
20457
22447
|
cancelIntegrationCancellationRequestResponseSchema,
|
|
22448
|
+
cancelIntegrationDeliverooSiteDayOffInputSchema,
|
|
22449
|
+
cancelIntegrationDeliverooSiteDayOffResponseSchema,
|
|
20458
22450
|
clientLogRequestQuerySchema,
|
|
20459
22451
|
createIntegrationActivationRequestInputSchema,
|
|
20460
22452
|
createIntegrationActivationRequestResponseSchema,
|
|
@@ -20464,6 +22456,8 @@ export {
|
|
|
20464
22456
|
createIntegrationCassaInCloudResponseSchema,
|
|
20465
22457
|
createIntegrationDeliverooInputSchema,
|
|
20466
22458
|
createIntegrationDeliverooResponseSchema,
|
|
22459
|
+
createIntegrationDeliverooSiteDayOffInputSchema,
|
|
22460
|
+
createIntegrationDeliverooSiteDayOffResponseSchema,
|
|
20467
22461
|
createIntegrationEcommerceInputSchema,
|
|
20468
22462
|
createIntegrationEcommerceResponseSchema,
|
|
20469
22463
|
createIntegrationGlovoInputSchema,
|
|
@@ -20474,6 +22468,8 @@ export {
|
|
|
20474
22468
|
createIntegrationKitchenAccessTokenResponseSchema,
|
|
20475
22469
|
createIntegrationKitchenInputSchema,
|
|
20476
22470
|
createIntegrationKitchenResponseSchema,
|
|
22471
|
+
createIntegrationTilbyInputSchema,
|
|
22472
|
+
createIntegrationTilbyResponseSchema,
|
|
20477
22473
|
deleteIntegrationActivationRequestInputSchema,
|
|
20478
22474
|
deleteIntegrationActivationRequestResponseSchema,
|
|
20479
22475
|
deleteIntegrationCancellationRequestInputSchema,
|
|
@@ -20494,6 +22490,8 @@ export {
|
|
|
20494
22490
|
deleteIntegrationKitchenInputSchema,
|
|
20495
22491
|
deleteIntegrationKitchenResponseSchema,
|
|
20496
22492
|
deleteIntegrationResponseSchema,
|
|
22493
|
+
deleteIntegrationTilbyInputSchema,
|
|
22494
|
+
deleteIntegrationTilbyResponseSchema,
|
|
20497
22495
|
exclusiveIntegrationServiceSchema,
|
|
20498
22496
|
exclusiveIntegrationServices,
|
|
20499
22497
|
getIntegrationActivationRequestDetailsInputSchema,
|
|
@@ -20677,6 +22675,9 @@ export {
|
|
|
20677
22675
|
getIntegrationDeliverooGlobalClientLogRequestsInputSchema,
|
|
20678
22676
|
getIntegrationDeliverooGlobalClientLogRequestsQuerySchema,
|
|
20679
22677
|
getIntegrationDeliverooGlobalClientLogRequestsResponseSchema,
|
|
22678
|
+
getIntegrationDeliverooIntegrationSiteDaysOffInputSchema,
|
|
22679
|
+
getIntegrationDeliverooIntegrationSiteDaysOffQuerySchema,
|
|
22680
|
+
getIntegrationDeliverooIntegrationSiteDaysOffResponseSchema,
|
|
20680
22681
|
getIntegrationDeliverooListInputSchema,
|
|
20681
22682
|
getIntegrationDeliverooListQuerySchema,
|
|
20682
22683
|
getIntegrationDeliverooListResponseSchema,
|
|
@@ -20799,6 +22800,11 @@ export {
|
|
|
20799
22800
|
getIntegrationJustEatListInputSchema,
|
|
20800
22801
|
getIntegrationJustEatListQuerySchema,
|
|
20801
22802
|
getIntegrationJustEatListResponseSchema,
|
|
22803
|
+
getIntegrationJustEatMenuItemAvailabilityDeltaDetailsInputSchema,
|
|
22804
|
+
getIntegrationJustEatMenuItemAvailabilityDeltaDetailsResponseSchema,
|
|
22805
|
+
getIntegrationJustEatMenuItemAvailabilityDeltasInputSchema,
|
|
22806
|
+
getIntegrationJustEatMenuItemAvailabilityDeltasQuerySchema,
|
|
22807
|
+
getIntegrationJustEatMenuItemAvailabilityDeltasResponseSchema,
|
|
20802
22808
|
getIntegrationJustEatMenuValidationInputSchema,
|
|
20803
22809
|
getIntegrationJustEatMenuValidationResponseSchema,
|
|
20804
22810
|
getIntegrationJustEatMenuVersionDetailsInputSchema,
|
|
@@ -20829,6 +22835,104 @@ export {
|
|
|
20829
22835
|
getIntegrationKitchenListInputSchema,
|
|
20830
22836
|
getIntegrationKitchenListQuerySchema,
|
|
20831
22837
|
getIntegrationKitchenListResponseSchema,
|
|
22838
|
+
getIntegrationTilbyCategoryMappingDetailsInputSchema,
|
|
22839
|
+
getIntegrationTilbyCategoryMappingDetailsResponseSchema,
|
|
22840
|
+
getIntegrationTilbyCategoryMappingsInputSchema,
|
|
22841
|
+
getIntegrationTilbyCategoryMappingsQuerySchema,
|
|
22842
|
+
getIntegrationTilbyCategoryMappingsResponseSchema,
|
|
22843
|
+
getIntegrationTilbyComponentMappingDetailsInputSchema,
|
|
22844
|
+
getIntegrationTilbyComponentMappingDetailsResponseSchema,
|
|
22845
|
+
getIntegrationTilbyComponentMappingsInputSchema,
|
|
22846
|
+
getIntegrationTilbyComponentMappingsQuerySchema,
|
|
22847
|
+
getIntegrationTilbyComponentMappingsResponseSchema,
|
|
22848
|
+
getIntegrationTilbyCustomerMappingDetailsInputSchema,
|
|
22849
|
+
getIntegrationTilbyCustomerMappingDetailsResponseSchema,
|
|
22850
|
+
getIntegrationTilbyCustomerMappingsInputSchema,
|
|
22851
|
+
getIntegrationTilbyCustomerMappingsQuerySchema,
|
|
22852
|
+
getIntegrationTilbyCustomerMappingsResponseSchema,
|
|
22853
|
+
getIntegrationTilbyDepartmentMappingDetailsInputSchema,
|
|
22854
|
+
getIntegrationTilbyDepartmentMappingDetailsResponseSchema,
|
|
22855
|
+
getIntegrationTilbyDepartmentMappingsInputSchema,
|
|
22856
|
+
getIntegrationTilbyDepartmentMappingsQuerySchema,
|
|
22857
|
+
getIntegrationTilbyDepartmentMappingsResponseSchema,
|
|
22858
|
+
getIntegrationTilbyDetailsInputSchema,
|
|
22859
|
+
getIntegrationTilbyDetailsResponseSchema,
|
|
22860
|
+
getIntegrationTilbyListInputSchema,
|
|
22861
|
+
getIntegrationTilbyListQuerySchema,
|
|
22862
|
+
getIntegrationTilbyListResponseSchema,
|
|
22863
|
+
getIntegrationTilbyOrderMappingDetailsInputSchema,
|
|
22864
|
+
getIntegrationTilbyOrderMappingDetailsResponseSchema,
|
|
22865
|
+
getIntegrationTilbyOrderMappingsFromOrderInputSchema,
|
|
22866
|
+
getIntegrationTilbyOrderMappingsFromOrderQuerySchema,
|
|
22867
|
+
getIntegrationTilbyOrderMappingsFromOrderResponseSchema,
|
|
22868
|
+
getIntegrationTilbyOrderMappingsInputSchema,
|
|
22869
|
+
getIntegrationTilbyOrderMappingsQuerySchema,
|
|
22870
|
+
getIntegrationTilbyOrderMappingsResponseSchema,
|
|
22871
|
+
getIntegrationTilbyProductMappingDetailsInputSchema,
|
|
22872
|
+
getIntegrationTilbyProductMappingDetailsResponseSchema,
|
|
22873
|
+
getIntegrationTilbyProductMappingsInputSchema,
|
|
22874
|
+
getIntegrationTilbyProductMappingsQuerySchema,
|
|
22875
|
+
getIntegrationTilbyProductMappingsResponseSchema,
|
|
22876
|
+
getIntegrationTilbyProductVariantMappingDetailsInputSchema,
|
|
22877
|
+
getIntegrationTilbyProductVariantMappingDetailsResponseSchema,
|
|
22878
|
+
getIntegrationTilbyProductVariantMappingsInputSchema,
|
|
22879
|
+
getIntegrationTilbyProductVariantMappingsQuerySchema,
|
|
22880
|
+
getIntegrationTilbyProductVariantMappingsResponseSchema,
|
|
22881
|
+
getIntegrationTilbySyncCustomersErrorLogDetailsInputSchema,
|
|
22882
|
+
getIntegrationTilbySyncCustomersErrorLogDetailsResponseSchema,
|
|
22883
|
+
getIntegrationTilbySyncCustomersErrorLogsInputSchema,
|
|
22884
|
+
getIntegrationTilbySyncCustomersErrorLogsQuerySchema,
|
|
22885
|
+
getIntegrationTilbySyncCustomersErrorLogsResponseSchema,
|
|
22886
|
+
getIntegrationTilbySyncCustomersProcessDetailsInputSchema,
|
|
22887
|
+
getIntegrationTilbySyncCustomersProcessDetailsResponseSchema,
|
|
22888
|
+
getIntegrationTilbySyncCustomersProcessesInputSchema,
|
|
22889
|
+
getIntegrationTilbySyncCustomersProcessesQuerySchema,
|
|
22890
|
+
getIntegrationTilbySyncCustomersProcessesResponseSchema,
|
|
22891
|
+
getIntegrationTilbySyncFiscalMappingsErrorLogDetailsInputSchema,
|
|
22892
|
+
getIntegrationTilbySyncFiscalMappingsErrorLogDetailsResponseSchema,
|
|
22893
|
+
getIntegrationTilbySyncFiscalMappingsErrorLogsInputSchema,
|
|
22894
|
+
getIntegrationTilbySyncFiscalMappingsErrorLogsQuerySchema,
|
|
22895
|
+
getIntegrationTilbySyncFiscalMappingsErrorLogsResponseSchema,
|
|
22896
|
+
getIntegrationTilbySyncFiscalMappingsProcessDetailsInputSchema,
|
|
22897
|
+
getIntegrationTilbySyncFiscalMappingsProcessDetailsResponseSchema,
|
|
22898
|
+
getIntegrationTilbySyncFiscalMappingsProcessesInputSchema,
|
|
22899
|
+
getIntegrationTilbySyncFiscalMappingsProcessesQuerySchema,
|
|
22900
|
+
getIntegrationTilbySyncFiscalMappingsProcessesResponseSchema,
|
|
22901
|
+
getIntegrationTilbySyncMenuErrorLogDetailsInputSchema,
|
|
22902
|
+
getIntegrationTilbySyncMenuErrorLogDetailsResponseSchema,
|
|
22903
|
+
getIntegrationTilbySyncMenuErrorLogsInputSchema,
|
|
22904
|
+
getIntegrationTilbySyncMenuErrorLogsQuerySchema,
|
|
22905
|
+
getIntegrationTilbySyncMenuErrorLogsResponseSchema,
|
|
22906
|
+
getIntegrationTilbySyncMenuProcessDetailsInputSchema,
|
|
22907
|
+
getIntegrationTilbySyncMenuProcessDetailsResponseSchema,
|
|
22908
|
+
getIntegrationTilbySyncMenuProcessesInputSchema,
|
|
22909
|
+
getIntegrationTilbySyncMenuProcessesQuerySchema,
|
|
22910
|
+
getIntegrationTilbySyncMenuProcessesResponseSchema,
|
|
22911
|
+
getIntegrationTilbySyncOrdersErrorLogDetailsInputSchema,
|
|
22912
|
+
getIntegrationTilbySyncOrdersErrorLogDetailsResponseSchema,
|
|
22913
|
+
getIntegrationTilbySyncOrdersErrorLogsInputSchema,
|
|
22914
|
+
getIntegrationTilbySyncOrdersErrorLogsQuerySchema,
|
|
22915
|
+
getIntegrationTilbySyncOrdersErrorLogsResponseSchema,
|
|
22916
|
+
getIntegrationTilbySyncOrdersProcessDetailsInputSchema,
|
|
22917
|
+
getIntegrationTilbySyncOrdersProcessDetailsResponseSchema,
|
|
22918
|
+
getIntegrationTilbySyncOrdersProcessesInputSchema,
|
|
22919
|
+
getIntegrationTilbySyncOrdersProcessesQuerySchema,
|
|
22920
|
+
getIntegrationTilbySyncOrdersProcessesResponseSchema,
|
|
22921
|
+
getIntegrationTilbyVatMappingDetailsInputSchema,
|
|
22922
|
+
getIntegrationTilbyVatMappingDetailsResponseSchema,
|
|
22923
|
+
getIntegrationTilbyVatMappingsInputSchema,
|
|
22924
|
+
getIntegrationTilbyVatMappingsQuerySchema,
|
|
22925
|
+
getIntegrationTilbyVatMappingsResponseSchema,
|
|
22926
|
+
getIntegrationTilbyWebHookEventDetailsInputSchema,
|
|
22927
|
+
getIntegrationTilbyWebHookEventDetailsResponseSchema,
|
|
22928
|
+
getIntegrationTilbyWebHookEventsInputSchema,
|
|
22929
|
+
getIntegrationTilbyWebHookEventsQuerySchema,
|
|
22930
|
+
getIntegrationTilbyWebHookEventsResponseSchema,
|
|
22931
|
+
getIntegrationTilbyWebHookSettingDetailsInputSchema,
|
|
22932
|
+
getIntegrationTilbyWebHookSettingDetailsResponseSchema,
|
|
22933
|
+
getIntegrationTilbyWebHookSettingsInputSchema,
|
|
22934
|
+
getIntegrationTilbyWebHookSettingsQuerySchema,
|
|
22935
|
+
getIntegrationTilbyWebHookSettingsResponseSchema,
|
|
20832
22936
|
getIntegrationsFromPointOfSaleInputSchema,
|
|
20833
22937
|
getIntegrationsFromPointOfSaleQuerySchema,
|
|
20834
22938
|
getIntegrationsFromPointOfSaleResponseSchema,
|
|
@@ -21011,6 +23115,9 @@ export {
|
|
|
21011
23115
|
integrationDeliverooOrderSchema,
|
|
21012
23116
|
integrationDeliverooOrdersQuerySchema,
|
|
21013
23117
|
integrationDeliverooSchema,
|
|
23118
|
+
integrationDeliverooSiteDayOffInputSchema,
|
|
23119
|
+
integrationDeliverooSiteDayOffResponseSchema,
|
|
23120
|
+
integrationDeliverooSiteDaysOffResponseSchema,
|
|
21014
23121
|
integrationDeliverooSiteStatusSchema,
|
|
21015
23122
|
integrationDeliverooSiteStatuses,
|
|
21016
23123
|
integrationDeliverooSyncMenuInputSchema,
|
|
@@ -21103,6 +23210,9 @@ export {
|
|
|
21103
23210
|
integrationJustEatDetailsSchema,
|
|
21104
23211
|
integrationJustEatEditableFieldsSchema,
|
|
21105
23212
|
integrationJustEatIriSchema,
|
|
23213
|
+
integrationJustEatMenuItemAvailabilityDeltaDetailsSchema,
|
|
23214
|
+
integrationJustEatMenuItemAvailabilityDeltaSchema,
|
|
23215
|
+
integrationJustEatMenuItemAvailabilityDeltasQuerySchema,
|
|
21106
23216
|
integrationJustEatMenuTypeSchema,
|
|
21107
23217
|
integrationJustEatMenuTypes,
|
|
21108
23218
|
integrationJustEatMenuValidationQuerySchema,
|
|
@@ -21151,12 +23261,126 @@ export {
|
|
|
21151
23261
|
integrationServices,
|
|
21152
23262
|
integrationStatusSchema,
|
|
21153
23263
|
integrationStatuses,
|
|
23264
|
+
integrationTilbyCategoryMappingDetailsSchema,
|
|
23265
|
+
integrationTilbyCategoryMappingEditableFieldsSchema,
|
|
23266
|
+
integrationTilbyCategoryMappingIriSchema,
|
|
23267
|
+
integrationTilbyCategoryMappingNullableIriSchema,
|
|
23268
|
+
integrationTilbyCategoryMappingSchema,
|
|
23269
|
+
integrationTilbyCategoryMappingsQuerySchema,
|
|
23270
|
+
integrationTilbyComponentMappingDetailsSchema,
|
|
23271
|
+
integrationTilbyComponentMappingEditableFieldsSchema,
|
|
23272
|
+
integrationTilbyComponentMappingIriSchema,
|
|
23273
|
+
integrationTilbyComponentMappingNullableIriSchema,
|
|
23274
|
+
integrationTilbyComponentMappingSchema,
|
|
23275
|
+
integrationTilbyComponentMappingsQuerySchema,
|
|
23276
|
+
integrationTilbyCustomerMappingDetailsSchema,
|
|
23277
|
+
integrationTilbyCustomerMappingIriSchema,
|
|
23278
|
+
integrationTilbyCustomerMappingNullableIriSchema,
|
|
23279
|
+
integrationTilbyCustomerMappingSchema,
|
|
23280
|
+
integrationTilbyCustomerMappingsQuerySchema,
|
|
23281
|
+
integrationTilbyCustomersSyncStepSchema,
|
|
23282
|
+
integrationTilbyCustomersSyncSteps,
|
|
23283
|
+
integrationTilbyDepartmentMappingDetailsSchema,
|
|
23284
|
+
integrationTilbyDepartmentMappingEditableFieldsSchema,
|
|
23285
|
+
integrationTilbyDepartmentMappingIriSchema,
|
|
23286
|
+
integrationTilbyDepartmentMappingNullableIriSchema,
|
|
23287
|
+
integrationTilbyDepartmentMappingSchema,
|
|
23288
|
+
integrationTilbyDepartmentMappingsQuerySchema,
|
|
23289
|
+
integrationTilbyDetailsSchema,
|
|
23290
|
+
integrationTilbyEditableFieldsSchema,
|
|
23291
|
+
integrationTilbyEditableSyncSettingsSchema,
|
|
23292
|
+
integrationTilbyFiscalMappingsSyncStepSchema,
|
|
23293
|
+
integrationTilbyFiscalMappingsSyncSteps,
|
|
23294
|
+
integrationTilbyIriSchema,
|
|
23295
|
+
integrationTilbyMappingSyncFailureCodeSchema,
|
|
23296
|
+
integrationTilbyMappingSyncFailureCodes,
|
|
23297
|
+
integrationTilbyMappingSyncStateEditableFieldsSchema,
|
|
23298
|
+
integrationTilbyMappingSyncStateSchema,
|
|
23299
|
+
integrationTilbyMappingSyncStatusSchema,
|
|
23300
|
+
integrationTilbyMappingSyncStatuses,
|
|
23301
|
+
integrationTilbyMenuSyncStepSchema,
|
|
23302
|
+
integrationTilbyMenuSyncSteps,
|
|
23303
|
+
integrationTilbyNullableIriSchema,
|
|
23304
|
+
integrationTilbyOrderMappingDetailsSchema,
|
|
23305
|
+
integrationTilbyOrderMappingIriSchema,
|
|
23306
|
+
integrationTilbyOrderMappingNullableIriSchema,
|
|
23307
|
+
integrationTilbyOrderMappingSchema,
|
|
23308
|
+
integrationTilbyOrderMappingsQuerySchema,
|
|
23309
|
+
integrationTilbyOrdersSyncStepSchema,
|
|
23310
|
+
integrationTilbyOrdersSyncSteps,
|
|
23311
|
+
integrationTilbyProductMappingDetailsSchema,
|
|
23312
|
+
integrationTilbyProductMappingEditableFieldsSchema,
|
|
23313
|
+
integrationTilbyProductMappingIriSchema,
|
|
23314
|
+
integrationTilbyProductMappingNullableIriSchema,
|
|
23315
|
+
integrationTilbyProductMappingSchema,
|
|
23316
|
+
integrationTilbyProductMappingsQuerySchema,
|
|
23317
|
+
integrationTilbyProductVariantMappingDetailsSchema,
|
|
23318
|
+
integrationTilbyProductVariantMappingEditableFieldsSchema,
|
|
23319
|
+
integrationTilbyProductVariantMappingIriSchema,
|
|
23320
|
+
integrationTilbyProductVariantMappingNullableIriSchema,
|
|
23321
|
+
integrationTilbyProductVariantMappingSchema,
|
|
23322
|
+
integrationTilbyProductVariantMappingsQuerySchema,
|
|
23323
|
+
integrationTilbySchema,
|
|
23324
|
+
integrationTilbySyncCustomersErrorLogDetailsSchema,
|
|
23325
|
+
integrationTilbySyncCustomersErrorLogIriSchema,
|
|
23326
|
+
integrationTilbySyncCustomersErrorLogSchema,
|
|
23327
|
+
integrationTilbySyncCustomersErrorLogsQuerySchema,
|
|
23328
|
+
integrationTilbySyncCustomersProcessDetailsSchema,
|
|
23329
|
+
integrationTilbySyncCustomersProcessIriSchema,
|
|
23330
|
+
integrationTilbySyncCustomersProcessSchema,
|
|
23331
|
+
integrationTilbySyncCustomersProcessesQuerySchema,
|
|
23332
|
+
integrationTilbySyncDirectionSchema,
|
|
23333
|
+
integrationTilbySyncDirections,
|
|
23334
|
+
integrationTilbySyncFiscalMappingsErrorLogDetailsSchema,
|
|
23335
|
+
integrationTilbySyncFiscalMappingsErrorLogIriSchema,
|
|
23336
|
+
integrationTilbySyncFiscalMappingsErrorLogSchema,
|
|
23337
|
+
integrationTilbySyncFiscalMappingsErrorLogsQuerySchema,
|
|
23338
|
+
integrationTilbySyncFiscalMappingsProcessDetailsSchema,
|
|
23339
|
+
integrationTilbySyncFiscalMappingsProcessIriSchema,
|
|
23340
|
+
integrationTilbySyncFiscalMappingsProcessSchema,
|
|
23341
|
+
integrationTilbySyncFiscalMappingsProcessesQuerySchema,
|
|
23342
|
+
integrationTilbySyncMenuErrorLogDetailsSchema,
|
|
23343
|
+
integrationTilbySyncMenuErrorLogIriSchema,
|
|
23344
|
+
integrationTilbySyncMenuErrorLogSchema,
|
|
23345
|
+
integrationTilbySyncMenuErrorLogsQuerySchema,
|
|
23346
|
+
integrationTilbySyncMenuProcessDetailsSchema,
|
|
23347
|
+
integrationTilbySyncMenuProcessIriSchema,
|
|
23348
|
+
integrationTilbySyncMenuProcessSchema,
|
|
23349
|
+
integrationTilbySyncMenuProcessesQuerySchema,
|
|
23350
|
+
integrationTilbySyncModeSchema,
|
|
23351
|
+
integrationTilbySyncModes,
|
|
23352
|
+
integrationTilbySyncOrdersErrorLogDetailsSchema,
|
|
23353
|
+
integrationTilbySyncOrdersErrorLogIriSchema,
|
|
23354
|
+
integrationTilbySyncOrdersErrorLogSchema,
|
|
23355
|
+
integrationTilbySyncOrdersErrorLogsQuerySchema,
|
|
23356
|
+
integrationTilbySyncOrdersProcessDetailsSchema,
|
|
23357
|
+
integrationTilbySyncOrdersProcessIriSchema,
|
|
23358
|
+
integrationTilbySyncOrdersProcessSchema,
|
|
23359
|
+
integrationTilbySyncOrdersProcessesQuerySchema,
|
|
23360
|
+
integrationTilbySyncResponseSchema,
|
|
23361
|
+
integrationTilbySyncSettingsSchema,
|
|
23362
|
+
integrationTilbySyncTimesSchema,
|
|
23363
|
+
integrationTilbyVatMappingDetailsSchema,
|
|
23364
|
+
integrationTilbyVatMappingEditableFieldsSchema,
|
|
23365
|
+
integrationTilbyVatMappingIriSchema,
|
|
23366
|
+
integrationTilbyVatMappingNullableIriSchema,
|
|
23367
|
+
integrationTilbyVatMappingSchema,
|
|
23368
|
+
integrationTilbyVatMappingsQuerySchema,
|
|
23369
|
+
integrationTilbyWebHookEventDetailsSchema,
|
|
23370
|
+
integrationTilbyWebHookEventIriSchema,
|
|
23371
|
+
integrationTilbyWebHookEventSchema,
|
|
23372
|
+
integrationTilbyWebHookEventsQuerySchema,
|
|
23373
|
+
integrationTilbyWebHookSettingDetailsSchema,
|
|
23374
|
+
integrationTilbyWebHookSettingIriSchema,
|
|
23375
|
+
integrationTilbyWebHookSettingSchema,
|
|
23376
|
+
integrationTilbyWebHookSettingsQuerySchema,
|
|
21154
23377
|
integrationsCassaInCloudQuerySchema,
|
|
21155
23378
|
integrationsDeliverooQuerySchema,
|
|
21156
23379
|
integrationsEcommerceQuerySchema,
|
|
21157
23380
|
integrationsGlovoQuerySchema,
|
|
21158
23381
|
integrationsJustEatQuerySchema,
|
|
21159
23382
|
integrationsKitchenQuerySchema,
|
|
23383
|
+
integrationsTilbyQuerySchema,
|
|
21160
23384
|
menuVersionDetailsSchema,
|
|
21161
23385
|
menuVersionSchema,
|
|
21162
23386
|
respondIntegrationActivationRequestInputSchema,
|
|
@@ -21169,6 +23393,8 @@ export {
|
|
|
21169
23393
|
updateIntegrationCassaInCloudResponseSchema,
|
|
21170
23394
|
updateIntegrationDeliverooInputSchema,
|
|
21171
23395
|
updateIntegrationDeliverooResponseSchema,
|
|
23396
|
+
updateIntegrationDeliverooSiteDayOffInputSchema,
|
|
23397
|
+
updateIntegrationDeliverooSiteDayOffResponseSchema,
|
|
21172
23398
|
updateIntegrationDeliverooSiteStatusInputSchema,
|
|
21173
23399
|
updateIntegrationDeliverooSiteStatusResponseSchema,
|
|
21174
23400
|
updateIntegrationEcommerceInputSchema,
|
|
@@ -21185,5 +23411,19 @@ export {
|
|
|
21185
23411
|
updateIntegrationKitchenInputSchema,
|
|
21186
23412
|
updateIntegrationKitchenResponseSchema,
|
|
21187
23413
|
updateIntegrationResponseSchema,
|
|
23414
|
+
updateIntegrationTilbyCategoryMappingInputSchema,
|
|
23415
|
+
updateIntegrationTilbyCategoryMappingResponseSchema,
|
|
23416
|
+
updateIntegrationTilbyComponentMappingInputSchema,
|
|
23417
|
+
updateIntegrationTilbyComponentMappingResponseSchema,
|
|
23418
|
+
updateIntegrationTilbyDepartmentMappingInputSchema,
|
|
23419
|
+
updateIntegrationTilbyDepartmentMappingResponseSchema,
|
|
23420
|
+
updateIntegrationTilbyInputSchema,
|
|
23421
|
+
updateIntegrationTilbyProductMappingInputSchema,
|
|
23422
|
+
updateIntegrationTilbyProductMappingResponseSchema,
|
|
23423
|
+
updateIntegrationTilbyProductVariantMappingInputSchema,
|
|
23424
|
+
updateIntegrationTilbyProductVariantMappingResponseSchema,
|
|
23425
|
+
updateIntegrationTilbyResponseSchema,
|
|
23426
|
+
updateIntegrationTilbyVatMappingInputSchema,
|
|
23427
|
+
updateIntegrationTilbyVatMappingResponseSchema,
|
|
21188
23428
|
writableIntegrationSchema
|
|
21189
23429
|
};
|