@floristcloud/api-lib 1.2.61 → 1.2.62

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.
@@ -112,6 +112,7 @@ exports.PreOrderProductStepperPositionSchema = zod_1.z.object({
112
112
  multiplicityOptionUUID: zod_1.z.string().nullable().optional(),
113
113
  multiplicityOptionTitle: zod_1.z.string().nullable().optional(),
114
114
  quantity: zod_1.z.number(),
115
+ balance: zod_1.z.number().nullable(),
115
116
  });
116
117
  exports.ActiveStepperPositionsResponseSchema = zod_1.z.object({
117
118
  list: exports.PreOrderProductStepperPositionSchema.array(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floristcloud/api-lib",
3
- "version": "1.2.61",
3
+ "version": "1.2.62",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {
@@ -119,6 +119,7 @@ export const PreOrderProductStepperPositionSchema = z.object({
119
119
  multiplicityOptionUUID: z.string().nullable().optional(),
120
120
  multiplicityOptionTitle: z.string().nullable().optional(),
121
121
  quantity: z.number(),
122
+ balance: z.number().nullable(),
122
123
  });
123
124
 
124
125
  export const ActiveStepperPositionsResponseSchema = z.object({