@deliverart/sdk-js-point-of-sale 2.1.1 → 2.1.3

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
@@ -39,12 +39,16 @@ __export(index_exports, {
39
39
  getPointOfSalesInputSchema: () => getPointOfSalesInputSchema,
40
40
  getPointOfSalesQuerySchema: () => getPointOfSalesQuerySchema,
41
41
  getPointOfSalesResponseSchema: () => getPointOfSalesResponseSchema,
42
+ menuVersionDetailsSchema: () => menuVersionDetailsSchema,
43
+ menuVersionSchema: () => menuVersionSchema,
42
44
  pointOfSaleAutoAcceptOrderValues: () => pointOfSaleAutoAcceptOrderValues,
43
45
  pointOfSaleCapabilities: () => pointOfSaleCapabilities,
44
46
  pointOfSaleCapabilitySchema: () => pointOfSaleCapabilitySchema,
45
47
  pointOfSaleDetailsSchema: () => pointOfSaleDetailsSchema,
46
48
  pointOfSaleIntervalValues: () => pointOfSaleIntervalValues,
47
49
  pointOfSaleIriSchema: () => pointOfSaleIriSchema,
50
+ pointOfSaleMenuVersionIriSchema: () => pointOfSaleMenuVersionIriSchema,
51
+ pointOfSaleMenuVersionNullableIriSchema: () => pointOfSaleMenuVersionNullableIriSchema,
48
52
  pointOfSaleNullableIriSchema: () => pointOfSaleNullableIriSchema,
49
53
  pointOfSaleOpeningStatusSchema: () => pointOfSaleOpeningStatusSchema,
50
54
  pointOfSaleOpeningStatuses: () => pointOfSaleOpeningStatuses,
@@ -11218,6 +11222,12 @@ var pointOfSaleUserRoles = ["ROLE_ADMIN", "ROLE_READER"];
11218
11222
  var pointOfSaleUserRoleSchema = external_exports.enum(pointOfSaleUserRoles);
11219
11223
  var pointOfSaleIriSchema = (0, import_sdk_js_global_types.iriSchema)("/point_of_sales/:id");
11220
11224
  var pointOfSaleNullableIriSchema = (0, import_sdk_js_global_types.iriNullableSchema)("/point_of_sales/:id");
11225
+ var pointOfSaleMenuVersionIriSchema = (0, import_sdk_js_global_types.iriSchema)(
11226
+ "/point_of_sales/:id/menu_versions/:menuVersionId"
11227
+ );
11228
+ var pointOfSaleMenuVersionNullableIriSchema = (0, import_sdk_js_global_types.iriNullableSchema)(
11229
+ "/point_of_sales/:id/menu_versions/:menuVersionId"
11230
+ );
11221
11231
 
11222
11232
  // src/models.ts
11223
11233
  var timeSettingSchema = external_exports.object({
@@ -11246,6 +11256,8 @@ var pointOfSaleSchema = external_exports.object({
11246
11256
  }),
11247
11257
  capabilities: pointOfSaleCapabilitySchema.array(),
11248
11258
  openingStatus: pointOfSaleOpeningStatusSchema,
11259
+ nextSyncMenuScheduledAt: import_sdk_js_global_types2.datetimeSchema.nullable(),
11260
+ currentMenuVersion: pointOfSaleMenuVersionNullableIriSchema,
11249
11261
  createdAt: import_sdk_js_global_types2.datetimeSchema,
11250
11262
  updatedAt: import_sdk_js_global_types2.datetimeSchema
11251
11263
  });
@@ -11253,6 +11265,16 @@ var userPointOfSaleSchema = external_exports.object({
11253
11265
  pointOfSale: pointOfSaleSchema,
11254
11266
  role: pointOfSaleUserRoleSchema
11255
11267
  });
11268
+ var menuVersionSchema = external_exports.object({
11269
+ id: external_exports.string(),
11270
+ contentUrl: external_exports.string(),
11271
+ filePath: external_exports.string(),
11272
+ createdAt: import_sdk_js_global_types2.datetimeSchema,
11273
+ updatedAt: import_sdk_js_global_types2.datetimeSchema
11274
+ });
11275
+ var menuVersionDetailsSchema = menuVersionSchema.extend({
11276
+ pointOfSale: pointOfSaleIriSchema
11277
+ });
11256
11278
  var pointOfSaleIntervalValues = [5, 10, 15, 20, 30, 60];
11257
11279
  var pointOfSaleAutoAcceptOrderValues = [0, 5, 10, 15];
11258
11280
  var pointOfSaleDetailsSchema = pointOfSaleSchema.extend({
@@ -11459,12 +11481,16 @@ var UpdatePointOfSale = class extends import_sdk_js_core6.AbstractApiRequest {
11459
11481
  getPointOfSalesInputSchema,
11460
11482
  getPointOfSalesQuerySchema,
11461
11483
  getPointOfSalesResponseSchema,
11484
+ menuVersionDetailsSchema,
11485
+ menuVersionSchema,
11462
11486
  pointOfSaleAutoAcceptOrderValues,
11463
11487
  pointOfSaleCapabilities,
11464
11488
  pointOfSaleCapabilitySchema,
11465
11489
  pointOfSaleDetailsSchema,
11466
11490
  pointOfSaleIntervalValues,
11467
11491
  pointOfSaleIriSchema,
11492
+ pointOfSaleMenuVersionIriSchema,
11493
+ pointOfSaleMenuVersionNullableIriSchema,
11468
11494
  pointOfSaleNullableIriSchema,
11469
11495
  pointOfSaleOpeningStatusSchema,
11470
11496
  pointOfSaleOpeningStatuses,
package/dist/index.d.cts CHANGED
@@ -59,6 +59,8 @@ declare const pointOfSaleSchema: z.ZodObject<{
59
59
  OPEN: "OPEN";
60
60
  CLOSED: "CLOSED";
61
61
  }>;
62
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
63
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
62
64
  createdAt: z.ZodString;
63
65
  updatedAt: z.ZodString;
64
66
  }, z.core.$strip>;
@@ -87,6 +89,8 @@ declare const userPointOfSaleSchema: z.ZodObject<{
87
89
  OPEN: "OPEN";
88
90
  CLOSED: "CLOSED";
89
91
  }>;
92
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
93
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
90
94
  createdAt: z.ZodString;
91
95
  updatedAt: z.ZodString;
92
96
  }, z.core.$strip>;
@@ -96,6 +100,23 @@ declare const userPointOfSaleSchema: z.ZodObject<{
96
100
  }>;
97
101
  }, z.core.$strip>;
98
102
  type UserPointOfSale = z.infer<typeof userPointOfSaleSchema>;
103
+ declare const menuVersionSchema: z.ZodObject<{
104
+ id: z.ZodString;
105
+ contentUrl: z.ZodString;
106
+ filePath: z.ZodString;
107
+ createdAt: z.ZodString;
108
+ updatedAt: z.ZodString;
109
+ }, z.core.$strip>;
110
+ type MenuVersion = z.infer<typeof menuVersionSchema>;
111
+ declare const menuVersionDetailsSchema: z.ZodObject<{
112
+ id: z.ZodString;
113
+ contentUrl: z.ZodString;
114
+ filePath: z.ZodString;
115
+ createdAt: z.ZodString;
116
+ updatedAt: z.ZodString;
117
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
118
+ }, z.core.$strip>;
119
+ type MenuVersionDetails = z.infer<typeof menuVersionDetailsSchema>;
99
120
  declare const pointOfSaleIntervalValues: number[];
100
121
  declare const pointOfSaleAutoAcceptOrderValues: number[];
101
122
  declare const pointOfSaleDetailsSchema: z.ZodObject<{
@@ -121,6 +142,8 @@ declare const pointOfSaleDetailsSchema: z.ZodObject<{
121
142
  OPEN: "OPEN";
122
143
  CLOSED: "CLOSED";
123
144
  }>;
145
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
146
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
124
147
  createdAt: z.ZodString;
125
148
  updatedAt: z.ZodString;
126
149
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -465,6 +488,8 @@ declare const createPointOfSaleResponseSchema: z.ZodObject<{
465
488
  OPEN: "OPEN";
466
489
  CLOSED: "CLOSED";
467
490
  }>;
491
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
492
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
468
493
  createdAt: z.ZodString;
469
494
  updatedAt: z.ZodString;
470
495
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -632,6 +657,8 @@ declare class CreatePointOfSale extends AbstractApiRequest<typeof createPointOfS
632
657
  OPEN: "OPEN";
633
658
  CLOSED: "CLOSED";
634
659
  }>;
660
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
661
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
635
662
  createdAt: z.ZodString;
636
663
  updatedAt: z.ZodString;
637
664
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -764,6 +791,8 @@ declare const getCompanyPointOfSalesResponseSchema: z.ZodArray<z.ZodObject<{
764
791
  OPEN: "OPEN";
765
792
  CLOSED: "CLOSED";
766
793
  }>;
794
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
795
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
767
796
  createdAt: z.ZodString;
768
797
  updatedAt: z.ZodString;
769
798
  }, z.core.$strip>>;
@@ -796,6 +825,8 @@ declare class GetCompanyPointOfSales extends AbstractApiRequest<typeof getCompan
796
825
  OPEN: "OPEN";
797
826
  CLOSED: "CLOSED";
798
827
  }>;
828
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
829
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
799
830
  createdAt: z.ZodString;
800
831
  updatedAt: z.ZodString;
801
832
  }, z.core.$strip>>;
@@ -856,6 +887,8 @@ declare const getPointOfSaleDetailsResponseSchema: z.ZodObject<{
856
887
  OPEN: "OPEN";
857
888
  CLOSED: "CLOSED";
858
889
  }>;
890
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
891
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
859
892
  createdAt: z.ZodString;
860
893
  updatedAt: z.ZodString;
861
894
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -947,6 +980,8 @@ declare class GetPointOfSaleDetails extends AbstractApiRequest<typeof getPointOf
947
980
  OPEN: "OPEN";
948
981
  CLOSED: "CLOSED";
949
982
  }>;
983
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
984
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
950
985
  createdAt: z.ZodString;
951
986
  updatedAt: z.ZodString;
952
987
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -1066,6 +1101,8 @@ declare const getPointOfSalesResponseSchema: z.ZodObject<{
1066
1101
  OPEN: "OPEN";
1067
1102
  CLOSED: "CLOSED";
1068
1103
  }>;
1104
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1105
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1069
1106
  createdAt: z.ZodString;
1070
1107
  updatedAt: z.ZodString;
1071
1108
  }, z.core.$strip>>;
@@ -1108,6 +1145,8 @@ declare class GetPointOfSales extends AbstractApiRequest<typeof getPointOfSalesI
1108
1145
  OPEN: "OPEN";
1109
1146
  CLOSED: "CLOSED";
1110
1147
  }>;
1148
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1149
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1111
1150
  createdAt: z.ZodString;
1112
1151
  updatedAt: z.ZodString;
1113
1152
  }, z.core.$strip>>;
@@ -1251,6 +1290,8 @@ declare const updatePointOfSaleResponseSchema: z.ZodObject<{
1251
1290
  OPEN: "OPEN";
1252
1291
  CLOSED: "CLOSED";
1253
1292
  }>;
1293
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1294
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1254
1295
  createdAt: z.ZodString;
1255
1296
  updatedAt: z.ZodString;
1256
1297
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -1417,6 +1458,8 @@ declare class UpdatePointOfSale extends AbstractApiRequest<typeof updatePointOfS
1417
1458
  OPEN: "OPEN";
1418
1459
  CLOSED: "CLOSED";
1419
1460
  }>;
1461
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1462
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1420
1463
  createdAt: z.ZodString;
1421
1464
  updatedAt: z.ZodString;
1422
1465
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -1507,5 +1550,9 @@ declare const pointOfSaleIriSchema: z.ZodType<_deliverart_sdk_js_global_types.Ir
1507
1550
  type PointOfSaleIri = z.infer<typeof pointOfSaleIriSchema>;
1508
1551
  declare const pointOfSaleNullableIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id"> | null, unknown>>;
1509
1552
  type PointOfSaleNullableIri = z.infer<typeof pointOfSaleNullableIriSchema>;
1553
+ declare const pointOfSaleMenuVersionIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId">, unknown>>;
1554
+ type PointOfSaleMenuVersionIri = z.infer<typeof pointOfSaleMenuVersionIriSchema>;
1555
+ declare const pointOfSaleMenuVersionNullableIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1556
+ type PointOfSaleMenuVersionNullableIri = z.infer<typeof pointOfSaleMenuVersionNullableIriSchema>;
1510
1557
 
1511
- export { CreatePointOfSale, type CreatePointOfSaleInput, type CreatePointOfSaleResponse, DeletePointOfSale, type DeliveryTimeSetting, GetCompanyPointOfSales, type GetCompanyPointOfSalesInput, type GetCompanyPointOfSalesQueryParams, type GetCompanyPointOfSalesResponse, GetPointOfSaleDetails, type GetPointOfSaleDetailsInput, type GetPointOfSaleDetailsResponse, GetPointOfSales, type GetPointOfSalesInput, type GetPointOfSalesQueryParams, type GetPointOfSalesResponse, type PointOfSale, type PointOfSaleCapability, type PointOfSaleDetails, type PointOfSaleIri, type PointOfSaleNullableIri, type PointOfSaleOpeningStatus, type PointOfSaleUserRole, type PointOfSalesQueryParams, type TimeSetting, UpdatePointOfSale, type UpdatePointOfSaleInput, type UpdatePointOfSaleResponse, type UserPointOfSale, type WritableCreatePointOfSale, type WritablePointOfSale, createPointOfSaleInputSchema, createPointOfSaleResponseSchema, deletePointOfSaleInputSchema, deletePointOfSaleResponseSchema, deliveryTimeSettingSchema, getCompanyPointOfSalesInputSchema, getCompanyPointOfSalesQuerySchema, getCompanyPointOfSalesResponseSchema, getPointOfSaleDetailsInputSchema, getPointOfSaleDetailsResponseSchema, getPointOfSalesInputSchema, getPointOfSalesQuerySchema, getPointOfSalesResponseSchema, pointOfSaleAutoAcceptOrderValues, pointOfSaleCapabilities, pointOfSaleCapabilitySchema, pointOfSaleDetailsSchema, pointOfSaleIntervalValues, pointOfSaleIriSchema, pointOfSaleNullableIriSchema, pointOfSaleOpeningStatusSchema, pointOfSaleOpeningStatuses, pointOfSaleSchema, pointOfSaleUserRoleSchema, pointOfSaleUserRoles, pointOfSalesQuerySchema, timeSettingSchema, updatePointOfSaleInputSchema, updatePointOfSaleResponseSchema, userPointOfSaleSchema, writableCreatePointOfSaleSchema, writablePointOfSaleSchema };
1558
+ export { CreatePointOfSale, type CreatePointOfSaleInput, type CreatePointOfSaleResponse, DeletePointOfSale, type DeliveryTimeSetting, GetCompanyPointOfSales, type GetCompanyPointOfSalesInput, type GetCompanyPointOfSalesQueryParams, type GetCompanyPointOfSalesResponse, GetPointOfSaleDetails, type GetPointOfSaleDetailsInput, type GetPointOfSaleDetailsResponse, GetPointOfSales, type GetPointOfSalesInput, type GetPointOfSalesQueryParams, type GetPointOfSalesResponse, type MenuVersion, type MenuVersionDetails, type PointOfSale, type PointOfSaleCapability, type PointOfSaleDetails, type PointOfSaleIri, type PointOfSaleMenuVersionIri, type PointOfSaleMenuVersionNullableIri, type PointOfSaleNullableIri, type PointOfSaleOpeningStatus, type PointOfSaleUserRole, type PointOfSalesQueryParams, type TimeSetting, UpdatePointOfSale, type UpdatePointOfSaleInput, type UpdatePointOfSaleResponse, type UserPointOfSale, type WritableCreatePointOfSale, type WritablePointOfSale, createPointOfSaleInputSchema, createPointOfSaleResponseSchema, deletePointOfSaleInputSchema, deletePointOfSaleResponseSchema, deliveryTimeSettingSchema, getCompanyPointOfSalesInputSchema, getCompanyPointOfSalesQuerySchema, getCompanyPointOfSalesResponseSchema, getPointOfSaleDetailsInputSchema, getPointOfSaleDetailsResponseSchema, getPointOfSalesInputSchema, getPointOfSalesQuerySchema, getPointOfSalesResponseSchema, menuVersionDetailsSchema, menuVersionSchema, pointOfSaleAutoAcceptOrderValues, pointOfSaleCapabilities, pointOfSaleCapabilitySchema, pointOfSaleDetailsSchema, pointOfSaleIntervalValues, pointOfSaleIriSchema, pointOfSaleMenuVersionIriSchema, pointOfSaleMenuVersionNullableIriSchema, pointOfSaleNullableIriSchema, pointOfSaleOpeningStatusSchema, pointOfSaleOpeningStatuses, pointOfSaleSchema, pointOfSaleUserRoleSchema, pointOfSaleUserRoles, pointOfSalesQuerySchema, timeSettingSchema, updatePointOfSaleInputSchema, updatePointOfSaleResponseSchema, userPointOfSaleSchema, writableCreatePointOfSaleSchema, writablePointOfSaleSchema };
package/dist/index.d.ts CHANGED
@@ -59,6 +59,8 @@ declare const pointOfSaleSchema: z.ZodObject<{
59
59
  OPEN: "OPEN";
60
60
  CLOSED: "CLOSED";
61
61
  }>;
62
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
63
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
62
64
  createdAt: z.ZodString;
63
65
  updatedAt: z.ZodString;
64
66
  }, z.core.$strip>;
@@ -87,6 +89,8 @@ declare const userPointOfSaleSchema: z.ZodObject<{
87
89
  OPEN: "OPEN";
88
90
  CLOSED: "CLOSED";
89
91
  }>;
92
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
93
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
90
94
  createdAt: z.ZodString;
91
95
  updatedAt: z.ZodString;
92
96
  }, z.core.$strip>;
@@ -96,6 +100,23 @@ declare const userPointOfSaleSchema: z.ZodObject<{
96
100
  }>;
97
101
  }, z.core.$strip>;
98
102
  type UserPointOfSale = z.infer<typeof userPointOfSaleSchema>;
103
+ declare const menuVersionSchema: z.ZodObject<{
104
+ id: z.ZodString;
105
+ contentUrl: z.ZodString;
106
+ filePath: z.ZodString;
107
+ createdAt: z.ZodString;
108
+ updatedAt: z.ZodString;
109
+ }, z.core.$strip>;
110
+ type MenuVersion = z.infer<typeof menuVersionSchema>;
111
+ declare const menuVersionDetailsSchema: z.ZodObject<{
112
+ id: z.ZodString;
113
+ contentUrl: z.ZodString;
114
+ filePath: z.ZodString;
115
+ createdAt: z.ZodString;
116
+ updatedAt: z.ZodString;
117
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
118
+ }, z.core.$strip>;
119
+ type MenuVersionDetails = z.infer<typeof menuVersionDetailsSchema>;
99
120
  declare const pointOfSaleIntervalValues: number[];
100
121
  declare const pointOfSaleAutoAcceptOrderValues: number[];
101
122
  declare const pointOfSaleDetailsSchema: z.ZodObject<{
@@ -121,6 +142,8 @@ declare const pointOfSaleDetailsSchema: z.ZodObject<{
121
142
  OPEN: "OPEN";
122
143
  CLOSED: "CLOSED";
123
144
  }>;
145
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
146
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
124
147
  createdAt: z.ZodString;
125
148
  updatedAt: z.ZodString;
126
149
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -465,6 +488,8 @@ declare const createPointOfSaleResponseSchema: z.ZodObject<{
465
488
  OPEN: "OPEN";
466
489
  CLOSED: "CLOSED";
467
490
  }>;
491
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
492
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
468
493
  createdAt: z.ZodString;
469
494
  updatedAt: z.ZodString;
470
495
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -632,6 +657,8 @@ declare class CreatePointOfSale extends AbstractApiRequest<typeof createPointOfS
632
657
  OPEN: "OPEN";
633
658
  CLOSED: "CLOSED";
634
659
  }>;
660
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
661
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
635
662
  createdAt: z.ZodString;
636
663
  updatedAt: z.ZodString;
637
664
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -764,6 +791,8 @@ declare const getCompanyPointOfSalesResponseSchema: z.ZodArray<z.ZodObject<{
764
791
  OPEN: "OPEN";
765
792
  CLOSED: "CLOSED";
766
793
  }>;
794
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
795
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
767
796
  createdAt: z.ZodString;
768
797
  updatedAt: z.ZodString;
769
798
  }, z.core.$strip>>;
@@ -796,6 +825,8 @@ declare class GetCompanyPointOfSales extends AbstractApiRequest<typeof getCompan
796
825
  OPEN: "OPEN";
797
826
  CLOSED: "CLOSED";
798
827
  }>;
828
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
829
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
799
830
  createdAt: z.ZodString;
800
831
  updatedAt: z.ZodString;
801
832
  }, z.core.$strip>>;
@@ -856,6 +887,8 @@ declare const getPointOfSaleDetailsResponseSchema: z.ZodObject<{
856
887
  OPEN: "OPEN";
857
888
  CLOSED: "CLOSED";
858
889
  }>;
890
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
891
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
859
892
  createdAt: z.ZodString;
860
893
  updatedAt: z.ZodString;
861
894
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -947,6 +980,8 @@ declare class GetPointOfSaleDetails extends AbstractApiRequest<typeof getPointOf
947
980
  OPEN: "OPEN";
948
981
  CLOSED: "CLOSED";
949
982
  }>;
983
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
984
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
950
985
  createdAt: z.ZodString;
951
986
  updatedAt: z.ZodString;
952
987
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -1066,6 +1101,8 @@ declare const getPointOfSalesResponseSchema: z.ZodObject<{
1066
1101
  OPEN: "OPEN";
1067
1102
  CLOSED: "CLOSED";
1068
1103
  }>;
1104
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1105
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1069
1106
  createdAt: z.ZodString;
1070
1107
  updatedAt: z.ZodString;
1071
1108
  }, z.core.$strip>>;
@@ -1108,6 +1145,8 @@ declare class GetPointOfSales extends AbstractApiRequest<typeof getPointOfSalesI
1108
1145
  OPEN: "OPEN";
1109
1146
  CLOSED: "CLOSED";
1110
1147
  }>;
1148
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1149
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1111
1150
  createdAt: z.ZodString;
1112
1151
  updatedAt: z.ZodString;
1113
1152
  }, z.core.$strip>>;
@@ -1251,6 +1290,8 @@ declare const updatePointOfSaleResponseSchema: z.ZodObject<{
1251
1290
  OPEN: "OPEN";
1252
1291
  CLOSED: "CLOSED";
1253
1292
  }>;
1293
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1294
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1254
1295
  createdAt: z.ZodString;
1255
1296
  updatedAt: z.ZodString;
1256
1297
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -1417,6 +1458,8 @@ declare class UpdatePointOfSale extends AbstractApiRequest<typeof updatePointOfS
1417
1458
  OPEN: "OPEN";
1418
1459
  CLOSED: "CLOSED";
1419
1460
  }>;
1461
+ nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1462
+ currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1420
1463
  createdAt: z.ZodString;
1421
1464
  updatedAt: z.ZodString;
1422
1465
  company: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/companies/:id">, unknown>>;
@@ -1507,5 +1550,9 @@ declare const pointOfSaleIriSchema: z.ZodType<_deliverart_sdk_js_global_types.Ir
1507
1550
  type PointOfSaleIri = z.infer<typeof pointOfSaleIriSchema>;
1508
1551
  declare const pointOfSaleNullableIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id"> | null, unknown>>;
1509
1552
  type PointOfSaleNullableIri = z.infer<typeof pointOfSaleNullableIriSchema>;
1553
+ declare const pointOfSaleMenuVersionIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId">, unknown>>;
1554
+ type PointOfSaleMenuVersionIri = z.infer<typeof pointOfSaleMenuVersionIriSchema>;
1555
+ declare const pointOfSaleMenuVersionNullableIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1556
+ type PointOfSaleMenuVersionNullableIri = z.infer<typeof pointOfSaleMenuVersionNullableIriSchema>;
1510
1557
 
1511
- export { CreatePointOfSale, type CreatePointOfSaleInput, type CreatePointOfSaleResponse, DeletePointOfSale, type DeliveryTimeSetting, GetCompanyPointOfSales, type GetCompanyPointOfSalesInput, type GetCompanyPointOfSalesQueryParams, type GetCompanyPointOfSalesResponse, GetPointOfSaleDetails, type GetPointOfSaleDetailsInput, type GetPointOfSaleDetailsResponse, GetPointOfSales, type GetPointOfSalesInput, type GetPointOfSalesQueryParams, type GetPointOfSalesResponse, type PointOfSale, type PointOfSaleCapability, type PointOfSaleDetails, type PointOfSaleIri, type PointOfSaleNullableIri, type PointOfSaleOpeningStatus, type PointOfSaleUserRole, type PointOfSalesQueryParams, type TimeSetting, UpdatePointOfSale, type UpdatePointOfSaleInput, type UpdatePointOfSaleResponse, type UserPointOfSale, type WritableCreatePointOfSale, type WritablePointOfSale, createPointOfSaleInputSchema, createPointOfSaleResponseSchema, deletePointOfSaleInputSchema, deletePointOfSaleResponseSchema, deliveryTimeSettingSchema, getCompanyPointOfSalesInputSchema, getCompanyPointOfSalesQuerySchema, getCompanyPointOfSalesResponseSchema, getPointOfSaleDetailsInputSchema, getPointOfSaleDetailsResponseSchema, getPointOfSalesInputSchema, getPointOfSalesQuerySchema, getPointOfSalesResponseSchema, pointOfSaleAutoAcceptOrderValues, pointOfSaleCapabilities, pointOfSaleCapabilitySchema, pointOfSaleDetailsSchema, pointOfSaleIntervalValues, pointOfSaleIriSchema, pointOfSaleNullableIriSchema, pointOfSaleOpeningStatusSchema, pointOfSaleOpeningStatuses, pointOfSaleSchema, pointOfSaleUserRoleSchema, pointOfSaleUserRoles, pointOfSalesQuerySchema, timeSettingSchema, updatePointOfSaleInputSchema, updatePointOfSaleResponseSchema, userPointOfSaleSchema, writableCreatePointOfSaleSchema, writablePointOfSaleSchema };
1558
+ export { CreatePointOfSale, type CreatePointOfSaleInput, type CreatePointOfSaleResponse, DeletePointOfSale, type DeliveryTimeSetting, GetCompanyPointOfSales, type GetCompanyPointOfSalesInput, type GetCompanyPointOfSalesQueryParams, type GetCompanyPointOfSalesResponse, GetPointOfSaleDetails, type GetPointOfSaleDetailsInput, type GetPointOfSaleDetailsResponse, GetPointOfSales, type GetPointOfSalesInput, type GetPointOfSalesQueryParams, type GetPointOfSalesResponse, type MenuVersion, type MenuVersionDetails, type PointOfSale, type PointOfSaleCapability, type PointOfSaleDetails, type PointOfSaleIri, type PointOfSaleMenuVersionIri, type PointOfSaleMenuVersionNullableIri, type PointOfSaleNullableIri, type PointOfSaleOpeningStatus, type PointOfSaleUserRole, type PointOfSalesQueryParams, type TimeSetting, UpdatePointOfSale, type UpdatePointOfSaleInput, type UpdatePointOfSaleResponse, type UserPointOfSale, type WritableCreatePointOfSale, type WritablePointOfSale, createPointOfSaleInputSchema, createPointOfSaleResponseSchema, deletePointOfSaleInputSchema, deletePointOfSaleResponseSchema, deliveryTimeSettingSchema, getCompanyPointOfSalesInputSchema, getCompanyPointOfSalesQuerySchema, getCompanyPointOfSalesResponseSchema, getPointOfSaleDetailsInputSchema, getPointOfSaleDetailsResponseSchema, getPointOfSalesInputSchema, getPointOfSalesQuerySchema, getPointOfSalesResponseSchema, menuVersionDetailsSchema, menuVersionSchema, pointOfSaleAutoAcceptOrderValues, pointOfSaleCapabilities, pointOfSaleCapabilitySchema, pointOfSaleDetailsSchema, pointOfSaleIntervalValues, pointOfSaleIriSchema, pointOfSaleMenuVersionIriSchema, pointOfSaleMenuVersionNullableIriSchema, pointOfSaleNullableIriSchema, pointOfSaleOpeningStatusSchema, pointOfSaleOpeningStatuses, pointOfSaleSchema, pointOfSaleUserRoleSchema, pointOfSaleUserRoles, pointOfSalesQuerySchema, timeSettingSchema, updatePointOfSaleInputSchema, updatePointOfSaleResponseSchema, userPointOfSaleSchema, writableCreatePointOfSaleSchema, writablePointOfSaleSchema };
package/dist/index.js CHANGED
@@ -11166,6 +11166,12 @@ var pointOfSaleUserRoles = ["ROLE_ADMIN", "ROLE_READER"];
11166
11166
  var pointOfSaleUserRoleSchema = external_exports.enum(pointOfSaleUserRoles);
11167
11167
  var pointOfSaleIriSchema = iriSchema("/point_of_sales/:id");
11168
11168
  var pointOfSaleNullableIriSchema = iriNullableSchema("/point_of_sales/:id");
11169
+ var pointOfSaleMenuVersionIriSchema = iriSchema(
11170
+ "/point_of_sales/:id/menu_versions/:menuVersionId"
11171
+ );
11172
+ var pointOfSaleMenuVersionNullableIriSchema = iriNullableSchema(
11173
+ "/point_of_sales/:id/menu_versions/:menuVersionId"
11174
+ );
11169
11175
 
11170
11176
  // src/models.ts
11171
11177
  var timeSettingSchema = external_exports.object({
@@ -11194,6 +11200,8 @@ var pointOfSaleSchema = external_exports.object({
11194
11200
  }),
11195
11201
  capabilities: pointOfSaleCapabilitySchema.array(),
11196
11202
  openingStatus: pointOfSaleOpeningStatusSchema,
11203
+ nextSyncMenuScheduledAt: datetimeSchema.nullable(),
11204
+ currentMenuVersion: pointOfSaleMenuVersionNullableIriSchema,
11197
11205
  createdAt: datetimeSchema,
11198
11206
  updatedAt: datetimeSchema
11199
11207
  });
@@ -11201,6 +11209,16 @@ var userPointOfSaleSchema = external_exports.object({
11201
11209
  pointOfSale: pointOfSaleSchema,
11202
11210
  role: pointOfSaleUserRoleSchema
11203
11211
  });
11212
+ var menuVersionSchema = external_exports.object({
11213
+ id: external_exports.string(),
11214
+ contentUrl: external_exports.string(),
11215
+ filePath: external_exports.string(),
11216
+ createdAt: datetimeSchema,
11217
+ updatedAt: datetimeSchema
11218
+ });
11219
+ var menuVersionDetailsSchema = menuVersionSchema.extend({
11220
+ pointOfSale: pointOfSaleIriSchema
11221
+ });
11204
11222
  var pointOfSaleIntervalValues = [5, 10, 15, 20, 30, 60];
11205
11223
  var pointOfSaleAutoAcceptOrderValues = [0, 5, 10, 15];
11206
11224
  var pointOfSaleDetailsSchema = pointOfSaleSchema.extend({
@@ -11409,12 +11427,16 @@ export {
11409
11427
  getPointOfSalesInputSchema,
11410
11428
  getPointOfSalesQuerySchema,
11411
11429
  getPointOfSalesResponseSchema,
11430
+ menuVersionDetailsSchema,
11431
+ menuVersionSchema,
11412
11432
  pointOfSaleAutoAcceptOrderValues,
11413
11433
  pointOfSaleCapabilities,
11414
11434
  pointOfSaleCapabilitySchema,
11415
11435
  pointOfSaleDetailsSchema,
11416
11436
  pointOfSaleIntervalValues,
11417
11437
  pointOfSaleIriSchema,
11438
+ pointOfSaleMenuVersionIriSchema,
11439
+ pointOfSaleMenuVersionNullableIriSchema,
11418
11440
  pointOfSaleNullableIriSchema,
11419
11441
  pointOfSaleOpeningStatusSchema,
11420
11442
  pointOfSaleOpeningStatuses,
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.1",
4
+ "version": "2.1.3",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -18,9 +18,9 @@
18
18
  "dist"
19
19
  ],
20
20
  "dependencies": {
21
- "@deliverart/sdk-js-company": "2.1.1",
22
- "@deliverart/sdk-js-core": "2.1.1",
23
- "@deliverart/sdk-js-global-types": "2.1.1"
21
+ "@deliverart/sdk-js-company": "2.1.3",
22
+ "@deliverart/sdk-js-core": "2.1.3",
23
+ "@deliverart/sdk-js-global-types": "2.1.3"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public"