@deliverart/sdk-js-point-of-sale 2.1.38 → 2.1.40

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 CHANGED
@@ -11356,6 +11356,8 @@ var pointOfSaleDetailsSchema = pointOfSaleSchema.extend({
11356
11356
  preventOrderTakingIfTheMaxCountableItemsExceeded: external_exports.boolean(),
11357
11357
  numberMinutesBeforeAutoAcceptOrder: external_exports.coerce.number().nonnegative().refine((value) => pointOfSaleAutoAcceptOrderValues.includes(value))
11358
11358
  }),
11359
+ customersIndexManifestUrl: external_exports.url().nullable(),
11360
+ customersIndexFileUrl: external_exports.url().nullable(),
11359
11361
  openingTimeSettings: timeSettingSchema.array(),
11360
11362
  deliveryTimeSettings: deliveryTimeSettingSchema.array(),
11361
11363
  takeAwayTimeSettings: timeSettingSchema.array(),
package/dist/index.d.cts CHANGED
@@ -282,6 +282,8 @@ declare const pointOfSaleDetailsSchema: z.ZodObject<{
282
282
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
283
283
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
284
284
  }, z.core.$strip>;
285
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
286
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
285
287
  openingTimeSettings: z.ZodArray<z.ZodObject<{
286
288
  dayOfWeek: z.ZodEnum<{
287
289
  monday: "monday";
@@ -1778,6 +1780,8 @@ declare const createPointOfSaleResponseSchema: z.ZodObject<{
1778
1780
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
1779
1781
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
1780
1782
  }, z.core.$strip>;
1783
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
1784
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
1781
1785
  openingTimeSettings: z.ZodArray<z.ZodObject<{
1782
1786
  dayOfWeek: z.ZodEnum<{
1783
1787
  monday: "monday";
@@ -1954,6 +1958,8 @@ declare class CreatePointOfSale extends AbstractApiRequest<typeof createPointOfS
1954
1958
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
1955
1959
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
1956
1960
  }, z.core.$strip>;
1961
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
1962
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
1957
1963
  openingTimeSettings: z.ZodArray<z.ZodObject<{
1958
1964
  dayOfWeek: z.ZodEnum<{
1959
1965
  monday: "monday";
@@ -2205,6 +2211,8 @@ declare const getPointOfSaleDetailsResponseSchema: z.ZodObject<{
2205
2211
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
2206
2212
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
2207
2213
  }, z.core.$strip>;
2214
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
2215
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
2208
2216
  openingTimeSettings: z.ZodArray<z.ZodObject<{
2209
2217
  dayOfWeek: z.ZodEnum<{
2210
2218
  monday: "monday";
@@ -2305,6 +2313,8 @@ declare class GetPointOfSaleDetails extends AbstractApiRequest<typeof getPointOf
2305
2313
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
2306
2314
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
2307
2315
  }, z.core.$strip>;
2316
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
2317
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
2308
2318
  openingTimeSettings: z.ZodArray<z.ZodObject<{
2309
2319
  dayOfWeek: z.ZodEnum<{
2310
2320
  monday: "monday";
@@ -2636,6 +2646,8 @@ declare const updatePointOfSaleResponseSchema: z.ZodObject<{
2636
2646
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
2637
2647
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
2638
2648
  }, z.core.$strip>;
2649
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
2650
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
2639
2651
  openingTimeSettings: z.ZodArray<z.ZodObject<{
2640
2652
  dayOfWeek: z.ZodEnum<{
2641
2653
  monday: "monday";
@@ -2811,6 +2823,8 @@ declare class UpdatePointOfSale extends AbstractApiRequest<typeof updatePointOfS
2811
2823
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
2812
2824
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
2813
2825
  }, z.core.$strip>;
2826
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
2827
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
2814
2828
  openingTimeSettings: z.ZodArray<z.ZodObject<{
2815
2829
  dayOfWeek: z.ZodEnum<{
2816
2830
  monday: "monday";
package/dist/index.d.ts CHANGED
@@ -282,6 +282,8 @@ declare const pointOfSaleDetailsSchema: z.ZodObject<{
282
282
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
283
283
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
284
284
  }, z.core.$strip>;
285
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
286
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
285
287
  openingTimeSettings: z.ZodArray<z.ZodObject<{
286
288
  dayOfWeek: z.ZodEnum<{
287
289
  monday: "monday";
@@ -1778,6 +1780,8 @@ declare const createPointOfSaleResponseSchema: z.ZodObject<{
1778
1780
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
1779
1781
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
1780
1782
  }, z.core.$strip>;
1783
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
1784
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
1781
1785
  openingTimeSettings: z.ZodArray<z.ZodObject<{
1782
1786
  dayOfWeek: z.ZodEnum<{
1783
1787
  monday: "monday";
@@ -1954,6 +1958,8 @@ declare class CreatePointOfSale extends AbstractApiRequest<typeof createPointOfS
1954
1958
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
1955
1959
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
1956
1960
  }, z.core.$strip>;
1961
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
1962
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
1957
1963
  openingTimeSettings: z.ZodArray<z.ZodObject<{
1958
1964
  dayOfWeek: z.ZodEnum<{
1959
1965
  monday: "monday";
@@ -2205,6 +2211,8 @@ declare const getPointOfSaleDetailsResponseSchema: z.ZodObject<{
2205
2211
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
2206
2212
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
2207
2213
  }, z.core.$strip>;
2214
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
2215
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
2208
2216
  openingTimeSettings: z.ZodArray<z.ZodObject<{
2209
2217
  dayOfWeek: z.ZodEnum<{
2210
2218
  monday: "monday";
@@ -2305,6 +2313,8 @@ declare class GetPointOfSaleDetails extends AbstractApiRequest<typeof getPointOf
2305
2313
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
2306
2314
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
2307
2315
  }, z.core.$strip>;
2316
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
2317
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
2308
2318
  openingTimeSettings: z.ZodArray<z.ZodObject<{
2309
2319
  dayOfWeek: z.ZodEnum<{
2310
2320
  monday: "monday";
@@ -2636,6 +2646,8 @@ declare const updatePointOfSaleResponseSchema: z.ZodObject<{
2636
2646
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
2637
2647
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
2638
2648
  }, z.core.$strip>;
2649
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
2650
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
2639
2651
  openingTimeSettings: z.ZodArray<z.ZodObject<{
2640
2652
  dayOfWeek: z.ZodEnum<{
2641
2653
  monday: "monday";
@@ -2811,6 +2823,8 @@ declare class UpdatePointOfSale extends AbstractApiRequest<typeof updatePointOfS
2811
2823
  preventOrderTakingIfTheMaxCountableItemsExceeded: z.ZodBoolean;
2812
2824
  numberMinutesBeforeAutoAcceptOrder: z.ZodCoercedNumber<unknown>;
2813
2825
  }, z.core.$strip>;
2826
+ customersIndexManifestUrl: z.ZodNullable<z.ZodURL>;
2827
+ customersIndexFileUrl: z.ZodNullable<z.ZodURL>;
2814
2828
  openingTimeSettings: z.ZodArray<z.ZodObject<{
2815
2829
  dayOfWeek: z.ZodEnum<{
2816
2830
  monday: "monday";
package/dist/index.js CHANGED
@@ -11252,6 +11252,8 @@ var pointOfSaleDetailsSchema = pointOfSaleSchema.extend({
11252
11252
  preventOrderTakingIfTheMaxCountableItemsExceeded: external_exports.boolean(),
11253
11253
  numberMinutesBeforeAutoAcceptOrder: external_exports.coerce.number().nonnegative().refine((value) => pointOfSaleAutoAcceptOrderValues.includes(value))
11254
11254
  }),
11255
+ customersIndexManifestUrl: external_exports.url().nullable(),
11256
+ customersIndexFileUrl: external_exports.url().nullable(),
11255
11257
  openingTimeSettings: timeSettingSchema.array(),
11256
11258
  deliveryTimeSettings: deliveryTimeSettingSchema.array(),
11257
11259
  takeAwayTimeSettings: timeSettingSchema.array(),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deliverart/sdk-js-point-of-sale",
3
3
  "description": "Deliverart JavaScript SDK for Point of Sale Management",
4
- "version": "2.1.38",
4
+ "version": "2.1.40",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -18,10 +18,10 @@
18
18
  "dist"
19
19
  ],
20
20
  "dependencies": {
21
- "@deliverart/sdk-js-company": "2.1.38",
22
- "@deliverart/sdk-js-global-types": "2.1.38",
23
- "@deliverart/sdk-js-user": "2.1.38",
24
- "@deliverart/sdk-js-core": "2.1.38"
21
+ "@deliverart/sdk-js-company": "2.1.40",
22
+ "@deliverart/sdk-js-core": "2.1.40",
23
+ "@deliverart/sdk-js-user": "2.1.40",
24
+ "@deliverart/sdk-js-global-types": "2.1.40"
25
25
  },
26
26
  "publishConfig": {
27
27
  "access": "public"