@voltade/envoy-sdk 1.1.1 → 1.2.0
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/http-client.d.ts +1 -1
- package/dist/http-client.d.ts.map +1 -1
- package/dist/http-client.js +2 -2
- package/dist/http-client.js.map +1 -1
- package/dist/resources/companies/index.d.ts +112 -0
- package/dist/resources/companies/index.d.ts.map +1 -0
- package/dist/resources/companies/index.js +120 -0
- package/dist/resources/companies/index.js.map +1 -0
- package/dist/resources/companies/types.d.ts +334 -0
- package/dist/resources/companies/types.d.ts.map +1 -0
- package/dist/resources/companies/types.js +56 -0
- package/dist/resources/companies/types.js.map +1 -0
- package/dist/resources/company-members/index.d.ts +64 -0
- package/dist/resources/company-members/index.d.ts.map +1 -0
- package/dist/resources/company-members/index.js +69 -0
- package/dist/resources/company-members/index.js.map +1 -0
- package/dist/resources/company-members/types.d.ts +107 -0
- package/dist/resources/company-members/types.d.ts.map +1 -0
- package/dist/resources/company-members/types.js +19 -0
- package/dist/resources/company-members/types.js.map +1 -0
- package/dist/resources/conversations/types.d.ts +48 -48
- package/dist/resources/inboxes/types.d.ts +6 -6
- package/dist/resources/index.d.ts +2 -0
- package/dist/resources/index.d.ts.map +1 -1
- package/dist/resources/index.js +2 -0
- package/dist/resources/index.js.map +1 -1
- package/dist/resources/orders/index.d.ts +5 -5
- package/dist/resources/orders/index.js +4 -4
- package/dist/resources/orders/types.d.ts +233 -113
- package/dist/resources/orders/types.d.ts.map +1 -1
- package/dist/resources/orders/types.js +6 -3
- package/dist/resources/orders/types.js.map +1 -1
- package/dist/resources/webhooks/types.d.ts +228 -228
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { z } from "zod";
|
|
|
3
3
|
* Zod Schemas for Orders
|
|
4
4
|
*/
|
|
5
5
|
export declare const OrderSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const OrderLineItemSchema: z.ZodObject<{
|
|
7
7
|
part_number: z.ZodOptional<z.ZodString>;
|
|
8
8
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
9
9
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -19,18 +19,8 @@ export declare const OrderMetadataSchema: z.ZodObject<{
|
|
|
19
19
|
description?: string | undefined;
|
|
20
20
|
line_total?: number | undefined;
|
|
21
21
|
}>;
|
|
22
|
-
export declare const
|
|
23
|
-
|
|
24
|
-
contact_id: z.ZodOptional<z.ZodNumber>;
|
|
25
|
-
total_amount: z.ZodOptional<z.ZodNumber>;
|
|
26
|
-
currency_code: z.ZodOptional<z.ZodString>;
|
|
27
|
-
financial_status: z.ZodOptional<z.ZodString>;
|
|
28
|
-
fulfillment_status: z.ZodOptional<z.ZodString>;
|
|
29
|
-
source: z.ZodString;
|
|
30
|
-
source_id: z.ZodString;
|
|
31
|
-
order_url: z.ZodOptional<z.ZodString>;
|
|
32
|
-
notes: z.ZodOptional<z.ZodString>;
|
|
33
|
-
metadata: z.ZodOptional<z.ZodObject<{
|
|
22
|
+
export declare const OrderMetadataSchema: z.ZodObject<{
|
|
23
|
+
line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
34
24
|
part_number: z.ZodOptional<z.ZodString>;
|
|
35
25
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
36
26
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -45,12 +35,70 @@ export declare const UpsertOrderParamsSchema: z.ZodObject<{
|
|
|
45
35
|
quantity?: number | undefined;
|
|
46
36
|
description?: string | undefined;
|
|
47
37
|
line_total?: number | undefined;
|
|
38
|
+
}>, "many">>;
|
|
39
|
+
}, "strip", z.ZodTypeAny, {
|
|
40
|
+
line_items?: {
|
|
41
|
+
part_number?: string | undefined;
|
|
42
|
+
quantity?: number | undefined;
|
|
43
|
+
description?: string | undefined;
|
|
44
|
+
line_total?: number | undefined;
|
|
45
|
+
}[] | undefined;
|
|
46
|
+
}, {
|
|
47
|
+
line_items?: {
|
|
48
|
+
part_number?: string | undefined;
|
|
49
|
+
quantity?: number | undefined;
|
|
50
|
+
description?: string | undefined;
|
|
51
|
+
line_total?: number | undefined;
|
|
52
|
+
}[] | undefined;
|
|
53
|
+
}>;
|
|
54
|
+
export declare const UpsertOrderParamsSchema: z.ZodObject<{
|
|
55
|
+
name: z.ZodOptional<z.ZodString>;
|
|
56
|
+
company_id: z.ZodOptional<z.ZodNumber>;
|
|
57
|
+
total_amount: z.ZodOptional<z.ZodNumber>;
|
|
58
|
+
currency_code: z.ZodOptional<z.ZodString>;
|
|
59
|
+
financial_status: z.ZodOptional<z.ZodString>;
|
|
60
|
+
fulfillment_status: z.ZodOptional<z.ZodString>;
|
|
61
|
+
source: z.ZodString;
|
|
62
|
+
source_id: z.ZodString;
|
|
63
|
+
order_url: z.ZodOptional<z.ZodString>;
|
|
64
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
65
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
66
|
+
line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
67
|
+
part_number: z.ZodOptional<z.ZodString>;
|
|
68
|
+
quantity: z.ZodOptional<z.ZodNumber>;
|
|
69
|
+
description: z.ZodOptional<z.ZodString>;
|
|
70
|
+
line_total: z.ZodOptional<z.ZodNumber>;
|
|
71
|
+
}, "strip", z.ZodTypeAny, {
|
|
72
|
+
part_number?: string | undefined;
|
|
73
|
+
quantity?: number | undefined;
|
|
74
|
+
description?: string | undefined;
|
|
75
|
+
line_total?: number | undefined;
|
|
76
|
+
}, {
|
|
77
|
+
part_number?: string | undefined;
|
|
78
|
+
quantity?: number | undefined;
|
|
79
|
+
description?: string | undefined;
|
|
80
|
+
line_total?: number | undefined;
|
|
81
|
+
}>, "many">>;
|
|
82
|
+
}, "strip", z.ZodTypeAny, {
|
|
83
|
+
line_items?: {
|
|
84
|
+
part_number?: string | undefined;
|
|
85
|
+
quantity?: number | undefined;
|
|
86
|
+
description?: string | undefined;
|
|
87
|
+
line_total?: number | undefined;
|
|
88
|
+
}[] | undefined;
|
|
89
|
+
}, {
|
|
90
|
+
line_items?: {
|
|
91
|
+
part_number?: string | undefined;
|
|
92
|
+
quantity?: number | undefined;
|
|
93
|
+
description?: string | undefined;
|
|
94
|
+
line_total?: number | undefined;
|
|
95
|
+
}[] | undefined;
|
|
48
96
|
}>>;
|
|
49
97
|
}, "strip", z.ZodTypeAny, {
|
|
50
98
|
source_id: string;
|
|
51
99
|
source: string;
|
|
52
100
|
name?: string | undefined;
|
|
53
|
-
|
|
101
|
+
company_id?: number | undefined;
|
|
54
102
|
total_amount?: number | undefined;
|
|
55
103
|
currency_code?: string | undefined;
|
|
56
104
|
financial_status?: string | undefined;
|
|
@@ -58,16 +106,18 @@ export declare const UpsertOrderParamsSchema: z.ZodObject<{
|
|
|
58
106
|
order_url?: string | undefined;
|
|
59
107
|
notes?: string | undefined;
|
|
60
108
|
metadata?: {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
109
|
+
line_items?: {
|
|
110
|
+
part_number?: string | undefined;
|
|
111
|
+
quantity?: number | undefined;
|
|
112
|
+
description?: string | undefined;
|
|
113
|
+
line_total?: number | undefined;
|
|
114
|
+
}[] | undefined;
|
|
65
115
|
} | undefined;
|
|
66
116
|
}, {
|
|
67
117
|
source_id: string;
|
|
68
118
|
source: string;
|
|
69
119
|
name?: string | undefined;
|
|
70
|
-
|
|
120
|
+
company_id?: number | undefined;
|
|
71
121
|
total_amount?: number | undefined;
|
|
72
122
|
currency_code?: string | undefined;
|
|
73
123
|
financial_status?: string | undefined;
|
|
@@ -75,16 +125,18 @@ export declare const UpsertOrderParamsSchema: z.ZodObject<{
|
|
|
75
125
|
order_url?: string | undefined;
|
|
76
126
|
notes?: string | undefined;
|
|
77
127
|
metadata?: {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
128
|
+
line_items?: {
|
|
129
|
+
part_number?: string | undefined;
|
|
130
|
+
quantity?: number | undefined;
|
|
131
|
+
description?: string | undefined;
|
|
132
|
+
line_total?: number | undefined;
|
|
133
|
+
}[] | undefined;
|
|
82
134
|
} | undefined;
|
|
83
135
|
}>;
|
|
84
136
|
export declare const UpsertOrderRequestSchema: z.ZodObject<{
|
|
85
137
|
order: z.ZodObject<{
|
|
86
138
|
name: z.ZodOptional<z.ZodString>;
|
|
87
|
-
|
|
139
|
+
company_id: z.ZodOptional<z.ZodNumber>;
|
|
88
140
|
total_amount: z.ZodOptional<z.ZodNumber>;
|
|
89
141
|
currency_code: z.ZodOptional<z.ZodString>;
|
|
90
142
|
financial_status: z.ZodOptional<z.ZodString>;
|
|
@@ -94,26 +146,42 @@ export declare const UpsertOrderRequestSchema: z.ZodObject<{
|
|
|
94
146
|
order_url: z.ZodOptional<z.ZodString>;
|
|
95
147
|
notes: z.ZodOptional<z.ZodString>;
|
|
96
148
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
149
|
+
line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
150
|
+
part_number: z.ZodOptional<z.ZodString>;
|
|
151
|
+
quantity: z.ZodOptional<z.ZodNumber>;
|
|
152
|
+
description: z.ZodOptional<z.ZodString>;
|
|
153
|
+
line_total: z.ZodOptional<z.ZodNumber>;
|
|
154
|
+
}, "strip", z.ZodTypeAny, {
|
|
155
|
+
part_number?: string | undefined;
|
|
156
|
+
quantity?: number | undefined;
|
|
157
|
+
description?: string | undefined;
|
|
158
|
+
line_total?: number | undefined;
|
|
159
|
+
}, {
|
|
160
|
+
part_number?: string | undefined;
|
|
161
|
+
quantity?: number | undefined;
|
|
162
|
+
description?: string | undefined;
|
|
163
|
+
line_total?: number | undefined;
|
|
164
|
+
}>, "many">>;
|
|
101
165
|
}, "strip", z.ZodTypeAny, {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
166
|
+
line_items?: {
|
|
167
|
+
part_number?: string | undefined;
|
|
168
|
+
quantity?: number | undefined;
|
|
169
|
+
description?: string | undefined;
|
|
170
|
+
line_total?: number | undefined;
|
|
171
|
+
}[] | undefined;
|
|
106
172
|
}, {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
173
|
+
line_items?: {
|
|
174
|
+
part_number?: string | undefined;
|
|
175
|
+
quantity?: number | undefined;
|
|
176
|
+
description?: string | undefined;
|
|
177
|
+
line_total?: number | undefined;
|
|
178
|
+
}[] | undefined;
|
|
111
179
|
}>>;
|
|
112
180
|
}, "strip", z.ZodTypeAny, {
|
|
113
181
|
source_id: string;
|
|
114
182
|
source: string;
|
|
115
183
|
name?: string | undefined;
|
|
116
|
-
|
|
184
|
+
company_id?: number | undefined;
|
|
117
185
|
total_amount?: number | undefined;
|
|
118
186
|
currency_code?: string | undefined;
|
|
119
187
|
financial_status?: string | undefined;
|
|
@@ -121,16 +189,18 @@ export declare const UpsertOrderRequestSchema: z.ZodObject<{
|
|
|
121
189
|
order_url?: string | undefined;
|
|
122
190
|
notes?: string | undefined;
|
|
123
191
|
metadata?: {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
192
|
+
line_items?: {
|
|
193
|
+
part_number?: string | undefined;
|
|
194
|
+
quantity?: number | undefined;
|
|
195
|
+
description?: string | undefined;
|
|
196
|
+
line_total?: number | undefined;
|
|
197
|
+
}[] | undefined;
|
|
128
198
|
} | undefined;
|
|
129
199
|
}, {
|
|
130
200
|
source_id: string;
|
|
131
201
|
source: string;
|
|
132
202
|
name?: string | undefined;
|
|
133
|
-
|
|
203
|
+
company_id?: number | undefined;
|
|
134
204
|
total_amount?: number | undefined;
|
|
135
205
|
currency_code?: string | undefined;
|
|
136
206
|
financial_status?: string | undefined;
|
|
@@ -138,10 +208,12 @@ export declare const UpsertOrderRequestSchema: z.ZodObject<{
|
|
|
138
208
|
order_url?: string | undefined;
|
|
139
209
|
notes?: string | undefined;
|
|
140
210
|
metadata?: {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
211
|
+
line_items?: {
|
|
212
|
+
part_number?: string | undefined;
|
|
213
|
+
quantity?: number | undefined;
|
|
214
|
+
description?: string | undefined;
|
|
215
|
+
line_total?: number | undefined;
|
|
216
|
+
}[] | undefined;
|
|
145
217
|
} | undefined;
|
|
146
218
|
}>;
|
|
147
219
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -149,7 +221,7 @@ export declare const UpsertOrderRequestSchema: z.ZodObject<{
|
|
|
149
221
|
source_id: string;
|
|
150
222
|
source: string;
|
|
151
223
|
name?: string | undefined;
|
|
152
|
-
|
|
224
|
+
company_id?: number | undefined;
|
|
153
225
|
total_amount?: number | undefined;
|
|
154
226
|
currency_code?: string | undefined;
|
|
155
227
|
financial_status?: string | undefined;
|
|
@@ -157,10 +229,12 @@ export declare const UpsertOrderRequestSchema: z.ZodObject<{
|
|
|
157
229
|
order_url?: string | undefined;
|
|
158
230
|
notes?: string | undefined;
|
|
159
231
|
metadata?: {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
232
|
+
line_items?: {
|
|
233
|
+
part_number?: string | undefined;
|
|
234
|
+
quantity?: number | undefined;
|
|
235
|
+
description?: string | undefined;
|
|
236
|
+
line_total?: number | undefined;
|
|
237
|
+
}[] | undefined;
|
|
164
238
|
} | undefined;
|
|
165
239
|
};
|
|
166
240
|
}, {
|
|
@@ -168,7 +242,7 @@ export declare const UpsertOrderRequestSchema: z.ZodObject<{
|
|
|
168
242
|
source_id: string;
|
|
169
243
|
source: string;
|
|
170
244
|
name?: string | undefined;
|
|
171
|
-
|
|
245
|
+
company_id?: number | undefined;
|
|
172
246
|
total_amount?: number | undefined;
|
|
173
247
|
currency_code?: string | undefined;
|
|
174
248
|
financial_status?: string | undefined;
|
|
@@ -176,17 +250,19 @@ export declare const UpsertOrderRequestSchema: z.ZodObject<{
|
|
|
176
250
|
order_url?: string | undefined;
|
|
177
251
|
notes?: string | undefined;
|
|
178
252
|
metadata?: {
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
253
|
+
line_items?: {
|
|
254
|
+
part_number?: string | undefined;
|
|
255
|
+
quantity?: number | undefined;
|
|
256
|
+
description?: string | undefined;
|
|
257
|
+
line_total?: number | undefined;
|
|
258
|
+
}[] | undefined;
|
|
183
259
|
} | undefined;
|
|
184
260
|
};
|
|
185
261
|
}>;
|
|
186
262
|
export declare const UpsertOrderResponsePayloadSchema: z.ZodObject<{
|
|
187
263
|
id: z.ZodNumber;
|
|
188
264
|
name: z.ZodOptional<z.ZodString>;
|
|
189
|
-
|
|
265
|
+
company_id: z.ZodOptional<z.ZodNumber>;
|
|
190
266
|
contact_name: z.ZodOptional<z.ZodString>;
|
|
191
267
|
total_amount: z.ZodOptional<z.ZodNumber>;
|
|
192
268
|
currency_code: z.ZodOptional<z.ZodString>;
|
|
@@ -197,20 +273,36 @@ export declare const UpsertOrderResponsePayloadSchema: z.ZodObject<{
|
|
|
197
273
|
order_url: z.ZodOptional<z.ZodString>;
|
|
198
274
|
notes: z.ZodOptional<z.ZodString>;
|
|
199
275
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
276
|
+
line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
277
|
+
part_number: z.ZodOptional<z.ZodString>;
|
|
278
|
+
quantity: z.ZodOptional<z.ZodNumber>;
|
|
279
|
+
description: z.ZodOptional<z.ZodString>;
|
|
280
|
+
line_total: z.ZodOptional<z.ZodNumber>;
|
|
281
|
+
}, "strip", z.ZodTypeAny, {
|
|
282
|
+
part_number?: string | undefined;
|
|
283
|
+
quantity?: number | undefined;
|
|
284
|
+
description?: string | undefined;
|
|
285
|
+
line_total?: number | undefined;
|
|
286
|
+
}, {
|
|
287
|
+
part_number?: string | undefined;
|
|
288
|
+
quantity?: number | undefined;
|
|
289
|
+
description?: string | undefined;
|
|
290
|
+
line_total?: number | undefined;
|
|
291
|
+
}>, "many">>;
|
|
204
292
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
293
|
+
line_items?: {
|
|
294
|
+
part_number?: string | undefined;
|
|
295
|
+
quantity?: number | undefined;
|
|
296
|
+
description?: string | undefined;
|
|
297
|
+
line_total?: number | undefined;
|
|
298
|
+
}[] | undefined;
|
|
209
299
|
}, {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
300
|
+
line_items?: {
|
|
301
|
+
part_number?: string | undefined;
|
|
302
|
+
quantity?: number | undefined;
|
|
303
|
+
description?: string | undefined;
|
|
304
|
+
line_total?: number | undefined;
|
|
305
|
+
}[] | undefined;
|
|
214
306
|
}>>;
|
|
215
307
|
created_at: z.ZodString;
|
|
216
308
|
updated_at: z.ZodString;
|
|
@@ -221,7 +313,7 @@ export declare const UpsertOrderResponsePayloadSchema: z.ZodObject<{
|
|
|
221
313
|
updated_at: string;
|
|
222
314
|
source: string;
|
|
223
315
|
name?: string | undefined;
|
|
224
|
-
|
|
316
|
+
company_id?: number | undefined;
|
|
225
317
|
total_amount?: number | undefined;
|
|
226
318
|
currency_code?: string | undefined;
|
|
227
319
|
financial_status?: string | undefined;
|
|
@@ -229,10 +321,12 @@ export declare const UpsertOrderResponsePayloadSchema: z.ZodObject<{
|
|
|
229
321
|
order_url?: string | undefined;
|
|
230
322
|
notes?: string | undefined;
|
|
231
323
|
metadata?: {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
324
|
+
line_items?: {
|
|
325
|
+
part_number?: string | undefined;
|
|
326
|
+
quantity?: number | undefined;
|
|
327
|
+
description?: string | undefined;
|
|
328
|
+
line_total?: number | undefined;
|
|
329
|
+
}[] | undefined;
|
|
236
330
|
} | undefined;
|
|
237
331
|
contact_name?: string | undefined;
|
|
238
332
|
}, {
|
|
@@ -242,7 +336,7 @@ export declare const UpsertOrderResponsePayloadSchema: z.ZodObject<{
|
|
|
242
336
|
updated_at: string;
|
|
243
337
|
source: string;
|
|
244
338
|
name?: string | undefined;
|
|
245
|
-
|
|
339
|
+
company_id?: number | undefined;
|
|
246
340
|
total_amount?: number | undefined;
|
|
247
341
|
currency_code?: string | undefined;
|
|
248
342
|
financial_status?: string | undefined;
|
|
@@ -250,10 +344,12 @@ export declare const UpsertOrderResponsePayloadSchema: z.ZodObject<{
|
|
|
250
344
|
order_url?: string | undefined;
|
|
251
345
|
notes?: string | undefined;
|
|
252
346
|
metadata?: {
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
347
|
+
line_items?: {
|
|
348
|
+
part_number?: string | undefined;
|
|
349
|
+
quantity?: number | undefined;
|
|
350
|
+
description?: string | undefined;
|
|
351
|
+
line_total?: number | undefined;
|
|
352
|
+
}[] | undefined;
|
|
257
353
|
} | undefined;
|
|
258
354
|
contact_name?: string | undefined;
|
|
259
355
|
}>;
|
|
@@ -261,7 +357,7 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
261
357
|
payload: z.ZodObject<{
|
|
262
358
|
id: z.ZodNumber;
|
|
263
359
|
name: z.ZodOptional<z.ZodString>;
|
|
264
|
-
|
|
360
|
+
company_id: z.ZodOptional<z.ZodNumber>;
|
|
265
361
|
contact_name: z.ZodOptional<z.ZodString>;
|
|
266
362
|
total_amount: z.ZodOptional<z.ZodNumber>;
|
|
267
363
|
currency_code: z.ZodOptional<z.ZodString>;
|
|
@@ -272,20 +368,36 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
272
368
|
order_url: z.ZodOptional<z.ZodString>;
|
|
273
369
|
notes: z.ZodOptional<z.ZodString>;
|
|
274
370
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
371
|
+
line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
372
|
+
part_number: z.ZodOptional<z.ZodString>;
|
|
373
|
+
quantity: z.ZodOptional<z.ZodNumber>;
|
|
374
|
+
description: z.ZodOptional<z.ZodString>;
|
|
375
|
+
line_total: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
}, "strip", z.ZodTypeAny, {
|
|
377
|
+
part_number?: string | undefined;
|
|
378
|
+
quantity?: number | undefined;
|
|
379
|
+
description?: string | undefined;
|
|
380
|
+
line_total?: number | undefined;
|
|
381
|
+
}, {
|
|
382
|
+
part_number?: string | undefined;
|
|
383
|
+
quantity?: number | undefined;
|
|
384
|
+
description?: string | undefined;
|
|
385
|
+
line_total?: number | undefined;
|
|
386
|
+
}>, "many">>;
|
|
279
387
|
}, "strip", z.ZodTypeAny, {
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
388
|
+
line_items?: {
|
|
389
|
+
part_number?: string | undefined;
|
|
390
|
+
quantity?: number | undefined;
|
|
391
|
+
description?: string | undefined;
|
|
392
|
+
line_total?: number | undefined;
|
|
393
|
+
}[] | undefined;
|
|
284
394
|
}, {
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
395
|
+
line_items?: {
|
|
396
|
+
part_number?: string | undefined;
|
|
397
|
+
quantity?: number | undefined;
|
|
398
|
+
description?: string | undefined;
|
|
399
|
+
line_total?: number | undefined;
|
|
400
|
+
}[] | undefined;
|
|
289
401
|
}>>;
|
|
290
402
|
created_at: z.ZodString;
|
|
291
403
|
updated_at: z.ZodString;
|
|
@@ -296,7 +408,7 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
296
408
|
updated_at: string;
|
|
297
409
|
source: string;
|
|
298
410
|
name?: string | undefined;
|
|
299
|
-
|
|
411
|
+
company_id?: number | undefined;
|
|
300
412
|
total_amount?: number | undefined;
|
|
301
413
|
currency_code?: string | undefined;
|
|
302
414
|
financial_status?: string | undefined;
|
|
@@ -304,10 +416,12 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
304
416
|
order_url?: string | undefined;
|
|
305
417
|
notes?: string | undefined;
|
|
306
418
|
metadata?: {
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
419
|
+
line_items?: {
|
|
420
|
+
part_number?: string | undefined;
|
|
421
|
+
quantity?: number | undefined;
|
|
422
|
+
description?: string | undefined;
|
|
423
|
+
line_total?: number | undefined;
|
|
424
|
+
}[] | undefined;
|
|
311
425
|
} | undefined;
|
|
312
426
|
contact_name?: string | undefined;
|
|
313
427
|
}, {
|
|
@@ -317,7 +431,7 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
317
431
|
updated_at: string;
|
|
318
432
|
source: string;
|
|
319
433
|
name?: string | undefined;
|
|
320
|
-
|
|
434
|
+
company_id?: number | undefined;
|
|
321
435
|
total_amount?: number | undefined;
|
|
322
436
|
currency_code?: string | undefined;
|
|
323
437
|
financial_status?: string | undefined;
|
|
@@ -325,10 +439,12 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
325
439
|
order_url?: string | undefined;
|
|
326
440
|
notes?: string | undefined;
|
|
327
441
|
metadata?: {
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
442
|
+
line_items?: {
|
|
443
|
+
part_number?: string | undefined;
|
|
444
|
+
quantity?: number | undefined;
|
|
445
|
+
description?: string | undefined;
|
|
446
|
+
line_total?: number | undefined;
|
|
447
|
+
}[] | undefined;
|
|
332
448
|
} | undefined;
|
|
333
449
|
contact_name?: string | undefined;
|
|
334
450
|
}>;
|
|
@@ -340,7 +456,7 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
340
456
|
updated_at: string;
|
|
341
457
|
source: string;
|
|
342
458
|
name?: string | undefined;
|
|
343
|
-
|
|
459
|
+
company_id?: number | undefined;
|
|
344
460
|
total_amount?: number | undefined;
|
|
345
461
|
currency_code?: string | undefined;
|
|
346
462
|
financial_status?: string | undefined;
|
|
@@ -348,10 +464,12 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
348
464
|
order_url?: string | undefined;
|
|
349
465
|
notes?: string | undefined;
|
|
350
466
|
metadata?: {
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
467
|
+
line_items?: {
|
|
468
|
+
part_number?: string | undefined;
|
|
469
|
+
quantity?: number | undefined;
|
|
470
|
+
description?: string | undefined;
|
|
471
|
+
line_total?: number | undefined;
|
|
472
|
+
}[] | undefined;
|
|
355
473
|
} | undefined;
|
|
356
474
|
contact_name?: string | undefined;
|
|
357
475
|
};
|
|
@@ -363,7 +481,7 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
363
481
|
updated_at: string;
|
|
364
482
|
source: string;
|
|
365
483
|
name?: string | undefined;
|
|
366
|
-
|
|
484
|
+
company_id?: number | undefined;
|
|
367
485
|
total_amount?: number | undefined;
|
|
368
486
|
currency_code?: string | undefined;
|
|
369
487
|
financial_status?: string | undefined;
|
|
@@ -371,10 +489,12 @@ export declare const UpsertOrderResponseSchema: z.ZodObject<{
|
|
|
371
489
|
order_url?: string | undefined;
|
|
372
490
|
notes?: string | undefined;
|
|
373
491
|
metadata?: {
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
492
|
+
line_items?: {
|
|
493
|
+
part_number?: string | undefined;
|
|
494
|
+
quantity?: number | undefined;
|
|
495
|
+
description?: string | undefined;
|
|
496
|
+
line_total?: number | undefined;
|
|
497
|
+
}[] | undefined;
|
|
378
498
|
} | undefined;
|
|
379
499
|
contact_name?: string | undefined;
|
|
380
500
|
};
|
|
@@ -395,9 +515,9 @@ export declare const ListOrdersParamsSchema: z.ZodObject<{
|
|
|
395
515
|
until?: string | undefined;
|
|
396
516
|
}, {
|
|
397
517
|
sort?: string | undefined;
|
|
398
|
-
payload?: Record<string, unknown>[] | undefined;
|
|
399
518
|
page?: number | undefined;
|
|
400
519
|
per_page?: number | undefined;
|
|
520
|
+
payload?: Record<string, unknown>[] | undefined;
|
|
401
521
|
since?: string | undefined;
|
|
402
522
|
until?: string | undefined;
|
|
403
523
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../resources/orders/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AAGH,eAAO,MAAM,WAAW,wCAAwB,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;EAK9B,CAAC;AAGH,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../resources/orders/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AAGH,eAAO,MAAM,WAAW,wCAAwB,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;EAK9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE9B,CAAC;AAGH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYlC,CAAC;AAGH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEnC,CAAC;AAGH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgB3C,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAC;AAGH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;EAOjC,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAGH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGnC,CAAC;AAEH;;GAEG;AAEH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAChD,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,gCAAgC,CACxC,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC"}
|
|
@@ -4,16 +4,19 @@ import { z } from "zod";
|
|
|
4
4
|
*/
|
|
5
5
|
// Order schema - minimal structure as per API docs
|
|
6
6
|
export const OrderSchema = z.record(z.unknown());
|
|
7
|
-
export const
|
|
7
|
+
export const OrderLineItemSchema = z.object({
|
|
8
8
|
part_number: z.string().optional(),
|
|
9
9
|
quantity: z.number().optional(),
|
|
10
10
|
description: z.string().optional(),
|
|
11
11
|
line_total: z.number().optional(),
|
|
12
12
|
});
|
|
13
|
+
export const OrderMetadataSchema = z.object({
|
|
14
|
+
line_items: z.array(OrderLineItemSchema).optional(),
|
|
15
|
+
});
|
|
13
16
|
// Upsert order parameters schema
|
|
14
17
|
export const UpsertOrderParamsSchema = z.object({
|
|
15
18
|
name: z.string().optional(),
|
|
16
|
-
|
|
19
|
+
company_id: z.number().optional(),
|
|
17
20
|
total_amount: z.number().optional(),
|
|
18
21
|
currency_code: z.string().optional(),
|
|
19
22
|
financial_status: z.string().optional(),
|
|
@@ -32,7 +35,7 @@ export const UpsertOrderRequestSchema = z.object({
|
|
|
32
35
|
export const UpsertOrderResponsePayloadSchema = z.object({
|
|
33
36
|
id: z.number(),
|
|
34
37
|
name: z.string().optional(),
|
|
35
|
-
|
|
38
|
+
company_id: z.number().optional(),
|
|
36
39
|
contact_name: z.string().optional(),
|
|
37
40
|
total_amount: z.number().optional(),
|
|
38
41
|
currency_code: z.string().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../resources/orders/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../resources/orders/types.ts"],"names":[],"mappings":"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"}
|