@deliverart/sdk-js-integration 2.3.5 → 2.3.6
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 +129 -21
- package/dist/index.d.cts +208 -13
- package/dist/index.d.ts +208 -13
- package/dist/index.js +123 -22
- package/package.json +7 -6
package/dist/index.cjs
CHANGED
|
@@ -76,6 +76,8 @@ __export(index_exports, {
|
|
|
76
76
|
GetIntegrationJustEatList: () => GetIntegrationJustEatList,
|
|
77
77
|
GetIntegrationJustEatMenuVersionDetails: () => GetIntegrationJustEatMenuVersionDetails,
|
|
78
78
|
GetIntegrationJustEatMenuVersions: () => GetIntegrationJustEatMenuVersions,
|
|
79
|
+
GetIntegrationJustEatOrderDetails: () => GetIntegrationJustEatOrderDetails,
|
|
80
|
+
GetIntegrationJustEatOrders: () => GetIntegrationJustEatOrders,
|
|
79
81
|
GetIntegrationJustEatSyncMenuProcessDetails: () => GetIntegrationJustEatSyncMenuProcessDetails,
|
|
80
82
|
GetIntegrationJustEatSyncMenuProcesses: () => GetIntegrationJustEatSyncMenuProcesses,
|
|
81
83
|
GetIntegrations: () => GetIntegrations,
|
|
@@ -241,6 +243,11 @@ __export(index_exports, {
|
|
|
241
243
|
getIntegrationJustEatMenuVersionsInputSchema: () => getIntegrationJustEatMenuVersionsInputSchema,
|
|
242
244
|
getIntegrationJustEatMenuVersionsQuerySchema: () => getIntegrationJustEatMenuVersionsQuerySchema,
|
|
243
245
|
getIntegrationJustEatMenuVersionsResponseSchema: () => getIntegrationJustEatMenuVersionsResponseSchema,
|
|
246
|
+
getIntegrationJustEatOrderDetailsInputSchema: () => getIntegrationJustEatOrderDetailsInputSchema,
|
|
247
|
+
getIntegrationJustEatOrderDetailsResponseSchema: () => getIntegrationJustEatOrderDetailsResponseSchema,
|
|
248
|
+
getIntegrationJustEatOrdersInputSchema: () => getIntegrationJustEatOrdersInputSchema,
|
|
249
|
+
getIntegrationJustEatOrdersQuerySchema: () => getIntegrationJustEatOrdersQuerySchema,
|
|
250
|
+
getIntegrationJustEatOrdersResponseSchema: () => getIntegrationJustEatOrdersResponseSchema,
|
|
244
251
|
getIntegrationJustEatSyncMenuProcessDetailsInputSchema: () => getIntegrationJustEatSyncMenuProcessDetailsInputSchema,
|
|
245
252
|
getIntegrationJustEatSyncMenuProcessDetailsResponseSchema: () => getIntegrationJustEatSyncMenuProcessDetailsResponseSchema,
|
|
246
253
|
getIntegrationJustEatSyncMenuProcessesInputSchema: () => getIntegrationJustEatSyncMenuProcessesInputSchema,
|
|
@@ -358,6 +365,9 @@ __export(index_exports, {
|
|
|
358
365
|
integrationJustEatMenuVersionIriSchema: () => integrationJustEatMenuVersionIriSchema,
|
|
359
366
|
integrationJustEatMenuVersionNullableIriSchema: () => integrationJustEatMenuVersionNullableIriSchema,
|
|
360
367
|
integrationJustEatNullableIriSchema: () => integrationJustEatNullableIriSchema,
|
|
368
|
+
integrationJustEatOrderDetailsSchema: () => integrationJustEatOrderDetailsSchema,
|
|
369
|
+
integrationJustEatOrderSchema: () => integrationJustEatOrderSchema,
|
|
370
|
+
integrationJustEatOrdersQueryParamsSchema: () => integrationJustEatOrdersQueryParamsSchema,
|
|
361
371
|
integrationJustEatRestaurantStatusSchema: () => integrationJustEatRestaurantStatusSchema,
|
|
362
372
|
integrationJustEatRestaurantStatuses: () => integrationJustEatRestaurantStatuses,
|
|
363
373
|
integrationJustEatSchema: () => integrationJustEatSchema,
|
|
@@ -12122,11 +12132,12 @@ var integrationDeliverooSyncMenuProcessesQuerySchema = external_exports.object({
|
|
|
12122
12132
|
var integrationDeliverooWebhookEventSchema = external_exports.object({
|
|
12123
12133
|
id: external_exports.string(),
|
|
12124
12134
|
event: integrationDeliverooWebhookEventTypeSchema,
|
|
12125
|
-
body: external_exports.any(),
|
|
12126
12135
|
createdAt: import_sdk_js_global_types7.datetimeSchema
|
|
12127
12136
|
});
|
|
12128
12137
|
var integrationDeliverooWebhookEventDetailsSchema = integrationDeliverooWebhookEventSchema.extend({
|
|
12129
|
-
integration: integrationDeliverooIriSchema
|
|
12138
|
+
integration: integrationDeliverooIriSchema,
|
|
12139
|
+
bodyFilePath: external_exports.string(),
|
|
12140
|
+
bodyContentUrl: external_exports.url()
|
|
12130
12141
|
});
|
|
12131
12142
|
var integrationDeliverooWebhookEventsQueryParamsSchema = external_exports.object({
|
|
12132
12143
|
"order[createdAt]": import_sdk_js_global_types7.sortDirSchema.optional(),
|
|
@@ -12189,11 +12200,12 @@ var integrationsGlovoQuerySchema = external_exports.object({
|
|
|
12189
12200
|
var integrationGlovoWebhookEventSchema = external_exports.object({
|
|
12190
12201
|
id: external_exports.string(),
|
|
12191
12202
|
event: integrationGlovoWebhookEventTypeSchema,
|
|
12192
|
-
body: external_exports.any(),
|
|
12193
12203
|
createdAt: import_sdk_js_global_types8.datetimeSchema
|
|
12194
12204
|
});
|
|
12195
12205
|
var integrationGlovoWebhookEventDetailsSchema = integrationGlovoWebhookEventSchema.extend({
|
|
12196
|
-
integration: integrationGlovoIriSchema
|
|
12206
|
+
integration: integrationGlovoIriSchema,
|
|
12207
|
+
bodyFilePath: external_exports.string(),
|
|
12208
|
+
bodyContentUrl: external_exports.url()
|
|
12197
12209
|
});
|
|
12198
12210
|
var integrationGlovoWebhookEventsQueryParamsSchema = external_exports.object({
|
|
12199
12211
|
"order[createdAt]": import_sdk_js_global_types8.sortDirSchema.optional(),
|
|
@@ -12247,6 +12259,7 @@ var integrationGlovoMenuUpdatesQuerySchema = external_exports.object({
|
|
|
12247
12259
|
|
|
12248
12260
|
// src/service-schemas/justeat.ts
|
|
12249
12261
|
var import_sdk_js_global_types9 = require("@deliverart/sdk-js-global-types");
|
|
12262
|
+
var import_sdk_js_order = require("@deliverart/sdk-js-order");
|
|
12250
12263
|
var integrationJustEatSchema = integrationBaseSchema.omit({ service: true, errors: true }).extend(integrationDeliveryProviderCommonSchema.shape).extend({
|
|
12251
12264
|
syncType: integrationJustEatSyncTypeSchema,
|
|
12252
12265
|
defaultLanguage: external_exports.string(),
|
|
@@ -12320,6 +12333,37 @@ var integrationJustEatSyncMenuProcessesQuerySchema = external_exports.object({
|
|
|
12320
12333
|
"order[createdAt]": import_sdk_js_global_types9.sortDirSchema.optional(),
|
|
12321
12334
|
page: external_exports.coerce.number().optional()
|
|
12322
12335
|
});
|
|
12336
|
+
var integrationJustEatOrderSchema = external_exports.object({
|
|
12337
|
+
id: external_exports.string(),
|
|
12338
|
+
order: import_sdk_js_order.orderIriSchema,
|
|
12339
|
+
justEatOrderId: external_exports.string(),
|
|
12340
|
+
error: external_exports.any().nullable(),
|
|
12341
|
+
cancellationReason: external_exports.string().nullable(),
|
|
12342
|
+
justEatThirdPartyOrderReferenceId: external_exports.string().nullable(),
|
|
12343
|
+
createdAt: import_sdk_js_global_types9.datetimeSchema,
|
|
12344
|
+
processedAt: import_sdk_js_global_types9.datetimeSchema.nullable(),
|
|
12345
|
+
cancelledAt: import_sdk_js_global_types9.datetimeSchema.nullable()
|
|
12346
|
+
});
|
|
12347
|
+
var integrationJustEatOrderDetailsSchema = integrationJustEatOrderSchema.extend({
|
|
12348
|
+
integration: integrationJustEatIriSchema,
|
|
12349
|
+
bodyFilePath: external_exports.string(),
|
|
12350
|
+
bodyContentUrl: external_exports.url()
|
|
12351
|
+
});
|
|
12352
|
+
var integrationJustEatOrdersQueryParamsSchema = external_exports.object({
|
|
12353
|
+
"order[createdAt]": import_sdk_js_global_types9.sortDirSchema.optional(),
|
|
12354
|
+
"order[processedAt]": import_sdk_js_global_types9.sortDirSchema.optional(),
|
|
12355
|
+
justEatOrderId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
12356
|
+
justEatThirdPartyOrderReferenceId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
12357
|
+
"createdAt[before]": external_exports.string().optional(),
|
|
12358
|
+
"createdAt[strictly_before]": external_exports.string().optional(),
|
|
12359
|
+
"createdAt[after]": external_exports.string().optional(),
|
|
12360
|
+
"createdAt[strictly_after]": external_exports.string().optional(),
|
|
12361
|
+
"processedAt[before]": external_exports.string().optional(),
|
|
12362
|
+
"processedAt[strictly_before]": external_exports.string().optional(),
|
|
12363
|
+
"processedAt[after]": external_exports.string().optional(),
|
|
12364
|
+
"processedAt[strictly_after]": external_exports.string().optional(),
|
|
12365
|
+
page: external_exports.coerce.number().optional()
|
|
12366
|
+
});
|
|
12323
12367
|
|
|
12324
12368
|
// src/integration-schemas.ts
|
|
12325
12369
|
var integrationSchema = external_exports.discriminatedUnion("service", [
|
|
@@ -14276,11 +14320,65 @@ var GetIntegrationJustEatMenuVersions = class extends import_sdk_js_core75.Abstr
|
|
|
14276
14320
|
}
|
|
14277
14321
|
};
|
|
14278
14322
|
|
|
14279
|
-
// src/requests/services/justeat/
|
|
14323
|
+
// src/requests/services/justeat/GetIntegrationJustEatOrderDetails.ts
|
|
14280
14324
|
var import_sdk_js_core76 = require("@deliverart/sdk-js-core");
|
|
14325
|
+
var getIntegrationJustEatOrderDetailsInputSchema = external_exports.undefined();
|
|
14326
|
+
var getIntegrationJustEatOrderDetailsResponseSchema = integrationJustEatOrderDetailsSchema;
|
|
14327
|
+
var GetIntegrationJustEatOrderDetails = class extends import_sdk_js_core76.AbstractApiRequest {
|
|
14328
|
+
constructor(integrationJustEatId, orderId) {
|
|
14329
|
+
super(void 0);
|
|
14330
|
+
this.method = "GET";
|
|
14331
|
+
this.contentType = "application/json";
|
|
14332
|
+
this.accept = "application/json";
|
|
14333
|
+
this.inputSchema = getIntegrationJustEatOrderDetailsInputSchema;
|
|
14334
|
+
this.outputSchema = getIntegrationJustEatOrderDetailsResponseSchema;
|
|
14335
|
+
this.querySchema = void 0;
|
|
14336
|
+
this.headersSchema = void 0;
|
|
14337
|
+
this.integrationJustEatId = integrationJustEatId;
|
|
14338
|
+
this.orderId = orderId;
|
|
14339
|
+
}
|
|
14340
|
+
getPath() {
|
|
14341
|
+
return `/integrations/justeat/${this.integrationJustEatId}/orders/${this.orderId}`;
|
|
14342
|
+
}
|
|
14343
|
+
};
|
|
14344
|
+
|
|
14345
|
+
// src/requests/services/justeat/GetIntegrationJustEatOrders.ts
|
|
14346
|
+
var import_sdk_js_core77 = require("@deliverart/sdk-js-core");
|
|
14347
|
+
var import_sdk_js_global_types32 = require("@deliverart/sdk-js-global-types");
|
|
14348
|
+
var getIntegrationJustEatOrdersQuerySchema = integrationJustEatOrdersQueryParamsSchema;
|
|
14349
|
+
var getIntegrationJustEatOrdersInputSchema = external_exports.undefined();
|
|
14350
|
+
var getIntegrationJustEatOrdersResponseSchema = (0, import_sdk_js_global_types32.createPaginatedSchema)(
|
|
14351
|
+
integrationJustEatOrderSchema
|
|
14352
|
+
);
|
|
14353
|
+
var GetIntegrationJustEatOrders = class extends import_sdk_js_core77.AbstractApiRequest {
|
|
14354
|
+
constructor(integrationJustEatId, options) {
|
|
14355
|
+
super(void 0, options);
|
|
14356
|
+
this.method = "GET";
|
|
14357
|
+
this.contentType = "application/json";
|
|
14358
|
+
this.accept = "application/json";
|
|
14359
|
+
this.inputSchema = getIntegrationJustEatOrdersInputSchema;
|
|
14360
|
+
this.outputSchema = getIntegrationJustEatOrdersResponseSchema;
|
|
14361
|
+
this.querySchema = getIntegrationJustEatOrdersQuerySchema;
|
|
14362
|
+
this.headersSchema = void 0;
|
|
14363
|
+
this.integrationJustEatId = integrationJustEatId;
|
|
14364
|
+
}
|
|
14365
|
+
getPath() {
|
|
14366
|
+
return `/integrations/justeat/${this.integrationJustEatId}/orders`;
|
|
14367
|
+
}
|
|
14368
|
+
parseResponse(data, rawResponse) {
|
|
14369
|
+
const integrations = external_exports.array(integrationJustEatOrderSchema).parse(data);
|
|
14370
|
+
return this.validateOutput({
|
|
14371
|
+
data: integrations,
|
|
14372
|
+
pagination: (0, import_sdk_js_global_types32.responseToPagination)(rawResponse)
|
|
14373
|
+
});
|
|
14374
|
+
}
|
|
14375
|
+
};
|
|
14376
|
+
|
|
14377
|
+
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcessDetails.ts
|
|
14378
|
+
var import_sdk_js_core78 = require("@deliverart/sdk-js-core");
|
|
14281
14379
|
var getIntegrationJustEatSyncMenuProcessDetailsInputSchema = external_exports.undefined();
|
|
14282
14380
|
var getIntegrationJustEatSyncMenuProcessDetailsResponseSchema = integrationJustEatSyncMenuProcessDetailsSchema;
|
|
14283
|
-
var GetIntegrationJustEatSyncMenuProcessDetails = class extends
|
|
14381
|
+
var GetIntegrationJustEatSyncMenuProcessDetails = class extends import_sdk_js_core78.AbstractApiRequest {
|
|
14284
14382
|
constructor(integrationJustEatId, processId) {
|
|
14285
14383
|
super(void 0);
|
|
14286
14384
|
this.method = "GET";
|
|
@@ -14299,16 +14397,16 @@ var GetIntegrationJustEatSyncMenuProcessDetails = class extends import_sdk_js_co
|
|
|
14299
14397
|
};
|
|
14300
14398
|
|
|
14301
14399
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcesses.ts
|
|
14302
|
-
var
|
|
14303
|
-
var
|
|
14400
|
+
var import_sdk_js_core79 = require("@deliverart/sdk-js-core");
|
|
14401
|
+
var import_sdk_js_global_types33 = require("@deliverart/sdk-js-global-types");
|
|
14304
14402
|
var getIntegrationJustEatSyncMenuProcessesQuerySchema = external_exports.object({
|
|
14305
14403
|
page: external_exports.coerce.number().optional()
|
|
14306
14404
|
});
|
|
14307
14405
|
var getIntegrationJustEatSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
14308
|
-
var getIntegrationJustEatSyncMenuProcessesResponseSchema = (0,
|
|
14406
|
+
var getIntegrationJustEatSyncMenuProcessesResponseSchema = (0, import_sdk_js_global_types33.createPaginatedSchema)(
|
|
14309
14407
|
integrationJustEatSyncMenuProcessSchema
|
|
14310
14408
|
);
|
|
14311
|
-
var GetIntegrationJustEatSyncMenuProcesses = class extends
|
|
14409
|
+
var GetIntegrationJustEatSyncMenuProcesses = class extends import_sdk_js_core79.AbstractApiRequest {
|
|
14312
14410
|
constructor(integrationJustEatId, options) {
|
|
14313
14411
|
super(void 0, options);
|
|
14314
14412
|
this.method = "GET";
|
|
@@ -14327,16 +14425,16 @@ var GetIntegrationJustEatSyncMenuProcesses = class extends import_sdk_js_core77.
|
|
|
14327
14425
|
const integrations = external_exports.array(integrationJustEatSyncMenuProcessSchema).parse(data);
|
|
14328
14426
|
return this.validateOutput({
|
|
14329
14427
|
data: integrations,
|
|
14330
|
-
pagination: (0,
|
|
14428
|
+
pagination: (0, import_sdk_js_global_types33.responseToPagination)(rawResponse)
|
|
14331
14429
|
});
|
|
14332
14430
|
}
|
|
14333
14431
|
};
|
|
14334
14432
|
|
|
14335
14433
|
// src/requests/services/justeat/IntegrationJustEatSyncMenu.ts
|
|
14336
|
-
var
|
|
14434
|
+
var import_sdk_js_core80 = require("@deliverart/sdk-js-core");
|
|
14337
14435
|
var integrationJustEatSyncMenuInputSchema = external_exports.undefined();
|
|
14338
14436
|
var integrationJustEatSyncMenuResponseSchema = external_exports.undefined();
|
|
14339
|
-
var IntegrationJustEatSyncMenu = class extends
|
|
14437
|
+
var IntegrationJustEatSyncMenu = class extends import_sdk_js_core80.AbstractApiRequest {
|
|
14340
14438
|
constructor(integrationJustEatId) {
|
|
14341
14439
|
super(void 0);
|
|
14342
14440
|
this.method = "POST";
|
|
@@ -14354,10 +14452,10 @@ var IntegrationJustEatSyncMenu = class extends import_sdk_js_core78.AbstractApiR
|
|
|
14354
14452
|
};
|
|
14355
14453
|
|
|
14356
14454
|
// src/requests/services/justeat/IntegrationJustEatSyncOpeningTimes.ts
|
|
14357
|
-
var
|
|
14455
|
+
var import_sdk_js_core81 = require("@deliverart/sdk-js-core");
|
|
14358
14456
|
var integrationJustEatSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
14359
14457
|
var integrationJustEatSyncOpeningHoursResponseSchema = external_exports.undefined();
|
|
14360
|
-
var IntegrationJustEatSyncOpeningTimes = class extends
|
|
14458
|
+
var IntegrationJustEatSyncOpeningTimes = class extends import_sdk_js_core81.AbstractApiRequest {
|
|
14361
14459
|
constructor(integrationJustEatId) {
|
|
14362
14460
|
super(void 0);
|
|
14363
14461
|
this.method = "POST";
|
|
@@ -14375,10 +14473,10 @@ var IntegrationJustEatSyncOpeningTimes = class extends import_sdk_js_core79.Abst
|
|
|
14375
14473
|
};
|
|
14376
14474
|
|
|
14377
14475
|
// src/requests/services/justeat/UpdateIntegrationJustEat.ts
|
|
14378
|
-
var
|
|
14476
|
+
var import_sdk_js_core82 = require("@deliverart/sdk-js-core");
|
|
14379
14477
|
var updateIntegrationJustEatInputSchema = integrationJustEatEditableFieldsSchema.partial();
|
|
14380
14478
|
var updateIntegrationJustEatResponseSchema = integrationJustEatDetailsSchema;
|
|
14381
|
-
var UpdateIntegrationJustEat = class extends
|
|
14479
|
+
var UpdateIntegrationJustEat = class extends import_sdk_js_core82.AbstractApiRequest {
|
|
14382
14480
|
constructor(integrationJustEatId, input) {
|
|
14383
14481
|
super(input);
|
|
14384
14482
|
this.method = "PATCH";
|
|
@@ -14396,12 +14494,12 @@ var UpdateIntegrationJustEat = class extends import_sdk_js_core80.AbstractApiReq
|
|
|
14396
14494
|
};
|
|
14397
14495
|
|
|
14398
14496
|
// src/requests/services/justeat/UpdateIntegrationJustEatRestaurantStatus.ts
|
|
14399
|
-
var
|
|
14497
|
+
var import_sdk_js_core83 = require("@deliverart/sdk-js-core");
|
|
14400
14498
|
var updateIntegrationJustEatRestaurantStatusInputSchema = external_exports.object({
|
|
14401
14499
|
status: integrationJustEatRestaurantStatusSchema
|
|
14402
14500
|
});
|
|
14403
14501
|
var updateIntegrationJustEatRestaurantStatusResponseSchema = integrationJustEatDetailsSchema;
|
|
14404
|
-
var UpdateIntegrationJustEatRestaurantStatus = class extends
|
|
14502
|
+
var UpdateIntegrationJustEatRestaurantStatus = class extends import_sdk_js_core83.AbstractApiRequest {
|
|
14405
14503
|
constructor(integrationJustEatId, input) {
|
|
14406
14504
|
super(input);
|
|
14407
14505
|
this.method = "POST";
|
|
@@ -14419,10 +14517,10 @@ var UpdateIntegrationJustEatRestaurantStatus = class extends import_sdk_js_core8
|
|
|
14419
14517
|
};
|
|
14420
14518
|
|
|
14421
14519
|
// src/requests/UpdateIntegration.ts
|
|
14422
|
-
var
|
|
14520
|
+
var import_sdk_js_core84 = require("@deliverart/sdk-js-core");
|
|
14423
14521
|
var updateIntegrationInputSchema = writableIntegrationSchema.partial();
|
|
14424
14522
|
var updateIntegrationResponseSchema = integrationDetailsSchema;
|
|
14425
|
-
var UpdateIntegration = class extends
|
|
14523
|
+
var UpdateIntegration = class extends import_sdk_js_core84.AbstractApiRequest {
|
|
14426
14524
|
constructor(integrationId, input) {
|
|
14427
14525
|
super(input);
|
|
14428
14526
|
this.method = "PATCH";
|
|
@@ -14496,6 +14594,8 @@ var UpdateIntegration = class extends import_sdk_js_core82.AbstractApiRequest {
|
|
|
14496
14594
|
GetIntegrationJustEatList,
|
|
14497
14595
|
GetIntegrationJustEatMenuVersionDetails,
|
|
14498
14596
|
GetIntegrationJustEatMenuVersions,
|
|
14597
|
+
GetIntegrationJustEatOrderDetails,
|
|
14598
|
+
GetIntegrationJustEatOrders,
|
|
14499
14599
|
GetIntegrationJustEatSyncMenuProcessDetails,
|
|
14500
14600
|
GetIntegrationJustEatSyncMenuProcesses,
|
|
14501
14601
|
GetIntegrations,
|
|
@@ -14661,6 +14761,11 @@ var UpdateIntegration = class extends import_sdk_js_core82.AbstractApiRequest {
|
|
|
14661
14761
|
getIntegrationJustEatMenuVersionsInputSchema,
|
|
14662
14762
|
getIntegrationJustEatMenuVersionsQuerySchema,
|
|
14663
14763
|
getIntegrationJustEatMenuVersionsResponseSchema,
|
|
14764
|
+
getIntegrationJustEatOrderDetailsInputSchema,
|
|
14765
|
+
getIntegrationJustEatOrderDetailsResponseSchema,
|
|
14766
|
+
getIntegrationJustEatOrdersInputSchema,
|
|
14767
|
+
getIntegrationJustEatOrdersQuerySchema,
|
|
14768
|
+
getIntegrationJustEatOrdersResponseSchema,
|
|
14664
14769
|
getIntegrationJustEatSyncMenuProcessDetailsInputSchema,
|
|
14665
14770
|
getIntegrationJustEatSyncMenuProcessDetailsResponseSchema,
|
|
14666
14771
|
getIntegrationJustEatSyncMenuProcessesInputSchema,
|
|
@@ -14778,6 +14883,9 @@ var UpdateIntegration = class extends import_sdk_js_core82.AbstractApiRequest {
|
|
|
14778
14883
|
integrationJustEatMenuVersionIriSchema,
|
|
14779
14884
|
integrationJustEatMenuVersionNullableIriSchema,
|
|
14780
14885
|
integrationJustEatNullableIriSchema,
|
|
14886
|
+
integrationJustEatOrderDetailsSchema,
|
|
14887
|
+
integrationJustEatOrderSchema,
|
|
14888
|
+
integrationJustEatOrdersQueryParamsSchema,
|
|
14781
14889
|
integrationJustEatRestaurantStatusSchema,
|
|
14782
14890
|
integrationJustEatRestaurantStatuses,
|
|
14783
14891
|
integrationJustEatSchema,
|