@deliverart/sdk-js-integration 2.20.0 → 2.22.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 +268 -191
- package/dist/index.d.cts +3100 -406
- package/dist/index.d.ts +3100 -406
- package/dist/index.js +263 -183
- package/package.json +11 -11
package/dist/index.cjs
CHANGED
|
@@ -141,6 +141,7 @@ __export(index_exports, {
|
|
|
141
141
|
GetIntegrationEcommerceDetails: () => GetIntegrationEcommerceDetails,
|
|
142
142
|
GetIntegrationEcommerceInfo: () => GetIntegrationEcommerceInfo,
|
|
143
143
|
GetIntegrationEcommerceList: () => GetIntegrationEcommerceList,
|
|
144
|
+
GetIntegrationEcommerceSlotOptions: () => GetIntegrationEcommerceSlotOptions,
|
|
144
145
|
GetIntegrationGlovoBulkUpdateDetails: () => GetIntegrationGlovoBulkUpdateDetails,
|
|
145
146
|
GetIntegrationGlovoBulkUpdates: () => GetIntegrationGlovoBulkUpdates,
|
|
146
147
|
GetIntegrationGlovoClientLogRequestDetails: () => GetIntegrationGlovoClientLogRequestDetails,
|
|
@@ -569,6 +570,9 @@ __export(index_exports, {
|
|
|
569
570
|
getIntegrationEcommerceListInputSchema: () => getIntegrationEcommerceListInputSchema,
|
|
570
571
|
getIntegrationEcommerceListQuerySchema: () => getIntegrationEcommerceListQuerySchema,
|
|
571
572
|
getIntegrationEcommerceListResponseSchema: () => getIntegrationEcommerceListResponseSchema,
|
|
573
|
+
getIntegrationEcommerceSlotOptionsInputSchema: () => getIntegrationEcommerceSlotOptionsInputSchema,
|
|
574
|
+
getIntegrationEcommerceSlotOptionsQuerySchema: () => getIntegrationEcommerceSlotOptionsQuerySchema,
|
|
575
|
+
getIntegrationEcommerceSlotOptionsResponseSchema: () => getIntegrationEcommerceSlotOptionsResponseSchema,
|
|
572
576
|
getIntegrationGlovoBulkUpdateDetailsInputSchema: () => getIntegrationGlovoBulkUpdateDetailsInputSchema,
|
|
573
577
|
getIntegrationGlovoBulkUpdateDetailsResponseSchema: () => getIntegrationGlovoBulkUpdateDetailsResponseSchema,
|
|
574
578
|
getIntegrationGlovoBulkUpdatesInputSchema: () => getIntegrationGlovoBulkUpdatesInputSchema,
|
|
@@ -14973,6 +14977,11 @@ var integrationActivationRequestDetailsSchema = external_exports.discriminatedUn
|
|
|
14973
14977
|
pointOfSale: import_sdk_js_point_of_sale.pointOfSaleIriSchema,
|
|
14974
14978
|
service: external_exports.literal("tilby"),
|
|
14975
14979
|
data: activatable_integration_data_schemas_exports.integrationTilbyDataSchema
|
|
14980
|
+
}).extend(activatable_integration_exports.activatableIntegrationBaseSchema.shape),
|
|
14981
|
+
external_exports.object({
|
|
14982
|
+
pointOfSale: import_sdk_js_point_of_sale.pointOfSaleIriSchema,
|
|
14983
|
+
service: external_exports.literal("ecommerce"),
|
|
14984
|
+
data: activatable_integration_data_schemas_exports.integrationEcommerceDataSchema
|
|
14976
14985
|
}).extend(activatable_integration_exports.activatableIntegrationBaseSchema.shape)
|
|
14977
14986
|
]);
|
|
14978
14987
|
|
|
@@ -15921,12 +15930,23 @@ var integrationDeliverooSiteDaysOffResponseSchema = external_exports.object({
|
|
|
15921
15930
|
// src/service-schemas/ecommerce.ts
|
|
15922
15931
|
var import_sdk_js_global_types6 = require("@deliverart/sdk-js-global-types");
|
|
15923
15932
|
var import_sdk_js_menu2 = require("@deliverart/sdk-js-menu");
|
|
15933
|
+
var import_sdk_js_image2 = require("@deliverart/sdk-js-image");
|
|
15924
15934
|
var import_sdk_js_point_of_sale3 = require("@deliverart/sdk-js-point-of-sale");
|
|
15925
15935
|
var import_sdk_js_sales_mode3 = require("@deliverart/sdk-js-sales-mode");
|
|
15926
15936
|
var integrationEcommerceSchema = integrationBaseSchema.omit({ service: true }).extend({
|
|
15927
15937
|
path: external_exports.string(),
|
|
15928
15938
|
orderingModes: external_exports.array(types_exports.integrationEcommerceOrderingModeSchema).min(1),
|
|
15929
15939
|
minOrderValue: external_exports.coerce.number().nonnegative(),
|
|
15940
|
+
displayName: external_exports.string().nullable().default(null),
|
|
15941
|
+
tagline: external_exports.string().nullable().default(null),
|
|
15942
|
+
menuViewMode: types_exports.integrationEcommerceMenuViewModeSchema.default("editorial"),
|
|
15943
|
+
logo: import_sdk_js_image2.imageNullableIriSchema.default(null),
|
|
15944
|
+
heroImage: import_sdk_js_image2.imageNullableIriSchema.default(null),
|
|
15945
|
+
theme: types_exports.integrationEcommerceThemeSchema.default({
|
|
15946
|
+
primary: "#26745f",
|
|
15947
|
+
accent: "#d95f35",
|
|
15948
|
+
background: "#fbfaf7"
|
|
15949
|
+
}),
|
|
15930
15950
|
service: types_exports.integrationServiceSchema.extract(["ecommerce"])
|
|
15931
15951
|
});
|
|
15932
15952
|
var integrationEcommerceDetailsSchema = integrationEcommerceSchema.extend({
|
|
@@ -15937,6 +15957,12 @@ var integrationEcommerceEditableFieldsSchema = integrationEcommerceDetailsSchema
|
|
|
15937
15957
|
orderingModes: true,
|
|
15938
15958
|
salesMode: true,
|
|
15939
15959
|
minOrderValue: true,
|
|
15960
|
+
displayName: true,
|
|
15961
|
+
tagline: true,
|
|
15962
|
+
menuViewMode: true,
|
|
15963
|
+
logo: true,
|
|
15964
|
+
heroImage: true,
|
|
15965
|
+
theme: true,
|
|
15940
15966
|
provider: true
|
|
15941
15967
|
});
|
|
15942
15968
|
var integrationsEcommerceQuerySchema = external_exports.object({
|
|
@@ -16019,11 +16045,27 @@ var integrationEcommercePointOfSaleInfoSchema = external_exports.object({
|
|
|
16019
16045
|
location: import_sdk_js_global_types6.locationSchema,
|
|
16020
16046
|
openingTimeSettings: external_exports.array(import_sdk_js_point_of_sale3.timeSettingSchema),
|
|
16021
16047
|
deliveryTimeSettings: external_exports.array(import_sdk_js_point_of_sale3.deliveryTimeSettingSchema),
|
|
16022
|
-
collectionTimeSettings: external_exports.array(import_sdk_js_point_of_sale3.timeSettingSchema)
|
|
16048
|
+
collectionTimeSettings: external_exports.array(import_sdk_js_point_of_sale3.timeSettingSchema),
|
|
16049
|
+
deliveryArea: external_exports.object({
|
|
16050
|
+
checkEnabled: external_exports.boolean(),
|
|
16051
|
+
maxDistanceKm: external_exports.coerce.number().positive().nullable(),
|
|
16052
|
+
maxDurationMinutes: external_exports.coerce.number().int().positive().nullable()
|
|
16053
|
+
})
|
|
16023
16054
|
});
|
|
16024
16055
|
var integrationEcommerceInfoSchema = external_exports.object({
|
|
16025
16056
|
id: external_exports.string(),
|
|
16026
16057
|
path: external_exports.string(),
|
|
16058
|
+
displayName: external_exports.string().nullable().default(null),
|
|
16059
|
+
tagline: external_exports.string().nullable().default(null),
|
|
16060
|
+
minOrderValue: external_exports.coerce.number().nonnegative().default(0),
|
|
16061
|
+
menuViewMode: types_exports.integrationEcommerceMenuViewModeSchema.default("editorial"),
|
|
16062
|
+
logo: import_sdk_js_image2.imageSchema.nullable().default(null),
|
|
16063
|
+
heroImage: import_sdk_js_image2.imageSchema.nullable().default(null),
|
|
16064
|
+
theme: types_exports.integrationEcommerceThemeSchema.default({
|
|
16065
|
+
primary: "#26745f",
|
|
16066
|
+
accent: "#d95f35",
|
|
16067
|
+
background: "#fbfaf7"
|
|
16068
|
+
}),
|
|
16027
16069
|
orderingModes: external_exports.array(types_exports.integrationEcommerceOrderingModeSchema),
|
|
16028
16070
|
pointOfSale: integrationEcommercePointOfSaleInfoSchema,
|
|
16029
16071
|
company: integrationEcommerceCompanyInfoSchema,
|
|
@@ -17152,6 +17194,10 @@ var createIntegrationActivationRequestInputSchema = external_exports.discriminat
|
|
|
17152
17194
|
external_exports.object({
|
|
17153
17195
|
service: external_exports.literal("tilby"),
|
|
17154
17196
|
data: activatable_integration_data_schemas_exports.integrationTilbyDataSchema
|
|
17197
|
+
}).extend(writableIntegrationActivationRequestBaseSchema.shape),
|
|
17198
|
+
external_exports.object({
|
|
17199
|
+
service: external_exports.literal("ecommerce"),
|
|
17200
|
+
data: activatable_integration_data_schemas_exports.integrationEcommerceDataSchema
|
|
17155
17201
|
}).extend(writableIntegrationActivationRequestBaseSchema.shape)
|
|
17156
17202
|
]);
|
|
17157
17203
|
var createIntegrationActivationRequestResponseSchema = integrationActivationRequestDetailsSchema;
|
|
@@ -17381,6 +17427,10 @@ var updateIntegrationActivationRequestInputSchema = external_exports.discriminat
|
|
|
17381
17427
|
external_exports.object({
|
|
17382
17428
|
service: external_exports.literal("tilby"),
|
|
17383
17429
|
data: activatable_integration_data_schemas_exports.integrationTilbyDataSchema.optional()
|
|
17430
|
+
}).extend(writableIntegrationActivationRequestBaseSchema2.shape),
|
|
17431
|
+
external_exports.object({
|
|
17432
|
+
service: external_exports.literal("ecommerce"),
|
|
17433
|
+
data: activatable_integration_data_schemas_exports.integrationEcommerceDataSchema.optional()
|
|
17384
17434
|
}).extend(writableIntegrationActivationRequestBaseSchema2.shape)
|
|
17385
17435
|
]);
|
|
17386
17436
|
var updateIntegrationActivationRequestResponseSchema = integrationActivationRequestDetailsSchema;
|
|
@@ -20544,11 +20594,34 @@ var GetIntegrationEcommerceList = class extends import_sdk_js_core137.AbstractAp
|
|
|
20544
20594
|
}
|
|
20545
20595
|
};
|
|
20546
20596
|
|
|
20547
|
-
// src/requests/services/ecommerce/
|
|
20597
|
+
// src/requests/services/ecommerce/GetIntegrationEcommerceSlotOptions.ts
|
|
20548
20598
|
var import_sdk_js_core138 = require("@deliverart/sdk-js-core");
|
|
20599
|
+
var import_sdk_js_point_of_sale9 = require("@deliverart/sdk-js-point-of-sale");
|
|
20600
|
+
var getIntegrationEcommerceSlotOptionsQuerySchema = import_sdk_js_point_of_sale9.pointOfSaleSlotOptionsQuerySchema;
|
|
20601
|
+
var getIntegrationEcommerceSlotOptionsInputSchema = external_exports.undefined();
|
|
20602
|
+
var getIntegrationEcommerceSlotOptionsResponseSchema = import_sdk_js_point_of_sale9.pointOfSaleSlotOptionsResponseSchema;
|
|
20603
|
+
var GetIntegrationEcommerceSlotOptions = class extends import_sdk_js_core138.AbstractApiRequest {
|
|
20604
|
+
constructor(path, options) {
|
|
20605
|
+
super(void 0, options);
|
|
20606
|
+
this.method = "GET";
|
|
20607
|
+
this.contentType = "application/json";
|
|
20608
|
+
this.accept = "application/json";
|
|
20609
|
+
this.inputSchema = getIntegrationEcommerceSlotOptionsInputSchema;
|
|
20610
|
+
this.outputSchema = getIntegrationEcommerceSlotOptionsResponseSchema;
|
|
20611
|
+
this.querySchema = getIntegrationEcommerceSlotOptionsQuerySchema;
|
|
20612
|
+
this.headersSchema = void 0;
|
|
20613
|
+
this.path = path;
|
|
20614
|
+
}
|
|
20615
|
+
getPath() {
|
|
20616
|
+
return `/integrations/ecommerce/${this.path}/slot_options`;
|
|
20617
|
+
}
|
|
20618
|
+
};
|
|
20619
|
+
|
|
20620
|
+
// src/requests/services/ecommerce/UpdateIntegrationEcommerce.ts
|
|
20621
|
+
var import_sdk_js_core139 = require("@deliverart/sdk-js-core");
|
|
20549
20622
|
var updateIntegrationEcommerceInputSchema = integrationEcommerceEditableFieldsSchema.partial();
|
|
20550
20623
|
var updateIntegrationEcommerceResponseSchema = integrationEcommerceDetailsSchema;
|
|
20551
|
-
var UpdateIntegrationEcommerce = class extends
|
|
20624
|
+
var UpdateIntegrationEcommerce = class extends import_sdk_js_core139.AbstractApiRequest {
|
|
20552
20625
|
constructor(integrationEcommerceId, input) {
|
|
20553
20626
|
super(input);
|
|
20554
20627
|
this.method = "PATCH";
|
|
@@ -20566,13 +20639,13 @@ var UpdateIntegrationEcommerce = class extends import_sdk_js_core138.AbstractApi
|
|
|
20566
20639
|
};
|
|
20567
20640
|
|
|
20568
20641
|
// src/requests/services/glovo/CreateIntegrationGlovo.ts
|
|
20569
|
-
var
|
|
20570
|
-
var
|
|
20642
|
+
var import_sdk_js_core140 = require("@deliverart/sdk-js-core");
|
|
20643
|
+
var import_sdk_js_point_of_sale10 = require("@deliverart/sdk-js-point-of-sale");
|
|
20571
20644
|
var createIntegrationGlovoInputSchema = integrationGlovoEditableFieldsSchema.extend({
|
|
20572
|
-
pointOfSale:
|
|
20645
|
+
pointOfSale: import_sdk_js_point_of_sale10.pointOfSaleIriSchema
|
|
20573
20646
|
});
|
|
20574
20647
|
var createIntegrationGlovoResponseSchema = integrationGlovoDetailsSchema;
|
|
20575
|
-
var CreateIntegrationGlovo = class extends
|
|
20648
|
+
var CreateIntegrationGlovo = class extends import_sdk_js_core140.AbstractApiRequest {
|
|
20576
20649
|
constructor(input) {
|
|
20577
20650
|
super(input);
|
|
20578
20651
|
this.method = "POST";
|
|
@@ -20589,11 +20662,11 @@ var CreateIntegrationGlovo = class extends import_sdk_js_core139.AbstractApiRequ
|
|
|
20589
20662
|
};
|
|
20590
20663
|
|
|
20591
20664
|
// src/requests/services/glovo/DeleteIntegrationGlovo.ts
|
|
20592
|
-
var
|
|
20665
|
+
var import_sdk_js_core141 = require("@deliverart/sdk-js-core");
|
|
20593
20666
|
var import_sdk_js_global_types50 = require("@deliverart/sdk-js-global-types");
|
|
20594
20667
|
var deleteIntegrationGlovoInputSchema = external_exports.undefined();
|
|
20595
20668
|
var deleteIntegrationGlovoResponseSchema = import_sdk_js_global_types50.emptyResponseSchema;
|
|
20596
|
-
var DeleteIntegrationGlovo = class extends
|
|
20669
|
+
var DeleteIntegrationGlovo = class extends import_sdk_js_core141.AbstractApiRequest {
|
|
20597
20670
|
constructor(integrationGlovoId) {
|
|
20598
20671
|
super(void 0);
|
|
20599
20672
|
this.method = "DELETE";
|
|
@@ -20611,10 +20684,10 @@ var DeleteIntegrationGlovo = class extends import_sdk_js_core140.AbstractApiRequ
|
|
|
20611
20684
|
};
|
|
20612
20685
|
|
|
20613
20686
|
// src/requests/services/glovo/GetIntegrationGlovoBulkUpdateDetails.ts
|
|
20614
|
-
var
|
|
20687
|
+
var import_sdk_js_core142 = require("@deliverart/sdk-js-core");
|
|
20615
20688
|
var getIntegrationGlovoBulkUpdateDetailsInputSchema = external_exports.undefined();
|
|
20616
20689
|
var getIntegrationGlovoBulkUpdateDetailsResponseSchema = integrationGlovoBulkUpdateDetailsSchema;
|
|
20617
|
-
var GetIntegrationGlovoBulkUpdateDetails = class extends
|
|
20690
|
+
var GetIntegrationGlovoBulkUpdateDetails = class extends import_sdk_js_core142.AbstractApiRequest {
|
|
20618
20691
|
constructor(integrationGlovoId, bulkUpdateId) {
|
|
20619
20692
|
super(void 0);
|
|
20620
20693
|
this.method = "GET";
|
|
@@ -20633,14 +20706,14 @@ var GetIntegrationGlovoBulkUpdateDetails = class extends import_sdk_js_core141.A
|
|
|
20633
20706
|
};
|
|
20634
20707
|
|
|
20635
20708
|
// src/requests/services/glovo/GetIntegrationGlovoBulkUpdates.ts
|
|
20636
|
-
var
|
|
20709
|
+
var import_sdk_js_core143 = require("@deliverart/sdk-js-core");
|
|
20637
20710
|
var import_sdk_js_global_types51 = require("@deliverart/sdk-js-global-types");
|
|
20638
20711
|
var getIntegrationGlovoBulkUpdatesQuerySchema = integrationGlovoBulkUpdatesQuerySchema;
|
|
20639
20712
|
var getIntegrationGlovoBulkUpdatesInputSchema = external_exports.undefined();
|
|
20640
20713
|
var getIntegrationGlovoBulkUpdatesResponseSchema = (0, import_sdk_js_global_types51.createPaginatedSchema)(
|
|
20641
20714
|
integrationGlovoBulkUpdateSchema
|
|
20642
20715
|
);
|
|
20643
|
-
var GetIntegrationGlovoBulkUpdates = class extends
|
|
20716
|
+
var GetIntegrationGlovoBulkUpdates = class extends import_sdk_js_core143.AbstractApiRequest {
|
|
20644
20717
|
constructor(integrationGlovoId, options) {
|
|
20645
20718
|
super(void 0, options);
|
|
20646
20719
|
this.method = "GET";
|
|
@@ -20660,10 +20733,10 @@ var GetIntegrationGlovoBulkUpdates = class extends import_sdk_js_core142.Abstrac
|
|
|
20660
20733
|
};
|
|
20661
20734
|
|
|
20662
20735
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequestDetails.ts
|
|
20663
|
-
var
|
|
20736
|
+
var import_sdk_js_core144 = require("@deliverart/sdk-js-core");
|
|
20664
20737
|
var getIntegrationGlovoClientLogRequestDetailsInputSchema = external_exports.undefined();
|
|
20665
20738
|
var getIntegrationGlovoClientLogRequestDetailsResponseSchema = integrationClientLogRequestDetailsSchema;
|
|
20666
|
-
var GetIntegrationGlovoClientLogRequestDetails = class extends
|
|
20739
|
+
var GetIntegrationGlovoClientLogRequestDetails = class extends import_sdk_js_core144.AbstractApiRequest {
|
|
20667
20740
|
constructor(integrationGlovoId, requestId) {
|
|
20668
20741
|
super(void 0);
|
|
20669
20742
|
this.method = "GET";
|
|
@@ -20682,14 +20755,14 @@ var GetIntegrationGlovoClientLogRequestDetails = class extends import_sdk_js_cor
|
|
|
20682
20755
|
};
|
|
20683
20756
|
|
|
20684
20757
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequests.ts
|
|
20685
|
-
var
|
|
20758
|
+
var import_sdk_js_core145 = require("@deliverart/sdk-js-core");
|
|
20686
20759
|
var import_sdk_js_global_types52 = require("@deliverart/sdk-js-global-types");
|
|
20687
20760
|
var getIntegrationGlovoClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
20688
20761
|
var getIntegrationGlovoClientLogRequestsInputSchema = external_exports.undefined();
|
|
20689
20762
|
var getIntegrationGlovoClientLogRequestsResponseSchema = (0, import_sdk_js_global_types52.createPaginatedSchema)(
|
|
20690
20763
|
integrationClientLogRequestSchema
|
|
20691
20764
|
);
|
|
20692
|
-
var GetIntegrationGlovoClientLogRequests = class extends
|
|
20765
|
+
var GetIntegrationGlovoClientLogRequests = class extends import_sdk_js_core145.AbstractApiRequest {
|
|
20693
20766
|
constructor(integrationGlovoId, options) {
|
|
20694
20767
|
super(void 0, options);
|
|
20695
20768
|
this.method = "GET";
|
|
@@ -20709,7 +20782,7 @@ var GetIntegrationGlovoClientLogRequests = class extends import_sdk_js_core144.A
|
|
|
20709
20782
|
};
|
|
20710
20783
|
|
|
20711
20784
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequestsFromOrder.ts
|
|
20712
|
-
var
|
|
20785
|
+
var import_sdk_js_core146 = require("@deliverart/sdk-js-core");
|
|
20713
20786
|
var getIntegrationGlovoClientLogRequestsFromOrderQuerySchema = clientLogRequestQuerySchema.omit(
|
|
20714
20787
|
{
|
|
20715
20788
|
page: true
|
|
@@ -20719,7 +20792,7 @@ var getIntegrationGlovoClientLogRequestsFromOrderInputSchema = external_exports.
|
|
|
20719
20792
|
var getIntegrationGlovoClientLogRequestsFromOrderResponseSchema = external_exports.array(
|
|
20720
20793
|
integrationClientLogRequestSchema
|
|
20721
20794
|
);
|
|
20722
|
-
var GetIntegrationGlovoClientLogRequestsFromOrder = class extends
|
|
20795
|
+
var GetIntegrationGlovoClientLogRequestsFromOrder = class extends import_sdk_js_core146.AbstractApiRequest {
|
|
20723
20796
|
constructor(orderId, options) {
|
|
20724
20797
|
super(void 0, options);
|
|
20725
20798
|
this.method = "GET";
|
|
@@ -20739,10 +20812,10 @@ var GetIntegrationGlovoClientLogRequestsFromOrder = class extends import_sdk_js_
|
|
|
20739
20812
|
};
|
|
20740
20813
|
|
|
20741
20814
|
// src/requests/services/glovo/GetIntegrationGlovoDetails.ts
|
|
20742
|
-
var
|
|
20815
|
+
var import_sdk_js_core147 = require("@deliverart/sdk-js-core");
|
|
20743
20816
|
var getIntegrationGlovoDetailsInputSchema = external_exports.undefined();
|
|
20744
20817
|
var getIntegrationGlovoDetailsResponseSchema = integrationGlovoDetailsSchema;
|
|
20745
|
-
var GetIntegrationGlovoDetails = class extends
|
|
20818
|
+
var GetIntegrationGlovoDetails = class extends import_sdk_js_core147.AbstractApiRequest {
|
|
20746
20819
|
constructor(integrationGlovoId) {
|
|
20747
20820
|
super(void 0);
|
|
20748
20821
|
this.method = "GET";
|
|
@@ -20760,14 +20833,14 @@ var GetIntegrationGlovoDetails = class extends import_sdk_js_core146.AbstractApi
|
|
|
20760
20833
|
};
|
|
20761
20834
|
|
|
20762
20835
|
// src/requests/services/glovo/GetIntegrationGlovoGlobalClientLogRequests.ts
|
|
20763
|
-
var
|
|
20836
|
+
var import_sdk_js_core148 = require("@deliverart/sdk-js-core");
|
|
20764
20837
|
var import_sdk_js_global_types53 = require("@deliverart/sdk-js-global-types");
|
|
20765
20838
|
var getIntegrationGlovoGlobalClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
20766
20839
|
var getIntegrationGlovoGlobalClientLogRequestsInputSchema = external_exports.undefined();
|
|
20767
20840
|
var getIntegrationGlovoGlobalClientLogRequestsResponseSchema = (0, import_sdk_js_global_types53.createPaginatedSchema)(
|
|
20768
20841
|
integrationClientLogRequestSchema
|
|
20769
20842
|
);
|
|
20770
|
-
var GetIntegrationGlovoGlobalClientLogRequests = class extends
|
|
20843
|
+
var GetIntegrationGlovoGlobalClientLogRequests = class extends import_sdk_js_core148.AbstractApiRequest {
|
|
20771
20844
|
constructor(options) {
|
|
20772
20845
|
super(void 0, options);
|
|
20773
20846
|
this.method = "GET";
|
|
@@ -20786,14 +20859,14 @@ var GetIntegrationGlovoGlobalClientLogRequests = class extends import_sdk_js_cor
|
|
|
20786
20859
|
};
|
|
20787
20860
|
|
|
20788
20861
|
// src/requests/services/glovo/GetIntegrationGlovoList.ts
|
|
20789
|
-
var
|
|
20862
|
+
var import_sdk_js_core149 = require("@deliverart/sdk-js-core");
|
|
20790
20863
|
var import_sdk_js_global_types54 = require("@deliverart/sdk-js-global-types");
|
|
20791
20864
|
var getIntegrationGlovoListQuerySchema = integrationsGlovoQuerySchema.omit({
|
|
20792
20865
|
service: true
|
|
20793
20866
|
});
|
|
20794
20867
|
var getIntegrationGlovoListInputSchema = external_exports.undefined();
|
|
20795
20868
|
var getIntegrationGlovoListResponseSchema = (0, import_sdk_js_global_types54.createPaginatedSchema)(integrationGlovoSchema);
|
|
20796
|
-
var GetIntegrationGlovoList = class extends
|
|
20869
|
+
var GetIntegrationGlovoList = class extends import_sdk_js_core149.AbstractApiRequest {
|
|
20797
20870
|
constructor(options) {
|
|
20798
20871
|
super(void 0, options);
|
|
20799
20872
|
this.method = "GET";
|
|
@@ -20812,10 +20885,10 @@ var GetIntegrationGlovoList = class extends import_sdk_js_core148.AbstractApiReq
|
|
|
20812
20885
|
};
|
|
20813
20886
|
|
|
20814
20887
|
// src/requests/services/glovo/GetIntegrationGlovoMenuItemDeltaDetails.ts
|
|
20815
|
-
var
|
|
20888
|
+
var import_sdk_js_core150 = require("@deliverart/sdk-js-core");
|
|
20816
20889
|
var getIntegrationGlovoMenuItemDeltaDetailsInputSchema = external_exports.undefined();
|
|
20817
20890
|
var getIntegrationGlovoMenuItemDeltaDetailsResponseSchema = integrationGlovoMenuItemDeltaDetailsSchema;
|
|
20818
|
-
var GetIntegrationGlovoMenuItemDeltaDetails = class extends
|
|
20891
|
+
var GetIntegrationGlovoMenuItemDeltaDetails = class extends import_sdk_js_core150.AbstractApiRequest {
|
|
20819
20892
|
constructor(integrationGlovoId, deltaId) {
|
|
20820
20893
|
super(void 0);
|
|
20821
20894
|
this.method = "GET";
|
|
@@ -20834,14 +20907,14 @@ var GetIntegrationGlovoMenuItemDeltaDetails = class extends import_sdk_js_core14
|
|
|
20834
20907
|
};
|
|
20835
20908
|
|
|
20836
20909
|
// src/requests/services/glovo/GetIntegrationGlovoMenuItemDeltas.ts
|
|
20837
|
-
var
|
|
20910
|
+
var import_sdk_js_core151 = require("@deliverart/sdk-js-core");
|
|
20838
20911
|
var import_sdk_js_global_types55 = require("@deliverart/sdk-js-global-types");
|
|
20839
20912
|
var getIntegrationGlovoMenuItemDeltasQuerySchema = integrationGlovoMenuItemDeltasQuerySchema;
|
|
20840
20913
|
var getIntegrationGlovoMenuItemDeltasInputSchema = external_exports.undefined();
|
|
20841
20914
|
var getIntegrationGlovoMenuItemDeltasResponseSchema = (0, import_sdk_js_global_types55.createPaginatedSchema)(
|
|
20842
20915
|
integrationGlovoMenuItemDeltaSchema
|
|
20843
20916
|
);
|
|
20844
|
-
var GetIntegrationGlovoMenuItemDeltas = class extends
|
|
20917
|
+
var GetIntegrationGlovoMenuItemDeltas = class extends import_sdk_js_core151.AbstractApiRequest {
|
|
20845
20918
|
constructor(integrationGlovoId, options) {
|
|
20846
20919
|
super(void 0, options);
|
|
20847
20920
|
this.method = "GET";
|
|
@@ -20861,11 +20934,11 @@ var GetIntegrationGlovoMenuItemDeltas = class extends import_sdk_js_core150.Abst
|
|
|
20861
20934
|
};
|
|
20862
20935
|
|
|
20863
20936
|
// src/requests/services/glovo/GetIntegrationGlovoMenuValidation.ts
|
|
20864
|
-
var
|
|
20937
|
+
var import_sdk_js_core152 = require("@deliverart/sdk-js-core");
|
|
20865
20938
|
var import_sdk_js_global_types56 = require("@deliverart/sdk-js-global-types");
|
|
20866
20939
|
var getIntegrationGlovoMenuValidationInputSchema = external_exports.undefined();
|
|
20867
20940
|
var getIntegrationGlovoMenuValidationResponseSchema = import_sdk_js_global_types56.emptyResponseSchema;
|
|
20868
|
-
var GetIntegrationGlovoMenuValidation = class extends
|
|
20941
|
+
var GetIntegrationGlovoMenuValidation = class extends import_sdk_js_core152.AbstractApiRequest {
|
|
20869
20942
|
constructor(integrationGlovoId) {
|
|
20870
20943
|
super(void 0);
|
|
20871
20944
|
this.method = "GET";
|
|
@@ -20883,10 +20956,10 @@ var GetIntegrationGlovoMenuValidation = class extends import_sdk_js_core151.Abst
|
|
|
20883
20956
|
};
|
|
20884
20957
|
|
|
20885
20958
|
// src/requests/services/glovo/GetIntegrationGlovoMenuUpdateDetails.ts
|
|
20886
|
-
var
|
|
20959
|
+
var import_sdk_js_core153 = require("@deliverart/sdk-js-core");
|
|
20887
20960
|
var getIntegrationGlovoMenuUpdateDetailsInputSchema = external_exports.undefined();
|
|
20888
20961
|
var getIntegrationGlovoMenuUpdateDetailsResponseSchema = integrationGlovoMenuUpdateDetailsSchema;
|
|
20889
|
-
var GetIntegrationGlovoMenuUpdateDetails = class extends
|
|
20962
|
+
var GetIntegrationGlovoMenuUpdateDetails = class extends import_sdk_js_core153.AbstractApiRequest {
|
|
20890
20963
|
constructor(integrationGlovoId, processId) {
|
|
20891
20964
|
super(void 0);
|
|
20892
20965
|
this.method = "GET";
|
|
@@ -20905,14 +20978,14 @@ var GetIntegrationGlovoMenuUpdateDetails = class extends import_sdk_js_core152.A
|
|
|
20905
20978
|
};
|
|
20906
20979
|
|
|
20907
20980
|
// src/requests/services/glovo/GetIntegrationGlovoMenuUpdates.ts
|
|
20908
|
-
var
|
|
20981
|
+
var import_sdk_js_core154 = require("@deliverart/sdk-js-core");
|
|
20909
20982
|
var import_sdk_js_global_types57 = require("@deliverart/sdk-js-global-types");
|
|
20910
20983
|
var getIntegrationGlovoMenuUpdatesQuerySchema = integrationGlovoMenuUpdatesQuerySchema;
|
|
20911
20984
|
var getIntegrationGlovoMenuUpdatesInputSchema = external_exports.undefined();
|
|
20912
20985
|
var getIntegrationGlovoMenuUpdatesResponseSchema = (0, import_sdk_js_global_types57.createPaginatedSchema)(
|
|
20913
20986
|
integrationGlovoMenuUpdateSchema
|
|
20914
20987
|
);
|
|
20915
|
-
var GetIntegrationGlovoMenuUpdates = class extends
|
|
20988
|
+
var GetIntegrationGlovoMenuUpdates = class extends import_sdk_js_core154.AbstractApiRequest {
|
|
20916
20989
|
constructor(integrationId, options) {
|
|
20917
20990
|
super(void 0, options);
|
|
20918
20991
|
this.method = "GET";
|
|
@@ -20932,10 +21005,10 @@ var GetIntegrationGlovoMenuUpdates = class extends import_sdk_js_core153.Abstrac
|
|
|
20932
21005
|
};
|
|
20933
21006
|
|
|
20934
21007
|
// src/requests/services/glovo/GetIntegrationGlovoMenuVersionDetails.ts
|
|
20935
|
-
var
|
|
21008
|
+
var import_sdk_js_core155 = require("@deliverart/sdk-js-core");
|
|
20936
21009
|
var getIntegrationGlovoMenuVersionDetailsInputSchema = external_exports.undefined();
|
|
20937
21010
|
var getIntegrationGlovoMenuVersionDetailsResponseSchema = menuVersionDetailsSchema;
|
|
20938
|
-
var GetIntegrationGlovoMenuVersionDetails = class extends
|
|
21011
|
+
var GetIntegrationGlovoMenuVersionDetails = class extends import_sdk_js_core155.AbstractApiRequest {
|
|
20939
21012
|
constructor(integrationGlovoId, versionId) {
|
|
20940
21013
|
super(void 0);
|
|
20941
21014
|
this.method = "GET";
|
|
@@ -20954,14 +21027,14 @@ var GetIntegrationGlovoMenuVersionDetails = class extends import_sdk_js_core154.
|
|
|
20954
21027
|
};
|
|
20955
21028
|
|
|
20956
21029
|
// src/requests/services/glovo/GetIntegrationGlovoMenuVersions.ts
|
|
20957
|
-
var
|
|
21030
|
+
var import_sdk_js_core156 = require("@deliverart/sdk-js-core");
|
|
20958
21031
|
var import_sdk_js_global_types58 = require("@deliverart/sdk-js-global-types");
|
|
20959
21032
|
var getIntegrationGlovoMenuVersionsQuerySchema = external_exports.object({
|
|
20960
21033
|
page: external_exports.coerce.number().optional()
|
|
20961
21034
|
});
|
|
20962
21035
|
var getIntegrationGlovoMenuVersionsInputSchema = external_exports.undefined();
|
|
20963
21036
|
var getIntegrationGlovoMenuVersionsResponseSchema = (0, import_sdk_js_global_types58.createPaginatedSchema)(menuVersionSchema);
|
|
20964
|
-
var GetIntegrationGlovoMenuVersions = class extends
|
|
21037
|
+
var GetIntegrationGlovoMenuVersions = class extends import_sdk_js_core156.AbstractApiRequest {
|
|
20965
21038
|
constructor(integrationGlovoId, options) {
|
|
20966
21039
|
super(void 0, options);
|
|
20967
21040
|
this.method = "GET";
|
|
@@ -20981,10 +21054,10 @@ var GetIntegrationGlovoMenuVersions = class extends import_sdk_js_core155.Abstra
|
|
|
20981
21054
|
};
|
|
20982
21055
|
|
|
20983
21056
|
// src/requests/services/glovo/GetIntegrationGlovoOrderDetails.ts
|
|
20984
|
-
var
|
|
21057
|
+
var import_sdk_js_core157 = require("@deliverart/sdk-js-core");
|
|
20985
21058
|
var getIntegrationGlovoOrderDetailsInputSchema = external_exports.undefined();
|
|
20986
21059
|
var getIntegrationGlovoOrderDetailsResponseSchema = integrationGlovoOrderDetailsSchema;
|
|
20987
|
-
var GetIntegrationGlovoOrderDetails = class extends
|
|
21060
|
+
var GetIntegrationGlovoOrderDetails = class extends import_sdk_js_core157.AbstractApiRequest {
|
|
20988
21061
|
constructor(integrationGlovoId, orderId) {
|
|
20989
21062
|
super(void 0);
|
|
20990
21063
|
this.method = "GET";
|
|
@@ -21003,14 +21076,14 @@ var GetIntegrationGlovoOrderDetails = class extends import_sdk_js_core156.Abstra
|
|
|
21003
21076
|
};
|
|
21004
21077
|
|
|
21005
21078
|
// src/requests/services/glovo/GetIntegrationGlovoOrders.ts
|
|
21006
|
-
var
|
|
21079
|
+
var import_sdk_js_core158 = require("@deliverart/sdk-js-core");
|
|
21007
21080
|
var import_sdk_js_global_types59 = require("@deliverart/sdk-js-global-types");
|
|
21008
21081
|
var getIntegrationGlovoOrdersQuerySchema = integrationGlovoOrdersQuerySchema;
|
|
21009
21082
|
var getIntegrationGlovoOrdersInputSchema = external_exports.undefined();
|
|
21010
21083
|
var getIntegrationGlovoOrdersResponseSchema = (0, import_sdk_js_global_types59.createPaginatedSchema)(
|
|
21011
21084
|
integrationGlovoOrderSchema
|
|
21012
21085
|
);
|
|
21013
|
-
var GetIntegrationGlovoOrders = class extends
|
|
21086
|
+
var GetIntegrationGlovoOrders = class extends import_sdk_js_core158.AbstractApiRequest {
|
|
21014
21087
|
constructor(integrationGlovoId, options) {
|
|
21015
21088
|
super(void 0, options);
|
|
21016
21089
|
this.method = "GET";
|
|
@@ -21030,7 +21103,7 @@ var GetIntegrationGlovoOrders = class extends import_sdk_js_core157.AbstractApiR
|
|
|
21030
21103
|
};
|
|
21031
21104
|
|
|
21032
21105
|
// src/requests/services/glovo/GetIntegrationGlovoOrdersFromOrder.ts
|
|
21033
|
-
var
|
|
21106
|
+
var import_sdk_js_core159 = require("@deliverart/sdk-js-core");
|
|
21034
21107
|
var getIntegrationGlovoOrdersFromOrderQuerySchema = integrationGlovoOrdersQuerySchema.omit(
|
|
21035
21108
|
{
|
|
21036
21109
|
page: true
|
|
@@ -21040,7 +21113,7 @@ var getIntegrationGlovoOrdersFromOrderInputSchema = external_exports.undefined()
|
|
|
21040
21113
|
var getIntegrationGlovoOrdersFromOrderResponseSchema = external_exports.array(
|
|
21041
21114
|
integrationGlovoOrderSchema
|
|
21042
21115
|
);
|
|
21043
|
-
var GetIntegrationGlovoOrdersFromOrder = class extends
|
|
21116
|
+
var GetIntegrationGlovoOrdersFromOrder = class extends import_sdk_js_core159.AbstractApiRequest {
|
|
21044
21117
|
constructor(orderId, options) {
|
|
21045
21118
|
super(void 0, options);
|
|
21046
21119
|
this.method = "GET";
|
|
@@ -21060,10 +21133,10 @@ var GetIntegrationGlovoOrdersFromOrder = class extends import_sdk_js_core158.Abs
|
|
|
21060
21133
|
};
|
|
21061
21134
|
|
|
21062
21135
|
// src/requests/services/glovo/GetIntegrationGlovoSyncStatus.ts
|
|
21063
|
-
var
|
|
21136
|
+
var import_sdk_js_core160 = require("@deliverart/sdk-js-core");
|
|
21064
21137
|
var getIntegrationGlovoSyncStatusInputSchema = external_exports.undefined();
|
|
21065
21138
|
var getIntegrationGlovoSyncStatusResponseSchema = integrationGlovoSyncStatusResponseSchema;
|
|
21066
|
-
var GetIntegrationGlovoSyncStatus = class extends
|
|
21139
|
+
var GetIntegrationGlovoSyncStatus = class extends import_sdk_js_core160.AbstractApiRequest {
|
|
21067
21140
|
constructor(integrationGlovoId) {
|
|
21068
21141
|
super(void 0);
|
|
21069
21142
|
this.method = "GET";
|
|
@@ -21081,10 +21154,10 @@ var GetIntegrationGlovoSyncStatus = class extends import_sdk_js_core159.Abstract
|
|
|
21081
21154
|
};
|
|
21082
21155
|
|
|
21083
21156
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEventDetails.ts
|
|
21084
|
-
var
|
|
21157
|
+
var import_sdk_js_core161 = require("@deliverart/sdk-js-core");
|
|
21085
21158
|
var getIntegrationGlovoWebhookEventDetailsInputSchema = external_exports.undefined();
|
|
21086
21159
|
var getIntegrationGlovoWebhookEventDetailsResponseSchema = integrationGlovoWebhookEventDetailsSchema;
|
|
21087
|
-
var GetIntegrationGlovoWebhookEventDetails = class extends
|
|
21160
|
+
var GetIntegrationGlovoWebhookEventDetails = class extends import_sdk_js_core161.AbstractApiRequest {
|
|
21088
21161
|
constructor(integrationGlovoId, eventId) {
|
|
21089
21162
|
super(void 0);
|
|
21090
21163
|
this.method = "GET";
|
|
@@ -21103,14 +21176,14 @@ var GetIntegrationGlovoWebhookEventDetails = class extends import_sdk_js_core160
|
|
|
21103
21176
|
};
|
|
21104
21177
|
|
|
21105
21178
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEvents.ts
|
|
21106
|
-
var
|
|
21179
|
+
var import_sdk_js_core162 = require("@deliverart/sdk-js-core");
|
|
21107
21180
|
var import_sdk_js_global_types60 = require("@deliverart/sdk-js-global-types");
|
|
21108
21181
|
var getIntegrationGlovoWebhookEventsQuerySchema = integrationGlovoWebhookEventsQueryParamsSchema;
|
|
21109
21182
|
var getIntegrationGlovoWebhookEventsInputSchema = external_exports.undefined();
|
|
21110
21183
|
var getIntegrationGlovoWebhookEventsResponseSchema = (0, import_sdk_js_global_types60.createPaginatedSchema)(
|
|
21111
21184
|
integrationGlovoWebhookEventSchema
|
|
21112
21185
|
);
|
|
21113
|
-
var GetIntegrationGlovoWebhookEvents = class extends
|
|
21186
|
+
var GetIntegrationGlovoWebhookEvents = class extends import_sdk_js_core162.AbstractApiRequest {
|
|
21114
21187
|
constructor(integrationGlovoId, options) {
|
|
21115
21188
|
super(void 0, options);
|
|
21116
21189
|
this.method = "GET";
|
|
@@ -21130,7 +21203,7 @@ var GetIntegrationGlovoWebhookEvents = class extends import_sdk_js_core161.Abstr
|
|
|
21130
21203
|
};
|
|
21131
21204
|
|
|
21132
21205
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEventsFromOrder.ts
|
|
21133
|
-
var
|
|
21206
|
+
var import_sdk_js_core163 = require("@deliverart/sdk-js-core");
|
|
21134
21207
|
var getIntegrationGlovoWebhookEventsFromOrderQuerySchema = integrationGlovoWebhookEventsQueryParamsSchema.omit({
|
|
21135
21208
|
page: true
|
|
21136
21209
|
});
|
|
@@ -21138,7 +21211,7 @@ var getIntegrationGlovoWebhookEventsFromOrderInputSchema = external_exports.unde
|
|
|
21138
21211
|
var getIntegrationGlovoWebhookEventsFromOrderResponseSchema = external_exports.array(
|
|
21139
21212
|
integrationGlovoWebhookEventSchema
|
|
21140
21213
|
);
|
|
21141
|
-
var GetIntegrationGlovoWebhookEventsFromOrder = class extends
|
|
21214
|
+
var GetIntegrationGlovoWebhookEventsFromOrder = class extends import_sdk_js_core163.AbstractApiRequest {
|
|
21142
21215
|
constructor(orderId, options) {
|
|
21143
21216
|
super(void 0, options);
|
|
21144
21217
|
this.method = "GET";
|
|
@@ -21158,12 +21231,12 @@ var GetIntegrationGlovoWebhookEventsFromOrder = class extends import_sdk_js_core
|
|
|
21158
21231
|
};
|
|
21159
21232
|
|
|
21160
21233
|
// src/requests/services/glovo/IntegrationGlovoSyncMenu.ts
|
|
21161
|
-
var
|
|
21234
|
+
var import_sdk_js_core164 = require("@deliverart/sdk-js-core");
|
|
21162
21235
|
var integrationGlovoSyncMenuInputSchema = external_exports.undefined();
|
|
21163
21236
|
var integrationGlovoSyncMenuResponseSchema = external_exports.object({
|
|
21164
21237
|
message: external_exports.string()
|
|
21165
21238
|
});
|
|
21166
|
-
var IntegrationGlovoSyncMenu = class extends
|
|
21239
|
+
var IntegrationGlovoSyncMenu = class extends import_sdk_js_core164.AbstractApiRequest {
|
|
21167
21240
|
constructor(integrationGlovoId) {
|
|
21168
21241
|
super(void 0);
|
|
21169
21242
|
this.method = "POST";
|
|
@@ -21181,10 +21254,10 @@ var IntegrationGlovoSyncMenu = class extends import_sdk_js_core163.AbstractApiRe
|
|
|
21181
21254
|
};
|
|
21182
21255
|
|
|
21183
21256
|
// src/requests/services/glovo/UpdateIntegrationGlovo.ts
|
|
21184
|
-
var
|
|
21257
|
+
var import_sdk_js_core165 = require("@deliverart/sdk-js-core");
|
|
21185
21258
|
var updateIntegrationGlovoInputSchema = integrationGlovoEditableFieldsSchema.partial();
|
|
21186
21259
|
var updateIntegrationGlovoResponseSchema = integrationGlovoDetailsSchema;
|
|
21187
|
-
var UpdateIntegrationGlovo = class extends
|
|
21260
|
+
var UpdateIntegrationGlovo = class extends import_sdk_js_core165.AbstractApiRequest {
|
|
21188
21261
|
constructor(integrationGlovoId, input) {
|
|
21189
21262
|
super(input);
|
|
21190
21263
|
this.method = "PATCH";
|
|
@@ -21202,13 +21275,13 @@ var UpdateIntegrationGlovo = class extends import_sdk_js_core164.AbstractApiRequ
|
|
|
21202
21275
|
};
|
|
21203
21276
|
|
|
21204
21277
|
// src/requests/services/glovo/UpdateIntegrationGlovoStoreStatus.ts
|
|
21205
|
-
var
|
|
21278
|
+
var import_sdk_js_core166 = require("@deliverart/sdk-js-core");
|
|
21206
21279
|
var import_sdk_js_global_types61 = require("@deliverart/sdk-js-global-types");
|
|
21207
21280
|
var updateIntegrationGlovoStoreStatusInputSchema = external_exports.object({
|
|
21208
21281
|
status: types_exports.integrationGlovoStoreStatusSchema
|
|
21209
21282
|
});
|
|
21210
21283
|
var updateIntegrationGlovoStoreStatusResponseSchema = import_sdk_js_global_types61.emptyResponseSchema;
|
|
21211
|
-
var UpdateIntegrationGlovoStoreStatus = class extends
|
|
21284
|
+
var UpdateIntegrationGlovoStoreStatus = class extends import_sdk_js_core166.AbstractApiRequest {
|
|
21212
21285
|
constructor(integrationGlovoId, input) {
|
|
21213
21286
|
super(input);
|
|
21214
21287
|
this.method = "POST";
|
|
@@ -21226,13 +21299,13 @@ var UpdateIntegrationGlovoStoreStatus = class extends import_sdk_js_core165.Abst
|
|
|
21226
21299
|
};
|
|
21227
21300
|
|
|
21228
21301
|
// src/requests/services/justeat/CreateIntegrationJustEat.ts
|
|
21229
|
-
var
|
|
21230
|
-
var
|
|
21302
|
+
var import_sdk_js_core167 = require("@deliverart/sdk-js-core");
|
|
21303
|
+
var import_sdk_js_point_of_sale11 = require("@deliverart/sdk-js-point-of-sale");
|
|
21231
21304
|
var createIntegrationJustEatInputSchema = integrationJustEatEditableFieldsSchema.extend({
|
|
21232
|
-
pointOfSale:
|
|
21305
|
+
pointOfSale: import_sdk_js_point_of_sale11.pointOfSaleIriSchema
|
|
21233
21306
|
});
|
|
21234
21307
|
var createIntegrationJustEatResponseSchema = integrationJustEatDetailsSchema;
|
|
21235
|
-
var CreateIntegrationJustEat = class extends
|
|
21308
|
+
var CreateIntegrationJustEat = class extends import_sdk_js_core167.AbstractApiRequest {
|
|
21236
21309
|
constructor(input) {
|
|
21237
21310
|
super(input);
|
|
21238
21311
|
this.method = "POST";
|
|
@@ -21249,11 +21322,11 @@ var CreateIntegrationJustEat = class extends import_sdk_js_core166.AbstractApiRe
|
|
|
21249
21322
|
};
|
|
21250
21323
|
|
|
21251
21324
|
// src/requests/services/justeat/DeleteIntegrationJustEat.ts
|
|
21252
|
-
var
|
|
21325
|
+
var import_sdk_js_core168 = require("@deliverart/sdk-js-core");
|
|
21253
21326
|
var import_sdk_js_global_types62 = require("@deliverart/sdk-js-global-types");
|
|
21254
21327
|
var deleteIntegrationJustEatInputSchema = external_exports.undefined();
|
|
21255
21328
|
var deleteIntegrationJustEatResponseSchema = import_sdk_js_global_types62.emptyResponseSchema;
|
|
21256
|
-
var DeleteIntegrationJustEat = class extends
|
|
21329
|
+
var DeleteIntegrationJustEat = class extends import_sdk_js_core168.AbstractApiRequest {
|
|
21257
21330
|
constructor(integrationJustEatId) {
|
|
21258
21331
|
super(void 0);
|
|
21259
21332
|
this.method = "DELETE";
|
|
@@ -21271,10 +21344,10 @@ var DeleteIntegrationJustEat = class extends import_sdk_js_core167.AbstractApiRe
|
|
|
21271
21344
|
};
|
|
21272
21345
|
|
|
21273
21346
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequestDetails.ts
|
|
21274
|
-
var
|
|
21347
|
+
var import_sdk_js_core169 = require("@deliverart/sdk-js-core");
|
|
21275
21348
|
var getIntegrationJustEatClientLogRequestDetailsInputSchema = external_exports.undefined();
|
|
21276
21349
|
var getIntegrationJustEatClientLogRequestDetailsResponseSchema = integrationClientLogRequestDetailsSchema;
|
|
21277
|
-
var GetIntegrationJustEatClientLogRequestDetails = class extends
|
|
21350
|
+
var GetIntegrationJustEatClientLogRequestDetails = class extends import_sdk_js_core169.AbstractApiRequest {
|
|
21278
21351
|
constructor(integrationJustEatId, requestId) {
|
|
21279
21352
|
super(void 0);
|
|
21280
21353
|
this.method = "GET";
|
|
@@ -21293,14 +21366,14 @@ var GetIntegrationJustEatClientLogRequestDetails = class extends import_sdk_js_c
|
|
|
21293
21366
|
};
|
|
21294
21367
|
|
|
21295
21368
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequests.ts
|
|
21296
|
-
var
|
|
21369
|
+
var import_sdk_js_core170 = require("@deliverart/sdk-js-core");
|
|
21297
21370
|
var import_sdk_js_global_types63 = require("@deliverart/sdk-js-global-types");
|
|
21298
21371
|
var getIntegrationJustEatClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
21299
21372
|
var getIntegrationJustEatClientLogRequestsInputSchema = external_exports.undefined();
|
|
21300
21373
|
var getIntegrationJustEatClientLogRequestsResponseSchema = (0, import_sdk_js_global_types63.createPaginatedSchema)(
|
|
21301
21374
|
integrationClientLogRequestSchema
|
|
21302
21375
|
);
|
|
21303
|
-
var GetIntegrationJustEatClientLogRequests = class extends
|
|
21376
|
+
var GetIntegrationJustEatClientLogRequests = class extends import_sdk_js_core170.AbstractApiRequest {
|
|
21304
21377
|
constructor(integrationJustEatId, options) {
|
|
21305
21378
|
super(void 0, options);
|
|
21306
21379
|
this.method = "GET";
|
|
@@ -21320,7 +21393,7 @@ var GetIntegrationJustEatClientLogRequests = class extends import_sdk_js_core169
|
|
|
21320
21393
|
};
|
|
21321
21394
|
|
|
21322
21395
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequestsFromOrder.ts
|
|
21323
|
-
var
|
|
21396
|
+
var import_sdk_js_core171 = require("@deliverart/sdk-js-core");
|
|
21324
21397
|
var getIntegrationJustEatClientLogRequestsFromOrderQuerySchema = clientLogRequestQuerySchema.omit({
|
|
21325
21398
|
page: true
|
|
21326
21399
|
});
|
|
@@ -21328,7 +21401,7 @@ var getIntegrationJustEatClientLogRequestsFromOrderInputSchema = external_export
|
|
|
21328
21401
|
var getIntegrationJustEatClientLogRequestsFromOrderResponseSchema = external_exports.array(
|
|
21329
21402
|
integrationClientLogRequestSchema
|
|
21330
21403
|
);
|
|
21331
|
-
var GetIntegrationJustEatClientLogRequestsFromOrder = class extends
|
|
21404
|
+
var GetIntegrationJustEatClientLogRequestsFromOrder = class extends import_sdk_js_core171.AbstractApiRequest {
|
|
21332
21405
|
constructor(orderId, options) {
|
|
21333
21406
|
super(void 0, options);
|
|
21334
21407
|
this.method = "GET";
|
|
@@ -21348,10 +21421,10 @@ var GetIntegrationJustEatClientLogRequestsFromOrder = class extends import_sdk_j
|
|
|
21348
21421
|
};
|
|
21349
21422
|
|
|
21350
21423
|
// src/requests/services/justeat/GetIntegrationJustEatDetails.ts
|
|
21351
|
-
var
|
|
21424
|
+
var import_sdk_js_core172 = require("@deliverart/sdk-js-core");
|
|
21352
21425
|
var getIntegrationJustEatDetailsInputSchema = external_exports.undefined();
|
|
21353
21426
|
var getIntegrationJustEatDetailsResponseSchema = integrationJustEatDetailsSchema;
|
|
21354
|
-
var GetIntegrationJustEatDetails = class extends
|
|
21427
|
+
var GetIntegrationJustEatDetails = class extends import_sdk_js_core172.AbstractApiRequest {
|
|
21355
21428
|
constructor(integrationJustEatId) {
|
|
21356
21429
|
super(void 0);
|
|
21357
21430
|
this.method = "GET";
|
|
@@ -21369,14 +21442,14 @@ var GetIntegrationJustEatDetails = class extends import_sdk_js_core171.AbstractA
|
|
|
21369
21442
|
};
|
|
21370
21443
|
|
|
21371
21444
|
// src/requests/services/justeat/GetIntegrationJustEatGlobalClientLogRequests.ts
|
|
21372
|
-
var
|
|
21445
|
+
var import_sdk_js_core173 = require("@deliverart/sdk-js-core");
|
|
21373
21446
|
var import_sdk_js_global_types64 = require("@deliverart/sdk-js-global-types");
|
|
21374
21447
|
var getIntegrationJustEatGlobalClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
21375
21448
|
var getIntegrationJustEatGlobalClientLogRequestsInputSchema = external_exports.undefined();
|
|
21376
21449
|
var getIntegrationJustEatGlobalClientLogRequestsResponseSchema = (0, import_sdk_js_global_types64.createPaginatedSchema)(
|
|
21377
21450
|
integrationClientLogRequestSchema
|
|
21378
21451
|
);
|
|
21379
|
-
var GetIntegrationJustEatGlobalClientLogRequests = class extends
|
|
21452
|
+
var GetIntegrationJustEatGlobalClientLogRequests = class extends import_sdk_js_core173.AbstractApiRequest {
|
|
21380
21453
|
constructor(options) {
|
|
21381
21454
|
super(void 0, options);
|
|
21382
21455
|
this.method = "GET";
|
|
@@ -21395,14 +21468,14 @@ var GetIntegrationJustEatGlobalClientLogRequests = class extends import_sdk_js_c
|
|
|
21395
21468
|
};
|
|
21396
21469
|
|
|
21397
21470
|
// src/requests/services/justeat/GetIntegrationJustEatList.ts
|
|
21398
|
-
var
|
|
21471
|
+
var import_sdk_js_core174 = require("@deliverart/sdk-js-core");
|
|
21399
21472
|
var import_sdk_js_global_types65 = require("@deliverart/sdk-js-global-types");
|
|
21400
21473
|
var getIntegrationJustEatListQuerySchema = integrationsJustEatQuerySchema.omit({
|
|
21401
21474
|
service: true
|
|
21402
21475
|
});
|
|
21403
21476
|
var getIntegrationJustEatListInputSchema = external_exports.undefined();
|
|
21404
21477
|
var getIntegrationJustEatListResponseSchema = (0, import_sdk_js_global_types65.createPaginatedSchema)(integrationJustEatSchema);
|
|
21405
|
-
var GetIntegrationJustEatList = class extends
|
|
21478
|
+
var GetIntegrationJustEatList = class extends import_sdk_js_core174.AbstractApiRequest {
|
|
21406
21479
|
constructor(options) {
|
|
21407
21480
|
super(void 0, options);
|
|
21408
21481
|
this.method = "GET";
|
|
@@ -21421,10 +21494,10 @@ var GetIntegrationJustEatList = class extends import_sdk_js_core173.AbstractApiR
|
|
|
21421
21494
|
};
|
|
21422
21495
|
|
|
21423
21496
|
// src/requests/services/justeat/GetIntegrationJustEatMenuItemAvailabilityDeltaDetails.ts
|
|
21424
|
-
var
|
|
21497
|
+
var import_sdk_js_core175 = require("@deliverart/sdk-js-core");
|
|
21425
21498
|
var getIntegrationJustEatMenuItemAvailabilityDeltaDetailsInputSchema = external_exports.undefined();
|
|
21426
21499
|
var getIntegrationJustEatMenuItemAvailabilityDeltaDetailsResponseSchema = integrationJustEatMenuItemAvailabilityDeltaDetailsSchema;
|
|
21427
|
-
var GetIntegrationJustEatMenuItemAvailabilityDeltaDetails = class extends
|
|
21500
|
+
var GetIntegrationJustEatMenuItemAvailabilityDeltaDetails = class extends import_sdk_js_core175.AbstractApiRequest {
|
|
21428
21501
|
constructor(integrationJustEatId, deltaId) {
|
|
21429
21502
|
super(void 0);
|
|
21430
21503
|
this.method = "GET";
|
|
@@ -21443,12 +21516,12 @@ var GetIntegrationJustEatMenuItemAvailabilityDeltaDetails = class extends import
|
|
|
21443
21516
|
};
|
|
21444
21517
|
|
|
21445
21518
|
// src/requests/services/justeat/GetIntegrationJustEatMenuItemAvailabilityDeltas.ts
|
|
21446
|
-
var
|
|
21519
|
+
var import_sdk_js_core176 = require("@deliverart/sdk-js-core");
|
|
21447
21520
|
var import_sdk_js_global_types66 = require("@deliverart/sdk-js-global-types");
|
|
21448
21521
|
var getIntegrationJustEatMenuItemAvailabilityDeltasQuerySchema = integrationJustEatMenuItemAvailabilityDeltasQuerySchema;
|
|
21449
21522
|
var getIntegrationJustEatMenuItemAvailabilityDeltasInputSchema = external_exports.undefined();
|
|
21450
21523
|
var getIntegrationJustEatMenuItemAvailabilityDeltasResponseSchema = (0, import_sdk_js_global_types66.createPaginatedSchema)(integrationJustEatMenuItemAvailabilityDeltaSchema);
|
|
21451
|
-
var GetIntegrationJustEatMenuItemAvailabilityDeltas = class extends
|
|
21524
|
+
var GetIntegrationJustEatMenuItemAvailabilityDeltas = class extends import_sdk_js_core176.AbstractApiRequest {
|
|
21452
21525
|
constructor(integrationJustEatId, options) {
|
|
21453
21526
|
super(void 0, options);
|
|
21454
21527
|
this.method = "GET";
|
|
@@ -21468,11 +21541,11 @@ var GetIntegrationJustEatMenuItemAvailabilityDeltas = class extends import_sdk_j
|
|
|
21468
21541
|
};
|
|
21469
21542
|
|
|
21470
21543
|
// src/requests/services/justeat/GetIntegrationJustEatMenuValidation.ts
|
|
21471
|
-
var
|
|
21544
|
+
var import_sdk_js_core177 = require("@deliverart/sdk-js-core");
|
|
21472
21545
|
var import_sdk_js_global_types67 = require("@deliverart/sdk-js-global-types");
|
|
21473
21546
|
var getIntegrationJustEatMenuValidationInputSchema = external_exports.undefined();
|
|
21474
21547
|
var getIntegrationJustEatMenuValidationResponseSchema = import_sdk_js_global_types67.emptyResponseSchema;
|
|
21475
|
-
var GetIntegrationJustEatMenuValidation = class extends
|
|
21548
|
+
var GetIntegrationJustEatMenuValidation = class extends import_sdk_js_core177.AbstractApiRequest {
|
|
21476
21549
|
constructor(integrationJustEatId, type) {
|
|
21477
21550
|
super(void 0);
|
|
21478
21551
|
this.method = "GET";
|
|
@@ -21491,10 +21564,10 @@ var GetIntegrationJustEatMenuValidation = class extends import_sdk_js_core176.Ab
|
|
|
21491
21564
|
};
|
|
21492
21565
|
|
|
21493
21566
|
// src/requests/services/justeat/GetIntegrationJustEatMenuVersionDetails.ts
|
|
21494
|
-
var
|
|
21567
|
+
var import_sdk_js_core178 = require("@deliverart/sdk-js-core");
|
|
21495
21568
|
var getIntegrationJustEatMenuVersionDetailsInputSchema = external_exports.undefined();
|
|
21496
21569
|
var getIntegrationJustEatMenuVersionDetailsResponseSchema = menuVersionDetailsSchema;
|
|
21497
|
-
var GetIntegrationJustEatMenuVersionDetails = class extends
|
|
21570
|
+
var GetIntegrationJustEatMenuVersionDetails = class extends import_sdk_js_core178.AbstractApiRequest {
|
|
21498
21571
|
constructor(integrationJustEatId, versionId) {
|
|
21499
21572
|
super(void 0);
|
|
21500
21573
|
this.method = "GET";
|
|
@@ -21513,14 +21586,14 @@ var GetIntegrationJustEatMenuVersionDetails = class extends import_sdk_js_core17
|
|
|
21513
21586
|
};
|
|
21514
21587
|
|
|
21515
21588
|
// src/requests/services/justeat/GetIntegrationJustEatMenuVersions.ts
|
|
21516
|
-
var
|
|
21589
|
+
var import_sdk_js_core179 = require("@deliverart/sdk-js-core");
|
|
21517
21590
|
var import_sdk_js_global_types68 = require("@deliverart/sdk-js-global-types");
|
|
21518
21591
|
var getIntegrationJustEatMenuVersionsQuerySchema = external_exports.object({
|
|
21519
21592
|
page: external_exports.coerce.number().optional()
|
|
21520
21593
|
});
|
|
21521
21594
|
var getIntegrationJustEatMenuVersionsInputSchema = external_exports.undefined();
|
|
21522
21595
|
var getIntegrationJustEatMenuVersionsResponseSchema = (0, import_sdk_js_global_types68.createPaginatedSchema)(menuVersionSchema);
|
|
21523
|
-
var GetIntegrationJustEatMenuVersions = class extends
|
|
21596
|
+
var GetIntegrationJustEatMenuVersions = class extends import_sdk_js_core179.AbstractApiRequest {
|
|
21524
21597
|
constructor(integrationJustEatId, options) {
|
|
21525
21598
|
super(void 0, options);
|
|
21526
21599
|
this.method = "GET";
|
|
@@ -21540,10 +21613,10 @@ var GetIntegrationJustEatMenuVersions = class extends import_sdk_js_core178.Abst
|
|
|
21540
21613
|
};
|
|
21541
21614
|
|
|
21542
21615
|
// src/requests/services/justeat/GetIntegrationJustEatOrderDetails.ts
|
|
21543
|
-
var
|
|
21616
|
+
var import_sdk_js_core180 = require("@deliverart/sdk-js-core");
|
|
21544
21617
|
var getIntegrationJustEatOrderDetailsInputSchema = external_exports.undefined();
|
|
21545
21618
|
var getIntegrationJustEatOrderDetailsResponseSchema = integrationJustEatOrderDetailsSchema;
|
|
21546
|
-
var GetIntegrationJustEatOrderDetails = class extends
|
|
21619
|
+
var GetIntegrationJustEatOrderDetails = class extends import_sdk_js_core180.AbstractApiRequest {
|
|
21547
21620
|
constructor(integrationJustEatId, orderId) {
|
|
21548
21621
|
super(void 0);
|
|
21549
21622
|
this.method = "GET";
|
|
@@ -21562,14 +21635,14 @@ var GetIntegrationJustEatOrderDetails = class extends import_sdk_js_core179.Abst
|
|
|
21562
21635
|
};
|
|
21563
21636
|
|
|
21564
21637
|
// src/requests/services/justeat/GetIntegrationJustEatOrders.ts
|
|
21565
|
-
var
|
|
21638
|
+
var import_sdk_js_core181 = require("@deliverart/sdk-js-core");
|
|
21566
21639
|
var import_sdk_js_global_types69 = require("@deliverart/sdk-js-global-types");
|
|
21567
21640
|
var getIntegrationJustEatOrdersQuerySchema = integrationJustEatOrdersQueryParamsSchema;
|
|
21568
21641
|
var getIntegrationJustEatOrdersInputSchema = external_exports.undefined();
|
|
21569
21642
|
var getIntegrationJustEatOrdersResponseSchema = (0, import_sdk_js_global_types69.createPaginatedSchema)(
|
|
21570
21643
|
integrationJustEatOrderSchema
|
|
21571
21644
|
);
|
|
21572
|
-
var GetIntegrationJustEatOrders = class extends
|
|
21645
|
+
var GetIntegrationJustEatOrders = class extends import_sdk_js_core181.AbstractApiRequest {
|
|
21573
21646
|
constructor(integrationJustEatId, options) {
|
|
21574
21647
|
super(void 0, options);
|
|
21575
21648
|
this.method = "GET";
|
|
@@ -21589,7 +21662,7 @@ var GetIntegrationJustEatOrders = class extends import_sdk_js_core180.AbstractAp
|
|
|
21589
21662
|
};
|
|
21590
21663
|
|
|
21591
21664
|
// src/requests/services/justeat/GetIntegrationJustEatOrdersFromOrder.ts
|
|
21592
|
-
var
|
|
21665
|
+
var import_sdk_js_core182 = require("@deliverart/sdk-js-core");
|
|
21593
21666
|
var getIntegrationJustEatOrdersFromOrderQuerySchema = integrationJustEatOrdersQueryParamsSchema.omit({
|
|
21594
21667
|
page: true
|
|
21595
21668
|
});
|
|
@@ -21597,7 +21670,7 @@ var getIntegrationJustEatOrdersFromOrderInputSchema = external_exports.undefined
|
|
|
21597
21670
|
var getIntegrationJustEatOrdersFromOrderResponseSchema = external_exports.array(
|
|
21598
21671
|
integrationJustEatOrderSchema
|
|
21599
21672
|
);
|
|
21600
|
-
var GetIntegrationJustEatOrdersFromOrder = class extends
|
|
21673
|
+
var GetIntegrationJustEatOrdersFromOrder = class extends import_sdk_js_core182.AbstractApiRequest {
|
|
21601
21674
|
constructor(orderId, options) {
|
|
21602
21675
|
super(void 0, options);
|
|
21603
21676
|
this.method = "GET";
|
|
@@ -21617,10 +21690,10 @@ var GetIntegrationJustEatOrdersFromOrder = class extends import_sdk_js_core181.A
|
|
|
21617
21690
|
};
|
|
21618
21691
|
|
|
21619
21692
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcessDetails.ts
|
|
21620
|
-
var
|
|
21693
|
+
var import_sdk_js_core183 = require("@deliverart/sdk-js-core");
|
|
21621
21694
|
var getIntegrationJustEatSyncMenuProcessDetailsInputSchema = external_exports.undefined();
|
|
21622
21695
|
var getIntegrationJustEatSyncMenuProcessDetailsResponseSchema = integrationJustEatSyncMenuProcessDetailsSchema;
|
|
21623
|
-
var GetIntegrationJustEatSyncMenuProcessDetails = class extends
|
|
21696
|
+
var GetIntegrationJustEatSyncMenuProcessDetails = class extends import_sdk_js_core183.AbstractApiRequest {
|
|
21624
21697
|
constructor(integrationJustEatId, processId) {
|
|
21625
21698
|
super(void 0);
|
|
21626
21699
|
this.method = "GET";
|
|
@@ -21639,14 +21712,14 @@ var GetIntegrationJustEatSyncMenuProcessDetails = class extends import_sdk_js_co
|
|
|
21639
21712
|
};
|
|
21640
21713
|
|
|
21641
21714
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcesses.ts
|
|
21642
|
-
var
|
|
21715
|
+
var import_sdk_js_core184 = require("@deliverart/sdk-js-core");
|
|
21643
21716
|
var import_sdk_js_global_types70 = require("@deliverart/sdk-js-global-types");
|
|
21644
21717
|
var getIntegrationJustEatSyncMenuProcessesQuerySchema = integrationJustEatSyncMenuProcessesQuerySchema;
|
|
21645
21718
|
var getIntegrationJustEatSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
21646
21719
|
var getIntegrationJustEatSyncMenuProcessesResponseSchema = (0, import_sdk_js_global_types70.createPaginatedSchema)(
|
|
21647
21720
|
integrationJustEatSyncMenuProcessSchema
|
|
21648
21721
|
);
|
|
21649
|
-
var GetIntegrationJustEatSyncMenuProcesses = class extends
|
|
21722
|
+
var GetIntegrationJustEatSyncMenuProcesses = class extends import_sdk_js_core184.AbstractApiRequest {
|
|
21650
21723
|
constructor(integrationJustEatId, options) {
|
|
21651
21724
|
super(void 0, options);
|
|
21652
21725
|
this.method = "GET";
|
|
@@ -21666,12 +21739,12 @@ var GetIntegrationJustEatSyncMenuProcesses = class extends import_sdk_js_core183
|
|
|
21666
21739
|
};
|
|
21667
21740
|
|
|
21668
21741
|
// src/requests/services/justeat/IntegrationJustEatSyncMenu.ts
|
|
21669
|
-
var
|
|
21742
|
+
var import_sdk_js_core185 = require("@deliverart/sdk-js-core");
|
|
21670
21743
|
var integrationJustEatSyncMenuInputSchema = external_exports.undefined();
|
|
21671
21744
|
var integrationJustEatSyncMenuResponseSchema = external_exports.object({
|
|
21672
21745
|
message: external_exports.string()
|
|
21673
21746
|
});
|
|
21674
|
-
var IntegrationJustEatSyncMenu = class extends
|
|
21747
|
+
var IntegrationJustEatSyncMenu = class extends import_sdk_js_core185.AbstractApiRequest {
|
|
21675
21748
|
constructor(integrationJustEatId) {
|
|
21676
21749
|
super(void 0);
|
|
21677
21750
|
this.method = "POST";
|
|
@@ -21689,12 +21762,12 @@ var IntegrationJustEatSyncMenu = class extends import_sdk_js_core184.AbstractApi
|
|
|
21689
21762
|
};
|
|
21690
21763
|
|
|
21691
21764
|
// src/requests/services/justeat/IntegrationJustEatSyncOpeningTimes.ts
|
|
21692
|
-
var
|
|
21765
|
+
var import_sdk_js_core186 = require("@deliverart/sdk-js-core");
|
|
21693
21766
|
var integrationJustEatSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
21694
21767
|
var integrationJustEatSyncOpeningHoursResponseSchema = external_exports.object({
|
|
21695
21768
|
message: external_exports.string()
|
|
21696
21769
|
});
|
|
21697
|
-
var IntegrationJustEatSyncOpeningTimes = class extends
|
|
21770
|
+
var IntegrationJustEatSyncOpeningTimes = class extends import_sdk_js_core186.AbstractApiRequest {
|
|
21698
21771
|
constructor(integrationJustEatId) {
|
|
21699
21772
|
super(void 0);
|
|
21700
21773
|
this.method = "POST";
|
|
@@ -21712,10 +21785,10 @@ var IntegrationJustEatSyncOpeningTimes = class extends import_sdk_js_core185.Abs
|
|
|
21712
21785
|
};
|
|
21713
21786
|
|
|
21714
21787
|
// src/requests/services/justeat/UpdateIntegrationJustEat.ts
|
|
21715
|
-
var
|
|
21788
|
+
var import_sdk_js_core187 = require("@deliverart/sdk-js-core");
|
|
21716
21789
|
var updateIntegrationJustEatInputSchema = integrationJustEatEditableFieldsSchema.partial();
|
|
21717
21790
|
var updateIntegrationJustEatResponseSchema = integrationJustEatDetailsSchema;
|
|
21718
|
-
var UpdateIntegrationJustEat = class extends
|
|
21791
|
+
var UpdateIntegrationJustEat = class extends import_sdk_js_core187.AbstractApiRequest {
|
|
21719
21792
|
constructor(integrationJustEatId, input) {
|
|
21720
21793
|
super(input);
|
|
21721
21794
|
this.method = "PATCH";
|
|
@@ -21733,13 +21806,13 @@ var UpdateIntegrationJustEat = class extends import_sdk_js_core186.AbstractApiRe
|
|
|
21733
21806
|
};
|
|
21734
21807
|
|
|
21735
21808
|
// src/requests/services/justeat/UpdateIntegrationJustEatRestaurantStatus.ts
|
|
21736
|
-
var
|
|
21809
|
+
var import_sdk_js_core188 = require("@deliverart/sdk-js-core");
|
|
21737
21810
|
var import_sdk_js_global_types71 = require("@deliverart/sdk-js-global-types");
|
|
21738
21811
|
var updateIntegrationJustEatRestaurantStatusInputSchema = external_exports.object({
|
|
21739
21812
|
status: types_exports.integrationJustEatRestaurantStatusSchema
|
|
21740
21813
|
});
|
|
21741
21814
|
var updateIntegrationJustEatRestaurantStatusResponseSchema = import_sdk_js_global_types71.emptyResponseSchema;
|
|
21742
|
-
var UpdateIntegrationJustEatRestaurantStatus = class extends
|
|
21815
|
+
var UpdateIntegrationJustEatRestaurantStatus = class extends import_sdk_js_core188.AbstractApiRequest {
|
|
21743
21816
|
constructor(integrationJustEatId, input) {
|
|
21744
21817
|
super(input);
|
|
21745
21818
|
this.method = "POST";
|
|
@@ -21757,13 +21830,13 @@ var UpdateIntegrationJustEatRestaurantStatus = class extends import_sdk_js_core1
|
|
|
21757
21830
|
};
|
|
21758
21831
|
|
|
21759
21832
|
// src/requests/services/kitchen/CreateIntegrationKitchen.ts
|
|
21760
|
-
var
|
|
21761
|
-
var
|
|
21833
|
+
var import_sdk_js_core189 = require("@deliverart/sdk-js-core");
|
|
21834
|
+
var import_sdk_js_point_of_sale12 = require("@deliverart/sdk-js-point-of-sale");
|
|
21762
21835
|
var createIntegrationKitchenInputSchema = integrationKitchenEditableFieldsSchema.extend({
|
|
21763
|
-
pointOfSale:
|
|
21836
|
+
pointOfSale: import_sdk_js_point_of_sale12.pointOfSaleIriSchema
|
|
21764
21837
|
});
|
|
21765
21838
|
var createIntegrationKitchenResponseSchema = integrationKitchenDetailsSchema;
|
|
21766
|
-
var CreateIntegrationKitchen = class extends
|
|
21839
|
+
var CreateIntegrationKitchen = class extends import_sdk_js_core189.AbstractApiRequest {
|
|
21767
21840
|
constructor(input) {
|
|
21768
21841
|
super(input);
|
|
21769
21842
|
this.method = "POST";
|
|
@@ -21780,10 +21853,10 @@ var CreateIntegrationKitchen = class extends import_sdk_js_core188.AbstractApiRe
|
|
|
21780
21853
|
};
|
|
21781
21854
|
|
|
21782
21855
|
// src/requests/services/kitchen/CreateIntegrationKitchenAccessToken.ts
|
|
21783
|
-
var
|
|
21856
|
+
var import_sdk_js_core190 = require("@deliverart/sdk-js-core");
|
|
21784
21857
|
var createIntegrationKitchenAccessTokenInputSchema = external_exports.undefined();
|
|
21785
21858
|
var createIntegrationKitchenAccessTokenResponseSchema = integrationKitchenAccessTokenDetailsSchema;
|
|
21786
|
-
var CreateIntegrationKitchenAccessToken = class extends
|
|
21859
|
+
var CreateIntegrationKitchenAccessToken = class extends import_sdk_js_core190.AbstractApiRequest {
|
|
21787
21860
|
constructor(integrationKitchenId) {
|
|
21788
21861
|
super(void 0);
|
|
21789
21862
|
this.method = "POST";
|
|
@@ -21801,11 +21874,11 @@ var CreateIntegrationKitchenAccessToken = class extends import_sdk_js_core189.Ab
|
|
|
21801
21874
|
};
|
|
21802
21875
|
|
|
21803
21876
|
// src/requests/services/kitchen/DeleteIntegrationKitchen.ts
|
|
21804
|
-
var
|
|
21877
|
+
var import_sdk_js_core191 = require("@deliverart/sdk-js-core");
|
|
21805
21878
|
var import_sdk_js_global_types72 = require("@deliverart/sdk-js-global-types");
|
|
21806
21879
|
var deleteIntegrationKitchenInputSchema = external_exports.undefined();
|
|
21807
21880
|
var deleteIntegrationKitchenResponseSchema = import_sdk_js_global_types72.emptyResponseSchema;
|
|
21808
|
-
var DeleteIntegrationKitchen = class extends
|
|
21881
|
+
var DeleteIntegrationKitchen = class extends import_sdk_js_core191.AbstractApiRequest {
|
|
21809
21882
|
constructor(integrationKitchenId) {
|
|
21810
21883
|
super(void 0);
|
|
21811
21884
|
this.method = "DELETE";
|
|
@@ -21823,11 +21896,11 @@ var DeleteIntegrationKitchen = class extends import_sdk_js_core190.AbstractApiRe
|
|
|
21823
21896
|
};
|
|
21824
21897
|
|
|
21825
21898
|
// src/requests/services/kitchen/DeleteIntegrationKitchenAccessToken.ts
|
|
21826
|
-
var
|
|
21899
|
+
var import_sdk_js_core192 = require("@deliverart/sdk-js-core");
|
|
21827
21900
|
var import_sdk_js_global_types73 = require("@deliverart/sdk-js-global-types");
|
|
21828
21901
|
var deleteIntegrationKitchenAccessTokenInputSchema = external_exports.undefined();
|
|
21829
21902
|
var deleteIntegrationKitchenAccessTokenResponseSchema = import_sdk_js_global_types73.emptyResponseSchema;
|
|
21830
|
-
var DeleteIntegrationKitchenAccessToken = class extends
|
|
21903
|
+
var DeleteIntegrationKitchenAccessToken = class extends import_sdk_js_core192.AbstractApiRequest {
|
|
21831
21904
|
constructor(integrationKitchenId, integrationKitchenAccessTokenId) {
|
|
21832
21905
|
super(void 0);
|
|
21833
21906
|
this.method = "DELETE";
|
|
@@ -21846,10 +21919,10 @@ var DeleteIntegrationKitchenAccessToken = class extends import_sdk_js_core191.Ab
|
|
|
21846
21919
|
};
|
|
21847
21920
|
|
|
21848
21921
|
// src/requests/services/kitchen/GetIntegrationKitchenAccessTokenDetails.ts
|
|
21849
|
-
var
|
|
21922
|
+
var import_sdk_js_core193 = require("@deliverart/sdk-js-core");
|
|
21850
21923
|
var getIntegrationKitchenAccessTokenDetailsInputSchema = external_exports.undefined();
|
|
21851
21924
|
var getIntegrationKitchenAccessTokenDetailsResponseSchema = integrationKitchenAccessTokenDetailsSchema;
|
|
21852
|
-
var GetIntegrationKitchenAccessTokenDetails = class extends
|
|
21925
|
+
var GetIntegrationKitchenAccessTokenDetails = class extends import_sdk_js_core193.AbstractApiRequest {
|
|
21853
21926
|
constructor(integrationKitchenId, requestId) {
|
|
21854
21927
|
super(void 0);
|
|
21855
21928
|
this.method = "GET";
|
|
@@ -21868,14 +21941,14 @@ var GetIntegrationKitchenAccessTokenDetails = class extends import_sdk_js_core19
|
|
|
21868
21941
|
};
|
|
21869
21942
|
|
|
21870
21943
|
// src/requests/services/kitchen/GetIntegrationKitchenAccessTokens.ts
|
|
21871
|
-
var
|
|
21944
|
+
var import_sdk_js_core194 = require("@deliverart/sdk-js-core");
|
|
21872
21945
|
var import_sdk_js_global_types74 = require("@deliverart/sdk-js-global-types");
|
|
21873
21946
|
var getIntegrationKitchenAccessTokensQuerySchema = integrationKitchenAccessTokensQuerySchema;
|
|
21874
21947
|
var getIntegrationKitchenAccessTokensInputSchema = external_exports.undefined();
|
|
21875
21948
|
var getIntegrationKitchenAccessTokensResponseSchema = (0, import_sdk_js_global_types74.createPaginatedSchema)(
|
|
21876
21949
|
integrationKitchenAccessTokenSchema
|
|
21877
21950
|
);
|
|
21878
|
-
var GetIntegrationKitchenAccessTokens = class extends
|
|
21951
|
+
var GetIntegrationKitchenAccessTokens = class extends import_sdk_js_core194.AbstractApiRequest {
|
|
21879
21952
|
constructor(integrationKitchenId, options) {
|
|
21880
21953
|
super(void 0, options);
|
|
21881
21954
|
this.method = "GET";
|
|
@@ -21895,10 +21968,10 @@ var GetIntegrationKitchenAccessTokens = class extends import_sdk_js_core193.Abst
|
|
|
21895
21968
|
};
|
|
21896
21969
|
|
|
21897
21970
|
// src/requests/services/kitchen/GetIntegrationKitchenDetails.ts
|
|
21898
|
-
var
|
|
21971
|
+
var import_sdk_js_core195 = require("@deliverart/sdk-js-core");
|
|
21899
21972
|
var getIntegrationKitchenDetailsInputSchema = external_exports.undefined();
|
|
21900
21973
|
var getIntegrationKitchenDetailsResponseSchema = integrationKitchenDetailsSchema;
|
|
21901
|
-
var GetIntegrationKitchenDetails = class extends
|
|
21974
|
+
var GetIntegrationKitchenDetails = class extends import_sdk_js_core195.AbstractApiRequest {
|
|
21902
21975
|
constructor(integrationKitchenId) {
|
|
21903
21976
|
super(void 0);
|
|
21904
21977
|
this.method = "GET";
|
|
@@ -21916,14 +21989,14 @@ var GetIntegrationKitchenDetails = class extends import_sdk_js_core194.AbstractA
|
|
|
21916
21989
|
};
|
|
21917
21990
|
|
|
21918
21991
|
// src/requests/services/kitchen/GetIntegrationKitchenList.ts
|
|
21919
|
-
var
|
|
21992
|
+
var import_sdk_js_core196 = require("@deliverart/sdk-js-core");
|
|
21920
21993
|
var import_sdk_js_global_types75 = require("@deliverart/sdk-js-global-types");
|
|
21921
21994
|
var getIntegrationKitchenListQuerySchema = integrationsKitchenQuerySchema.omit({
|
|
21922
21995
|
service: true
|
|
21923
21996
|
});
|
|
21924
21997
|
var getIntegrationKitchenListResponseSchema = (0, import_sdk_js_global_types75.createPaginatedSchema)(integrationKitchenSchema);
|
|
21925
21998
|
var getIntegrationKitchenListInputSchema = external_exports.undefined();
|
|
21926
|
-
var GetIntegrationKitchenList = class extends
|
|
21999
|
+
var GetIntegrationKitchenList = class extends import_sdk_js_core196.AbstractApiRequest {
|
|
21927
22000
|
constructor(options) {
|
|
21928
22001
|
super(void 0, options);
|
|
21929
22002
|
this.method = "GET";
|
|
@@ -21942,10 +22015,10 @@ var GetIntegrationKitchenList = class extends import_sdk_js_core195.AbstractApiR
|
|
|
21942
22015
|
};
|
|
21943
22016
|
|
|
21944
22017
|
// src/requests/services/kitchen/UpdateIntegrationKitchen.ts
|
|
21945
|
-
var
|
|
22018
|
+
var import_sdk_js_core197 = require("@deliverart/sdk-js-core");
|
|
21946
22019
|
var updateIntegrationKitchenInputSchema = integrationKitchenEditableFieldsSchema.partial();
|
|
21947
22020
|
var updateIntegrationKitchenResponseSchema = integrationKitchenDetailsSchema;
|
|
21948
|
-
var UpdateIntegrationKitchen = class extends
|
|
22021
|
+
var UpdateIntegrationKitchen = class extends import_sdk_js_core197.AbstractApiRequest {
|
|
21949
22022
|
constructor(integrationKitchenId, input) {
|
|
21950
22023
|
super(input);
|
|
21951
22024
|
this.method = "PATCH";
|
|
@@ -21963,14 +22036,14 @@ var UpdateIntegrationKitchen = class extends import_sdk_js_core196.AbstractApiRe
|
|
|
21963
22036
|
};
|
|
21964
22037
|
|
|
21965
22038
|
// src/requests/services/tilby/index.ts
|
|
21966
|
-
var
|
|
22039
|
+
var import_sdk_js_core198 = require("@deliverart/sdk-js-core");
|
|
21967
22040
|
var import_sdk_js_global_types76 = require("@deliverart/sdk-js-global-types");
|
|
21968
|
-
var
|
|
22041
|
+
var import_sdk_js_point_of_sale13 = require("@deliverart/sdk-js-point-of-sale");
|
|
21969
22042
|
var createIntegrationTilbyInputSchema = integrationTilbyEditableFieldsSchema.extend({
|
|
21970
|
-
pointOfSale:
|
|
22043
|
+
pointOfSale: import_sdk_js_point_of_sale13.pointOfSaleIriSchema
|
|
21971
22044
|
});
|
|
21972
22045
|
var createIntegrationTilbyResponseSchema = integrationTilbyDetailsSchema;
|
|
21973
|
-
var CreateIntegrationTilby = class extends
|
|
22046
|
+
var CreateIntegrationTilby = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
21974
22047
|
constructor(input) {
|
|
21975
22048
|
super(input);
|
|
21976
22049
|
this.method = "POST";
|
|
@@ -21987,7 +22060,7 @@ var CreateIntegrationTilby = class extends import_sdk_js_core197.AbstractApiRequ
|
|
|
21987
22060
|
};
|
|
21988
22061
|
var updateIntegrationTilbyInputSchema = integrationTilbyEditableFieldsSchema.partial();
|
|
21989
22062
|
var updateIntegrationTilbyResponseSchema = integrationTilbyDetailsSchema;
|
|
21990
|
-
var UpdateIntegrationTilby = class extends
|
|
22063
|
+
var UpdateIntegrationTilby = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
21991
22064
|
constructor(integrationTilbyId, input) {
|
|
21992
22065
|
super(input);
|
|
21993
22066
|
this.method = "PATCH";
|
|
@@ -22005,7 +22078,7 @@ var UpdateIntegrationTilby = class extends import_sdk_js_core197.AbstractApiRequ
|
|
|
22005
22078
|
};
|
|
22006
22079
|
var deleteIntegrationTilbyInputSchema = external_exports.undefined();
|
|
22007
22080
|
var deleteIntegrationTilbyResponseSchema = import_sdk_js_global_types76.emptyResponseSchema;
|
|
22008
|
-
var DeleteIntegrationTilby = class extends
|
|
22081
|
+
var DeleteIntegrationTilby = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22009
22082
|
constructor(integrationTilbyId) {
|
|
22010
22083
|
super(void 0);
|
|
22011
22084
|
this.method = "DELETE";
|
|
@@ -22023,7 +22096,7 @@ var DeleteIntegrationTilby = class extends import_sdk_js_core197.AbstractApiRequ
|
|
|
22023
22096
|
};
|
|
22024
22097
|
var getIntegrationTilbyDetailsInputSchema = external_exports.undefined();
|
|
22025
22098
|
var getIntegrationTilbyDetailsResponseSchema = integrationTilbyDetailsSchema;
|
|
22026
|
-
var GetIntegrationTilbyDetails = class extends
|
|
22099
|
+
var GetIntegrationTilbyDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22027
22100
|
constructor(integrationTilbyId) {
|
|
22028
22101
|
super(void 0);
|
|
22029
22102
|
this.method = "GET";
|
|
@@ -22044,7 +22117,7 @@ var getIntegrationTilbyListQuerySchema = integrationsTilbyQuerySchema.omit({
|
|
|
22044
22117
|
});
|
|
22045
22118
|
var getIntegrationTilbyListInputSchema = external_exports.undefined();
|
|
22046
22119
|
var getIntegrationTilbyListResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(integrationTilbySchema);
|
|
22047
|
-
var GetIntegrationTilbyList = class extends
|
|
22120
|
+
var GetIntegrationTilbyList = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22048
22121
|
constructor(options) {
|
|
22049
22122
|
super(void 0, options);
|
|
22050
22123
|
this.method = "GET";
|
|
@@ -22063,7 +22136,7 @@ var GetIntegrationTilbyList = class extends import_sdk_js_core197.AbstractApiReq
|
|
|
22063
22136
|
};
|
|
22064
22137
|
var getIntegrationTilbySupportSellersInputSchema = external_exports.undefined();
|
|
22065
22138
|
var getIntegrationTilbySupportSellersResponseSchema = integrationTilbySupportSellersSchema;
|
|
22066
|
-
var GetIntegrationTilbySupportSellers = class extends
|
|
22139
|
+
var GetIntegrationTilbySupportSellers = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22067
22140
|
constructor(integrationTilbyId) {
|
|
22068
22141
|
super(void 0);
|
|
22069
22142
|
this.method = "GET";
|
|
@@ -22081,7 +22154,7 @@ var GetIntegrationTilbySupportSellers = class extends import_sdk_js_core197.Abst
|
|
|
22081
22154
|
};
|
|
22082
22155
|
var getIntegrationTilbySupportPaymentMethodsInputSchema = external_exports.undefined();
|
|
22083
22156
|
var getIntegrationTilbySupportPaymentMethodsResponseSchema = integrationTilbySupportPaymentMethodsSchema;
|
|
22084
|
-
var GetIntegrationTilbySupportPaymentMethods = class extends
|
|
22157
|
+
var GetIntegrationTilbySupportPaymentMethods = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22085
22158
|
constructor(integrationTilbyId) {
|
|
22086
22159
|
super(void 0);
|
|
22087
22160
|
this.method = "GET";
|
|
@@ -22099,7 +22172,7 @@ var GetIntegrationTilbySupportPaymentMethods = class extends import_sdk_js_core1
|
|
|
22099
22172
|
};
|
|
22100
22173
|
var getIntegrationTilbySupportPaymentMethodTypesInputSchema = external_exports.undefined();
|
|
22101
22174
|
var getIntegrationTilbySupportPaymentMethodTypesResponseSchema = integrationTilbySupportPaymentMethodTypesSchema;
|
|
22102
|
-
var GetIntegrationTilbySupportPaymentMethodTypes = class extends
|
|
22175
|
+
var GetIntegrationTilbySupportPaymentMethodTypes = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22103
22176
|
constructor(integrationTilbyId) {
|
|
22104
22177
|
super(void 0);
|
|
22105
22178
|
this.method = "GET";
|
|
@@ -22117,7 +22190,7 @@ var GetIntegrationTilbySupportPaymentMethodTypes = class extends import_sdk_js_c
|
|
|
22117
22190
|
};
|
|
22118
22191
|
var getIntegrationTilbySupportStockLocationsInputSchema = external_exports.undefined();
|
|
22119
22192
|
var getIntegrationTilbySupportStockLocationsResponseSchema = integrationTilbySupportStockLocationsSchema;
|
|
22120
|
-
var GetIntegrationTilbySupportStockLocations = class extends
|
|
22193
|
+
var GetIntegrationTilbySupportStockLocations = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22121
22194
|
constructor(integrationTilbyId) {
|
|
22122
22195
|
super(void 0);
|
|
22123
22196
|
this.method = "GET";
|
|
@@ -22141,7 +22214,7 @@ var integrationTilbyInboundOnlySyncInputSchema = integrationTilbySyncInputSchema
|
|
|
22141
22214
|
direction: external_exports.literal("inbound")
|
|
22142
22215
|
});
|
|
22143
22216
|
var integrationTilbySyncResponseSchema = integrationAsyncMessageResponseSchema;
|
|
22144
|
-
var IntegrationTilbySyncFiscalMappings = class extends
|
|
22217
|
+
var IntegrationTilbySyncFiscalMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22145
22218
|
constructor(integrationTilbyId, input) {
|
|
22146
22219
|
super(input);
|
|
22147
22220
|
this.method = "POST";
|
|
@@ -22157,7 +22230,7 @@ var IntegrationTilbySyncFiscalMappings = class extends import_sdk_js_core197.Abs
|
|
|
22157
22230
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/fiscal_mappings`;
|
|
22158
22231
|
}
|
|
22159
22232
|
};
|
|
22160
|
-
var IntegrationTilbySyncCustomers = class extends
|
|
22233
|
+
var IntegrationTilbySyncCustomers = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22161
22234
|
constructor(integrationTilbyId, input) {
|
|
22162
22235
|
super(input);
|
|
22163
22236
|
this.method = "POST";
|
|
@@ -22173,7 +22246,7 @@ var IntegrationTilbySyncCustomers = class extends import_sdk_js_core197.Abstract
|
|
|
22173
22246
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/customers`;
|
|
22174
22247
|
}
|
|
22175
22248
|
};
|
|
22176
|
-
var IntegrationTilbySyncMenu = class extends
|
|
22249
|
+
var IntegrationTilbySyncMenu = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22177
22250
|
constructor(integrationTilbyId, input) {
|
|
22178
22251
|
super(input);
|
|
22179
22252
|
this.method = "POST";
|
|
@@ -22189,7 +22262,7 @@ var IntegrationTilbySyncMenu = class extends import_sdk_js_core197.AbstractApiRe
|
|
|
22189
22262
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/menu`;
|
|
22190
22263
|
}
|
|
22191
22264
|
};
|
|
22192
|
-
var IntegrationTilbySyncOrders = class extends
|
|
22265
|
+
var IntegrationTilbySyncOrders = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22193
22266
|
constructor(integrationTilbyId, input) {
|
|
22194
22267
|
super(input);
|
|
22195
22268
|
this.method = "POST";
|
|
@@ -22205,7 +22278,7 @@ var IntegrationTilbySyncOrders = class extends import_sdk_js_core197.AbstractApi
|
|
|
22205
22278
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/orders`;
|
|
22206
22279
|
}
|
|
22207
22280
|
};
|
|
22208
|
-
var IntegrationTilbySyncStock = class extends
|
|
22281
|
+
var IntegrationTilbySyncStock = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22209
22282
|
constructor(integrationTilbyId, input) {
|
|
22210
22283
|
super(input);
|
|
22211
22284
|
this.method = "POST";
|
|
@@ -22226,7 +22299,7 @@ var getIntegrationTilbyDepartmentMappingsInputSchema = external_exports.undefine
|
|
|
22226
22299
|
var getIntegrationTilbyDepartmentMappingsResponseSchema = external_exports.array(
|
|
22227
22300
|
integrationTilbyDepartmentMappingSchema
|
|
22228
22301
|
);
|
|
22229
|
-
var GetIntegrationTilbyDepartmentMappings = class extends
|
|
22302
|
+
var GetIntegrationTilbyDepartmentMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22230
22303
|
constructor(integrationTilbyId, options) {
|
|
22231
22304
|
super(void 0, options);
|
|
22232
22305
|
this.method = "GET";
|
|
@@ -22246,7 +22319,7 @@ var GetIntegrationTilbyDepartmentMappings = class extends import_sdk_js_core197.
|
|
|
22246
22319
|
};
|
|
22247
22320
|
var getIntegrationTilbyDepartmentMappingDetailsInputSchema = external_exports.undefined();
|
|
22248
22321
|
var getIntegrationTilbyDepartmentMappingDetailsResponseSchema = integrationTilbyDepartmentMappingDetailsSchema;
|
|
22249
|
-
var GetIntegrationTilbyDepartmentMappingDetails = class extends
|
|
22322
|
+
var GetIntegrationTilbyDepartmentMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22250
22323
|
constructor(integrationTilbyId, mappingId) {
|
|
22251
22324
|
super(void 0);
|
|
22252
22325
|
this.method = "GET";
|
|
@@ -22265,7 +22338,7 @@ var GetIntegrationTilbyDepartmentMappingDetails = class extends import_sdk_js_co
|
|
|
22265
22338
|
};
|
|
22266
22339
|
var updateIntegrationTilbyDepartmentMappingInputSchema = integrationTilbyDepartmentMappingEditableFieldsSchema;
|
|
22267
22340
|
var updateIntegrationTilbyDepartmentMappingResponseSchema = integrationTilbyDepartmentMappingSchema;
|
|
22268
|
-
var UpdateIntegrationTilbyDepartmentMapping = class extends
|
|
22341
|
+
var UpdateIntegrationTilbyDepartmentMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22269
22342
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22270
22343
|
super(input);
|
|
22271
22344
|
this.method = "PATCH";
|
|
@@ -22287,7 +22360,7 @@ var getIntegrationTilbyVatMappingsInputSchema = external_exports.undefined();
|
|
|
22287
22360
|
var getIntegrationTilbyVatMappingsResponseSchema = external_exports.array(
|
|
22288
22361
|
integrationTilbyVatMappingSchema
|
|
22289
22362
|
);
|
|
22290
|
-
var GetIntegrationTilbyVatMappings = class extends
|
|
22363
|
+
var GetIntegrationTilbyVatMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22291
22364
|
constructor(integrationTilbyId, options) {
|
|
22292
22365
|
super(void 0, options);
|
|
22293
22366
|
this.method = "GET";
|
|
@@ -22307,7 +22380,7 @@ var GetIntegrationTilbyVatMappings = class extends import_sdk_js_core197.Abstrac
|
|
|
22307
22380
|
};
|
|
22308
22381
|
var getIntegrationTilbyVatMappingDetailsInputSchema = external_exports.undefined();
|
|
22309
22382
|
var getIntegrationTilbyVatMappingDetailsResponseSchema = integrationTilbyVatMappingDetailsSchema;
|
|
22310
|
-
var GetIntegrationTilbyVatMappingDetails = class extends
|
|
22383
|
+
var GetIntegrationTilbyVatMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22311
22384
|
constructor(integrationTilbyId, mappingId) {
|
|
22312
22385
|
super(void 0);
|
|
22313
22386
|
this.method = "GET";
|
|
@@ -22326,7 +22399,7 @@ var GetIntegrationTilbyVatMappingDetails = class extends import_sdk_js_core197.A
|
|
|
22326
22399
|
};
|
|
22327
22400
|
var updateIntegrationTilbyVatMappingInputSchema = integrationTilbyVatMappingEditableFieldsSchema;
|
|
22328
22401
|
var updateIntegrationTilbyVatMappingResponseSchema = integrationTilbyVatMappingSchema;
|
|
22329
|
-
var UpdateIntegrationTilbyVatMapping = class extends
|
|
22402
|
+
var UpdateIntegrationTilbyVatMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22330
22403
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22331
22404
|
super(input);
|
|
22332
22405
|
this.method = "PATCH";
|
|
@@ -22348,7 +22421,7 @@ var getIntegrationTilbyCategoryMappingsInputSchema = external_exports.undefined(
|
|
|
22348
22421
|
var getIntegrationTilbyCategoryMappingsResponseSchema = external_exports.array(
|
|
22349
22422
|
integrationTilbyCategoryMappingSchema
|
|
22350
22423
|
);
|
|
22351
|
-
var GetIntegrationTilbyCategoryMappings = class extends
|
|
22424
|
+
var GetIntegrationTilbyCategoryMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22352
22425
|
constructor(integrationTilbyId, options) {
|
|
22353
22426
|
super(void 0, options);
|
|
22354
22427
|
this.method = "GET";
|
|
@@ -22368,7 +22441,7 @@ var GetIntegrationTilbyCategoryMappings = class extends import_sdk_js_core197.Ab
|
|
|
22368
22441
|
};
|
|
22369
22442
|
var getIntegrationTilbyCategoryMappingDetailsInputSchema = external_exports.undefined();
|
|
22370
22443
|
var getIntegrationTilbyCategoryMappingDetailsResponseSchema = integrationTilbyCategoryMappingDetailsSchema;
|
|
22371
|
-
var GetIntegrationTilbyCategoryMappingDetails = class extends
|
|
22444
|
+
var GetIntegrationTilbyCategoryMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22372
22445
|
constructor(integrationTilbyId, mappingId) {
|
|
22373
22446
|
super(void 0);
|
|
22374
22447
|
this.method = "GET";
|
|
@@ -22387,7 +22460,7 @@ var GetIntegrationTilbyCategoryMappingDetails = class extends import_sdk_js_core
|
|
|
22387
22460
|
};
|
|
22388
22461
|
var updateIntegrationTilbyCategoryMappingInputSchema = integrationTilbyCategoryMappingEditableFieldsSchema;
|
|
22389
22462
|
var updateIntegrationTilbyCategoryMappingResponseSchema = integrationTilbyCategoryMappingSchema;
|
|
22390
|
-
var UpdateIntegrationTilbyCategoryMapping = class extends
|
|
22463
|
+
var UpdateIntegrationTilbyCategoryMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22391
22464
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22392
22465
|
super(input);
|
|
22393
22466
|
this.method = "PATCH";
|
|
@@ -22409,7 +22482,7 @@ var getIntegrationTilbyComponentMappingsInputSchema = external_exports.undefined
|
|
|
22409
22482
|
var getIntegrationTilbyComponentMappingsResponseSchema = external_exports.array(
|
|
22410
22483
|
integrationTilbyComponentMappingSchema
|
|
22411
22484
|
);
|
|
22412
|
-
var GetIntegrationTilbyComponentMappings = class extends
|
|
22485
|
+
var GetIntegrationTilbyComponentMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22413
22486
|
constructor(integrationTilbyId, options) {
|
|
22414
22487
|
super(void 0, options);
|
|
22415
22488
|
this.method = "GET";
|
|
@@ -22429,7 +22502,7 @@ var GetIntegrationTilbyComponentMappings = class extends import_sdk_js_core197.A
|
|
|
22429
22502
|
};
|
|
22430
22503
|
var getIntegrationTilbyComponentMappingDetailsInputSchema = external_exports.undefined();
|
|
22431
22504
|
var getIntegrationTilbyComponentMappingDetailsResponseSchema = integrationTilbyComponentMappingDetailsSchema;
|
|
22432
|
-
var GetIntegrationTilbyComponentMappingDetails = class extends
|
|
22505
|
+
var GetIntegrationTilbyComponentMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22433
22506
|
constructor(integrationTilbyId, mappingId) {
|
|
22434
22507
|
super(void 0);
|
|
22435
22508
|
this.method = "GET";
|
|
@@ -22448,7 +22521,7 @@ var GetIntegrationTilbyComponentMappingDetails = class extends import_sdk_js_cor
|
|
|
22448
22521
|
};
|
|
22449
22522
|
var updateIntegrationTilbyComponentMappingInputSchema = integrationTilbyComponentMappingEditableFieldsSchema;
|
|
22450
22523
|
var updateIntegrationTilbyComponentMappingResponseSchema = integrationTilbyComponentMappingSchema;
|
|
22451
|
-
var UpdateIntegrationTilbyComponentMapping = class extends
|
|
22524
|
+
var UpdateIntegrationTilbyComponentMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22452
22525
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22453
22526
|
super(input);
|
|
22454
22527
|
this.method = "PATCH";
|
|
@@ -22470,7 +22543,7 @@ var getIntegrationTilbyProductMappingsInputSchema = external_exports.undefined()
|
|
|
22470
22543
|
var getIntegrationTilbyProductMappingsResponseSchema = external_exports.array(
|
|
22471
22544
|
integrationTilbyProductMappingSchema
|
|
22472
22545
|
);
|
|
22473
|
-
var GetIntegrationTilbyProductMappings = class extends
|
|
22546
|
+
var GetIntegrationTilbyProductMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22474
22547
|
constructor(integrationTilbyId, options) {
|
|
22475
22548
|
super(void 0, options);
|
|
22476
22549
|
this.method = "GET";
|
|
@@ -22490,7 +22563,7 @@ var GetIntegrationTilbyProductMappings = class extends import_sdk_js_core197.Abs
|
|
|
22490
22563
|
};
|
|
22491
22564
|
var getIntegrationTilbyProductMappingDetailsInputSchema = external_exports.undefined();
|
|
22492
22565
|
var getIntegrationTilbyProductMappingDetailsResponseSchema = integrationTilbyProductMappingDetailsSchema;
|
|
22493
|
-
var GetIntegrationTilbyProductMappingDetails = class extends
|
|
22566
|
+
var GetIntegrationTilbyProductMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22494
22567
|
constructor(integrationTilbyId, mappingId) {
|
|
22495
22568
|
super(void 0);
|
|
22496
22569
|
this.method = "GET";
|
|
@@ -22509,7 +22582,7 @@ var GetIntegrationTilbyProductMappingDetails = class extends import_sdk_js_core1
|
|
|
22509
22582
|
};
|
|
22510
22583
|
var updateIntegrationTilbyProductMappingInputSchema = integrationTilbyProductMappingEditableFieldsSchema;
|
|
22511
22584
|
var updateIntegrationTilbyProductMappingResponseSchema = integrationTilbyProductMappingSchema;
|
|
22512
|
-
var UpdateIntegrationTilbyProductMapping = class extends
|
|
22585
|
+
var UpdateIntegrationTilbyProductMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22513
22586
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22514
22587
|
super(input);
|
|
22515
22588
|
this.method = "PATCH";
|
|
@@ -22531,7 +22604,7 @@ var getIntegrationTilbyProductVariantMappingsInputSchema = external_exports.unde
|
|
|
22531
22604
|
var getIntegrationTilbyProductVariantMappingsResponseSchema = external_exports.array(
|
|
22532
22605
|
integrationTilbyProductVariantMappingSchema
|
|
22533
22606
|
);
|
|
22534
|
-
var GetIntegrationTilbyProductVariantMappings = class extends
|
|
22607
|
+
var GetIntegrationTilbyProductVariantMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22535
22608
|
constructor(integrationTilbyId, productId, options) {
|
|
22536
22609
|
super(void 0, options);
|
|
22537
22610
|
this.method = "GET";
|
|
@@ -22552,7 +22625,7 @@ var GetIntegrationTilbyProductVariantMappings = class extends import_sdk_js_core
|
|
|
22552
22625
|
};
|
|
22553
22626
|
var getIntegrationTilbyProductVariantMappingDetailsInputSchema = external_exports.undefined();
|
|
22554
22627
|
var getIntegrationTilbyProductVariantMappingDetailsResponseSchema = integrationTilbyProductVariantMappingDetailsSchema;
|
|
22555
|
-
var GetIntegrationTilbyProductVariantMappingDetails = class extends
|
|
22628
|
+
var GetIntegrationTilbyProductVariantMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22556
22629
|
constructor(integrationTilbyId, productId, variantId) {
|
|
22557
22630
|
super(void 0);
|
|
22558
22631
|
this.method = "GET";
|
|
@@ -22572,7 +22645,7 @@ var GetIntegrationTilbyProductVariantMappingDetails = class extends import_sdk_j
|
|
|
22572
22645
|
};
|
|
22573
22646
|
var updateIntegrationTilbyProductVariantMappingInputSchema = integrationTilbyProductVariantMappingEditableFieldsSchema;
|
|
22574
22647
|
var updateIntegrationTilbyProductVariantMappingResponseSchema = integrationTilbyProductVariantMappingSchema;
|
|
22575
|
-
var UpdateIntegrationTilbyProductVariantMapping = class extends
|
|
22648
|
+
var UpdateIntegrationTilbyProductVariantMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22576
22649
|
constructor(integrationTilbyId, productId, variantId, input) {
|
|
22577
22650
|
super(input);
|
|
22578
22651
|
this.method = "PATCH";
|
|
@@ -22595,7 +22668,7 @@ var getIntegrationTilbyCustomerMappingsInputSchema = external_exports.undefined(
|
|
|
22595
22668
|
var getIntegrationTilbyCustomerMappingsResponseSchema = external_exports.array(
|
|
22596
22669
|
integrationTilbyCustomerMappingSchema
|
|
22597
22670
|
);
|
|
22598
|
-
var GetIntegrationTilbyCustomerMappings = class extends
|
|
22671
|
+
var GetIntegrationTilbyCustomerMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22599
22672
|
constructor(integrationTilbyId, options) {
|
|
22600
22673
|
super(void 0, options);
|
|
22601
22674
|
this.method = "GET";
|
|
@@ -22615,7 +22688,7 @@ var GetIntegrationTilbyCustomerMappings = class extends import_sdk_js_core197.Ab
|
|
|
22615
22688
|
};
|
|
22616
22689
|
var getIntegrationTilbyCustomerMappingDetailsInputSchema = external_exports.undefined();
|
|
22617
22690
|
var getIntegrationTilbyCustomerMappingDetailsResponseSchema = integrationTilbyCustomerMappingDetailsSchema;
|
|
22618
|
-
var GetIntegrationTilbyCustomerMappingDetails = class extends
|
|
22691
|
+
var GetIntegrationTilbyCustomerMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22619
22692
|
constructor(integrationTilbyId, mappingId) {
|
|
22620
22693
|
super(void 0);
|
|
22621
22694
|
this.method = "GET";
|
|
@@ -22637,7 +22710,7 @@ var getIntegrationTilbyOrderMappingsInputSchema = external_exports.undefined();
|
|
|
22637
22710
|
var getIntegrationTilbyOrderMappingsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22638
22711
|
integrationTilbyOrderMappingSchema
|
|
22639
22712
|
);
|
|
22640
|
-
var GetIntegrationTilbyOrderMappings = class extends
|
|
22713
|
+
var GetIntegrationTilbyOrderMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22641
22714
|
constructor(integrationTilbyId, options) {
|
|
22642
22715
|
super(void 0, options);
|
|
22643
22716
|
this.method = "GET";
|
|
@@ -22657,7 +22730,7 @@ var GetIntegrationTilbyOrderMappings = class extends import_sdk_js_core197.Abstr
|
|
|
22657
22730
|
};
|
|
22658
22731
|
var getIntegrationTilbyOrderMappingDetailsInputSchema = external_exports.undefined();
|
|
22659
22732
|
var getIntegrationTilbyOrderMappingDetailsResponseSchema = integrationTilbyOrderMappingDetailsSchema;
|
|
22660
|
-
var GetIntegrationTilbyOrderMappingDetails = class extends
|
|
22733
|
+
var GetIntegrationTilbyOrderMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22661
22734
|
constructor(integrationTilbyId, mappingId) {
|
|
22662
22735
|
super(void 0);
|
|
22663
22736
|
this.method = "GET";
|
|
@@ -22681,7 +22754,7 @@ var getIntegrationTilbyOrderMappingsFromOrderInputSchema = external_exports.unde
|
|
|
22681
22754
|
var getIntegrationTilbyOrderMappingsFromOrderResponseSchema = external_exports.array(
|
|
22682
22755
|
integrationTilbyOrderMappingSchema
|
|
22683
22756
|
);
|
|
22684
|
-
var GetIntegrationTilbyOrderMappingsFromOrder = class extends
|
|
22757
|
+
var GetIntegrationTilbyOrderMappingsFromOrder = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22685
22758
|
constructor(orderId, options) {
|
|
22686
22759
|
super(void 0, options);
|
|
22687
22760
|
this.method = "GET";
|
|
@@ -22704,7 +22777,7 @@ var getIntegrationTilbySyncFiscalMappingsProcessesInputSchema = external_exports
|
|
|
22704
22777
|
var getIntegrationTilbySyncFiscalMappingsProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22705
22778
|
integrationTilbySyncFiscalMappingsProcessSchema
|
|
22706
22779
|
);
|
|
22707
|
-
var GetIntegrationTilbySyncFiscalMappingsProcesses = class extends
|
|
22780
|
+
var GetIntegrationTilbySyncFiscalMappingsProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22708
22781
|
constructor(integrationTilbyId, options) {
|
|
22709
22782
|
super(void 0, options);
|
|
22710
22783
|
this.method = "GET";
|
|
@@ -22724,7 +22797,7 @@ var GetIntegrationTilbySyncFiscalMappingsProcesses = class extends import_sdk_js
|
|
|
22724
22797
|
};
|
|
22725
22798
|
var getIntegrationTilbySyncFiscalMappingsProcessDetailsInputSchema = external_exports.undefined();
|
|
22726
22799
|
var getIntegrationTilbySyncFiscalMappingsProcessDetailsResponseSchema = integrationTilbySyncFiscalMappingsProcessDetailsSchema;
|
|
22727
|
-
var GetIntegrationTilbySyncFiscalMappingsProcessDetails = class extends
|
|
22800
|
+
var GetIntegrationTilbySyncFiscalMappingsProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22728
22801
|
constructor(integrationTilbyId, processId) {
|
|
22729
22802
|
super(void 0);
|
|
22730
22803
|
this.method = "GET";
|
|
@@ -22746,7 +22819,7 @@ var getIntegrationTilbySyncFiscalMappingsErrorLogsInputSchema = external_exports
|
|
|
22746
22819
|
var getIntegrationTilbySyncFiscalMappingsErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22747
22820
|
integrationTilbySyncFiscalMappingsErrorLogSchema
|
|
22748
22821
|
);
|
|
22749
|
-
var GetIntegrationTilbySyncFiscalMappingsErrorLogs = class extends
|
|
22822
|
+
var GetIntegrationTilbySyncFiscalMappingsErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22750
22823
|
constructor(integrationTilbyId, processId, options) {
|
|
22751
22824
|
super(void 0, options);
|
|
22752
22825
|
this.method = "GET";
|
|
@@ -22767,7 +22840,7 @@ var GetIntegrationTilbySyncFiscalMappingsErrorLogs = class extends import_sdk_js
|
|
|
22767
22840
|
};
|
|
22768
22841
|
var getIntegrationTilbySyncFiscalMappingsErrorLogDetailsInputSchema = external_exports.undefined();
|
|
22769
22842
|
var getIntegrationTilbySyncFiscalMappingsErrorLogDetailsResponseSchema = integrationTilbySyncFiscalMappingsErrorLogDetailsSchema;
|
|
22770
|
-
var GetIntegrationTilbySyncFiscalMappingsErrorLogDetails = class extends
|
|
22843
|
+
var GetIntegrationTilbySyncFiscalMappingsErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22771
22844
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
22772
22845
|
super(void 0);
|
|
22773
22846
|
this.method = "GET";
|
|
@@ -22790,7 +22863,7 @@ var getIntegrationTilbySyncCustomersProcessesInputSchema = external_exports.unde
|
|
|
22790
22863
|
var getIntegrationTilbySyncCustomersProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22791
22864
|
integrationTilbySyncCustomersProcessSchema
|
|
22792
22865
|
);
|
|
22793
|
-
var GetIntegrationTilbySyncCustomersProcesses = class extends
|
|
22866
|
+
var GetIntegrationTilbySyncCustomersProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22794
22867
|
constructor(integrationTilbyId, options) {
|
|
22795
22868
|
super(void 0, options);
|
|
22796
22869
|
this.method = "GET";
|
|
@@ -22810,7 +22883,7 @@ var GetIntegrationTilbySyncCustomersProcesses = class extends import_sdk_js_core
|
|
|
22810
22883
|
};
|
|
22811
22884
|
var getIntegrationTilbySyncCustomersProcessDetailsInputSchema = external_exports.undefined();
|
|
22812
22885
|
var getIntegrationTilbySyncCustomersProcessDetailsResponseSchema = integrationTilbySyncCustomersProcessDetailsSchema;
|
|
22813
|
-
var GetIntegrationTilbySyncCustomersProcessDetails = class extends
|
|
22886
|
+
var GetIntegrationTilbySyncCustomersProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22814
22887
|
constructor(integrationTilbyId, processId) {
|
|
22815
22888
|
super(void 0);
|
|
22816
22889
|
this.method = "GET";
|
|
@@ -22832,7 +22905,7 @@ var getIntegrationTilbySyncCustomersErrorLogsInputSchema = external_exports.unde
|
|
|
22832
22905
|
var getIntegrationTilbySyncCustomersErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22833
22906
|
integrationTilbySyncCustomersErrorLogSchema
|
|
22834
22907
|
);
|
|
22835
|
-
var GetIntegrationTilbySyncCustomersErrorLogs = class extends
|
|
22908
|
+
var GetIntegrationTilbySyncCustomersErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22836
22909
|
constructor(integrationTilbyId, processId, options) {
|
|
22837
22910
|
super(void 0, options);
|
|
22838
22911
|
this.method = "GET";
|
|
@@ -22853,7 +22926,7 @@ var GetIntegrationTilbySyncCustomersErrorLogs = class extends import_sdk_js_core
|
|
|
22853
22926
|
};
|
|
22854
22927
|
var getIntegrationTilbySyncCustomersErrorLogDetailsInputSchema = external_exports.undefined();
|
|
22855
22928
|
var getIntegrationTilbySyncCustomersErrorLogDetailsResponseSchema = integrationTilbySyncCustomersErrorLogDetailsSchema;
|
|
22856
|
-
var GetIntegrationTilbySyncCustomersErrorLogDetails = class extends
|
|
22929
|
+
var GetIntegrationTilbySyncCustomersErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22857
22930
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
22858
22931
|
super(void 0);
|
|
22859
22932
|
this.method = "GET";
|
|
@@ -22876,7 +22949,7 @@ var getIntegrationTilbySyncMenuProcessesInputSchema = external_exports.undefined
|
|
|
22876
22949
|
var getIntegrationTilbySyncMenuProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22877
22950
|
integrationTilbySyncMenuProcessSchema
|
|
22878
22951
|
);
|
|
22879
|
-
var GetIntegrationTilbySyncMenuProcesses = class extends
|
|
22952
|
+
var GetIntegrationTilbySyncMenuProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22880
22953
|
constructor(integrationTilbyId, options) {
|
|
22881
22954
|
super(void 0, options);
|
|
22882
22955
|
this.method = "GET";
|
|
@@ -22896,7 +22969,7 @@ var GetIntegrationTilbySyncMenuProcesses = class extends import_sdk_js_core197.A
|
|
|
22896
22969
|
};
|
|
22897
22970
|
var getIntegrationTilbySyncMenuProcessDetailsInputSchema = external_exports.undefined();
|
|
22898
22971
|
var getIntegrationTilbySyncMenuProcessDetailsResponseSchema = integrationTilbySyncMenuProcessDetailsSchema;
|
|
22899
|
-
var GetIntegrationTilbySyncMenuProcessDetails = class extends
|
|
22972
|
+
var GetIntegrationTilbySyncMenuProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22900
22973
|
constructor(integrationTilbyId, processId) {
|
|
22901
22974
|
super(void 0);
|
|
22902
22975
|
this.method = "GET";
|
|
@@ -22918,7 +22991,7 @@ var getIntegrationTilbySyncMenuErrorLogsInputSchema = external_exports.undefined
|
|
|
22918
22991
|
var getIntegrationTilbySyncMenuErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22919
22992
|
integrationTilbySyncMenuErrorLogSchema
|
|
22920
22993
|
);
|
|
22921
|
-
var GetIntegrationTilbySyncMenuErrorLogs = class extends
|
|
22994
|
+
var GetIntegrationTilbySyncMenuErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22922
22995
|
constructor(integrationTilbyId, processId, options) {
|
|
22923
22996
|
super(void 0, options);
|
|
22924
22997
|
this.method = "GET";
|
|
@@ -22939,7 +23012,7 @@ var GetIntegrationTilbySyncMenuErrorLogs = class extends import_sdk_js_core197.A
|
|
|
22939
23012
|
};
|
|
22940
23013
|
var getIntegrationTilbySyncMenuErrorLogDetailsInputSchema = external_exports.undefined();
|
|
22941
23014
|
var getIntegrationTilbySyncMenuErrorLogDetailsResponseSchema = integrationTilbySyncMenuErrorLogDetailsSchema;
|
|
22942
|
-
var GetIntegrationTilbySyncMenuErrorLogDetails = class extends
|
|
23015
|
+
var GetIntegrationTilbySyncMenuErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22943
23016
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
22944
23017
|
super(void 0);
|
|
22945
23018
|
this.method = "GET";
|
|
@@ -22962,7 +23035,7 @@ var getIntegrationTilbySyncOrdersProcessesInputSchema = external_exports.undefin
|
|
|
22962
23035
|
var getIntegrationTilbySyncOrdersProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22963
23036
|
integrationTilbySyncOrdersProcessSchema
|
|
22964
23037
|
);
|
|
22965
|
-
var GetIntegrationTilbySyncOrdersProcesses = class extends
|
|
23038
|
+
var GetIntegrationTilbySyncOrdersProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22966
23039
|
constructor(integrationTilbyId, options) {
|
|
22967
23040
|
super(void 0, options);
|
|
22968
23041
|
this.method = "GET";
|
|
@@ -22982,7 +23055,7 @@ var GetIntegrationTilbySyncOrdersProcesses = class extends import_sdk_js_core197
|
|
|
22982
23055
|
};
|
|
22983
23056
|
var getIntegrationTilbySyncOrdersProcessDetailsInputSchema = external_exports.undefined();
|
|
22984
23057
|
var getIntegrationTilbySyncOrdersProcessDetailsResponseSchema = integrationTilbySyncOrdersProcessDetailsSchema;
|
|
22985
|
-
var GetIntegrationTilbySyncOrdersProcessDetails = class extends
|
|
23058
|
+
var GetIntegrationTilbySyncOrdersProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22986
23059
|
constructor(integrationTilbyId, processId) {
|
|
22987
23060
|
super(void 0);
|
|
22988
23061
|
this.method = "GET";
|
|
@@ -23004,7 +23077,7 @@ var getIntegrationTilbySyncOrdersErrorLogsInputSchema = external_exports.undefin
|
|
|
23004
23077
|
var getIntegrationTilbySyncOrdersErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
23005
23078
|
integrationTilbySyncOrdersErrorLogSchema
|
|
23006
23079
|
);
|
|
23007
|
-
var GetIntegrationTilbySyncOrdersErrorLogs = class extends
|
|
23080
|
+
var GetIntegrationTilbySyncOrdersErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23008
23081
|
constructor(integrationTilbyId, processId, options) {
|
|
23009
23082
|
super(void 0, options);
|
|
23010
23083
|
this.method = "GET";
|
|
@@ -23025,7 +23098,7 @@ var GetIntegrationTilbySyncOrdersErrorLogs = class extends import_sdk_js_core197
|
|
|
23025
23098
|
};
|
|
23026
23099
|
var getIntegrationTilbySyncOrdersErrorLogDetailsInputSchema = external_exports.undefined();
|
|
23027
23100
|
var getIntegrationTilbySyncOrdersErrorLogDetailsResponseSchema = integrationTilbySyncOrdersErrorLogDetailsSchema;
|
|
23028
|
-
var GetIntegrationTilbySyncOrdersErrorLogDetails = class extends
|
|
23101
|
+
var GetIntegrationTilbySyncOrdersErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23029
23102
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
23030
23103
|
super(void 0);
|
|
23031
23104
|
this.method = "GET";
|
|
@@ -23048,7 +23121,7 @@ var getIntegrationTilbySyncStockProcessesInputSchema = external_exports.undefine
|
|
|
23048
23121
|
var getIntegrationTilbySyncStockProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
23049
23122
|
integrationTilbySyncStockProcessSchema
|
|
23050
23123
|
);
|
|
23051
|
-
var GetIntegrationTilbySyncStockProcesses = class extends
|
|
23124
|
+
var GetIntegrationTilbySyncStockProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23052
23125
|
constructor(integrationTilbyId, options) {
|
|
23053
23126
|
super(void 0, options);
|
|
23054
23127
|
this.method = "GET";
|
|
@@ -23068,7 +23141,7 @@ var GetIntegrationTilbySyncStockProcesses = class extends import_sdk_js_core197.
|
|
|
23068
23141
|
};
|
|
23069
23142
|
var getIntegrationTilbySyncStockProcessDetailsInputSchema = external_exports.undefined();
|
|
23070
23143
|
var getIntegrationTilbySyncStockProcessDetailsResponseSchema = integrationTilbySyncStockProcessDetailsSchema;
|
|
23071
|
-
var GetIntegrationTilbySyncStockProcessDetails = class extends
|
|
23144
|
+
var GetIntegrationTilbySyncStockProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23072
23145
|
constructor(integrationTilbyId, processId) {
|
|
23073
23146
|
super(void 0);
|
|
23074
23147
|
this.method = "GET";
|
|
@@ -23090,7 +23163,7 @@ var getIntegrationTilbySyncStockErrorLogsInputSchema = external_exports.undefine
|
|
|
23090
23163
|
var getIntegrationTilbySyncStockErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
23091
23164
|
integrationTilbySyncStockErrorLogSchema
|
|
23092
23165
|
);
|
|
23093
|
-
var GetIntegrationTilbySyncStockErrorLogs = class extends
|
|
23166
|
+
var GetIntegrationTilbySyncStockErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23094
23167
|
constructor(integrationTilbyId, processId, options) {
|
|
23095
23168
|
super(void 0, options);
|
|
23096
23169
|
this.method = "GET";
|
|
@@ -23111,7 +23184,7 @@ var GetIntegrationTilbySyncStockErrorLogs = class extends import_sdk_js_core197.
|
|
|
23111
23184
|
};
|
|
23112
23185
|
var getIntegrationTilbySyncStockErrorLogDetailsInputSchema = external_exports.undefined();
|
|
23113
23186
|
var getIntegrationTilbySyncStockErrorLogDetailsResponseSchema = integrationTilbySyncStockErrorLogDetailsSchema;
|
|
23114
|
-
var GetIntegrationTilbySyncStockErrorLogDetails = class extends
|
|
23187
|
+
var GetIntegrationTilbySyncStockErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23115
23188
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
23116
23189
|
super(void 0);
|
|
23117
23190
|
this.method = "GET";
|
|
@@ -23134,7 +23207,7 @@ var getIntegrationTilbyWebHookSettingsInputSchema = external_exports.undefined()
|
|
|
23134
23207
|
var getIntegrationTilbyWebHookSettingsResponseSchema = external_exports.array(
|
|
23135
23208
|
integrationTilbyWebHookSettingSchema
|
|
23136
23209
|
);
|
|
23137
|
-
var GetIntegrationTilbyWebHookSettings = class extends
|
|
23210
|
+
var GetIntegrationTilbyWebHookSettings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23138
23211
|
constructor(integrationTilbyId, options) {
|
|
23139
23212
|
super(void 0, options);
|
|
23140
23213
|
this.method = "GET";
|
|
@@ -23154,7 +23227,7 @@ var GetIntegrationTilbyWebHookSettings = class extends import_sdk_js_core197.Abs
|
|
|
23154
23227
|
};
|
|
23155
23228
|
var getIntegrationTilbyWebHookSettingDetailsInputSchema = external_exports.undefined();
|
|
23156
23229
|
var getIntegrationTilbyWebHookSettingDetailsResponseSchema = integrationTilbyWebHookSettingDetailsSchema;
|
|
23157
|
-
var GetIntegrationTilbyWebHookSettingDetails = class extends
|
|
23230
|
+
var GetIntegrationTilbyWebHookSettingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23158
23231
|
constructor(integrationTilbyId, webHookId) {
|
|
23159
23232
|
super(void 0);
|
|
23160
23233
|
this.method = "GET";
|
|
@@ -23176,7 +23249,7 @@ var getIntegrationTilbyWebHookEventsInputSchema = external_exports.undefined();
|
|
|
23176
23249
|
var getIntegrationTilbyWebHookEventsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
23177
23250
|
integrationTilbyWebHookEventSchema
|
|
23178
23251
|
);
|
|
23179
|
-
var GetIntegrationTilbyWebHookEvents = class extends
|
|
23252
|
+
var GetIntegrationTilbyWebHookEvents = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23180
23253
|
constructor(integrationTilbyId, options) {
|
|
23181
23254
|
super(void 0, options);
|
|
23182
23255
|
this.method = "GET";
|
|
@@ -23196,7 +23269,7 @@ var GetIntegrationTilbyWebHookEvents = class extends import_sdk_js_core197.Abstr
|
|
|
23196
23269
|
};
|
|
23197
23270
|
var getIntegrationTilbyWebHookEventDetailsInputSchema = external_exports.undefined();
|
|
23198
23271
|
var getIntegrationTilbyWebHookEventDetailsResponseSchema = integrationTilbyWebHookEventDetailsSchema;
|
|
23199
|
-
var GetIntegrationTilbyWebHookEventDetails = class extends
|
|
23272
|
+
var GetIntegrationTilbyWebHookEventDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23200
23273
|
constructor(integrationTilbyId, eventId) {
|
|
23201
23274
|
super(void 0);
|
|
23202
23275
|
this.method = "GET";
|
|
@@ -23215,10 +23288,10 @@ var GetIntegrationTilbyWebHookEventDetails = class extends import_sdk_js_core197
|
|
|
23215
23288
|
};
|
|
23216
23289
|
|
|
23217
23290
|
// src/requests/UpdateIntegration.ts
|
|
23218
|
-
var
|
|
23291
|
+
var import_sdk_js_core199 = require("@deliverart/sdk-js-core");
|
|
23219
23292
|
var updateIntegrationInputSchema = writableIntegrationSchema.partial();
|
|
23220
23293
|
var updateIntegrationResponseSchema = integrationDetailsSchema;
|
|
23221
|
-
var UpdateIntegration = class extends
|
|
23294
|
+
var UpdateIntegration = class extends import_sdk_js_core199.AbstractApiRequest {
|
|
23222
23295
|
constructor(integrationId, input) {
|
|
23223
23296
|
super(input);
|
|
23224
23297
|
this.method = "PATCH";
|
|
@@ -23359,6 +23432,7 @@ __reExport(index_exports, types_exports, module.exports);
|
|
|
23359
23432
|
GetIntegrationEcommerceDetails,
|
|
23360
23433
|
GetIntegrationEcommerceInfo,
|
|
23361
23434
|
GetIntegrationEcommerceList,
|
|
23435
|
+
GetIntegrationEcommerceSlotOptions,
|
|
23362
23436
|
GetIntegrationGlovoBulkUpdateDetails,
|
|
23363
23437
|
GetIntegrationGlovoBulkUpdates,
|
|
23364
23438
|
GetIntegrationGlovoClientLogRequestDetails,
|
|
@@ -23787,6 +23861,9 @@ __reExport(index_exports, types_exports, module.exports);
|
|
|
23787
23861
|
getIntegrationEcommerceListInputSchema,
|
|
23788
23862
|
getIntegrationEcommerceListQuerySchema,
|
|
23789
23863
|
getIntegrationEcommerceListResponseSchema,
|
|
23864
|
+
getIntegrationEcommerceSlotOptionsInputSchema,
|
|
23865
|
+
getIntegrationEcommerceSlotOptionsQuerySchema,
|
|
23866
|
+
getIntegrationEcommerceSlotOptionsResponseSchema,
|
|
23790
23867
|
getIntegrationGlovoBulkUpdateDetailsInputSchema,
|
|
23791
23868
|
getIntegrationGlovoBulkUpdateDetailsResponseSchema,
|
|
23792
23869
|
getIntegrationGlovoBulkUpdatesInputSchema,
|