@deliverart/sdk-js-integration 2.6.4 → 2.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +461 -82
- package/dist/index.d.cts +2074 -288
- package/dist/index.d.ts +2074 -288
- package/dist/index.js +372 -30
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -11156,8 +11156,16 @@ var integrationStatuses = ["pending", "active", "deleting"];
|
|
|
11156
11156
|
var integrationStatusSchema = external_exports.enum(integrationStatuses);
|
|
11157
11157
|
var integrationProviders = ["deliverart", "cassa_in_cloud"];
|
|
11158
11158
|
var integrationProviderSchema = external_exports.enum(integrationProviders);
|
|
11159
|
-
var integrationServices = [
|
|
11159
|
+
var integrationServices = [
|
|
11160
|
+
"deliveroo",
|
|
11161
|
+
"justeat",
|
|
11162
|
+
"glovo",
|
|
11163
|
+
"cassa_in_cloud",
|
|
11164
|
+
"kitchen"
|
|
11165
|
+
];
|
|
11160
11166
|
var integrationServiceSchema = external_exports.enum(integrationServices);
|
|
11167
|
+
var exclusiveIntegrationServices = ["kitchen", "cassa_in_cloud"];
|
|
11168
|
+
var exclusiveIntegrationServiceSchema = external_exports.enum(exclusiveIntegrationServices);
|
|
11161
11169
|
var integrationClientLogRequestMethods = ["DELETE", "GET", "PATCH", "POST", "PUT"];
|
|
11162
11170
|
var integrationClientLogRequestMethodSchema = external_exports.enum(integrationClientLogRequestMethods);
|
|
11163
11171
|
var integrationJustEatSyncTypes = ["ALL", "DELIVERY", "TAKE_AWAY"];
|
|
@@ -11260,6 +11268,8 @@ var integrationPathSchemas = Object.fromEntries(
|
|
|
11260
11268
|
var integrationMenuVersionPathSchemas = Object.fromEntries(
|
|
11261
11269
|
integrationServices.map((service) => [service, createIntegrationMenuVersionIriSchemas(service)])
|
|
11262
11270
|
);
|
|
11271
|
+
var integrationKitchenIriSchema = integrationPathSchemas.kitchen.iriSchema;
|
|
11272
|
+
var integrationKitchenNullableIriSchema = integrationPathSchemas.kitchen.iriNullableSchema;
|
|
11263
11273
|
var integrationDeliverooIriSchema = integrationPathSchemas.deliveroo.iriSchema;
|
|
11264
11274
|
var integrationDeliverooNullableIriSchema = integrationPathSchemas.deliveroo.iriNullableSchema;
|
|
11265
11275
|
var integrationDeliverooMenuVersionIriSchema = integrationMenuVersionPathSchemas.deliveroo.iriSchema;
|
|
@@ -11284,6 +11294,9 @@ var integrationCassaInCloudSyncMenuErrorLogNullableIriSchema = iriNullableSchema
|
|
|
11284
11294
|
);
|
|
11285
11295
|
|
|
11286
11296
|
// src/activatable-integration-data-schemas.ts
|
|
11297
|
+
var integrationKitchenDataSchema = external_exports.object({
|
|
11298
|
+
viewMode: external_exports.string().trim().min(1, "viewMode.required")
|
|
11299
|
+
});
|
|
11287
11300
|
var integrationDeliverooDataSchema = external_exports.object({
|
|
11288
11301
|
brandId: external_exports.string().trim().min(1, "brandId.required"),
|
|
11289
11302
|
siteId: external_exports.string().trim().min(1, "siteId.required"),
|
|
@@ -11304,6 +11317,10 @@ var integrationCassaInCloudDataSchema = external_exports.object({
|
|
|
11304
11317
|
locale: external_exports.string().trim().transform((v) => v.replace("-", "_")).refine((v) => /^[a-z]{2}_[A-Z]{2}$/.test(v), { message: "locale.invalid" })
|
|
11305
11318
|
});
|
|
11306
11319
|
var integrationServiceDataSchema = external_exports.discriminatedUnion("service", [
|
|
11320
|
+
external_exports.object({
|
|
11321
|
+
service: external_exports.literal("kitchen"),
|
|
11322
|
+
data: integrationKitchenDataSchema
|
|
11323
|
+
}),
|
|
11307
11324
|
external_exports.object({
|
|
11308
11325
|
service: external_exports.literal("deliveroo"),
|
|
11309
11326
|
data: integrationDeliverooDataSchema
|
|
@@ -11339,6 +11356,7 @@ var activatableIntegrationBaseSchema = external_exports.object({
|
|
|
11339
11356
|
id: external_exports.string(),
|
|
11340
11357
|
connectionId: external_exports.string().nullable(),
|
|
11341
11358
|
integration: external_exports.union([
|
|
11359
|
+
integrationKitchenIriSchema,
|
|
11342
11360
|
integrationDeliverooIriSchema,
|
|
11343
11361
|
integrationGlovoIriSchema,
|
|
11344
11362
|
integrationJustEatIriSchema,
|
|
@@ -11368,6 +11386,11 @@ function createIntegrationSchema(service, dataSchema, integrationPathSchema) {
|
|
|
11368
11386
|
}).extend(activatableIntegrationBaseSchema.omit({ integration: true }).shape);
|
|
11369
11387
|
}
|
|
11370
11388
|
var activatableIntegrationSchema = external_exports.discriminatedUnion("service", [
|
|
11389
|
+
createIntegrationSchema(
|
|
11390
|
+
"kitchen",
|
|
11391
|
+
integrationKitchenDataSchema,
|
|
11392
|
+
integrationKitchenNullableIriSchema
|
|
11393
|
+
),
|
|
11371
11394
|
createIntegrationSchema(
|
|
11372
11395
|
"deliveroo",
|
|
11373
11396
|
integrationDeliverooDataSchema,
|
|
@@ -11390,6 +11413,11 @@ var activatableIntegrationSchema = external_exports.discriminatedUnion("service"
|
|
|
11390
11413
|
import { pointOfSaleIriSchema } from "@deliverart/sdk-js-point-of-sale";
|
|
11391
11414
|
var integrationActivationRequestSchema = activatableIntegrationSchema;
|
|
11392
11415
|
var integrationActivationRequestDetailsSchema = external_exports.discriminatedUnion("service", [
|
|
11416
|
+
external_exports.object({
|
|
11417
|
+
pointOfSale: pointOfSaleIriSchema,
|
|
11418
|
+
service: external_exports.literal("kitchen"),
|
|
11419
|
+
data: integrationKitchenDataSchema
|
|
11420
|
+
}).extend(activatableIntegrationBaseSchema.shape),
|
|
11393
11421
|
external_exports.object({
|
|
11394
11422
|
pointOfSale: pointOfSaleIriSchema,
|
|
11395
11423
|
service: external_exports.literal("deliveroo"),
|
|
@@ -11437,6 +11465,7 @@ var integrationCancellationRequestSchema = external_exports.object({
|
|
|
11437
11465
|
});
|
|
11438
11466
|
var integrationCancellationRequestDetailsSchema = integrationCancellationRequestSchema.extend({
|
|
11439
11467
|
integration: external_exports.union([
|
|
11468
|
+
integrationKitchenNullableIriSchema,
|
|
11440
11469
|
integrationDeliverooNullableIriSchema,
|
|
11441
11470
|
integrationJustEatNullableIriSchema,
|
|
11442
11471
|
integrationGlovoNullableIriSchema,
|
|
@@ -11980,14 +12009,69 @@ var integrationJustEatOrdersQueryParamsSchema = external_exports.object({
|
|
|
11980
12009
|
page: external_exports.coerce.number().optional()
|
|
11981
12010
|
});
|
|
11982
12011
|
|
|
12012
|
+
// src/service-schemas/kitchen.ts
|
|
12013
|
+
import {
|
|
12014
|
+
datetimeSchema as datetimeSchema8,
|
|
12015
|
+
iriNullableSchema as iriNullableSchema3,
|
|
12016
|
+
iriSchema as iriSchema3,
|
|
12017
|
+
sortDirSchema as sortDirSchema6,
|
|
12018
|
+
timestampsFilterSchema as timestampsFilterSchema5
|
|
12019
|
+
} from "@deliverart/sdk-js-global-types";
|
|
12020
|
+
var integrationKitchenAccessTokenIriSchema = iriSchema3(
|
|
12021
|
+
"/integrations/kitchen/:integrationId/tokens/:id"
|
|
12022
|
+
);
|
|
12023
|
+
var integrationKitchenAccessTokenNullableIriSchema = iriNullableSchema3(
|
|
12024
|
+
"/integrations/kitchen/:integrationId/tokens/:id"
|
|
12025
|
+
);
|
|
12026
|
+
var integrationKitchenSchema = integrationBaseSchema.omit({ service: true, errors: true }).extend({
|
|
12027
|
+
viewMode: external_exports.string()
|
|
12028
|
+
});
|
|
12029
|
+
var integrationKitchenDetailsSchema = integrationKitchenSchema.extend(
|
|
12030
|
+
integrationDetailsFieldsSchema.shape
|
|
12031
|
+
);
|
|
12032
|
+
var integrationKitchenEditableFieldsSchema = integrationKitchenSchema.pick({
|
|
12033
|
+
viewMode: true,
|
|
12034
|
+
provider: true
|
|
12035
|
+
// Available for only ADMIN users
|
|
12036
|
+
});
|
|
12037
|
+
var integrationsKitchenQuerySchema = external_exports.object({
|
|
12038
|
+
"order[createdAt]": sortDirSchema6.optional(),
|
|
12039
|
+
"order[updatedAt]": sortDirSchema6.optional(),
|
|
12040
|
+
service: integrationServiceSchema.extract(["kitchen"]).optional(),
|
|
12041
|
+
page: external_exports.coerce.number().optional()
|
|
12042
|
+
}).extend(timestampsFilterSchema5.shape);
|
|
12043
|
+
var integrationKitchenAccessTokenSchema = external_exports.object({
|
|
12044
|
+
id: external_exports.uuid(),
|
|
12045
|
+
token: external_exports.string(),
|
|
12046
|
+
createdAt: datetimeSchema8
|
|
12047
|
+
});
|
|
12048
|
+
var integrationKitchenAccessTokenDetailsSchema = integrationKitchenAccessTokenSchema.extend({
|
|
12049
|
+
integration: integrationKitchenIriSchema
|
|
12050
|
+
});
|
|
12051
|
+
var integrationKitchenAccessTokensQuerySchema = external_exports.object({
|
|
12052
|
+
id: external_exports.union([
|
|
12053
|
+
external_exports.uuid(),
|
|
12054
|
+
integrationKitchenAccessTokenIriSchema,
|
|
12055
|
+
external_exports.array(external_exports.uuid()),
|
|
12056
|
+
external_exports.array(integrationKitchenAccessTokenIriSchema)
|
|
12057
|
+
]).optional(),
|
|
12058
|
+
"createdAt[before]": external_exports.string().optional(),
|
|
12059
|
+
"createdAt[strictly_before]": external_exports.string().optional(),
|
|
12060
|
+
"createdAt[after]": external_exports.string().optional(),
|
|
12061
|
+
"createdAt[strictly_after]": external_exports.string().optional(),
|
|
12062
|
+
page: external_exports.coerce.number().optional()
|
|
12063
|
+
});
|
|
12064
|
+
|
|
11983
12065
|
// src/integration-schemas.ts
|
|
11984
12066
|
var integrationSchema = external_exports.discriminatedUnion("service", [
|
|
12067
|
+
integrationKitchenSchema,
|
|
11985
12068
|
integrationJustEatSchema,
|
|
11986
12069
|
integrationDeliverooSchema,
|
|
11987
12070
|
integrationGlovoSchema,
|
|
11988
12071
|
integrationCassaInCloudSchema
|
|
11989
12072
|
]);
|
|
11990
12073
|
var integrationDetailsSchema = external_exports.discriminatedUnion("service", [
|
|
12074
|
+
integrationKitchenDetailsSchema,
|
|
11991
12075
|
integrationJustEatDetailsSchema,
|
|
11992
12076
|
integrationDeliverooDetailsSchema,
|
|
11993
12077
|
integrationGlovoDetailsSchema,
|
|
@@ -12047,6 +12131,10 @@ var writableIntegrationActivationRequestBaseSchema = external_exports.object({
|
|
|
12047
12131
|
pointOfSale: pointOfSaleIriSchema3
|
|
12048
12132
|
});
|
|
12049
12133
|
var createIntegrationActivationRequestInputSchema = external_exports.discriminatedUnion("service", [
|
|
12134
|
+
external_exports.object({
|
|
12135
|
+
service: external_exports.literal("kitchen"),
|
|
12136
|
+
data: integrationKitchenDataSchema
|
|
12137
|
+
}).extend(writableIntegrationActivationRequestBaseSchema.shape),
|
|
12050
12138
|
external_exports.object({
|
|
12051
12139
|
service: external_exports.literal("deliveroo"),
|
|
12052
12140
|
data: integrationDeliverooDataSchema
|
|
@@ -12128,14 +12216,14 @@ var GetIntegrationActivationRequestDetails = class extends AbstractApiRequest5 {
|
|
|
12128
12216
|
import { AbstractApiRequest as AbstractApiRequest6 } from "@deliverart/sdk-js-core";
|
|
12129
12217
|
import {
|
|
12130
12218
|
createPaginatedSchema,
|
|
12131
|
-
sortDirSchema as
|
|
12132
|
-
timestampsFilterSchema as
|
|
12219
|
+
sortDirSchema as sortDirSchema7,
|
|
12220
|
+
timestampsFilterSchema as timestampsFilterSchema6
|
|
12133
12221
|
} from "@deliverart/sdk-js-global-types";
|
|
12134
12222
|
var getIntegrationActivationRequestsQuerySchema = external_exports.object({
|
|
12135
|
-
"order[service]":
|
|
12136
|
-
"order[status]":
|
|
12137
|
-
"order[createdAt]":
|
|
12138
|
-
"order[updatedAt]":
|
|
12223
|
+
"order[service]": sortDirSchema7.optional(),
|
|
12224
|
+
"order[status]": sortDirSchema7.optional(),
|
|
12225
|
+
"order[createdAt]": sortDirSchema7.optional(),
|
|
12226
|
+
"order[updatedAt]": sortDirSchema7.optional(),
|
|
12139
12227
|
service: external_exports.union([integrationServiceSchema, external_exports.array(integrationServiceSchema)]).optional(),
|
|
12140
12228
|
provider: external_exports.union([integrationProviderSchema, external_exports.array(integrationProviderSchema)]).optional(),
|
|
12141
12229
|
status: external_exports.union([activatableIntegrationStatusSchema, external_exports.array(activatableIntegrationStatusSchema)]).optional(),
|
|
@@ -12145,7 +12233,7 @@ var getIntegrationActivationRequestsQuerySchema = external_exports.object({
|
|
|
12145
12233
|
]).optional(),
|
|
12146
12234
|
connectionId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
12147
12235
|
page: external_exports.coerce.number().optional()
|
|
12148
|
-
}).extend(
|
|
12236
|
+
}).extend(timestampsFilterSchema6.shape);
|
|
12149
12237
|
var getIntegrationActivationRequestsInputSchema = external_exports.undefined();
|
|
12150
12238
|
var getIntegrationActivationRequestsResponseSchema = createPaginatedSchema(
|
|
12151
12239
|
integrationActivationRequestSchema
|
|
@@ -12170,12 +12258,12 @@ var GetIntegrationActivationRequests = class extends AbstractApiRequest6 {
|
|
|
12170
12258
|
|
|
12171
12259
|
// src/requests/activation-requests/GetIntegrationActivationRequestsFromPointOfSale.ts
|
|
12172
12260
|
import { AbstractApiRequest as AbstractApiRequest7 } from "@deliverart/sdk-js-core";
|
|
12173
|
-
import { sortDirSchema as
|
|
12261
|
+
import { sortDirSchema as sortDirSchema8, timestampsFilterSchema as timestampsFilterSchema7 } from "@deliverart/sdk-js-global-types";
|
|
12174
12262
|
var getIntegrationActivationRequestsFromPointOfSaleQuerySchema = external_exports.object({
|
|
12175
|
-
"order[service]":
|
|
12176
|
-
"order[status]":
|
|
12177
|
-
"order[createdAt]":
|
|
12178
|
-
"order[updatedAt]":
|
|
12263
|
+
"order[service]": sortDirSchema8.optional(),
|
|
12264
|
+
"order[status]": sortDirSchema8.optional(),
|
|
12265
|
+
"order[createdAt]": sortDirSchema8.optional(),
|
|
12266
|
+
"order[updatedAt]": sortDirSchema8.optional(),
|
|
12179
12267
|
service: external_exports.union([integrationServiceSchema, external_exports.array(integrationServiceSchema)]).optional(),
|
|
12180
12268
|
provider: external_exports.union([integrationProviderSchema, external_exports.array(integrationProviderSchema)]).optional(),
|
|
12181
12269
|
status: external_exports.union([activatableIntegrationStatusSchema, external_exports.array(activatableIntegrationStatusSchema)]).optional(),
|
|
@@ -12185,7 +12273,7 @@ var getIntegrationActivationRequestsFromPointOfSaleQuerySchema = external_export
|
|
|
12185
12273
|
]).optional(),
|
|
12186
12274
|
connectionId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
12187
12275
|
page: external_exports.coerce.number().optional()
|
|
12188
|
-
}).extend(
|
|
12276
|
+
}).extend(timestampsFilterSchema7.shape);
|
|
12189
12277
|
var getIntegrationActivationRequestsFromPointOfSaleInputSchema = external_exports.undefined();
|
|
12190
12278
|
var getIntegrationActivationRequestsFromPointOfSaleResponseSchema = external_exports.array(
|
|
12191
12279
|
integrationActivationRequestSchema
|
|
@@ -12214,6 +12302,7 @@ import { AbstractApiRequest as AbstractApiRequest8 } from "@deliverart/sdk-js-co
|
|
|
12214
12302
|
var respondIntegrationActivationRequestInputSchema = external_exports.object({
|
|
12215
12303
|
message: external_exports.string().min(1, "Message is required"),
|
|
12216
12304
|
data: external_exports.union([
|
|
12305
|
+
integrationKitchenDataSchema,
|
|
12217
12306
|
integrationDeliverooDataSchema,
|
|
12218
12307
|
integrationGlovoDataSchema,
|
|
12219
12308
|
integrationJustEatDataSchema,
|
|
@@ -12270,6 +12359,10 @@ var writableIntegrationActivationRequestBaseSchema2 = external_exports.object({
|
|
|
12270
12359
|
internalNotes: external_exports.string().nullable()
|
|
12271
12360
|
}).partial();
|
|
12272
12361
|
var updateIntegrationActivationRequestInputSchema = external_exports.discriminatedUnion("service", [
|
|
12362
|
+
external_exports.object({
|
|
12363
|
+
service: external_exports.literal("kitchen"),
|
|
12364
|
+
data: integrationKitchenDataSchema.optional()
|
|
12365
|
+
}).extend(writableIntegrationActivationRequestBaseSchema2.shape),
|
|
12273
12366
|
external_exports.object({
|
|
12274
12367
|
service: external_exports.literal("deliveroo"),
|
|
12275
12368
|
data: integrationDeliverooDataSchema.optional()
|
|
@@ -12395,18 +12488,18 @@ var GetIntegrationCancellationRequestDetails = class extends AbstractApiRequest1
|
|
|
12395
12488
|
import { AbstractApiRequest as AbstractApiRequest15 } from "@deliverart/sdk-js-core";
|
|
12396
12489
|
import {
|
|
12397
12490
|
createPaginatedSchema as createPaginatedSchema2,
|
|
12398
|
-
sortDirSchema as
|
|
12399
|
-
timestampsFilterSchema as
|
|
12491
|
+
sortDirSchema as sortDirSchema9,
|
|
12492
|
+
timestampsFilterSchema as timestampsFilterSchema8
|
|
12400
12493
|
} from "@deliverart/sdk-js-global-types";
|
|
12401
12494
|
var getIntegrationCancellationRequestsQuerySchema = external_exports.object({
|
|
12402
|
-
"order[createdAt]":
|
|
12403
|
-
"order[updatedAt]":
|
|
12495
|
+
"order[createdAt]": sortDirSchema9.optional(),
|
|
12496
|
+
"order[updatedAt]": sortDirSchema9.optional(),
|
|
12404
12497
|
status: external_exports.union([
|
|
12405
12498
|
integrationCancellationRequestStatusSchema,
|
|
12406
12499
|
external_exports.array(integrationCancellationRequestStatusSchema)
|
|
12407
12500
|
]).optional(),
|
|
12408
12501
|
page: external_exports.coerce.number().optional()
|
|
12409
|
-
}).extend(
|
|
12502
|
+
}).extend(timestampsFilterSchema8.shape);
|
|
12410
12503
|
var getIntegrationCancellationRequestsInputSchema = external_exports.undefined();
|
|
12411
12504
|
var getIntegrationCancellationRequestsResponseSchema = createPaginatedSchema2(
|
|
12412
12505
|
integrationCancellationRequestSchema
|
|
@@ -12476,17 +12569,17 @@ var GetIntegrationDetails = class extends AbstractApiRequest17 {
|
|
|
12476
12569
|
import { AbstractApiRequest as AbstractApiRequest18 } from "@deliverart/sdk-js-core";
|
|
12477
12570
|
import {
|
|
12478
12571
|
createPaginatedSchema as createPaginatedSchema3,
|
|
12479
|
-
sortDirSchema as
|
|
12480
|
-
timestampsFilterSchema as
|
|
12572
|
+
sortDirSchema as sortDirSchema10,
|
|
12573
|
+
timestampsFilterSchema as timestampsFilterSchema9
|
|
12481
12574
|
} from "@deliverart/sdk-js-global-types";
|
|
12482
12575
|
var getIntegrationsQuerySchema = external_exports.object({
|
|
12483
12576
|
status: external_exports.union([integrationStatusSchema, external_exports.array(integrationStatusSchema)]).optional(),
|
|
12484
12577
|
connectionId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
12485
12578
|
service: integrationServiceSchema.optional(),
|
|
12486
|
-
"order[createdAt]":
|
|
12487
|
-
"order[updatedAt]":
|
|
12579
|
+
"order[createdAt]": sortDirSchema10.optional(),
|
|
12580
|
+
"order[updatedAt]": sortDirSchema10.optional(),
|
|
12488
12581
|
page: external_exports.coerce.number().optional()
|
|
12489
|
-
}).extend(
|
|
12582
|
+
}).extend(timestampsFilterSchema9.shape);
|
|
12490
12583
|
var getIntegrationsInputSchema = external_exports.undefined();
|
|
12491
12584
|
var getIntegrationsResponseSchema = createPaginatedSchema3(integrationSchema);
|
|
12492
12585
|
var GetIntegrations = class extends AbstractApiRequest18 {
|
|
@@ -12509,15 +12602,15 @@ var GetIntegrations = class extends AbstractApiRequest18 {
|
|
|
12509
12602
|
|
|
12510
12603
|
// src/requests/GetIntegrationsFromPointOfSale.ts
|
|
12511
12604
|
import { AbstractApiRequest as AbstractApiRequest19 } from "@deliverart/sdk-js-core";
|
|
12512
|
-
import { sortDirSchema as
|
|
12605
|
+
import { sortDirSchema as sortDirSchema11, timestampsFilterSchema as timestampsFilterSchema10 } from "@deliverart/sdk-js-global-types";
|
|
12513
12606
|
var getIntegrationsFromPointOfSaleQuerySchema = external_exports.object({
|
|
12514
12607
|
status: external_exports.union([integrationStatusSchema, external_exports.array(integrationStatusSchema)]).optional(),
|
|
12515
12608
|
connectionId: external_exports.union([external_exports.string(), external_exports.array(external_exports.string())]).optional(),
|
|
12516
12609
|
service: integrationServiceSchema.optional(),
|
|
12517
|
-
"order[createdAt]":
|
|
12518
|
-
"order[updatedAt]":
|
|
12610
|
+
"order[createdAt]": sortDirSchema11.optional(),
|
|
12611
|
+
"order[updatedAt]": sortDirSchema11.optional(),
|
|
12519
12612
|
page: external_exports.coerce.number().optional()
|
|
12520
|
-
}).extend(
|
|
12613
|
+
}).extend(timestampsFilterSchema10.shape);
|
|
12521
12614
|
var getIntegrationsFromPointOfSaleInputSchema = external_exports.undefined();
|
|
12522
12615
|
var getIntegrationsFromPointOfSaleResponseSchema = external_exports.array(integrationSchema);
|
|
12523
12616
|
var GetIntegrationsFromPointOfSale = class extends AbstractApiRequest19 {
|
|
@@ -14038,11 +14131,217 @@ var UpdateIntegrationJustEatRestaurantStatus = class extends AbstractApiRequest8
|
|
|
14038
14131
|
}
|
|
14039
14132
|
};
|
|
14040
14133
|
|
|
14041
|
-
// src/requests/
|
|
14134
|
+
// src/requests/services/kitchen/CreateIntegrationKitchen.ts
|
|
14042
14135
|
import { AbstractApiRequest as AbstractApiRequest84 } from "@deliverart/sdk-js-core";
|
|
14136
|
+
import { pointOfSaleIriSchema as pointOfSaleIriSchema9 } from "@deliverart/sdk-js-point-of-sale";
|
|
14137
|
+
var createIntegrationKitchenInputSchema = integrationKitchenEditableFieldsSchema.extend({
|
|
14138
|
+
pointOfSale: pointOfSaleIriSchema9
|
|
14139
|
+
});
|
|
14140
|
+
var createIntegrationKitchenResponseSchema = integrationKitchenDetailsSchema;
|
|
14141
|
+
var CreateIntegrationKitchen = class extends AbstractApiRequest84 {
|
|
14142
|
+
constructor(input) {
|
|
14143
|
+
super(input);
|
|
14144
|
+
this.method = "POST";
|
|
14145
|
+
this.contentType = "application/json";
|
|
14146
|
+
this.accept = "application/json";
|
|
14147
|
+
this.inputSchema = createIntegrationKitchenInputSchema;
|
|
14148
|
+
this.outputSchema = createIntegrationKitchenResponseSchema;
|
|
14149
|
+
this.querySchema = void 0;
|
|
14150
|
+
this.headersSchema = void 0;
|
|
14151
|
+
}
|
|
14152
|
+
getPath() {
|
|
14153
|
+
return "/integrations/kitchen";
|
|
14154
|
+
}
|
|
14155
|
+
};
|
|
14156
|
+
|
|
14157
|
+
// src/requests/services/kitchen/CreateIntegrationKitchenAccessToken.ts
|
|
14158
|
+
import { AbstractApiRequest as AbstractApiRequest85 } from "@deliverart/sdk-js-core";
|
|
14159
|
+
var createIntegrationKitchenAccessTokenInputSchema = external_exports.undefined();
|
|
14160
|
+
var createIntegrationKitchenAccessTokenResponseSchema = integrationKitchenAccessTokenDetailsSchema;
|
|
14161
|
+
var CreateIntegrationKitchenAccessToken = class extends AbstractApiRequest85 {
|
|
14162
|
+
constructor(integrationKitchenId) {
|
|
14163
|
+
super(void 0);
|
|
14164
|
+
this.method = "POST";
|
|
14165
|
+
this.contentType = "application/json";
|
|
14166
|
+
this.accept = "application/json";
|
|
14167
|
+
this.inputSchema = createIntegrationKitchenAccessTokenInputSchema;
|
|
14168
|
+
this.outputSchema = createIntegrationKitchenAccessTokenResponseSchema;
|
|
14169
|
+
this.querySchema = void 0;
|
|
14170
|
+
this.headersSchema = void 0;
|
|
14171
|
+
this.integrationKitchenId = integrationKitchenId;
|
|
14172
|
+
}
|
|
14173
|
+
getPath() {
|
|
14174
|
+
return `/integrations/kitchen/${this.integrationKitchenId}/tokens`;
|
|
14175
|
+
}
|
|
14176
|
+
};
|
|
14177
|
+
|
|
14178
|
+
// src/requests/services/kitchen/DeleteIntegrationKitchen.ts
|
|
14179
|
+
import { AbstractApiRequest as AbstractApiRequest86 } from "@deliverart/sdk-js-core";
|
|
14180
|
+
import { emptyResponseSchema as emptyResponseSchema8 } from "@deliverart/sdk-js-global-types";
|
|
14181
|
+
var deleteIntegrationKitchenInputSchema = external_exports.undefined();
|
|
14182
|
+
var deleteIntegrationKitchenResponseSchema = emptyResponseSchema8;
|
|
14183
|
+
var DeleteIntegrationKitchen = class extends AbstractApiRequest86 {
|
|
14184
|
+
constructor(integrationKitchenId) {
|
|
14185
|
+
super(void 0);
|
|
14186
|
+
this.method = "DELETE";
|
|
14187
|
+
this.contentType = "application/json";
|
|
14188
|
+
this.accept = "application/json";
|
|
14189
|
+
this.inputSchema = deleteIntegrationKitchenInputSchema;
|
|
14190
|
+
this.outputSchema = deleteIntegrationKitchenResponseSchema;
|
|
14191
|
+
this.querySchema = void 0;
|
|
14192
|
+
this.headersSchema = void 0;
|
|
14193
|
+
this.integrationKitchenId = integrationKitchenId;
|
|
14194
|
+
}
|
|
14195
|
+
getPath() {
|
|
14196
|
+
return `/integrations/kitchen/${this.integrationKitchenId}`;
|
|
14197
|
+
}
|
|
14198
|
+
};
|
|
14199
|
+
|
|
14200
|
+
// src/requests/services/kitchen/DeleteIntegrationKitchenAccessToken.ts
|
|
14201
|
+
import { AbstractApiRequest as AbstractApiRequest87 } from "@deliverart/sdk-js-core";
|
|
14202
|
+
import { emptyResponseSchema as emptyResponseSchema9 } from "@deliverart/sdk-js-global-types";
|
|
14203
|
+
var deleteIntegrationKitchenAccessTokenInputSchema = external_exports.undefined();
|
|
14204
|
+
var deleteIntegrationKitchenAccessTokenResponseSchema = emptyResponseSchema9;
|
|
14205
|
+
var DeleteIntegrationKitchenAccessToken = class extends AbstractApiRequest87 {
|
|
14206
|
+
constructor(integrationKitchenId, integrationKitchenAccessTokenId) {
|
|
14207
|
+
super(void 0);
|
|
14208
|
+
this.method = "DELETE";
|
|
14209
|
+
this.contentType = "application/json";
|
|
14210
|
+
this.accept = "application/json";
|
|
14211
|
+
this.inputSchema = deleteIntegrationKitchenAccessTokenInputSchema;
|
|
14212
|
+
this.outputSchema = deleteIntegrationKitchenAccessTokenResponseSchema;
|
|
14213
|
+
this.querySchema = void 0;
|
|
14214
|
+
this.headersSchema = void 0;
|
|
14215
|
+
this.integrationKitchenId = integrationKitchenId;
|
|
14216
|
+
this.integrationKitchenAccessTokenId = integrationKitchenAccessTokenId;
|
|
14217
|
+
}
|
|
14218
|
+
getPath() {
|
|
14219
|
+
return `/integrations/kitchen/${this.integrationKitchenId}/tokens/${this.integrationKitchenAccessTokenId}`;
|
|
14220
|
+
}
|
|
14221
|
+
};
|
|
14222
|
+
|
|
14223
|
+
// src/requests/services/kitchen/GetIntegrationKitchenAccessTokenDetails.ts
|
|
14224
|
+
import { AbstractApiRequest as AbstractApiRequest88 } from "@deliverart/sdk-js-core";
|
|
14225
|
+
var getIntegrationKitchenAccessTokenDetailsInputSchema = external_exports.undefined();
|
|
14226
|
+
var getIntegrationKitchenAccessTokenDetailsResponseSchema = integrationKitchenAccessTokenDetailsSchema;
|
|
14227
|
+
var GetIntegrationKitchenAccessTokenDetails = class extends AbstractApiRequest88 {
|
|
14228
|
+
constructor(integrationKitchenId, requestId) {
|
|
14229
|
+
super(void 0);
|
|
14230
|
+
this.method = "GET";
|
|
14231
|
+
this.contentType = "application/json";
|
|
14232
|
+
this.accept = "application/json";
|
|
14233
|
+
this.inputSchema = getIntegrationKitchenAccessTokenDetailsInputSchema;
|
|
14234
|
+
this.outputSchema = getIntegrationKitchenAccessTokenDetailsResponseSchema;
|
|
14235
|
+
this.querySchema = void 0;
|
|
14236
|
+
this.headersSchema = void 0;
|
|
14237
|
+
this.integrationKitchenId = integrationKitchenId;
|
|
14238
|
+
this.requestId = requestId;
|
|
14239
|
+
}
|
|
14240
|
+
getPath() {
|
|
14241
|
+
return `/integrations/kitchen/${this.integrationKitchenId}/tokens/${this.requestId}`;
|
|
14242
|
+
}
|
|
14243
|
+
};
|
|
14244
|
+
|
|
14245
|
+
// src/requests/services/kitchen/GetIntegrationKitchenAccessTokens.ts
|
|
14246
|
+
import { AbstractApiRequest as AbstractApiRequest89 } from "@deliverart/sdk-js-core";
|
|
14247
|
+
import { createPaginatedSchema as createPaginatedSchema23 } from "@deliverart/sdk-js-global-types";
|
|
14248
|
+
var getIntegrationKitchenAccessTokensQuerySchema = integrationKitchenAccessTokensQuerySchema;
|
|
14249
|
+
var getIntegrationKitchenAccessTokensInputSchema = external_exports.undefined();
|
|
14250
|
+
var getIntegrationKitchenAccessTokensResponseSchema = createPaginatedSchema23(
|
|
14251
|
+
integrationKitchenAccessTokenSchema
|
|
14252
|
+
);
|
|
14253
|
+
var GetIntegrationKitchenAccessTokens = class extends AbstractApiRequest89 {
|
|
14254
|
+
constructor(integrationKitchenId, options) {
|
|
14255
|
+
super(void 0, options);
|
|
14256
|
+
this.method = "GET";
|
|
14257
|
+
this.contentType = "application/json";
|
|
14258
|
+
this.accept = "application/json";
|
|
14259
|
+
this.inputSchema = getIntegrationKitchenAccessTokensInputSchema;
|
|
14260
|
+
this.outputSchema = getIntegrationKitchenAccessTokensResponseSchema;
|
|
14261
|
+
this.querySchema = getIntegrationKitchenAccessTokensQuerySchema;
|
|
14262
|
+
this.headersSchema = void 0;
|
|
14263
|
+
this.listItemSchema = integrationClientLogRequestSchema;
|
|
14264
|
+
this.paginationDefaultEnabled = true;
|
|
14265
|
+
this.integrationKitchenId = integrationKitchenId;
|
|
14266
|
+
}
|
|
14267
|
+
getPath() {
|
|
14268
|
+
return `/integrations/kitchen/${this.integrationKitchenId}/tokens`;
|
|
14269
|
+
}
|
|
14270
|
+
};
|
|
14271
|
+
|
|
14272
|
+
// src/requests/services/kitchen/GetIntegrationKitchenDetails.ts
|
|
14273
|
+
import { AbstractApiRequest as AbstractApiRequest90 } from "@deliverart/sdk-js-core";
|
|
14274
|
+
var getIntegrationKitchenDetailsInputSchema = external_exports.undefined();
|
|
14275
|
+
var getIntegrationKitchenDetailsResponseSchema = integrationKitchenDetailsSchema;
|
|
14276
|
+
var GetIntegrationKitchenDetails = class extends AbstractApiRequest90 {
|
|
14277
|
+
constructor(integrationKitchenId) {
|
|
14278
|
+
super(void 0);
|
|
14279
|
+
this.method = "GET";
|
|
14280
|
+
this.contentType = "application/json";
|
|
14281
|
+
this.accept = "application/json";
|
|
14282
|
+
this.inputSchema = getIntegrationKitchenDetailsInputSchema;
|
|
14283
|
+
this.outputSchema = getIntegrationKitchenDetailsResponseSchema;
|
|
14284
|
+
this.querySchema = void 0;
|
|
14285
|
+
this.headersSchema = void 0;
|
|
14286
|
+
this.integrationKitchenId = integrationKitchenId;
|
|
14287
|
+
}
|
|
14288
|
+
getPath() {
|
|
14289
|
+
return `/integrations/kitchen/${this.integrationKitchenId}`;
|
|
14290
|
+
}
|
|
14291
|
+
};
|
|
14292
|
+
|
|
14293
|
+
// src/requests/services/kitchen/GetIntegrationKitchenList.ts
|
|
14294
|
+
import { AbstractApiRequest as AbstractApiRequest91 } from "@deliverart/sdk-js-core";
|
|
14295
|
+
import { createPaginatedSchema as createPaginatedSchema24 } from "@deliverart/sdk-js-global-types";
|
|
14296
|
+
var getIntegrationKitchenListQuerySchema = integrationsKitchenQuerySchema.omit({
|
|
14297
|
+
service: true
|
|
14298
|
+
});
|
|
14299
|
+
var getIntegrationKitchenListResponseSchema = createPaginatedSchema24(integrationKitchenSchema);
|
|
14300
|
+
var getIntegrationKitchenListInputSchema = external_exports.undefined();
|
|
14301
|
+
var GetIntegrationKitchenList = class extends AbstractApiRequest91 {
|
|
14302
|
+
constructor(options) {
|
|
14303
|
+
super(void 0, options);
|
|
14304
|
+
this.method = "GET";
|
|
14305
|
+
this.contentType = "application/json";
|
|
14306
|
+
this.accept = "application/json";
|
|
14307
|
+
this.inputSchema = getIntegrationKitchenListInputSchema;
|
|
14308
|
+
this.outputSchema = getIntegrationKitchenListResponseSchema;
|
|
14309
|
+
this.querySchema = getIntegrationKitchenListQuerySchema;
|
|
14310
|
+
this.headersSchema = void 0;
|
|
14311
|
+
this.listItemSchema = integrationKitchenSchema;
|
|
14312
|
+
this.paginationDefaultEnabled = true;
|
|
14313
|
+
}
|
|
14314
|
+
getPath() {
|
|
14315
|
+
return "/integrations/kitchen";
|
|
14316
|
+
}
|
|
14317
|
+
};
|
|
14318
|
+
|
|
14319
|
+
// src/requests/services/kitchen/UpdateIntegrationKitchen.ts
|
|
14320
|
+
import { AbstractApiRequest as AbstractApiRequest92 } from "@deliverart/sdk-js-core";
|
|
14321
|
+
var updateIntegrationKitchenInputSchema = integrationKitchenEditableFieldsSchema.partial();
|
|
14322
|
+
var updateIntegrationKitchenResponseSchema = integrationKitchenDetailsSchema;
|
|
14323
|
+
var UpdateIntegrationKitchen = class extends AbstractApiRequest92 {
|
|
14324
|
+
constructor(integrationKitchenId, input) {
|
|
14325
|
+
super(input);
|
|
14326
|
+
this.method = "PATCH";
|
|
14327
|
+
this.contentType = "application/merge-patch+json";
|
|
14328
|
+
this.accept = "application/json";
|
|
14329
|
+
this.inputSchema = updateIntegrationKitchenInputSchema;
|
|
14330
|
+
this.outputSchema = updateIntegrationKitchenResponseSchema;
|
|
14331
|
+
this.querySchema = void 0;
|
|
14332
|
+
this.headersSchema = void 0;
|
|
14333
|
+
this.integrationKitchenId = integrationKitchenId;
|
|
14334
|
+
}
|
|
14335
|
+
getPath() {
|
|
14336
|
+
return `/integrations/kitchen/${this.integrationKitchenId}`;
|
|
14337
|
+
}
|
|
14338
|
+
};
|
|
14339
|
+
|
|
14340
|
+
// src/requests/UpdateIntegration.ts
|
|
14341
|
+
import { AbstractApiRequest as AbstractApiRequest93 } from "@deliverart/sdk-js-core";
|
|
14043
14342
|
var updateIntegrationInputSchema = writableIntegrationSchema.partial();
|
|
14044
14343
|
var updateIntegrationResponseSchema = integrationDetailsSchema;
|
|
14045
|
-
var UpdateIntegration = class extends
|
|
14344
|
+
var UpdateIntegration = class extends AbstractApiRequest93 {
|
|
14046
14345
|
constructor(integrationId, input) {
|
|
14047
14346
|
super(input);
|
|
14048
14347
|
this.method = "PATCH";
|
|
@@ -14068,6 +14367,8 @@ export {
|
|
|
14068
14367
|
CreateIntegrationDeliveroo,
|
|
14069
14368
|
CreateIntegrationGlovo,
|
|
14070
14369
|
CreateIntegrationJustEat,
|
|
14370
|
+
CreateIntegrationKitchen,
|
|
14371
|
+
CreateIntegrationKitchenAccessToken,
|
|
14071
14372
|
DeleteIntegration,
|
|
14072
14373
|
DeleteIntegrationActivationRequest,
|
|
14073
14374
|
DeleteIntegrationCancellationRequest,
|
|
@@ -14075,6 +14376,8 @@ export {
|
|
|
14075
14376
|
DeleteIntegrationDeliveroo,
|
|
14076
14377
|
DeleteIntegrationGlovo,
|
|
14077
14378
|
DeleteIntegrationJustEat,
|
|
14379
|
+
DeleteIntegrationKitchen,
|
|
14380
|
+
DeleteIntegrationKitchenAccessToken,
|
|
14078
14381
|
GetIntegrationActivationRequestDetails,
|
|
14079
14382
|
GetIntegrationActivationRequests,
|
|
14080
14383
|
GetIntegrationActivationRequestsFromPointOfSale,
|
|
@@ -14119,6 +14422,10 @@ export {
|
|
|
14119
14422
|
GetIntegrationJustEatOrders,
|
|
14120
14423
|
GetIntegrationJustEatSyncMenuProcessDetails,
|
|
14121
14424
|
GetIntegrationJustEatSyncMenuProcesses,
|
|
14425
|
+
GetIntegrationKitchenAccessTokenDetails,
|
|
14426
|
+
GetIntegrationKitchenAccessTokens,
|
|
14427
|
+
GetIntegrationKitchenDetails,
|
|
14428
|
+
GetIntegrationKitchenList,
|
|
14122
14429
|
GetIntegrations,
|
|
14123
14430
|
GetIntegrationsFromPointOfSale,
|
|
14124
14431
|
IntegrationCassaInCloudSyncCustomers,
|
|
@@ -14143,6 +14450,7 @@ export {
|
|
|
14143
14450
|
UpdateIntegrationGlovoStoreStatus,
|
|
14144
14451
|
UpdateIntegrationJustEat,
|
|
14145
14452
|
UpdateIntegrationJustEatRestaurantStatus,
|
|
14453
|
+
UpdateIntegrationKitchen,
|
|
14146
14454
|
activatableIntegrationBaseSchema,
|
|
14147
14455
|
activatableIntegrationHealthStatusSchema,
|
|
14148
14456
|
activatableIntegrationHealthStatuses,
|
|
@@ -14168,6 +14476,10 @@ export {
|
|
|
14168
14476
|
createIntegrationGlovoResponseSchema,
|
|
14169
14477
|
createIntegrationJustEatInputSchema,
|
|
14170
14478
|
createIntegrationJustEatResponseSchema,
|
|
14479
|
+
createIntegrationKitchenAccessTokenInputSchema,
|
|
14480
|
+
createIntegrationKitchenAccessTokenResponseSchema,
|
|
14481
|
+
createIntegrationKitchenInputSchema,
|
|
14482
|
+
createIntegrationKitchenResponseSchema,
|
|
14171
14483
|
deleteIntegrationActivationRequestInputSchema,
|
|
14172
14484
|
deleteIntegrationActivationRequestResponseSchema,
|
|
14173
14485
|
deleteIntegrationCancellationRequestInputSchema,
|
|
@@ -14181,7 +14493,13 @@ export {
|
|
|
14181
14493
|
deleteIntegrationInputSchema,
|
|
14182
14494
|
deleteIntegrationJustEatInputSchema,
|
|
14183
14495
|
deleteIntegrationJustEatResponseSchema,
|
|
14496
|
+
deleteIntegrationKitchenAccessTokenInputSchema,
|
|
14497
|
+
deleteIntegrationKitchenAccessTokenResponseSchema,
|
|
14498
|
+
deleteIntegrationKitchenInputSchema,
|
|
14499
|
+
deleteIntegrationKitchenResponseSchema,
|
|
14184
14500
|
deleteIntegrationResponseSchema,
|
|
14501
|
+
exclusiveIntegrationServiceSchema,
|
|
14502
|
+
exclusiveIntegrationServices,
|
|
14185
14503
|
getIntegrationActivationRequestDetailsInputSchema,
|
|
14186
14504
|
getIntegrationActivationRequestDetailsResponseSchema,
|
|
14187
14505
|
getIntegrationActivationRequestsFromPointOfSaleInputSchema,
|
|
@@ -14292,6 +14610,16 @@ export {
|
|
|
14292
14610
|
getIntegrationJustEatSyncMenuProcessesInputSchema,
|
|
14293
14611
|
getIntegrationJustEatSyncMenuProcessesQuerySchema,
|
|
14294
14612
|
getIntegrationJustEatSyncMenuProcessesResponseSchema,
|
|
14613
|
+
getIntegrationKitchenAccessTokenDetailsInputSchema,
|
|
14614
|
+
getIntegrationKitchenAccessTokenDetailsResponseSchema,
|
|
14615
|
+
getIntegrationKitchenAccessTokensInputSchema,
|
|
14616
|
+
getIntegrationKitchenAccessTokensQuerySchema,
|
|
14617
|
+
getIntegrationKitchenAccessTokensResponseSchema,
|
|
14618
|
+
getIntegrationKitchenDetailsInputSchema,
|
|
14619
|
+
getIntegrationKitchenDetailsResponseSchema,
|
|
14620
|
+
getIntegrationKitchenListInputSchema,
|
|
14621
|
+
getIntegrationKitchenListQuerySchema,
|
|
14622
|
+
getIntegrationKitchenListResponseSchema,
|
|
14295
14623
|
getIntegrationsFromPointOfSaleInputSchema,
|
|
14296
14624
|
getIntegrationsFromPointOfSaleQuerySchema,
|
|
14297
14625
|
getIntegrationsFromPointOfSaleResponseSchema,
|
|
@@ -14422,6 +14750,17 @@ export {
|
|
|
14422
14750
|
integrationJustEatSyncOpeningHoursResponseSchema,
|
|
14423
14751
|
integrationJustEatSyncTypeSchema,
|
|
14424
14752
|
integrationJustEatSyncTypes,
|
|
14753
|
+
integrationKitchenAccessTokenDetailsSchema,
|
|
14754
|
+
integrationKitchenAccessTokenIriSchema,
|
|
14755
|
+
integrationKitchenAccessTokenNullableIriSchema,
|
|
14756
|
+
integrationKitchenAccessTokenSchema,
|
|
14757
|
+
integrationKitchenAccessTokensQuerySchema,
|
|
14758
|
+
integrationKitchenDataSchema,
|
|
14759
|
+
integrationKitchenDetailsSchema,
|
|
14760
|
+
integrationKitchenEditableFieldsSchema,
|
|
14761
|
+
integrationKitchenIriSchema,
|
|
14762
|
+
integrationKitchenNullableIriSchema,
|
|
14763
|
+
integrationKitchenSchema,
|
|
14425
14764
|
integrationMenuVersionPathSchemas,
|
|
14426
14765
|
integrationNullableIriSchema,
|
|
14427
14766
|
integrationPathSchemas,
|
|
@@ -14437,6 +14776,7 @@ export {
|
|
|
14437
14776
|
integrationsDeliverooQuerySchema,
|
|
14438
14777
|
integrationsGlovoQuerySchema,
|
|
14439
14778
|
integrationsJustEatQuerySchema,
|
|
14779
|
+
integrationsKitchenQuerySchema,
|
|
14440
14780
|
menuVersionDetailsSchema,
|
|
14441
14781
|
menuVersionSchema,
|
|
14442
14782
|
respondIntegrationActivationRequestInputSchema,
|
|
@@ -14460,6 +14800,8 @@ export {
|
|
|
14460
14800
|
updateIntegrationJustEatResponseSchema,
|
|
14461
14801
|
updateIntegrationJustEatRestaurantStatusInputSchema,
|
|
14462
14802
|
updateIntegrationJustEatRestaurantStatusResponseSchema,
|
|
14803
|
+
updateIntegrationKitchenInputSchema,
|
|
14804
|
+
updateIntegrationKitchenResponseSchema,
|
|
14463
14805
|
updateIntegrationResponseSchema,
|
|
14464
14806
|
writableIntegrationSchema
|
|
14465
14807
|
};
|
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.6.
|
|
4
|
+
"version": "2.6.6",
|
|
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-core": "2.6.
|
|
22
|
-
"@deliverart/sdk-js-global-types": "2.6.
|
|
23
|
-
"@deliverart/sdk-js-
|
|
24
|
-
"@deliverart/sdk-js-
|
|
25
|
-
"@deliverart/sdk-js-point-of-sale": "2.6.
|
|
26
|
-
"@deliverart/sdk-js-sales-mode": "2.6.
|
|
21
|
+
"@deliverart/sdk-js-core": "2.6.6",
|
|
22
|
+
"@deliverart/sdk-js-global-types": "2.6.6",
|
|
23
|
+
"@deliverart/sdk-js-image": "2.6.6",
|
|
24
|
+
"@deliverart/sdk-js-order": "2.6.6",
|
|
25
|
+
"@deliverart/sdk-js-point-of-sale": "2.6.6",
|
|
26
|
+
"@deliverart/sdk-js-sales-mode": "2.6.6"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|