@deliverart/sdk-js-integration 2.20.0 → 2.21.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 +262 -190
- package/dist/index.d.cts +2887 -241
- package/dist/index.d.ts +2887 -241
- package/dist/index.js +257 -182
- 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({
|
|
@@ -16024,6 +16050,17 @@ var integrationEcommercePointOfSaleInfoSchema = external_exports.object({
|
|
|
16024
16050
|
var integrationEcommerceInfoSchema = external_exports.object({
|
|
16025
16051
|
id: external_exports.string(),
|
|
16026
16052
|
path: external_exports.string(),
|
|
16053
|
+
displayName: external_exports.string().nullable().default(null),
|
|
16054
|
+
tagline: external_exports.string().nullable().default(null),
|
|
16055
|
+
minOrderValue: external_exports.coerce.number().nonnegative().default(0),
|
|
16056
|
+
menuViewMode: types_exports.integrationEcommerceMenuViewModeSchema.default("editorial"),
|
|
16057
|
+
logo: import_sdk_js_image2.imageSchema.nullable().default(null),
|
|
16058
|
+
heroImage: import_sdk_js_image2.imageSchema.nullable().default(null),
|
|
16059
|
+
theme: types_exports.integrationEcommerceThemeSchema.default({
|
|
16060
|
+
primary: "#26745f",
|
|
16061
|
+
accent: "#d95f35",
|
|
16062
|
+
background: "#fbfaf7"
|
|
16063
|
+
}),
|
|
16027
16064
|
orderingModes: external_exports.array(types_exports.integrationEcommerceOrderingModeSchema),
|
|
16028
16065
|
pointOfSale: integrationEcommercePointOfSaleInfoSchema,
|
|
16029
16066
|
company: integrationEcommerceCompanyInfoSchema,
|
|
@@ -17152,6 +17189,10 @@ var createIntegrationActivationRequestInputSchema = external_exports.discriminat
|
|
|
17152
17189
|
external_exports.object({
|
|
17153
17190
|
service: external_exports.literal("tilby"),
|
|
17154
17191
|
data: activatable_integration_data_schemas_exports.integrationTilbyDataSchema
|
|
17192
|
+
}).extend(writableIntegrationActivationRequestBaseSchema.shape),
|
|
17193
|
+
external_exports.object({
|
|
17194
|
+
service: external_exports.literal("ecommerce"),
|
|
17195
|
+
data: activatable_integration_data_schemas_exports.integrationEcommerceDataSchema
|
|
17155
17196
|
}).extend(writableIntegrationActivationRequestBaseSchema.shape)
|
|
17156
17197
|
]);
|
|
17157
17198
|
var createIntegrationActivationRequestResponseSchema = integrationActivationRequestDetailsSchema;
|
|
@@ -17381,6 +17422,10 @@ var updateIntegrationActivationRequestInputSchema = external_exports.discriminat
|
|
|
17381
17422
|
external_exports.object({
|
|
17382
17423
|
service: external_exports.literal("tilby"),
|
|
17383
17424
|
data: activatable_integration_data_schemas_exports.integrationTilbyDataSchema.optional()
|
|
17425
|
+
}).extend(writableIntegrationActivationRequestBaseSchema2.shape),
|
|
17426
|
+
external_exports.object({
|
|
17427
|
+
service: external_exports.literal("ecommerce"),
|
|
17428
|
+
data: activatable_integration_data_schemas_exports.integrationEcommerceDataSchema.optional()
|
|
17384
17429
|
}).extend(writableIntegrationActivationRequestBaseSchema2.shape)
|
|
17385
17430
|
]);
|
|
17386
17431
|
var updateIntegrationActivationRequestResponseSchema = integrationActivationRequestDetailsSchema;
|
|
@@ -20544,11 +20589,34 @@ var GetIntegrationEcommerceList = class extends import_sdk_js_core137.AbstractAp
|
|
|
20544
20589
|
}
|
|
20545
20590
|
};
|
|
20546
20591
|
|
|
20547
|
-
// src/requests/services/ecommerce/
|
|
20592
|
+
// src/requests/services/ecommerce/GetIntegrationEcommerceSlotOptions.ts
|
|
20548
20593
|
var import_sdk_js_core138 = require("@deliverart/sdk-js-core");
|
|
20594
|
+
var import_sdk_js_point_of_sale9 = require("@deliverart/sdk-js-point-of-sale");
|
|
20595
|
+
var getIntegrationEcommerceSlotOptionsQuerySchema = import_sdk_js_point_of_sale9.pointOfSaleSlotOptionsQuerySchema;
|
|
20596
|
+
var getIntegrationEcommerceSlotOptionsInputSchema = external_exports.undefined();
|
|
20597
|
+
var getIntegrationEcommerceSlotOptionsResponseSchema = import_sdk_js_point_of_sale9.pointOfSaleSlotOptionsResponseSchema;
|
|
20598
|
+
var GetIntegrationEcommerceSlotOptions = class extends import_sdk_js_core138.AbstractApiRequest {
|
|
20599
|
+
constructor(path, options) {
|
|
20600
|
+
super(void 0, options);
|
|
20601
|
+
this.method = "GET";
|
|
20602
|
+
this.contentType = "application/json";
|
|
20603
|
+
this.accept = "application/json";
|
|
20604
|
+
this.inputSchema = getIntegrationEcommerceSlotOptionsInputSchema;
|
|
20605
|
+
this.outputSchema = getIntegrationEcommerceSlotOptionsResponseSchema;
|
|
20606
|
+
this.querySchema = getIntegrationEcommerceSlotOptionsQuerySchema;
|
|
20607
|
+
this.headersSchema = void 0;
|
|
20608
|
+
this.path = path;
|
|
20609
|
+
}
|
|
20610
|
+
getPath() {
|
|
20611
|
+
return `/integrations/ecommerce/${this.path}/slot_options`;
|
|
20612
|
+
}
|
|
20613
|
+
};
|
|
20614
|
+
|
|
20615
|
+
// src/requests/services/ecommerce/UpdateIntegrationEcommerce.ts
|
|
20616
|
+
var import_sdk_js_core139 = require("@deliverart/sdk-js-core");
|
|
20549
20617
|
var updateIntegrationEcommerceInputSchema = integrationEcommerceEditableFieldsSchema.partial();
|
|
20550
20618
|
var updateIntegrationEcommerceResponseSchema = integrationEcommerceDetailsSchema;
|
|
20551
|
-
var UpdateIntegrationEcommerce = class extends
|
|
20619
|
+
var UpdateIntegrationEcommerce = class extends import_sdk_js_core139.AbstractApiRequest {
|
|
20552
20620
|
constructor(integrationEcommerceId, input) {
|
|
20553
20621
|
super(input);
|
|
20554
20622
|
this.method = "PATCH";
|
|
@@ -20566,13 +20634,13 @@ var UpdateIntegrationEcommerce = class extends import_sdk_js_core138.AbstractApi
|
|
|
20566
20634
|
};
|
|
20567
20635
|
|
|
20568
20636
|
// src/requests/services/glovo/CreateIntegrationGlovo.ts
|
|
20569
|
-
var
|
|
20570
|
-
var
|
|
20637
|
+
var import_sdk_js_core140 = require("@deliverart/sdk-js-core");
|
|
20638
|
+
var import_sdk_js_point_of_sale10 = require("@deliverart/sdk-js-point-of-sale");
|
|
20571
20639
|
var createIntegrationGlovoInputSchema = integrationGlovoEditableFieldsSchema.extend({
|
|
20572
|
-
pointOfSale:
|
|
20640
|
+
pointOfSale: import_sdk_js_point_of_sale10.pointOfSaleIriSchema
|
|
20573
20641
|
});
|
|
20574
20642
|
var createIntegrationGlovoResponseSchema = integrationGlovoDetailsSchema;
|
|
20575
|
-
var CreateIntegrationGlovo = class extends
|
|
20643
|
+
var CreateIntegrationGlovo = class extends import_sdk_js_core140.AbstractApiRequest {
|
|
20576
20644
|
constructor(input) {
|
|
20577
20645
|
super(input);
|
|
20578
20646
|
this.method = "POST";
|
|
@@ -20589,11 +20657,11 @@ var CreateIntegrationGlovo = class extends import_sdk_js_core139.AbstractApiRequ
|
|
|
20589
20657
|
};
|
|
20590
20658
|
|
|
20591
20659
|
// src/requests/services/glovo/DeleteIntegrationGlovo.ts
|
|
20592
|
-
var
|
|
20660
|
+
var import_sdk_js_core141 = require("@deliverart/sdk-js-core");
|
|
20593
20661
|
var import_sdk_js_global_types50 = require("@deliverart/sdk-js-global-types");
|
|
20594
20662
|
var deleteIntegrationGlovoInputSchema = external_exports.undefined();
|
|
20595
20663
|
var deleteIntegrationGlovoResponseSchema = import_sdk_js_global_types50.emptyResponseSchema;
|
|
20596
|
-
var DeleteIntegrationGlovo = class extends
|
|
20664
|
+
var DeleteIntegrationGlovo = class extends import_sdk_js_core141.AbstractApiRequest {
|
|
20597
20665
|
constructor(integrationGlovoId) {
|
|
20598
20666
|
super(void 0);
|
|
20599
20667
|
this.method = "DELETE";
|
|
@@ -20611,10 +20679,10 @@ var DeleteIntegrationGlovo = class extends import_sdk_js_core140.AbstractApiRequ
|
|
|
20611
20679
|
};
|
|
20612
20680
|
|
|
20613
20681
|
// src/requests/services/glovo/GetIntegrationGlovoBulkUpdateDetails.ts
|
|
20614
|
-
var
|
|
20682
|
+
var import_sdk_js_core142 = require("@deliverart/sdk-js-core");
|
|
20615
20683
|
var getIntegrationGlovoBulkUpdateDetailsInputSchema = external_exports.undefined();
|
|
20616
20684
|
var getIntegrationGlovoBulkUpdateDetailsResponseSchema = integrationGlovoBulkUpdateDetailsSchema;
|
|
20617
|
-
var GetIntegrationGlovoBulkUpdateDetails = class extends
|
|
20685
|
+
var GetIntegrationGlovoBulkUpdateDetails = class extends import_sdk_js_core142.AbstractApiRequest {
|
|
20618
20686
|
constructor(integrationGlovoId, bulkUpdateId) {
|
|
20619
20687
|
super(void 0);
|
|
20620
20688
|
this.method = "GET";
|
|
@@ -20633,14 +20701,14 @@ var GetIntegrationGlovoBulkUpdateDetails = class extends import_sdk_js_core141.A
|
|
|
20633
20701
|
};
|
|
20634
20702
|
|
|
20635
20703
|
// src/requests/services/glovo/GetIntegrationGlovoBulkUpdates.ts
|
|
20636
|
-
var
|
|
20704
|
+
var import_sdk_js_core143 = require("@deliverart/sdk-js-core");
|
|
20637
20705
|
var import_sdk_js_global_types51 = require("@deliverart/sdk-js-global-types");
|
|
20638
20706
|
var getIntegrationGlovoBulkUpdatesQuerySchema = integrationGlovoBulkUpdatesQuerySchema;
|
|
20639
20707
|
var getIntegrationGlovoBulkUpdatesInputSchema = external_exports.undefined();
|
|
20640
20708
|
var getIntegrationGlovoBulkUpdatesResponseSchema = (0, import_sdk_js_global_types51.createPaginatedSchema)(
|
|
20641
20709
|
integrationGlovoBulkUpdateSchema
|
|
20642
20710
|
);
|
|
20643
|
-
var GetIntegrationGlovoBulkUpdates = class extends
|
|
20711
|
+
var GetIntegrationGlovoBulkUpdates = class extends import_sdk_js_core143.AbstractApiRequest {
|
|
20644
20712
|
constructor(integrationGlovoId, options) {
|
|
20645
20713
|
super(void 0, options);
|
|
20646
20714
|
this.method = "GET";
|
|
@@ -20660,10 +20728,10 @@ var GetIntegrationGlovoBulkUpdates = class extends import_sdk_js_core142.Abstrac
|
|
|
20660
20728
|
};
|
|
20661
20729
|
|
|
20662
20730
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequestDetails.ts
|
|
20663
|
-
var
|
|
20731
|
+
var import_sdk_js_core144 = require("@deliverart/sdk-js-core");
|
|
20664
20732
|
var getIntegrationGlovoClientLogRequestDetailsInputSchema = external_exports.undefined();
|
|
20665
20733
|
var getIntegrationGlovoClientLogRequestDetailsResponseSchema = integrationClientLogRequestDetailsSchema;
|
|
20666
|
-
var GetIntegrationGlovoClientLogRequestDetails = class extends
|
|
20734
|
+
var GetIntegrationGlovoClientLogRequestDetails = class extends import_sdk_js_core144.AbstractApiRequest {
|
|
20667
20735
|
constructor(integrationGlovoId, requestId) {
|
|
20668
20736
|
super(void 0);
|
|
20669
20737
|
this.method = "GET";
|
|
@@ -20682,14 +20750,14 @@ var GetIntegrationGlovoClientLogRequestDetails = class extends import_sdk_js_cor
|
|
|
20682
20750
|
};
|
|
20683
20751
|
|
|
20684
20752
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequests.ts
|
|
20685
|
-
var
|
|
20753
|
+
var import_sdk_js_core145 = require("@deliverart/sdk-js-core");
|
|
20686
20754
|
var import_sdk_js_global_types52 = require("@deliverart/sdk-js-global-types");
|
|
20687
20755
|
var getIntegrationGlovoClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
20688
20756
|
var getIntegrationGlovoClientLogRequestsInputSchema = external_exports.undefined();
|
|
20689
20757
|
var getIntegrationGlovoClientLogRequestsResponseSchema = (0, import_sdk_js_global_types52.createPaginatedSchema)(
|
|
20690
20758
|
integrationClientLogRequestSchema
|
|
20691
20759
|
);
|
|
20692
|
-
var GetIntegrationGlovoClientLogRequests = class extends
|
|
20760
|
+
var GetIntegrationGlovoClientLogRequests = class extends import_sdk_js_core145.AbstractApiRequest {
|
|
20693
20761
|
constructor(integrationGlovoId, options) {
|
|
20694
20762
|
super(void 0, options);
|
|
20695
20763
|
this.method = "GET";
|
|
@@ -20709,7 +20777,7 @@ var GetIntegrationGlovoClientLogRequests = class extends import_sdk_js_core144.A
|
|
|
20709
20777
|
};
|
|
20710
20778
|
|
|
20711
20779
|
// src/requests/services/glovo/GetIntegrationGlovoClientLogRequestsFromOrder.ts
|
|
20712
|
-
var
|
|
20780
|
+
var import_sdk_js_core146 = require("@deliverart/sdk-js-core");
|
|
20713
20781
|
var getIntegrationGlovoClientLogRequestsFromOrderQuerySchema = clientLogRequestQuerySchema.omit(
|
|
20714
20782
|
{
|
|
20715
20783
|
page: true
|
|
@@ -20719,7 +20787,7 @@ var getIntegrationGlovoClientLogRequestsFromOrderInputSchema = external_exports.
|
|
|
20719
20787
|
var getIntegrationGlovoClientLogRequestsFromOrderResponseSchema = external_exports.array(
|
|
20720
20788
|
integrationClientLogRequestSchema
|
|
20721
20789
|
);
|
|
20722
|
-
var GetIntegrationGlovoClientLogRequestsFromOrder = class extends
|
|
20790
|
+
var GetIntegrationGlovoClientLogRequestsFromOrder = class extends import_sdk_js_core146.AbstractApiRequest {
|
|
20723
20791
|
constructor(orderId, options) {
|
|
20724
20792
|
super(void 0, options);
|
|
20725
20793
|
this.method = "GET";
|
|
@@ -20739,10 +20807,10 @@ var GetIntegrationGlovoClientLogRequestsFromOrder = class extends import_sdk_js_
|
|
|
20739
20807
|
};
|
|
20740
20808
|
|
|
20741
20809
|
// src/requests/services/glovo/GetIntegrationGlovoDetails.ts
|
|
20742
|
-
var
|
|
20810
|
+
var import_sdk_js_core147 = require("@deliverart/sdk-js-core");
|
|
20743
20811
|
var getIntegrationGlovoDetailsInputSchema = external_exports.undefined();
|
|
20744
20812
|
var getIntegrationGlovoDetailsResponseSchema = integrationGlovoDetailsSchema;
|
|
20745
|
-
var GetIntegrationGlovoDetails = class extends
|
|
20813
|
+
var GetIntegrationGlovoDetails = class extends import_sdk_js_core147.AbstractApiRequest {
|
|
20746
20814
|
constructor(integrationGlovoId) {
|
|
20747
20815
|
super(void 0);
|
|
20748
20816
|
this.method = "GET";
|
|
@@ -20760,14 +20828,14 @@ var GetIntegrationGlovoDetails = class extends import_sdk_js_core146.AbstractApi
|
|
|
20760
20828
|
};
|
|
20761
20829
|
|
|
20762
20830
|
// src/requests/services/glovo/GetIntegrationGlovoGlobalClientLogRequests.ts
|
|
20763
|
-
var
|
|
20831
|
+
var import_sdk_js_core148 = require("@deliverart/sdk-js-core");
|
|
20764
20832
|
var import_sdk_js_global_types53 = require("@deliverart/sdk-js-global-types");
|
|
20765
20833
|
var getIntegrationGlovoGlobalClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
20766
20834
|
var getIntegrationGlovoGlobalClientLogRequestsInputSchema = external_exports.undefined();
|
|
20767
20835
|
var getIntegrationGlovoGlobalClientLogRequestsResponseSchema = (0, import_sdk_js_global_types53.createPaginatedSchema)(
|
|
20768
20836
|
integrationClientLogRequestSchema
|
|
20769
20837
|
);
|
|
20770
|
-
var GetIntegrationGlovoGlobalClientLogRequests = class extends
|
|
20838
|
+
var GetIntegrationGlovoGlobalClientLogRequests = class extends import_sdk_js_core148.AbstractApiRequest {
|
|
20771
20839
|
constructor(options) {
|
|
20772
20840
|
super(void 0, options);
|
|
20773
20841
|
this.method = "GET";
|
|
@@ -20786,14 +20854,14 @@ var GetIntegrationGlovoGlobalClientLogRequests = class extends import_sdk_js_cor
|
|
|
20786
20854
|
};
|
|
20787
20855
|
|
|
20788
20856
|
// src/requests/services/glovo/GetIntegrationGlovoList.ts
|
|
20789
|
-
var
|
|
20857
|
+
var import_sdk_js_core149 = require("@deliverart/sdk-js-core");
|
|
20790
20858
|
var import_sdk_js_global_types54 = require("@deliverart/sdk-js-global-types");
|
|
20791
20859
|
var getIntegrationGlovoListQuerySchema = integrationsGlovoQuerySchema.omit({
|
|
20792
20860
|
service: true
|
|
20793
20861
|
});
|
|
20794
20862
|
var getIntegrationGlovoListInputSchema = external_exports.undefined();
|
|
20795
20863
|
var getIntegrationGlovoListResponseSchema = (0, import_sdk_js_global_types54.createPaginatedSchema)(integrationGlovoSchema);
|
|
20796
|
-
var GetIntegrationGlovoList = class extends
|
|
20864
|
+
var GetIntegrationGlovoList = class extends import_sdk_js_core149.AbstractApiRequest {
|
|
20797
20865
|
constructor(options) {
|
|
20798
20866
|
super(void 0, options);
|
|
20799
20867
|
this.method = "GET";
|
|
@@ -20812,10 +20880,10 @@ var GetIntegrationGlovoList = class extends import_sdk_js_core148.AbstractApiReq
|
|
|
20812
20880
|
};
|
|
20813
20881
|
|
|
20814
20882
|
// src/requests/services/glovo/GetIntegrationGlovoMenuItemDeltaDetails.ts
|
|
20815
|
-
var
|
|
20883
|
+
var import_sdk_js_core150 = require("@deliverart/sdk-js-core");
|
|
20816
20884
|
var getIntegrationGlovoMenuItemDeltaDetailsInputSchema = external_exports.undefined();
|
|
20817
20885
|
var getIntegrationGlovoMenuItemDeltaDetailsResponseSchema = integrationGlovoMenuItemDeltaDetailsSchema;
|
|
20818
|
-
var GetIntegrationGlovoMenuItemDeltaDetails = class extends
|
|
20886
|
+
var GetIntegrationGlovoMenuItemDeltaDetails = class extends import_sdk_js_core150.AbstractApiRequest {
|
|
20819
20887
|
constructor(integrationGlovoId, deltaId) {
|
|
20820
20888
|
super(void 0);
|
|
20821
20889
|
this.method = "GET";
|
|
@@ -20834,14 +20902,14 @@ var GetIntegrationGlovoMenuItemDeltaDetails = class extends import_sdk_js_core14
|
|
|
20834
20902
|
};
|
|
20835
20903
|
|
|
20836
20904
|
// src/requests/services/glovo/GetIntegrationGlovoMenuItemDeltas.ts
|
|
20837
|
-
var
|
|
20905
|
+
var import_sdk_js_core151 = require("@deliverart/sdk-js-core");
|
|
20838
20906
|
var import_sdk_js_global_types55 = require("@deliverart/sdk-js-global-types");
|
|
20839
20907
|
var getIntegrationGlovoMenuItemDeltasQuerySchema = integrationGlovoMenuItemDeltasQuerySchema;
|
|
20840
20908
|
var getIntegrationGlovoMenuItemDeltasInputSchema = external_exports.undefined();
|
|
20841
20909
|
var getIntegrationGlovoMenuItemDeltasResponseSchema = (0, import_sdk_js_global_types55.createPaginatedSchema)(
|
|
20842
20910
|
integrationGlovoMenuItemDeltaSchema
|
|
20843
20911
|
);
|
|
20844
|
-
var GetIntegrationGlovoMenuItemDeltas = class extends
|
|
20912
|
+
var GetIntegrationGlovoMenuItemDeltas = class extends import_sdk_js_core151.AbstractApiRequest {
|
|
20845
20913
|
constructor(integrationGlovoId, options) {
|
|
20846
20914
|
super(void 0, options);
|
|
20847
20915
|
this.method = "GET";
|
|
@@ -20861,11 +20929,11 @@ var GetIntegrationGlovoMenuItemDeltas = class extends import_sdk_js_core150.Abst
|
|
|
20861
20929
|
};
|
|
20862
20930
|
|
|
20863
20931
|
// src/requests/services/glovo/GetIntegrationGlovoMenuValidation.ts
|
|
20864
|
-
var
|
|
20932
|
+
var import_sdk_js_core152 = require("@deliverart/sdk-js-core");
|
|
20865
20933
|
var import_sdk_js_global_types56 = require("@deliverart/sdk-js-global-types");
|
|
20866
20934
|
var getIntegrationGlovoMenuValidationInputSchema = external_exports.undefined();
|
|
20867
20935
|
var getIntegrationGlovoMenuValidationResponseSchema = import_sdk_js_global_types56.emptyResponseSchema;
|
|
20868
|
-
var GetIntegrationGlovoMenuValidation = class extends
|
|
20936
|
+
var GetIntegrationGlovoMenuValidation = class extends import_sdk_js_core152.AbstractApiRequest {
|
|
20869
20937
|
constructor(integrationGlovoId) {
|
|
20870
20938
|
super(void 0);
|
|
20871
20939
|
this.method = "GET";
|
|
@@ -20883,10 +20951,10 @@ var GetIntegrationGlovoMenuValidation = class extends import_sdk_js_core151.Abst
|
|
|
20883
20951
|
};
|
|
20884
20952
|
|
|
20885
20953
|
// src/requests/services/glovo/GetIntegrationGlovoMenuUpdateDetails.ts
|
|
20886
|
-
var
|
|
20954
|
+
var import_sdk_js_core153 = require("@deliverart/sdk-js-core");
|
|
20887
20955
|
var getIntegrationGlovoMenuUpdateDetailsInputSchema = external_exports.undefined();
|
|
20888
20956
|
var getIntegrationGlovoMenuUpdateDetailsResponseSchema = integrationGlovoMenuUpdateDetailsSchema;
|
|
20889
|
-
var GetIntegrationGlovoMenuUpdateDetails = class extends
|
|
20957
|
+
var GetIntegrationGlovoMenuUpdateDetails = class extends import_sdk_js_core153.AbstractApiRequest {
|
|
20890
20958
|
constructor(integrationGlovoId, processId) {
|
|
20891
20959
|
super(void 0);
|
|
20892
20960
|
this.method = "GET";
|
|
@@ -20905,14 +20973,14 @@ var GetIntegrationGlovoMenuUpdateDetails = class extends import_sdk_js_core152.A
|
|
|
20905
20973
|
};
|
|
20906
20974
|
|
|
20907
20975
|
// src/requests/services/glovo/GetIntegrationGlovoMenuUpdates.ts
|
|
20908
|
-
var
|
|
20976
|
+
var import_sdk_js_core154 = require("@deliverart/sdk-js-core");
|
|
20909
20977
|
var import_sdk_js_global_types57 = require("@deliverart/sdk-js-global-types");
|
|
20910
20978
|
var getIntegrationGlovoMenuUpdatesQuerySchema = integrationGlovoMenuUpdatesQuerySchema;
|
|
20911
20979
|
var getIntegrationGlovoMenuUpdatesInputSchema = external_exports.undefined();
|
|
20912
20980
|
var getIntegrationGlovoMenuUpdatesResponseSchema = (0, import_sdk_js_global_types57.createPaginatedSchema)(
|
|
20913
20981
|
integrationGlovoMenuUpdateSchema
|
|
20914
20982
|
);
|
|
20915
|
-
var GetIntegrationGlovoMenuUpdates = class extends
|
|
20983
|
+
var GetIntegrationGlovoMenuUpdates = class extends import_sdk_js_core154.AbstractApiRequest {
|
|
20916
20984
|
constructor(integrationId, options) {
|
|
20917
20985
|
super(void 0, options);
|
|
20918
20986
|
this.method = "GET";
|
|
@@ -20932,10 +21000,10 @@ var GetIntegrationGlovoMenuUpdates = class extends import_sdk_js_core153.Abstrac
|
|
|
20932
21000
|
};
|
|
20933
21001
|
|
|
20934
21002
|
// src/requests/services/glovo/GetIntegrationGlovoMenuVersionDetails.ts
|
|
20935
|
-
var
|
|
21003
|
+
var import_sdk_js_core155 = require("@deliverart/sdk-js-core");
|
|
20936
21004
|
var getIntegrationGlovoMenuVersionDetailsInputSchema = external_exports.undefined();
|
|
20937
21005
|
var getIntegrationGlovoMenuVersionDetailsResponseSchema = menuVersionDetailsSchema;
|
|
20938
|
-
var GetIntegrationGlovoMenuVersionDetails = class extends
|
|
21006
|
+
var GetIntegrationGlovoMenuVersionDetails = class extends import_sdk_js_core155.AbstractApiRequest {
|
|
20939
21007
|
constructor(integrationGlovoId, versionId) {
|
|
20940
21008
|
super(void 0);
|
|
20941
21009
|
this.method = "GET";
|
|
@@ -20954,14 +21022,14 @@ var GetIntegrationGlovoMenuVersionDetails = class extends import_sdk_js_core154.
|
|
|
20954
21022
|
};
|
|
20955
21023
|
|
|
20956
21024
|
// src/requests/services/glovo/GetIntegrationGlovoMenuVersions.ts
|
|
20957
|
-
var
|
|
21025
|
+
var import_sdk_js_core156 = require("@deliverart/sdk-js-core");
|
|
20958
21026
|
var import_sdk_js_global_types58 = require("@deliverart/sdk-js-global-types");
|
|
20959
21027
|
var getIntegrationGlovoMenuVersionsQuerySchema = external_exports.object({
|
|
20960
21028
|
page: external_exports.coerce.number().optional()
|
|
20961
21029
|
});
|
|
20962
21030
|
var getIntegrationGlovoMenuVersionsInputSchema = external_exports.undefined();
|
|
20963
21031
|
var getIntegrationGlovoMenuVersionsResponseSchema = (0, import_sdk_js_global_types58.createPaginatedSchema)(menuVersionSchema);
|
|
20964
|
-
var GetIntegrationGlovoMenuVersions = class extends
|
|
21032
|
+
var GetIntegrationGlovoMenuVersions = class extends import_sdk_js_core156.AbstractApiRequest {
|
|
20965
21033
|
constructor(integrationGlovoId, options) {
|
|
20966
21034
|
super(void 0, options);
|
|
20967
21035
|
this.method = "GET";
|
|
@@ -20981,10 +21049,10 @@ var GetIntegrationGlovoMenuVersions = class extends import_sdk_js_core155.Abstra
|
|
|
20981
21049
|
};
|
|
20982
21050
|
|
|
20983
21051
|
// src/requests/services/glovo/GetIntegrationGlovoOrderDetails.ts
|
|
20984
|
-
var
|
|
21052
|
+
var import_sdk_js_core157 = require("@deliverart/sdk-js-core");
|
|
20985
21053
|
var getIntegrationGlovoOrderDetailsInputSchema = external_exports.undefined();
|
|
20986
21054
|
var getIntegrationGlovoOrderDetailsResponseSchema = integrationGlovoOrderDetailsSchema;
|
|
20987
|
-
var GetIntegrationGlovoOrderDetails = class extends
|
|
21055
|
+
var GetIntegrationGlovoOrderDetails = class extends import_sdk_js_core157.AbstractApiRequest {
|
|
20988
21056
|
constructor(integrationGlovoId, orderId) {
|
|
20989
21057
|
super(void 0);
|
|
20990
21058
|
this.method = "GET";
|
|
@@ -21003,14 +21071,14 @@ var GetIntegrationGlovoOrderDetails = class extends import_sdk_js_core156.Abstra
|
|
|
21003
21071
|
};
|
|
21004
21072
|
|
|
21005
21073
|
// src/requests/services/glovo/GetIntegrationGlovoOrders.ts
|
|
21006
|
-
var
|
|
21074
|
+
var import_sdk_js_core158 = require("@deliverart/sdk-js-core");
|
|
21007
21075
|
var import_sdk_js_global_types59 = require("@deliverart/sdk-js-global-types");
|
|
21008
21076
|
var getIntegrationGlovoOrdersQuerySchema = integrationGlovoOrdersQuerySchema;
|
|
21009
21077
|
var getIntegrationGlovoOrdersInputSchema = external_exports.undefined();
|
|
21010
21078
|
var getIntegrationGlovoOrdersResponseSchema = (0, import_sdk_js_global_types59.createPaginatedSchema)(
|
|
21011
21079
|
integrationGlovoOrderSchema
|
|
21012
21080
|
);
|
|
21013
|
-
var GetIntegrationGlovoOrders = class extends
|
|
21081
|
+
var GetIntegrationGlovoOrders = class extends import_sdk_js_core158.AbstractApiRequest {
|
|
21014
21082
|
constructor(integrationGlovoId, options) {
|
|
21015
21083
|
super(void 0, options);
|
|
21016
21084
|
this.method = "GET";
|
|
@@ -21030,7 +21098,7 @@ var GetIntegrationGlovoOrders = class extends import_sdk_js_core157.AbstractApiR
|
|
|
21030
21098
|
};
|
|
21031
21099
|
|
|
21032
21100
|
// src/requests/services/glovo/GetIntegrationGlovoOrdersFromOrder.ts
|
|
21033
|
-
var
|
|
21101
|
+
var import_sdk_js_core159 = require("@deliverart/sdk-js-core");
|
|
21034
21102
|
var getIntegrationGlovoOrdersFromOrderQuerySchema = integrationGlovoOrdersQuerySchema.omit(
|
|
21035
21103
|
{
|
|
21036
21104
|
page: true
|
|
@@ -21040,7 +21108,7 @@ var getIntegrationGlovoOrdersFromOrderInputSchema = external_exports.undefined()
|
|
|
21040
21108
|
var getIntegrationGlovoOrdersFromOrderResponseSchema = external_exports.array(
|
|
21041
21109
|
integrationGlovoOrderSchema
|
|
21042
21110
|
);
|
|
21043
|
-
var GetIntegrationGlovoOrdersFromOrder = class extends
|
|
21111
|
+
var GetIntegrationGlovoOrdersFromOrder = class extends import_sdk_js_core159.AbstractApiRequest {
|
|
21044
21112
|
constructor(orderId, options) {
|
|
21045
21113
|
super(void 0, options);
|
|
21046
21114
|
this.method = "GET";
|
|
@@ -21060,10 +21128,10 @@ var GetIntegrationGlovoOrdersFromOrder = class extends import_sdk_js_core158.Abs
|
|
|
21060
21128
|
};
|
|
21061
21129
|
|
|
21062
21130
|
// src/requests/services/glovo/GetIntegrationGlovoSyncStatus.ts
|
|
21063
|
-
var
|
|
21131
|
+
var import_sdk_js_core160 = require("@deliverart/sdk-js-core");
|
|
21064
21132
|
var getIntegrationGlovoSyncStatusInputSchema = external_exports.undefined();
|
|
21065
21133
|
var getIntegrationGlovoSyncStatusResponseSchema = integrationGlovoSyncStatusResponseSchema;
|
|
21066
|
-
var GetIntegrationGlovoSyncStatus = class extends
|
|
21134
|
+
var GetIntegrationGlovoSyncStatus = class extends import_sdk_js_core160.AbstractApiRequest {
|
|
21067
21135
|
constructor(integrationGlovoId) {
|
|
21068
21136
|
super(void 0);
|
|
21069
21137
|
this.method = "GET";
|
|
@@ -21081,10 +21149,10 @@ var GetIntegrationGlovoSyncStatus = class extends import_sdk_js_core159.Abstract
|
|
|
21081
21149
|
};
|
|
21082
21150
|
|
|
21083
21151
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEventDetails.ts
|
|
21084
|
-
var
|
|
21152
|
+
var import_sdk_js_core161 = require("@deliverart/sdk-js-core");
|
|
21085
21153
|
var getIntegrationGlovoWebhookEventDetailsInputSchema = external_exports.undefined();
|
|
21086
21154
|
var getIntegrationGlovoWebhookEventDetailsResponseSchema = integrationGlovoWebhookEventDetailsSchema;
|
|
21087
|
-
var GetIntegrationGlovoWebhookEventDetails = class extends
|
|
21155
|
+
var GetIntegrationGlovoWebhookEventDetails = class extends import_sdk_js_core161.AbstractApiRequest {
|
|
21088
21156
|
constructor(integrationGlovoId, eventId) {
|
|
21089
21157
|
super(void 0);
|
|
21090
21158
|
this.method = "GET";
|
|
@@ -21103,14 +21171,14 @@ var GetIntegrationGlovoWebhookEventDetails = class extends import_sdk_js_core160
|
|
|
21103
21171
|
};
|
|
21104
21172
|
|
|
21105
21173
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEvents.ts
|
|
21106
|
-
var
|
|
21174
|
+
var import_sdk_js_core162 = require("@deliverart/sdk-js-core");
|
|
21107
21175
|
var import_sdk_js_global_types60 = require("@deliverart/sdk-js-global-types");
|
|
21108
21176
|
var getIntegrationGlovoWebhookEventsQuerySchema = integrationGlovoWebhookEventsQueryParamsSchema;
|
|
21109
21177
|
var getIntegrationGlovoWebhookEventsInputSchema = external_exports.undefined();
|
|
21110
21178
|
var getIntegrationGlovoWebhookEventsResponseSchema = (0, import_sdk_js_global_types60.createPaginatedSchema)(
|
|
21111
21179
|
integrationGlovoWebhookEventSchema
|
|
21112
21180
|
);
|
|
21113
|
-
var GetIntegrationGlovoWebhookEvents = class extends
|
|
21181
|
+
var GetIntegrationGlovoWebhookEvents = class extends import_sdk_js_core162.AbstractApiRequest {
|
|
21114
21182
|
constructor(integrationGlovoId, options) {
|
|
21115
21183
|
super(void 0, options);
|
|
21116
21184
|
this.method = "GET";
|
|
@@ -21130,7 +21198,7 @@ var GetIntegrationGlovoWebhookEvents = class extends import_sdk_js_core161.Abstr
|
|
|
21130
21198
|
};
|
|
21131
21199
|
|
|
21132
21200
|
// src/requests/services/glovo/GetIntegrationGlovoWebhookEventsFromOrder.ts
|
|
21133
|
-
var
|
|
21201
|
+
var import_sdk_js_core163 = require("@deliverart/sdk-js-core");
|
|
21134
21202
|
var getIntegrationGlovoWebhookEventsFromOrderQuerySchema = integrationGlovoWebhookEventsQueryParamsSchema.omit({
|
|
21135
21203
|
page: true
|
|
21136
21204
|
});
|
|
@@ -21138,7 +21206,7 @@ var getIntegrationGlovoWebhookEventsFromOrderInputSchema = external_exports.unde
|
|
|
21138
21206
|
var getIntegrationGlovoWebhookEventsFromOrderResponseSchema = external_exports.array(
|
|
21139
21207
|
integrationGlovoWebhookEventSchema
|
|
21140
21208
|
);
|
|
21141
|
-
var GetIntegrationGlovoWebhookEventsFromOrder = class extends
|
|
21209
|
+
var GetIntegrationGlovoWebhookEventsFromOrder = class extends import_sdk_js_core163.AbstractApiRequest {
|
|
21142
21210
|
constructor(orderId, options) {
|
|
21143
21211
|
super(void 0, options);
|
|
21144
21212
|
this.method = "GET";
|
|
@@ -21158,12 +21226,12 @@ var GetIntegrationGlovoWebhookEventsFromOrder = class extends import_sdk_js_core
|
|
|
21158
21226
|
};
|
|
21159
21227
|
|
|
21160
21228
|
// src/requests/services/glovo/IntegrationGlovoSyncMenu.ts
|
|
21161
|
-
var
|
|
21229
|
+
var import_sdk_js_core164 = require("@deliverart/sdk-js-core");
|
|
21162
21230
|
var integrationGlovoSyncMenuInputSchema = external_exports.undefined();
|
|
21163
21231
|
var integrationGlovoSyncMenuResponseSchema = external_exports.object({
|
|
21164
21232
|
message: external_exports.string()
|
|
21165
21233
|
});
|
|
21166
|
-
var IntegrationGlovoSyncMenu = class extends
|
|
21234
|
+
var IntegrationGlovoSyncMenu = class extends import_sdk_js_core164.AbstractApiRequest {
|
|
21167
21235
|
constructor(integrationGlovoId) {
|
|
21168
21236
|
super(void 0);
|
|
21169
21237
|
this.method = "POST";
|
|
@@ -21181,10 +21249,10 @@ var IntegrationGlovoSyncMenu = class extends import_sdk_js_core163.AbstractApiRe
|
|
|
21181
21249
|
};
|
|
21182
21250
|
|
|
21183
21251
|
// src/requests/services/glovo/UpdateIntegrationGlovo.ts
|
|
21184
|
-
var
|
|
21252
|
+
var import_sdk_js_core165 = require("@deliverart/sdk-js-core");
|
|
21185
21253
|
var updateIntegrationGlovoInputSchema = integrationGlovoEditableFieldsSchema.partial();
|
|
21186
21254
|
var updateIntegrationGlovoResponseSchema = integrationGlovoDetailsSchema;
|
|
21187
|
-
var UpdateIntegrationGlovo = class extends
|
|
21255
|
+
var UpdateIntegrationGlovo = class extends import_sdk_js_core165.AbstractApiRequest {
|
|
21188
21256
|
constructor(integrationGlovoId, input) {
|
|
21189
21257
|
super(input);
|
|
21190
21258
|
this.method = "PATCH";
|
|
@@ -21202,13 +21270,13 @@ var UpdateIntegrationGlovo = class extends import_sdk_js_core164.AbstractApiRequ
|
|
|
21202
21270
|
};
|
|
21203
21271
|
|
|
21204
21272
|
// src/requests/services/glovo/UpdateIntegrationGlovoStoreStatus.ts
|
|
21205
|
-
var
|
|
21273
|
+
var import_sdk_js_core166 = require("@deliverart/sdk-js-core");
|
|
21206
21274
|
var import_sdk_js_global_types61 = require("@deliverart/sdk-js-global-types");
|
|
21207
21275
|
var updateIntegrationGlovoStoreStatusInputSchema = external_exports.object({
|
|
21208
21276
|
status: types_exports.integrationGlovoStoreStatusSchema
|
|
21209
21277
|
});
|
|
21210
21278
|
var updateIntegrationGlovoStoreStatusResponseSchema = import_sdk_js_global_types61.emptyResponseSchema;
|
|
21211
|
-
var UpdateIntegrationGlovoStoreStatus = class extends
|
|
21279
|
+
var UpdateIntegrationGlovoStoreStatus = class extends import_sdk_js_core166.AbstractApiRequest {
|
|
21212
21280
|
constructor(integrationGlovoId, input) {
|
|
21213
21281
|
super(input);
|
|
21214
21282
|
this.method = "POST";
|
|
@@ -21226,13 +21294,13 @@ var UpdateIntegrationGlovoStoreStatus = class extends import_sdk_js_core165.Abst
|
|
|
21226
21294
|
};
|
|
21227
21295
|
|
|
21228
21296
|
// src/requests/services/justeat/CreateIntegrationJustEat.ts
|
|
21229
|
-
var
|
|
21230
|
-
var
|
|
21297
|
+
var import_sdk_js_core167 = require("@deliverart/sdk-js-core");
|
|
21298
|
+
var import_sdk_js_point_of_sale11 = require("@deliverart/sdk-js-point-of-sale");
|
|
21231
21299
|
var createIntegrationJustEatInputSchema = integrationJustEatEditableFieldsSchema.extend({
|
|
21232
|
-
pointOfSale:
|
|
21300
|
+
pointOfSale: import_sdk_js_point_of_sale11.pointOfSaleIriSchema
|
|
21233
21301
|
});
|
|
21234
21302
|
var createIntegrationJustEatResponseSchema = integrationJustEatDetailsSchema;
|
|
21235
|
-
var CreateIntegrationJustEat = class extends
|
|
21303
|
+
var CreateIntegrationJustEat = class extends import_sdk_js_core167.AbstractApiRequest {
|
|
21236
21304
|
constructor(input) {
|
|
21237
21305
|
super(input);
|
|
21238
21306
|
this.method = "POST";
|
|
@@ -21249,11 +21317,11 @@ var CreateIntegrationJustEat = class extends import_sdk_js_core166.AbstractApiRe
|
|
|
21249
21317
|
};
|
|
21250
21318
|
|
|
21251
21319
|
// src/requests/services/justeat/DeleteIntegrationJustEat.ts
|
|
21252
|
-
var
|
|
21320
|
+
var import_sdk_js_core168 = require("@deliverart/sdk-js-core");
|
|
21253
21321
|
var import_sdk_js_global_types62 = require("@deliverart/sdk-js-global-types");
|
|
21254
21322
|
var deleteIntegrationJustEatInputSchema = external_exports.undefined();
|
|
21255
21323
|
var deleteIntegrationJustEatResponseSchema = import_sdk_js_global_types62.emptyResponseSchema;
|
|
21256
|
-
var DeleteIntegrationJustEat = class extends
|
|
21324
|
+
var DeleteIntegrationJustEat = class extends import_sdk_js_core168.AbstractApiRequest {
|
|
21257
21325
|
constructor(integrationJustEatId) {
|
|
21258
21326
|
super(void 0);
|
|
21259
21327
|
this.method = "DELETE";
|
|
@@ -21271,10 +21339,10 @@ var DeleteIntegrationJustEat = class extends import_sdk_js_core167.AbstractApiRe
|
|
|
21271
21339
|
};
|
|
21272
21340
|
|
|
21273
21341
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequestDetails.ts
|
|
21274
|
-
var
|
|
21342
|
+
var import_sdk_js_core169 = require("@deliverart/sdk-js-core");
|
|
21275
21343
|
var getIntegrationJustEatClientLogRequestDetailsInputSchema = external_exports.undefined();
|
|
21276
21344
|
var getIntegrationJustEatClientLogRequestDetailsResponseSchema = integrationClientLogRequestDetailsSchema;
|
|
21277
|
-
var GetIntegrationJustEatClientLogRequestDetails = class extends
|
|
21345
|
+
var GetIntegrationJustEatClientLogRequestDetails = class extends import_sdk_js_core169.AbstractApiRequest {
|
|
21278
21346
|
constructor(integrationJustEatId, requestId) {
|
|
21279
21347
|
super(void 0);
|
|
21280
21348
|
this.method = "GET";
|
|
@@ -21293,14 +21361,14 @@ var GetIntegrationJustEatClientLogRequestDetails = class extends import_sdk_js_c
|
|
|
21293
21361
|
};
|
|
21294
21362
|
|
|
21295
21363
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequests.ts
|
|
21296
|
-
var
|
|
21364
|
+
var import_sdk_js_core170 = require("@deliverart/sdk-js-core");
|
|
21297
21365
|
var import_sdk_js_global_types63 = require("@deliverart/sdk-js-global-types");
|
|
21298
21366
|
var getIntegrationJustEatClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
21299
21367
|
var getIntegrationJustEatClientLogRequestsInputSchema = external_exports.undefined();
|
|
21300
21368
|
var getIntegrationJustEatClientLogRequestsResponseSchema = (0, import_sdk_js_global_types63.createPaginatedSchema)(
|
|
21301
21369
|
integrationClientLogRequestSchema
|
|
21302
21370
|
);
|
|
21303
|
-
var GetIntegrationJustEatClientLogRequests = class extends
|
|
21371
|
+
var GetIntegrationJustEatClientLogRequests = class extends import_sdk_js_core170.AbstractApiRequest {
|
|
21304
21372
|
constructor(integrationJustEatId, options) {
|
|
21305
21373
|
super(void 0, options);
|
|
21306
21374
|
this.method = "GET";
|
|
@@ -21320,7 +21388,7 @@ var GetIntegrationJustEatClientLogRequests = class extends import_sdk_js_core169
|
|
|
21320
21388
|
};
|
|
21321
21389
|
|
|
21322
21390
|
// src/requests/services/justeat/GetIntegrationJustEatClientLogRequestsFromOrder.ts
|
|
21323
|
-
var
|
|
21391
|
+
var import_sdk_js_core171 = require("@deliverart/sdk-js-core");
|
|
21324
21392
|
var getIntegrationJustEatClientLogRequestsFromOrderQuerySchema = clientLogRequestQuerySchema.omit({
|
|
21325
21393
|
page: true
|
|
21326
21394
|
});
|
|
@@ -21328,7 +21396,7 @@ var getIntegrationJustEatClientLogRequestsFromOrderInputSchema = external_export
|
|
|
21328
21396
|
var getIntegrationJustEatClientLogRequestsFromOrderResponseSchema = external_exports.array(
|
|
21329
21397
|
integrationClientLogRequestSchema
|
|
21330
21398
|
);
|
|
21331
|
-
var GetIntegrationJustEatClientLogRequestsFromOrder = class extends
|
|
21399
|
+
var GetIntegrationJustEatClientLogRequestsFromOrder = class extends import_sdk_js_core171.AbstractApiRequest {
|
|
21332
21400
|
constructor(orderId, options) {
|
|
21333
21401
|
super(void 0, options);
|
|
21334
21402
|
this.method = "GET";
|
|
@@ -21348,10 +21416,10 @@ var GetIntegrationJustEatClientLogRequestsFromOrder = class extends import_sdk_j
|
|
|
21348
21416
|
};
|
|
21349
21417
|
|
|
21350
21418
|
// src/requests/services/justeat/GetIntegrationJustEatDetails.ts
|
|
21351
|
-
var
|
|
21419
|
+
var import_sdk_js_core172 = require("@deliverart/sdk-js-core");
|
|
21352
21420
|
var getIntegrationJustEatDetailsInputSchema = external_exports.undefined();
|
|
21353
21421
|
var getIntegrationJustEatDetailsResponseSchema = integrationJustEatDetailsSchema;
|
|
21354
|
-
var GetIntegrationJustEatDetails = class extends
|
|
21422
|
+
var GetIntegrationJustEatDetails = class extends import_sdk_js_core172.AbstractApiRequest {
|
|
21355
21423
|
constructor(integrationJustEatId) {
|
|
21356
21424
|
super(void 0);
|
|
21357
21425
|
this.method = "GET";
|
|
@@ -21369,14 +21437,14 @@ var GetIntegrationJustEatDetails = class extends import_sdk_js_core171.AbstractA
|
|
|
21369
21437
|
};
|
|
21370
21438
|
|
|
21371
21439
|
// src/requests/services/justeat/GetIntegrationJustEatGlobalClientLogRequests.ts
|
|
21372
|
-
var
|
|
21440
|
+
var import_sdk_js_core173 = require("@deliverart/sdk-js-core");
|
|
21373
21441
|
var import_sdk_js_global_types64 = require("@deliverart/sdk-js-global-types");
|
|
21374
21442
|
var getIntegrationJustEatGlobalClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
|
|
21375
21443
|
var getIntegrationJustEatGlobalClientLogRequestsInputSchema = external_exports.undefined();
|
|
21376
21444
|
var getIntegrationJustEatGlobalClientLogRequestsResponseSchema = (0, import_sdk_js_global_types64.createPaginatedSchema)(
|
|
21377
21445
|
integrationClientLogRequestSchema
|
|
21378
21446
|
);
|
|
21379
|
-
var GetIntegrationJustEatGlobalClientLogRequests = class extends
|
|
21447
|
+
var GetIntegrationJustEatGlobalClientLogRequests = class extends import_sdk_js_core173.AbstractApiRequest {
|
|
21380
21448
|
constructor(options) {
|
|
21381
21449
|
super(void 0, options);
|
|
21382
21450
|
this.method = "GET";
|
|
@@ -21395,14 +21463,14 @@ var GetIntegrationJustEatGlobalClientLogRequests = class extends import_sdk_js_c
|
|
|
21395
21463
|
};
|
|
21396
21464
|
|
|
21397
21465
|
// src/requests/services/justeat/GetIntegrationJustEatList.ts
|
|
21398
|
-
var
|
|
21466
|
+
var import_sdk_js_core174 = require("@deliverart/sdk-js-core");
|
|
21399
21467
|
var import_sdk_js_global_types65 = require("@deliverart/sdk-js-global-types");
|
|
21400
21468
|
var getIntegrationJustEatListQuerySchema = integrationsJustEatQuerySchema.omit({
|
|
21401
21469
|
service: true
|
|
21402
21470
|
});
|
|
21403
21471
|
var getIntegrationJustEatListInputSchema = external_exports.undefined();
|
|
21404
21472
|
var getIntegrationJustEatListResponseSchema = (0, import_sdk_js_global_types65.createPaginatedSchema)(integrationJustEatSchema);
|
|
21405
|
-
var GetIntegrationJustEatList = class extends
|
|
21473
|
+
var GetIntegrationJustEatList = class extends import_sdk_js_core174.AbstractApiRequest {
|
|
21406
21474
|
constructor(options) {
|
|
21407
21475
|
super(void 0, options);
|
|
21408
21476
|
this.method = "GET";
|
|
@@ -21421,10 +21489,10 @@ var GetIntegrationJustEatList = class extends import_sdk_js_core173.AbstractApiR
|
|
|
21421
21489
|
};
|
|
21422
21490
|
|
|
21423
21491
|
// src/requests/services/justeat/GetIntegrationJustEatMenuItemAvailabilityDeltaDetails.ts
|
|
21424
|
-
var
|
|
21492
|
+
var import_sdk_js_core175 = require("@deliverart/sdk-js-core");
|
|
21425
21493
|
var getIntegrationJustEatMenuItemAvailabilityDeltaDetailsInputSchema = external_exports.undefined();
|
|
21426
21494
|
var getIntegrationJustEatMenuItemAvailabilityDeltaDetailsResponseSchema = integrationJustEatMenuItemAvailabilityDeltaDetailsSchema;
|
|
21427
|
-
var GetIntegrationJustEatMenuItemAvailabilityDeltaDetails = class extends
|
|
21495
|
+
var GetIntegrationJustEatMenuItemAvailabilityDeltaDetails = class extends import_sdk_js_core175.AbstractApiRequest {
|
|
21428
21496
|
constructor(integrationJustEatId, deltaId) {
|
|
21429
21497
|
super(void 0);
|
|
21430
21498
|
this.method = "GET";
|
|
@@ -21443,12 +21511,12 @@ var GetIntegrationJustEatMenuItemAvailabilityDeltaDetails = class extends import
|
|
|
21443
21511
|
};
|
|
21444
21512
|
|
|
21445
21513
|
// src/requests/services/justeat/GetIntegrationJustEatMenuItemAvailabilityDeltas.ts
|
|
21446
|
-
var
|
|
21514
|
+
var import_sdk_js_core176 = require("@deliverart/sdk-js-core");
|
|
21447
21515
|
var import_sdk_js_global_types66 = require("@deliverart/sdk-js-global-types");
|
|
21448
21516
|
var getIntegrationJustEatMenuItemAvailabilityDeltasQuerySchema = integrationJustEatMenuItemAvailabilityDeltasQuerySchema;
|
|
21449
21517
|
var getIntegrationJustEatMenuItemAvailabilityDeltasInputSchema = external_exports.undefined();
|
|
21450
21518
|
var getIntegrationJustEatMenuItemAvailabilityDeltasResponseSchema = (0, import_sdk_js_global_types66.createPaginatedSchema)(integrationJustEatMenuItemAvailabilityDeltaSchema);
|
|
21451
|
-
var GetIntegrationJustEatMenuItemAvailabilityDeltas = class extends
|
|
21519
|
+
var GetIntegrationJustEatMenuItemAvailabilityDeltas = class extends import_sdk_js_core176.AbstractApiRequest {
|
|
21452
21520
|
constructor(integrationJustEatId, options) {
|
|
21453
21521
|
super(void 0, options);
|
|
21454
21522
|
this.method = "GET";
|
|
@@ -21468,11 +21536,11 @@ var GetIntegrationJustEatMenuItemAvailabilityDeltas = class extends import_sdk_j
|
|
|
21468
21536
|
};
|
|
21469
21537
|
|
|
21470
21538
|
// src/requests/services/justeat/GetIntegrationJustEatMenuValidation.ts
|
|
21471
|
-
var
|
|
21539
|
+
var import_sdk_js_core177 = require("@deliverart/sdk-js-core");
|
|
21472
21540
|
var import_sdk_js_global_types67 = require("@deliverart/sdk-js-global-types");
|
|
21473
21541
|
var getIntegrationJustEatMenuValidationInputSchema = external_exports.undefined();
|
|
21474
21542
|
var getIntegrationJustEatMenuValidationResponseSchema = import_sdk_js_global_types67.emptyResponseSchema;
|
|
21475
|
-
var GetIntegrationJustEatMenuValidation = class extends
|
|
21543
|
+
var GetIntegrationJustEatMenuValidation = class extends import_sdk_js_core177.AbstractApiRequest {
|
|
21476
21544
|
constructor(integrationJustEatId, type) {
|
|
21477
21545
|
super(void 0);
|
|
21478
21546
|
this.method = "GET";
|
|
@@ -21491,10 +21559,10 @@ var GetIntegrationJustEatMenuValidation = class extends import_sdk_js_core176.Ab
|
|
|
21491
21559
|
};
|
|
21492
21560
|
|
|
21493
21561
|
// src/requests/services/justeat/GetIntegrationJustEatMenuVersionDetails.ts
|
|
21494
|
-
var
|
|
21562
|
+
var import_sdk_js_core178 = require("@deliverart/sdk-js-core");
|
|
21495
21563
|
var getIntegrationJustEatMenuVersionDetailsInputSchema = external_exports.undefined();
|
|
21496
21564
|
var getIntegrationJustEatMenuVersionDetailsResponseSchema = menuVersionDetailsSchema;
|
|
21497
|
-
var GetIntegrationJustEatMenuVersionDetails = class extends
|
|
21565
|
+
var GetIntegrationJustEatMenuVersionDetails = class extends import_sdk_js_core178.AbstractApiRequest {
|
|
21498
21566
|
constructor(integrationJustEatId, versionId) {
|
|
21499
21567
|
super(void 0);
|
|
21500
21568
|
this.method = "GET";
|
|
@@ -21513,14 +21581,14 @@ var GetIntegrationJustEatMenuVersionDetails = class extends import_sdk_js_core17
|
|
|
21513
21581
|
};
|
|
21514
21582
|
|
|
21515
21583
|
// src/requests/services/justeat/GetIntegrationJustEatMenuVersions.ts
|
|
21516
|
-
var
|
|
21584
|
+
var import_sdk_js_core179 = require("@deliverart/sdk-js-core");
|
|
21517
21585
|
var import_sdk_js_global_types68 = require("@deliverart/sdk-js-global-types");
|
|
21518
21586
|
var getIntegrationJustEatMenuVersionsQuerySchema = external_exports.object({
|
|
21519
21587
|
page: external_exports.coerce.number().optional()
|
|
21520
21588
|
});
|
|
21521
21589
|
var getIntegrationJustEatMenuVersionsInputSchema = external_exports.undefined();
|
|
21522
21590
|
var getIntegrationJustEatMenuVersionsResponseSchema = (0, import_sdk_js_global_types68.createPaginatedSchema)(menuVersionSchema);
|
|
21523
|
-
var GetIntegrationJustEatMenuVersions = class extends
|
|
21591
|
+
var GetIntegrationJustEatMenuVersions = class extends import_sdk_js_core179.AbstractApiRequest {
|
|
21524
21592
|
constructor(integrationJustEatId, options) {
|
|
21525
21593
|
super(void 0, options);
|
|
21526
21594
|
this.method = "GET";
|
|
@@ -21540,10 +21608,10 @@ var GetIntegrationJustEatMenuVersions = class extends import_sdk_js_core178.Abst
|
|
|
21540
21608
|
};
|
|
21541
21609
|
|
|
21542
21610
|
// src/requests/services/justeat/GetIntegrationJustEatOrderDetails.ts
|
|
21543
|
-
var
|
|
21611
|
+
var import_sdk_js_core180 = require("@deliverart/sdk-js-core");
|
|
21544
21612
|
var getIntegrationJustEatOrderDetailsInputSchema = external_exports.undefined();
|
|
21545
21613
|
var getIntegrationJustEatOrderDetailsResponseSchema = integrationJustEatOrderDetailsSchema;
|
|
21546
|
-
var GetIntegrationJustEatOrderDetails = class extends
|
|
21614
|
+
var GetIntegrationJustEatOrderDetails = class extends import_sdk_js_core180.AbstractApiRequest {
|
|
21547
21615
|
constructor(integrationJustEatId, orderId) {
|
|
21548
21616
|
super(void 0);
|
|
21549
21617
|
this.method = "GET";
|
|
@@ -21562,14 +21630,14 @@ var GetIntegrationJustEatOrderDetails = class extends import_sdk_js_core179.Abst
|
|
|
21562
21630
|
};
|
|
21563
21631
|
|
|
21564
21632
|
// src/requests/services/justeat/GetIntegrationJustEatOrders.ts
|
|
21565
|
-
var
|
|
21633
|
+
var import_sdk_js_core181 = require("@deliverart/sdk-js-core");
|
|
21566
21634
|
var import_sdk_js_global_types69 = require("@deliverart/sdk-js-global-types");
|
|
21567
21635
|
var getIntegrationJustEatOrdersQuerySchema = integrationJustEatOrdersQueryParamsSchema;
|
|
21568
21636
|
var getIntegrationJustEatOrdersInputSchema = external_exports.undefined();
|
|
21569
21637
|
var getIntegrationJustEatOrdersResponseSchema = (0, import_sdk_js_global_types69.createPaginatedSchema)(
|
|
21570
21638
|
integrationJustEatOrderSchema
|
|
21571
21639
|
);
|
|
21572
|
-
var GetIntegrationJustEatOrders = class extends
|
|
21640
|
+
var GetIntegrationJustEatOrders = class extends import_sdk_js_core181.AbstractApiRequest {
|
|
21573
21641
|
constructor(integrationJustEatId, options) {
|
|
21574
21642
|
super(void 0, options);
|
|
21575
21643
|
this.method = "GET";
|
|
@@ -21589,7 +21657,7 @@ var GetIntegrationJustEatOrders = class extends import_sdk_js_core180.AbstractAp
|
|
|
21589
21657
|
};
|
|
21590
21658
|
|
|
21591
21659
|
// src/requests/services/justeat/GetIntegrationJustEatOrdersFromOrder.ts
|
|
21592
|
-
var
|
|
21660
|
+
var import_sdk_js_core182 = require("@deliverart/sdk-js-core");
|
|
21593
21661
|
var getIntegrationJustEatOrdersFromOrderQuerySchema = integrationJustEatOrdersQueryParamsSchema.omit({
|
|
21594
21662
|
page: true
|
|
21595
21663
|
});
|
|
@@ -21597,7 +21665,7 @@ var getIntegrationJustEatOrdersFromOrderInputSchema = external_exports.undefined
|
|
|
21597
21665
|
var getIntegrationJustEatOrdersFromOrderResponseSchema = external_exports.array(
|
|
21598
21666
|
integrationJustEatOrderSchema
|
|
21599
21667
|
);
|
|
21600
|
-
var GetIntegrationJustEatOrdersFromOrder = class extends
|
|
21668
|
+
var GetIntegrationJustEatOrdersFromOrder = class extends import_sdk_js_core182.AbstractApiRequest {
|
|
21601
21669
|
constructor(orderId, options) {
|
|
21602
21670
|
super(void 0, options);
|
|
21603
21671
|
this.method = "GET";
|
|
@@ -21617,10 +21685,10 @@ var GetIntegrationJustEatOrdersFromOrder = class extends import_sdk_js_core181.A
|
|
|
21617
21685
|
};
|
|
21618
21686
|
|
|
21619
21687
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcessDetails.ts
|
|
21620
|
-
var
|
|
21688
|
+
var import_sdk_js_core183 = require("@deliverart/sdk-js-core");
|
|
21621
21689
|
var getIntegrationJustEatSyncMenuProcessDetailsInputSchema = external_exports.undefined();
|
|
21622
21690
|
var getIntegrationJustEatSyncMenuProcessDetailsResponseSchema = integrationJustEatSyncMenuProcessDetailsSchema;
|
|
21623
|
-
var GetIntegrationJustEatSyncMenuProcessDetails = class extends
|
|
21691
|
+
var GetIntegrationJustEatSyncMenuProcessDetails = class extends import_sdk_js_core183.AbstractApiRequest {
|
|
21624
21692
|
constructor(integrationJustEatId, processId) {
|
|
21625
21693
|
super(void 0);
|
|
21626
21694
|
this.method = "GET";
|
|
@@ -21639,14 +21707,14 @@ var GetIntegrationJustEatSyncMenuProcessDetails = class extends import_sdk_js_co
|
|
|
21639
21707
|
};
|
|
21640
21708
|
|
|
21641
21709
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcesses.ts
|
|
21642
|
-
var
|
|
21710
|
+
var import_sdk_js_core184 = require("@deliverart/sdk-js-core");
|
|
21643
21711
|
var import_sdk_js_global_types70 = require("@deliverart/sdk-js-global-types");
|
|
21644
21712
|
var getIntegrationJustEatSyncMenuProcessesQuerySchema = integrationJustEatSyncMenuProcessesQuerySchema;
|
|
21645
21713
|
var getIntegrationJustEatSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
21646
21714
|
var getIntegrationJustEatSyncMenuProcessesResponseSchema = (0, import_sdk_js_global_types70.createPaginatedSchema)(
|
|
21647
21715
|
integrationJustEatSyncMenuProcessSchema
|
|
21648
21716
|
);
|
|
21649
|
-
var GetIntegrationJustEatSyncMenuProcesses = class extends
|
|
21717
|
+
var GetIntegrationJustEatSyncMenuProcesses = class extends import_sdk_js_core184.AbstractApiRequest {
|
|
21650
21718
|
constructor(integrationJustEatId, options) {
|
|
21651
21719
|
super(void 0, options);
|
|
21652
21720
|
this.method = "GET";
|
|
@@ -21666,12 +21734,12 @@ var GetIntegrationJustEatSyncMenuProcesses = class extends import_sdk_js_core183
|
|
|
21666
21734
|
};
|
|
21667
21735
|
|
|
21668
21736
|
// src/requests/services/justeat/IntegrationJustEatSyncMenu.ts
|
|
21669
|
-
var
|
|
21737
|
+
var import_sdk_js_core185 = require("@deliverart/sdk-js-core");
|
|
21670
21738
|
var integrationJustEatSyncMenuInputSchema = external_exports.undefined();
|
|
21671
21739
|
var integrationJustEatSyncMenuResponseSchema = external_exports.object({
|
|
21672
21740
|
message: external_exports.string()
|
|
21673
21741
|
});
|
|
21674
|
-
var IntegrationJustEatSyncMenu = class extends
|
|
21742
|
+
var IntegrationJustEatSyncMenu = class extends import_sdk_js_core185.AbstractApiRequest {
|
|
21675
21743
|
constructor(integrationJustEatId) {
|
|
21676
21744
|
super(void 0);
|
|
21677
21745
|
this.method = "POST";
|
|
@@ -21689,12 +21757,12 @@ var IntegrationJustEatSyncMenu = class extends import_sdk_js_core184.AbstractApi
|
|
|
21689
21757
|
};
|
|
21690
21758
|
|
|
21691
21759
|
// src/requests/services/justeat/IntegrationJustEatSyncOpeningTimes.ts
|
|
21692
|
-
var
|
|
21760
|
+
var import_sdk_js_core186 = require("@deliverart/sdk-js-core");
|
|
21693
21761
|
var integrationJustEatSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
21694
21762
|
var integrationJustEatSyncOpeningHoursResponseSchema = external_exports.object({
|
|
21695
21763
|
message: external_exports.string()
|
|
21696
21764
|
});
|
|
21697
|
-
var IntegrationJustEatSyncOpeningTimes = class extends
|
|
21765
|
+
var IntegrationJustEatSyncOpeningTimes = class extends import_sdk_js_core186.AbstractApiRequest {
|
|
21698
21766
|
constructor(integrationJustEatId) {
|
|
21699
21767
|
super(void 0);
|
|
21700
21768
|
this.method = "POST";
|
|
@@ -21712,10 +21780,10 @@ var IntegrationJustEatSyncOpeningTimes = class extends import_sdk_js_core185.Abs
|
|
|
21712
21780
|
};
|
|
21713
21781
|
|
|
21714
21782
|
// src/requests/services/justeat/UpdateIntegrationJustEat.ts
|
|
21715
|
-
var
|
|
21783
|
+
var import_sdk_js_core187 = require("@deliverart/sdk-js-core");
|
|
21716
21784
|
var updateIntegrationJustEatInputSchema = integrationJustEatEditableFieldsSchema.partial();
|
|
21717
21785
|
var updateIntegrationJustEatResponseSchema = integrationJustEatDetailsSchema;
|
|
21718
|
-
var UpdateIntegrationJustEat = class extends
|
|
21786
|
+
var UpdateIntegrationJustEat = class extends import_sdk_js_core187.AbstractApiRequest {
|
|
21719
21787
|
constructor(integrationJustEatId, input) {
|
|
21720
21788
|
super(input);
|
|
21721
21789
|
this.method = "PATCH";
|
|
@@ -21733,13 +21801,13 @@ var UpdateIntegrationJustEat = class extends import_sdk_js_core186.AbstractApiRe
|
|
|
21733
21801
|
};
|
|
21734
21802
|
|
|
21735
21803
|
// src/requests/services/justeat/UpdateIntegrationJustEatRestaurantStatus.ts
|
|
21736
|
-
var
|
|
21804
|
+
var import_sdk_js_core188 = require("@deliverart/sdk-js-core");
|
|
21737
21805
|
var import_sdk_js_global_types71 = require("@deliverart/sdk-js-global-types");
|
|
21738
21806
|
var updateIntegrationJustEatRestaurantStatusInputSchema = external_exports.object({
|
|
21739
21807
|
status: types_exports.integrationJustEatRestaurantStatusSchema
|
|
21740
21808
|
});
|
|
21741
21809
|
var updateIntegrationJustEatRestaurantStatusResponseSchema = import_sdk_js_global_types71.emptyResponseSchema;
|
|
21742
|
-
var UpdateIntegrationJustEatRestaurantStatus = class extends
|
|
21810
|
+
var UpdateIntegrationJustEatRestaurantStatus = class extends import_sdk_js_core188.AbstractApiRequest {
|
|
21743
21811
|
constructor(integrationJustEatId, input) {
|
|
21744
21812
|
super(input);
|
|
21745
21813
|
this.method = "POST";
|
|
@@ -21757,13 +21825,13 @@ var UpdateIntegrationJustEatRestaurantStatus = class extends import_sdk_js_core1
|
|
|
21757
21825
|
};
|
|
21758
21826
|
|
|
21759
21827
|
// src/requests/services/kitchen/CreateIntegrationKitchen.ts
|
|
21760
|
-
var
|
|
21761
|
-
var
|
|
21828
|
+
var import_sdk_js_core189 = require("@deliverart/sdk-js-core");
|
|
21829
|
+
var import_sdk_js_point_of_sale12 = require("@deliverart/sdk-js-point-of-sale");
|
|
21762
21830
|
var createIntegrationKitchenInputSchema = integrationKitchenEditableFieldsSchema.extend({
|
|
21763
|
-
pointOfSale:
|
|
21831
|
+
pointOfSale: import_sdk_js_point_of_sale12.pointOfSaleIriSchema
|
|
21764
21832
|
});
|
|
21765
21833
|
var createIntegrationKitchenResponseSchema = integrationKitchenDetailsSchema;
|
|
21766
|
-
var CreateIntegrationKitchen = class extends
|
|
21834
|
+
var CreateIntegrationKitchen = class extends import_sdk_js_core189.AbstractApiRequest {
|
|
21767
21835
|
constructor(input) {
|
|
21768
21836
|
super(input);
|
|
21769
21837
|
this.method = "POST";
|
|
@@ -21780,10 +21848,10 @@ var CreateIntegrationKitchen = class extends import_sdk_js_core188.AbstractApiRe
|
|
|
21780
21848
|
};
|
|
21781
21849
|
|
|
21782
21850
|
// src/requests/services/kitchen/CreateIntegrationKitchenAccessToken.ts
|
|
21783
|
-
var
|
|
21851
|
+
var import_sdk_js_core190 = require("@deliverart/sdk-js-core");
|
|
21784
21852
|
var createIntegrationKitchenAccessTokenInputSchema = external_exports.undefined();
|
|
21785
21853
|
var createIntegrationKitchenAccessTokenResponseSchema = integrationKitchenAccessTokenDetailsSchema;
|
|
21786
|
-
var CreateIntegrationKitchenAccessToken = class extends
|
|
21854
|
+
var CreateIntegrationKitchenAccessToken = class extends import_sdk_js_core190.AbstractApiRequest {
|
|
21787
21855
|
constructor(integrationKitchenId) {
|
|
21788
21856
|
super(void 0);
|
|
21789
21857
|
this.method = "POST";
|
|
@@ -21801,11 +21869,11 @@ var CreateIntegrationKitchenAccessToken = class extends import_sdk_js_core189.Ab
|
|
|
21801
21869
|
};
|
|
21802
21870
|
|
|
21803
21871
|
// src/requests/services/kitchen/DeleteIntegrationKitchen.ts
|
|
21804
|
-
var
|
|
21872
|
+
var import_sdk_js_core191 = require("@deliverart/sdk-js-core");
|
|
21805
21873
|
var import_sdk_js_global_types72 = require("@deliverart/sdk-js-global-types");
|
|
21806
21874
|
var deleteIntegrationKitchenInputSchema = external_exports.undefined();
|
|
21807
21875
|
var deleteIntegrationKitchenResponseSchema = import_sdk_js_global_types72.emptyResponseSchema;
|
|
21808
|
-
var DeleteIntegrationKitchen = class extends
|
|
21876
|
+
var DeleteIntegrationKitchen = class extends import_sdk_js_core191.AbstractApiRequest {
|
|
21809
21877
|
constructor(integrationKitchenId) {
|
|
21810
21878
|
super(void 0);
|
|
21811
21879
|
this.method = "DELETE";
|
|
@@ -21823,11 +21891,11 @@ var DeleteIntegrationKitchen = class extends import_sdk_js_core190.AbstractApiRe
|
|
|
21823
21891
|
};
|
|
21824
21892
|
|
|
21825
21893
|
// src/requests/services/kitchen/DeleteIntegrationKitchenAccessToken.ts
|
|
21826
|
-
var
|
|
21894
|
+
var import_sdk_js_core192 = require("@deliverart/sdk-js-core");
|
|
21827
21895
|
var import_sdk_js_global_types73 = require("@deliverart/sdk-js-global-types");
|
|
21828
21896
|
var deleteIntegrationKitchenAccessTokenInputSchema = external_exports.undefined();
|
|
21829
21897
|
var deleteIntegrationKitchenAccessTokenResponseSchema = import_sdk_js_global_types73.emptyResponseSchema;
|
|
21830
|
-
var DeleteIntegrationKitchenAccessToken = class extends
|
|
21898
|
+
var DeleteIntegrationKitchenAccessToken = class extends import_sdk_js_core192.AbstractApiRequest {
|
|
21831
21899
|
constructor(integrationKitchenId, integrationKitchenAccessTokenId) {
|
|
21832
21900
|
super(void 0);
|
|
21833
21901
|
this.method = "DELETE";
|
|
@@ -21846,10 +21914,10 @@ var DeleteIntegrationKitchenAccessToken = class extends import_sdk_js_core191.Ab
|
|
|
21846
21914
|
};
|
|
21847
21915
|
|
|
21848
21916
|
// src/requests/services/kitchen/GetIntegrationKitchenAccessTokenDetails.ts
|
|
21849
|
-
var
|
|
21917
|
+
var import_sdk_js_core193 = require("@deliverart/sdk-js-core");
|
|
21850
21918
|
var getIntegrationKitchenAccessTokenDetailsInputSchema = external_exports.undefined();
|
|
21851
21919
|
var getIntegrationKitchenAccessTokenDetailsResponseSchema = integrationKitchenAccessTokenDetailsSchema;
|
|
21852
|
-
var GetIntegrationKitchenAccessTokenDetails = class extends
|
|
21920
|
+
var GetIntegrationKitchenAccessTokenDetails = class extends import_sdk_js_core193.AbstractApiRequest {
|
|
21853
21921
|
constructor(integrationKitchenId, requestId) {
|
|
21854
21922
|
super(void 0);
|
|
21855
21923
|
this.method = "GET";
|
|
@@ -21868,14 +21936,14 @@ var GetIntegrationKitchenAccessTokenDetails = class extends import_sdk_js_core19
|
|
|
21868
21936
|
};
|
|
21869
21937
|
|
|
21870
21938
|
// src/requests/services/kitchen/GetIntegrationKitchenAccessTokens.ts
|
|
21871
|
-
var
|
|
21939
|
+
var import_sdk_js_core194 = require("@deliverart/sdk-js-core");
|
|
21872
21940
|
var import_sdk_js_global_types74 = require("@deliverart/sdk-js-global-types");
|
|
21873
21941
|
var getIntegrationKitchenAccessTokensQuerySchema = integrationKitchenAccessTokensQuerySchema;
|
|
21874
21942
|
var getIntegrationKitchenAccessTokensInputSchema = external_exports.undefined();
|
|
21875
21943
|
var getIntegrationKitchenAccessTokensResponseSchema = (0, import_sdk_js_global_types74.createPaginatedSchema)(
|
|
21876
21944
|
integrationKitchenAccessTokenSchema
|
|
21877
21945
|
);
|
|
21878
|
-
var GetIntegrationKitchenAccessTokens = class extends
|
|
21946
|
+
var GetIntegrationKitchenAccessTokens = class extends import_sdk_js_core194.AbstractApiRequest {
|
|
21879
21947
|
constructor(integrationKitchenId, options) {
|
|
21880
21948
|
super(void 0, options);
|
|
21881
21949
|
this.method = "GET";
|
|
@@ -21895,10 +21963,10 @@ var GetIntegrationKitchenAccessTokens = class extends import_sdk_js_core193.Abst
|
|
|
21895
21963
|
};
|
|
21896
21964
|
|
|
21897
21965
|
// src/requests/services/kitchen/GetIntegrationKitchenDetails.ts
|
|
21898
|
-
var
|
|
21966
|
+
var import_sdk_js_core195 = require("@deliverart/sdk-js-core");
|
|
21899
21967
|
var getIntegrationKitchenDetailsInputSchema = external_exports.undefined();
|
|
21900
21968
|
var getIntegrationKitchenDetailsResponseSchema = integrationKitchenDetailsSchema;
|
|
21901
|
-
var GetIntegrationKitchenDetails = class extends
|
|
21969
|
+
var GetIntegrationKitchenDetails = class extends import_sdk_js_core195.AbstractApiRequest {
|
|
21902
21970
|
constructor(integrationKitchenId) {
|
|
21903
21971
|
super(void 0);
|
|
21904
21972
|
this.method = "GET";
|
|
@@ -21916,14 +21984,14 @@ var GetIntegrationKitchenDetails = class extends import_sdk_js_core194.AbstractA
|
|
|
21916
21984
|
};
|
|
21917
21985
|
|
|
21918
21986
|
// src/requests/services/kitchen/GetIntegrationKitchenList.ts
|
|
21919
|
-
var
|
|
21987
|
+
var import_sdk_js_core196 = require("@deliverart/sdk-js-core");
|
|
21920
21988
|
var import_sdk_js_global_types75 = require("@deliverart/sdk-js-global-types");
|
|
21921
21989
|
var getIntegrationKitchenListQuerySchema = integrationsKitchenQuerySchema.omit({
|
|
21922
21990
|
service: true
|
|
21923
21991
|
});
|
|
21924
21992
|
var getIntegrationKitchenListResponseSchema = (0, import_sdk_js_global_types75.createPaginatedSchema)(integrationKitchenSchema);
|
|
21925
21993
|
var getIntegrationKitchenListInputSchema = external_exports.undefined();
|
|
21926
|
-
var GetIntegrationKitchenList = class extends
|
|
21994
|
+
var GetIntegrationKitchenList = class extends import_sdk_js_core196.AbstractApiRequest {
|
|
21927
21995
|
constructor(options) {
|
|
21928
21996
|
super(void 0, options);
|
|
21929
21997
|
this.method = "GET";
|
|
@@ -21942,10 +22010,10 @@ var GetIntegrationKitchenList = class extends import_sdk_js_core195.AbstractApiR
|
|
|
21942
22010
|
};
|
|
21943
22011
|
|
|
21944
22012
|
// src/requests/services/kitchen/UpdateIntegrationKitchen.ts
|
|
21945
|
-
var
|
|
22013
|
+
var import_sdk_js_core197 = require("@deliverart/sdk-js-core");
|
|
21946
22014
|
var updateIntegrationKitchenInputSchema = integrationKitchenEditableFieldsSchema.partial();
|
|
21947
22015
|
var updateIntegrationKitchenResponseSchema = integrationKitchenDetailsSchema;
|
|
21948
|
-
var UpdateIntegrationKitchen = class extends
|
|
22016
|
+
var UpdateIntegrationKitchen = class extends import_sdk_js_core197.AbstractApiRequest {
|
|
21949
22017
|
constructor(integrationKitchenId, input) {
|
|
21950
22018
|
super(input);
|
|
21951
22019
|
this.method = "PATCH";
|
|
@@ -21963,14 +22031,14 @@ var UpdateIntegrationKitchen = class extends import_sdk_js_core196.AbstractApiRe
|
|
|
21963
22031
|
};
|
|
21964
22032
|
|
|
21965
22033
|
// src/requests/services/tilby/index.ts
|
|
21966
|
-
var
|
|
22034
|
+
var import_sdk_js_core198 = require("@deliverart/sdk-js-core");
|
|
21967
22035
|
var import_sdk_js_global_types76 = require("@deliverart/sdk-js-global-types");
|
|
21968
|
-
var
|
|
22036
|
+
var import_sdk_js_point_of_sale13 = require("@deliverart/sdk-js-point-of-sale");
|
|
21969
22037
|
var createIntegrationTilbyInputSchema = integrationTilbyEditableFieldsSchema.extend({
|
|
21970
|
-
pointOfSale:
|
|
22038
|
+
pointOfSale: import_sdk_js_point_of_sale13.pointOfSaleIriSchema
|
|
21971
22039
|
});
|
|
21972
22040
|
var createIntegrationTilbyResponseSchema = integrationTilbyDetailsSchema;
|
|
21973
|
-
var CreateIntegrationTilby = class extends
|
|
22041
|
+
var CreateIntegrationTilby = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
21974
22042
|
constructor(input) {
|
|
21975
22043
|
super(input);
|
|
21976
22044
|
this.method = "POST";
|
|
@@ -21987,7 +22055,7 @@ var CreateIntegrationTilby = class extends import_sdk_js_core197.AbstractApiRequ
|
|
|
21987
22055
|
};
|
|
21988
22056
|
var updateIntegrationTilbyInputSchema = integrationTilbyEditableFieldsSchema.partial();
|
|
21989
22057
|
var updateIntegrationTilbyResponseSchema = integrationTilbyDetailsSchema;
|
|
21990
|
-
var UpdateIntegrationTilby = class extends
|
|
22058
|
+
var UpdateIntegrationTilby = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
21991
22059
|
constructor(integrationTilbyId, input) {
|
|
21992
22060
|
super(input);
|
|
21993
22061
|
this.method = "PATCH";
|
|
@@ -22005,7 +22073,7 @@ var UpdateIntegrationTilby = class extends import_sdk_js_core197.AbstractApiRequ
|
|
|
22005
22073
|
};
|
|
22006
22074
|
var deleteIntegrationTilbyInputSchema = external_exports.undefined();
|
|
22007
22075
|
var deleteIntegrationTilbyResponseSchema = import_sdk_js_global_types76.emptyResponseSchema;
|
|
22008
|
-
var DeleteIntegrationTilby = class extends
|
|
22076
|
+
var DeleteIntegrationTilby = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22009
22077
|
constructor(integrationTilbyId) {
|
|
22010
22078
|
super(void 0);
|
|
22011
22079
|
this.method = "DELETE";
|
|
@@ -22023,7 +22091,7 @@ var DeleteIntegrationTilby = class extends import_sdk_js_core197.AbstractApiRequ
|
|
|
22023
22091
|
};
|
|
22024
22092
|
var getIntegrationTilbyDetailsInputSchema = external_exports.undefined();
|
|
22025
22093
|
var getIntegrationTilbyDetailsResponseSchema = integrationTilbyDetailsSchema;
|
|
22026
|
-
var GetIntegrationTilbyDetails = class extends
|
|
22094
|
+
var GetIntegrationTilbyDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22027
22095
|
constructor(integrationTilbyId) {
|
|
22028
22096
|
super(void 0);
|
|
22029
22097
|
this.method = "GET";
|
|
@@ -22044,7 +22112,7 @@ var getIntegrationTilbyListQuerySchema = integrationsTilbyQuerySchema.omit({
|
|
|
22044
22112
|
});
|
|
22045
22113
|
var getIntegrationTilbyListInputSchema = external_exports.undefined();
|
|
22046
22114
|
var getIntegrationTilbyListResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(integrationTilbySchema);
|
|
22047
|
-
var GetIntegrationTilbyList = class extends
|
|
22115
|
+
var GetIntegrationTilbyList = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22048
22116
|
constructor(options) {
|
|
22049
22117
|
super(void 0, options);
|
|
22050
22118
|
this.method = "GET";
|
|
@@ -22063,7 +22131,7 @@ var GetIntegrationTilbyList = class extends import_sdk_js_core197.AbstractApiReq
|
|
|
22063
22131
|
};
|
|
22064
22132
|
var getIntegrationTilbySupportSellersInputSchema = external_exports.undefined();
|
|
22065
22133
|
var getIntegrationTilbySupportSellersResponseSchema = integrationTilbySupportSellersSchema;
|
|
22066
|
-
var GetIntegrationTilbySupportSellers = class extends
|
|
22134
|
+
var GetIntegrationTilbySupportSellers = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22067
22135
|
constructor(integrationTilbyId) {
|
|
22068
22136
|
super(void 0);
|
|
22069
22137
|
this.method = "GET";
|
|
@@ -22081,7 +22149,7 @@ var GetIntegrationTilbySupportSellers = class extends import_sdk_js_core197.Abst
|
|
|
22081
22149
|
};
|
|
22082
22150
|
var getIntegrationTilbySupportPaymentMethodsInputSchema = external_exports.undefined();
|
|
22083
22151
|
var getIntegrationTilbySupportPaymentMethodsResponseSchema = integrationTilbySupportPaymentMethodsSchema;
|
|
22084
|
-
var GetIntegrationTilbySupportPaymentMethods = class extends
|
|
22152
|
+
var GetIntegrationTilbySupportPaymentMethods = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22085
22153
|
constructor(integrationTilbyId) {
|
|
22086
22154
|
super(void 0);
|
|
22087
22155
|
this.method = "GET";
|
|
@@ -22099,7 +22167,7 @@ var GetIntegrationTilbySupportPaymentMethods = class extends import_sdk_js_core1
|
|
|
22099
22167
|
};
|
|
22100
22168
|
var getIntegrationTilbySupportPaymentMethodTypesInputSchema = external_exports.undefined();
|
|
22101
22169
|
var getIntegrationTilbySupportPaymentMethodTypesResponseSchema = integrationTilbySupportPaymentMethodTypesSchema;
|
|
22102
|
-
var GetIntegrationTilbySupportPaymentMethodTypes = class extends
|
|
22170
|
+
var GetIntegrationTilbySupportPaymentMethodTypes = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22103
22171
|
constructor(integrationTilbyId) {
|
|
22104
22172
|
super(void 0);
|
|
22105
22173
|
this.method = "GET";
|
|
@@ -22117,7 +22185,7 @@ var GetIntegrationTilbySupportPaymentMethodTypes = class extends import_sdk_js_c
|
|
|
22117
22185
|
};
|
|
22118
22186
|
var getIntegrationTilbySupportStockLocationsInputSchema = external_exports.undefined();
|
|
22119
22187
|
var getIntegrationTilbySupportStockLocationsResponseSchema = integrationTilbySupportStockLocationsSchema;
|
|
22120
|
-
var GetIntegrationTilbySupportStockLocations = class extends
|
|
22188
|
+
var GetIntegrationTilbySupportStockLocations = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22121
22189
|
constructor(integrationTilbyId) {
|
|
22122
22190
|
super(void 0);
|
|
22123
22191
|
this.method = "GET";
|
|
@@ -22141,7 +22209,7 @@ var integrationTilbyInboundOnlySyncInputSchema = integrationTilbySyncInputSchema
|
|
|
22141
22209
|
direction: external_exports.literal("inbound")
|
|
22142
22210
|
});
|
|
22143
22211
|
var integrationTilbySyncResponseSchema = integrationAsyncMessageResponseSchema;
|
|
22144
|
-
var IntegrationTilbySyncFiscalMappings = class extends
|
|
22212
|
+
var IntegrationTilbySyncFiscalMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22145
22213
|
constructor(integrationTilbyId, input) {
|
|
22146
22214
|
super(input);
|
|
22147
22215
|
this.method = "POST";
|
|
@@ -22157,7 +22225,7 @@ var IntegrationTilbySyncFiscalMappings = class extends import_sdk_js_core197.Abs
|
|
|
22157
22225
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/fiscal_mappings`;
|
|
22158
22226
|
}
|
|
22159
22227
|
};
|
|
22160
|
-
var IntegrationTilbySyncCustomers = class extends
|
|
22228
|
+
var IntegrationTilbySyncCustomers = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22161
22229
|
constructor(integrationTilbyId, input) {
|
|
22162
22230
|
super(input);
|
|
22163
22231
|
this.method = "POST";
|
|
@@ -22173,7 +22241,7 @@ var IntegrationTilbySyncCustomers = class extends import_sdk_js_core197.Abstract
|
|
|
22173
22241
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/customers`;
|
|
22174
22242
|
}
|
|
22175
22243
|
};
|
|
22176
|
-
var IntegrationTilbySyncMenu = class extends
|
|
22244
|
+
var IntegrationTilbySyncMenu = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22177
22245
|
constructor(integrationTilbyId, input) {
|
|
22178
22246
|
super(input);
|
|
22179
22247
|
this.method = "POST";
|
|
@@ -22189,7 +22257,7 @@ var IntegrationTilbySyncMenu = class extends import_sdk_js_core197.AbstractApiRe
|
|
|
22189
22257
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/menu`;
|
|
22190
22258
|
}
|
|
22191
22259
|
};
|
|
22192
|
-
var IntegrationTilbySyncOrders = class extends
|
|
22260
|
+
var IntegrationTilbySyncOrders = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22193
22261
|
constructor(integrationTilbyId, input) {
|
|
22194
22262
|
super(input);
|
|
22195
22263
|
this.method = "POST";
|
|
@@ -22205,7 +22273,7 @@ var IntegrationTilbySyncOrders = class extends import_sdk_js_core197.AbstractApi
|
|
|
22205
22273
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/orders`;
|
|
22206
22274
|
}
|
|
22207
22275
|
};
|
|
22208
|
-
var IntegrationTilbySyncStock = class extends
|
|
22276
|
+
var IntegrationTilbySyncStock = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22209
22277
|
constructor(integrationTilbyId, input) {
|
|
22210
22278
|
super(input);
|
|
22211
22279
|
this.method = "POST";
|
|
@@ -22226,7 +22294,7 @@ var getIntegrationTilbyDepartmentMappingsInputSchema = external_exports.undefine
|
|
|
22226
22294
|
var getIntegrationTilbyDepartmentMappingsResponseSchema = external_exports.array(
|
|
22227
22295
|
integrationTilbyDepartmentMappingSchema
|
|
22228
22296
|
);
|
|
22229
|
-
var GetIntegrationTilbyDepartmentMappings = class extends
|
|
22297
|
+
var GetIntegrationTilbyDepartmentMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22230
22298
|
constructor(integrationTilbyId, options) {
|
|
22231
22299
|
super(void 0, options);
|
|
22232
22300
|
this.method = "GET";
|
|
@@ -22246,7 +22314,7 @@ var GetIntegrationTilbyDepartmentMappings = class extends import_sdk_js_core197.
|
|
|
22246
22314
|
};
|
|
22247
22315
|
var getIntegrationTilbyDepartmentMappingDetailsInputSchema = external_exports.undefined();
|
|
22248
22316
|
var getIntegrationTilbyDepartmentMappingDetailsResponseSchema = integrationTilbyDepartmentMappingDetailsSchema;
|
|
22249
|
-
var GetIntegrationTilbyDepartmentMappingDetails = class extends
|
|
22317
|
+
var GetIntegrationTilbyDepartmentMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22250
22318
|
constructor(integrationTilbyId, mappingId) {
|
|
22251
22319
|
super(void 0);
|
|
22252
22320
|
this.method = "GET";
|
|
@@ -22265,7 +22333,7 @@ var GetIntegrationTilbyDepartmentMappingDetails = class extends import_sdk_js_co
|
|
|
22265
22333
|
};
|
|
22266
22334
|
var updateIntegrationTilbyDepartmentMappingInputSchema = integrationTilbyDepartmentMappingEditableFieldsSchema;
|
|
22267
22335
|
var updateIntegrationTilbyDepartmentMappingResponseSchema = integrationTilbyDepartmentMappingSchema;
|
|
22268
|
-
var UpdateIntegrationTilbyDepartmentMapping = class extends
|
|
22336
|
+
var UpdateIntegrationTilbyDepartmentMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22269
22337
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22270
22338
|
super(input);
|
|
22271
22339
|
this.method = "PATCH";
|
|
@@ -22287,7 +22355,7 @@ var getIntegrationTilbyVatMappingsInputSchema = external_exports.undefined();
|
|
|
22287
22355
|
var getIntegrationTilbyVatMappingsResponseSchema = external_exports.array(
|
|
22288
22356
|
integrationTilbyVatMappingSchema
|
|
22289
22357
|
);
|
|
22290
|
-
var GetIntegrationTilbyVatMappings = class extends
|
|
22358
|
+
var GetIntegrationTilbyVatMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22291
22359
|
constructor(integrationTilbyId, options) {
|
|
22292
22360
|
super(void 0, options);
|
|
22293
22361
|
this.method = "GET";
|
|
@@ -22307,7 +22375,7 @@ var GetIntegrationTilbyVatMappings = class extends import_sdk_js_core197.Abstrac
|
|
|
22307
22375
|
};
|
|
22308
22376
|
var getIntegrationTilbyVatMappingDetailsInputSchema = external_exports.undefined();
|
|
22309
22377
|
var getIntegrationTilbyVatMappingDetailsResponseSchema = integrationTilbyVatMappingDetailsSchema;
|
|
22310
|
-
var GetIntegrationTilbyVatMappingDetails = class extends
|
|
22378
|
+
var GetIntegrationTilbyVatMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22311
22379
|
constructor(integrationTilbyId, mappingId) {
|
|
22312
22380
|
super(void 0);
|
|
22313
22381
|
this.method = "GET";
|
|
@@ -22326,7 +22394,7 @@ var GetIntegrationTilbyVatMappingDetails = class extends import_sdk_js_core197.A
|
|
|
22326
22394
|
};
|
|
22327
22395
|
var updateIntegrationTilbyVatMappingInputSchema = integrationTilbyVatMappingEditableFieldsSchema;
|
|
22328
22396
|
var updateIntegrationTilbyVatMappingResponseSchema = integrationTilbyVatMappingSchema;
|
|
22329
|
-
var UpdateIntegrationTilbyVatMapping = class extends
|
|
22397
|
+
var UpdateIntegrationTilbyVatMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22330
22398
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22331
22399
|
super(input);
|
|
22332
22400
|
this.method = "PATCH";
|
|
@@ -22348,7 +22416,7 @@ var getIntegrationTilbyCategoryMappingsInputSchema = external_exports.undefined(
|
|
|
22348
22416
|
var getIntegrationTilbyCategoryMappingsResponseSchema = external_exports.array(
|
|
22349
22417
|
integrationTilbyCategoryMappingSchema
|
|
22350
22418
|
);
|
|
22351
|
-
var GetIntegrationTilbyCategoryMappings = class extends
|
|
22419
|
+
var GetIntegrationTilbyCategoryMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22352
22420
|
constructor(integrationTilbyId, options) {
|
|
22353
22421
|
super(void 0, options);
|
|
22354
22422
|
this.method = "GET";
|
|
@@ -22368,7 +22436,7 @@ var GetIntegrationTilbyCategoryMappings = class extends import_sdk_js_core197.Ab
|
|
|
22368
22436
|
};
|
|
22369
22437
|
var getIntegrationTilbyCategoryMappingDetailsInputSchema = external_exports.undefined();
|
|
22370
22438
|
var getIntegrationTilbyCategoryMappingDetailsResponseSchema = integrationTilbyCategoryMappingDetailsSchema;
|
|
22371
|
-
var GetIntegrationTilbyCategoryMappingDetails = class extends
|
|
22439
|
+
var GetIntegrationTilbyCategoryMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22372
22440
|
constructor(integrationTilbyId, mappingId) {
|
|
22373
22441
|
super(void 0);
|
|
22374
22442
|
this.method = "GET";
|
|
@@ -22387,7 +22455,7 @@ var GetIntegrationTilbyCategoryMappingDetails = class extends import_sdk_js_core
|
|
|
22387
22455
|
};
|
|
22388
22456
|
var updateIntegrationTilbyCategoryMappingInputSchema = integrationTilbyCategoryMappingEditableFieldsSchema;
|
|
22389
22457
|
var updateIntegrationTilbyCategoryMappingResponseSchema = integrationTilbyCategoryMappingSchema;
|
|
22390
|
-
var UpdateIntegrationTilbyCategoryMapping = class extends
|
|
22458
|
+
var UpdateIntegrationTilbyCategoryMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22391
22459
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22392
22460
|
super(input);
|
|
22393
22461
|
this.method = "PATCH";
|
|
@@ -22409,7 +22477,7 @@ var getIntegrationTilbyComponentMappingsInputSchema = external_exports.undefined
|
|
|
22409
22477
|
var getIntegrationTilbyComponentMappingsResponseSchema = external_exports.array(
|
|
22410
22478
|
integrationTilbyComponentMappingSchema
|
|
22411
22479
|
);
|
|
22412
|
-
var GetIntegrationTilbyComponentMappings = class extends
|
|
22480
|
+
var GetIntegrationTilbyComponentMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22413
22481
|
constructor(integrationTilbyId, options) {
|
|
22414
22482
|
super(void 0, options);
|
|
22415
22483
|
this.method = "GET";
|
|
@@ -22429,7 +22497,7 @@ var GetIntegrationTilbyComponentMappings = class extends import_sdk_js_core197.A
|
|
|
22429
22497
|
};
|
|
22430
22498
|
var getIntegrationTilbyComponentMappingDetailsInputSchema = external_exports.undefined();
|
|
22431
22499
|
var getIntegrationTilbyComponentMappingDetailsResponseSchema = integrationTilbyComponentMappingDetailsSchema;
|
|
22432
|
-
var GetIntegrationTilbyComponentMappingDetails = class extends
|
|
22500
|
+
var GetIntegrationTilbyComponentMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22433
22501
|
constructor(integrationTilbyId, mappingId) {
|
|
22434
22502
|
super(void 0);
|
|
22435
22503
|
this.method = "GET";
|
|
@@ -22448,7 +22516,7 @@ var GetIntegrationTilbyComponentMappingDetails = class extends import_sdk_js_cor
|
|
|
22448
22516
|
};
|
|
22449
22517
|
var updateIntegrationTilbyComponentMappingInputSchema = integrationTilbyComponentMappingEditableFieldsSchema;
|
|
22450
22518
|
var updateIntegrationTilbyComponentMappingResponseSchema = integrationTilbyComponentMappingSchema;
|
|
22451
|
-
var UpdateIntegrationTilbyComponentMapping = class extends
|
|
22519
|
+
var UpdateIntegrationTilbyComponentMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22452
22520
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22453
22521
|
super(input);
|
|
22454
22522
|
this.method = "PATCH";
|
|
@@ -22470,7 +22538,7 @@ var getIntegrationTilbyProductMappingsInputSchema = external_exports.undefined()
|
|
|
22470
22538
|
var getIntegrationTilbyProductMappingsResponseSchema = external_exports.array(
|
|
22471
22539
|
integrationTilbyProductMappingSchema
|
|
22472
22540
|
);
|
|
22473
|
-
var GetIntegrationTilbyProductMappings = class extends
|
|
22541
|
+
var GetIntegrationTilbyProductMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22474
22542
|
constructor(integrationTilbyId, options) {
|
|
22475
22543
|
super(void 0, options);
|
|
22476
22544
|
this.method = "GET";
|
|
@@ -22490,7 +22558,7 @@ var GetIntegrationTilbyProductMappings = class extends import_sdk_js_core197.Abs
|
|
|
22490
22558
|
};
|
|
22491
22559
|
var getIntegrationTilbyProductMappingDetailsInputSchema = external_exports.undefined();
|
|
22492
22560
|
var getIntegrationTilbyProductMappingDetailsResponseSchema = integrationTilbyProductMappingDetailsSchema;
|
|
22493
|
-
var GetIntegrationTilbyProductMappingDetails = class extends
|
|
22561
|
+
var GetIntegrationTilbyProductMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22494
22562
|
constructor(integrationTilbyId, mappingId) {
|
|
22495
22563
|
super(void 0);
|
|
22496
22564
|
this.method = "GET";
|
|
@@ -22509,7 +22577,7 @@ var GetIntegrationTilbyProductMappingDetails = class extends import_sdk_js_core1
|
|
|
22509
22577
|
};
|
|
22510
22578
|
var updateIntegrationTilbyProductMappingInputSchema = integrationTilbyProductMappingEditableFieldsSchema;
|
|
22511
22579
|
var updateIntegrationTilbyProductMappingResponseSchema = integrationTilbyProductMappingSchema;
|
|
22512
|
-
var UpdateIntegrationTilbyProductMapping = class extends
|
|
22580
|
+
var UpdateIntegrationTilbyProductMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22513
22581
|
constructor(integrationTilbyId, mappingId, input) {
|
|
22514
22582
|
super(input);
|
|
22515
22583
|
this.method = "PATCH";
|
|
@@ -22531,7 +22599,7 @@ var getIntegrationTilbyProductVariantMappingsInputSchema = external_exports.unde
|
|
|
22531
22599
|
var getIntegrationTilbyProductVariantMappingsResponseSchema = external_exports.array(
|
|
22532
22600
|
integrationTilbyProductVariantMappingSchema
|
|
22533
22601
|
);
|
|
22534
|
-
var GetIntegrationTilbyProductVariantMappings = class extends
|
|
22602
|
+
var GetIntegrationTilbyProductVariantMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22535
22603
|
constructor(integrationTilbyId, productId, options) {
|
|
22536
22604
|
super(void 0, options);
|
|
22537
22605
|
this.method = "GET";
|
|
@@ -22552,7 +22620,7 @@ var GetIntegrationTilbyProductVariantMappings = class extends import_sdk_js_core
|
|
|
22552
22620
|
};
|
|
22553
22621
|
var getIntegrationTilbyProductVariantMappingDetailsInputSchema = external_exports.undefined();
|
|
22554
22622
|
var getIntegrationTilbyProductVariantMappingDetailsResponseSchema = integrationTilbyProductVariantMappingDetailsSchema;
|
|
22555
|
-
var GetIntegrationTilbyProductVariantMappingDetails = class extends
|
|
22623
|
+
var GetIntegrationTilbyProductVariantMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22556
22624
|
constructor(integrationTilbyId, productId, variantId) {
|
|
22557
22625
|
super(void 0);
|
|
22558
22626
|
this.method = "GET";
|
|
@@ -22572,7 +22640,7 @@ var GetIntegrationTilbyProductVariantMappingDetails = class extends import_sdk_j
|
|
|
22572
22640
|
};
|
|
22573
22641
|
var updateIntegrationTilbyProductVariantMappingInputSchema = integrationTilbyProductVariantMappingEditableFieldsSchema;
|
|
22574
22642
|
var updateIntegrationTilbyProductVariantMappingResponseSchema = integrationTilbyProductVariantMappingSchema;
|
|
22575
|
-
var UpdateIntegrationTilbyProductVariantMapping = class extends
|
|
22643
|
+
var UpdateIntegrationTilbyProductVariantMapping = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22576
22644
|
constructor(integrationTilbyId, productId, variantId, input) {
|
|
22577
22645
|
super(input);
|
|
22578
22646
|
this.method = "PATCH";
|
|
@@ -22595,7 +22663,7 @@ var getIntegrationTilbyCustomerMappingsInputSchema = external_exports.undefined(
|
|
|
22595
22663
|
var getIntegrationTilbyCustomerMappingsResponseSchema = external_exports.array(
|
|
22596
22664
|
integrationTilbyCustomerMappingSchema
|
|
22597
22665
|
);
|
|
22598
|
-
var GetIntegrationTilbyCustomerMappings = class extends
|
|
22666
|
+
var GetIntegrationTilbyCustomerMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22599
22667
|
constructor(integrationTilbyId, options) {
|
|
22600
22668
|
super(void 0, options);
|
|
22601
22669
|
this.method = "GET";
|
|
@@ -22615,7 +22683,7 @@ var GetIntegrationTilbyCustomerMappings = class extends import_sdk_js_core197.Ab
|
|
|
22615
22683
|
};
|
|
22616
22684
|
var getIntegrationTilbyCustomerMappingDetailsInputSchema = external_exports.undefined();
|
|
22617
22685
|
var getIntegrationTilbyCustomerMappingDetailsResponseSchema = integrationTilbyCustomerMappingDetailsSchema;
|
|
22618
|
-
var GetIntegrationTilbyCustomerMappingDetails = class extends
|
|
22686
|
+
var GetIntegrationTilbyCustomerMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22619
22687
|
constructor(integrationTilbyId, mappingId) {
|
|
22620
22688
|
super(void 0);
|
|
22621
22689
|
this.method = "GET";
|
|
@@ -22637,7 +22705,7 @@ var getIntegrationTilbyOrderMappingsInputSchema = external_exports.undefined();
|
|
|
22637
22705
|
var getIntegrationTilbyOrderMappingsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22638
22706
|
integrationTilbyOrderMappingSchema
|
|
22639
22707
|
);
|
|
22640
|
-
var GetIntegrationTilbyOrderMappings = class extends
|
|
22708
|
+
var GetIntegrationTilbyOrderMappings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22641
22709
|
constructor(integrationTilbyId, options) {
|
|
22642
22710
|
super(void 0, options);
|
|
22643
22711
|
this.method = "GET";
|
|
@@ -22657,7 +22725,7 @@ var GetIntegrationTilbyOrderMappings = class extends import_sdk_js_core197.Abstr
|
|
|
22657
22725
|
};
|
|
22658
22726
|
var getIntegrationTilbyOrderMappingDetailsInputSchema = external_exports.undefined();
|
|
22659
22727
|
var getIntegrationTilbyOrderMappingDetailsResponseSchema = integrationTilbyOrderMappingDetailsSchema;
|
|
22660
|
-
var GetIntegrationTilbyOrderMappingDetails = class extends
|
|
22728
|
+
var GetIntegrationTilbyOrderMappingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22661
22729
|
constructor(integrationTilbyId, mappingId) {
|
|
22662
22730
|
super(void 0);
|
|
22663
22731
|
this.method = "GET";
|
|
@@ -22681,7 +22749,7 @@ var getIntegrationTilbyOrderMappingsFromOrderInputSchema = external_exports.unde
|
|
|
22681
22749
|
var getIntegrationTilbyOrderMappingsFromOrderResponseSchema = external_exports.array(
|
|
22682
22750
|
integrationTilbyOrderMappingSchema
|
|
22683
22751
|
);
|
|
22684
|
-
var GetIntegrationTilbyOrderMappingsFromOrder = class extends
|
|
22752
|
+
var GetIntegrationTilbyOrderMappingsFromOrder = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22685
22753
|
constructor(orderId, options) {
|
|
22686
22754
|
super(void 0, options);
|
|
22687
22755
|
this.method = "GET";
|
|
@@ -22704,7 +22772,7 @@ var getIntegrationTilbySyncFiscalMappingsProcessesInputSchema = external_exports
|
|
|
22704
22772
|
var getIntegrationTilbySyncFiscalMappingsProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22705
22773
|
integrationTilbySyncFiscalMappingsProcessSchema
|
|
22706
22774
|
);
|
|
22707
|
-
var GetIntegrationTilbySyncFiscalMappingsProcesses = class extends
|
|
22775
|
+
var GetIntegrationTilbySyncFiscalMappingsProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22708
22776
|
constructor(integrationTilbyId, options) {
|
|
22709
22777
|
super(void 0, options);
|
|
22710
22778
|
this.method = "GET";
|
|
@@ -22724,7 +22792,7 @@ var GetIntegrationTilbySyncFiscalMappingsProcesses = class extends import_sdk_js
|
|
|
22724
22792
|
};
|
|
22725
22793
|
var getIntegrationTilbySyncFiscalMappingsProcessDetailsInputSchema = external_exports.undefined();
|
|
22726
22794
|
var getIntegrationTilbySyncFiscalMappingsProcessDetailsResponseSchema = integrationTilbySyncFiscalMappingsProcessDetailsSchema;
|
|
22727
|
-
var GetIntegrationTilbySyncFiscalMappingsProcessDetails = class extends
|
|
22795
|
+
var GetIntegrationTilbySyncFiscalMappingsProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22728
22796
|
constructor(integrationTilbyId, processId) {
|
|
22729
22797
|
super(void 0);
|
|
22730
22798
|
this.method = "GET";
|
|
@@ -22746,7 +22814,7 @@ var getIntegrationTilbySyncFiscalMappingsErrorLogsInputSchema = external_exports
|
|
|
22746
22814
|
var getIntegrationTilbySyncFiscalMappingsErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22747
22815
|
integrationTilbySyncFiscalMappingsErrorLogSchema
|
|
22748
22816
|
);
|
|
22749
|
-
var GetIntegrationTilbySyncFiscalMappingsErrorLogs = class extends
|
|
22817
|
+
var GetIntegrationTilbySyncFiscalMappingsErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22750
22818
|
constructor(integrationTilbyId, processId, options) {
|
|
22751
22819
|
super(void 0, options);
|
|
22752
22820
|
this.method = "GET";
|
|
@@ -22767,7 +22835,7 @@ var GetIntegrationTilbySyncFiscalMappingsErrorLogs = class extends import_sdk_js
|
|
|
22767
22835
|
};
|
|
22768
22836
|
var getIntegrationTilbySyncFiscalMappingsErrorLogDetailsInputSchema = external_exports.undefined();
|
|
22769
22837
|
var getIntegrationTilbySyncFiscalMappingsErrorLogDetailsResponseSchema = integrationTilbySyncFiscalMappingsErrorLogDetailsSchema;
|
|
22770
|
-
var GetIntegrationTilbySyncFiscalMappingsErrorLogDetails = class extends
|
|
22838
|
+
var GetIntegrationTilbySyncFiscalMappingsErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22771
22839
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
22772
22840
|
super(void 0);
|
|
22773
22841
|
this.method = "GET";
|
|
@@ -22790,7 +22858,7 @@ var getIntegrationTilbySyncCustomersProcessesInputSchema = external_exports.unde
|
|
|
22790
22858
|
var getIntegrationTilbySyncCustomersProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22791
22859
|
integrationTilbySyncCustomersProcessSchema
|
|
22792
22860
|
);
|
|
22793
|
-
var GetIntegrationTilbySyncCustomersProcesses = class extends
|
|
22861
|
+
var GetIntegrationTilbySyncCustomersProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22794
22862
|
constructor(integrationTilbyId, options) {
|
|
22795
22863
|
super(void 0, options);
|
|
22796
22864
|
this.method = "GET";
|
|
@@ -22810,7 +22878,7 @@ var GetIntegrationTilbySyncCustomersProcesses = class extends import_sdk_js_core
|
|
|
22810
22878
|
};
|
|
22811
22879
|
var getIntegrationTilbySyncCustomersProcessDetailsInputSchema = external_exports.undefined();
|
|
22812
22880
|
var getIntegrationTilbySyncCustomersProcessDetailsResponseSchema = integrationTilbySyncCustomersProcessDetailsSchema;
|
|
22813
|
-
var GetIntegrationTilbySyncCustomersProcessDetails = class extends
|
|
22881
|
+
var GetIntegrationTilbySyncCustomersProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22814
22882
|
constructor(integrationTilbyId, processId) {
|
|
22815
22883
|
super(void 0);
|
|
22816
22884
|
this.method = "GET";
|
|
@@ -22832,7 +22900,7 @@ var getIntegrationTilbySyncCustomersErrorLogsInputSchema = external_exports.unde
|
|
|
22832
22900
|
var getIntegrationTilbySyncCustomersErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22833
22901
|
integrationTilbySyncCustomersErrorLogSchema
|
|
22834
22902
|
);
|
|
22835
|
-
var GetIntegrationTilbySyncCustomersErrorLogs = class extends
|
|
22903
|
+
var GetIntegrationTilbySyncCustomersErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22836
22904
|
constructor(integrationTilbyId, processId, options) {
|
|
22837
22905
|
super(void 0, options);
|
|
22838
22906
|
this.method = "GET";
|
|
@@ -22853,7 +22921,7 @@ var GetIntegrationTilbySyncCustomersErrorLogs = class extends import_sdk_js_core
|
|
|
22853
22921
|
};
|
|
22854
22922
|
var getIntegrationTilbySyncCustomersErrorLogDetailsInputSchema = external_exports.undefined();
|
|
22855
22923
|
var getIntegrationTilbySyncCustomersErrorLogDetailsResponseSchema = integrationTilbySyncCustomersErrorLogDetailsSchema;
|
|
22856
|
-
var GetIntegrationTilbySyncCustomersErrorLogDetails = class extends
|
|
22924
|
+
var GetIntegrationTilbySyncCustomersErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22857
22925
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
22858
22926
|
super(void 0);
|
|
22859
22927
|
this.method = "GET";
|
|
@@ -22876,7 +22944,7 @@ var getIntegrationTilbySyncMenuProcessesInputSchema = external_exports.undefined
|
|
|
22876
22944
|
var getIntegrationTilbySyncMenuProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22877
22945
|
integrationTilbySyncMenuProcessSchema
|
|
22878
22946
|
);
|
|
22879
|
-
var GetIntegrationTilbySyncMenuProcesses = class extends
|
|
22947
|
+
var GetIntegrationTilbySyncMenuProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22880
22948
|
constructor(integrationTilbyId, options) {
|
|
22881
22949
|
super(void 0, options);
|
|
22882
22950
|
this.method = "GET";
|
|
@@ -22896,7 +22964,7 @@ var GetIntegrationTilbySyncMenuProcesses = class extends import_sdk_js_core197.A
|
|
|
22896
22964
|
};
|
|
22897
22965
|
var getIntegrationTilbySyncMenuProcessDetailsInputSchema = external_exports.undefined();
|
|
22898
22966
|
var getIntegrationTilbySyncMenuProcessDetailsResponseSchema = integrationTilbySyncMenuProcessDetailsSchema;
|
|
22899
|
-
var GetIntegrationTilbySyncMenuProcessDetails = class extends
|
|
22967
|
+
var GetIntegrationTilbySyncMenuProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22900
22968
|
constructor(integrationTilbyId, processId) {
|
|
22901
22969
|
super(void 0);
|
|
22902
22970
|
this.method = "GET";
|
|
@@ -22918,7 +22986,7 @@ var getIntegrationTilbySyncMenuErrorLogsInputSchema = external_exports.undefined
|
|
|
22918
22986
|
var getIntegrationTilbySyncMenuErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22919
22987
|
integrationTilbySyncMenuErrorLogSchema
|
|
22920
22988
|
);
|
|
22921
|
-
var GetIntegrationTilbySyncMenuErrorLogs = class extends
|
|
22989
|
+
var GetIntegrationTilbySyncMenuErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22922
22990
|
constructor(integrationTilbyId, processId, options) {
|
|
22923
22991
|
super(void 0, options);
|
|
22924
22992
|
this.method = "GET";
|
|
@@ -22939,7 +23007,7 @@ var GetIntegrationTilbySyncMenuErrorLogs = class extends import_sdk_js_core197.A
|
|
|
22939
23007
|
};
|
|
22940
23008
|
var getIntegrationTilbySyncMenuErrorLogDetailsInputSchema = external_exports.undefined();
|
|
22941
23009
|
var getIntegrationTilbySyncMenuErrorLogDetailsResponseSchema = integrationTilbySyncMenuErrorLogDetailsSchema;
|
|
22942
|
-
var GetIntegrationTilbySyncMenuErrorLogDetails = class extends
|
|
23010
|
+
var GetIntegrationTilbySyncMenuErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22943
23011
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
22944
23012
|
super(void 0);
|
|
22945
23013
|
this.method = "GET";
|
|
@@ -22962,7 +23030,7 @@ var getIntegrationTilbySyncOrdersProcessesInputSchema = external_exports.undefin
|
|
|
22962
23030
|
var getIntegrationTilbySyncOrdersProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
22963
23031
|
integrationTilbySyncOrdersProcessSchema
|
|
22964
23032
|
);
|
|
22965
|
-
var GetIntegrationTilbySyncOrdersProcesses = class extends
|
|
23033
|
+
var GetIntegrationTilbySyncOrdersProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22966
23034
|
constructor(integrationTilbyId, options) {
|
|
22967
23035
|
super(void 0, options);
|
|
22968
23036
|
this.method = "GET";
|
|
@@ -22982,7 +23050,7 @@ var GetIntegrationTilbySyncOrdersProcesses = class extends import_sdk_js_core197
|
|
|
22982
23050
|
};
|
|
22983
23051
|
var getIntegrationTilbySyncOrdersProcessDetailsInputSchema = external_exports.undefined();
|
|
22984
23052
|
var getIntegrationTilbySyncOrdersProcessDetailsResponseSchema = integrationTilbySyncOrdersProcessDetailsSchema;
|
|
22985
|
-
var GetIntegrationTilbySyncOrdersProcessDetails = class extends
|
|
23053
|
+
var GetIntegrationTilbySyncOrdersProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
22986
23054
|
constructor(integrationTilbyId, processId) {
|
|
22987
23055
|
super(void 0);
|
|
22988
23056
|
this.method = "GET";
|
|
@@ -23004,7 +23072,7 @@ var getIntegrationTilbySyncOrdersErrorLogsInputSchema = external_exports.undefin
|
|
|
23004
23072
|
var getIntegrationTilbySyncOrdersErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
23005
23073
|
integrationTilbySyncOrdersErrorLogSchema
|
|
23006
23074
|
);
|
|
23007
|
-
var GetIntegrationTilbySyncOrdersErrorLogs = class extends
|
|
23075
|
+
var GetIntegrationTilbySyncOrdersErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23008
23076
|
constructor(integrationTilbyId, processId, options) {
|
|
23009
23077
|
super(void 0, options);
|
|
23010
23078
|
this.method = "GET";
|
|
@@ -23025,7 +23093,7 @@ var GetIntegrationTilbySyncOrdersErrorLogs = class extends import_sdk_js_core197
|
|
|
23025
23093
|
};
|
|
23026
23094
|
var getIntegrationTilbySyncOrdersErrorLogDetailsInputSchema = external_exports.undefined();
|
|
23027
23095
|
var getIntegrationTilbySyncOrdersErrorLogDetailsResponseSchema = integrationTilbySyncOrdersErrorLogDetailsSchema;
|
|
23028
|
-
var GetIntegrationTilbySyncOrdersErrorLogDetails = class extends
|
|
23096
|
+
var GetIntegrationTilbySyncOrdersErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23029
23097
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
23030
23098
|
super(void 0);
|
|
23031
23099
|
this.method = "GET";
|
|
@@ -23048,7 +23116,7 @@ var getIntegrationTilbySyncStockProcessesInputSchema = external_exports.undefine
|
|
|
23048
23116
|
var getIntegrationTilbySyncStockProcessesResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
23049
23117
|
integrationTilbySyncStockProcessSchema
|
|
23050
23118
|
);
|
|
23051
|
-
var GetIntegrationTilbySyncStockProcesses = class extends
|
|
23119
|
+
var GetIntegrationTilbySyncStockProcesses = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23052
23120
|
constructor(integrationTilbyId, options) {
|
|
23053
23121
|
super(void 0, options);
|
|
23054
23122
|
this.method = "GET";
|
|
@@ -23068,7 +23136,7 @@ var GetIntegrationTilbySyncStockProcesses = class extends import_sdk_js_core197.
|
|
|
23068
23136
|
};
|
|
23069
23137
|
var getIntegrationTilbySyncStockProcessDetailsInputSchema = external_exports.undefined();
|
|
23070
23138
|
var getIntegrationTilbySyncStockProcessDetailsResponseSchema = integrationTilbySyncStockProcessDetailsSchema;
|
|
23071
|
-
var GetIntegrationTilbySyncStockProcessDetails = class extends
|
|
23139
|
+
var GetIntegrationTilbySyncStockProcessDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23072
23140
|
constructor(integrationTilbyId, processId) {
|
|
23073
23141
|
super(void 0);
|
|
23074
23142
|
this.method = "GET";
|
|
@@ -23090,7 +23158,7 @@ var getIntegrationTilbySyncStockErrorLogsInputSchema = external_exports.undefine
|
|
|
23090
23158
|
var getIntegrationTilbySyncStockErrorLogsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
23091
23159
|
integrationTilbySyncStockErrorLogSchema
|
|
23092
23160
|
);
|
|
23093
|
-
var GetIntegrationTilbySyncStockErrorLogs = class extends
|
|
23161
|
+
var GetIntegrationTilbySyncStockErrorLogs = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23094
23162
|
constructor(integrationTilbyId, processId, options) {
|
|
23095
23163
|
super(void 0, options);
|
|
23096
23164
|
this.method = "GET";
|
|
@@ -23111,7 +23179,7 @@ var GetIntegrationTilbySyncStockErrorLogs = class extends import_sdk_js_core197.
|
|
|
23111
23179
|
};
|
|
23112
23180
|
var getIntegrationTilbySyncStockErrorLogDetailsInputSchema = external_exports.undefined();
|
|
23113
23181
|
var getIntegrationTilbySyncStockErrorLogDetailsResponseSchema = integrationTilbySyncStockErrorLogDetailsSchema;
|
|
23114
|
-
var GetIntegrationTilbySyncStockErrorLogDetails = class extends
|
|
23182
|
+
var GetIntegrationTilbySyncStockErrorLogDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23115
23183
|
constructor(integrationTilbyId, processId, errorLogId) {
|
|
23116
23184
|
super(void 0);
|
|
23117
23185
|
this.method = "GET";
|
|
@@ -23134,7 +23202,7 @@ var getIntegrationTilbyWebHookSettingsInputSchema = external_exports.undefined()
|
|
|
23134
23202
|
var getIntegrationTilbyWebHookSettingsResponseSchema = external_exports.array(
|
|
23135
23203
|
integrationTilbyWebHookSettingSchema
|
|
23136
23204
|
);
|
|
23137
|
-
var GetIntegrationTilbyWebHookSettings = class extends
|
|
23205
|
+
var GetIntegrationTilbyWebHookSettings = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23138
23206
|
constructor(integrationTilbyId, options) {
|
|
23139
23207
|
super(void 0, options);
|
|
23140
23208
|
this.method = "GET";
|
|
@@ -23154,7 +23222,7 @@ var GetIntegrationTilbyWebHookSettings = class extends import_sdk_js_core197.Abs
|
|
|
23154
23222
|
};
|
|
23155
23223
|
var getIntegrationTilbyWebHookSettingDetailsInputSchema = external_exports.undefined();
|
|
23156
23224
|
var getIntegrationTilbyWebHookSettingDetailsResponseSchema = integrationTilbyWebHookSettingDetailsSchema;
|
|
23157
|
-
var GetIntegrationTilbyWebHookSettingDetails = class extends
|
|
23225
|
+
var GetIntegrationTilbyWebHookSettingDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23158
23226
|
constructor(integrationTilbyId, webHookId) {
|
|
23159
23227
|
super(void 0);
|
|
23160
23228
|
this.method = "GET";
|
|
@@ -23176,7 +23244,7 @@ var getIntegrationTilbyWebHookEventsInputSchema = external_exports.undefined();
|
|
|
23176
23244
|
var getIntegrationTilbyWebHookEventsResponseSchema = (0, import_sdk_js_global_types76.createPaginatedSchema)(
|
|
23177
23245
|
integrationTilbyWebHookEventSchema
|
|
23178
23246
|
);
|
|
23179
|
-
var GetIntegrationTilbyWebHookEvents = class extends
|
|
23247
|
+
var GetIntegrationTilbyWebHookEvents = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23180
23248
|
constructor(integrationTilbyId, options) {
|
|
23181
23249
|
super(void 0, options);
|
|
23182
23250
|
this.method = "GET";
|
|
@@ -23196,7 +23264,7 @@ var GetIntegrationTilbyWebHookEvents = class extends import_sdk_js_core197.Abstr
|
|
|
23196
23264
|
};
|
|
23197
23265
|
var getIntegrationTilbyWebHookEventDetailsInputSchema = external_exports.undefined();
|
|
23198
23266
|
var getIntegrationTilbyWebHookEventDetailsResponseSchema = integrationTilbyWebHookEventDetailsSchema;
|
|
23199
|
-
var GetIntegrationTilbyWebHookEventDetails = class extends
|
|
23267
|
+
var GetIntegrationTilbyWebHookEventDetails = class extends import_sdk_js_core198.AbstractApiRequest {
|
|
23200
23268
|
constructor(integrationTilbyId, eventId) {
|
|
23201
23269
|
super(void 0);
|
|
23202
23270
|
this.method = "GET";
|
|
@@ -23215,10 +23283,10 @@ var GetIntegrationTilbyWebHookEventDetails = class extends import_sdk_js_core197
|
|
|
23215
23283
|
};
|
|
23216
23284
|
|
|
23217
23285
|
// src/requests/UpdateIntegration.ts
|
|
23218
|
-
var
|
|
23286
|
+
var import_sdk_js_core199 = require("@deliverart/sdk-js-core");
|
|
23219
23287
|
var updateIntegrationInputSchema = writableIntegrationSchema.partial();
|
|
23220
23288
|
var updateIntegrationResponseSchema = integrationDetailsSchema;
|
|
23221
|
-
var UpdateIntegration = class extends
|
|
23289
|
+
var UpdateIntegration = class extends import_sdk_js_core199.AbstractApiRequest {
|
|
23222
23290
|
constructor(integrationId, input) {
|
|
23223
23291
|
super(input);
|
|
23224
23292
|
this.method = "PATCH";
|
|
@@ -23359,6 +23427,7 @@ __reExport(index_exports, types_exports, module.exports);
|
|
|
23359
23427
|
GetIntegrationEcommerceDetails,
|
|
23360
23428
|
GetIntegrationEcommerceInfo,
|
|
23361
23429
|
GetIntegrationEcommerceList,
|
|
23430
|
+
GetIntegrationEcommerceSlotOptions,
|
|
23362
23431
|
GetIntegrationGlovoBulkUpdateDetails,
|
|
23363
23432
|
GetIntegrationGlovoBulkUpdates,
|
|
23364
23433
|
GetIntegrationGlovoClientLogRequestDetails,
|
|
@@ -23787,6 +23856,9 @@ __reExport(index_exports, types_exports, module.exports);
|
|
|
23787
23856
|
getIntegrationEcommerceListInputSchema,
|
|
23788
23857
|
getIntegrationEcommerceListQuerySchema,
|
|
23789
23858
|
getIntegrationEcommerceListResponseSchema,
|
|
23859
|
+
getIntegrationEcommerceSlotOptionsInputSchema,
|
|
23860
|
+
getIntegrationEcommerceSlotOptionsQuerySchema,
|
|
23861
|
+
getIntegrationEcommerceSlotOptionsResponseSchema,
|
|
23790
23862
|
getIntegrationGlovoBulkUpdateDetailsInputSchema,
|
|
23791
23863
|
getIntegrationGlovoBulkUpdateDetailsResponseSchema,
|
|
23792
23864
|
getIntegrationGlovoBulkUpdatesInputSchema,
|