@deliverart/sdk-js-integration 2.8.12 → 2.8.14
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 +15 -5
- package/dist/index.d.cts +30 -10
- package/dist/index.d.ts +30 -10
- package/dist/index.js +15 -5
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -13749,7 +13749,9 @@ var GetIntegrationDeliverooWebhookEvents = class extends import_sdk_js_core48.Ab
|
|
|
13749
13749
|
// src/requests/services/deliveroo/IntegrationDeliverooSyncMenu.ts
|
|
13750
13750
|
var import_sdk_js_core49 = require("@deliverart/sdk-js-core");
|
|
13751
13751
|
var integrationDeliverooSyncMenuInputSchema = external_exports.undefined();
|
|
13752
|
-
var integrationDeliverooSyncMenuResponseSchema = external_exports.
|
|
13752
|
+
var integrationDeliverooSyncMenuResponseSchema = external_exports.object({
|
|
13753
|
+
message: external_exports.string()
|
|
13754
|
+
});
|
|
13753
13755
|
var IntegrationDeliverooSyncMenu = class extends import_sdk_js_core49.AbstractApiRequest {
|
|
13754
13756
|
constructor(integrationDeliverooId) {
|
|
13755
13757
|
super(void 0);
|
|
@@ -13770,7 +13772,9 @@ var IntegrationDeliverooSyncMenu = class extends import_sdk_js_core49.AbstractAp
|
|
|
13770
13772
|
// src/requests/services/deliveroo/IntegrationDeliverooSyncOpeningHours.ts
|
|
13771
13773
|
var import_sdk_js_core50 = require("@deliverart/sdk-js-core");
|
|
13772
13774
|
var integrationDeliverooSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
13773
|
-
var integrationDeliverooSyncOpeningHoursResponseSchema = external_exports.
|
|
13775
|
+
var integrationDeliverooSyncOpeningHoursResponseSchema = external_exports.object({
|
|
13776
|
+
message: external_exports.string()
|
|
13777
|
+
});
|
|
13774
13778
|
var IntegrationDeliverooSyncOpeningHours = class extends import_sdk_js_core50.AbstractApiRequest {
|
|
13775
13779
|
constructor(integrationDeliverooId) {
|
|
13776
13780
|
super(void 0);
|
|
@@ -14125,7 +14129,9 @@ var GetIntegrationGlovoWebhookEvents = class extends import_sdk_js_core64.Abstra
|
|
|
14125
14129
|
// src/requests/services/glovo/IntegrationGlovoSyncMenu.ts
|
|
14126
14130
|
var import_sdk_js_core65 = require("@deliverart/sdk-js-core");
|
|
14127
14131
|
var integrationGlovoSyncMenuInputSchema = external_exports.undefined();
|
|
14128
|
-
var integrationGlovoSyncMenuResponseSchema = external_exports.
|
|
14132
|
+
var integrationGlovoSyncMenuResponseSchema = external_exports.object({
|
|
14133
|
+
message: external_exports.string()
|
|
14134
|
+
});
|
|
14129
14135
|
var IntegrationGlovoSyncMenu = class extends import_sdk_js_core65.AbstractApiRequest {
|
|
14130
14136
|
constructor(integrationGlovoId) {
|
|
14131
14137
|
super(void 0);
|
|
@@ -14480,7 +14486,9 @@ var GetIntegrationJustEatSyncMenuProcesses = class extends import_sdk_js_core79.
|
|
|
14480
14486
|
// src/requests/services/justeat/IntegrationJustEatSyncMenu.ts
|
|
14481
14487
|
var import_sdk_js_core80 = require("@deliverart/sdk-js-core");
|
|
14482
14488
|
var integrationJustEatSyncMenuInputSchema = external_exports.undefined();
|
|
14483
|
-
var integrationJustEatSyncMenuResponseSchema = external_exports.
|
|
14489
|
+
var integrationJustEatSyncMenuResponseSchema = external_exports.object({
|
|
14490
|
+
message: external_exports.string()
|
|
14491
|
+
});
|
|
14484
14492
|
var IntegrationJustEatSyncMenu = class extends import_sdk_js_core80.AbstractApiRequest {
|
|
14485
14493
|
constructor(integrationJustEatId) {
|
|
14486
14494
|
super(void 0);
|
|
@@ -14501,7 +14509,9 @@ var IntegrationJustEatSyncMenu = class extends import_sdk_js_core80.AbstractApiR
|
|
|
14501
14509
|
// src/requests/services/justeat/IntegrationJustEatSyncOpeningTimes.ts
|
|
14502
14510
|
var import_sdk_js_core81 = require("@deliverart/sdk-js-core");
|
|
14503
14511
|
var integrationJustEatSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
14504
|
-
var integrationJustEatSyncOpeningHoursResponseSchema = external_exports.
|
|
14512
|
+
var integrationJustEatSyncOpeningHoursResponseSchema = external_exports.object({
|
|
14513
|
+
message: external_exports.string()
|
|
14514
|
+
});
|
|
14505
14515
|
var IntegrationJustEatSyncOpeningTimes = class extends import_sdk_js_core81.AbstractApiRequest {
|
|
14506
14516
|
constructor(integrationJustEatId) {
|
|
14507
14517
|
super(void 0);
|
package/dist/index.d.cts
CHANGED
|
@@ -12169,13 +12169,17 @@ declare class GetIntegrationDeliverooWebhookEvents extends AbstractApiRequest<ty
|
|
|
12169
12169
|
}
|
|
12170
12170
|
|
|
12171
12171
|
declare const integrationDeliverooSyncMenuInputSchema: z.ZodUndefined;
|
|
12172
|
-
declare const integrationDeliverooSyncMenuResponseSchema: z.
|
|
12172
|
+
declare const integrationDeliverooSyncMenuResponseSchema: z.ZodObject<{
|
|
12173
|
+
message: z.ZodString;
|
|
12174
|
+
}, z.core.$strip>;
|
|
12173
12175
|
declare class IntegrationDeliverooSyncMenu extends AbstractApiRequest<typeof integrationDeliverooSyncMenuInputSchema, typeof integrationDeliverooSyncMenuResponseSchema> {
|
|
12174
12176
|
readonly method = "POST";
|
|
12175
12177
|
readonly contentType = "application/json";
|
|
12176
12178
|
readonly accept = "application/json";
|
|
12177
12179
|
readonly inputSchema: z.ZodUndefined;
|
|
12178
|
-
readonly outputSchema: z.
|
|
12180
|
+
readonly outputSchema: z.ZodObject<{
|
|
12181
|
+
message: z.ZodString;
|
|
12182
|
+
}, z.core.$strip>;
|
|
12179
12183
|
readonly querySchema: undefined;
|
|
12180
12184
|
readonly headersSchema: undefined;
|
|
12181
12185
|
private readonly integrationDeliverooId;
|
|
@@ -12184,13 +12188,17 @@ declare class IntegrationDeliverooSyncMenu extends AbstractApiRequest<typeof int
|
|
|
12184
12188
|
}
|
|
12185
12189
|
|
|
12186
12190
|
declare const integrationDeliverooSyncOpeningHoursInputSchema: z.ZodUndefined;
|
|
12187
|
-
declare const integrationDeliverooSyncOpeningHoursResponseSchema: z.
|
|
12191
|
+
declare const integrationDeliverooSyncOpeningHoursResponseSchema: z.ZodObject<{
|
|
12192
|
+
message: z.ZodString;
|
|
12193
|
+
}, z.core.$strip>;
|
|
12188
12194
|
declare class IntegrationDeliverooSyncOpeningHours extends AbstractApiRequest<typeof integrationDeliverooSyncOpeningHoursInputSchema, typeof integrationDeliverooSyncOpeningHoursResponseSchema> {
|
|
12189
12195
|
readonly method = "POST";
|
|
12190
12196
|
readonly contentType = "application/json";
|
|
12191
12197
|
readonly accept = "application/json";
|
|
12192
12198
|
readonly inputSchema: z.ZodUndefined;
|
|
12193
|
-
readonly outputSchema: z.
|
|
12199
|
+
readonly outputSchema: z.ZodObject<{
|
|
12200
|
+
message: z.ZodString;
|
|
12201
|
+
}, z.core.$strip>;
|
|
12194
12202
|
readonly querySchema: undefined;
|
|
12195
12203
|
readonly headersSchema: undefined;
|
|
12196
12204
|
private readonly integrationDeliverooId;
|
|
@@ -13490,13 +13498,17 @@ declare class GetIntegrationGlovoWebhookEvents extends AbstractApiRequest<typeof
|
|
|
13490
13498
|
}
|
|
13491
13499
|
|
|
13492
13500
|
declare const integrationGlovoSyncMenuInputSchema: z.ZodUndefined;
|
|
13493
|
-
declare const integrationGlovoSyncMenuResponseSchema: z.
|
|
13501
|
+
declare const integrationGlovoSyncMenuResponseSchema: z.ZodObject<{
|
|
13502
|
+
message: z.ZodString;
|
|
13503
|
+
}, z.core.$strip>;
|
|
13494
13504
|
declare class IntegrationGlovoSyncMenu extends AbstractApiRequest<typeof integrationGlovoSyncMenuInputSchema, typeof integrationGlovoSyncMenuResponseSchema> {
|
|
13495
13505
|
readonly method = "POST";
|
|
13496
13506
|
readonly contentType = "application/json";
|
|
13497
13507
|
readonly accept = "application/json";
|
|
13498
13508
|
readonly inputSchema: z.ZodUndefined;
|
|
13499
|
-
readonly outputSchema: z.
|
|
13509
|
+
readonly outputSchema: z.ZodObject<{
|
|
13510
|
+
message: z.ZodString;
|
|
13511
|
+
}, z.core.$strip>;
|
|
13500
13512
|
readonly querySchema: undefined;
|
|
13501
13513
|
readonly headersSchema: undefined;
|
|
13502
13514
|
private readonly integrationGlovoId;
|
|
@@ -14848,13 +14860,17 @@ declare class GetIntegrationJustEatSyncMenuProcesses extends AbstractApiRequest<
|
|
|
14848
14860
|
}
|
|
14849
14861
|
|
|
14850
14862
|
declare const integrationJustEatSyncMenuInputSchema: z.ZodUndefined;
|
|
14851
|
-
declare const integrationJustEatSyncMenuResponseSchema: z.
|
|
14863
|
+
declare const integrationJustEatSyncMenuResponseSchema: z.ZodObject<{
|
|
14864
|
+
message: z.ZodString;
|
|
14865
|
+
}, z.core.$strip>;
|
|
14852
14866
|
declare class IntegrationJustEatSyncMenu extends AbstractApiRequest<typeof integrationJustEatSyncMenuInputSchema, typeof integrationJustEatSyncMenuResponseSchema> {
|
|
14853
14867
|
readonly method = "POST";
|
|
14854
14868
|
readonly contentType = "application/json";
|
|
14855
14869
|
readonly accept = "application/json";
|
|
14856
14870
|
readonly inputSchema: z.ZodUndefined;
|
|
14857
|
-
readonly outputSchema: z.
|
|
14871
|
+
readonly outputSchema: z.ZodObject<{
|
|
14872
|
+
message: z.ZodString;
|
|
14873
|
+
}, z.core.$strip>;
|
|
14858
14874
|
readonly querySchema: undefined;
|
|
14859
14875
|
readonly headersSchema: undefined;
|
|
14860
14876
|
private readonly integrationJustEatId;
|
|
@@ -14863,13 +14879,17 @@ declare class IntegrationJustEatSyncMenu extends AbstractApiRequest<typeof integ
|
|
|
14863
14879
|
}
|
|
14864
14880
|
|
|
14865
14881
|
declare const integrationJustEatSyncOpeningHoursInputSchema: z.ZodUndefined;
|
|
14866
|
-
declare const integrationJustEatSyncOpeningHoursResponseSchema: z.
|
|
14882
|
+
declare const integrationJustEatSyncOpeningHoursResponseSchema: z.ZodObject<{
|
|
14883
|
+
message: z.ZodString;
|
|
14884
|
+
}, z.core.$strip>;
|
|
14867
14885
|
declare class IntegrationJustEatSyncOpeningTimes extends AbstractApiRequest<typeof integrationJustEatSyncOpeningHoursInputSchema, typeof integrationJustEatSyncOpeningHoursResponseSchema> {
|
|
14868
14886
|
readonly method = "POST";
|
|
14869
14887
|
readonly contentType = "application/json";
|
|
14870
14888
|
readonly accept = "application/json";
|
|
14871
14889
|
readonly inputSchema: z.ZodUndefined;
|
|
14872
|
-
readonly outputSchema: z.
|
|
14890
|
+
readonly outputSchema: z.ZodObject<{
|
|
14891
|
+
message: z.ZodString;
|
|
14892
|
+
}, z.core.$strip>;
|
|
14873
14893
|
readonly querySchema: undefined;
|
|
14874
14894
|
readonly headersSchema: undefined;
|
|
14875
14895
|
private readonly integrationJustEatId;
|
package/dist/index.d.ts
CHANGED
|
@@ -12169,13 +12169,17 @@ declare class GetIntegrationDeliverooWebhookEvents extends AbstractApiRequest<ty
|
|
|
12169
12169
|
}
|
|
12170
12170
|
|
|
12171
12171
|
declare const integrationDeliverooSyncMenuInputSchema: z.ZodUndefined;
|
|
12172
|
-
declare const integrationDeliverooSyncMenuResponseSchema: z.
|
|
12172
|
+
declare const integrationDeliverooSyncMenuResponseSchema: z.ZodObject<{
|
|
12173
|
+
message: z.ZodString;
|
|
12174
|
+
}, z.core.$strip>;
|
|
12173
12175
|
declare class IntegrationDeliverooSyncMenu extends AbstractApiRequest<typeof integrationDeliverooSyncMenuInputSchema, typeof integrationDeliverooSyncMenuResponseSchema> {
|
|
12174
12176
|
readonly method = "POST";
|
|
12175
12177
|
readonly contentType = "application/json";
|
|
12176
12178
|
readonly accept = "application/json";
|
|
12177
12179
|
readonly inputSchema: z.ZodUndefined;
|
|
12178
|
-
readonly outputSchema: z.
|
|
12180
|
+
readonly outputSchema: z.ZodObject<{
|
|
12181
|
+
message: z.ZodString;
|
|
12182
|
+
}, z.core.$strip>;
|
|
12179
12183
|
readonly querySchema: undefined;
|
|
12180
12184
|
readonly headersSchema: undefined;
|
|
12181
12185
|
private readonly integrationDeliverooId;
|
|
@@ -12184,13 +12188,17 @@ declare class IntegrationDeliverooSyncMenu extends AbstractApiRequest<typeof int
|
|
|
12184
12188
|
}
|
|
12185
12189
|
|
|
12186
12190
|
declare const integrationDeliverooSyncOpeningHoursInputSchema: z.ZodUndefined;
|
|
12187
|
-
declare const integrationDeliverooSyncOpeningHoursResponseSchema: z.
|
|
12191
|
+
declare const integrationDeliverooSyncOpeningHoursResponseSchema: z.ZodObject<{
|
|
12192
|
+
message: z.ZodString;
|
|
12193
|
+
}, z.core.$strip>;
|
|
12188
12194
|
declare class IntegrationDeliverooSyncOpeningHours extends AbstractApiRequest<typeof integrationDeliverooSyncOpeningHoursInputSchema, typeof integrationDeliverooSyncOpeningHoursResponseSchema> {
|
|
12189
12195
|
readonly method = "POST";
|
|
12190
12196
|
readonly contentType = "application/json";
|
|
12191
12197
|
readonly accept = "application/json";
|
|
12192
12198
|
readonly inputSchema: z.ZodUndefined;
|
|
12193
|
-
readonly outputSchema: z.
|
|
12199
|
+
readonly outputSchema: z.ZodObject<{
|
|
12200
|
+
message: z.ZodString;
|
|
12201
|
+
}, z.core.$strip>;
|
|
12194
12202
|
readonly querySchema: undefined;
|
|
12195
12203
|
readonly headersSchema: undefined;
|
|
12196
12204
|
private readonly integrationDeliverooId;
|
|
@@ -13490,13 +13498,17 @@ declare class GetIntegrationGlovoWebhookEvents extends AbstractApiRequest<typeof
|
|
|
13490
13498
|
}
|
|
13491
13499
|
|
|
13492
13500
|
declare const integrationGlovoSyncMenuInputSchema: z.ZodUndefined;
|
|
13493
|
-
declare const integrationGlovoSyncMenuResponseSchema: z.
|
|
13501
|
+
declare const integrationGlovoSyncMenuResponseSchema: z.ZodObject<{
|
|
13502
|
+
message: z.ZodString;
|
|
13503
|
+
}, z.core.$strip>;
|
|
13494
13504
|
declare class IntegrationGlovoSyncMenu extends AbstractApiRequest<typeof integrationGlovoSyncMenuInputSchema, typeof integrationGlovoSyncMenuResponseSchema> {
|
|
13495
13505
|
readonly method = "POST";
|
|
13496
13506
|
readonly contentType = "application/json";
|
|
13497
13507
|
readonly accept = "application/json";
|
|
13498
13508
|
readonly inputSchema: z.ZodUndefined;
|
|
13499
|
-
readonly outputSchema: z.
|
|
13509
|
+
readonly outputSchema: z.ZodObject<{
|
|
13510
|
+
message: z.ZodString;
|
|
13511
|
+
}, z.core.$strip>;
|
|
13500
13512
|
readonly querySchema: undefined;
|
|
13501
13513
|
readonly headersSchema: undefined;
|
|
13502
13514
|
private readonly integrationGlovoId;
|
|
@@ -14848,13 +14860,17 @@ declare class GetIntegrationJustEatSyncMenuProcesses extends AbstractApiRequest<
|
|
|
14848
14860
|
}
|
|
14849
14861
|
|
|
14850
14862
|
declare const integrationJustEatSyncMenuInputSchema: z.ZodUndefined;
|
|
14851
|
-
declare const integrationJustEatSyncMenuResponseSchema: z.
|
|
14863
|
+
declare const integrationJustEatSyncMenuResponseSchema: z.ZodObject<{
|
|
14864
|
+
message: z.ZodString;
|
|
14865
|
+
}, z.core.$strip>;
|
|
14852
14866
|
declare class IntegrationJustEatSyncMenu extends AbstractApiRequest<typeof integrationJustEatSyncMenuInputSchema, typeof integrationJustEatSyncMenuResponseSchema> {
|
|
14853
14867
|
readonly method = "POST";
|
|
14854
14868
|
readonly contentType = "application/json";
|
|
14855
14869
|
readonly accept = "application/json";
|
|
14856
14870
|
readonly inputSchema: z.ZodUndefined;
|
|
14857
|
-
readonly outputSchema: z.
|
|
14871
|
+
readonly outputSchema: z.ZodObject<{
|
|
14872
|
+
message: z.ZodString;
|
|
14873
|
+
}, z.core.$strip>;
|
|
14858
14874
|
readonly querySchema: undefined;
|
|
14859
14875
|
readonly headersSchema: undefined;
|
|
14860
14876
|
private readonly integrationJustEatId;
|
|
@@ -14863,13 +14879,17 @@ declare class IntegrationJustEatSyncMenu extends AbstractApiRequest<typeof integ
|
|
|
14863
14879
|
}
|
|
14864
14880
|
|
|
14865
14881
|
declare const integrationJustEatSyncOpeningHoursInputSchema: z.ZodUndefined;
|
|
14866
|
-
declare const integrationJustEatSyncOpeningHoursResponseSchema: z.
|
|
14882
|
+
declare const integrationJustEatSyncOpeningHoursResponseSchema: z.ZodObject<{
|
|
14883
|
+
message: z.ZodString;
|
|
14884
|
+
}, z.core.$strip>;
|
|
14867
14885
|
declare class IntegrationJustEatSyncOpeningTimes extends AbstractApiRequest<typeof integrationJustEatSyncOpeningHoursInputSchema, typeof integrationJustEatSyncOpeningHoursResponseSchema> {
|
|
14868
14886
|
readonly method = "POST";
|
|
14869
14887
|
readonly contentType = "application/json";
|
|
14870
14888
|
readonly accept = "application/json";
|
|
14871
14889
|
readonly inputSchema: z.ZodUndefined;
|
|
14872
|
-
readonly outputSchema: z.
|
|
14890
|
+
readonly outputSchema: z.ZodObject<{
|
|
14891
|
+
message: z.ZodString;
|
|
14892
|
+
}, z.core.$strip>;
|
|
14873
14893
|
readonly querySchema: undefined;
|
|
14874
14894
|
readonly headersSchema: undefined;
|
|
14875
14895
|
private readonly integrationJustEatId;
|
package/dist/index.js
CHANGED
|
@@ -13320,7 +13320,9 @@ var GetIntegrationDeliverooWebhookEvents = class extends AbstractApiRequest48 {
|
|
|
13320
13320
|
// src/requests/services/deliveroo/IntegrationDeliverooSyncMenu.ts
|
|
13321
13321
|
import { AbstractApiRequest as AbstractApiRequest49 } from "@deliverart/sdk-js-core";
|
|
13322
13322
|
var integrationDeliverooSyncMenuInputSchema = external_exports.undefined();
|
|
13323
|
-
var integrationDeliverooSyncMenuResponseSchema = external_exports.
|
|
13323
|
+
var integrationDeliverooSyncMenuResponseSchema = external_exports.object({
|
|
13324
|
+
message: external_exports.string()
|
|
13325
|
+
});
|
|
13324
13326
|
var IntegrationDeliverooSyncMenu = class extends AbstractApiRequest49 {
|
|
13325
13327
|
constructor(integrationDeliverooId) {
|
|
13326
13328
|
super(void 0);
|
|
@@ -13341,7 +13343,9 @@ var IntegrationDeliverooSyncMenu = class extends AbstractApiRequest49 {
|
|
|
13341
13343
|
// src/requests/services/deliveroo/IntegrationDeliverooSyncOpeningHours.ts
|
|
13342
13344
|
import { AbstractApiRequest as AbstractApiRequest50 } from "@deliverart/sdk-js-core";
|
|
13343
13345
|
var integrationDeliverooSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
13344
|
-
var integrationDeliverooSyncOpeningHoursResponseSchema = external_exports.
|
|
13346
|
+
var integrationDeliverooSyncOpeningHoursResponseSchema = external_exports.object({
|
|
13347
|
+
message: external_exports.string()
|
|
13348
|
+
});
|
|
13345
13349
|
var IntegrationDeliverooSyncOpeningHours = class extends AbstractApiRequest50 {
|
|
13346
13350
|
constructor(integrationDeliverooId) {
|
|
13347
13351
|
super(void 0);
|
|
@@ -13696,7 +13700,9 @@ var GetIntegrationGlovoWebhookEvents = class extends AbstractApiRequest64 {
|
|
|
13696
13700
|
// src/requests/services/glovo/IntegrationGlovoSyncMenu.ts
|
|
13697
13701
|
import { AbstractApiRequest as AbstractApiRequest65 } from "@deliverart/sdk-js-core";
|
|
13698
13702
|
var integrationGlovoSyncMenuInputSchema = external_exports.undefined();
|
|
13699
|
-
var integrationGlovoSyncMenuResponseSchema = external_exports.
|
|
13703
|
+
var integrationGlovoSyncMenuResponseSchema = external_exports.object({
|
|
13704
|
+
message: external_exports.string()
|
|
13705
|
+
});
|
|
13700
13706
|
var IntegrationGlovoSyncMenu = class extends AbstractApiRequest65 {
|
|
13701
13707
|
constructor(integrationGlovoId) {
|
|
13702
13708
|
super(void 0);
|
|
@@ -14051,7 +14057,9 @@ var GetIntegrationJustEatSyncMenuProcesses = class extends AbstractApiRequest79
|
|
|
14051
14057
|
// src/requests/services/justeat/IntegrationJustEatSyncMenu.ts
|
|
14052
14058
|
import { AbstractApiRequest as AbstractApiRequest80 } from "@deliverart/sdk-js-core";
|
|
14053
14059
|
var integrationJustEatSyncMenuInputSchema = external_exports.undefined();
|
|
14054
|
-
var integrationJustEatSyncMenuResponseSchema = external_exports.
|
|
14060
|
+
var integrationJustEatSyncMenuResponseSchema = external_exports.object({
|
|
14061
|
+
message: external_exports.string()
|
|
14062
|
+
});
|
|
14055
14063
|
var IntegrationJustEatSyncMenu = class extends AbstractApiRequest80 {
|
|
14056
14064
|
constructor(integrationJustEatId) {
|
|
14057
14065
|
super(void 0);
|
|
@@ -14072,7 +14080,9 @@ var IntegrationJustEatSyncMenu = class extends AbstractApiRequest80 {
|
|
|
14072
14080
|
// src/requests/services/justeat/IntegrationJustEatSyncOpeningTimes.ts
|
|
14073
14081
|
import { AbstractApiRequest as AbstractApiRequest81 } from "@deliverart/sdk-js-core";
|
|
14074
14082
|
var integrationJustEatSyncOpeningHoursInputSchema = external_exports.undefined();
|
|
14075
|
-
var integrationJustEatSyncOpeningHoursResponseSchema = external_exports.
|
|
14083
|
+
var integrationJustEatSyncOpeningHoursResponseSchema = external_exports.object({
|
|
14084
|
+
message: external_exports.string()
|
|
14085
|
+
});
|
|
14076
14086
|
var IntegrationJustEatSyncOpeningTimes = class extends AbstractApiRequest81 {
|
|
14077
14087
|
constructor(integrationJustEatId) {
|
|
14078
14088
|
super(void 0);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deliverart/sdk-js-integration",
|
|
3
3
|
"description": "Deliverart JavaScript SDK for Integration Management",
|
|
4
|
-
"version": "2.8.
|
|
4
|
+
"version": "2.8.14",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@deliverart/sdk-js-
|
|
22
|
-
"@deliverart/sdk-js-
|
|
23
|
-
"@deliverart/sdk-js-
|
|
24
|
-
"@deliverart/sdk-js-
|
|
25
|
-
"@deliverart/sdk-js-
|
|
26
|
-
"@deliverart/sdk-js-
|
|
21
|
+
"@deliverart/sdk-js-core": "2.8.14",
|
|
22
|
+
"@deliverart/sdk-js-point-of-sale": "2.8.14",
|
|
23
|
+
"@deliverart/sdk-js-image": "2.8.14",
|
|
24
|
+
"@deliverart/sdk-js-global-types": "2.8.14",
|
|
25
|
+
"@deliverart/sdk-js-order": "2.8.14",
|
|
26
|
+
"@deliverart/sdk-js-sales-mode": "2.8.14"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|