@firfi/voila-sdk 0.1.2 → 0.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/README.md +5 -3
- package/dist/src/domain/schemas/index.d.ts +1 -0
- package/dist/src/domain/schemas/index.d.ts.map +1 -1
- package/dist/src/domain/schemas/index.js +1 -0
- package/dist/src/domain/schemas/index.js.map +1 -1
- package/dist/src/domain/schemas/order-details.d.ts +2623 -0
- package/dist/src/domain/schemas/order-details.d.ts.map +1 -0
- package/dist/src/domain/schemas/order-details.js +148 -0
- package/dist/src/domain/schemas/order-details.js.map +1 -0
- package/dist/src/domain/schemas/order-history.d.ts +237 -60
- package/dist/src/domain/schemas/order-history.d.ts.map +1 -1
- package/dist/src/domain/schemas/order-history.js +17 -12
- package/dist/src/domain/schemas/order-history.js.map +1 -1
- package/dist/src/domain/schemas/slot.d.ts +4 -4
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/voila/order-details.d.ts +22 -0
- package/dist/src/voila/order-details.d.ts.map +1 -0
- package/dist/src/voila/order-details.js +267 -0
- package/dist/src/voila/order-details.js.map +1 -0
- package/dist/src/voila/order-history.d.ts +9 -5
- package/dist/src/voila/order-history.d.ts.map +1 -1
- package/dist/src/voila/order-history.js +23 -5
- package/dist/src/voila/order-history.js.map +1 -1
- package/dist/src/voila/order-urls.d.ts +10 -0
- package/dist/src/voila/order-urls.d.ts.map +1 -1
- package/dist/src/voila/order-urls.js +12 -1
- package/dist/src/voila/order-urls.js.map +1 -1
- package/package.json +1 -1
|
@@ -11,7 +11,19 @@ export declare const CompletedOrdersInputSchema: Schema.Struct<{
|
|
|
11
11
|
}>;
|
|
12
12
|
}>;
|
|
13
13
|
export type CompletedOrdersInput = Schema.Schema.Type<typeof CompletedOrdersInputSchema>;
|
|
14
|
+
export declare const RawCompletedOrdersGraphqlErrorSchema: Schema.Schema<{
|
|
15
|
+
readonly message: string;
|
|
16
|
+
} & {
|
|
17
|
+
readonly [x: string]: unknown;
|
|
18
|
+
}, {
|
|
19
|
+
readonly message: string;
|
|
20
|
+
} & {
|
|
21
|
+
readonly [x: string]: unknown;
|
|
22
|
+
}, never>;
|
|
23
|
+
export type RawCompletedOrdersGraphqlError = Schema.Schema.Type<typeof RawCompletedOrdersGraphqlErrorSchema>;
|
|
14
24
|
export declare const RawInternalCompletedOrderSlotSchema: Schema.Schema<{
|
|
25
|
+
readonly type: string;
|
|
26
|
+
readonly shippingGroupType?: string;
|
|
15
27
|
readonly __typename: "InternalOrderSlot";
|
|
16
28
|
readonly carrier?: ({
|
|
17
29
|
readonly carrierId: string;
|
|
@@ -19,13 +31,13 @@ export declare const RawInternalCompletedOrderSlotSchema: Schema.Schema<{
|
|
|
19
31
|
readonly [x: string]: unknown;
|
|
20
32
|
}) | null;
|
|
21
33
|
readonly deliveryDestination: {
|
|
34
|
+
readonly name: string;
|
|
35
|
+
readonly deliveryMethod: string;
|
|
22
36
|
readonly address: {
|
|
23
37
|
readonly timeZone: string;
|
|
24
38
|
} & {
|
|
25
39
|
readonly [x: string]: unknown;
|
|
26
40
|
};
|
|
27
|
-
readonly deliveryMethod: string;
|
|
28
|
-
readonly name: string;
|
|
29
41
|
} & {
|
|
30
42
|
readonly [x: string]: unknown;
|
|
31
43
|
};
|
|
@@ -35,27 +47,26 @@ export declare const RawInternalCompletedOrderSlotSchema: Schema.Schema<{
|
|
|
35
47
|
} & {
|
|
36
48
|
readonly [x: string]: unknown;
|
|
37
49
|
}) | null;
|
|
38
|
-
readonly shippingGroupType?: string;
|
|
39
50
|
readonly start: string;
|
|
40
|
-
readonly type: string;
|
|
41
51
|
} & {
|
|
42
52
|
readonly [x: string]: unknown;
|
|
43
53
|
}, {
|
|
54
|
+
readonly type: string;
|
|
44
55
|
readonly __typename: "InternalOrderSlot";
|
|
45
56
|
readonly deliveryDestination: {
|
|
57
|
+
readonly name: string;
|
|
58
|
+
readonly deliveryMethod: string;
|
|
46
59
|
readonly address: {
|
|
47
60
|
readonly timeZone: string;
|
|
48
61
|
} & {
|
|
49
62
|
readonly [x: string]: unknown;
|
|
50
63
|
};
|
|
51
|
-
readonly deliveryMethod: string;
|
|
52
|
-
readonly name: string;
|
|
53
64
|
} & {
|
|
54
65
|
readonly [x: string]: unknown;
|
|
55
66
|
};
|
|
56
67
|
readonly end: string;
|
|
57
68
|
readonly start: string;
|
|
58
|
-
readonly
|
|
69
|
+
readonly shippingGroupType?: string;
|
|
59
70
|
readonly carrier?: ({
|
|
60
71
|
readonly carrierId: string;
|
|
61
72
|
} & {
|
|
@@ -66,23 +77,22 @@ export declare const RawInternalCompletedOrderSlotSchema: Schema.Schema<{
|
|
|
66
77
|
} & {
|
|
67
78
|
readonly [x: string]: unknown;
|
|
68
79
|
}) | null;
|
|
69
|
-
readonly shippingGroupType?: string;
|
|
70
80
|
} & {
|
|
71
81
|
readonly [x: string]: unknown;
|
|
72
82
|
}, never>;
|
|
73
83
|
export type RawInternalCompletedOrderSlot = Schema.Schema.Type<typeof RawInternalCompletedOrderSlotSchema>;
|
|
74
84
|
export declare const RawImportedCompletedOrderSlotSchema: Schema.Schema<{
|
|
75
|
-
readonly __typename: "ImportedOrderSlot";
|
|
76
|
-
readonly timeZone: string;
|
|
77
85
|
readonly name: string;
|
|
86
|
+
readonly timeZone: string;
|
|
87
|
+
readonly __typename: "ImportedOrderSlot";
|
|
78
88
|
readonly end: string;
|
|
79
89
|
readonly start: string;
|
|
80
90
|
} & {
|
|
81
91
|
readonly [x: string]: unknown;
|
|
82
92
|
}, {
|
|
83
|
-
readonly __typename: "ImportedOrderSlot";
|
|
84
|
-
readonly timeZone: string;
|
|
85
93
|
readonly name: string;
|
|
94
|
+
readonly timeZone: string;
|
|
95
|
+
readonly __typename: "ImportedOrderSlot";
|
|
86
96
|
readonly end: string;
|
|
87
97
|
readonly start: string;
|
|
88
98
|
} & {
|
|
@@ -90,6 +100,8 @@ export declare const RawImportedCompletedOrderSlotSchema: Schema.Schema<{
|
|
|
90
100
|
}, never>;
|
|
91
101
|
export type RawImportedCompletedOrderSlot = Schema.Schema.Type<typeof RawImportedCompletedOrderSlotSchema>;
|
|
92
102
|
export declare const RawCompletedOrderSlotSchema: Schema.Union<[Schema.Schema<{
|
|
103
|
+
readonly type: string;
|
|
104
|
+
readonly shippingGroupType?: string;
|
|
93
105
|
readonly __typename: "InternalOrderSlot";
|
|
94
106
|
readonly carrier?: ({
|
|
95
107
|
readonly carrierId: string;
|
|
@@ -97,13 +109,13 @@ export declare const RawCompletedOrderSlotSchema: Schema.Union<[Schema.Schema<{
|
|
|
97
109
|
readonly [x: string]: unknown;
|
|
98
110
|
}) | null;
|
|
99
111
|
readonly deliveryDestination: {
|
|
112
|
+
readonly name: string;
|
|
113
|
+
readonly deliveryMethod: string;
|
|
100
114
|
readonly address: {
|
|
101
115
|
readonly timeZone: string;
|
|
102
116
|
} & {
|
|
103
117
|
readonly [x: string]: unknown;
|
|
104
118
|
};
|
|
105
|
-
readonly deliveryMethod: string;
|
|
106
|
-
readonly name: string;
|
|
107
119
|
} & {
|
|
108
120
|
readonly [x: string]: unknown;
|
|
109
121
|
};
|
|
@@ -113,27 +125,26 @@ export declare const RawCompletedOrderSlotSchema: Schema.Union<[Schema.Schema<{
|
|
|
113
125
|
} & {
|
|
114
126
|
readonly [x: string]: unknown;
|
|
115
127
|
}) | null;
|
|
116
|
-
readonly shippingGroupType?: string;
|
|
117
128
|
readonly start: string;
|
|
118
|
-
readonly type: string;
|
|
119
129
|
} & {
|
|
120
130
|
readonly [x: string]: unknown;
|
|
121
131
|
}, {
|
|
132
|
+
readonly type: string;
|
|
122
133
|
readonly __typename: "InternalOrderSlot";
|
|
123
134
|
readonly deliveryDestination: {
|
|
135
|
+
readonly name: string;
|
|
136
|
+
readonly deliveryMethod: string;
|
|
124
137
|
readonly address: {
|
|
125
138
|
readonly timeZone: string;
|
|
126
139
|
} & {
|
|
127
140
|
readonly [x: string]: unknown;
|
|
128
141
|
};
|
|
129
|
-
readonly deliveryMethod: string;
|
|
130
|
-
readonly name: string;
|
|
131
142
|
} & {
|
|
132
143
|
readonly [x: string]: unknown;
|
|
133
144
|
};
|
|
134
145
|
readonly end: string;
|
|
135
146
|
readonly start: string;
|
|
136
|
-
readonly
|
|
147
|
+
readonly shippingGroupType?: string;
|
|
137
148
|
readonly carrier?: ({
|
|
138
149
|
readonly carrierId: string;
|
|
139
150
|
} & {
|
|
@@ -144,21 +155,20 @@ export declare const RawCompletedOrderSlotSchema: Schema.Union<[Schema.Schema<{
|
|
|
144
155
|
} & {
|
|
145
156
|
readonly [x: string]: unknown;
|
|
146
157
|
}) | null;
|
|
147
|
-
readonly shippingGroupType?: string;
|
|
148
158
|
} & {
|
|
149
159
|
readonly [x: string]: unknown;
|
|
150
160
|
}, never>, Schema.Schema<{
|
|
151
|
-
readonly __typename: "ImportedOrderSlot";
|
|
152
|
-
readonly timeZone: string;
|
|
153
161
|
readonly name: string;
|
|
162
|
+
readonly timeZone: string;
|
|
163
|
+
readonly __typename: "ImportedOrderSlot";
|
|
154
164
|
readonly end: string;
|
|
155
165
|
readonly start: string;
|
|
156
166
|
} & {
|
|
157
167
|
readonly [x: string]: unknown;
|
|
158
168
|
}, {
|
|
159
|
-
readonly __typename: "ImportedOrderSlot";
|
|
160
|
-
readonly timeZone: string;
|
|
161
169
|
readonly name: string;
|
|
170
|
+
readonly timeZone: string;
|
|
171
|
+
readonly __typename: "ImportedOrderSlot";
|
|
162
172
|
readonly end: string;
|
|
163
173
|
readonly start: string;
|
|
164
174
|
} & {
|
|
@@ -166,6 +176,7 @@ export declare const RawCompletedOrderSlotSchema: Schema.Union<[Schema.Schema<{
|
|
|
166
176
|
}, never>]>;
|
|
167
177
|
export type RawCompletedOrderSlot = Schema.Schema.Type<typeof RawCompletedOrderSlotSchema>;
|
|
168
178
|
export declare const RawCompletedOrderNodeSchema: Schema.Schema<{
|
|
179
|
+
readonly status: string;
|
|
169
180
|
readonly orderId: string;
|
|
170
181
|
readonly prices: {
|
|
171
182
|
readonly total: {
|
|
@@ -187,6 +198,8 @@ export declare const RawCompletedOrderNodeSchema: Schema.Schema<{
|
|
|
187
198
|
readonly [x: string]: unknown;
|
|
188
199
|
};
|
|
189
200
|
readonly slot: ({
|
|
201
|
+
readonly type: string;
|
|
202
|
+
readonly shippingGroupType?: string;
|
|
190
203
|
readonly __typename: "InternalOrderSlot";
|
|
191
204
|
readonly carrier?: ({
|
|
192
205
|
readonly carrierId: string;
|
|
@@ -194,13 +207,13 @@ export declare const RawCompletedOrderNodeSchema: Schema.Schema<{
|
|
|
194
207
|
readonly [x: string]: unknown;
|
|
195
208
|
}) | null;
|
|
196
209
|
readonly deliveryDestination: {
|
|
210
|
+
readonly name: string;
|
|
211
|
+
readonly deliveryMethod: string;
|
|
197
212
|
readonly address: {
|
|
198
213
|
readonly timeZone: string;
|
|
199
214
|
} & {
|
|
200
215
|
readonly [x: string]: unknown;
|
|
201
216
|
};
|
|
202
|
-
readonly deliveryMethod: string;
|
|
203
|
-
readonly name: string;
|
|
204
217
|
} & {
|
|
205
218
|
readonly [x: string]: unknown;
|
|
206
219
|
};
|
|
@@ -210,24 +223,22 @@ export declare const RawCompletedOrderNodeSchema: Schema.Schema<{
|
|
|
210
223
|
} & {
|
|
211
224
|
readonly [x: string]: unknown;
|
|
212
225
|
}) | null;
|
|
213
|
-
readonly shippingGroupType?: string;
|
|
214
226
|
readonly start: string;
|
|
215
|
-
readonly type: string;
|
|
216
227
|
} & {
|
|
217
228
|
readonly [x: string]: unknown;
|
|
218
229
|
}) | ({
|
|
219
|
-
readonly __typename: "ImportedOrderSlot";
|
|
220
|
-
readonly timeZone: string;
|
|
221
230
|
readonly name: string;
|
|
231
|
+
readonly timeZone: string;
|
|
232
|
+
readonly __typename: "ImportedOrderSlot";
|
|
222
233
|
readonly end: string;
|
|
223
234
|
readonly start: string;
|
|
224
235
|
} & {
|
|
225
236
|
readonly [x: string]: unknown;
|
|
226
237
|
});
|
|
227
|
-
readonly status: string;
|
|
228
238
|
} & {
|
|
229
239
|
readonly [x: string]: unknown;
|
|
230
240
|
}, {
|
|
241
|
+
readonly status: string;
|
|
231
242
|
readonly orderId: string;
|
|
232
243
|
readonly prices: {
|
|
233
244
|
readonly total: {
|
|
@@ -244,21 +255,22 @@ export declare const RawCompletedOrderNodeSchema: Schema.Schema<{
|
|
|
244
255
|
readonly [x: string]: unknown;
|
|
245
256
|
};
|
|
246
257
|
readonly slot: ({
|
|
258
|
+
readonly type: string;
|
|
247
259
|
readonly __typename: "InternalOrderSlot";
|
|
248
260
|
readonly deliveryDestination: {
|
|
261
|
+
readonly name: string;
|
|
262
|
+
readonly deliveryMethod: string;
|
|
249
263
|
readonly address: {
|
|
250
264
|
readonly timeZone: string;
|
|
251
265
|
} & {
|
|
252
266
|
readonly [x: string]: unknown;
|
|
253
267
|
};
|
|
254
|
-
readonly deliveryMethod: string;
|
|
255
|
-
readonly name: string;
|
|
256
268
|
} & {
|
|
257
269
|
readonly [x: string]: unknown;
|
|
258
270
|
};
|
|
259
271
|
readonly end: string;
|
|
260
272
|
readonly start: string;
|
|
261
|
-
readonly
|
|
273
|
+
readonly shippingGroupType?: string;
|
|
262
274
|
readonly carrier?: ({
|
|
263
275
|
readonly carrierId: string;
|
|
264
276
|
} & {
|
|
@@ -269,19 +281,17 @@ export declare const RawCompletedOrderNodeSchema: Schema.Schema<{
|
|
|
269
281
|
} & {
|
|
270
282
|
readonly [x: string]: unknown;
|
|
271
283
|
}) | null;
|
|
272
|
-
readonly shippingGroupType?: string;
|
|
273
284
|
} & {
|
|
274
285
|
readonly [x: string]: unknown;
|
|
275
286
|
}) | ({
|
|
276
|
-
readonly __typename: "ImportedOrderSlot";
|
|
277
|
-
readonly timeZone: string;
|
|
278
287
|
readonly name: string;
|
|
288
|
+
readonly timeZone: string;
|
|
289
|
+
readonly __typename: "ImportedOrderSlot";
|
|
279
290
|
readonly end: string;
|
|
280
291
|
readonly start: string;
|
|
281
292
|
} & {
|
|
282
293
|
readonly [x: string]: unknown;
|
|
283
294
|
});
|
|
284
|
-
readonly status: string;
|
|
285
295
|
readonly recurringOrderDefinition?: ({
|
|
286
296
|
readonly name: string;
|
|
287
297
|
} & {
|
|
@@ -291,11 +301,168 @@ export declare const RawCompletedOrderNodeSchema: Schema.Schema<{
|
|
|
291
301
|
readonly [x: string]: unknown;
|
|
292
302
|
}, never>;
|
|
293
303
|
export type RawCompletedOrderNode = Schema.Schema.Type<typeof RawCompletedOrderNodeSchema>;
|
|
304
|
+
declare const RawCompletedOrdersConnectionSchema: Schema.Schema<{
|
|
305
|
+
readonly edges: readonly (({
|
|
306
|
+
readonly node: ({
|
|
307
|
+
readonly status: string;
|
|
308
|
+
readonly orderId: string;
|
|
309
|
+
readonly prices: {
|
|
310
|
+
readonly total: {
|
|
311
|
+
readonly amount: string;
|
|
312
|
+
readonly currency: string;
|
|
313
|
+
};
|
|
314
|
+
} & {
|
|
315
|
+
readonly [x: string]: unknown;
|
|
316
|
+
};
|
|
317
|
+
readonly recurringOrderDefinition?: ({
|
|
318
|
+
readonly name: string;
|
|
319
|
+
} & {
|
|
320
|
+
readonly [x: string]: unknown;
|
|
321
|
+
}) | null;
|
|
322
|
+
readonly region: {
|
|
323
|
+
readonly regionId: string;
|
|
324
|
+
readonly retailerRegionId: string;
|
|
325
|
+
} & {
|
|
326
|
+
readonly [x: string]: unknown;
|
|
327
|
+
};
|
|
328
|
+
readonly slot: ({
|
|
329
|
+
readonly type: string;
|
|
330
|
+
readonly shippingGroupType?: string;
|
|
331
|
+
readonly __typename: "InternalOrderSlot";
|
|
332
|
+
readonly carrier?: ({
|
|
333
|
+
readonly carrierId: string;
|
|
334
|
+
} & {
|
|
335
|
+
readonly [x: string]: unknown;
|
|
336
|
+
}) | null;
|
|
337
|
+
readonly deliveryDestination: {
|
|
338
|
+
readonly name: string;
|
|
339
|
+
readonly deliveryMethod: string;
|
|
340
|
+
readonly address: {
|
|
341
|
+
readonly timeZone: string;
|
|
342
|
+
} & {
|
|
343
|
+
readonly [x: string]: unknown;
|
|
344
|
+
};
|
|
345
|
+
} & {
|
|
346
|
+
readonly [x: string]: unknown;
|
|
347
|
+
};
|
|
348
|
+
readonly end: string;
|
|
349
|
+
readonly externalLocker?: ({
|
|
350
|
+
readonly externalLockerId: string;
|
|
351
|
+
} & {
|
|
352
|
+
readonly [x: string]: unknown;
|
|
353
|
+
}) | null;
|
|
354
|
+
readonly start: string;
|
|
355
|
+
} & {
|
|
356
|
+
readonly [x: string]: unknown;
|
|
357
|
+
}) | ({
|
|
358
|
+
readonly name: string;
|
|
359
|
+
readonly timeZone: string;
|
|
360
|
+
readonly __typename: "ImportedOrderSlot";
|
|
361
|
+
readonly end: string;
|
|
362
|
+
readonly start: string;
|
|
363
|
+
} & {
|
|
364
|
+
readonly [x: string]: unknown;
|
|
365
|
+
});
|
|
366
|
+
} & {
|
|
367
|
+
readonly [x: string]: unknown;
|
|
368
|
+
}) | null;
|
|
369
|
+
} & {
|
|
370
|
+
readonly [x: string]: unknown;
|
|
371
|
+
}) | null)[];
|
|
372
|
+
readonly pageInfo: {
|
|
373
|
+
readonly endCursor: string | null;
|
|
374
|
+
readonly hasNextPage: boolean;
|
|
375
|
+
} & {
|
|
376
|
+
readonly [x: string]: unknown;
|
|
377
|
+
};
|
|
378
|
+
readonly retentionPeriod?: string;
|
|
379
|
+
} & {
|
|
380
|
+
readonly [x: string]: unknown;
|
|
381
|
+
}, {
|
|
382
|
+
readonly edges: readonly (({
|
|
383
|
+
readonly node: ({
|
|
384
|
+
readonly status: string;
|
|
385
|
+
readonly orderId: string;
|
|
386
|
+
readonly prices: {
|
|
387
|
+
readonly total: {
|
|
388
|
+
readonly amount: string;
|
|
389
|
+
readonly currency: string;
|
|
390
|
+
};
|
|
391
|
+
} & {
|
|
392
|
+
readonly [x: string]: unknown;
|
|
393
|
+
};
|
|
394
|
+
readonly region: {
|
|
395
|
+
readonly regionId: string;
|
|
396
|
+
readonly retailerRegionId: string;
|
|
397
|
+
} & {
|
|
398
|
+
readonly [x: string]: unknown;
|
|
399
|
+
};
|
|
400
|
+
readonly slot: ({
|
|
401
|
+
readonly type: string;
|
|
402
|
+
readonly __typename: "InternalOrderSlot";
|
|
403
|
+
readonly deliveryDestination: {
|
|
404
|
+
readonly name: string;
|
|
405
|
+
readonly deliveryMethod: string;
|
|
406
|
+
readonly address: {
|
|
407
|
+
readonly timeZone: string;
|
|
408
|
+
} & {
|
|
409
|
+
readonly [x: string]: unknown;
|
|
410
|
+
};
|
|
411
|
+
} & {
|
|
412
|
+
readonly [x: string]: unknown;
|
|
413
|
+
};
|
|
414
|
+
readonly end: string;
|
|
415
|
+
readonly start: string;
|
|
416
|
+
readonly shippingGroupType?: string;
|
|
417
|
+
readonly carrier?: ({
|
|
418
|
+
readonly carrierId: string;
|
|
419
|
+
} & {
|
|
420
|
+
readonly [x: string]: unknown;
|
|
421
|
+
}) | null;
|
|
422
|
+
readonly externalLocker?: ({
|
|
423
|
+
readonly externalLockerId: string;
|
|
424
|
+
} & {
|
|
425
|
+
readonly [x: string]: unknown;
|
|
426
|
+
}) | null;
|
|
427
|
+
} & {
|
|
428
|
+
readonly [x: string]: unknown;
|
|
429
|
+
}) | ({
|
|
430
|
+
readonly name: string;
|
|
431
|
+
readonly timeZone: string;
|
|
432
|
+
readonly __typename: "ImportedOrderSlot";
|
|
433
|
+
readonly end: string;
|
|
434
|
+
readonly start: string;
|
|
435
|
+
} & {
|
|
436
|
+
readonly [x: string]: unknown;
|
|
437
|
+
});
|
|
438
|
+
readonly recurringOrderDefinition?: ({
|
|
439
|
+
readonly name: string;
|
|
440
|
+
} & {
|
|
441
|
+
readonly [x: string]: unknown;
|
|
442
|
+
}) | null;
|
|
443
|
+
} & {
|
|
444
|
+
readonly [x: string]: unknown;
|
|
445
|
+
}) | null;
|
|
446
|
+
} & {
|
|
447
|
+
readonly [x: string]: unknown;
|
|
448
|
+
}) | null)[];
|
|
449
|
+
readonly pageInfo: {
|
|
450
|
+
readonly endCursor: string | null;
|
|
451
|
+
readonly hasNextPage: boolean;
|
|
452
|
+
} & {
|
|
453
|
+
readonly [x: string]: unknown;
|
|
454
|
+
};
|
|
455
|
+
readonly retentionPeriod?: string;
|
|
456
|
+
} & {
|
|
457
|
+
readonly [x: string]: unknown;
|
|
458
|
+
}, never>;
|
|
459
|
+
export type RawCompletedOrdersConnection = Schema.Schema.Type<typeof RawCompletedOrdersConnectionSchema>;
|
|
294
460
|
export declare const RawCompletedOrdersGraphqlResponseSchema: Schema.Schema<{
|
|
295
|
-
readonly data
|
|
296
|
-
readonly completedOrders: {
|
|
461
|
+
readonly data?: ({
|
|
462
|
+
readonly completedOrders: ({
|
|
297
463
|
readonly edges: readonly (({
|
|
298
464
|
readonly node: ({
|
|
465
|
+
readonly status: string;
|
|
299
466
|
readonly orderId: string;
|
|
300
467
|
readonly prices: {
|
|
301
468
|
readonly total: {
|
|
@@ -317,6 +484,8 @@ export declare const RawCompletedOrdersGraphqlResponseSchema: Schema.Schema<{
|
|
|
317
484
|
readonly [x: string]: unknown;
|
|
318
485
|
};
|
|
319
486
|
readonly slot: ({
|
|
487
|
+
readonly type: string;
|
|
488
|
+
readonly shippingGroupType?: string;
|
|
320
489
|
readonly __typename: "InternalOrderSlot";
|
|
321
490
|
readonly carrier?: ({
|
|
322
491
|
readonly carrierId: string;
|
|
@@ -324,13 +493,13 @@ export declare const RawCompletedOrdersGraphqlResponseSchema: Schema.Schema<{
|
|
|
324
493
|
readonly [x: string]: unknown;
|
|
325
494
|
}) | null;
|
|
326
495
|
readonly deliveryDestination: {
|
|
496
|
+
readonly name: string;
|
|
497
|
+
readonly deliveryMethod: string;
|
|
327
498
|
readonly address: {
|
|
328
499
|
readonly timeZone: string;
|
|
329
500
|
} & {
|
|
330
501
|
readonly [x: string]: unknown;
|
|
331
502
|
};
|
|
332
|
-
readonly deliveryMethod: string;
|
|
333
|
-
readonly name: string;
|
|
334
503
|
} & {
|
|
335
504
|
readonly [x: string]: unknown;
|
|
336
505
|
};
|
|
@@ -340,21 +509,18 @@ export declare const RawCompletedOrdersGraphqlResponseSchema: Schema.Schema<{
|
|
|
340
509
|
} & {
|
|
341
510
|
readonly [x: string]: unknown;
|
|
342
511
|
}) | null;
|
|
343
|
-
readonly shippingGroupType?: string;
|
|
344
512
|
readonly start: string;
|
|
345
|
-
readonly type: string;
|
|
346
513
|
} & {
|
|
347
514
|
readonly [x: string]: unknown;
|
|
348
515
|
}) | ({
|
|
349
|
-
readonly __typename: "ImportedOrderSlot";
|
|
350
|
-
readonly timeZone: string;
|
|
351
516
|
readonly name: string;
|
|
517
|
+
readonly timeZone: string;
|
|
518
|
+
readonly __typename: "ImportedOrderSlot";
|
|
352
519
|
readonly end: string;
|
|
353
520
|
readonly start: string;
|
|
354
521
|
} & {
|
|
355
522
|
readonly [x: string]: unknown;
|
|
356
523
|
});
|
|
357
|
-
readonly status: string;
|
|
358
524
|
} & {
|
|
359
525
|
readonly [x: string]: unknown;
|
|
360
526
|
}) | null;
|
|
@@ -370,17 +536,23 @@ export declare const RawCompletedOrdersGraphqlResponseSchema: Schema.Schema<{
|
|
|
370
536
|
readonly retentionPeriod?: string;
|
|
371
537
|
} & {
|
|
372
538
|
readonly [x: string]: unknown;
|
|
373
|
-
};
|
|
539
|
+
}) | null;
|
|
374
540
|
} & {
|
|
375
541
|
readonly [x: string]: unknown;
|
|
376
|
-
};
|
|
542
|
+
}) | null;
|
|
543
|
+
readonly errors?: readonly ({
|
|
544
|
+
readonly message: string;
|
|
545
|
+
} & {
|
|
546
|
+
readonly [x: string]: unknown;
|
|
547
|
+
})[];
|
|
377
548
|
} & {
|
|
378
549
|
readonly [x: string]: unknown;
|
|
379
550
|
}, {
|
|
380
|
-
readonly data
|
|
381
|
-
readonly completedOrders: {
|
|
551
|
+
readonly data?: ({
|
|
552
|
+
readonly completedOrders: ({
|
|
382
553
|
readonly edges: readonly (({
|
|
383
554
|
readonly node: ({
|
|
555
|
+
readonly status: string;
|
|
384
556
|
readonly orderId: string;
|
|
385
557
|
readonly prices: {
|
|
386
558
|
readonly total: {
|
|
@@ -397,21 +569,22 @@ export declare const RawCompletedOrdersGraphqlResponseSchema: Schema.Schema<{
|
|
|
397
569
|
readonly [x: string]: unknown;
|
|
398
570
|
};
|
|
399
571
|
readonly slot: ({
|
|
572
|
+
readonly type: string;
|
|
400
573
|
readonly __typename: "InternalOrderSlot";
|
|
401
574
|
readonly deliveryDestination: {
|
|
575
|
+
readonly name: string;
|
|
576
|
+
readonly deliveryMethod: string;
|
|
402
577
|
readonly address: {
|
|
403
578
|
readonly timeZone: string;
|
|
404
579
|
} & {
|
|
405
580
|
readonly [x: string]: unknown;
|
|
406
581
|
};
|
|
407
|
-
readonly deliveryMethod: string;
|
|
408
|
-
readonly name: string;
|
|
409
582
|
} & {
|
|
410
583
|
readonly [x: string]: unknown;
|
|
411
584
|
};
|
|
412
585
|
readonly end: string;
|
|
413
586
|
readonly start: string;
|
|
414
|
-
readonly
|
|
587
|
+
readonly shippingGroupType?: string;
|
|
415
588
|
readonly carrier?: ({
|
|
416
589
|
readonly carrierId: string;
|
|
417
590
|
} & {
|
|
@@ -422,19 +595,17 @@ export declare const RawCompletedOrdersGraphqlResponseSchema: Schema.Schema<{
|
|
|
422
595
|
} & {
|
|
423
596
|
readonly [x: string]: unknown;
|
|
424
597
|
}) | null;
|
|
425
|
-
readonly shippingGroupType?: string;
|
|
426
598
|
} & {
|
|
427
599
|
readonly [x: string]: unknown;
|
|
428
600
|
}) | ({
|
|
429
|
-
readonly __typename: "ImportedOrderSlot";
|
|
430
|
-
readonly timeZone: string;
|
|
431
601
|
readonly name: string;
|
|
602
|
+
readonly timeZone: string;
|
|
603
|
+
readonly __typename: "ImportedOrderSlot";
|
|
432
604
|
readonly end: string;
|
|
433
605
|
readonly start: string;
|
|
434
606
|
} & {
|
|
435
607
|
readonly [x: string]: unknown;
|
|
436
608
|
});
|
|
437
|
-
readonly status: string;
|
|
438
609
|
readonly recurringOrderDefinition?: ({
|
|
439
610
|
readonly name: string;
|
|
440
611
|
} & {
|
|
@@ -455,10 +626,15 @@ export declare const RawCompletedOrdersGraphqlResponseSchema: Schema.Schema<{
|
|
|
455
626
|
readonly retentionPeriod?: string;
|
|
456
627
|
} & {
|
|
457
628
|
readonly [x: string]: unknown;
|
|
458
|
-
};
|
|
629
|
+
}) | null;
|
|
459
630
|
} & {
|
|
460
631
|
readonly [x: string]: unknown;
|
|
461
|
-
};
|
|
632
|
+
}) | null;
|
|
633
|
+
readonly errors?: readonly ({
|
|
634
|
+
readonly message: string;
|
|
635
|
+
} & {
|
|
636
|
+
readonly [x: string]: unknown;
|
|
637
|
+
})[];
|
|
462
638
|
} & {
|
|
463
639
|
readonly [x: string]: unknown;
|
|
464
640
|
}, never>;
|
|
@@ -558,4 +734,5 @@ export declare const NormalizedCompletedOrdersResultSchema: Schema.Struct<{
|
|
|
558
734
|
}>;
|
|
559
735
|
}>;
|
|
560
736
|
export type NormalizedCompletedOrdersResult = Schema.Schema.Type<typeof NormalizedCompletedOrdersResultSchema>;
|
|
737
|
+
export {};
|
|
561
738
|
//# sourceMappingURL=order-history.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"order-history.d.ts","sourceRoot":"","sources":["../../../../src/domain/schemas/order-history.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAI/B,eAAO,MAAM,mBAAmB,IAAI,CAAA;AACpC,eAAO,MAAM,mBAAmB,KAAK,CAAA;AACrC,eAAO,MAAM,uBAAuB,KAAK,CAAA;AAczC,eAAO,MAAM,0BAA0B;;;;;;;EAGrC,CAAA;AAEF,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,0BAA0B,CAAC,CAAA;AA+BxF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAW/C,CAAA;AAED,MAAM,MAAM,6BAA6B,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,mCAAmC,CAAC,CAAA;AAE1G,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;SAQ/C,CAAA;AAED,MAAM,MAAM,6BAA6B,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,mCAAmC,CAAC,CAAA;AAE1G,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAGvC,CAAA;AAED,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,2BAA2B,CAAC,CAAA;AAE1F,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAkBvC,CAAA;AAED,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,2BAA2B,CAAC,CAAA;AAE1F,eAAO,MAAM,uCAAuC
|
|
1
|
+
{"version":3,"file":"order-history.d.ts","sourceRoot":"","sources":["../../../../src/domain/schemas/order-history.ts"],"names":[],"mappings":"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"}
|
|
@@ -27,6 +27,9 @@ const RawOrderDeliveryDestinationSchema = Schema.asSchema(Schema.Struct({
|
|
|
27
27
|
deliveryMethod: Schema.String,
|
|
28
28
|
name: Schema.String
|
|
29
29
|
}).pipe(Schema.extend(UnknownStringRecordSchema)));
|
|
30
|
+
export const RawCompletedOrdersGraphqlErrorSchema = Schema.asSchema(Schema.Struct({
|
|
31
|
+
message: Schema.String
|
|
32
|
+
}).pipe(Schema.extend(UnknownStringRecordSchema)));
|
|
30
33
|
export const RawInternalCompletedOrderSlotSchema = Schema.asSchema(Schema.Struct({
|
|
31
34
|
__typename: Schema.Literal("InternalOrderSlot"),
|
|
32
35
|
carrier: Schema.optionalWith(Schema.NullOr(RawOrderCarrierSchema), { exact: true }),
|
|
@@ -57,19 +60,21 @@ export const RawCompletedOrderNodeSchema = Schema.asSchema(Schema.Struct({
|
|
|
57
60
|
slot: RawCompletedOrderSlotSchema,
|
|
58
61
|
status: Schema.String
|
|
59
62
|
}).pipe(Schema.extend(UnknownStringRecordSchema)));
|
|
63
|
+
const RawCompletedOrdersConnectionSchema = Schema.asSchema(Schema.Struct({
|
|
64
|
+
edges: Schema.Array(Schema.NullOr(Schema.Struct({
|
|
65
|
+
node: Schema.NullOr(RawCompletedOrderNodeSchema)
|
|
66
|
+
}).pipe(Schema.extend(UnknownStringRecordSchema)))),
|
|
67
|
+
pageInfo: Schema.Struct({
|
|
68
|
+
endCursor: Schema.NullOr(Schema.String),
|
|
69
|
+
hasNextPage: Schema.Boolean
|
|
70
|
+
}).pipe(Schema.extend(UnknownStringRecordSchema)),
|
|
71
|
+
retentionPeriod: Schema.optionalWith(Schema.String, { exact: true })
|
|
72
|
+
}).pipe(Schema.extend(UnknownStringRecordSchema)));
|
|
60
73
|
export const RawCompletedOrdersGraphqlResponseSchema = Schema.asSchema(Schema.Struct({
|
|
61
|
-
data: Schema.Struct({
|
|
62
|
-
completedOrders: Schema.
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
}).pipe(Schema.extend(UnknownStringRecordSchema)))),
|
|
66
|
-
pageInfo: Schema.Struct({
|
|
67
|
-
endCursor: Schema.NullOr(Schema.String),
|
|
68
|
-
hasNextPage: Schema.Boolean
|
|
69
|
-
}).pipe(Schema.extend(UnknownStringRecordSchema)),
|
|
70
|
-
retentionPeriod: Schema.optionalWith(Schema.String, { exact: true })
|
|
71
|
-
}).pipe(Schema.extend(UnknownStringRecordSchema))
|
|
72
|
-
}).pipe(Schema.extend(UnknownStringRecordSchema))
|
|
74
|
+
data: Schema.optionalWith(Schema.NullOr(Schema.Struct({
|
|
75
|
+
completedOrders: Schema.NullOr(RawCompletedOrdersConnectionSchema)
|
|
76
|
+
}).pipe(Schema.extend(UnknownStringRecordSchema))), { exact: true }),
|
|
77
|
+
errors: Schema.optionalWith(Schema.Array(RawCompletedOrdersGraphqlErrorSchema), { exact: true })
|
|
73
78
|
}).pipe(Schema.extend(UnknownStringRecordSchema)));
|
|
74
79
|
export const CompletedOrdersPaginationSchema = Schema.Struct({
|
|
75
80
|
hasNextPage: Schema.Boolean,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"order-history.js","sourceRoot":"","sources":["../../../../src/domain/schemas/order-history.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"order-history.js","sourceRoot":"","sources":["../../../../src/domain/schemas/order-history.ts"],"names":[],"mappings":"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"}
|