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