@flowio/api-prop-types 10.16.86 → 10.16.88

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 (5) hide show
  1. package/lib/api.d.ts +2289 -340
  2. package/lib/api.js +1 -1
  3. package/package.json +2 -2
  4. package/src/api.d.ts +2289 -340
  5. package/src/api.js +2512 -300
package/src/api.js CHANGED
@@ -1,29 +1,2260 @@
1
1
  import PropTypes from 'prop-types';
2
2
  const T = {};
3
+
4
+ T['io.flow.query.builder.v0.models.query_builder_query_form'] = PropTypes.exact({
5
+ discriminator: PropTypes.oneOf(['query']).isRequired,
6
+ q: PropTypes.string.isRequired,
7
+ });
8
+
9
+ T['io.flow.query.builder.v0.models.query_filter_unstructured_form'] = PropTypes.exact({
10
+ discriminator: PropTypes.oneOf(['unstructured']).isRequired,
11
+ q: PropTypes.string.isRequired,
12
+ });
13
+
14
+ T['io.flow.query.builder.v0.models.query_filter_structured_form'] = PropTypes.exact({
15
+ discriminator: PropTypes.oneOf(['structured']).isRequired,
16
+ field: PropTypes.string.isRequired,
17
+ operator: PropTypes.string.isRequired,
18
+ values: PropTypes.arrayOf(PropTypes.string).isRequired,
19
+ });
20
+
21
+ T['io.flow.query.builder.v0.unions.query_filter_form'] = PropTypes.oneOfType([
22
+ T['io.flow.query.builder.v0.models.query_filter_structured_form'],
23
+ T['io.flow.query.builder.v0.models.query_filter_unstructured_form'],
24
+ ]);
25
+
26
+ T['io.flow.query.builder.v0.models.query_builder_filter_form'] = PropTypes.exact({
27
+ discriminator: PropTypes.oneOf(['filter']).isRequired,
28
+ filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter_form']).isRequired,
29
+ });
30
+
31
+ T['io.flow.query.builder.v0.unions.query_builder_form'] = PropTypes.oneOfType([
32
+ T['io.flow.query.builder.v0.models.query_builder_filter_form'],
33
+ T['io.flow.query.builder.v0.models.query_builder_query_form'],
34
+ ]);
35
+
36
+ T['io.flow.query.builder.v0.models.available_filter_unstructured'] = PropTypes.exact({
37
+ discriminator: PropTypes.oneOf(['unstructured']).isRequired,
38
+ placeholder: PropTypes.string,
39
+ });
40
+
41
+ T['io.flow.query.builder.v0.models.query_filter_unstructured'] = PropTypes.exact({
42
+ discriminator: PropTypes.oneOf(['unstructured']).isRequired,
43
+ q: PropTypes.string.isRequired,
44
+ });
45
+
46
+ T['io.flow.query.builder.v0.models.query_filter_structured'] = PropTypes.exact({
47
+ discriminator: PropTypes.oneOf(['structured']).isRequired,
48
+ q: PropTypes.string.isRequired,
49
+ field: PropTypes.string.isRequired,
50
+ operator: PropTypes.string.isRequired,
51
+ values: PropTypes.arrayOf(PropTypes.string).isRequired,
52
+ });
53
+
54
+ T['io.flow.query.builder.v0.enums.available_filter_format'] = PropTypes.oneOf([
55
+ 'boolean',
56
+ 'date',
57
+ 'money',
58
+ 'decimal',
59
+ 'string',
60
+ 'unit_of_length',
61
+ 'unit_of_mass',
62
+ ]);
63
+
64
+ T['io.flow.query.builder.v0.models.available_filter_structured'] = PropTypes.exact({
65
+ discriminator: PropTypes.oneOf(['structured']).isRequired,
66
+ field: PropTypes.string.isRequired,
67
+ operators: PropTypes.arrayOf(PropTypes.string).isRequired,
68
+ format: T['io.flow.query.builder.v0.enums.available_filter_format'].isRequired,
69
+ valid_values: PropTypes.arrayOf(PropTypes.string),
70
+ placeholder: PropTypes.string,
71
+ });
72
+
73
+ T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
74
+ T['io.flow.query.builder.v0.models.available_filter_structured'],
75
+ T['io.flow.query.builder.v0.models.available_filter_unstructured'],
76
+ ]);
77
+
78
+ T['io.flow.permission.v0.enums.permitted_http_method'] = PropTypes.oneOf(['GET', 'POST', 'PUT', 'DELETE', 'PATCH']);
79
+
80
+ T['io.flow.permission.v0.models.permitted_route'] = PropTypes.exact({
81
+ method: T['io.flow.permission.v0.enums.permitted_http_method'].isRequired,
82
+ path: PropTypes.string.isRequired,
83
+ });
84
+
85
+ T['io.flow.permission.v0.enums.authentication_technique'] = PropTypes.oneOf(['anonymous', 'session', 'token', 'partner_token', 'user']);
86
+ T['io.flow.permission.v0.enums.flow_behavior'] = PropTypes.oneOf(['view_consumer_data']);
87
+
88
+ T['io.flow.permission.v0.models.simple_permission_check'] = PropTypes.exact({
89
+ behaviors: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_behavior']).isRequired,
90
+ });
91
+
92
+ T['io.flow.inventory.v0.models.reservation_item_form'] = PropTypes.exact({
93
+ item_number: PropTypes.string.isRequired,
94
+ quantity: PropTypes.number.isRequired,
95
+ });
96
+
97
+ T['io.flow.inventory.v0.models.reservation_form'] = PropTypes.exact({
98
+ order_number: PropTypes.string,
99
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.reservation_item_form']).isRequired,
100
+ });
101
+
102
+ T['io.flow.inventory.v0.models.reservation_item_reference'] = PropTypes.exact({
103
+ number: PropTypes.string.isRequired,
104
+ });
105
+
106
+ T['io.flow.inventory.v0.models.pfs_inventory_check_response_item'] = PropTypes.exact({
107
+ number: PropTypes.string.isRequired,
108
+ ats: PropTypes.number.isRequired,
109
+ in_stock: PropTypes.bool.isRequired,
110
+ });
111
+
112
+ T['io.flow.inventory.v0.models.pfs_inventory_check_response'] = PropTypes.exact({
113
+ items: PropTypes.objectOf(T['io.flow.inventory.v0.models.pfs_inventory_check_response_item']).isRequired,
114
+ });
115
+
116
+ T['io.flow.inventory.v0.models.no_inventory_reservation_error_item'] = PropTypes.exact({
117
+ number: PropTypes.string.isRequired,
118
+ requested_quantity: PropTypes.number.isRequired,
119
+ available_quantity: PropTypes.number.isRequired,
120
+ });
121
+
122
+ T['io.flow.inventory.v0.enums.update_type'] = PropTypes.oneOf(['change', 'set']);
123
+
124
+ T['io.flow.inventory.v0.models.inventory_update_form'] = PropTypes.exact({
125
+ center: PropTypes.string.isRequired,
126
+ idempotency_key: PropTypes.string.isRequired,
127
+ item_number: PropTypes.string.isRequired,
128
+ quantity: PropTypes.number.isRequired,
129
+ type: T['io.flow.inventory.v0.enums.update_type'].isRequired,
130
+ notes: PropTypes.object,
131
+ });
132
+
133
+ T['io.flow.inventory.v0.models.inventory_item_reference'] = PropTypes.exact({
134
+ number: PropTypes.string.isRequired,
135
+ });
136
+
137
+ T['io.flow.inventory.v0.models.inventory_center_reference'] = PropTypes.exact({
138
+ key: PropTypes.string.isRequired,
139
+ });
140
+
141
+ T['io.flow.inventory.v0.models.inventory_update'] = PropTypes.exact({
142
+ id: PropTypes.string.isRequired,
143
+ idempotency_key: PropTypes.string.isRequired,
144
+ center: T['io.flow.inventory.v0.models.inventory_center_reference'].isRequired,
145
+ item: T['io.flow.inventory.v0.models.inventory_item_reference'].isRequired,
146
+ notes: PropTypes.object.isRequired,
147
+ quantity: PropTypes.number.isRequired,
148
+ type: T['io.flow.inventory.v0.enums.update_type'].isRequired,
149
+ });
150
+
151
+ T['io.flow.inventory.v0.models.inventory_snapshot'] = PropTypes.exact({
152
+ id: PropTypes.string.isRequired,
153
+ available: PropTypes.number.isRequired,
154
+ center: T['io.flow.inventory.v0.models.inventory_center_reference'].isRequired,
155
+ item: T['io.flow.inventory.v0.models.inventory_item_reference'].isRequired,
156
+ quantity: PropTypes.number.isRequired,
157
+ });
158
+
159
+ T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'] = PropTypes.exact({
160
+ discriminator: PropTypes.oneOf(['inventory_follow_ecommerce_platform']).isRequired,
161
+ quantity: PropTypes.number.isRequired,
162
+ });
163
+
164
+ T['io.flow.inventory.v0.models.inventory_unlimited'] = PropTypes.exact({
165
+ discriminator: PropTypes.oneOf(['inventory_unlimited']).isRequired,
166
+ placeholder: PropTypes.string,
167
+ });
168
+
169
+ T['io.flow.inventory.v0.models.inventory_stock'] = PropTypes.exact({
170
+ discriminator: PropTypes.oneOf(['inventory_stock']).isRequired,
171
+ quantity: PropTypes.number.isRequired,
172
+ });
173
+
174
+ T['io.flow.inventory.v0.models.inventory_backorder'] = PropTypes.exact({
175
+ discriminator: PropTypes.oneOf(['inventory_backorder']).isRequired,
176
+ quantity: PropTypes.number.isRequired,
177
+ });
178
+
179
+ T['io.flow.inventory.v0.unions.inventory_strategy'] = PropTypes.oneOfType([
180
+ T['io.flow.inventory.v0.models.inventory_backorder'],
181
+ T['io.flow.inventory.v0.models.inventory_stock'],
182
+ T['io.flow.inventory.v0.models.inventory_unlimited'],
183
+ T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'],
184
+ ]);
185
+
186
+ T['io.flow.inventory.v0.models.inventory_rule_form'] = PropTypes.exact({
187
+ position: PropTypes.number.isRequired,
188
+ query: PropTypes.string.isRequired,
189
+ strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
190
+ });
191
+
192
+ T['io.flow.inventory.v0.models.inventory_rule'] = PropTypes.exact({
193
+ id: PropTypes.string.isRequired,
194
+ position: PropTypes.number.isRequired,
195
+ query: PropTypes.string.isRequired,
196
+ strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
197
+ });
198
+
199
+ T['io.flow.inventory.v0.models.inventory_request_item'] = PropTypes.exact({
200
+ number: PropTypes.string.isRequired,
201
+ quantity: PropTypes.number.isRequired,
202
+ });
203
+
204
+ T['io.flow.inventory.v0.models.inventory_request'] = PropTypes.exact({
205
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.inventory_request_item']).isRequired,
206
+ });
207
+
208
+ T['io.flow.inventory.v0.enums.inventory_status'] = PropTypes.oneOf(['has_inventory', 'no_inventory']);
209
+
210
+ T['io.flow.inventory.v0.models.inventory_check_response_item'] = PropTypes.exact({
211
+ number: PropTypes.string.isRequired,
212
+ quantity: PropTypes.number.isRequired,
213
+ inventory_status: T['io.flow.inventory.v0.enums.inventory_status'].isRequired,
214
+ });
215
+
216
+ T['io.flow.inventory.v0.models.inventory_check_response'] = PropTypes.exact({
217
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.inventory_check_response_item']).isRequired,
218
+ });
219
+
220
+ T['io.flow.catalog.v0.models.subcatalog_reference'] = PropTypes.exact({
221
+ discriminator: PropTypes.oneOf(['subcatalog_reference']).isRequired,
222
+ id: PropTypes.string.isRequired,
223
+ });
224
+
225
+ T['io.flow.catalog.v0.models.catalog_statistics'] = PropTypes.exact({
226
+ id: PropTypes.string.isRequired,
227
+ items: PropTypes.number.isRequired,
228
+ categories: PropTypes.number.isRequired,
229
+ });
230
+
231
+ T['io.flow.catalog.v0.models.item_statistics'] = PropTypes.exact({
232
+ items: PropTypes.number.isRequired,
233
+ categories: PropTypes.number.isRequired,
234
+ });
235
+
236
+ T['io.flow.catalog.v0.models.subcatalog_statistics'] = PropTypes.exact({
237
+ excluded: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
238
+ included: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
239
+ restricted: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
240
+ queue: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
241
+ catalog: T['io.flow.catalog.v0.models.catalog_statistics'].isRequired,
242
+ });
243
+
244
+ T['io.flow.catalog.v0.enums.update_policy'] = PropTypes.oneOf(['auto', 'queue', 'discard']);
245
+
246
+ T['io.flow.catalog.v0.models.subcatalog_settings_form'] = PropTypes.exact({
247
+ update_policy: T['io.flow.catalog.v0.enums.update_policy'],
248
+ });
249
+
250
+ T['io.flow.catalog.v0.models.subcatalog_form'] = PropTypes.exact({
251
+ settings: T['io.flow.catalog.v0.models.subcatalog_settings_form'],
252
+ });
253
+
254
+ T['io.flow.catalog.v0.models.subcatalog_settings'] = PropTypes.exact({
255
+ update_policy: T['io.flow.catalog.v0.enums.update_policy'].isRequired,
256
+ });
257
+
258
+ T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
259
+ id: PropTypes.string.isRequired,
260
+ key: PropTypes.string.isRequired,
261
+ name: PropTypes.string.isRequired,
262
+ country: PropTypes.string,
263
+ currency: PropTypes.string,
264
+ language: PropTypes.string,
265
+ });
266
+
267
+ T['io.flow.catalog.v0.enums.image_tag'] = PropTypes.oneOf(['thumbnail', 'checkout']);
268
+
269
+ T['io.flow.catalog.v0.models.image_form'] = PropTypes.exact({
270
+ url: PropTypes.string.isRequired,
271
+ tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']),
272
+ attributes: PropTypes.objectOf(PropTypes.string),
273
+ });
274
+
275
+ T['io.flow.catalog.v0.models.image'] = PropTypes.exact({
276
+ url: PropTypes.string.isRequired,
277
+ tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']).isRequired,
278
+ attributes: PropTypes.objectOf(PropTypes.string),
279
+ });
280
+
281
+ T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
282
+
283
+ T['io.flow.catalog.v0.models.flow_item_index_metadata'] = PropTypes.exact({
284
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
285
+ });
286
+
287
+ T['io.flow.catalog.v0.models.catalog'] = PropTypes.exact({
288
+ id: PropTypes.string.isRequired,
289
+ });
290
+
291
+ T['io.flow.catalog.v0.models.subcatalog'] = PropTypes.exact({
292
+ discriminator: PropTypes.oneOf(['subcatalog']).isRequired,
293
+ id: PropTypes.string.isRequired,
294
+ catalog: T['io.flow.catalog.v0.models.catalog'].isRequired,
295
+ settings: T['io.flow.catalog.v0.models.subcatalog_settings'].isRequired,
296
+ });
297
+
298
+ T['io.flow.catalog.v0.unions.expandable_subcatalog'] = PropTypes.oneOfType([
299
+ T['io.flow.catalog.v0.models.subcatalog'],
300
+ T['io.flow.catalog.v0.models.subcatalog_reference'],
301
+ ]);
302
+
303
+ T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
304
+
305
+ T['io.flow.catalog.v0.enums.attribute_intent'] = PropTypes.oneOf([
306
+ 'brand',
307
+ 'color',
308
+ 'countries_of_origin',
309
+ 'product_id',
310
+ 'fulfillment_method',
311
+ 'hazardous',
312
+ 'price',
313
+ 'size',
314
+ 'sku',
315
+ 'taxability',
316
+ 'consumer_url',
317
+ 'gtin',
318
+ 'mpn',
319
+ 'facet',
320
+ 'eccn',
321
+ 'returnable',
322
+ 'searchable',
323
+ 'barcode',
324
+ 'min_days_to_ship',
325
+ 'max_days_to_ship',
326
+ 'commercial_invoice_item_number',
327
+ 'include_in_product_feeds',
328
+ ]);
329
+
330
+ T['io.flow.catalog.v0.models.options'] = PropTypes.exact({
331
+ required: PropTypes.bool.isRequired,
332
+ show_in_catalog: PropTypes.bool.isRequired,
333
+ show_in_harmonization: PropTypes.bool.isRequired,
334
+ });
335
+
336
+ T['io.flow.catalog.v0.models.attribute_form'] = PropTypes.exact({
337
+ key: PropTypes.string.isRequired,
338
+ options: T['io.flow.catalog.v0.models.options'].isRequired,
339
+ label: PropTypes.string,
340
+ intent: T['io.flow.catalog.v0.enums.attribute_intent'],
341
+ type: T['io.flow.common.v0.enums.attribute_data_type'],
342
+ position: PropTypes.number,
343
+ });
344
+
345
+ T['io.flow.catalog.v0.models.attribute'] = PropTypes.exact({
346
+ id: PropTypes.string.isRequired,
347
+ key: PropTypes.string.isRequired,
348
+ options: T['io.flow.catalog.v0.models.options'].isRequired,
349
+ label: PropTypes.string,
350
+ intent: T['io.flow.catalog.v0.enums.attribute_intent'],
351
+ type: T['io.flow.common.v0.enums.attribute_data_type'],
352
+ position: PropTypes.number,
353
+ });
354
+
355
+ T['io.flow.catalog.v0.enums.adjustment_reason_key'] = PropTypes.oneOf(['duty_deminimis', 'vat_deminimis']);
356
+
357
+ T['io.flow.catalog.v0.models.adjustment_reason'] = PropTypes.exact({
358
+ key: T['io.flow.catalog.v0.enums.adjustment_reason_key'].isRequired,
359
+ label: PropTypes.string.isRequired,
360
+ });
361
+
362
+ T['io.flow.common.v0.enums.availability_status'] = PropTypes.oneOf(['enabled', 'disabled']);
363
+
364
+ T['io.flow.organization.v0.models.region_setting_form'] = PropTypes.exact({
365
+ status: T['io.flow.common.v0.enums.availability_status'].isRequired,
366
+ });
367
+
368
+ T['io.flow.organization.v0.models.region_setting'] = PropTypes.exact({
369
+ id: PropTypes.string.isRequired,
370
+ region: PropTypes.string.isRequired,
371
+ status: T['io.flow.common.v0.enums.availability_status'].isRequired,
372
+ });
373
+
374
+ T['io.flow.organization.v0.models.organization_configuration_reference'] = PropTypes.exact({
375
+ id: PropTypes.string.isRequired,
376
+ });
377
+
378
+ T['io.flow.organization.v0.models.organization_default_configurations'] = PropTypes.exact({
379
+ id: PropTypes.string.isRequired,
380
+ checkout_configuration: T['io.flow.organization.v0.models.organization_configuration_reference'].isRequired,
381
+ });
382
+
383
+ T['io.flow.organization.v0.enums.invitation_error_code'] = PropTypes.oneOf(['expired', 'invalid_email']);
384
+
385
+ T['io.flow.organization.v0.models.invitation_error'] = PropTypes.exact({
386
+ code: T['io.flow.organization.v0.enums.invitation_error_code'].isRequired,
387
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
388
+ });
389
+
390
+ T['io.flow.permission.v0.enums.flow_role'] = PropTypes.oneOf([
391
+ 'organization_admin',
392
+ 'organization_merchant',
393
+ 'organization_customer_service',
394
+ 'organization_fulfillment',
395
+ 'organization_marketing',
396
+ 'organization_finance',
397
+ 'organization_classification',
398
+ 'flow_operations',
399
+ 'channel_admin',
400
+ 'channel_organization_admin',
401
+ ]);
402
+
403
+ T['io.flow.permission.v0.models.route_audit'] = PropTypes.exact({
404
+ method: T['io.flow.permission.v0.enums.permitted_http_method'].isRequired,
405
+ path: PropTypes.string.isRequired,
406
+ authentication_techniques: PropTypes.arrayOf(T['io.flow.permission.v0.enums.authentication_technique']).isRequired,
407
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
408
+ });
409
+
410
+ T['io.flow.permission.v0.models.behavior_audit'] = PropTypes.exact({
411
+ behavior: T['io.flow.permission.v0.enums.flow_behavior'].isRequired,
412
+ authentication_techniques: PropTypes.arrayOf(T['io.flow.permission.v0.enums.authentication_technique']).isRequired,
413
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
414
+ });
415
+
416
+ T['io.flow.permission.v0.models.permission_audit'] = PropTypes.exact({
417
+ routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.route_audit']).isRequired,
418
+ behaviors: PropTypes.arrayOf(T['io.flow.permission.v0.models.behavior_audit']).isRequired,
419
+ });
420
+
421
+ T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
422
+
423
+ T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
424
+ role: T['io.flow.common.v0.enums.role'],
425
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
426
+ });
427
+
428
+ T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
429
+ organization: PropTypes.string.isRequired,
430
+ user: PropTypes.string.isRequired,
431
+ role: T['io.flow.common.v0.enums.role'],
432
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
433
+ });
434
+
435
+ T['io.flow.organization.v0.enums.ecommerce_platform_type'] = PropTypes.oneOf([
436
+ 'commercetools',
437
+ 'custom',
438
+ 'hybris',
439
+ 'magento',
440
+ 'shopify',
441
+ 'shopify_markets',
442
+ 'sfcc',
443
+ 'solidus',
444
+ 'workarea',
445
+ ]);
446
+
447
+ T['io.flow.organization.v0.models.ecommerce_platform_form'] = PropTypes.exact({
448
+ type: T['io.flow.organization.v0.enums.ecommerce_platform_type'].isRequired,
449
+ version: PropTypes.string,
450
+ });
451
+
452
+ T['io.flow.organization.v0.models.ecommerce_platform'] = PropTypes.exact({
453
+ id: PropTypes.string.isRequired,
454
+ type: T['io.flow.organization.v0.enums.ecommerce_platform_type'].isRequired,
455
+ version: PropTypes.string,
456
+ });
457
+
458
+ T['io.flow.organization.v0.enums.country_picker_source'] = PropTypes.oneOf(['experience', 'destination']);
459
+
460
+ T['io.flow.organization.v0.models.country_picker_form'] = PropTypes.exact({
461
+ source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
462
+ });
463
+
464
+ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
465
+ id: PropTypes.string.isRequired,
466
+ source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
467
+ });
468
+
469
+ T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
470
+ id: PropTypes.string.isRequired,
471
+ base: PropTypes.string.isRequired,
472
+ target: PropTypes.string.isRequired,
473
+ effective_at: PropTypes.string.isRequired,
474
+ value: PropTypes.number.isRequired,
475
+ });
476
+
3
477
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
4
478
 
5
- T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
6
- discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
7
- organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
8
- num_events: PropTypes.number.isRequired,
479
+ T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
480
+ discriminator: PropTypes.oneOf(['service_unknown']).isRequired,
481
+ name: PropTypes.string.isRequired,
482
+ });
483
+
484
+ T['io.flow.fulfillment.v0.enums.tier_estimate_type'] = PropTypes.oneOf(['calculated', 'custom']);
485
+ T['io.flow.fulfillment.v0.enums.tier_availability'] = PropTypes.oneOf(['always', 'backup']);
486
+
487
+ T['io.flow.fulfillment.v0.models.tier_estimate'] = PropTypes.exact({
488
+ type: T['io.flow.fulfillment.v0.enums.tier_estimate_type'].isRequired,
489
+ label: PropTypes.string,
490
+ });
491
+
492
+ T['io.flow.fulfillment.v0.models.tier_display_form'] = PropTypes.exact({
493
+ estimate: T['io.flow.fulfillment.v0.models.tier_estimate'],
494
+ });
495
+
496
+ T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
497
+
498
+ T['io.flow.fulfillment.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
499
+ name: PropTypes.string.isRequired,
500
+ responsible_party: T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'].isRequired,
501
+ });
502
+
503
+ T['io.flow.query.builder.v0.unions.query_filter'] = PropTypes.oneOfType([
504
+ T['io.flow.query.builder.v0.models.query_filter_structured'],
505
+ T['io.flow.query.builder.v0.models.query_filter_unstructured'],
506
+ ]);
507
+
508
+ T['io.flow.query.builder.v0.models.query_builder'] = PropTypes.exact({
509
+ q: PropTypes.string.isRequired,
510
+ filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter']).isRequired,
511
+ available: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.available_filter']).isRequired,
512
+ });
513
+
514
+ T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
515
+ number: PropTypes.string.isRequired,
516
+ });
517
+
518
+ T['io.flow.fulfillment.v0.enums.lane_preselect_preference'] = PropTypes.oneOf(['lowest_cost', 'default_tier']);
519
+ T['io.flow.fulfillment.v0.enums.lane_strategy'] = PropTypes.oneOf(['oldest', 'fastest', 'lowest_cost', 'highest_priority']);
520
+
521
+ T['io.flow.query.builder.v0.models.query'] = PropTypes.exact({
522
+ q: PropTypes.string.isRequired,
523
+ filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter']).isRequired,
524
+ });
525
+
526
+ T['io.flow.fulfillment.v0.models.shipping_configuration_reference'] = PropTypes.exact({
527
+ key: PropTypes.string.isRequired,
528
+ });
529
+
530
+ T['io.flow.fulfillment.v0.models.shipping_configuration_copy'] = PropTypes.exact({
531
+ original: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
532
+ 'new': T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
533
+ });
534
+
535
+ T['io.flow.fulfillment.v0.enums.shipping_configuration_type'] = PropTypes.oneOf(['default', 'variant']);
536
+
537
+ T['io.flow.fulfillment.v0.models.shipping_configuration_summary'] = PropTypes.exact({
538
+ id: PropTypes.string.isRequired,
539
+ name: PropTypes.string.isRequired,
540
+ key: PropTypes.string.isRequired,
541
+ type: T['io.flow.fulfillment.v0.enums.shipping_configuration_type'].isRequired,
542
+ });
543
+
544
+ T['io.flow.fulfillment.v0.enums.lane_direction'] = PropTypes.oneOf(['outbound', 'return']);
545
+
546
+ T['io.flow.fulfillment.v0.models.shipping_lane_form'] = PropTypes.exact({
547
+ from: PropTypes.string.isRequired,
548
+ to: PropTypes.string.isRequired,
549
+ strategy: T['io.flow.fulfillment.v0.enums.lane_strategy'],
550
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
551
+ preference: T['io.flow.fulfillment.v0.enums.lane_preselect_preference'],
552
+ });
553
+
554
+ T['io.flow.fulfillment.v0.enums.quote_error_code'] = PropTypes.oneOf(['generic_error', 'items_not_available', 'shipping_unavailable']);
555
+
556
+ T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
557
+ code: T['io.flow.fulfillment.v0.enums.quote_error_code'].isRequired,
558
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
559
+ item_numbers: PropTypes.arrayOf(PropTypes.string),
560
+ });
561
+
562
+ T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
563
+ id: PropTypes.string.isRequired,
564
+ });
565
+
566
+ T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
567
+
568
+ T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
569
+ id: PropTypes.string.isRequired,
570
+ selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
571
+ });
572
+
573
+ T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa']);
574
+ T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
575
+ T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
576
+ T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
577
+ T['io.flow.fulfillment.v0.enums.zero_amount_indicator'] = PropTypes.oneOf(['zero', 'free']);
578
+ T['io.flow.fulfillment.v0.enums.delivery_window_location'] = PropTypes.oneOf(['center', 'crossdock', 'customer']);
579
+ T['io.flow.fulfillment.v0.enums.delivery_window_component_source'] = PropTypes.oneOf(['flow', 'organization', 'carrier', 'center', 'mixed']);
580
+
581
+ T['io.flow.fulfillment.v0.models.transit_estimate'] = PropTypes.exact({
582
+ origin: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
583
+ destination: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
584
+ min_date: PropTypes.string.isRequired,
585
+ max_date: PropTypes.string.isRequired,
586
+ source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
587
+ });
588
+
589
+ T['io.flow.fulfillment.v0.models.processing_estimate'] = PropTypes.exact({
590
+ location: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
591
+ min_date: PropTypes.string.isRequired,
592
+ max_date: PropTypes.string.isRequired,
593
+ source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
594
+ });
595
+
596
+ T['io.flow.fulfillment.v0.models.delivery_window_components_v2'] = PropTypes.exact({
597
+ processing_estimates: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.processing_estimate']).isRequired,
598
+ transit_estimates: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.transit_estimate']).isRequired,
599
+ });
600
+
601
+ T['io.flow.fulfillment.v0.models.delivery_window_component'] = PropTypes.exact({
602
+ from: PropTypes.string.isRequired,
603
+ to: PropTypes.string.isRequired,
604
+ source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
605
+ });
606
+
607
+ T['io.flow.fulfillment.v0.models.delivery_window_components'] = PropTypes.exact({
608
+ shipment_estimate: T['io.flow.fulfillment.v0.models.delivery_window_component'].isRequired,
609
+ transit_estimate: T['io.flow.fulfillment.v0.models.delivery_window_component'].isRequired,
610
+ });
611
+
612
+ T['io.flow.fulfillment.v0.models.tier_reference'] = PropTypes.exact({
613
+ id: PropTypes.string.isRequired,
614
+ });
615
+
616
+ T['io.flow.fulfillment.v0.models.shipping_lane_default_tier'] = PropTypes.exact({
617
+ id: PropTypes.string.isRequired,
618
+ tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
619
+ });
620
+
621
+ T['io.flow.fulfillment.v0.models.service_reference'] = PropTypes.exact({
622
+ id: PropTypes.string.isRequired,
623
+ });
624
+
625
+ T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'] = PropTypes.oneOf(['center', 'ratecard']);
626
+
627
+ T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'] = PropTypes.oneOf([
628
+ 'ratecard_base_cost',
629
+ 'ratecard_ddp_fee',
630
+ 'ratecard_fuel_surcharge',
631
+ 'ratecard_oversized_shipment_fee',
632
+ 'ratecard_rural_shipment_fee',
633
+ 'ratecard_emergency_situation_surcharge_fee',
634
+ 'ratecard_peak_surcharge_fee',
635
+ 'ratecard_duties_taxes_paid_surcharge_fee',
636
+ 'center_commercial_invoice_fee',
637
+ 'center_inbound_carton_fee',
638
+ 'center_outbound_carton_fee',
639
+ ]);
640
+
641
+ T['io.flow.fulfillment.v0.models.surcharge_setting_display'] = PropTypes.exact({
642
+ name: PropTypes.string.isRequired,
643
+ description: PropTypes.string.isRequired,
644
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
645
+ available: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_responsible_party_display']).isRequired,
646
+ });
647
+
648
+ T['io.flow.fulfillment.v0.models.surcharge_setting'] = PropTypes.exact({
649
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
650
+ responsible_party: T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'].isRequired,
651
+ });
652
+
653
+ T['io.flow.fulfillment.v0.models.percent_margin'] = PropTypes.exact({
654
+ discriminator: PropTypes.oneOf(['percent_margin']).isRequired,
655
+ percentage: PropTypes.number.isRequired,
656
+ });
657
+
658
+ T['io.flow.fulfillment.v0.models.at_cost'] = PropTypes.exact({
659
+ discriminator: PropTypes.oneOf(['at_cost']).isRequired,
660
+ ignore: PropTypes.string,
661
+ });
662
+
663
+ T['io.flow.fulfillment.v0.models.tier_settings'] = PropTypes.exact({
664
+ availability: T['io.flow.fulfillment.v0.enums.tier_availability'].isRequired,
665
+ });
666
+
667
+ T['io.flow.fulfillment.v0.models.tier_display'] = PropTypes.exact({
668
+ estimate: T['io.flow.fulfillment.v0.models.tier_estimate'].isRequired,
669
+ });
670
+
671
+ T['io.flow.common.v0.enums.visibility'] = PropTypes.oneOf(['public', 'private']);
672
+ T['io.flow.fulfillment.v0.enums.tier_strategy'] = PropTypes.oneOf(['fastest', 'lowest_cost']);
673
+ T['io.flow.fulfillment.v0.enums.shipment_integration_type'] = PropTypes.oneOf(['direct', 'information', 'preadvice']);
674
+
675
+ T['io.flow.fulfillment.v0.models.fulfillment_experience_reference'] = PropTypes.exact({
676
+ id: PropTypes.string.isRequired,
677
+ currency: PropTypes.string.isRequired,
678
+ });
679
+
680
+ T['io.flow.fulfillment.v0.models.carrier_reference'] = PropTypes.exact({
681
+ id: PropTypes.string.isRequired,
682
+ });
683
+
684
+ T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
685
+
686
+ T['io.flow.fulfillment.v0.models.delivery_window'] = PropTypes.exact({
687
+ from: PropTypes.string.isRequired,
688
+ to: PropTypes.string.isRequired,
689
+ timezone: PropTypes.string,
690
+ label: PropTypes.string,
691
+ min_days: PropTypes.number,
692
+ max_days: PropTypes.number,
693
+ });
694
+
695
+ T['io.flow.fulfillment.v0.models.delivery_window_summary'] = PropTypes.exact({
696
+ country: PropTypes.string.isRequired,
697
+ delivery_window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
698
+ });
699
+
700
+ T['io.flow.fulfillment.v0.models.tier_summary'] = PropTypes.exact({
701
+ id: PropTypes.string.isRequired,
702
+ experience: T['io.flow.fulfillment.v0.models.fulfillment_experience_reference'],
703
+ integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
704
+ name: PropTypes.string.isRequired,
705
+ services: PropTypes.arrayOf(PropTypes.string).isRequired,
706
+ strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
707
+ visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
708
+ currency: PropTypes.string.isRequired,
709
+ display: T['io.flow.fulfillment.v0.models.tier_display'],
710
+ message: PropTypes.string,
711
+ settings: T['io.flow.fulfillment.v0.models.tier_settings'],
712
+ });
713
+
714
+ T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
715
+ T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
716
+
717
+ T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
718
+ status: T['io.flow.fulfillment.v0.enums.item_availability_status'].isRequired,
719
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
720
+ });
721
+
722
+ T['io.flow.fulfillment.v0.models.shipping_configuration_item_availability'] = PropTypes.exact({
723
+ id: PropTypes.string.isRequired,
724
+ item: T['io.flow.common.v0.models.item_reference'].isRequired,
725
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
726
+ availabilities: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_availability']).isRequired,
727
+ });
728
+
729
+ T['io.flow.common.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
730
+
731
+ T['io.flow.inventory.v0.models.inventory_update_version'] = PropTypes.exact({
732
+ id: PropTypes.string.isRequired,
733
+ timestamp: PropTypes.string.isRequired,
734
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
735
+ inventory_update: T['io.flow.inventory.v0.models.inventory_update'].isRequired,
736
+ });
737
+
738
+ T['io.flow.inventory.v0.models.inventory_snapshot_version'] = PropTypes.exact({
739
+ id: PropTypes.string.isRequired,
740
+ timestamp: PropTypes.string.isRequired,
741
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
742
+ inventory_snapshot: T['io.flow.inventory.v0.models.inventory_snapshot'].isRequired,
743
+ });
744
+
745
+ T['io.flow.inventory.v0.models.inventory_rule_version'] = PropTypes.exact({
746
+ id: PropTypes.string.isRequired,
747
+ timestamp: PropTypes.string.isRequired,
748
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
749
+ inventory_rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
750
+ });
751
+
752
+ T['io.flow.catalog.v0.models.subcatalog_version'] = PropTypes.exact({
753
+ id: PropTypes.string.isRequired,
754
+ timestamp: PropTypes.string.isRequired,
755
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
756
+ subcatalog: T['io.flow.catalog.v0.models.subcatalog'].isRequired,
757
+ });
758
+
759
+ T['io.flow.catalog.v0.models.catalog_version'] = PropTypes.exact({
760
+ id: PropTypes.string.isRequired,
761
+ timestamp: PropTypes.string.isRequired,
762
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
763
+ catalog: T['io.flow.catalog.v0.models.catalog'].isRequired,
764
+ });
765
+
766
+ T['io.flow.catalog.v0.models.attribute_version'] = PropTypes.exact({
767
+ id: PropTypes.string.isRequired,
768
+ timestamp: PropTypes.string.isRequired,
769
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
770
+ attribute: T['io.flow.catalog.v0.models.attribute'].isRequired,
771
+ });
772
+
773
+ T['io.flow.currency.v0.models.rate_version'] = PropTypes.exact({
774
+ id: PropTypes.string.isRequired,
775
+ timestamp: PropTypes.string.isRequired,
776
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
777
+ rate: T['io.flow.currency.v0.models.rate'].isRequired,
778
+ });
779
+
780
+ T['io.flow.fulfillment.v0.models.tier_version'] = PropTypes.exact({
781
+ id: PropTypes.string.isRequired,
782
+ timestamp: PropTypes.string.isRequired,
783
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
784
+ tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
785
+ });
786
+
787
+ T['io.flow.common.v0.models.partner_reference'] = PropTypes.exact({
788
+ id: PropTypes.string.isRequired,
789
+ });
790
+
791
+ T['io.flow.fulfillment.v0.models.service_summary'] = PropTypes.exact({
792
+ discriminator: PropTypes.oneOf(['service_summary']).isRequired,
793
+ id: PropTypes.string.isRequired,
794
+ carrier: T['io.flow.fulfillment.v0.models.carrier_reference'].isRequired,
795
+ name: PropTypes.string.isRequired,
796
+ center_code: PropTypes.string,
797
+ });
798
+
799
+ T['io.flow.fulfillment.v0.unions.service_description'] = PropTypes.oneOfType([
800
+ T['io.flow.fulfillment.v0.models.service_summary'],
801
+ T['io.flow.fulfillment.v0.models.service_unknown'],
802
+ ]);
803
+
804
+ T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
805
+ discriminator: PropTypes.oneOf(['center_reference']).isRequired,
806
+ organization_id: PropTypes.string.isRequired,
807
+ center_key: PropTypes.string.isRequired,
808
+ });
809
+
810
+ T['io.flow.common.v0.models.address'] = PropTypes.exact({
811
+ text: PropTypes.string,
812
+ streets: PropTypes.arrayOf(PropTypes.string),
813
+ street_number: PropTypes.string,
814
+ city: PropTypes.string,
815
+ province: PropTypes.string,
816
+ postal: PropTypes.string,
817
+ country: PropTypes.string,
818
+ latitude: PropTypes.string,
819
+ longitude: PropTypes.string,
820
+ });
821
+
822
+ T['io.flow.fulfillment.v0.enums.center_capability'] = PropTypes.oneOf(['international', 'domestic', 'crossdock', 'commercial_invoice']);
823
+
824
+ T['io.flow.fulfillment.v0.models.number_range'] = PropTypes.exact({
825
+ min: PropTypes.number.isRequired,
826
+ max: PropTypes.number.isRequired,
827
+ });
828
+
829
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
830
+ discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
831
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
832
+ num_events: PropTypes.number.isRequired,
833
+ });
834
+
835
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
836
+ discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
837
+ organization_id: PropTypes.string.isRequired,
838
+ num_events: PropTypes.number.isRequired,
839
+ });
840
+
841
+ T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
842
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'],
843
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
844
+ ]);
845
+
846
+ T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
847
+ 'area',
848
+ 'city',
849
+ 'county',
850
+ 'department',
851
+ 'dependency',
852
+ 'district',
853
+ 'do_si',
854
+ 'emirate',
855
+ 'entity',
856
+ 'island',
857
+ 'municipality',
858
+ 'oblast',
859
+ 'outlying_area',
860
+ 'parish',
861
+ 'prefecture',
862
+ 'province',
863
+ 'state',
864
+ 'territory',
865
+ 'other',
866
+ ]);
867
+
868
+ T['io.flow.reference.v0.models.payment_method_image'] = PropTypes.exact({
869
+ url: PropTypes.string.isRequired,
870
+ width: PropTypes.number.isRequired,
871
+ height: PropTypes.number.isRequired,
872
+ });
873
+
874
+ T['io.flow.reference.v0.enums.payment_method_capability'] = PropTypes.oneOf(['credit', 'debit']);
875
+
876
+ T['io.flow.reference.v0.models.payment_method_images'] = PropTypes.exact({
877
+ small: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
878
+ medium: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
879
+ large: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
880
+ });
881
+
882
+ T['io.flow.reference.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
883
+
884
+ T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
885
+ id: PropTypes.string.isRequired,
886
+ type: T['io.flow.reference.v0.enums.payment_method_type'].isRequired,
887
+ name: PropTypes.string.isRequired,
888
+ images: T['io.flow.reference.v0.models.payment_method_images'].isRequired,
889
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
890
+ capabilities: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_capability']),
891
+ });
892
+
893
+ T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
894
+ decimal: PropTypes.string.isRequired,
895
+ group: PropTypes.string.isRequired,
896
+ });
897
+
898
+ T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
899
+ id: PropTypes.string.isRequired,
900
+ name: PropTypes.string.isRequired,
901
+ country: PropTypes.string.isRequired,
902
+ language: PropTypes.string.isRequired,
903
+ numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
904
+ });
905
+
906
+ T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
907
+ locale: T['io.flow.reference.v0.models.locale'].isRequired,
908
+ name: PropTypes.string.isRequired,
909
+ });
910
+
911
+ T['io.flow.reference.v0.models.province'] = PropTypes.exact({
912
+ id: PropTypes.string.isRequired,
913
+ iso_3166_2: PropTypes.string.isRequired,
914
+ name: PropTypes.string.isRequired,
915
+ country: PropTypes.string.isRequired,
916
+ province_type: T['io.flow.reference.v0.enums.province_type'].isRequired,
917
+ translations: PropTypes.arrayOf(T['io.flow.reference.v0.models.localized_translation']),
918
+ });
919
+
920
+ T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
921
+ primary: PropTypes.string.isRequired,
922
+ narrow: PropTypes.string,
923
+ });
924
+
925
+ T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
926
+ name: PropTypes.string.isRequired,
927
+ iso_4217_3: PropTypes.string.isRequired,
928
+ number_decimals: PropTypes.number.isRequired,
929
+ symbols: T['io.flow.reference.v0.models.currency_symbols'],
930
+ default_locale: PropTypes.string,
931
+ });
932
+
933
+ T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
934
+ id: PropTypes.string.isRequired,
935
+ name: PropTypes.string.isRequired,
936
+ tracking_url: PropTypes.string.isRequired,
937
+ });
938
+
939
+ T['io.flow.reference.v0.models.carrier_service'] = PropTypes.exact({
940
+ id: PropTypes.string.isRequired,
941
+ carrier: T['io.flow.reference.v0.models.carrier'].isRequired,
942
+ name: PropTypes.string.isRequired,
943
+ });
944
+
945
+ T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
946
+
947
+ T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
948
+ 'base_price',
949
+ 'discount',
950
+ 'currency_margin',
951
+ 'percent_item_margin',
952
+ 'fixed_item_margin',
953
+ 'duties_item_price',
954
+ 'duties_added_margin',
955
+ 'duties_rounding',
956
+ 'duties_deminimis',
957
+ 'vat_item_price',
958
+ 'vat_added_margin',
959
+ 'vat_rounding',
960
+ 'vat_duties_item_price',
961
+ 'vat_duties_added_margin',
962
+ 'vat_duties_rounding',
963
+ 'vat_deminimis',
964
+ 'item_price_percent_sales_margin',
965
+ 'margins_percent_sales_margin',
966
+ 'rounding_percent_sales_margin',
967
+ 'vat_percent_sales_margin',
968
+ 'vat_duty_percent_sales_margin',
969
+ 'duty_percent_sales_margin',
970
+ ]);
971
+
972
+ T['io.flow.price.v0.models.price_book_item_schedule'] = PropTypes.exact({
973
+ starts_at: PropTypes.string.isRequired,
974
+ ends_at: PropTypes.string,
975
+ });
976
+
977
+ T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
978
+ price_book_key: PropTypes.string.isRequired,
979
+ item_query: PropTypes.string.isRequired,
980
+ amount: PropTypes.number.isRequired,
981
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
982
+ item_attributes: PropTypes.objectOf(PropTypes.string),
983
+ });
984
+
985
+ T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
986
+ price_book_key: PropTypes.string.isRequired,
987
+ item_number: PropTypes.string.isRequired,
988
+ amount: PropTypes.number.isRequired,
989
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
990
+ item_attributes: PropTypes.objectOf(PropTypes.string),
991
+ });
992
+
993
+ T['io.flow.price.v0.models.price_book_reference'] = PropTypes.exact({
994
+ id: PropTypes.string.isRequired,
995
+ key: PropTypes.string.isRequired,
996
+ });
997
+
998
+ T['io.flow.common.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
999
+
1000
+ T['io.flow.price.v0.models.price_detail_component'] = PropTypes.exact({
1001
+ key: T['io.flow.price.v0.enums.price_detail_component_key'].isRequired,
1002
+ amount: PropTypes.number.isRequired,
1003
+ label: PropTypes.string.isRequired,
1004
+ name: PropTypes.string,
1005
+ });
1006
+
1007
+ T['io.flow.price.v0.enums.price_detail_key'] = PropTypes.oneOf(['item_price', 'margins', 'vat', 'duty', 'rounding', 'adjustment']);
1008
+
1009
+ T['io.flow.price.v0.models.price_detail'] = PropTypes.exact({
1010
+ key: T['io.flow.price.v0.enums.price_detail_key'].isRequired,
1011
+ components: PropTypes.arrayOf(T['io.flow.price.v0.models.price_detail_component']).isRequired,
1012
+ amount: PropTypes.number.isRequired,
1013
+ label: PropTypes.string.isRequired,
1014
+ name: PropTypes.string,
1015
+ basis: PropTypes.number,
1016
+ });
1017
+
1018
+ T['io.flow.price.v0.models.deminimis_per_item'] = PropTypes.exact({
1019
+ discriminator: PropTypes.oneOf(['deminimis_per_item']).isRequired,
1020
+ currency: PropTypes.string.isRequired,
1021
+ minimum: PropTypes.number,
1022
+ maximum: PropTypes.number,
1023
+ });
1024
+
1025
+ T['io.flow.price.v0.enums.levy_component'] = PropTypes.oneOf(['goods', 'duty', 'insurance', 'freight', 'vat']);
1026
+
1027
+ T['io.flow.price.v0.models.deminimis_simple'] = PropTypes.exact({
1028
+ discriminator: PropTypes.oneOf(['deminimis_simple']).isRequired,
1029
+ value: PropTypes.number,
1030
+ currency: PropTypes.string.isRequired,
1031
+ components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
1032
+ minimum: PropTypes.number,
1033
+ });
1034
+
1035
+ T['io.flow.price.v0.unions.deminimis'] = PropTypes.oneOfType([
1036
+ T['io.flow.price.v0.models.deminimis_simple'],
1037
+ T['io.flow.price.v0.models.deminimis_per_item'],
1038
+ ]);
1039
+
1040
+ T['io.flow.price.v0.models.tax'] = PropTypes.exact({
1041
+ name: PropTypes.string.isRequired,
1042
+ rate: PropTypes.number.isRequired,
1043
+ components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
1044
+ deminimis: T['io.flow.price.v0.unions.deminimis'],
1045
+ });
1046
+
1047
+ T['io.flow.price.v0.models.duty'] = PropTypes.exact({
1048
+ rate: PropTypes.number.isRequired,
1049
+ components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
1050
+ deminimis: T['io.flow.price.v0.unions.deminimis'],
1051
+ name: PropTypes.string,
1052
+ });
1053
+
1054
+ T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
1055
+ T['io.flow.common.v0.enums.currency_symbol_format'] = PropTypes.oneOf(['narrow', 'primary']);
1056
+
1057
+ T['io.flow.price.v0.models.currency_format'] = PropTypes.exact({
1058
+ symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
1059
+ label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
1060
+ });
1061
+
1062
+ T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
1063
+
1064
+ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
1065
+ code: T['io.flow.error.v0.enums.generic_error_code'].isRequired,
1066
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
1067
+ });
1068
+
1069
+ T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
1070
+ discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
1071
+ interval: PropTypes.number.isRequired,
1072
+ days: PropTypes.arrayOf(PropTypes.number).isRequired,
1073
+ });
1074
+
1075
+ T['io.flow.common.v0.models.repeat_daily'] = PropTypes.exact({
1076
+ discriminator: PropTypes.oneOf(['repeat_daily']).isRequired,
1077
+ interval: PropTypes.number.isRequired,
1078
+ });
1079
+
1080
+ T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
1081
+ discriminator: PropTypes.oneOf(['repeat_hourly']).isRequired,
1082
+ interval: PropTypes.number.isRequired,
1083
+ });
1084
+
1085
+ T['io.flow.common.v0.models.logo_image_svg'] = PropTypes.exact({
1086
+ discriminator: PropTypes.oneOf(['svg']).isRequired,
1087
+ url: PropTypes.string.isRequired,
1088
+ });
1089
+
1090
+ T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
1091
+ discriminator: PropTypes.oneOf(['user_reference']).isRequired,
1092
+ id: PropTypes.string.isRequired,
1093
+ });
1094
+
1095
+ T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
1096
+ T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
1097
+ T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
1098
+ T['io.flow.common.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
1099
+ T['io.flow.common.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
1100
+
1101
+ T['io.flow.common.v0.models.rounding'] = PropTypes.exact({
1102
+ type: T['io.flow.common.v0.enums.rounding_type'].isRequired,
1103
+ method: T['io.flow.common.v0.enums.rounding_method'].isRequired,
1104
+ value: PropTypes.number.isRequired,
1105
+ });
1106
+
1107
+ T['io.flow.price.v0.models.pricing'] = PropTypes.exact({
1108
+ vat: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
1109
+ duty: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
1110
+ rounding: T['io.flow.common.v0.models.rounding'],
1111
+ });
1112
+
1113
+ T['io.flow.price.v0.models.price_equation'] = PropTypes.exact({
1114
+ contracted_rate: PropTypes.number.isRequired,
1115
+ rate: PropTypes.number.isRequired,
1116
+ pricing: T['io.flow.price.v0.models.pricing'].isRequired,
1117
+ base_price: PropTypes.number.isRequired,
1118
+ discount: PropTypes.number.isRequired,
1119
+ fixed_margin: PropTypes.number.isRequired,
1120
+ percent_margin: PropTypes.number.isRequired,
1121
+ insurance: PropTypes.number.isRequired,
1122
+ freight: PropTypes.number.isRequired,
1123
+ duty: T['io.flow.price.v0.models.duty'],
1124
+ tax: T['io.flow.price.v0.models.tax'],
1125
+ percent_sales_margin: PropTypes.number.isRequired,
1126
+ });
1127
+
1128
+ T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
1129
+ 'sunday',
1130
+ 'monday',
1131
+ 'tuesday',
1132
+ 'wednesday',
1133
+ 'thursday',
1134
+ 'friday',
1135
+ 'saturday',
1136
+ ]);
1137
+
1138
+ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
1139
+ day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
1140
+ hour_of_day: PropTypes.string.isRequired,
1141
+ minute_of_hour: PropTypes.string.isRequired,
1142
+ });
1143
+
1144
+ T['io.flow.fulfillment.v0.models.available_service'] = PropTypes.exact({
1145
+ service: PropTypes.string.isRequired,
1146
+ scheduled_pickups: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.scheduled_pickup']),
1147
+ lead_days: T['io.flow.fulfillment.v0.models.number_range'],
1148
+ });
1149
+
1150
+ T['io.flow.common.v0.models.repeat_weekly'] = PropTypes.exact({
1151
+ discriminator: PropTypes.oneOf(['repeat_weekly']).isRequired,
1152
+ interval: PropTypes.number.isRequired,
1153
+ days_of_week: PropTypes.arrayOf(T['io.flow.common.v0.enums.day_of_week']).isRequired,
1154
+ });
1155
+
1156
+ T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
1157
+ T['io.flow.common.v0.models.repeat_hourly'],
1158
+ T['io.flow.common.v0.models.repeat_daily'],
1159
+ T['io.flow.common.v0.models.repeat_weekly'],
1160
+ T['io.flow.common.v0.models.repeat_monthly'],
1161
+ ]);
1162
+
1163
+ T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
1164
+ id: PropTypes.string.isRequired,
1165
+ key: PropTypes.string.isRequired,
1166
+ });
1167
+
1168
+ T['io.flow.common.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
1169
+ T['io.flow.common.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
1170
+
1171
+ T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
1172
+ country: PropTypes.string.isRequired,
1173
+ base_currency: PropTypes.string.isRequired,
1174
+ language: PropTypes.string.isRequired,
1175
+ locale: PropTypes.string.isRequired,
1176
+ timezone: PropTypes.string.isRequired,
1177
+ });
1178
+
1179
+ T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
1180
+
1181
+ T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
1182
+ name: PropTypes.string,
1183
+ environment: T['io.flow.common.v0.enums.environment'],
1184
+ parent_id: PropTypes.string,
1185
+ defaults: T['io.flow.common.v0.models.organization_defaults'],
1186
+ status: T['io.flow.common.v0.enums.organization_status'],
1187
+ });
1188
+
1189
+ T['io.flow.organization.v0.models.organization_form'] = PropTypes.exact({
1190
+ id: PropTypes.string,
1191
+ name: PropTypes.string,
1192
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1193
+ parent_id: PropTypes.string,
1194
+ defaults: T['io.flow.common.v0.models.organization_defaults'],
1195
+ status: T['io.flow.common.v0.enums.organization_status'],
1196
+ type: T['io.flow.common.v0.enums.organization_type'],
1197
+ });
1198
+
1199
+ T['io.flow.organization.v0.models.organization_authorization_form'] = PropTypes.exact({
1200
+ organization: PropTypes.string.isRequired,
1201
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1202
+ });
1203
+
1204
+ T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
1205
+ role: T['io.flow.common.v0.enums.role'],
1206
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1207
+ });
1208
+
1209
+ T['io.flow.common.v0.models.organization_summary'] = PropTypes.exact({
1210
+ id: PropTypes.string.isRequired,
1211
+ name: PropTypes.string.isRequired,
1212
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1213
+ });
1214
+
1215
+ T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
1216
+ number: PropTypes.string.isRequired,
1217
+ country: PropTypes.string.isRequired,
1218
+ });
1219
+
1220
+ T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
1221
+ discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
1222
+ id: PropTypes.string.isRequired,
1223
+ });
1224
+
1225
+ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
1226
+ discriminator: PropTypes.oneOf(['organization']).isRequired,
1227
+ id: PropTypes.string.isRequired,
1228
+ name: PropTypes.string.isRequired,
1229
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1230
+ parent: T['io.flow.common.v0.models.organization_reference'],
1231
+ defaults: T['io.flow.common.v0.models.organization_defaults'],
1232
+ created_at: PropTypes.string,
1233
+ status: T['io.flow.common.v0.enums.organization_status'],
1234
+ type: T['io.flow.common.v0.enums.organization_type'],
1235
+ });
1236
+
1237
+ T['io.flow.organization.v0.models.organization_version'] = PropTypes.exact({
1238
+ id: PropTypes.string.isRequired,
1239
+ timestamp: PropTypes.string.isRequired,
1240
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1241
+ organization: T['io.flow.common.v0.models.organization'].isRequired,
1242
+ });
1243
+
1244
+ T['io.flow.common.v0.unions.expandable_organization'] = PropTypes.oneOfType([
1245
+ T['io.flow.common.v0.models.organization'],
1246
+ T['io.flow.common.v0.models.organization_reference'],
1247
+ ]);
1248
+
1249
+ T['io.flow.common.v0.enums.margin_type'] = PropTypes.oneOf(['fixed', 'percent']);
1250
+
1251
+ T['io.flow.common.v0.models.margin'] = PropTypes.exact({
1252
+ type: T['io.flow.common.v0.enums.margin_type'].isRequired,
1253
+ value: PropTypes.number.isRequired,
1254
+ });
1255
+
1256
+ T['io.flow.common.v0.models.logo_image_static'] = PropTypes.exact({
1257
+ url: PropTypes.string.isRequired,
1258
+ width: PropTypes.number.isRequired,
1259
+ height: PropTypes.number.isRequired,
1260
+ });
1261
+
1262
+ T['io.flow.common.v0.models.logo_image_set_static'] = PropTypes.exact({
1263
+ discriminator: PropTypes.oneOf(['static']).isRequired,
1264
+ small: T['io.flow.common.v0.models.logo_image_static'],
1265
+ medium: T['io.flow.common.v0.models.logo_image_static'].isRequired,
1266
+ large: T['io.flow.common.v0.models.logo_image_static'],
1267
+ });
1268
+
1269
+ T['io.flow.common.v0.unions.logo_image'] = PropTypes.oneOfType([
1270
+ T['io.flow.common.v0.models.logo_image_svg'],
1271
+ T['io.flow.common.v0.models.logo_image_set_static'],
1272
+ ]);
1273
+
1274
+ T['io.flow.common.v0.models.input_specification_limitation_max'] = PropTypes.exact({
1275
+ discriminator: PropTypes.oneOf(['input_specification_limitation_max']).isRequired,
1276
+ max: PropTypes.number.isRequired,
1277
+ });
1278
+
1279
+ T['io.flow.common.v0.unions.input_specification_limitation'] = PropTypes.oneOfType([T['io.flow.common.v0.models.input_specification_limitation_max']]);
1280
+ T['io.flow.common.v0.enums.input_specification_type'] = PropTypes.oneOf(['text', 'number']);
1281
+
1282
+ T['io.flow.common.v0.models.input_specification_limitations'] = PropTypes.exact({
1283
+ limitations: PropTypes.arrayOf(T['io.flow.common.v0.unions.input_specification_limitation']),
1284
+ });
1285
+
1286
+ T['io.flow.common.v0.models.input_specification'] = PropTypes.exact({
1287
+ type: T['io.flow.common.v0.enums.input_specification_type'].isRequired,
1288
+ name: PropTypes.string.isRequired,
1289
+ display_text: PropTypes.string,
1290
+ });
1291
+
1292
+ T['io.flow.common.v0.models.input_form_specification'] = PropTypes.exact({
1293
+ inputs: PropTypes.arrayOf(T['io.flow.common.v0.models.input_specification']),
1294
+ limitations: T['io.flow.common.v0.models.input_specification_limitations'],
1295
+ });
1296
+
1297
+ T['io.flow.common.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
1298
+
1299
+ T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
1300
+ currency: PropTypes.string.isRequired,
1301
+ name: PropTypes.string.isRequired,
1302
+ includes: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
1303
+ status: T['io.flow.common.v0.enums.price_book_status'],
1304
+ });
1305
+
1306
+ T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
1307
+ key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
1308
+ label: PropTypes.string.isRequired,
1309
+ });
1310
+
1311
+ T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
1312
+ id: PropTypes.string.isRequired,
1313
+ key: PropTypes.string.isRequired,
1314
+ currency: PropTypes.string.isRequired,
1315
+ name: PropTypes.string.isRequired,
1316
+ includes: T['io.flow.common.v0.models.included_levies'].isRequired,
1317
+ status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
1318
+ });
1319
+
1320
+ T['io.flow.common.v0.models.datetime_range'] = PropTypes.exact({
1321
+ from: PropTypes.string.isRequired,
1322
+ to: PropTypes.string.isRequired,
1323
+ });
1324
+
1325
+ T['io.flow.common.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
1326
+
1327
+ T['io.flow.common.v0.models.exception'] = PropTypes.exact({
1328
+ type: T['io.flow.common.v0.enums.exception_type'].isRequired,
1329
+ datetime_range: T['io.flow.common.v0.models.datetime_range'].isRequired,
1330
+ });
1331
+
1332
+ T['io.flow.common.v0.models.schedule'] = PropTypes.exact({
1333
+ calendar: T['io.flow.common.v0.enums.calendar'],
1334
+ holiday: T['io.flow.common.v0.enums.holiday_calendar'].isRequired,
1335
+ exception: PropTypes.arrayOf(T['io.flow.common.v0.models.exception']).isRequired,
1336
+ cutoff: PropTypes.string,
1337
+ min_lead_time: PropTypes.number,
1338
+ max_lead_time: PropTypes.number,
1339
+ });
1340
+
1341
+ T['io.flow.common.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec', 'zaz']);
1342
+
1343
+ T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
1344
+ name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
1345
+ number: PropTypes.string.isRequired,
1346
+ issuing_country: PropTypes.string,
1347
+ });
1348
+
1349
+ T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
1350
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
1351
+ name: PropTypes.string.isRequired,
1352
+ vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
1353
+ identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
1354
+ streets: PropTypes.arrayOf(PropTypes.string).isRequired,
1355
+ city: PropTypes.string.isRequired,
1356
+ province: PropTypes.string,
1357
+ postal: PropTypes.string,
1358
+ country: PropTypes.string.isRequired,
1359
+ phone: PropTypes.string,
1360
+ email: PropTypes.string,
1361
+ });
1362
+
1363
+ T['io.flow.common.v0.enums.unit_of_time'] = PropTypes.oneOf(['year', 'month', 'week', 'day', 'hour', 'minute']);
1364
+
1365
+ T['io.flow.fulfillment.v0.models.estimated_window'] = PropTypes.exact({
1366
+ from: PropTypes.number.isRequired,
1367
+ to: PropTypes.number.isRequired,
1368
+ unit: T['io.flow.common.v0.enums.unit_of_time'].isRequired,
1369
+ });
1370
+
1371
+ T['io.flow.common.v0.models.duration'] = PropTypes.exact({
1372
+ unit: T['io.flow.common.v0.enums.unit_of_time'].isRequired,
1373
+ value: PropTypes.number.isRequired,
1374
+ });
1375
+
1376
+ T['io.flow.common.v0.models.money'] = PropTypes.exact({
1377
+ amount: PropTypes.number.isRequired,
1378
+ currency: PropTypes.string.isRequired,
1379
+ });
1380
+
1381
+ T['io.flow.fulfillment.v0.models.outbound_carton_fee'] = PropTypes.exact({
1382
+ discriminator: PropTypes.oneOf(['outbound_carton_fee']).isRequired,
1383
+ amount: T['io.flow.common.v0.models.money'].isRequired,
1384
+ });
1385
+
1386
+ T['io.flow.fulfillment.v0.models.inbound_carton_fee'] = PropTypes.exact({
1387
+ discriminator: PropTypes.oneOf(['inbound_carton_fee']).isRequired,
1388
+ amount: T['io.flow.common.v0.models.money'].isRequired,
1389
+ });
1390
+
1391
+ T['io.flow.fulfillment.v0.models.flat_rate_form'] = PropTypes.exact({
1392
+ discriminator: PropTypes.oneOf(['flat_rate_form']).isRequired,
1393
+ price: T['io.flow.common.v0.models.money'].isRequired,
1394
+ zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
1395
+ });
1396
+
1397
+ T['io.flow.fulfillment.v0.models.commercial_invoice_fee'] = PropTypes.exact({
1398
+ discriminator: PropTypes.oneOf(['commercial_invoice_fee']).isRequired,
1399
+ amount: T['io.flow.common.v0.models.money'].isRequired,
1400
+ });
1401
+
1402
+ T['io.flow.fulfillment.v0.unions.partner_center_fee'] = PropTypes.oneOfType([
1403
+ T['io.flow.fulfillment.v0.models.commercial_invoice_fee'],
1404
+ T['io.flow.fulfillment.v0.models.inbound_carton_fee'],
1405
+ T['io.flow.fulfillment.v0.models.outbound_carton_fee'],
1406
+ ]);
1407
+
1408
+ T['io.flow.fulfillment.v0.models.partner_center_form'] = PropTypes.exact({
1409
+ partner_id: PropTypes.string.isRequired,
1410
+ number: PropTypes.string,
1411
+ fees: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.partner_center_fee']),
1412
+ });
1413
+
1414
+ T['io.flow.fulfillment.v0.models.partner_center'] = PropTypes.exact({
1415
+ partner_reference: T['io.flow.common.v0.models.partner_reference'].isRequired,
1416
+ number: PropTypes.string,
1417
+ fees: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.partner_center_fee']),
1418
+ });
1419
+
1420
+ T['io.flow.fulfillment.v0.models.amount_margin_form'] = PropTypes.exact({
1421
+ discriminator: PropTypes.oneOf(['amount_margin_form']).isRequired,
1422
+ margin: T['io.flow.common.v0.models.money'].isRequired,
1423
+ });
1424
+
1425
+ T['io.flow.fulfillment.v0.unions.tier_rule_outcome_form'] = PropTypes.oneOfType([
1426
+ T['io.flow.fulfillment.v0.models.amount_margin_form'],
1427
+ T['io.flow.fulfillment.v0.models.flat_rate_form'],
1428
+ T['io.flow.fulfillment.v0.models.at_cost'],
1429
+ T['io.flow.fulfillment.v0.models.percent_margin'],
1430
+ ]);
1431
+
1432
+ T['io.flow.fulfillment.v0.models.tier_rule_form'] = PropTypes.exact({
1433
+ position: PropTypes.number,
1434
+ query: PropTypes.string.isRequired,
1435
+ outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome_form'].isRequired,
1436
+ });
1437
+
1438
+ T['io.flow.fulfillment.v0.models.tier_form'] = PropTypes.exact({
1439
+ currency: PropTypes.string.isRequired,
1440
+ integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
1441
+ name: PropTypes.string.isRequired,
1442
+ message: PropTypes.string,
1443
+ rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule_form']).isRequired,
1444
+ services: PropTypes.arrayOf(PropTypes.string).isRequired,
1445
+ strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
1446
+ visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
1447
+ description: PropTypes.string,
1448
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
1449
+ display: T['io.flow.fulfillment.v0.models.tier_display_form'],
1450
+ shipping_lane: PropTypes.string.isRequired,
1451
+ surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
1452
+ settings: T['io.flow.fulfillment.v0.models.tier_settings'],
1453
+ });
1454
+
1455
+ T['io.flow.common.v0.models.price_source_provided'] = PropTypes.exact({
1456
+ discriminator: PropTypes.oneOf(['provided']).isRequired,
1457
+ price: T['io.flow.common.v0.models.money'].isRequired,
1458
+ });
1459
+
1460
+ T['io.flow.common.v0.models.price_source_price_book'] = PropTypes.exact({
1461
+ discriminator: PropTypes.oneOf(['price_book']).isRequired,
1462
+ price: T['io.flow.common.v0.models.money'].isRequired,
1463
+ includes: T['io.flow.common.v0.models.included_levies'].isRequired,
1464
+ price_book_reference: T['io.flow.common.v0.models.price_source_price_book_reference'].isRequired,
1465
+ });
1466
+
1467
+ T['io.flow.common.v0.models.price_source_catalog'] = PropTypes.exact({
1468
+ discriminator: PropTypes.oneOf(['catalog']).isRequired,
1469
+ price: T['io.flow.common.v0.models.money'].isRequired,
1470
+ });
1471
+
1472
+ T['io.flow.common.v0.unions.price_source'] = PropTypes.oneOfType([
1473
+ T['io.flow.common.v0.models.price_source_price_book'],
1474
+ T['io.flow.common.v0.models.price_source_catalog'],
1475
+ T['io.flow.common.v0.models.price_source_provided'],
1476
+ ]);
1477
+
1478
+ T['io.flow.common.v0.models.money_with_optional_base'] = PropTypes.exact({
1479
+ currency: PropTypes.string.isRequired,
1480
+ amount: PropTypes.number.isRequired,
1481
+ base: T['io.flow.common.v0.models.money'],
1482
+ });
1483
+
1484
+ T['io.flow.fulfillment.v0.models.delivery_item'] = PropTypes.exact({
1485
+ id: PropTypes.string,
1486
+ number: PropTypes.string.isRequired,
1487
+ quantity: PropTypes.number.isRequired,
1488
+ shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
1489
+ price: T['io.flow.common.v0.models.money_with_optional_base'],
1490
+ attributes: PropTypes.objectOf(PropTypes.string),
1491
+ center: PropTypes.string,
1492
+ line_number: PropTypes.number,
1493
+ });
1494
+
1495
+ T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
1496
+ currency: PropTypes.string.isRequired,
1497
+ amount: PropTypes.number.isRequired,
1498
+ base: T['io.flow.common.v0.models.money'].isRequired,
1499
+ });
1500
+
1501
+ T['io.flow.fulfillment.v0.models.quote_line_item_form'] = PropTypes.exact({
1502
+ number: PropTypes.string.isRequired,
1503
+ quantity: PropTypes.number.isRequired,
1504
+ shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
1505
+ price: T['io.flow.common.v0.models.money_with_base'].isRequired,
1506
+ attributes: PropTypes.objectOf(PropTypes.string),
1507
+ center: PropTypes.string,
1508
+ });
1509
+
1510
+ T['io.flow.common.v0.models.line_item'] = PropTypes.exact({
1511
+ number: PropTypes.string.isRequired,
1512
+ quantity: PropTypes.number.isRequired,
1513
+ price: T['io.flow.common.v0.models.money'].isRequired,
1514
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
1515
+ center: PropTypes.string,
1516
+ discount: T['io.flow.common.v0.models.money'],
1517
+ });
1518
+
1519
+ T['io.flow.common.v0.models.discount_offer_percent'] = PropTypes.exact({
1520
+ discriminator: PropTypes.oneOf(['discount_offer_percent']).isRequired,
1521
+ percent: PropTypes.number.isRequired,
1522
+ });
1523
+
1524
+ T['io.flow.common.v0.models.discount_offer_fixed'] = PropTypes.exact({
1525
+ discriminator: PropTypes.oneOf(['discount_offer_fixed']).isRequired,
1526
+ money: T['io.flow.common.v0.models.money'].isRequired,
1527
+ });
1528
+
1529
+ T['io.flow.common.v0.enums.discount_target'] = PropTypes.oneOf(['item', 'shipping']);
1530
+
1531
+ T['io.flow.common.v0.unions.discount_offer'] = PropTypes.oneOfType([
1532
+ T['io.flow.common.v0.models.discount_offer_fixed'],
1533
+ T['io.flow.common.v0.models.discount_offer_percent'],
1534
+ ]);
1535
+
1536
+ T['io.flow.common.v0.models.discount_form'] = PropTypes.exact({
1537
+ offer: T['io.flow.common.v0.unions.discount_offer'].isRequired,
1538
+ target: T['io.flow.common.v0.enums.discount_target'],
1539
+ label: PropTypes.string,
1540
+ });
1541
+
1542
+ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
1543
+ discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
1544
+ });
1545
+
1546
+ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
1547
+ number: PropTypes.string.isRequired,
1548
+ quantity: PropTypes.number.isRequired,
1549
+ shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
1550
+ price: T['io.flow.common.v0.models.money'],
1551
+ attributes: PropTypes.objectOf(PropTypes.string),
1552
+ center: PropTypes.string,
1553
+ discount: T['io.flow.common.v0.models.money'],
1554
+ discounts: T['io.flow.common.v0.models.discounts_form'],
1555
+ });
1556
+
1557
+ T['io.flow.fulfillment.v0.models.delivery_summary'] = PropTypes.exact({
1558
+ id: PropTypes.string.isRequired,
1559
+ items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
1560
+ });
1561
+
1562
+ T['io.flow.fulfillment.v0.models.delivery_version'] = PropTypes.exact({
1563
+ id: PropTypes.string.isRequired,
1564
+ timestamp: PropTypes.string.isRequired,
1565
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1566
+ delivery: T['io.flow.fulfillment.v0.models.delivery_summary'].isRequired,
1567
+ });
1568
+
1569
+ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
1570
+ 'millimeter',
1571
+ 'centimeter',
1572
+ 'inch',
1573
+ 'foot',
1574
+ 'cubic_inch',
1575
+ 'cubic_meter',
1576
+ 'gram',
1577
+ 'kilogram',
1578
+ 'meter',
1579
+ 'ounce',
1580
+ 'pound',
1581
+ ]);
1582
+
1583
+ T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
1584
+ value: PropTypes.string.isRequired,
1585
+ units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
1586
+ });
1587
+
1588
+ T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
1589
+ gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
1590
+ dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
1591
+ });
1592
+
1593
+ T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
1594
+ depth: T['io.flow.common.v0.models.measurement'],
1595
+ diameter: T['io.flow.common.v0.models.measurement'],
1596
+ length: T['io.flow.common.v0.models.measurement'],
1597
+ weight: T['io.flow.common.v0.models.measurement'],
1598
+ width: T['io.flow.common.v0.models.measurement'],
1599
+ });
1600
+
1601
+ T['io.flow.common.v0.models.dimensions'] = PropTypes.exact({
1602
+ product: T['io.flow.common.v0.models.dimension'],
1603
+ packaging: T['io.flow.common.v0.models.dimension'],
1604
+ });
1605
+
1606
+ T['io.flow.catalog.v0.models.item_form_overlay_form'] = PropTypes.exact({
1607
+ number: PropTypes.string.isRequired,
1608
+ price: PropTypes.number,
1609
+ currency: PropTypes.string,
1610
+ position: PropTypes.number,
1611
+ categories: PropTypes.arrayOf(PropTypes.string),
1612
+ description: PropTypes.string,
1613
+ attributes: PropTypes.objectOf(PropTypes.string),
1614
+ dimensions: T['io.flow.common.v0.models.dimensions'],
1615
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
1616
+ deleted_at: PropTypes.string,
1617
+ });
1618
+
1619
+ T['io.flow.catalog.v0.models.item_form'] = PropTypes.exact({
1620
+ number: PropTypes.string.isRequired,
1621
+ locale: PropTypes.string.isRequired,
1622
+ name: PropTypes.string.isRequired,
1623
+ currency: PropTypes.string.isRequired,
1624
+ price: PropTypes.number.isRequired,
1625
+ categories: PropTypes.arrayOf(PropTypes.string),
1626
+ description: PropTypes.string,
1627
+ attributes: PropTypes.objectOf(PropTypes.string),
1628
+ dimensions: T['io.flow.common.v0.models.dimensions'],
1629
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
1630
+ deleted_at: PropTypes.string,
1631
+ });
1632
+
1633
+ T['io.flow.fulfillment.v0.models.packaging'] = PropTypes.exact({
1634
+ dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
1635
+ name: PropTypes.string,
1636
+ number: PropTypes.string,
1637
+ });
1638
+
1639
+ T['io.flow.common.v0.models.name'] = PropTypes.exact({
1640
+ first: PropTypes.string,
1641
+ last: PropTypes.string,
1642
+ });
1643
+
1644
+ T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
1645
+ organization: PropTypes.string.isRequired,
1646
+ email: PropTypes.string.isRequired,
1647
+ name: T['io.flow.common.v0.models.name'],
1648
+ role: T['io.flow.common.v0.enums.role'],
1649
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
1650
+ });
1651
+
1652
+ T['io.flow.organization.v0.models.invitation'] = PropTypes.exact({
1653
+ id: PropTypes.string.isRequired,
1654
+ organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
1655
+ email: PropTypes.string.isRequired,
1656
+ name: T['io.flow.common.v0.models.name'].isRequired,
1657
+ role: T['io.flow.common.v0.enums.role'],
1658
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
1659
+ expiration: PropTypes.string.isRequired,
1660
+ });
1661
+
1662
+ T['io.flow.organization.v0.models.invitation_version'] = PropTypes.exact({
1663
+ id: PropTypes.string.isRequired,
1664
+ timestamp: PropTypes.string.isRequired,
1665
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1666
+ invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
1667
+ });
1668
+
1669
+ T['io.flow.common.v0.models.user'] = PropTypes.exact({
1670
+ discriminator: PropTypes.oneOf(['user']).isRequired,
1671
+ id: PropTypes.string.isRequired,
1672
+ email: PropTypes.string,
1673
+ name: T['io.flow.common.v0.models.name'].isRequired,
1674
+ status: T['io.flow.common.v0.enums.user_status'].isRequired,
1675
+ });
1676
+
1677
+ T['io.flow.common.v0.unions.expandable_user'] = PropTypes.oneOfType([
1678
+ T['io.flow.common.v0.models.user'],
1679
+ T['io.flow.common.v0.models.user_reference'],
1680
+ ]);
1681
+
1682
+ T['io.flow.permission.v0.models.permission_check'] = PropTypes.exact({
1683
+ authentication_technique: T['io.flow.permission.v0.enums.authentication_technique'].isRequired,
1684
+ user: T['io.flow.common.v0.unions.expandable_user'],
1685
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
1686
+ behaviors: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_behavior']).isRequired,
1687
+ routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.permitted_route']).isRequired,
1688
+ });
1689
+
1690
+ T['io.flow.organization.v0.models.membership'] = PropTypes.exact({
1691
+ id: PropTypes.string.isRequired,
1692
+ organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
1693
+ user: T['io.flow.common.v0.unions.expandable_user'].isRequired,
1694
+ role: T['io.flow.common.v0.enums.role'],
1695
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
1696
+ });
1697
+
1698
+ T['io.flow.organization.v0.models.membership_version'] = PropTypes.exact({
1699
+ id: PropTypes.string.isRequired,
1700
+ timestamp: PropTypes.string.isRequired,
1701
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1702
+ membership: T['io.flow.organization.v0.models.membership'].isRequired,
1703
+ });
1704
+
1705
+ T['io.flow.common.v0.models.contact'] = PropTypes.exact({
1706
+ name: T['io.flow.common.v0.models.name'].isRequired,
1707
+ company: PropTypes.string,
1708
+ email: PropTypes.string,
1709
+ phone: PropTypes.string,
1710
+ });
1711
+
1712
+ T['io.flow.fulfillment.v0.models.shipping_address'] = PropTypes.exact({
1713
+ contact: T['io.flow.common.v0.models.contact'].isRequired,
1714
+ location: T['io.flow.common.v0.models.address'].isRequired,
1715
+ center_key: PropTypes.string,
1716
+ center_reference: T['io.flow.fulfillment.v0.models.center_reference'],
1717
+ service: T['io.flow.fulfillment.v0.models.service_summary'],
1718
+ });
1719
+
1720
+ T['io.flow.fulfillment.v0.models.quote_summary'] = PropTypes.exact({
1721
+ id: PropTypes.string.isRequired,
1722
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1723
+ });
1724
+
1725
+ T['io.flow.fulfillment.v0.models.quote_version'] = PropTypes.exact({
1726
+ id: PropTypes.string.isRequired,
1727
+ timestamp: PropTypes.string.isRequired,
1728
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1729
+ quote: T['io.flow.fulfillment.v0.models.quote_summary'].isRequired,
1730
+ });
1731
+
1732
+ T['io.flow.fulfillment.v0.models.quote_form'] = PropTypes.exact({
1733
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1734
+ experience: PropTypes.string.isRequired,
1735
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
1736
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
1737
+ delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']),
1738
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
1739
+ });
1740
+
1741
+ T['io.flow.fulfillment.v0.models.delivery_option_form'] = PropTypes.exact({
1742
+ delivery: PropTypes.string.isRequired,
1743
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
1744
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1745
+ });
1746
+
1747
+ T['io.flow.fulfillment.v0.models.center_summary'] = PropTypes.exact({
1748
+ id: PropTypes.string.isRequired,
1749
+ key: PropTypes.string.isRequired,
1750
+ address: T['io.flow.fulfillment.v0.models.shipping_address'],
1751
+ });
1752
+
1753
+ T['io.flow.fulfillment.v0.models.center_form'] = PropTypes.exact({
1754
+ address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1755
+ packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
1756
+ name: PropTypes.string.isRequired,
1757
+ services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.available_service']).isRequired,
1758
+ schedule: T['io.flow.common.v0.models.schedule'].isRequired,
1759
+ timezone: PropTypes.string,
1760
+ key: PropTypes.string,
1761
+ capabilities: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.center_capability']),
1762
+ partner_center_form: T['io.flow.fulfillment.v0.models.partner_center_form'],
1763
+ });
1764
+
1765
+ T['io.flow.fulfillment.v0.models.center'] = PropTypes.exact({
1766
+ discriminator: PropTypes.oneOf(['center']).isRequired,
1767
+ id: PropTypes.string.isRequired,
1768
+ key: PropTypes.string.isRequired,
1769
+ address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1770
+ packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
1771
+ name: PropTypes.string.isRequired,
1772
+ services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.available_service']).isRequired,
1773
+ schedule: T['io.flow.common.v0.models.schedule'].isRequired,
1774
+ timezone: PropTypes.string.isRequired,
1775
+ capabilities: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.center_capability']),
1776
+ partner_center: T['io.flow.fulfillment.v0.models.partner_center'],
1777
+ });
1778
+
1779
+ T['io.flow.fulfillment.v0.unions.expandable_center'] = PropTypes.oneOfType([
1780
+ T['io.flow.fulfillment.v0.models.center'],
1781
+ T['io.flow.fulfillment.v0.models.center_reference'],
1782
+ ]);
1783
+
1784
+ T['io.flow.fulfillment.v0.models.shipping_lane_summary'] = PropTypes.exact({
1785
+ shipping_lane_id: PropTypes.string.isRequired,
1786
+ region: PropTypes.string.isRequired,
1787
+ centers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.expandable_center']).isRequired,
1788
+ });
1789
+
1790
+ T['io.flow.fulfillment.v0.models.center_version'] = PropTypes.exact({
1791
+ id: PropTypes.string.isRequired,
1792
+ timestamp: PropTypes.string.isRequired,
1793
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1794
+ center: T['io.flow.fulfillment.v0.models.center'].isRequired,
1795
+ });
1796
+
1797
+ T['io.flow.common.v0.models.billing_address'] = PropTypes.exact({
1798
+ name: T['io.flow.common.v0.models.name'],
1799
+ streets: PropTypes.arrayOf(PropTypes.string),
1800
+ city: PropTypes.string,
1801
+ province: PropTypes.string,
1802
+ postal: PropTypes.string,
1803
+ country: PropTypes.string,
1804
+ company: PropTypes.string,
1805
+ });
1806
+
1807
+ T['io.flow.common.v0.models.customer_invoice'] = PropTypes.exact({
1808
+ address: T['io.flow.common.v0.models.billing_address'],
1809
+ });
1810
+
1811
+ T['io.flow.common.v0.models.order_customer_form'] = PropTypes.exact({
1812
+ name: T['io.flow.common.v0.models.name'],
1813
+ number: PropTypes.string,
1814
+ phone: PropTypes.string,
1815
+ email: PropTypes.string,
1816
+ address: T['io.flow.common.v0.models.billing_address'],
1817
+ invoice: T['io.flow.common.v0.models.customer_invoice'],
1818
+ });
1819
+
1820
+ T['io.flow.common.v0.models.order_customer'] = PropTypes.exact({
1821
+ name: T['io.flow.common.v0.models.name'].isRequired,
1822
+ number: PropTypes.string,
1823
+ phone: PropTypes.string,
1824
+ email: PropTypes.string,
1825
+ address: T['io.flow.common.v0.models.billing_address'],
1826
+ invoice: T['io.flow.common.v0.models.customer_invoice'],
1827
+ });
1828
+
1829
+ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
1830
+ 'adjustment',
1831
+ 'vat_deminimis',
1832
+ 'duty_deminimis',
1833
+ 'duties_item_price',
1834
+ 'duties_freight',
1835
+ 'duties_insurance',
1836
+ 'vat_item_price',
1837
+ 'vat_freight',
1838
+ 'vat_insurance',
1839
+ 'vat_duties_item_price',
1840
+ 'vat_duties_freight',
1841
+ 'vat_duties_insurance',
1842
+ 'item_price',
1843
+ 'item_discount',
1844
+ 'rounding',
1845
+ 'insurance',
1846
+ 'shipping',
1847
+ 'shipping_discount',
1848
+ 'order_discount',
1849
+ 'subtotal_percent_sales_margin',
1850
+ 'subtotal_vat_percent_sales_margin',
1851
+ 'subtotal_duty_percent_sales_margin',
1852
+ 'vat_subsidy',
1853
+ 'duty_subsidy',
1854
+ 'remote_area_surcharge',
1855
+ 'fuel_surcharge',
1856
+ 'emergency_situation_surcharge',
1857
+ 'peak_surcharge',
1858
+ 'duties_taxes_paid_surcharge',
1859
+ 'tip',
1860
+ ]);
1861
+
1862
+ T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
1863
+
1864
+ T['io.flow.common.v0.models.price'] = PropTypes.exact({
1865
+ amount: PropTypes.number.isRequired,
1866
+ currency: PropTypes.string.isRequired,
1867
+ label: PropTypes.string.isRequired,
1868
+ });
1869
+
1870
+ T['io.flow.catalog.v0.models.localized_item_price'] = PropTypes.exact({
1871
+ key: PropTypes.oneOf(['localized_item_price']).isRequired,
1872
+ currency: PropTypes.string.isRequired,
1873
+ amount: PropTypes.number.isRequired,
1874
+ label: PropTypes.string.isRequired,
1875
+ base: T['io.flow.common.v0.models.price'].isRequired,
1876
+ includes: T['io.flow.common.v0.models.included_levies'],
1877
+ });
1878
+
1879
+ T['io.flow.catalog.v0.models.localized_adjustment'] = PropTypes.exact({
1880
+ currency: PropTypes.string.isRequired,
1881
+ amount: PropTypes.number.isRequired,
1882
+ label: PropTypes.string.isRequired,
1883
+ base: T['io.flow.common.v0.models.price'].isRequired,
1884
+ reason: T['io.flow.catalog.v0.models.adjustment_reason'].isRequired,
1885
+ });
1886
+
1887
+ T['io.flow.catalog.v0.models.localized_item_vat'] = PropTypes.exact({
1888
+ key: PropTypes.oneOf(['localized_item_vat']).isRequired,
1889
+ currency: PropTypes.string.isRequired,
1890
+ amount: PropTypes.number.isRequired,
1891
+ label: PropTypes.string.isRequired,
1892
+ base: T['io.flow.common.v0.models.price'].isRequired,
1893
+ name: PropTypes.string.isRequired,
1894
+ adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
1895
+ accuracy: T['io.flow.price.v0.enums.price_accuracy'],
1896
+ basis: T['io.flow.common.v0.models.money_with_base'],
1897
+ });
1898
+
1899
+ T['io.flow.catalog.v0.models.localized_item_duty'] = PropTypes.exact({
1900
+ key: PropTypes.oneOf(['localized_item_duty']).isRequired,
1901
+ currency: PropTypes.string.isRequired,
1902
+ amount: PropTypes.number.isRequired,
1903
+ label: PropTypes.string.isRequired,
1904
+ base: T['io.flow.common.v0.models.price'].isRequired,
1905
+ adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
1906
+ basis: T['io.flow.common.v0.models.money_with_base'],
1907
+ });
1908
+
1909
+ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
1910
+ id: PropTypes.string.isRequired,
1911
+ number: PropTypes.string.isRequired,
1912
+ key: PropTypes.string.isRequired,
1913
+ position: PropTypes.number.isRequired,
1914
+ price: T['io.flow.common.v0.models.price'],
1915
+ categories: PropTypes.arrayOf(PropTypes.string),
1916
+ description: PropTypes.string,
1917
+ attributes: PropTypes.objectOf(PropTypes.string),
1918
+ dimensions: T['io.flow.common.v0.models.dimensions'],
1919
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
1920
+ deleted_at: PropTypes.string,
1921
+ });
1922
+
1923
+ T['io.flow.fulfillment.v0.models.flat_rate'] = PropTypes.exact({
1924
+ discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
1925
+ price: T['io.flow.common.v0.models.price'].isRequired,
1926
+ zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
9
1927
  });
10
1928
 
11
- T['io.flow.ben.test.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
12
- discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
13
- organization_id: PropTypes.string.isRequired,
14
- num_events: PropTypes.number.isRequired,
1929
+ T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
1930
+ key: PropTypes.oneOf(['localized_total']).isRequired,
1931
+ currency: PropTypes.string.isRequired,
1932
+ amount: PropTypes.number.isRequired,
1933
+ label: PropTypes.string.isRequired,
1934
+ base: T['io.flow.common.v0.models.price'].isRequired,
15
1935
  });
16
1936
 
17
- T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
18
- T['io.flow.ben.test.internal.v0.models.generate_load_single_org'],
19
- T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
1937
+ T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
1938
+ T['io.flow.catalog.v0.models.localized_item_price'],
1939
+ T['io.flow.catalog.v0.models.localized_item_vat'],
1940
+ T['io.flow.catalog.v0.models.localized_item_duty'],
1941
+ T['io.flow.catalog.v0.models.localized_total'],
20
1942
  ]);
21
1943
 
22
- T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
1944
+ T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
1945
+ id: PropTypes.string.isRequired,
1946
+ cost: T['io.flow.common.v0.models.price'].isRequired,
1947
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
1948
+ price: T['io.flow.common.v0.models.price'].isRequired,
1949
+ service: T['io.flow.fulfillment.v0.models.service_reference'].isRequired,
1950
+ tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
1951
+ window: T['io.flow.common.v0.models.datetime_range'].isRequired,
1952
+ });
23
1953
 
24
- T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
25
- code: T['io.flow.error.v0.enums.generic_error_code'].isRequired,
26
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
1954
+ T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
1955
+ id: PropTypes.string.isRequired,
1956
+ timestamp: PropTypes.string.isRequired,
1957
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1958
+ delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
1959
+ });
1960
+
1961
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.exact({
1962
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
1963
+ currency: PropTypes.string.isRequired,
1964
+ amount: PropTypes.number.isRequired,
1965
+ label: PropTypes.string.isRequired,
1966
+ base: T['io.flow.common.v0.models.price'],
1967
+ });
1968
+
1969
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
1970
+ source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
1971
+ ratecard_id: PropTypes.string,
1972
+ currency: PropTypes.string.isRequired,
1973
+ amount: PropTypes.number.isRequired,
1974
+ label: PropTypes.string.isRequired,
1975
+ base: T['io.flow.common.v0.models.price'],
1976
+ components: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_component']).isRequired,
1977
+ });
1978
+
1979
+ T['io.flow.fulfillment.v0.models.price_with_base_and_details'] = PropTypes.exact({
1980
+ currency: PropTypes.string.isRequired,
1981
+ amount: PropTypes.number.isRequired,
1982
+ label: PropTypes.string.isRequired,
1983
+ base: T['io.flow.common.v0.models.price'],
1984
+ details: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_detail']),
1985
+ });
1986
+
1987
+ T['io.flow.fulfillment.v0.models.item_shipping_pricing'] = PropTypes.exact({
1988
+ min: T['io.flow.common.v0.models.price'].isRequired,
1989
+ max: T['io.flow.common.v0.models.price'],
1990
+ });
1991
+
1992
+ T['io.flow.fulfillment.v0.models.country_shipping_pricing'] = PropTypes.exact({
1993
+ pricing: T['io.flow.fulfillment.v0.models.item_shipping_pricing'].isRequired,
1994
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
1995
+ });
1996
+
1997
+ T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
1998
+ id: PropTypes.string.isRequired,
1999
+ item: T['io.flow.common.v0.models.item_reference'].isRequired,
2000
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
2001
+ country_shipping_pricings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_shipping_pricing']).isRequired,
2002
+ });
2003
+
2004
+ T['io.flow.fulfillment.v0.models.amount_margin'] = PropTypes.exact({
2005
+ discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
2006
+ margin: T['io.flow.common.v0.models.price'].isRequired,
2007
+ });
2008
+
2009
+ T['io.flow.fulfillment.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
2010
+ T['io.flow.fulfillment.v0.models.amount_margin'],
2011
+ T['io.flow.fulfillment.v0.models.at_cost'],
2012
+ T['io.flow.fulfillment.v0.models.flat_rate'],
2013
+ T['io.flow.fulfillment.v0.models.percent_margin'],
2014
+ ]);
2015
+
2016
+ T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
2017
+ id: PropTypes.string.isRequired,
2018
+ position: PropTypes.number.isRequired,
2019
+ query: PropTypes.string.isRequired,
2020
+ outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'].isRequired,
2021
+ });
2022
+
2023
+ T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
2024
+ id: PropTypes.string.isRequired,
2025
+ timestamp: PropTypes.string.isRequired,
2026
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2027
+ tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
2028
+ });
2029
+
2030
+ T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
2031
+ id: PropTypes.string.isRequired,
2032
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'].isRequired,
2033
+ integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
2034
+ name: PropTypes.string.isRequired,
2035
+ message: PropTypes.string,
2036
+ rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule']).isRequired,
2037
+ services: PropTypes.arrayOf(T['io.flow.reference.v0.models.carrier_service']).isRequired,
2038
+ strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
2039
+ visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
2040
+ currency: PropTypes.string.isRequired,
2041
+ description: PropTypes.string,
2042
+ display: T['io.flow.fulfillment.v0.models.tier_display'],
2043
+ shipping_lane: PropTypes.string,
2044
+ surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
2045
+ lane: T['io.flow.fulfillment.v0.models.shipping_lane_summary'],
2046
+ settings: T['io.flow.fulfillment.v0.models.tier_settings'],
2047
+ });
2048
+
2049
+ T['io.flow.fulfillment.v0.models.shipping_lane'] = PropTypes.exact({
2050
+ id: PropTypes.string.isRequired,
2051
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
2052
+ region: PropTypes.string.isRequired,
2053
+ centers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.expandable_center']).isRequired,
2054
+ tiers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier']).isRequired,
2055
+ query: T['io.flow.query.builder.v0.models.query'].isRequired,
2056
+ strategy: T['io.flow.fulfillment.v0.enums.lane_strategy'].isRequired,
2057
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
2058
+ preference: T['io.flow.fulfillment.v0.enums.lane_preselect_preference'],
2059
+ });
2060
+
2061
+ T['io.flow.fulfillment.v0.models.shipping_lane_version'] = PropTypes.exact({
2062
+ id: PropTypes.string.isRequired,
2063
+ timestamp: PropTypes.string.isRequired,
2064
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2065
+ shipping_lane: T['io.flow.fulfillment.v0.models.shipping_lane'].isRequired,
2066
+ });
2067
+
2068
+ T['io.flow.fulfillment.v0.models.shipping_configuration'] = PropTypes.exact({
2069
+ id: PropTypes.string.isRequired,
2070
+ name: PropTypes.string.isRequired,
2071
+ key: PropTypes.string.isRequired,
2072
+ type: T['io.flow.fulfillment.v0.enums.shipping_configuration_type'].isRequired,
2073
+ shipping_lanes: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.shipping_lane']).isRequired,
2074
+ });
2075
+
2076
+ T['io.flow.fulfillment.v0.models.shipping_configuration_version'] = PropTypes.exact({
2077
+ id: PropTypes.string.isRequired,
2078
+ timestamp: PropTypes.string.isRequired,
2079
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2080
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration'].isRequired,
2081
+ });
2082
+
2083
+ T['io.flow.fulfillment.v0.models.delivery_option'] = PropTypes.exact({
2084
+ id: PropTypes.string.isRequired,
2085
+ cost: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
2086
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
2087
+ price: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
2088
+ service: T['io.flow.fulfillment.v0.models.service_summary'].isRequired,
2089
+ tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
2090
+ window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
2091
+ rule_outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'],
2092
+ weight: T['io.flow.fulfillment.v0.models.option_weight_estimates'],
2093
+ send_to: T['io.flow.fulfillment.v0.models.shipping_address'],
2094
+ surcharge: T['io.flow.fulfillment.v0.models.price_with_base_and_details'],
2095
+ ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
2096
+ });
2097
+
2098
+ T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
2099
+ id: PropTypes.string.isRequired,
2100
+ key: PropTypes.string.isRequired,
2101
+ price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
2102
+ price: T['io.flow.common.v0.models.price'].isRequired,
2103
+ item_number: PropTypes.string.isRequired,
2104
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
2105
+ item_attributes: PropTypes.objectOf(PropTypes.string),
2106
+ });
2107
+
2108
+ T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
2109
+ currency: PropTypes.string.isRequired,
2110
+ item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
2111
+ margins: T['io.flow.price.v0.models.price_detail'].isRequired,
2112
+ vat: T['io.flow.price.v0.models.price_detail'].isRequired,
2113
+ duty: T['io.flow.price.v0.models.price_detail'].isRequired,
2114
+ rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
2115
+ price: T['io.flow.common.v0.models.price'].isRequired,
2116
+ total: T['io.flow.common.v0.models.price'].isRequired,
2117
+ adjustment: T['io.flow.price.v0.models.price_detail'],
2118
+ });
2119
+
2120
+ T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
2121
+ base: T['io.flow.price.v0.models.price_details'].isRequired,
2122
+ local: T['io.flow.price.v0.models.price_details'].isRequired,
2123
+ discount: T['io.flow.price.v0.models.price_detail'],
2124
+ local_before_discount: T['io.flow.price.v0.models.price_detail'],
2125
+ });
2126
+
2127
+ T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
2128
+ display: T['io.flow.price.v0.models.local_price_details'].isRequired,
2129
+ 'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
2130
+ });
2131
+
2132
+ T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
2133
+ currency: PropTypes.string.isRequired,
2134
+ amount: PropTypes.number.isRequired,
2135
+ label: PropTypes.string.isRequired,
2136
+ base: T['io.flow.common.v0.models.price'],
2137
+ });
2138
+
2139
+ T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
2140
+ experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
2141
+ prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
2142
+ rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']).isRequired,
2143
+ spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
2144
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
2145
+ attributes: PropTypes.objectOf(PropTypes.string),
2146
+ price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
2147
+ });
2148
+
2149
+ T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
2150
+ id: PropTypes.string.isRequired,
2151
+ number: PropTypes.string.isRequired,
2152
+ locale: PropTypes.string.isRequired,
2153
+ name: PropTypes.string.isRequired,
2154
+ price: T['io.flow.common.v0.models.price'].isRequired,
2155
+ categories: PropTypes.arrayOf(PropTypes.string).isRequired,
2156
+ description: PropTypes.string,
2157
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
2158
+ dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
2159
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
2160
+ local: T['io.flow.catalog.v0.models.local'],
2161
+ created_at: PropTypes.string,
2162
+ updated_at: PropTypes.string,
2163
+ deleted_at: PropTypes.string,
2164
+ });
2165
+
2166
+ T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
2167
+ id: PropTypes.string.isRequired,
2168
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
2169
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
2170
+ });
2171
+
2172
+ T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
2173
+ id: PropTypes.string.isRequired,
2174
+ timestamp: PropTypes.string.isRequired,
2175
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2176
+ subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
2177
+ });
2178
+
2179
+ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
2180
+ id: PropTypes.string.isRequired,
2181
+ timestamp: PropTypes.string.isRequired,
2182
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2183
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
2184
+ });
2185
+
2186
+ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
2187
+ key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
2188
+ currency: PropTypes.string.isRequired,
2189
+ amount: PropTypes.number.isRequired,
2190
+ label: PropTypes.string.isRequired,
2191
+ base: T['io.flow.common.v0.models.price'].isRequired,
2192
+ name: PropTypes.string,
2193
+ });
2194
+
2195
+ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
2196
+ 'adjustment',
2197
+ 'subtotal',
2198
+ 'vat',
2199
+ 'duty',
2200
+ 'shipping',
2201
+ 'insurance',
2202
+ 'discount',
2203
+ 'surcharges',
2204
+ 'tip',
2205
+ ]);
2206
+
2207
+ T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
2208
+ key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
2209
+ currency: PropTypes.string.isRequired,
2210
+ amount: PropTypes.number.isRequired,
2211
+ label: PropTypes.string.isRequired,
2212
+ base: T['io.flow.common.v0.models.price'].isRequired,
2213
+ components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
2214
+ name: PropTypes.string,
2215
+ rate: PropTypes.number,
2216
+ accuracy: T['io.flow.price.v0.enums.price_accuracy'],
2217
+ rate_label: PropTypes.string,
2218
+ });
2219
+
2220
+ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
2221
+ discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
2222
+ id: PropTypes.string.isRequired,
2223
+ key: PropTypes.string,
2224
+ center: T['io.flow.fulfillment.v0.models.center_summary'],
2225
+ fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
2226
+ ship_from_country: PropTypes.string,
2227
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
2228
+ options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
2229
+ special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
2230
+ prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
2231
+ total: T['io.flow.catalog.v0.models.localized_total'],
2232
+ goods_supply: T['io.flow.common.v0.enums.goods_supply'],
2233
+ merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
2234
+ preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
2235
+ });
2236
+
2237
+ T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
2238
+ discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
2239
+ id: PropTypes.string.isRequired,
2240
+ key: PropTypes.string,
2241
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
2242
+ prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
2243
+ total: T['io.flow.catalog.v0.models.localized_total'],
2244
+ });
2245
+
2246
+ T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
2247
+ T['io.flow.fulfillment.v0.models.digital_delivery'],
2248
+ T['io.flow.fulfillment.v0.models.physical_delivery'],
2249
+ ]);
2250
+
2251
+ T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
2252
+ id: PropTypes.string.isRequired,
2253
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
2254
+ deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
2255
+ selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
2256
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
2257
+ delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
27
2258
  });
28
2259
 
29
2260
  T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
@@ -944,6 +3175,29 @@ T['io.flow.stripe.v0.models.stripe_event'] = PropTypes.exact({
944
3175
  type: PropTypes.string.isRequired,
945
3176
  });
946
3177
 
3178
+ T['io.flow.stripe.v0.enums.early_fraud_warning_type'] = PropTypes.oneOf([
3179
+ 'card_never_received',
3180
+ 'fraudulent_card_application',
3181
+ 'made_with_counterfeit_card',
3182
+ 'made_with_lost_card',
3183
+ 'made_with_stolen_card',
3184
+ 'unauthorized_use_of_card',
3185
+ 'misc',
3186
+ ]);
3187
+
3188
+ T['io.flow.stripe.v0.enums.early_fraud_warning_event_type'] = PropTypes.oneOf(['radar.early_fraud_warning']);
3189
+
3190
+ T['io.flow.stripe.v0.models.stripe_early_fraud_warning_event'] = PropTypes.exact({
3191
+ id: PropTypes.string.isRequired,
3192
+ object: T['io.flow.stripe.v0.enums.early_fraud_warning_event_type'].isRequired,
3193
+ actionable: PropTypes.bool.isRequired,
3194
+ charge: PropTypes.string.isRequired,
3195
+ created: PropTypes.number.isRequired,
3196
+ fraud_type: T['io.flow.stripe.v0.enums.early_fraud_warning_type'].isRequired,
3197
+ livemode: PropTypes.bool.isRequired,
3198
+ payment_intent: PropTypes.string,
3199
+ });
3200
+
947
3201
  T['io.flow.stripe.v0.enums.dispute_event_type'] = PropTypes.oneOf([
948
3202
  'charge.dispute.closed',
949
3203
  'charge.dispute.created',
@@ -2655,6 +4909,45 @@ T['io.flow.shopify.external.v0.models.price_rule_form'] = PropTypes.exact({
2655
4909
  price_rule: T['io.flow.shopify.external.v0.models.price_rule'].isRequired,
2656
4910
  });
2657
4911
 
4912
+ T['io.flow.inventory.v0.models.generic_reservation_error'] = PropTypes.exact({
4913
+ code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
4914
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4915
+ });
4916
+
4917
+ T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'] = PropTypes.exact({
4918
+ code: PropTypes.oneOf(['external_api_timeout']).isRequired,
4919
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4920
+ });
4921
+
4922
+ T['io.flow.inventory.v0.models.no_inventory_reservation_error'] = PropTypes.exact({
4923
+ code: PropTypes.oneOf(['no_inventory']).isRequired,
4924
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4925
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.no_inventory_reservation_error_item']).isRequired,
4926
+ });
4927
+
4928
+ T['io.flow.inventory.v0.unions.reservation_error'] = PropTypes.oneOfType([
4929
+ T['io.flow.inventory.v0.models.no_inventory_reservation_error'],
4930
+ T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'],
4931
+ T['io.flow.inventory.v0.models.generic_reservation_error'],
4932
+ ]);
4933
+
4934
+ T['io.flow.inventory.v0.models.reservation_item'] = PropTypes.exact({
4935
+ item: T['io.flow.inventory.v0.models.reservation_item_reference'].isRequired,
4936
+ quantity: PropTypes.number.isRequired,
4937
+ });
4938
+
4939
+ T['io.flow.inventory.v0.models.reservation_order_reference'] = PropTypes.exact({
4940
+ number: PropTypes.string.isRequired,
4941
+ });
4942
+
4943
+ T['io.flow.inventory.v0.models.reservation'] = PropTypes.exact({
4944
+ id: PropTypes.string.isRequired,
4945
+ key: PropTypes.string.isRequired,
4946
+ order: T['io.flow.inventory.v0.models.reservation_order_reference'],
4947
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.reservation_item']).isRequired,
4948
+ reserved_until: PropTypes.string,
4949
+ });
4950
+
2658
4951
  T['io.flow.v0.models.avalara_tax_setting'] = PropTypes.exact({
2659
4952
  discriminator: PropTypes.oneOf(['avalara_tax_setting']).isRequired,
2660
4953
  company_code: PropTypes.string.isRequired,
@@ -2667,16 +4960,6 @@ T['io.flow.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
2667
4960
  percent: PropTypes.number.isRequired,
2668
4961
  });
2669
4962
 
2670
- T['io.flow.v0.models.generic_reservation_error'] = PropTypes.exact({
2671
- code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
2672
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
2673
- });
2674
-
2675
- T['io.flow.v0.models.external_api_timeout_reservation_error'] = PropTypes.exact({
2676
- code: PropTypes.oneOf(['external_api_timeout']).isRequired,
2677
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
2678
- });
2679
-
2680
4963
  T['io.flow.v0.models.query_builder_query_form'] = PropTypes.exact({
2681
4964
  discriminator: PropTypes.oneOf(['query']).isRequired,
2682
4965
  q: PropTypes.string.isRequired,
@@ -2887,32 +5170,6 @@ T['io.flow.v0.models.manifested_label_upserted'] = PropTypes.exact({
2887
5170
  fulfillment_key: PropTypes.string,
2888
5171
  });
2889
5172
 
2890
- T['io.flow.v0.models.snapshot_deleted'] = PropTypes.exact({
2891
- discriminator: PropTypes.oneOf(['snapshot_deleted']).isRequired,
2892
- event_id: PropTypes.string.isRequired,
2893
- timestamp: PropTypes.string.isRequired,
2894
- snapshot_id: PropTypes.string.isRequired,
2895
- });
2896
-
2897
- T['io.flow.v0.models.snapshot_upserted'] = PropTypes.exact({
2898
- discriminator: PropTypes.oneOf(['snapshot_upserted']).isRequired,
2899
- event_id: PropTypes.string.isRequired,
2900
- timestamp: PropTypes.string.isRequired,
2901
- organization: PropTypes.string.isRequired,
2902
- snapshot_id: PropTypes.string.isRequired,
2903
- available: PropTypes.number.isRequired,
2904
- center_key: PropTypes.string.isRequired,
2905
- item_number: PropTypes.string.isRequired,
2906
- quantity: PropTypes.number.isRequired,
2907
- });
2908
-
2909
- T['io.flow.v0.models.rule_deleted'] = PropTypes.exact({
2910
- discriminator: PropTypes.oneOf(['rule_deleted']).isRequired,
2911
- event_id: PropTypes.string.isRequired,
2912
- timestamp: PropTypes.string.isRequired,
2913
- id: PropTypes.string.isRequired,
2914
- });
2915
-
2916
5173
  T['io.flow.v0.models.item_origin_deleted'] = PropTypes.exact({
2917
5174
  discriminator: PropTypes.oneOf(['item_origin_deleted']).isRequired,
2918
5175
  event_id: PropTypes.string.isRequired,
@@ -4094,45 +6351,14 @@ T['io.flow.v0.models.return_line_item'] = PropTypes.exact({
4094
6351
  order_number: PropTypes.string,
4095
6352
  quantity: PropTypes.number.isRequired,
4096
6353
  reason: T['io.flow.v0.models.return_reason'],
4097
- notes: PropTypes.string,
4098
- attributes: PropTypes.objectOf(PropTypes.string),
4099
- });
4100
-
4101
- T['io.flow.v0.models.return_order_reference'] = PropTypes.exact({
4102
- number: PropTypes.string.isRequired,
4103
- });
4104
-
4105
- T['io.flow.v0.models.reservation_item_form'] = PropTypes.exact({
4106
- item_number: PropTypes.string.isRequired,
4107
- quantity: PropTypes.number.isRequired,
4108
- });
4109
-
4110
- T['io.flow.v0.models.reservation_form'] = PropTypes.exact({
4111
- order_number: PropTypes.string,
4112
- items: PropTypes.arrayOf(T['io.flow.v0.models.reservation_item_form']).isRequired,
4113
- });
4114
-
4115
- T['io.flow.v0.models.reservation_item_reference'] = PropTypes.exact({
4116
- number: PropTypes.string.isRequired,
4117
- });
4118
-
4119
- T['io.flow.v0.models.reservation_item'] = PropTypes.exact({
4120
- item: T['io.flow.v0.models.reservation_item_reference'].isRequired,
4121
- quantity: PropTypes.number.isRequired,
6354
+ notes: PropTypes.string,
6355
+ attributes: PropTypes.objectOf(PropTypes.string),
4122
6356
  });
4123
6357
 
4124
- T['io.flow.v0.models.reservation_order_reference'] = PropTypes.exact({
6358
+ T['io.flow.v0.models.return_order_reference'] = PropTypes.exact({
4125
6359
  number: PropTypes.string.isRequired,
4126
6360
  });
4127
6361
 
4128
- T['io.flow.v0.models.reservation'] = PropTypes.exact({
4129
- id: PropTypes.string.isRequired,
4130
- key: PropTypes.string.isRequired,
4131
- order: T['io.flow.v0.models.reservation_order_reference'],
4132
- items: PropTypes.arrayOf(T['io.flow.v0.models.reservation_item']).isRequired,
4133
- reserved_until: PropTypes.string,
4134
- });
4135
-
4136
6362
  T['io.flow.v0.enums.availability_status'] = PropTypes.oneOf(['enabled', 'disabled']);
4137
6363
 
4138
6364
  T['io.flow.v0.models.region_setting_form'] = PropTypes.exact({
@@ -4393,17 +6619,6 @@ T['io.flow.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'fl
4393
6619
  T['io.flow.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
4394
6620
  T['io.flow.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
4395
6621
  T['io.flow.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
4396
-
4397
- T['io.flow.v0.models.pfs_inventory_check_response_item'] = PropTypes.exact({
4398
- number: PropTypes.string.isRequired,
4399
- ats: PropTypes.number.isRequired,
4400
- in_stock: PropTypes.bool.isRequired,
4401
- });
4402
-
4403
- T['io.flow.v0.models.pfs_inventory_check_response'] = PropTypes.exact({
4404
- items: PropTypes.objectOf(T['io.flow.v0.models.pfs_inventory_check_response_item']).isRequired,
4405
- });
4406
-
4407
6622
  T['io.flow.v0.enums.permitted_http_method'] = PropTypes.oneOf(['GET', 'POST', 'PUT', 'DELETE', 'PATCH']);
4408
6623
 
4409
6624
  T['io.flow.v0.models.permitted_route'] = PropTypes.exact({
@@ -5280,24 +7495,6 @@ T['io.flow.v0.models.onboarding_merchant_pickup_window'] = PropTypes.exact({
5280
7495
  to: T['io.flow.v0.models.onboarding_merchant_time'].isRequired,
5281
7496
  });
5282
7497
 
5283
- T['io.flow.v0.models.no_inventory_reservation_error_item'] = PropTypes.exact({
5284
- number: PropTypes.string.isRequired,
5285
- requested_quantity: PropTypes.number.isRequired,
5286
- available_quantity: PropTypes.number.isRequired,
5287
- });
5288
-
5289
- T['io.flow.v0.models.no_inventory_reservation_error'] = PropTypes.exact({
5290
- code: PropTypes.oneOf(['no_inventory']).isRequired,
5291
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
5292
- items: PropTypes.arrayOf(T['io.flow.v0.models.no_inventory_reservation_error_item']).isRequired,
5293
- });
5294
-
5295
- T['io.flow.v0.unions.reservation_error'] = PropTypes.oneOfType([
5296
- T['io.flow.v0.models.no_inventory_reservation_error'],
5297
- T['io.flow.v0.models.external_api_timeout_reservation_error'],
5298
- T['io.flow.v0.models.generic_reservation_error'],
5299
- ]);
5300
-
5301
7498
  T['io.flow.v0.models.monthly_average_volume'] = PropTypes.exact({
5302
7499
  amount: PropTypes.number,
5303
7500
  currency: PropTypes.string,
@@ -5674,111 +7871,6 @@ T['io.flow.v0.models.invitation_error'] = PropTypes.exact({
5674
7871
  });
5675
7872
 
5676
7873
  T['io.flow.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
5677
- T['io.flow.v0.enums.update_type'] = PropTypes.oneOf(['change', 'set']);
5678
-
5679
- T['io.flow.v0.models.inventory_update_form'] = PropTypes.exact({
5680
- center: PropTypes.string.isRequired,
5681
- idempotency_key: PropTypes.string.isRequired,
5682
- item_number: PropTypes.string.isRequired,
5683
- quantity: PropTypes.number.isRequired,
5684
- type: T['io.flow.v0.enums.update_type'].isRequired,
5685
- notes: PropTypes.object,
5686
- });
5687
-
5688
- T['io.flow.v0.models.inventory_item_reference'] = PropTypes.exact({
5689
- number: PropTypes.string.isRequired,
5690
- });
5691
-
5692
- T['io.flow.v0.models.inventory_center_reference'] = PropTypes.exact({
5693
- key: PropTypes.string.isRequired,
5694
- });
5695
-
5696
- T['io.flow.v0.models.inventory_update'] = PropTypes.exact({
5697
- id: PropTypes.string.isRequired,
5698
- idempotency_key: PropTypes.string.isRequired,
5699
- center: T['io.flow.v0.models.inventory_center_reference'].isRequired,
5700
- item: T['io.flow.v0.models.inventory_item_reference'].isRequired,
5701
- notes: PropTypes.object.isRequired,
5702
- quantity: PropTypes.number.isRequired,
5703
- type: T['io.flow.v0.enums.update_type'].isRequired,
5704
- });
5705
-
5706
- T['io.flow.v0.models.inventory_snapshot'] = PropTypes.exact({
5707
- id: PropTypes.string.isRequired,
5708
- available: PropTypes.number.isRequired,
5709
- center: T['io.flow.v0.models.inventory_center_reference'].isRequired,
5710
- item: T['io.flow.v0.models.inventory_item_reference'].isRequired,
5711
- quantity: PropTypes.number.isRequired,
5712
- });
5713
-
5714
- T['io.flow.v0.models.inventory_follow_ecommerce_platform'] = PropTypes.exact({
5715
- discriminator: PropTypes.oneOf(['inventory_follow_ecommerce_platform']).isRequired,
5716
- quantity: PropTypes.number.isRequired,
5717
- });
5718
-
5719
- T['io.flow.v0.models.inventory_unlimited'] = PropTypes.exact({
5720
- discriminator: PropTypes.oneOf(['inventory_unlimited']).isRequired,
5721
- placeholder: PropTypes.string,
5722
- });
5723
-
5724
- T['io.flow.v0.models.inventory_stock'] = PropTypes.exact({
5725
- discriminator: PropTypes.oneOf(['inventory_stock']).isRequired,
5726
- quantity: PropTypes.number.isRequired,
5727
- });
5728
-
5729
- T['io.flow.v0.models.inventory_backorder'] = PropTypes.exact({
5730
- discriminator: PropTypes.oneOf(['inventory_backorder']).isRequired,
5731
- quantity: PropTypes.number.isRequired,
5732
- });
5733
-
5734
- T['io.flow.v0.unions.inventory_strategy'] = PropTypes.oneOfType([
5735
- T['io.flow.v0.models.inventory_backorder'],
5736
- T['io.flow.v0.models.inventory_stock'],
5737
- T['io.flow.v0.models.inventory_unlimited'],
5738
- T['io.flow.v0.models.inventory_follow_ecommerce_platform'],
5739
- ]);
5740
-
5741
- T['io.flow.v0.models.inventory_rule_form'] = PropTypes.exact({
5742
- position: PropTypes.number.isRequired,
5743
- query: PropTypes.string.isRequired,
5744
- strategy: T['io.flow.v0.unions.inventory_strategy'].isRequired,
5745
- });
5746
-
5747
- T['io.flow.v0.models.inventory_rule'] = PropTypes.exact({
5748
- id: PropTypes.string.isRequired,
5749
- position: PropTypes.number.isRequired,
5750
- query: PropTypes.string.isRequired,
5751
- strategy: T['io.flow.v0.unions.inventory_strategy'].isRequired,
5752
- });
5753
-
5754
- T['io.flow.v0.models.rule_upserted'] = PropTypes.exact({
5755
- discriminator: PropTypes.oneOf(['rule_upserted']).isRequired,
5756
- event_id: PropTypes.string.isRequired,
5757
- timestamp: PropTypes.string.isRequired,
5758
- organization_id: PropTypes.string.isRequired,
5759
- rule: T['io.flow.v0.models.inventory_rule'].isRequired,
5760
- });
5761
-
5762
- T['io.flow.v0.models.inventory_request_item'] = PropTypes.exact({
5763
- number: PropTypes.string.isRequired,
5764
- quantity: PropTypes.number.isRequired,
5765
- });
5766
-
5767
- T['io.flow.v0.models.inventory_request'] = PropTypes.exact({
5768
- items: PropTypes.arrayOf(T['io.flow.v0.models.inventory_request_item']).isRequired,
5769
- });
5770
-
5771
- T['io.flow.v0.enums.inventory_status'] = PropTypes.oneOf(['has_inventory', 'no_inventory']);
5772
-
5773
- T['io.flow.v0.models.inventory_check_response_item'] = PropTypes.exact({
5774
- number: PropTypes.string.isRequired,
5775
- quantity: PropTypes.number.isRequired,
5776
- inventory_status: T['io.flow.v0.enums.inventory_status'].isRequired,
5777
- });
5778
-
5779
- T['io.flow.v0.models.inventory_check_response'] = PropTypes.exact({
5780
- items: PropTypes.arrayOf(T['io.flow.v0.models.inventory_check_response_item']).isRequired,
5781
- });
5782
7874
 
5783
7875
  T['io.flow.v0.models.input_specification_limitation_max'] = PropTypes.exact({
5784
7876
  discriminator: PropTypes.oneOf(['input_specification_limitation_max']).isRequired,
@@ -5807,6 +7899,19 @@ T['io.flow.v0.models.issuer_reference'] = PropTypes.exact({
5807
7899
  id: PropTypes.string.isRequired,
5808
7900
  });
5809
7901
 
7902
+ T['io.flow.v0.models.incoterm_includes'] = PropTypes.exact({
7903
+ duties: PropTypes.bool.isRequired,
7904
+ taxes: PropTypes.bool.isRequired,
7905
+ });
7906
+
7907
+ T['io.flow.v0.enums.incoterm_configuration'] = PropTypes.oneOf(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']);
7908
+
7909
+ T['io.flow.v0.models.incoterm_summary'] = PropTypes.exact({
7910
+ configuration: T['io.flow.v0.enums.incoterm_configuration'].isRequired,
7911
+ includes: T['io.flow.v0.models.incoterm_includes'].isRequired,
7912
+ reason: PropTypes.string,
7913
+ });
7914
+
5810
7915
  T['io.flow.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
5811
7916
 
5812
7917
  T['io.flow.v0.models.price_book_form'] = PropTypes.exact({
@@ -6411,7 +8516,7 @@ T['io.flow.v0.models.exclusion_rule'] = PropTypes.exact({
6411
8516
  });
6412
8517
 
6413
8518
  T['io.flow.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
6414
- T['io.flow.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec']);
8519
+ T['io.flow.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec', 'zaz']);
6415
8520
 
6416
8521
  T['io.flow.v0.models.ratecard_region_reference'] = PropTypes.exact({
6417
8522
  id: PropTypes.string.isRequired,
@@ -9352,6 +11457,11 @@ T['io.flow.v0.models.three_d_secure'] = PropTypes.exact({
9352
11457
  eci: PropTypes.string,
9353
11458
  liability_sift: PropTypes.bool,
9354
11459
  version: PropTypes.string,
11460
+ authenticated: PropTypes.bool,
11461
+ authenticated_result: PropTypes.string,
11462
+ offered: PropTypes.bool,
11463
+ offered_result: PropTypes.string,
11464
+ sca_exemption: PropTypes.string,
9355
11465
  });
9356
11466
 
9357
11467
  T['io.flow.v0.enums.authorization_status'] = PropTypes.oneOf([
@@ -9639,27 +11749,6 @@ T['io.flow.v0.models.item_margin_version'] = PropTypes.exact({
9639
11749
  item_margin: T['io.flow.v0.models.item_margin'].isRequired,
9640
11750
  });
9641
11751
 
9642
- T['io.flow.v0.models.inventory_update_version'] = PropTypes.exact({
9643
- id: PropTypes.string.isRequired,
9644
- timestamp: PropTypes.string.isRequired,
9645
- type: T['io.flow.v0.enums.change_type'].isRequired,
9646
- inventory_update: T['io.flow.v0.models.inventory_update'].isRequired,
9647
- });
9648
-
9649
- T['io.flow.v0.models.inventory_snapshot_version'] = PropTypes.exact({
9650
- id: PropTypes.string.isRequired,
9651
- timestamp: PropTypes.string.isRequired,
9652
- type: T['io.flow.v0.enums.change_type'].isRequired,
9653
- inventory_snapshot: T['io.flow.v0.models.inventory_snapshot'].isRequired,
9654
- });
9655
-
9656
- T['io.flow.v0.models.inventory_rule_version'] = PropTypes.exact({
9657
- id: PropTypes.string.isRequired,
9658
- timestamp: PropTypes.string.isRequired,
9659
- type: T['io.flow.v0.enums.change_type'].isRequired,
9660
- inventory_rule: T['io.flow.v0.models.inventory_rule'].isRequired,
9661
- });
9662
-
9663
11752
  T['io.flow.v0.models.import_version'] = PropTypes.exact({
9664
11753
  id: PropTypes.string.isRequired,
9665
11754
  timestamp: PropTypes.string.isRequired,
@@ -10634,6 +12723,7 @@ T['io.flow.v0.models.tracking_event'] = PropTypes.exact({
10634
12723
  status: T['io.flow.v0.enums.tracking_status'].isRequired,
10635
12724
  timestamp: PropTypes.string.isRequired,
10636
12725
  description: PropTypes.string,
12726
+ aggregator_status_code: PropTypes.string,
10637
12727
  });
10638
12728
 
10639
12729
  T['io.flow.v0.models.tracking_label'] = PropTypes.exact({
@@ -13148,6 +15238,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
13148
15238
  geo: T['io.flow.v0.models.order_geo'],
13149
15239
  device_details: T['io.flow.v0.unions.device_details'],
13150
15240
  destination_contact_details: PropTypes.arrayOf(T['io.flow.v0.models.destination_contact_detail']),
15241
+ incoterm_summary: T['io.flow.v0.models.incoterm_summary'],
13151
15242
  });
13152
15243
 
13153
15244
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -14062,10 +16153,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14062
16153
  T['io.flow.v0.models.fully_harmonized_item_upserted'],
14063
16154
  T['io.flow.v0.models.import_completed_v2'],
14064
16155
  T['io.flow.v0.models.import_failed_v2'],
14065
- T['io.flow.v0.models.rule_upserted'],
14066
- T['io.flow.v0.models.rule_deleted'],
14067
- T['io.flow.v0.models.snapshot_upserted'],
14068
- T['io.flow.v0.models.snapshot_deleted'],
14069
16156
  T['io.flow.v0.models.label_upserted'],
14070
16157
  T['io.flow.v0.models.label_deleted_v2'],
14071
16158
  T['io.flow.v0.models.label_upserted_v2'],
@@ -14326,7 +16413,6 @@ T['io.flow.v0.models.abandoned_order_settings'] = PropTypes.exact({
14326
16413
  status: T['io.flow.v0.enums.abandoned_order_setting_status'].isRequired,
14327
16414
  });
14328
16415
 
14329
- T['io.flow.v0.enums.aggregate'] = PropTypes.oneOf(['maximum', 'minimum']);
14330
16416
  T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
14331
16417
 
14332
16418
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
@@ -14455,10 +16541,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
14455
16541
  'fully_harmonized_item_upserted',
14456
16542
  'import_completed_v2',
14457
16543
  'import_failed_v2',
14458
- 'rule_upserted',
14459
- 'rule_deleted',
14460
- 'snapshot_upserted',
14461
- 'snapshot_deleted',
14462
16544
  'label_upserted',
14463
16545
  'label_deleted_v2',
14464
16546
  'label_upserted_v2',
@@ -14843,10 +16925,6 @@ T['io.flow.v0.models.input_form'] = PropTypes.exact({
14843
16925
  values: PropTypes.objectOf(PropTypes.string),
14844
16926
  });
14845
16927
 
14846
- T['io.flow.v0.models.inventory_experience_reference'] = PropTypes.exact({
14847
- key: PropTypes.string.isRequired,
14848
- });
14849
-
14850
16928
  T['io.flow.v0.models.invoice_export'] = PropTypes.exact({
14851
16929
  id: PropTypes.string.isRequired,
14852
16930
  });
@@ -15054,10 +17132,6 @@ T['io.flow.v0.models.payout_reference'] = PropTypes.exact({
15054
17132
  id: PropTypes.string.isRequired,
15055
17133
  });
15056
17134
 
15057
- T['io.flow.v0.models.pfs_inventory_status'] = PropTypes.exact({
15058
- status: PropTypes.string.isRequired,
15059
- });
15060
-
15061
17135
  T['io.flow.v0.models.public_key'] = PropTypes.exact({
15062
17136
  id: PropTypes.string.isRequired,
15063
17137
  });
@@ -15448,14 +17522,141 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_shop_redact'] = PropTypes.
15448
17522
  shop_domain: PropTypes.string.isRequired,
15449
17523
  });
15450
17524
 
15451
- T['io.flow.ben.test.internal.v0.models.svitlana_test'] = PropTypes.exact({
17525
+ T['io.flow.common.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
17526
+
17527
+ T['io.flow.common.v0.enums.incoterm'] = PropTypes.oneOf([
17528
+ 'EXW',
17529
+ 'FCA',
17530
+ 'CPT',
17531
+ 'CIP',
17532
+ 'DAT',
17533
+ 'DAP',
17534
+ 'DDP',
17535
+ 'FAS',
17536
+ 'FOB',
17537
+ 'CFR',
17538
+ 'CIF',
17539
+ 'DAF',
17540
+ 'DES',
17541
+ 'DEQ',
17542
+ 'DDU',
17543
+ ]);
17544
+
17545
+ T['io.flow.common.v0.enums.measurement_system'] = PropTypes.oneOf(['imperial', 'metric']);
17546
+ T['io.flow.common.v0.enums.merchant_of_record'] = PropTypes.oneOf(['flow', 'organization']);
17547
+ T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
17548
+ T['io.flow.common.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Closed']);
17549
+ T['io.flow.common.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
17550
+ T['io.flow.common.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
17551
+
17552
+ T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
17553
+ id: PropTypes.string.isRequired,
17554
+ number: PropTypes.string.isRequired,
17555
+ });
17556
+
17557
+ T['io.flow.common.v0.models.catalog_item_summary'] = PropTypes.exact({
17558
+ number: PropTypes.string.isRequired,
17559
+ name: PropTypes.string.isRequired,
17560
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17561
+ });
17562
+
17563
+ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
17564
+ id: PropTypes.string.isRequired,
17565
+ });
17566
+
17567
+ T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
17568
+ id: PropTypes.string.isRequired,
17569
+ });
17570
+
17571
+ T['io.flow.common.v0.models.customer_reference'] = PropTypes.exact({
17572
+ number: PropTypes.string.isRequired,
17573
+ });
17574
+
17575
+ T['io.flow.common.v0.models.input_form'] = PropTypes.exact({
17576
+ values: PropTypes.objectOf(PropTypes.string),
17577
+ });
17578
+
17579
+ T['io.flow.common.v0.models.line_item_attributes_form'] = PropTypes.exact({
17580
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17581
+ });
17582
+
17583
+ T['io.flow.common.v0.models.line_item_quantity_form'] = PropTypes.exact({
17584
+ quantity: PropTypes.number.isRequired,
17585
+ });
17586
+
17587
+ T['io.flow.common.v0.models.price_form'] = PropTypes.exact({
17588
+ amount: PropTypes.number.isRequired,
17589
+ currency: PropTypes.string.isRequired,
17590
+ });
17591
+
17592
+ T['io.flow.common.v0.models.session_reference'] = PropTypes.exact({
17593
+ id: PropTypes.string.isRequired,
17594
+ });
17595
+
17596
+ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
17597
+ postals: PropTypes.arrayOf(PropTypes.string),
17598
+ provinces: PropTypes.arrayOf(PropTypes.string),
17599
+ country: PropTypes.string.isRequired,
17600
+ });
17601
+
17602
+ T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
17603
+ T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
17604
+
17605
+ T['io.flow.reference.v0.models.country'] = PropTypes.exact({
17606
+ name: PropTypes.string.isRequired,
17607
+ iso_3166_2: PropTypes.string.isRequired,
17608
+ iso_3166_3: PropTypes.string.isRequired,
17609
+ languages: PropTypes.arrayOf(PropTypes.string).isRequired,
17610
+ measurement_system: PropTypes.string.isRequired,
17611
+ default_currency: PropTypes.string,
17612
+ default_language: PropTypes.string,
17613
+ timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
17614
+ default_delivered_duty: PropTypes.string,
17615
+ });
17616
+
17617
+ T['io.flow.reference.v0.models.language'] = PropTypes.exact({
17618
+ name: PropTypes.string.isRequired,
17619
+ iso_639_2: PropTypes.string.isRequired,
17620
+ });
17621
+
17622
+ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
17623
+ id: PropTypes.string.isRequired,
17624
+ name: PropTypes.string.isRequired,
17625
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
17626
+ currencies: PropTypes.arrayOf(PropTypes.string).isRequired,
17627
+ languages: PropTypes.arrayOf(PropTypes.string).isRequired,
17628
+ measurement_systems: PropTypes.arrayOf(PropTypes.string).isRequired,
17629
+ timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
17630
+ });
17631
+
17632
+ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
15452
17633
  name: PropTypes.string.isRequired,
17634
+ description: PropTypes.string.isRequired,
17635
+ offset: PropTypes.number.isRequired,
15453
17636
  });
15454
17637
 
15455
17638
  T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
15456
17639
  name: PropTypes.string.isRequired,
15457
17640
  });
15458
17641
 
17642
+ T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
17643
+
17644
+ T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
17645
+ q: PropTypes.string.isRequired,
17646
+ });
17647
+
17648
+ T['io.flow.fulfillment.v0.models.shipping_configuration_copy_form'] = PropTypes.exact({
17649
+ name: PropTypes.string.isRequired,
17650
+ });
17651
+
17652
+ T['io.flow.fulfillment.v0.models.shipping_configuration_form'] = PropTypes.exact({
17653
+ name: PropTypes.string.isRequired,
17654
+ });
17655
+
17656
+ T['io.flow.fulfillment.v0.models.shipping_lane_default_tier_form'] = PropTypes.exact({
17657
+ tier_id: PropTypes.string.isRequired,
17658
+ });
17659
+
15459
17660
  T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
15460
17661
  applicationPrimaryAccountNumber: PropTypes.string.isRequired,
15461
17662
  applicationExpirationDate: PropTypes.string.isRequired,
@@ -15467,6 +17668,55 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
15467
17668
  paymentData: PropTypes.object.isRequired,
15468
17669
  });
15469
17670
 
17671
+ T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
17672
+
17673
+ T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
17674
+ base: PropTypes.string.isRequired,
17675
+ target: PropTypes.string.isRequired,
17676
+ effective_at: PropTypes.string.isRequired,
17677
+ });
17678
+
17679
+ T['io.flow.organization.v0.models.organization_default_configurations_form'] = PropTypes.exact({
17680
+ id: PropTypes.string.isRequired,
17681
+ });
17682
+
17683
+ T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
17684
+ T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
17685
+ T['io.flow.catalog.v0.enums.return_item_status'] = PropTypes.oneOf(['returnable', 'non-returnable']);
17686
+ T['io.flow.catalog.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
17687
+ T['io.flow.catalog.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
17688
+
17689
+ T['io.flow.catalog.v0.models.catalog_reference'] = PropTypes.exact({
17690
+ id: PropTypes.string.isRequired,
17691
+ });
17692
+
17693
+ T['io.flow.catalog.v0.models.item_attributes_patch_form'] = PropTypes.exact({
17694
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17695
+ });
17696
+
17697
+ T['io.flow.catalog.v0.models.item_price_update_form'] = PropTypes.exact({
17698
+ number: PropTypes.string.isRequired,
17699
+ currency: PropTypes.string,
17700
+ price: PropTypes.number.isRequired,
17701
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17702
+ });
17703
+
17704
+ T['io.flow.catalog.v0.models.item_price_update_put_form'] = PropTypes.exact({
17705
+ currency: PropTypes.string,
17706
+ price: PropTypes.number.isRequired,
17707
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17708
+ });
17709
+
17710
+ T['io.flow.inventory.v0.enums.aggregate'] = PropTypes.oneOf(['maximum', 'minimum']);
17711
+
17712
+ T['io.flow.inventory.v0.models.inventory_experience_reference'] = PropTypes.exact({
17713
+ key: PropTypes.string.isRequired,
17714
+ });
17715
+
17716
+ T['io.flow.inventory.v0.models.pfs_inventory_status'] = PropTypes.exact({
17717
+ status: PropTypes.string.isRequired,
17718
+ });
17719
+
15470
17720
  export const abandonedOrderEmailSettings = T['io.flow.v0.models.abandoned_order_email_settings'];
15471
17721
  export const abandonedOrderPromotion = T['io.flow.v0.models.abandoned_order_promotion'];
15472
17722
  export const abandonedOrderPromotionDetails = T['io.flow.v0.unions.abandoned_order_promotion_details'];
@@ -15518,7 +17768,6 @@ export const adyenNativeActionDetails = T['io.flow.v0.models.adyen_native_action
15518
17768
  export const adyenNativeData = T['io.flow.v0.unions.adyen_native_data'];
15519
17769
  export const adyenV3ChallengeToken = T['io.flow.v0.models.adyen_v3_challenge_token'];
15520
17770
  export const adyenV3FingerprintToken = T['io.flow.v0.models.adyen_v3_fingerprint_token'];
15521
- export const aggregate = T['io.flow.v0.enums.aggregate'];
15522
17771
  export const allocation = T['io.flow.v0.models.allocation'];
15523
17772
  export const allocationComponent = T['io.flow.v0.unions.allocation_component'];
15524
17773
  export const allocationDeletedV2 = T['io.flow.v0.models.allocation_deleted_v2'];
@@ -16032,7 +18281,6 @@ export const exportStatus = T['io.flow.v0.enums.export_status'];
16032
18281
  export const exportType = T['io.flow.v0.unions.export_type'];
16033
18282
  export const exportVersion = T['io.flow.v0.models.export_version'];
16034
18283
  export const exporterOfRecord = T['io.flow.v0.enums.exporter_of_record'];
16035
- export const externalApiTimeoutReservationError = T['io.flow.v0.models.external_api_timeout_reservation_error'];
16036
18284
  export const feeDeduction = T['io.flow.v0.models.fee_deduction'];
16037
18285
  export const feeDeductionType = T['io.flow.v0.enums.fee_deduction_type'];
16038
18286
  export const feeWeight = T['io.flow.v0.models.fee_weight'];
@@ -16101,7 +18349,6 @@ export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authen
16101
18349
  export const generateLoad = T['io.flow.v0.models.generate_load'];
16102
18350
  export const genericError = T['io.flow.v0.models.generic_error'];
16103
18351
  export const genericErrorCode = T['io.flow.v0.enums.generic_error_code'];
16104
- export const genericReservationError = T['io.flow.v0.models.generic_reservation_error'];
16105
18352
  export const geoForm = T['io.flow.v0.models.geo_form'];
16106
18353
  export const goodsSupply = T['io.flow.v0.enums.goods_supply'];
16107
18354
  export const googlePayAuthorizationPayload = T['io.flow.v0.models.google_pay_authorization_payload'];
@@ -16154,6 +18401,9 @@ export const inboundCartonFee = T['io.flow.v0.models.inbound_carton_fee'];
16154
18401
  export const includedLevies = T['io.flow.v0.models.included_levies'];
16155
18402
  export const includedLevyKey = T['io.flow.v0.enums.included_levy_key'];
16156
18403
  export const incoterm = T['io.flow.v0.enums.incoterm'];
18404
+ export const incotermConfiguration = T['io.flow.v0.enums.incoterm_configuration'];
18405
+ export const incotermIncludes = T['io.flow.v0.models.incoterm_includes'];
18406
+ export const incotermSummary = T['io.flow.v0.models.incoterm_summary'];
16157
18407
  export const indirectTax = T['io.flow.v0.models.indirect_tax'];
16158
18408
  export const individual = T['io.flow.v0.models.individual'];
16159
18409
  export const inlineActionConfiguration = T['io.flow.v0.unions.inline_action_configuration'];
@@ -16167,27 +18417,6 @@ export const inputSpecificationLimitation = T['io.flow.v0.unions.input_specifica
16167
18417
  export const inputSpecificationLimitationMax = T['io.flow.v0.models.input_specification_limitation_max'];
16168
18418
  export const inputSpecificationLimitations = T['io.flow.v0.models.input_specification_limitations'];
16169
18419
  export const inputSpecificationType = T['io.flow.v0.enums.input_specification_type'];
16170
- export const inventoryBackorder = T['io.flow.v0.models.inventory_backorder'];
16171
- export const inventoryCenterReference = T['io.flow.v0.models.inventory_center_reference'];
16172
- export const inventoryCheckResponse = T['io.flow.v0.models.inventory_check_response'];
16173
- export const inventoryCheckResponseItem = T['io.flow.v0.models.inventory_check_response_item'];
16174
- export const inventoryExperienceReference = T['io.flow.v0.models.inventory_experience_reference'];
16175
- export const inventoryFollowEcommercePlatform = T['io.flow.v0.models.inventory_follow_ecommerce_platform'];
16176
- export const inventoryItemReference = T['io.flow.v0.models.inventory_item_reference'];
16177
- export const inventoryRequest = T['io.flow.v0.models.inventory_request'];
16178
- export const inventoryRequestItem = T['io.flow.v0.models.inventory_request_item'];
16179
- export const inventoryRule = T['io.flow.v0.models.inventory_rule'];
16180
- export const inventoryRuleForm = T['io.flow.v0.models.inventory_rule_form'];
16181
- export const inventoryRuleVersion = T['io.flow.v0.models.inventory_rule_version'];
16182
- export const inventorySnapshot = T['io.flow.v0.models.inventory_snapshot'];
16183
- export const inventorySnapshotVersion = T['io.flow.v0.models.inventory_snapshot_version'];
16184
- export const inventoryStatus = T['io.flow.v0.enums.inventory_status'];
16185
- export const inventoryStock = T['io.flow.v0.models.inventory_stock'];
16186
- export const inventoryStrategy = T['io.flow.v0.unions.inventory_strategy'];
16187
- export const inventoryUnlimited = T['io.flow.v0.models.inventory_unlimited'];
16188
- export const inventoryUpdate = T['io.flow.v0.models.inventory_update'];
16189
- export const inventoryUpdateForm = T['io.flow.v0.models.inventory_update_form'];
16190
- export const inventoryUpdateVersion = T['io.flow.v0.models.inventory_update_version'];
16191
18420
  export const invitation = T['io.flow.v0.models.invitation'];
16192
18421
  export const invitationError = T['io.flow.v0.models.invitation_error'];
16193
18422
  export const invitationErrorCode = T['io.flow.v0.enums.invitation_error_code'];
@@ -16355,8 +18584,6 @@ export const monthlyAverage = T['io.flow.v0.models.monthly_average'];
16355
18584
  export const monthlyAverageVolume = T['io.flow.v0.models.monthly_average_volume'];
16356
18585
  export const name = T['io.flow.v0.models.name'];
16357
18586
  export const nameForm = T['io.flow.v0.models.name_form'];
16358
- export const noInventoryReservationError = T['io.flow.v0.models.no_inventory_reservation_error'];
16359
- export const noInventoryReservationErrorItem = T['io.flow.v0.models.no_inventory_reservation_error_item'];
16360
18587
  export const notificationDeletedV2 = T['io.flow.v0.models.notification_deleted_v2'];
16361
18588
  export const notificationUpsertedV2 = T['io.flow.v0.models.notification_upserted_v2'];
16362
18589
  export const numberRange = T['io.flow.v0.models.number_range'];
@@ -16700,9 +18927,6 @@ export const permissionAudit = T['io.flow.v0.models.permission_audit'];
16700
18927
  export const permissionCheck = T['io.flow.v0.models.permission_check'];
16701
18928
  export const permittedHttpMethod = T['io.flow.v0.enums.permitted_http_method'];
16702
18929
  export const permittedRoute = T['io.flow.v0.models.permitted_route'];
16703
- export const pfsInventoryCheckResponse = T['io.flow.v0.models.pfs_inventory_check_response'];
16704
- export const pfsInventoryCheckResponseItem = T['io.flow.v0.models.pfs_inventory_check_response_item'];
16705
- export const pfsInventoryStatus = T['io.flow.v0.models.pfs_inventory_status'];
16706
18930
  export const physicalDelivery = T['io.flow.v0.models.physical_delivery'];
16707
18931
  export const physicalDeliveryPreferredService = T['io.flow.v0.models.physical_delivery_preferred_service'];
16708
18932
  export const physicalDeliverySpecialSerivce = T['io.flow.v0.enums.physical_delivery_special_serivce'];
@@ -16852,13 +19076,6 @@ export const repeatHourly = T['io.flow.v0.models.repeat_hourly'];
16852
19076
  export const repeatMonthly = T['io.flow.v0.models.repeat_monthly'];
16853
19077
  export const repeatSchedule = T['io.flow.v0.unions.repeat_schedule'];
16854
19078
  export const repeatWeekly = T['io.flow.v0.models.repeat_weekly'];
16855
- export const reservation = T['io.flow.v0.models.reservation'];
16856
- export const reservationError = T['io.flow.v0.unions.reservation_error'];
16857
- export const reservationForm = T['io.flow.v0.models.reservation_form'];
16858
- export const reservationItem = T['io.flow.v0.models.reservation_item'];
16859
- export const reservationItemForm = T['io.flow.v0.models.reservation_item_form'];
16860
- export const reservationItemReference = T['io.flow.v0.models.reservation_item_reference'];
16861
- export const reservationOrderReference = T['io.flow.v0.models.reservation_order_reference'];
16862
19079
  export const restrictedReviewStatus = T['io.flow.v0.enums.restricted_review_status'];
16863
19080
  export const UNSAFE_return = T['io.flow.v0.models.return'];
16864
19081
  export const returnDeleted = T['io.flow.v0.models.return_deleted'];
@@ -16903,8 +19120,6 @@ export const rounding = T['io.flow.v0.models.rounding'];
16903
19120
  export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
16904
19121
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
16905
19122
  export const routeAudit = T['io.flow.v0.models.route_audit'];
16906
- export const ruleDeleted = T['io.flow.v0.models.rule_deleted'];
16907
- export const ruleUpserted = T['io.flow.v0.models.rule_upserted'];
16908
19123
  export const schedule = T['io.flow.v0.models.schedule'];
16909
19124
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
16910
19125
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -17032,8 +19247,6 @@ export const shopifyVariantFlowMetafield = T['io.flow.v0.models.shopify_variant_
17032
19247
  export const shopifyVariantInventoryMetafield = T['io.flow.v0.models.shopify_variant_inventory_metafield'];
17033
19248
  export const simplePermissionCheck = T['io.flow.v0.models.simple_permission_check'];
17034
19249
  export const singlePackageShippingNotificationForm = T['io.flow.v0.models.single_package_shipping_notification_form'];
17035
- export const snapshotDeleted = T['io.flow.v0.models.snapshot_deleted'];
17036
- export const snapshotUpserted = T['io.flow.v0.models.snapshot_upserted'];
17037
19250
  export const solidusProductExportType = T['io.flow.v0.models.solidus_product_export_type'];
17038
19251
  export const solidusVariantExportType = T['io.flow.v0.models.solidus_variant_export_type'];
17039
19252
  export const sortDirection = T['io.flow.v0.enums.sort_direction'];
@@ -17209,7 +19422,6 @@ export const unitOfTime = T['io.flow.v0.enums.unit_of_time'];
17209
19422
  export const unitOfVolume = T['io.flow.v0.enums.unit_of_volume'];
17210
19423
  export const unitOfWeight = T['io.flow.v0.enums.unit_of_weight'];
17211
19424
  export const updatePolicy = T['io.flow.v0.enums.update_policy'];
17212
- export const updateType = T['io.flow.v0.enums.update_type'];
17213
19425
  export const upload = T['io.flow.v0.models.upload'];
17214
19426
  export const user = T['io.flow.v0.models.user'];
17215
19427
  export const userForm = T['io.flow.v0.models.user_form'];