@wix/auto_sdk_stores_inventory 1.0.70 → 1.0.71

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.
Files changed (50) hide show
  1. package/build/cjs/index.d.ts +21 -21
  2. package/build/cjs/index.js +171 -171
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +197 -197
  5. package/build/cjs/index.typings.js +154 -154
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +178 -178
  8. package/build/cjs/meta.js +140 -140
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +21 -21
  11. package/build/es/index.mjs +171 -171
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +197 -197
  14. package/build/es/index.typings.mjs +154 -154
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +178 -178
  17. package/build/es/meta.mjs +140 -140
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +21 -21
  20. package/build/internal/cjs/index.js +171 -171
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +230 -230
  23. package/build/internal/cjs/index.typings.js +154 -154
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +178 -178
  26. package/build/internal/cjs/meta.js +140 -140
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +21 -21
  29. package/build/internal/es/index.mjs +171 -171
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +230 -230
  32. package/build/internal/es/index.typings.mjs +154 -154
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +178 -178
  35. package/build/internal/es/meta.mjs +140 -140
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +3 -9
  38. package/build/cjs/schemas.d.ts +0 -148
  39. package/build/cjs/schemas.js +0 -274
  40. package/build/cjs/schemas.js.map +0 -1
  41. package/build/es/schemas.d.mts +0 -148
  42. package/build/es/schemas.mjs +0 -228
  43. package/build/es/schemas.mjs.map +0 -1
  44. package/build/internal/cjs/schemas.d.ts +0 -148
  45. package/build/internal/cjs/schemas.js +0 -274
  46. package/build/internal/cjs/schemas.js.map +0 -1
  47. package/build/internal/es/schemas.d.mts +0 -148
  48. package/build/internal/es/schemas.mjs +0 -228
  49. package/build/internal/es/schemas.mjs.map +0 -1
  50. package/schemas/package.json +0 -3
@@ -1,228 +0,0 @@
1
- // src/stores-v2-inventory-inventory.schemas.ts
2
- import * as z from "zod";
3
- var GetInventoryVariantsRequest = z.object({
4
- inventoryId: z.string().describe("Inventory item ID."),
5
- options: z.intersection(
6
- z.object({ variantIds: z.array(z.string()).optional() }),
7
- z.xor([
8
- z.object({
9
- inventoryId: z.never().optional(),
10
- externalId: z.never().optional(),
11
- productId: z.never().optional()
12
- }),
13
- z.object({
14
- externalId: z.never().optional(),
15
- productId: z.never().optional(),
16
- inventoryId: z.string().describe("Inventory item ID.")
17
- }),
18
- z.object({
19
- inventoryId: z.never().optional(),
20
- productId: z.never().optional(),
21
- externalId: z.string().describe("Deprecated (use productID instead).")
22
- }),
23
- z.object({
24
- inventoryId: z.never().optional(),
25
- externalId: z.never().optional(),
26
- productId: z.string().describe("Product ID.")
27
- })
28
- ])
29
- ).optional()
30
- });
31
- var GetInventoryVariantsResponse = z.object({
32
- inventoryItem: z.object({
33
- _id: z.string().describe("Inventory item ID.").optional().nullable(),
34
- externalId: z.string().describe("Deprecated: use productId.").optional().nullable(),
35
- productId: z.string().describe("Product ID.").optional().nullable(),
36
- trackQuantity: z.boolean().describe("Whether quantity is being tracked.").optional().nullable(),
37
- variants: z.array(
38
- z.object({
39
- variantId: z.string().describe("Variant ID.").optional(),
40
- inStock: z.boolean().describe("Whether the product is listed as in stock.").optional().nullable(),
41
- quantity: z.number().int().describe("Quantity currently left in inventory.").min(0).optional().nullable(),
42
- availableForPreorder: z.boolean().describe(
43
- "Whether the variant is available for preorder. When `true`, the variant is out of stock and preorder is enabled on inventory level."
44
- ).optional()
45
- })
46
- ).optional(),
47
- lastUpdated: z.date().describe("Last updated timestamp.").optional().nullable(),
48
- numericId: z.string().regex(/^\d+$/, "Must be a valid UInt64 string").describe(
49
- "Inventory\u2019s unique numeric ID (assigned in ascending order).\nPrimarily for sorting and filtering when crawling all inventories."
50
- ).optional(),
51
- preorderInfo: z.object({
52
- enabled: z.boolean().describe("Whether the item is available for preorder.").optional(),
53
- message: z.string().describe(
54
- "A message the buyer will see when the item is out of stock and preorder is enabled."
55
- ).min(1).max(250).optional().nullable(),
56
- limit: z.number().int().describe(
57
- "Number of products that can be preordered after stock reaches zero."
58
- ).min(0).max(1e5).optional().nullable()
59
- }).describe("Preorder information.").optional()
60
- }).describe("Inventory item.").optional()
61
- });
62
- var QueryInventoryRequest = z.object({
63
- options: z.object({
64
- query: z.object({
65
- paging: z.object({
66
- limit: z.number().int().describe("Amount of items to load per page").min(0).max(100).optional().nullable(),
67
- offset: z.number().int().describe(
68
- "Number of items to skip in the display (relevant for all pages after the first)"
69
- ).min(0).optional().nullable()
70
- }).optional(),
71
- filter: z.string().describe("Filter string").optional().nullable(),
72
- sort: z.string().describe("Sort string").optional().nullable()
73
- }).optional()
74
- }).optional()
75
- });
76
- var QueryInventoryResponse = z.object({
77
- inventoryItems: z.array(
78
- z.object({
79
- _id: z.string().describe("Inventory item ID.").optional().nullable(),
80
- externalId: z.string().describe("Deprecated: use productId.").optional().nullable(),
81
- productId: z.string().describe("Product ID.").optional().nullable(),
82
- trackQuantity: z.boolean().describe("Whether quantity is being tracked.").optional().nullable(),
83
- variants: z.array(
84
- z.object({
85
- variantId: z.string().describe("Variant ID.").optional(),
86
- inStock: z.boolean().describe("Whether the product is listed as in stock.").optional().nullable(),
87
- quantity: z.number().int().describe("Quantity currently left in inventory.").min(0).optional().nullable(),
88
- availableForPreorder: z.boolean().describe(
89
- "Whether the variant is available for preorder. When `true`, the variant is out of stock and preorder is enabled on inventory level."
90
- ).optional()
91
- })
92
- ).optional(),
93
- lastUpdated: z.date().describe("Last updated timestamp.").optional().nullable(),
94
- numericId: z.string().regex(/^\d+$/, "Must be a valid UInt64 string").describe(
95
- "Inventory\u2019s unique numeric ID (assigned in ascending order).\nPrimarily for sorting and filtering when crawling all inventories."
96
- ).optional(),
97
- preorderInfo: z.object({
98
- enabled: z.boolean().describe("Whether the item is available for preorder.").optional(),
99
- message: z.string().describe(
100
- "A message the buyer will see when the item is out of stock and preorder is enabled."
101
- ).min(1).max(250).optional().nullable(),
102
- limit: z.number().int().describe(
103
- "Number of products that can be preordered after stock reaches zero."
104
- ).min(0).max(1e5).optional().nullable()
105
- }).describe("Preorder information.").optional()
106
- })
107
- ).optional(),
108
- metadata: z.object({
109
- items: z.number().int().describe("Amount of items to load per page").optional(),
110
- offset: z.number().int().describe(
111
- "Number of items to skip in the display (relevant for all pages after the first)"
112
- ).optional()
113
- }).describe("Display metadata.").optional(),
114
- totalResults: z.number().int().describe("Number of total results.").optional()
115
- });
116
- var UpdateInventoryVariantsRequest = z.object({
117
- productId: z.string().describe("Product ID."),
118
- inventoryItem: z.object({
119
- _id: z.string().describe("Inventory item ID.").optional().nullable(),
120
- externalId: z.string().describe("Deprecated: use productId.").optional().nullable(),
121
- productId: z.string().describe("Product ID.").optional().nullable(),
122
- trackQuantity: z.boolean().describe("Whether quantity is being tracked.").optional().nullable(),
123
- variants: z.array(
124
- z.object({
125
- variantId: z.string().describe("Variant ID.").optional(),
126
- inStock: z.boolean().describe("Whether the product is listed as in stock.").optional().nullable(),
127
- quantity: z.number().int().describe("Quantity currently left in inventory.").min(0).optional().nullable(),
128
- availableForPreorder: z.boolean().describe(
129
- "Whether the variant is available for preorder. When `true`, the variant is out of stock and preorder is enabled on inventory level."
130
- ).optional()
131
- })
132
- ).optional(),
133
- lastUpdated: z.date().describe("Last updated timestamp.").optional().nullable(),
134
- numericId: z.string().regex(/^\d+$/, "Must be a valid UInt64 string").describe(
135
- "Inventory\u2019s unique numeric ID (assigned in ascending order).\nPrimarily for sorting and filtering when crawling all inventories."
136
- ).optional(),
137
- preorderInfo: z.object({
138
- enabled: z.boolean().describe("Whether the item is available for preorder.").optional(),
139
- message: z.string().describe(
140
- "A message the buyer will see when the item is out of stock and preorder is enabled."
141
- ).min(1).max(250).optional().nullable(),
142
- limit: z.number().int().describe(
143
- "Number of products that can be preordered after stock reaches zero."
144
- ).min(0).max(1e5).optional().nullable()
145
- }).describe("Preorder information.").optional()
146
- }).describe("Inventory item to update.")
147
- });
148
- var UpdateInventoryVariantsResponse = z.object({});
149
- var DecrementInventoryRequest = z.object({
150
- decrementData: z.array(
151
- z.intersection(
152
- z.object({
153
- variantId: z.string().describe("Variant ID.").regex(
154
- /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
155
- "Must be a valid GUID"
156
- ).optional(),
157
- decrementBy: z.number().int().describe("Number to decrement inventory by.").min(1).optional(),
158
- preorderRequest: z.boolean().describe(
159
- "Whether the request to decrement the item's inventory was made as part of a purchase that includes preorder items.\nIf true and the item is available for preorder, we allow negative inventory.\nIf false and the item is not available for preorder, we allow regular buy flow (no negative inventory)."
160
- ).optional()
161
- }),
162
- z.xor([
163
- z.object({
164
- inventoryId: z.never().optional(),
165
- externalId: z.never().optional(),
166
- productId: z.never().optional()
167
- }),
168
- z.object({
169
- externalId: z.never().optional(),
170
- productId: z.never().optional(),
171
- inventoryId: z.string().describe("Inventory item ID.").max(36)
172
- }),
173
- z.object({
174
- inventoryId: z.never().optional(),
175
- productId: z.never().optional(),
176
- externalId: z.string().describe("Deprecated: use productId.").max(36)
177
- }),
178
- z.object({
179
- inventoryId: z.never().optional(),
180
- externalId: z.never().optional(),
181
- productId: z.string().describe("Product ID.").max(36)
182
- })
183
- ])
184
- )
185
- ).min(1).max(300)
186
- });
187
- var DecrementInventoryResponse = z.object({});
188
- var IncrementInventoryRequest = z.object({
189
- incrementData: z.array(
190
- z.intersection(
191
- z.object({
192
- variantId: z.string().describe("Variant ID.").regex(
193
- /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
194
- "Must be a valid GUID"
195
- ).optional(),
196
- incrementBy: z.number().int().describe("Number to increment inventory by.").min(1).optional()
197
- }),
198
- z.xor([
199
- z.object({
200
- inventoryId: z.never().optional(),
201
- productId: z.never().optional()
202
- }),
203
- z.object({
204
- productId: z.never().optional(),
205
- inventoryId: z.string().describe("Inventory item ID.").max(36)
206
- }),
207
- z.object({
208
- inventoryId: z.never().optional(),
209
- productId: z.string().describe("Product ID.").max(36)
210
- })
211
- ])
212
- )
213
- ).min(1).max(300)
214
- });
215
- var IncrementInventoryResponse = z.object({});
216
- export {
217
- DecrementInventoryRequest,
218
- DecrementInventoryResponse,
219
- GetInventoryVariantsRequest,
220
- GetInventoryVariantsResponse,
221
- IncrementInventoryRequest,
222
- IncrementInventoryResponse,
223
- QueryInventoryRequest,
224
- QueryInventoryResponse,
225
- UpdateInventoryVariantsRequest,
226
- UpdateInventoryVariantsResponse
227
- };
228
- //# sourceMappingURL=schemas.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/stores-v2-inventory-inventory.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const GetInventoryVariantsRequest = z.object({\n inventoryId: z.string().describe('Inventory item ID.'),\n options: z\n .intersection(\n z.object({ variantIds: z.array(z.string()).optional() }),\n z.xor([\n z.object({\n inventoryId: z.never().optional(),\n externalId: z.never().optional(),\n productId: z.never().optional(),\n }),\n z.object({\n externalId: z.never().optional(),\n productId: z.never().optional(),\n inventoryId: z.string().describe('Inventory item ID.'),\n }),\n z.object({\n inventoryId: z.never().optional(),\n productId: z.never().optional(),\n externalId: z\n .string()\n .describe('Deprecated (use productID instead).'),\n }),\n z.object({\n inventoryId: z.never().optional(),\n externalId: z.never().optional(),\n productId: z.string().describe('Product ID.'),\n }),\n ])\n )\n .optional(),\n});\nexport const GetInventoryVariantsResponse = z.object({\n inventoryItem: z\n .object({\n _id: z.string().describe('Inventory item ID.').optional().nullable(),\n externalId: z\n .string()\n .describe('Deprecated: use productId.')\n .optional()\n .nullable(),\n productId: z.string().describe('Product ID.').optional().nullable(),\n trackQuantity: z\n .boolean()\n .describe('Whether quantity is being tracked.')\n .optional()\n .nullable(),\n variants: z\n .array(\n z.object({\n variantId: z.string().describe('Variant ID.').optional(),\n inStock: z\n .boolean()\n .describe('Whether the product is listed as in stock.')\n .optional()\n .nullable(),\n quantity: z\n .number()\n .int()\n .describe('Quantity currently left in inventory.')\n .min(0)\n .optional()\n .nullable(),\n availableForPreorder: z\n .boolean()\n .describe(\n 'Whether the variant is available for preorder. When `true`, the variant is out of stock and preorder is enabled on inventory level.'\n )\n .optional(),\n })\n )\n .optional(),\n lastUpdated: z\n .date()\n .describe('Last updated timestamp.')\n .optional()\n .nullable(),\n numericId: z\n .string()\n .regex(/^\\d+$/, 'Must be a valid UInt64 string')\n .describe(\n 'Inventory’s unique numeric ID (assigned in ascending order).\\nPrimarily for sorting and filtering when crawling all inventories.'\n )\n .optional(),\n preorderInfo: z\n .object({\n enabled: z\n .boolean()\n .describe('Whether the item is available for preorder.')\n .optional(),\n message: z\n .string()\n .describe(\n 'A message the buyer will see when the item is out of stock and preorder is enabled.'\n )\n .min(1)\n .max(250)\n .optional()\n .nullable(),\n limit: z\n .number()\n .int()\n .describe(\n 'Number of products that can be preordered after stock reaches zero.'\n )\n .min(0)\n .max(100000)\n .optional()\n .nullable(),\n })\n .describe('Preorder information.')\n .optional(),\n })\n .describe('Inventory item.')\n .optional(),\n});\nexport const QueryInventoryRequest = z.object({\n options: z\n .object({\n query: z\n .object({\n paging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Amount of items to load per page')\n .min(0)\n .max(100)\n .optional()\n .nullable(),\n offset: z\n .number()\n .int()\n .describe(\n 'Number of items to skip in the display (relevant for all pages after the first)'\n )\n .min(0)\n .optional()\n .nullable(),\n })\n .optional(),\n filter: z.string().describe('Filter string').optional().nullable(),\n sort: z.string().describe('Sort string').optional().nullable(),\n })\n .optional(),\n })\n .optional(),\n});\nexport const QueryInventoryResponse = z.object({\n inventoryItems: z\n .array(\n z.object({\n _id: z.string().describe('Inventory item ID.').optional().nullable(),\n externalId: z\n .string()\n .describe('Deprecated: use productId.')\n .optional()\n .nullable(),\n productId: z.string().describe('Product ID.').optional().nullable(),\n trackQuantity: z\n .boolean()\n .describe('Whether quantity is being tracked.')\n .optional()\n .nullable(),\n variants: z\n .array(\n z.object({\n variantId: z.string().describe('Variant ID.').optional(),\n inStock: z\n .boolean()\n .describe('Whether the product is listed as in stock.')\n .optional()\n .nullable(),\n quantity: z\n .number()\n .int()\n .describe('Quantity currently left in inventory.')\n .min(0)\n .optional()\n .nullable(),\n availableForPreorder: z\n .boolean()\n .describe(\n 'Whether the variant is available for preorder. When `true`, the variant is out of stock and preorder is enabled on inventory level.'\n )\n .optional(),\n })\n )\n .optional(),\n lastUpdated: z\n .date()\n .describe('Last updated timestamp.')\n .optional()\n .nullable(),\n numericId: z\n .string()\n .regex(/^\\d+$/, 'Must be a valid UInt64 string')\n .describe(\n 'Inventory’s unique numeric ID (assigned in ascending order).\\nPrimarily for sorting and filtering when crawling all inventories.'\n )\n .optional(),\n preorderInfo: z\n .object({\n enabled: z\n .boolean()\n .describe('Whether the item is available for preorder.')\n .optional(),\n message: z\n .string()\n .describe(\n 'A message the buyer will see when the item is out of stock and preorder is enabled.'\n )\n .min(1)\n .max(250)\n .optional()\n .nullable(),\n limit: z\n .number()\n .int()\n .describe(\n 'Number of products that can be preordered after stock reaches zero.'\n )\n .min(0)\n .max(100000)\n .optional()\n .nullable(),\n })\n .describe('Preorder information.')\n .optional(),\n })\n )\n .optional(),\n metadata: z\n .object({\n items: z\n .number()\n .int()\n .describe('Amount of items to load per page')\n .optional(),\n offset: z\n .number()\n .int()\n .describe(\n 'Number of items to skip in the display (relevant for all pages after the first)'\n )\n .optional(),\n })\n .describe('Display metadata.')\n .optional(),\n totalResults: z\n .number()\n .int()\n .describe('Number of total results.')\n .optional(),\n});\nexport const UpdateInventoryVariantsRequest = z.object({\n productId: z.string().describe('Product ID.'),\n inventoryItem: z\n .object({\n _id: z.string().describe('Inventory item ID.').optional().nullable(),\n externalId: z\n .string()\n .describe('Deprecated: use productId.')\n .optional()\n .nullable(),\n productId: z.string().describe('Product ID.').optional().nullable(),\n trackQuantity: z\n .boolean()\n .describe('Whether quantity is being tracked.')\n .optional()\n .nullable(),\n variants: z\n .array(\n z.object({\n variantId: z.string().describe('Variant ID.').optional(),\n inStock: z\n .boolean()\n .describe('Whether the product is listed as in stock.')\n .optional()\n .nullable(),\n quantity: z\n .number()\n .int()\n .describe('Quantity currently left in inventory.')\n .min(0)\n .optional()\n .nullable(),\n availableForPreorder: z\n .boolean()\n .describe(\n 'Whether the variant is available for preorder. When `true`, the variant is out of stock and preorder is enabled on inventory level.'\n )\n .optional(),\n })\n )\n .optional(),\n lastUpdated: z\n .date()\n .describe('Last updated timestamp.')\n .optional()\n .nullable(),\n numericId: z\n .string()\n .regex(/^\\d+$/, 'Must be a valid UInt64 string')\n .describe(\n 'Inventory’s unique numeric ID (assigned in ascending order).\\nPrimarily for sorting and filtering when crawling all inventories.'\n )\n .optional(),\n preorderInfo: z\n .object({\n enabled: z\n .boolean()\n .describe('Whether the item is available for preorder.')\n .optional(),\n message: z\n .string()\n .describe(\n 'A message the buyer will see when the item is out of stock and preorder is enabled.'\n )\n .min(1)\n .max(250)\n .optional()\n .nullable(),\n limit: z\n .number()\n .int()\n .describe(\n 'Number of products that can be preordered after stock reaches zero.'\n )\n .min(0)\n .max(100000)\n .optional()\n .nullable(),\n })\n .describe('Preorder information.')\n .optional(),\n })\n .describe('Inventory item to update.'),\n});\nexport const UpdateInventoryVariantsResponse = z.object({});\nexport const DecrementInventoryRequest = z.object({\n decrementData: z\n .array(\n z.intersection(\n z.object({\n variantId: z\n .string()\n .describe('Variant ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n decrementBy: z\n .number()\n .int()\n .describe('Number to decrement inventory by.')\n .min(1)\n .optional(),\n preorderRequest: z\n .boolean()\n .describe(\n \"Whether the request to decrement the item's inventory was made as part of a purchase that includes preorder items.\\nIf true and the item is available for preorder, we allow negative inventory.\\nIf false and the item is not available for preorder, we allow regular buy flow (no negative inventory).\"\n )\n .optional(),\n }),\n z.xor([\n z.object({\n inventoryId: z.never().optional(),\n externalId: z.never().optional(),\n productId: z.never().optional(),\n }),\n z.object({\n externalId: z.never().optional(),\n productId: z.never().optional(),\n inventoryId: z.string().describe('Inventory item ID.').max(36),\n }),\n z.object({\n inventoryId: z.never().optional(),\n productId: z.never().optional(),\n externalId: z\n .string()\n .describe('Deprecated: use productId.')\n .max(36),\n }),\n z.object({\n inventoryId: z.never().optional(),\n externalId: z.never().optional(),\n productId: z.string().describe('Product ID.').max(36),\n }),\n ])\n )\n )\n .min(1)\n .max(300),\n});\nexport const DecrementInventoryResponse = z.object({});\nexport const IncrementInventoryRequest = z.object({\n incrementData: z\n .array(\n z.intersection(\n z.object({\n variantId: z\n .string()\n .describe('Variant ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n incrementBy: z\n .number()\n .int()\n .describe('Number to increment inventory by.')\n .min(1)\n .optional(),\n }),\n z.xor([\n z.object({\n inventoryId: z.never().optional(),\n productId: z.never().optional(),\n }),\n z.object({\n productId: z.never().optional(),\n inventoryId: z.string().describe('Inventory item ID.').max(36),\n }),\n z.object({\n inventoryId: z.never().optional(),\n productId: z.string().describe('Product ID.').max(36),\n }),\n ])\n )\n )\n .min(1)\n .max(300),\n});\nexport const IncrementInventoryResponse = z.object({});\n"],"mappings":"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","names":[]}
@@ -1,3 +0,0 @@
1
- {
2
- "main": "../build/cjs/schemas.js"
3
- }