@deliverart/sdk-js-integration 2.4.13 → 2.4.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 +1 -1
- package/dist/index.d.cts +22 -22
- package/dist/index.d.ts +22 -22
- package/dist/index.js +1 -1
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -13326,7 +13326,7 @@ var IntegrationCassaInCloudSyncTimetables = class extends import_sdk_js_core35.A
|
|
|
13326
13326
|
|
|
13327
13327
|
// src/requests/services/cassa_in_cloud/UpdateIntegrationCassaInCloud.ts
|
|
13328
13328
|
var import_sdk_js_core36 = require("@deliverart/sdk-js-core");
|
|
13329
|
-
var updateIntegrationCassaInCloudInputSchema = integrationCassaInCloudEditableFieldsSchema;
|
|
13329
|
+
var updateIntegrationCassaInCloudInputSchema = integrationCassaInCloudEditableFieldsSchema.partial();
|
|
13330
13330
|
var updateIntegrationCassaInCloudResponseSchema = integrationCassaInCloudDetailsSchema;
|
|
13331
13331
|
var UpdateIntegrationCassaInCloud = class extends import_sdk_js_core36.AbstractApiRequest {
|
|
13332
13332
|
constructor(integrationCassaInCloudId, input) {
|
package/dist/index.d.cts
CHANGED
|
@@ -8703,30 +8703,30 @@ declare class IntegrationCassaInCloudSyncTimetables extends AbstractApiRequest<t
|
|
|
8703
8703
|
}
|
|
8704
8704
|
|
|
8705
8705
|
declare const updateIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
8706
|
-
direction: z.ZodEnum<{
|
|
8706
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
8707
8707
|
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8708
8708
|
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8709
|
-
}
|
|
8710
|
-
apiKey: z.ZodString
|
|
8711
|
-
idSalesPoint: z.ZodCoercedNumber<unknown
|
|
8712
|
-
locale: z.ZodString
|
|
8713
|
-
provider: z.ZodEnum<{
|
|
8709
|
+
}>>;
|
|
8710
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
8711
|
+
idSalesPoint: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8712
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
8713
|
+
provider: z.ZodOptional<z.ZodEnum<{
|
|
8714
8714
|
deliverart: "deliverart";
|
|
8715
8715
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8716
|
-
}
|
|
8717
|
-
syncSettings: z.ZodObject<{
|
|
8716
|
+
}>>;
|
|
8717
|
+
syncSettings: z.ZodOptional<z.ZodObject<{
|
|
8718
8718
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
8719
8719
|
internalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
8720
8720
|
skipSyncProductDescription: z.ZodDefault<z.ZodBoolean>;
|
|
8721
|
-
}, z.core.$strip
|
|
8722
|
-
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8721
|
+
}, z.core.$strip>>;
|
|
8722
|
+
productChannels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8723
8723
|
RISTO: "RISTO";
|
|
8724
8724
|
SALE: "SALE";
|
|
8725
8725
|
ECOMMERCE: "ECOMMERCE";
|
|
8726
8726
|
MOBILE_COMMERCE: "MOBILE_COMMERCE";
|
|
8727
8727
|
SELF_ORDER: "SELF_ORDER";
|
|
8728
8728
|
KIOSK: "KIOSK";
|
|
8729
|
-
}
|
|
8729
|
+
}>>>;
|
|
8730
8730
|
}, z.core.$strip>;
|
|
8731
8731
|
type UpdateIntegrationCassaInCloudInput = z.input<typeof updateIntegrationCassaInCloudInputSchema>;
|
|
8732
8732
|
declare const updateIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
@@ -8779,30 +8779,30 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
8779
8779
|
readonly contentType = "application/merge-patch+json";
|
|
8780
8780
|
readonly accept = "application/json";
|
|
8781
8781
|
readonly inputSchema: z.ZodObject<{
|
|
8782
|
-
direction: z.ZodEnum<{
|
|
8782
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
8783
8783
|
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8784
8784
|
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8785
|
-
}
|
|
8786
|
-
apiKey: z.ZodString
|
|
8787
|
-
idSalesPoint: z.ZodCoercedNumber<unknown
|
|
8788
|
-
locale: z.ZodString
|
|
8789
|
-
provider: z.ZodEnum<{
|
|
8785
|
+
}>>;
|
|
8786
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
8787
|
+
idSalesPoint: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8788
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
8789
|
+
provider: z.ZodOptional<z.ZodEnum<{
|
|
8790
8790
|
deliverart: "deliverart";
|
|
8791
8791
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8792
|
-
}
|
|
8793
|
-
syncSettings: z.ZodObject<{
|
|
8792
|
+
}>>;
|
|
8793
|
+
syncSettings: z.ZodOptional<z.ZodObject<{
|
|
8794
8794
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
8795
8795
|
internalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
8796
8796
|
skipSyncProductDescription: z.ZodDefault<z.ZodBoolean>;
|
|
8797
|
-
}, z.core.$strip
|
|
8798
|
-
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8797
|
+
}, z.core.$strip>>;
|
|
8798
|
+
productChannels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8799
8799
|
RISTO: "RISTO";
|
|
8800
8800
|
SALE: "SALE";
|
|
8801
8801
|
ECOMMERCE: "ECOMMERCE";
|
|
8802
8802
|
MOBILE_COMMERCE: "MOBILE_COMMERCE";
|
|
8803
8803
|
SELF_ORDER: "SELF_ORDER";
|
|
8804
8804
|
KIOSK: "KIOSK";
|
|
8805
|
-
}
|
|
8805
|
+
}>>>;
|
|
8806
8806
|
}, z.core.$strip>;
|
|
8807
8807
|
readonly outputSchema: z.ZodObject<{
|
|
8808
8808
|
status: z.ZodEnum<{
|
package/dist/index.d.ts
CHANGED
|
@@ -8703,30 +8703,30 @@ declare class IntegrationCassaInCloudSyncTimetables extends AbstractApiRequest<t
|
|
|
8703
8703
|
}
|
|
8704
8704
|
|
|
8705
8705
|
declare const updateIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
8706
|
-
direction: z.ZodEnum<{
|
|
8706
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
8707
8707
|
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8708
8708
|
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8709
|
-
}
|
|
8710
|
-
apiKey: z.ZodString
|
|
8711
|
-
idSalesPoint: z.ZodCoercedNumber<unknown
|
|
8712
|
-
locale: z.ZodString
|
|
8713
|
-
provider: z.ZodEnum<{
|
|
8709
|
+
}>>;
|
|
8710
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
8711
|
+
idSalesPoint: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8712
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
8713
|
+
provider: z.ZodOptional<z.ZodEnum<{
|
|
8714
8714
|
deliverart: "deliverart";
|
|
8715
8715
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8716
|
-
}
|
|
8717
|
-
syncSettings: z.ZodObject<{
|
|
8716
|
+
}>>;
|
|
8717
|
+
syncSettings: z.ZodOptional<z.ZodObject<{
|
|
8718
8718
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
8719
8719
|
internalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
8720
8720
|
skipSyncProductDescription: z.ZodDefault<z.ZodBoolean>;
|
|
8721
|
-
}, z.core.$strip
|
|
8722
|
-
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8721
|
+
}, z.core.$strip>>;
|
|
8722
|
+
productChannels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8723
8723
|
RISTO: "RISTO";
|
|
8724
8724
|
SALE: "SALE";
|
|
8725
8725
|
ECOMMERCE: "ECOMMERCE";
|
|
8726
8726
|
MOBILE_COMMERCE: "MOBILE_COMMERCE";
|
|
8727
8727
|
SELF_ORDER: "SELF_ORDER";
|
|
8728
8728
|
KIOSK: "KIOSK";
|
|
8729
|
-
}
|
|
8729
|
+
}>>>;
|
|
8730
8730
|
}, z.core.$strip>;
|
|
8731
8731
|
type UpdateIntegrationCassaInCloudInput = z.input<typeof updateIntegrationCassaInCloudInputSchema>;
|
|
8732
8732
|
declare const updateIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
@@ -8779,30 +8779,30 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
8779
8779
|
readonly contentType = "application/merge-patch+json";
|
|
8780
8780
|
readonly accept = "application/json";
|
|
8781
8781
|
readonly inputSchema: z.ZodObject<{
|
|
8782
|
-
direction: z.ZodEnum<{
|
|
8782
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
8783
8783
|
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8784
8784
|
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8785
|
-
}
|
|
8786
|
-
apiKey: z.ZodString
|
|
8787
|
-
idSalesPoint: z.ZodCoercedNumber<unknown
|
|
8788
|
-
locale: z.ZodString
|
|
8789
|
-
provider: z.ZodEnum<{
|
|
8785
|
+
}>>;
|
|
8786
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
8787
|
+
idSalesPoint: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8788
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
8789
|
+
provider: z.ZodOptional<z.ZodEnum<{
|
|
8790
8790
|
deliverart: "deliverart";
|
|
8791
8791
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8792
|
-
}
|
|
8793
|
-
syncSettings: z.ZodObject<{
|
|
8792
|
+
}>>;
|
|
8793
|
+
syncSettings: z.ZodOptional<z.ZodObject<{
|
|
8794
8794
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
8795
8795
|
internalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
8796
8796
|
skipSyncProductDescription: z.ZodDefault<z.ZodBoolean>;
|
|
8797
|
-
}, z.core.$strip
|
|
8798
|
-
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8797
|
+
}, z.core.$strip>>;
|
|
8798
|
+
productChannels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8799
8799
|
RISTO: "RISTO";
|
|
8800
8800
|
SALE: "SALE";
|
|
8801
8801
|
ECOMMERCE: "ECOMMERCE";
|
|
8802
8802
|
MOBILE_COMMERCE: "MOBILE_COMMERCE";
|
|
8803
8803
|
SELF_ORDER: "SELF_ORDER";
|
|
8804
8804
|
KIOSK: "KIOSK";
|
|
8805
|
-
}
|
|
8805
|
+
}>>>;
|
|
8806
8806
|
}, z.core.$strip>;
|
|
8807
8807
|
readonly outputSchema: z.ZodObject<{
|
|
8808
8808
|
status: z.ZodEnum<{
|
package/dist/index.js
CHANGED
|
@@ -12949,7 +12949,7 @@ var IntegrationCassaInCloudSyncTimetables = class extends AbstractApiRequest35 {
|
|
|
12949
12949
|
|
|
12950
12950
|
// src/requests/services/cassa_in_cloud/UpdateIntegrationCassaInCloud.ts
|
|
12951
12951
|
import { AbstractApiRequest as AbstractApiRequest36 } from "@deliverart/sdk-js-core";
|
|
12952
|
-
var updateIntegrationCassaInCloudInputSchema = integrationCassaInCloudEditableFieldsSchema;
|
|
12952
|
+
var updateIntegrationCassaInCloudInputSchema = integrationCassaInCloudEditableFieldsSchema.partial();
|
|
12953
12953
|
var updateIntegrationCassaInCloudResponseSchema = integrationCassaInCloudDetailsSchema;
|
|
12954
12954
|
var UpdateIntegrationCassaInCloud = class extends AbstractApiRequest36 {
|
|
12955
12955
|
constructor(integrationCassaInCloudId, input) {
|
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.4.
|
|
4
|
+
"version": "2.4.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-core": "2.4.
|
|
22
|
-
"@deliverart/sdk-js-image": "2.4.
|
|
23
|
-
"@deliverart/sdk-js-
|
|
24
|
-
"@deliverart/sdk-js-
|
|
25
|
-
"@deliverart/sdk-js-sales-mode": "2.4.
|
|
26
|
-
"@deliverart/sdk-js-
|
|
21
|
+
"@deliverart/sdk-js-core": "2.4.14",
|
|
22
|
+
"@deliverart/sdk-js-image": "2.4.14",
|
|
23
|
+
"@deliverart/sdk-js-point-of-sale": "2.4.14",
|
|
24
|
+
"@deliverart/sdk-js-global-types": "2.4.14",
|
|
25
|
+
"@deliverart/sdk-js-sales-mode": "2.4.14",
|
|
26
|
+
"@deliverart/sdk-js-order": "2.4.14"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|