@flowio/api-prop-types 10.16.85 → 10.16.87

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 +2267 -302
  2. package/lib/api.js +1 -1
  3. package/package.json +2 -2
  4. package/src/api.d.ts +2267 -302
  5. package/src/api.js +2490 -259
package/src/api.js CHANGED
@@ -1,29 +1,2233 @@
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.models.inventory_request_item'] = PropTypes.exact({
180
+ number: PropTypes.string.isRequired,
181
+ quantity: PropTypes.number.isRequired,
182
+ });
183
+
184
+ T['io.flow.inventory.v0.models.inventory_request'] = PropTypes.exact({
185
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.inventory_request_item']).isRequired,
186
+ });
187
+
188
+ T['io.flow.inventory.v0.enums.inventory_status'] = PropTypes.oneOf(['has_inventory', 'no_inventory']);
189
+
190
+ T['io.flow.inventory.v0.models.inventory_check_response_item'] = PropTypes.exact({
191
+ number: PropTypes.string.isRequired,
192
+ quantity: PropTypes.number.isRequired,
193
+ inventory_status: T['io.flow.inventory.v0.enums.inventory_status'].isRequired,
194
+ });
195
+
196
+ T['io.flow.inventory.v0.models.inventory_check_response'] = PropTypes.exact({
197
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.inventory_check_response_item']).isRequired,
198
+ });
199
+
200
+ T['io.flow.catalog.v0.models.subcatalog_reference'] = PropTypes.exact({
201
+ discriminator: PropTypes.oneOf(['subcatalog_reference']).isRequired,
202
+ id: PropTypes.string.isRequired,
203
+ });
204
+
205
+ T['io.flow.catalog.v0.models.catalog_statistics'] = PropTypes.exact({
206
+ id: PropTypes.string.isRequired,
207
+ items: PropTypes.number.isRequired,
208
+ categories: PropTypes.number.isRequired,
209
+ });
210
+
211
+ T['io.flow.catalog.v0.models.item_statistics'] = PropTypes.exact({
212
+ items: PropTypes.number.isRequired,
213
+ categories: PropTypes.number.isRequired,
214
+ });
215
+
216
+ T['io.flow.catalog.v0.models.subcatalog_statistics'] = PropTypes.exact({
217
+ excluded: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
218
+ included: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
219
+ restricted: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
220
+ queue: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
221
+ catalog: T['io.flow.catalog.v0.models.catalog_statistics'].isRequired,
222
+ });
223
+
224
+ T['io.flow.catalog.v0.enums.update_policy'] = PropTypes.oneOf(['auto', 'queue', 'discard']);
225
+
226
+ T['io.flow.catalog.v0.models.subcatalog_settings_form'] = PropTypes.exact({
227
+ update_policy: T['io.flow.catalog.v0.enums.update_policy'],
228
+ });
229
+
230
+ T['io.flow.catalog.v0.models.subcatalog_form'] = PropTypes.exact({
231
+ settings: T['io.flow.catalog.v0.models.subcatalog_settings_form'],
232
+ });
233
+
234
+ T['io.flow.catalog.v0.models.subcatalog_settings'] = PropTypes.exact({
235
+ update_policy: T['io.flow.catalog.v0.enums.update_policy'].isRequired,
236
+ });
237
+
238
+ T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
239
+ id: PropTypes.string.isRequired,
240
+ key: PropTypes.string.isRequired,
241
+ name: PropTypes.string.isRequired,
242
+ country: PropTypes.string,
243
+ currency: PropTypes.string,
244
+ language: PropTypes.string,
245
+ });
246
+
247
+ T['io.flow.catalog.v0.enums.image_tag'] = PropTypes.oneOf(['thumbnail', 'checkout']);
248
+
249
+ T['io.flow.catalog.v0.models.image_form'] = PropTypes.exact({
250
+ url: PropTypes.string.isRequired,
251
+ tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']),
252
+ attributes: PropTypes.objectOf(PropTypes.string),
253
+ });
254
+
255
+ T['io.flow.catalog.v0.models.image'] = PropTypes.exact({
256
+ url: PropTypes.string.isRequired,
257
+ tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']).isRequired,
258
+ attributes: PropTypes.objectOf(PropTypes.string),
259
+ });
260
+
261
+ T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
262
+
263
+ T['io.flow.catalog.v0.models.flow_item_index_metadata'] = PropTypes.exact({
264
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
265
+ });
266
+
267
+ T['io.flow.catalog.v0.models.catalog'] = PropTypes.exact({
268
+ id: PropTypes.string.isRequired,
269
+ });
270
+
271
+ T['io.flow.catalog.v0.models.subcatalog'] = PropTypes.exact({
272
+ discriminator: PropTypes.oneOf(['subcatalog']).isRequired,
273
+ id: PropTypes.string.isRequired,
274
+ catalog: T['io.flow.catalog.v0.models.catalog'].isRequired,
275
+ settings: T['io.flow.catalog.v0.models.subcatalog_settings'].isRequired,
276
+ });
277
+
278
+ T['io.flow.catalog.v0.unions.expandable_subcatalog'] = PropTypes.oneOfType([
279
+ T['io.flow.catalog.v0.models.subcatalog'],
280
+ T['io.flow.catalog.v0.models.subcatalog_reference'],
281
+ ]);
282
+
283
+ T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
284
+
285
+ T['io.flow.catalog.v0.enums.attribute_intent'] = PropTypes.oneOf([
286
+ 'brand',
287
+ 'color',
288
+ 'countries_of_origin',
289
+ 'product_id',
290
+ 'fulfillment_method',
291
+ 'hazardous',
292
+ 'price',
293
+ 'size',
294
+ 'sku',
295
+ 'taxability',
296
+ 'consumer_url',
297
+ 'gtin',
298
+ 'mpn',
299
+ 'facet',
300
+ 'eccn',
301
+ 'returnable',
302
+ 'searchable',
303
+ 'barcode',
304
+ 'min_days_to_ship',
305
+ 'max_days_to_ship',
306
+ 'commercial_invoice_item_number',
307
+ 'include_in_product_feeds',
308
+ ]);
309
+
310
+ T['io.flow.catalog.v0.models.options'] = PropTypes.exact({
311
+ required: PropTypes.bool.isRequired,
312
+ show_in_catalog: PropTypes.bool.isRequired,
313
+ show_in_harmonization: PropTypes.bool.isRequired,
314
+ });
315
+
316
+ T['io.flow.catalog.v0.models.attribute_form'] = PropTypes.exact({
317
+ key: PropTypes.string.isRequired,
318
+ options: T['io.flow.catalog.v0.models.options'].isRequired,
319
+ label: PropTypes.string,
320
+ intent: T['io.flow.catalog.v0.enums.attribute_intent'],
321
+ type: T['io.flow.common.v0.enums.attribute_data_type'],
322
+ position: PropTypes.number,
323
+ });
324
+
325
+ T['io.flow.catalog.v0.models.attribute'] = PropTypes.exact({
326
+ id: PropTypes.string.isRequired,
327
+ key: PropTypes.string.isRequired,
328
+ options: T['io.flow.catalog.v0.models.options'].isRequired,
329
+ label: PropTypes.string,
330
+ intent: T['io.flow.catalog.v0.enums.attribute_intent'],
331
+ type: T['io.flow.common.v0.enums.attribute_data_type'],
332
+ position: PropTypes.number,
333
+ });
334
+
335
+ T['io.flow.catalog.v0.enums.adjustment_reason_key'] = PropTypes.oneOf(['duty_deminimis', 'vat_deminimis']);
336
+
337
+ T['io.flow.catalog.v0.models.adjustment_reason'] = PropTypes.exact({
338
+ key: T['io.flow.catalog.v0.enums.adjustment_reason_key'].isRequired,
339
+ label: PropTypes.string.isRequired,
340
+ });
341
+
342
+ T['io.flow.common.v0.enums.availability_status'] = PropTypes.oneOf(['enabled', 'disabled']);
343
+
344
+ T['io.flow.organization.v0.models.region_setting_form'] = PropTypes.exact({
345
+ status: T['io.flow.common.v0.enums.availability_status'].isRequired,
346
+ });
347
+
348
+ T['io.flow.organization.v0.models.region_setting'] = PropTypes.exact({
349
+ id: PropTypes.string.isRequired,
350
+ region: PropTypes.string.isRequired,
351
+ status: T['io.flow.common.v0.enums.availability_status'].isRequired,
352
+ });
353
+
354
+ T['io.flow.organization.v0.models.organization_configuration_reference'] = PropTypes.exact({
355
+ id: PropTypes.string.isRequired,
356
+ });
357
+
358
+ T['io.flow.organization.v0.models.organization_default_configurations'] = PropTypes.exact({
359
+ id: PropTypes.string.isRequired,
360
+ checkout_configuration: T['io.flow.organization.v0.models.organization_configuration_reference'].isRequired,
361
+ });
362
+
363
+ T['io.flow.organization.v0.enums.invitation_error_code'] = PropTypes.oneOf(['expired', 'invalid_email']);
364
+
365
+ T['io.flow.organization.v0.models.invitation_error'] = PropTypes.exact({
366
+ code: T['io.flow.organization.v0.enums.invitation_error_code'].isRequired,
367
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
368
+ });
369
+
370
+ T['io.flow.permission.v0.enums.flow_role'] = PropTypes.oneOf([
371
+ 'organization_admin',
372
+ 'organization_merchant',
373
+ 'organization_customer_service',
374
+ 'organization_fulfillment',
375
+ 'organization_marketing',
376
+ 'organization_finance',
377
+ 'organization_classification',
378
+ 'flow_operations',
379
+ 'channel_admin',
380
+ 'channel_organization_admin',
381
+ ]);
382
+
383
+ T['io.flow.permission.v0.models.route_audit'] = PropTypes.exact({
384
+ method: T['io.flow.permission.v0.enums.permitted_http_method'].isRequired,
385
+ path: PropTypes.string.isRequired,
386
+ authentication_techniques: PropTypes.arrayOf(T['io.flow.permission.v0.enums.authentication_technique']).isRequired,
387
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
388
+ });
389
+
390
+ T['io.flow.permission.v0.models.behavior_audit'] = PropTypes.exact({
391
+ behavior: T['io.flow.permission.v0.enums.flow_behavior'].isRequired,
392
+ authentication_techniques: PropTypes.arrayOf(T['io.flow.permission.v0.enums.authentication_technique']).isRequired,
393
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
394
+ });
395
+
396
+ T['io.flow.permission.v0.models.permission_audit'] = PropTypes.exact({
397
+ routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.route_audit']).isRequired,
398
+ behaviors: PropTypes.arrayOf(T['io.flow.permission.v0.models.behavior_audit']).isRequired,
399
+ });
400
+
401
+ T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
402
+
403
+ T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
404
+ role: T['io.flow.common.v0.enums.role'],
405
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
406
+ });
407
+
408
+ T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
409
+ organization: PropTypes.string.isRequired,
410
+ user: PropTypes.string.isRequired,
411
+ role: T['io.flow.common.v0.enums.role'],
412
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
413
+ });
414
+
415
+ T['io.flow.organization.v0.enums.ecommerce_platform_type'] = PropTypes.oneOf([
416
+ 'commercetools',
417
+ 'custom',
418
+ 'hybris',
419
+ 'magento',
420
+ 'shopify',
421
+ 'shopify_markets',
422
+ 'sfcc',
423
+ 'solidus',
424
+ 'workarea',
425
+ ]);
426
+
427
+ T['io.flow.organization.v0.models.ecommerce_platform_form'] = PropTypes.exact({
428
+ type: T['io.flow.organization.v0.enums.ecommerce_platform_type'].isRequired,
429
+ version: PropTypes.string,
430
+ });
431
+
432
+ T['io.flow.organization.v0.models.ecommerce_platform'] = PropTypes.exact({
433
+ id: PropTypes.string.isRequired,
434
+ type: T['io.flow.organization.v0.enums.ecommerce_platform_type'].isRequired,
435
+ version: PropTypes.string,
436
+ });
437
+
438
+ T['io.flow.organization.v0.enums.country_picker_source'] = PropTypes.oneOf(['experience', 'destination']);
439
+
440
+ T['io.flow.organization.v0.models.country_picker_form'] = PropTypes.exact({
441
+ source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
442
+ });
443
+
444
+ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
445
+ id: PropTypes.string.isRequired,
446
+ source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
447
+ });
448
+
449
+ T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
450
+ id: PropTypes.string.isRequired,
451
+ base: PropTypes.string.isRequired,
452
+ target: PropTypes.string.isRequired,
453
+ effective_at: PropTypes.string.isRequired,
454
+ value: PropTypes.number.isRequired,
455
+ });
456
+
3
457
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
4
458
 
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,
459
+ T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
460
+ discriminator: PropTypes.oneOf(['service_unknown']).isRequired,
461
+ name: PropTypes.string.isRequired,
462
+ });
463
+
464
+ T['io.flow.fulfillment.v0.enums.tier_estimate_type'] = PropTypes.oneOf(['calculated', 'custom']);
465
+ T['io.flow.fulfillment.v0.enums.tier_availability'] = PropTypes.oneOf(['always', 'backup']);
466
+
467
+ T['io.flow.fulfillment.v0.models.tier_estimate'] = PropTypes.exact({
468
+ type: T['io.flow.fulfillment.v0.enums.tier_estimate_type'].isRequired,
469
+ label: PropTypes.string,
470
+ });
471
+
472
+ T['io.flow.fulfillment.v0.models.tier_display_form'] = PropTypes.exact({
473
+ estimate: T['io.flow.fulfillment.v0.models.tier_estimate'],
474
+ });
475
+
476
+ T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
477
+
478
+ T['io.flow.fulfillment.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
479
+ name: PropTypes.string.isRequired,
480
+ responsible_party: T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'].isRequired,
481
+ });
482
+
483
+ T['io.flow.query.builder.v0.unions.query_filter'] = PropTypes.oneOfType([
484
+ T['io.flow.query.builder.v0.models.query_filter_structured'],
485
+ T['io.flow.query.builder.v0.models.query_filter_unstructured'],
486
+ ]);
487
+
488
+ T['io.flow.query.builder.v0.models.query_builder'] = PropTypes.exact({
489
+ q: PropTypes.string.isRequired,
490
+ filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter']).isRequired,
491
+ available: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.available_filter']).isRequired,
492
+ });
493
+
494
+ T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
495
+ number: PropTypes.string.isRequired,
496
+ });
497
+
498
+ T['io.flow.fulfillment.v0.enums.lane_preselect_preference'] = PropTypes.oneOf(['lowest_cost', 'default_tier']);
499
+ T['io.flow.fulfillment.v0.enums.lane_strategy'] = PropTypes.oneOf(['oldest', 'fastest', 'lowest_cost', 'highest_priority']);
500
+
501
+ T['io.flow.query.builder.v0.models.query'] = PropTypes.exact({
502
+ q: PropTypes.string.isRequired,
503
+ filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter']).isRequired,
504
+ });
505
+
506
+ T['io.flow.fulfillment.v0.models.shipping_configuration_reference'] = PropTypes.exact({
507
+ key: PropTypes.string.isRequired,
508
+ });
509
+
510
+ T['io.flow.fulfillment.v0.models.shipping_configuration_copy'] = PropTypes.exact({
511
+ original: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
512
+ 'new': T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
513
+ });
514
+
515
+ T['io.flow.fulfillment.v0.enums.shipping_configuration_type'] = PropTypes.oneOf(['default', 'variant']);
516
+
517
+ T['io.flow.fulfillment.v0.models.shipping_configuration_summary'] = PropTypes.exact({
518
+ id: PropTypes.string.isRequired,
519
+ name: PropTypes.string.isRequired,
520
+ key: PropTypes.string.isRequired,
521
+ type: T['io.flow.fulfillment.v0.enums.shipping_configuration_type'].isRequired,
522
+ });
523
+
524
+ T['io.flow.fulfillment.v0.enums.lane_direction'] = PropTypes.oneOf(['outbound', 'return']);
525
+
526
+ T['io.flow.fulfillment.v0.models.shipping_lane_form'] = PropTypes.exact({
527
+ from: PropTypes.string.isRequired,
528
+ to: PropTypes.string.isRequired,
529
+ strategy: T['io.flow.fulfillment.v0.enums.lane_strategy'],
530
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
531
+ preference: T['io.flow.fulfillment.v0.enums.lane_preselect_preference'],
532
+ });
533
+
534
+ T['io.flow.fulfillment.v0.enums.quote_error_code'] = PropTypes.oneOf(['generic_error', 'items_not_available', 'shipping_unavailable']);
535
+
536
+ T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
537
+ code: T['io.flow.fulfillment.v0.enums.quote_error_code'].isRequired,
538
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
539
+ item_numbers: PropTypes.arrayOf(PropTypes.string),
540
+ });
541
+
542
+ T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
543
+ id: PropTypes.string.isRequired,
544
+ });
545
+
546
+ T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
547
+
548
+ T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
549
+ id: PropTypes.string.isRequired,
550
+ selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
551
+ });
552
+
553
+ T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa']);
554
+ T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
555
+ T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
556
+ T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
557
+ T['io.flow.fulfillment.v0.enums.zero_amount_indicator'] = PropTypes.oneOf(['zero', 'free']);
558
+ T['io.flow.fulfillment.v0.enums.delivery_window_location'] = PropTypes.oneOf(['center', 'crossdock', 'customer']);
559
+ T['io.flow.fulfillment.v0.enums.delivery_window_component_source'] = PropTypes.oneOf(['flow', 'organization', 'carrier', 'center', 'mixed']);
560
+
561
+ T['io.flow.fulfillment.v0.models.transit_estimate'] = PropTypes.exact({
562
+ origin: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
563
+ destination: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
564
+ min_date: PropTypes.string.isRequired,
565
+ max_date: PropTypes.string.isRequired,
566
+ source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
567
+ });
568
+
569
+ T['io.flow.fulfillment.v0.models.processing_estimate'] = PropTypes.exact({
570
+ location: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
571
+ min_date: PropTypes.string.isRequired,
572
+ max_date: PropTypes.string.isRequired,
573
+ source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
574
+ });
575
+
576
+ T['io.flow.fulfillment.v0.models.delivery_window_components_v2'] = PropTypes.exact({
577
+ processing_estimates: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.processing_estimate']).isRequired,
578
+ transit_estimates: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.transit_estimate']).isRequired,
579
+ });
580
+
581
+ T['io.flow.fulfillment.v0.models.delivery_window_component'] = PropTypes.exact({
582
+ from: PropTypes.string.isRequired,
583
+ to: PropTypes.string.isRequired,
584
+ source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
585
+ });
586
+
587
+ T['io.flow.fulfillment.v0.models.delivery_window_components'] = PropTypes.exact({
588
+ shipment_estimate: T['io.flow.fulfillment.v0.models.delivery_window_component'].isRequired,
589
+ transit_estimate: T['io.flow.fulfillment.v0.models.delivery_window_component'].isRequired,
590
+ });
591
+
592
+ T['io.flow.fulfillment.v0.models.tier_reference'] = PropTypes.exact({
593
+ id: PropTypes.string.isRequired,
594
+ });
595
+
596
+ T['io.flow.fulfillment.v0.models.shipping_lane_default_tier'] = PropTypes.exact({
597
+ id: PropTypes.string.isRequired,
598
+ tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
599
+ });
600
+
601
+ T['io.flow.fulfillment.v0.models.service_reference'] = PropTypes.exact({
602
+ id: PropTypes.string.isRequired,
603
+ });
604
+
605
+ T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'] = PropTypes.oneOf(['center', 'ratecard']);
606
+
607
+ T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'] = PropTypes.oneOf([
608
+ 'ratecard_base_cost',
609
+ 'ratecard_ddp_fee',
610
+ 'ratecard_fuel_surcharge',
611
+ 'ratecard_oversized_shipment_fee',
612
+ 'ratecard_rural_shipment_fee',
613
+ 'ratecard_emergency_situation_surcharge_fee',
614
+ 'ratecard_peak_surcharge_fee',
615
+ 'ratecard_duties_taxes_paid_surcharge_fee',
616
+ 'center_commercial_invoice_fee',
617
+ 'center_inbound_carton_fee',
618
+ 'center_outbound_carton_fee',
619
+ ]);
620
+
621
+ T['io.flow.fulfillment.v0.models.surcharge_setting_display'] = PropTypes.exact({
622
+ name: PropTypes.string.isRequired,
623
+ description: PropTypes.string.isRequired,
624
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
625
+ available: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_responsible_party_display']).isRequired,
626
+ });
627
+
628
+ T['io.flow.fulfillment.v0.models.surcharge_setting'] = PropTypes.exact({
629
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
630
+ responsible_party: T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'].isRequired,
631
+ });
632
+
633
+ T['io.flow.fulfillment.v0.models.percent_margin'] = PropTypes.exact({
634
+ discriminator: PropTypes.oneOf(['percent_margin']).isRequired,
635
+ percentage: PropTypes.number.isRequired,
636
+ });
637
+
638
+ T['io.flow.fulfillment.v0.models.at_cost'] = PropTypes.exact({
639
+ discriminator: PropTypes.oneOf(['at_cost']).isRequired,
640
+ ignore: PropTypes.string,
641
+ });
642
+
643
+ T['io.flow.fulfillment.v0.models.tier_settings'] = PropTypes.exact({
644
+ availability: T['io.flow.fulfillment.v0.enums.tier_availability'].isRequired,
645
+ });
646
+
647
+ T['io.flow.fulfillment.v0.models.tier_display'] = PropTypes.exact({
648
+ estimate: T['io.flow.fulfillment.v0.models.tier_estimate'].isRequired,
649
+ });
650
+
651
+ T['io.flow.common.v0.enums.visibility'] = PropTypes.oneOf(['public', 'private']);
652
+ T['io.flow.fulfillment.v0.enums.tier_strategy'] = PropTypes.oneOf(['fastest', 'lowest_cost']);
653
+ T['io.flow.fulfillment.v0.enums.shipment_integration_type'] = PropTypes.oneOf(['direct', 'information', 'preadvice']);
654
+
655
+ T['io.flow.fulfillment.v0.models.fulfillment_experience_reference'] = PropTypes.exact({
656
+ id: PropTypes.string.isRequired,
657
+ currency: PropTypes.string.isRequired,
658
+ });
659
+
660
+ T['io.flow.fulfillment.v0.models.carrier_reference'] = PropTypes.exact({
661
+ id: PropTypes.string.isRequired,
662
+ });
663
+
664
+ T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
665
+
666
+ T['io.flow.fulfillment.v0.models.delivery_window'] = PropTypes.exact({
667
+ from: PropTypes.string.isRequired,
668
+ to: PropTypes.string.isRequired,
669
+ timezone: PropTypes.string,
670
+ label: PropTypes.string,
671
+ min_days: PropTypes.number,
672
+ max_days: PropTypes.number,
673
+ });
674
+
675
+ T['io.flow.fulfillment.v0.models.delivery_window_summary'] = PropTypes.exact({
676
+ country: PropTypes.string.isRequired,
677
+ delivery_window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
678
+ });
679
+
680
+ T['io.flow.fulfillment.v0.models.tier_summary'] = PropTypes.exact({
681
+ id: PropTypes.string.isRequired,
682
+ experience: T['io.flow.fulfillment.v0.models.fulfillment_experience_reference'],
683
+ integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
684
+ name: PropTypes.string.isRequired,
685
+ services: PropTypes.arrayOf(PropTypes.string).isRequired,
686
+ strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
687
+ visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
688
+ currency: PropTypes.string.isRequired,
689
+ display: T['io.flow.fulfillment.v0.models.tier_display'],
690
+ message: PropTypes.string,
691
+ settings: T['io.flow.fulfillment.v0.models.tier_settings'],
692
+ });
693
+
694
+ T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
695
+ T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
696
+
697
+ T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
698
+ status: T['io.flow.fulfillment.v0.enums.item_availability_status'].isRequired,
699
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
700
+ });
701
+
702
+ T['io.flow.fulfillment.v0.models.shipping_configuration_item_availability'] = PropTypes.exact({
703
+ id: PropTypes.string.isRequired,
704
+ item: T['io.flow.common.v0.models.item_reference'].isRequired,
705
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
706
+ availabilities: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_availability']).isRequired,
707
+ });
708
+
709
+ T['io.flow.common.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
710
+
711
+ T['io.flow.inventory.v0.models.inventory_update_version'] = PropTypes.exact({
712
+ id: PropTypes.string.isRequired,
713
+ timestamp: PropTypes.string.isRequired,
714
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
715
+ inventory_update: T['io.flow.inventory.v0.models.inventory_update'].isRequired,
716
+ });
717
+
718
+ T['io.flow.inventory.v0.models.inventory_snapshot_version'] = PropTypes.exact({
719
+ id: PropTypes.string.isRequired,
720
+ timestamp: PropTypes.string.isRequired,
721
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
722
+ inventory_snapshot: T['io.flow.inventory.v0.models.inventory_snapshot'].isRequired,
723
+ });
724
+
725
+ T['io.flow.catalog.v0.models.subcatalog_version'] = PropTypes.exact({
726
+ id: PropTypes.string.isRequired,
727
+ timestamp: PropTypes.string.isRequired,
728
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
729
+ subcatalog: T['io.flow.catalog.v0.models.subcatalog'].isRequired,
730
+ });
731
+
732
+ T['io.flow.catalog.v0.models.catalog_version'] = PropTypes.exact({
733
+ id: PropTypes.string.isRequired,
734
+ timestamp: PropTypes.string.isRequired,
735
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
736
+ catalog: T['io.flow.catalog.v0.models.catalog'].isRequired,
737
+ });
738
+
739
+ T['io.flow.catalog.v0.models.attribute_version'] = PropTypes.exact({
740
+ id: PropTypes.string.isRequired,
741
+ timestamp: PropTypes.string.isRequired,
742
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
743
+ attribute: T['io.flow.catalog.v0.models.attribute'].isRequired,
744
+ });
745
+
746
+ T['io.flow.currency.v0.models.rate_version'] = PropTypes.exact({
747
+ id: PropTypes.string.isRequired,
748
+ timestamp: PropTypes.string.isRequired,
749
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
750
+ rate: T['io.flow.currency.v0.models.rate'].isRequired,
751
+ });
752
+
753
+ T['io.flow.fulfillment.v0.models.tier_version'] = PropTypes.exact({
754
+ id: PropTypes.string.isRequired,
755
+ timestamp: PropTypes.string.isRequired,
756
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
757
+ tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
758
+ });
759
+
760
+ T['io.flow.common.v0.models.partner_reference'] = PropTypes.exact({
761
+ id: PropTypes.string.isRequired,
762
+ });
763
+
764
+ T['io.flow.fulfillment.v0.models.service_summary'] = PropTypes.exact({
765
+ discriminator: PropTypes.oneOf(['service_summary']).isRequired,
766
+ id: PropTypes.string.isRequired,
767
+ carrier: T['io.flow.fulfillment.v0.models.carrier_reference'].isRequired,
768
+ name: PropTypes.string.isRequired,
769
+ center_code: PropTypes.string,
770
+ });
771
+
772
+ T['io.flow.fulfillment.v0.unions.service_description'] = PropTypes.oneOfType([
773
+ T['io.flow.fulfillment.v0.models.service_summary'],
774
+ T['io.flow.fulfillment.v0.models.service_unknown'],
775
+ ]);
776
+
777
+ T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
778
+ discriminator: PropTypes.oneOf(['center_reference']).isRequired,
779
+ organization_id: PropTypes.string.isRequired,
780
+ center_key: PropTypes.string.isRequired,
781
+ });
782
+
783
+ T['io.flow.common.v0.models.address'] = PropTypes.exact({
784
+ text: PropTypes.string,
785
+ streets: PropTypes.arrayOf(PropTypes.string),
786
+ street_number: PropTypes.string,
787
+ city: PropTypes.string,
788
+ province: PropTypes.string,
789
+ postal: PropTypes.string,
790
+ country: PropTypes.string,
791
+ latitude: PropTypes.string,
792
+ longitude: PropTypes.string,
793
+ });
794
+
795
+ T['io.flow.fulfillment.v0.enums.center_capability'] = PropTypes.oneOf(['international', 'domestic', 'crossdock', 'commercial_invoice']);
796
+
797
+ T['io.flow.fulfillment.v0.models.number_range'] = PropTypes.exact({
798
+ min: PropTypes.number.isRequired,
799
+ max: PropTypes.number.isRequired,
800
+ });
801
+
802
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
803
+ discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
804
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
805
+ num_events: PropTypes.number.isRequired,
806
+ });
807
+
808
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
809
+ discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
810
+ organization_id: PropTypes.string.isRequired,
811
+ num_events: PropTypes.number.isRequired,
812
+ });
813
+
814
+ T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
815
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'],
816
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
817
+ ]);
818
+
819
+ T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
820
+ 'area',
821
+ 'city',
822
+ 'county',
823
+ 'department',
824
+ 'dependency',
825
+ 'district',
826
+ 'do_si',
827
+ 'emirate',
828
+ 'entity',
829
+ 'island',
830
+ 'municipality',
831
+ 'oblast',
832
+ 'outlying_area',
833
+ 'parish',
834
+ 'prefecture',
835
+ 'province',
836
+ 'state',
837
+ 'territory',
838
+ 'other',
839
+ ]);
840
+
841
+ T['io.flow.reference.v0.models.payment_method_image'] = PropTypes.exact({
842
+ url: PropTypes.string.isRequired,
843
+ width: PropTypes.number.isRequired,
844
+ height: PropTypes.number.isRequired,
845
+ });
846
+
847
+ T['io.flow.reference.v0.enums.payment_method_capability'] = PropTypes.oneOf(['credit', 'debit']);
848
+
849
+ T['io.flow.reference.v0.models.payment_method_images'] = PropTypes.exact({
850
+ small: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
851
+ medium: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
852
+ large: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
853
+ });
854
+
855
+ T['io.flow.reference.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
856
+
857
+ T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
858
+ id: PropTypes.string.isRequired,
859
+ type: T['io.flow.reference.v0.enums.payment_method_type'].isRequired,
860
+ name: PropTypes.string.isRequired,
861
+ images: T['io.flow.reference.v0.models.payment_method_images'].isRequired,
862
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
863
+ capabilities: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_capability']),
864
+ });
865
+
866
+ T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
867
+ decimal: PropTypes.string.isRequired,
868
+ group: PropTypes.string.isRequired,
869
+ });
870
+
871
+ T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
872
+ id: PropTypes.string.isRequired,
873
+ name: PropTypes.string.isRequired,
874
+ country: PropTypes.string.isRequired,
875
+ language: PropTypes.string.isRequired,
876
+ numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
877
+ });
878
+
879
+ T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
880
+ locale: T['io.flow.reference.v0.models.locale'].isRequired,
881
+ name: PropTypes.string.isRequired,
882
+ });
883
+
884
+ T['io.flow.reference.v0.models.province'] = PropTypes.exact({
885
+ id: PropTypes.string.isRequired,
886
+ iso_3166_2: PropTypes.string.isRequired,
887
+ name: PropTypes.string.isRequired,
888
+ country: PropTypes.string.isRequired,
889
+ province_type: T['io.flow.reference.v0.enums.province_type'].isRequired,
890
+ translations: PropTypes.arrayOf(T['io.flow.reference.v0.models.localized_translation']),
891
+ });
892
+
893
+ T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
894
+ primary: PropTypes.string.isRequired,
895
+ narrow: PropTypes.string,
896
+ });
897
+
898
+ T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
899
+ name: PropTypes.string.isRequired,
900
+ iso_4217_3: PropTypes.string.isRequired,
901
+ number_decimals: PropTypes.number.isRequired,
902
+ symbols: T['io.flow.reference.v0.models.currency_symbols'],
903
+ default_locale: PropTypes.string,
904
+ });
905
+
906
+ T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
907
+ id: PropTypes.string.isRequired,
908
+ name: PropTypes.string.isRequired,
909
+ tracking_url: PropTypes.string.isRequired,
910
+ });
911
+
912
+ T['io.flow.reference.v0.models.carrier_service'] = PropTypes.exact({
913
+ id: PropTypes.string.isRequired,
914
+ carrier: T['io.flow.reference.v0.models.carrier'].isRequired,
915
+ name: PropTypes.string.isRequired,
916
+ });
917
+
918
+ T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
919
+
920
+ T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
921
+ 'base_price',
922
+ 'discount',
923
+ 'currency_margin',
924
+ 'percent_item_margin',
925
+ 'fixed_item_margin',
926
+ 'duties_item_price',
927
+ 'duties_added_margin',
928
+ 'duties_rounding',
929
+ 'duties_deminimis',
930
+ 'vat_item_price',
931
+ 'vat_added_margin',
932
+ 'vat_rounding',
933
+ 'vat_duties_item_price',
934
+ 'vat_duties_added_margin',
935
+ 'vat_duties_rounding',
936
+ 'vat_deminimis',
937
+ 'item_price_percent_sales_margin',
938
+ 'margins_percent_sales_margin',
939
+ 'rounding_percent_sales_margin',
940
+ 'vat_percent_sales_margin',
941
+ 'vat_duty_percent_sales_margin',
942
+ 'duty_percent_sales_margin',
943
+ ]);
944
+
945
+ T['io.flow.price.v0.models.price_book_item_schedule'] = PropTypes.exact({
946
+ starts_at: PropTypes.string.isRequired,
947
+ ends_at: PropTypes.string,
948
+ });
949
+
950
+ T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
951
+ price_book_key: PropTypes.string.isRequired,
952
+ item_query: PropTypes.string.isRequired,
953
+ amount: PropTypes.number.isRequired,
954
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
955
+ item_attributes: PropTypes.objectOf(PropTypes.string),
956
+ });
957
+
958
+ T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
959
+ price_book_key: PropTypes.string.isRequired,
960
+ item_number: PropTypes.string.isRequired,
961
+ amount: PropTypes.number.isRequired,
962
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
963
+ item_attributes: PropTypes.objectOf(PropTypes.string),
964
+ });
965
+
966
+ T['io.flow.price.v0.models.price_book_reference'] = PropTypes.exact({
967
+ id: PropTypes.string.isRequired,
968
+ key: PropTypes.string.isRequired,
969
+ });
970
+
971
+ T['io.flow.common.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
972
+
973
+ T['io.flow.price.v0.models.price_detail_component'] = PropTypes.exact({
974
+ key: T['io.flow.price.v0.enums.price_detail_component_key'].isRequired,
975
+ amount: PropTypes.number.isRequired,
976
+ label: PropTypes.string.isRequired,
977
+ name: PropTypes.string,
978
+ });
979
+
980
+ T['io.flow.price.v0.enums.price_detail_key'] = PropTypes.oneOf(['item_price', 'margins', 'vat', 'duty', 'rounding', 'adjustment']);
981
+
982
+ T['io.flow.price.v0.models.price_detail'] = PropTypes.exact({
983
+ key: T['io.flow.price.v0.enums.price_detail_key'].isRequired,
984
+ components: PropTypes.arrayOf(T['io.flow.price.v0.models.price_detail_component']).isRequired,
985
+ amount: PropTypes.number.isRequired,
986
+ label: PropTypes.string.isRequired,
987
+ name: PropTypes.string,
988
+ basis: PropTypes.number,
989
+ });
990
+
991
+ T['io.flow.price.v0.models.deminimis_per_item'] = PropTypes.exact({
992
+ discriminator: PropTypes.oneOf(['deminimis_per_item']).isRequired,
993
+ currency: PropTypes.string.isRequired,
994
+ minimum: PropTypes.number,
995
+ maximum: PropTypes.number,
996
+ });
997
+
998
+ T['io.flow.price.v0.enums.levy_component'] = PropTypes.oneOf(['goods', 'duty', 'insurance', 'freight', 'vat']);
999
+
1000
+ T['io.flow.price.v0.models.deminimis_simple'] = PropTypes.exact({
1001
+ discriminator: PropTypes.oneOf(['deminimis_simple']).isRequired,
1002
+ value: PropTypes.number,
1003
+ currency: PropTypes.string.isRequired,
1004
+ components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
1005
+ minimum: PropTypes.number,
1006
+ });
1007
+
1008
+ T['io.flow.price.v0.unions.deminimis'] = PropTypes.oneOfType([
1009
+ T['io.flow.price.v0.models.deminimis_simple'],
1010
+ T['io.flow.price.v0.models.deminimis_per_item'],
1011
+ ]);
1012
+
1013
+ T['io.flow.price.v0.models.tax'] = PropTypes.exact({
1014
+ name: PropTypes.string.isRequired,
1015
+ rate: PropTypes.number.isRequired,
1016
+ components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
1017
+ deminimis: T['io.flow.price.v0.unions.deminimis'],
1018
+ });
1019
+
1020
+ T['io.flow.price.v0.models.duty'] = PropTypes.exact({
1021
+ rate: PropTypes.number.isRequired,
1022
+ components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
1023
+ deminimis: T['io.flow.price.v0.unions.deminimis'],
1024
+ name: PropTypes.string,
1025
+ });
1026
+
1027
+ T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
1028
+ T['io.flow.common.v0.enums.currency_symbol_format'] = PropTypes.oneOf(['narrow', 'primary']);
1029
+
1030
+ T['io.flow.price.v0.models.currency_format'] = PropTypes.exact({
1031
+ symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
1032
+ label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
1033
+ });
1034
+
1035
+ T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
1036
+
1037
+ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
1038
+ code: T['io.flow.error.v0.enums.generic_error_code'].isRequired,
1039
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
1040
+ });
1041
+
1042
+ T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
1043
+ discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
1044
+ interval: PropTypes.number.isRequired,
1045
+ days: PropTypes.arrayOf(PropTypes.number).isRequired,
1046
+ });
1047
+
1048
+ T['io.flow.common.v0.models.repeat_daily'] = PropTypes.exact({
1049
+ discriminator: PropTypes.oneOf(['repeat_daily']).isRequired,
1050
+ interval: PropTypes.number.isRequired,
1051
+ });
1052
+
1053
+ T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
1054
+ discriminator: PropTypes.oneOf(['repeat_hourly']).isRequired,
1055
+ interval: PropTypes.number.isRequired,
1056
+ });
1057
+
1058
+ T['io.flow.common.v0.models.logo_image_svg'] = PropTypes.exact({
1059
+ discriminator: PropTypes.oneOf(['svg']).isRequired,
1060
+ url: PropTypes.string.isRequired,
1061
+ });
1062
+
1063
+ T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
1064
+ discriminator: PropTypes.oneOf(['user_reference']).isRequired,
1065
+ id: PropTypes.string.isRequired,
1066
+ });
1067
+
1068
+ T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
1069
+ T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
1070
+ T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
1071
+ T['io.flow.common.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
1072
+ T['io.flow.common.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
1073
+
1074
+ T['io.flow.common.v0.models.rounding'] = PropTypes.exact({
1075
+ type: T['io.flow.common.v0.enums.rounding_type'].isRequired,
1076
+ method: T['io.flow.common.v0.enums.rounding_method'].isRequired,
1077
+ value: PropTypes.number.isRequired,
1078
+ });
1079
+
1080
+ T['io.flow.price.v0.models.pricing'] = PropTypes.exact({
1081
+ vat: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
1082
+ duty: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
1083
+ rounding: T['io.flow.common.v0.models.rounding'],
1084
+ });
1085
+
1086
+ T['io.flow.price.v0.models.price_equation'] = PropTypes.exact({
1087
+ contracted_rate: PropTypes.number.isRequired,
1088
+ rate: PropTypes.number.isRequired,
1089
+ pricing: T['io.flow.price.v0.models.pricing'].isRequired,
1090
+ base_price: PropTypes.number.isRequired,
1091
+ discount: PropTypes.number.isRequired,
1092
+ fixed_margin: PropTypes.number.isRequired,
1093
+ percent_margin: PropTypes.number.isRequired,
1094
+ insurance: PropTypes.number.isRequired,
1095
+ freight: PropTypes.number.isRequired,
1096
+ duty: T['io.flow.price.v0.models.duty'],
1097
+ tax: T['io.flow.price.v0.models.tax'],
1098
+ percent_sales_margin: PropTypes.number.isRequired,
1099
+ });
1100
+
1101
+ T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
1102
+ 'sunday',
1103
+ 'monday',
1104
+ 'tuesday',
1105
+ 'wednesday',
1106
+ 'thursday',
1107
+ 'friday',
1108
+ 'saturday',
1109
+ ]);
1110
+
1111
+ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
1112
+ day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
1113
+ hour_of_day: PropTypes.string.isRequired,
1114
+ minute_of_hour: PropTypes.string.isRequired,
1115
+ });
1116
+
1117
+ T['io.flow.fulfillment.v0.models.available_service'] = PropTypes.exact({
1118
+ service: PropTypes.string.isRequired,
1119
+ scheduled_pickups: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.scheduled_pickup']),
1120
+ lead_days: T['io.flow.fulfillment.v0.models.number_range'],
1121
+ });
1122
+
1123
+ T['io.flow.common.v0.models.repeat_weekly'] = PropTypes.exact({
1124
+ discriminator: PropTypes.oneOf(['repeat_weekly']).isRequired,
1125
+ interval: PropTypes.number.isRequired,
1126
+ days_of_week: PropTypes.arrayOf(T['io.flow.common.v0.enums.day_of_week']).isRequired,
1127
+ });
1128
+
1129
+ T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
1130
+ T['io.flow.common.v0.models.repeat_hourly'],
1131
+ T['io.flow.common.v0.models.repeat_daily'],
1132
+ T['io.flow.common.v0.models.repeat_weekly'],
1133
+ T['io.flow.common.v0.models.repeat_monthly'],
1134
+ ]);
1135
+
1136
+ T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
1137
+ id: PropTypes.string.isRequired,
1138
+ key: PropTypes.string.isRequired,
1139
+ });
1140
+
1141
+ T['io.flow.common.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
1142
+ T['io.flow.common.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
1143
+
1144
+ T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
1145
+ country: PropTypes.string.isRequired,
1146
+ base_currency: PropTypes.string.isRequired,
1147
+ language: PropTypes.string.isRequired,
1148
+ locale: PropTypes.string.isRequired,
1149
+ timezone: PropTypes.string.isRequired,
1150
+ });
1151
+
1152
+ T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
1153
+
1154
+ T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
1155
+ name: PropTypes.string,
1156
+ environment: T['io.flow.common.v0.enums.environment'],
1157
+ parent_id: PropTypes.string,
1158
+ defaults: T['io.flow.common.v0.models.organization_defaults'],
1159
+ status: T['io.flow.common.v0.enums.organization_status'],
1160
+ });
1161
+
1162
+ T['io.flow.organization.v0.models.organization_form'] = PropTypes.exact({
1163
+ id: PropTypes.string,
1164
+ name: PropTypes.string,
1165
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1166
+ parent_id: PropTypes.string,
1167
+ defaults: T['io.flow.common.v0.models.organization_defaults'],
1168
+ status: T['io.flow.common.v0.enums.organization_status'],
1169
+ type: T['io.flow.common.v0.enums.organization_type'],
1170
+ });
1171
+
1172
+ T['io.flow.organization.v0.models.organization_authorization_form'] = PropTypes.exact({
1173
+ organization: PropTypes.string.isRequired,
1174
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1175
+ });
1176
+
1177
+ T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
1178
+ role: T['io.flow.common.v0.enums.role'],
1179
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1180
+ });
1181
+
1182
+ T['io.flow.common.v0.models.organization_summary'] = PropTypes.exact({
1183
+ id: PropTypes.string.isRequired,
1184
+ name: PropTypes.string.isRequired,
1185
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1186
+ });
1187
+
1188
+ T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
1189
+ number: PropTypes.string.isRequired,
1190
+ country: PropTypes.string.isRequired,
1191
+ });
1192
+
1193
+ T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
1194
+ discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
1195
+ id: PropTypes.string.isRequired,
1196
+ });
1197
+
1198
+ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
1199
+ discriminator: PropTypes.oneOf(['organization']).isRequired,
1200
+ id: PropTypes.string.isRequired,
1201
+ name: PropTypes.string.isRequired,
1202
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1203
+ parent: T['io.flow.common.v0.models.organization_reference'],
1204
+ defaults: T['io.flow.common.v0.models.organization_defaults'],
1205
+ created_at: PropTypes.string,
1206
+ status: T['io.flow.common.v0.enums.organization_status'],
1207
+ type: T['io.flow.common.v0.enums.organization_type'],
1208
+ });
1209
+
1210
+ T['io.flow.organization.v0.models.organization_version'] = PropTypes.exact({
1211
+ id: PropTypes.string.isRequired,
1212
+ timestamp: PropTypes.string.isRequired,
1213
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1214
+ organization: T['io.flow.common.v0.models.organization'].isRequired,
1215
+ });
1216
+
1217
+ T['io.flow.common.v0.unions.expandable_organization'] = PropTypes.oneOfType([
1218
+ T['io.flow.common.v0.models.organization'],
1219
+ T['io.flow.common.v0.models.organization_reference'],
1220
+ ]);
1221
+
1222
+ T['io.flow.common.v0.enums.margin_type'] = PropTypes.oneOf(['fixed', 'percent']);
1223
+
1224
+ T['io.flow.common.v0.models.margin'] = PropTypes.exact({
1225
+ type: T['io.flow.common.v0.enums.margin_type'].isRequired,
1226
+ value: PropTypes.number.isRequired,
1227
+ });
1228
+
1229
+ T['io.flow.common.v0.models.logo_image_static'] = PropTypes.exact({
1230
+ url: PropTypes.string.isRequired,
1231
+ width: PropTypes.number.isRequired,
1232
+ height: PropTypes.number.isRequired,
1233
+ });
1234
+
1235
+ T['io.flow.common.v0.models.logo_image_set_static'] = PropTypes.exact({
1236
+ discriminator: PropTypes.oneOf(['static']).isRequired,
1237
+ small: T['io.flow.common.v0.models.logo_image_static'],
1238
+ medium: T['io.flow.common.v0.models.logo_image_static'].isRequired,
1239
+ large: T['io.flow.common.v0.models.logo_image_static'],
1240
+ });
1241
+
1242
+ T['io.flow.common.v0.unions.logo_image'] = PropTypes.oneOfType([
1243
+ T['io.flow.common.v0.models.logo_image_svg'],
1244
+ T['io.flow.common.v0.models.logo_image_set_static'],
1245
+ ]);
1246
+
1247
+ T['io.flow.common.v0.models.input_specification_limitation_max'] = PropTypes.exact({
1248
+ discriminator: PropTypes.oneOf(['input_specification_limitation_max']).isRequired,
1249
+ max: PropTypes.number.isRequired,
1250
+ });
1251
+
1252
+ T['io.flow.common.v0.unions.input_specification_limitation'] = PropTypes.oneOfType([T['io.flow.common.v0.models.input_specification_limitation_max']]);
1253
+ T['io.flow.common.v0.enums.input_specification_type'] = PropTypes.oneOf(['text', 'number']);
1254
+
1255
+ T['io.flow.common.v0.models.input_specification_limitations'] = PropTypes.exact({
1256
+ limitations: PropTypes.arrayOf(T['io.flow.common.v0.unions.input_specification_limitation']),
1257
+ });
1258
+
1259
+ T['io.flow.common.v0.models.input_specification'] = PropTypes.exact({
1260
+ type: T['io.flow.common.v0.enums.input_specification_type'].isRequired,
1261
+ name: PropTypes.string.isRequired,
1262
+ display_text: PropTypes.string,
1263
+ });
1264
+
1265
+ T['io.flow.common.v0.models.input_form_specification'] = PropTypes.exact({
1266
+ inputs: PropTypes.arrayOf(T['io.flow.common.v0.models.input_specification']),
1267
+ limitations: T['io.flow.common.v0.models.input_specification_limitations'],
1268
+ });
1269
+
1270
+ T['io.flow.common.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
1271
+
1272
+ T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
1273
+ currency: PropTypes.string.isRequired,
1274
+ name: PropTypes.string.isRequired,
1275
+ includes: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
1276
+ status: T['io.flow.common.v0.enums.price_book_status'],
1277
+ });
1278
+
1279
+ T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
1280
+ key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
1281
+ label: PropTypes.string.isRequired,
1282
+ });
1283
+
1284
+ T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
1285
+ id: PropTypes.string.isRequired,
1286
+ key: PropTypes.string.isRequired,
1287
+ currency: PropTypes.string.isRequired,
1288
+ name: PropTypes.string.isRequired,
1289
+ includes: T['io.flow.common.v0.models.included_levies'].isRequired,
1290
+ status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
1291
+ });
1292
+
1293
+ T['io.flow.common.v0.models.datetime_range'] = PropTypes.exact({
1294
+ from: PropTypes.string.isRequired,
1295
+ to: PropTypes.string.isRequired,
1296
+ });
1297
+
1298
+ T['io.flow.common.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
1299
+
1300
+ T['io.flow.common.v0.models.exception'] = PropTypes.exact({
1301
+ type: T['io.flow.common.v0.enums.exception_type'].isRequired,
1302
+ datetime_range: T['io.flow.common.v0.models.datetime_range'].isRequired,
1303
+ });
1304
+
1305
+ T['io.flow.common.v0.models.schedule'] = PropTypes.exact({
1306
+ calendar: T['io.flow.common.v0.enums.calendar'],
1307
+ holiday: T['io.flow.common.v0.enums.holiday_calendar'].isRequired,
1308
+ exception: PropTypes.arrayOf(T['io.flow.common.v0.models.exception']).isRequired,
1309
+ cutoff: PropTypes.string,
1310
+ min_lead_time: PropTypes.number,
1311
+ max_lead_time: PropTypes.number,
1312
+ });
1313
+
1314
+ T['io.flow.common.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec', 'zaz']);
1315
+
1316
+ T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
1317
+ name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
1318
+ number: PropTypes.string.isRequired,
1319
+ issuing_country: PropTypes.string,
1320
+ });
1321
+
1322
+ T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
1323
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
1324
+ name: PropTypes.string.isRequired,
1325
+ vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
1326
+ identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
1327
+ streets: PropTypes.arrayOf(PropTypes.string).isRequired,
1328
+ city: PropTypes.string.isRequired,
1329
+ province: PropTypes.string,
1330
+ postal: PropTypes.string,
1331
+ country: PropTypes.string.isRequired,
1332
+ phone: PropTypes.string,
1333
+ email: PropTypes.string,
1334
+ });
1335
+
1336
+ T['io.flow.common.v0.enums.unit_of_time'] = PropTypes.oneOf(['year', 'month', 'week', 'day', 'hour', 'minute']);
1337
+
1338
+ T['io.flow.fulfillment.v0.models.estimated_window'] = PropTypes.exact({
1339
+ from: PropTypes.number.isRequired,
1340
+ to: PropTypes.number.isRequired,
1341
+ unit: T['io.flow.common.v0.enums.unit_of_time'].isRequired,
1342
+ });
1343
+
1344
+ T['io.flow.common.v0.models.duration'] = PropTypes.exact({
1345
+ unit: T['io.flow.common.v0.enums.unit_of_time'].isRequired,
1346
+ value: PropTypes.number.isRequired,
1347
+ });
1348
+
1349
+ T['io.flow.common.v0.models.money'] = PropTypes.exact({
1350
+ amount: PropTypes.number.isRequired,
1351
+ currency: PropTypes.string.isRequired,
1352
+ });
1353
+
1354
+ T['io.flow.fulfillment.v0.models.outbound_carton_fee'] = PropTypes.exact({
1355
+ discriminator: PropTypes.oneOf(['outbound_carton_fee']).isRequired,
1356
+ amount: T['io.flow.common.v0.models.money'].isRequired,
1357
+ });
1358
+
1359
+ T['io.flow.fulfillment.v0.models.inbound_carton_fee'] = PropTypes.exact({
1360
+ discriminator: PropTypes.oneOf(['inbound_carton_fee']).isRequired,
1361
+ amount: T['io.flow.common.v0.models.money'].isRequired,
1362
+ });
1363
+
1364
+ T['io.flow.fulfillment.v0.models.flat_rate_form'] = PropTypes.exact({
1365
+ discriminator: PropTypes.oneOf(['flat_rate_form']).isRequired,
1366
+ price: T['io.flow.common.v0.models.money'].isRequired,
1367
+ zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
1368
+ });
1369
+
1370
+ T['io.flow.fulfillment.v0.models.commercial_invoice_fee'] = PropTypes.exact({
1371
+ discriminator: PropTypes.oneOf(['commercial_invoice_fee']).isRequired,
1372
+ amount: T['io.flow.common.v0.models.money'].isRequired,
1373
+ });
1374
+
1375
+ T['io.flow.fulfillment.v0.unions.partner_center_fee'] = PropTypes.oneOfType([
1376
+ T['io.flow.fulfillment.v0.models.commercial_invoice_fee'],
1377
+ T['io.flow.fulfillment.v0.models.inbound_carton_fee'],
1378
+ T['io.flow.fulfillment.v0.models.outbound_carton_fee'],
1379
+ ]);
1380
+
1381
+ T['io.flow.fulfillment.v0.models.partner_center_form'] = PropTypes.exact({
1382
+ partner_id: PropTypes.string.isRequired,
1383
+ number: PropTypes.string,
1384
+ fees: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.partner_center_fee']),
1385
+ });
1386
+
1387
+ T['io.flow.fulfillment.v0.models.partner_center'] = PropTypes.exact({
1388
+ partner_reference: T['io.flow.common.v0.models.partner_reference'].isRequired,
1389
+ number: PropTypes.string,
1390
+ fees: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.partner_center_fee']),
1391
+ });
1392
+
1393
+ T['io.flow.fulfillment.v0.models.amount_margin_form'] = PropTypes.exact({
1394
+ discriminator: PropTypes.oneOf(['amount_margin_form']).isRequired,
1395
+ margin: T['io.flow.common.v0.models.money'].isRequired,
1396
+ });
1397
+
1398
+ T['io.flow.fulfillment.v0.unions.tier_rule_outcome_form'] = PropTypes.oneOfType([
1399
+ T['io.flow.fulfillment.v0.models.amount_margin_form'],
1400
+ T['io.flow.fulfillment.v0.models.flat_rate_form'],
1401
+ T['io.flow.fulfillment.v0.models.at_cost'],
1402
+ T['io.flow.fulfillment.v0.models.percent_margin'],
1403
+ ]);
1404
+
1405
+ T['io.flow.fulfillment.v0.models.tier_rule_form'] = PropTypes.exact({
1406
+ position: PropTypes.number,
1407
+ query: PropTypes.string.isRequired,
1408
+ outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome_form'].isRequired,
1409
+ });
1410
+
1411
+ T['io.flow.fulfillment.v0.models.tier_form'] = PropTypes.exact({
1412
+ currency: PropTypes.string.isRequired,
1413
+ integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
1414
+ name: PropTypes.string.isRequired,
1415
+ message: PropTypes.string,
1416
+ rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule_form']).isRequired,
1417
+ services: PropTypes.arrayOf(PropTypes.string).isRequired,
1418
+ strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
1419
+ visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
1420
+ description: PropTypes.string,
1421
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
1422
+ display: T['io.flow.fulfillment.v0.models.tier_display_form'],
1423
+ shipping_lane: PropTypes.string.isRequired,
1424
+ surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
1425
+ settings: T['io.flow.fulfillment.v0.models.tier_settings'],
1426
+ });
1427
+
1428
+ T['io.flow.common.v0.models.price_source_provided'] = PropTypes.exact({
1429
+ discriminator: PropTypes.oneOf(['provided']).isRequired,
1430
+ price: T['io.flow.common.v0.models.money'].isRequired,
1431
+ });
1432
+
1433
+ T['io.flow.common.v0.models.price_source_price_book'] = PropTypes.exact({
1434
+ discriminator: PropTypes.oneOf(['price_book']).isRequired,
1435
+ price: T['io.flow.common.v0.models.money'].isRequired,
1436
+ includes: T['io.flow.common.v0.models.included_levies'].isRequired,
1437
+ price_book_reference: T['io.flow.common.v0.models.price_source_price_book_reference'].isRequired,
1438
+ });
1439
+
1440
+ T['io.flow.common.v0.models.price_source_catalog'] = PropTypes.exact({
1441
+ discriminator: PropTypes.oneOf(['catalog']).isRequired,
1442
+ price: T['io.flow.common.v0.models.money'].isRequired,
1443
+ });
1444
+
1445
+ T['io.flow.common.v0.unions.price_source'] = PropTypes.oneOfType([
1446
+ T['io.flow.common.v0.models.price_source_price_book'],
1447
+ T['io.flow.common.v0.models.price_source_catalog'],
1448
+ T['io.flow.common.v0.models.price_source_provided'],
1449
+ ]);
1450
+
1451
+ T['io.flow.common.v0.models.money_with_optional_base'] = PropTypes.exact({
1452
+ currency: PropTypes.string.isRequired,
1453
+ amount: PropTypes.number.isRequired,
1454
+ base: T['io.flow.common.v0.models.money'],
1455
+ });
1456
+
1457
+ T['io.flow.fulfillment.v0.models.delivery_item'] = PropTypes.exact({
1458
+ id: PropTypes.string,
1459
+ number: PropTypes.string.isRequired,
1460
+ quantity: PropTypes.number.isRequired,
1461
+ shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
1462
+ price: T['io.flow.common.v0.models.money_with_optional_base'],
1463
+ attributes: PropTypes.objectOf(PropTypes.string),
1464
+ center: PropTypes.string,
1465
+ line_number: PropTypes.number,
1466
+ });
1467
+
1468
+ T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
1469
+ currency: PropTypes.string.isRequired,
1470
+ amount: PropTypes.number.isRequired,
1471
+ base: T['io.flow.common.v0.models.money'].isRequired,
1472
+ });
1473
+
1474
+ T['io.flow.fulfillment.v0.models.quote_line_item_form'] = PropTypes.exact({
1475
+ number: PropTypes.string.isRequired,
1476
+ quantity: PropTypes.number.isRequired,
1477
+ shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
1478
+ price: T['io.flow.common.v0.models.money_with_base'].isRequired,
1479
+ attributes: PropTypes.objectOf(PropTypes.string),
1480
+ center: PropTypes.string,
1481
+ });
1482
+
1483
+ T['io.flow.common.v0.models.line_item'] = PropTypes.exact({
1484
+ number: PropTypes.string.isRequired,
1485
+ quantity: PropTypes.number.isRequired,
1486
+ price: T['io.flow.common.v0.models.money'].isRequired,
1487
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
1488
+ center: PropTypes.string,
1489
+ discount: T['io.flow.common.v0.models.money'],
1490
+ });
1491
+
1492
+ T['io.flow.common.v0.models.discount_offer_percent'] = PropTypes.exact({
1493
+ discriminator: PropTypes.oneOf(['discount_offer_percent']).isRequired,
1494
+ percent: PropTypes.number.isRequired,
1495
+ });
1496
+
1497
+ T['io.flow.common.v0.models.discount_offer_fixed'] = PropTypes.exact({
1498
+ discriminator: PropTypes.oneOf(['discount_offer_fixed']).isRequired,
1499
+ money: T['io.flow.common.v0.models.money'].isRequired,
1500
+ });
1501
+
1502
+ T['io.flow.common.v0.enums.discount_target'] = PropTypes.oneOf(['item', 'shipping']);
1503
+
1504
+ T['io.flow.common.v0.unions.discount_offer'] = PropTypes.oneOfType([
1505
+ T['io.flow.common.v0.models.discount_offer_fixed'],
1506
+ T['io.flow.common.v0.models.discount_offer_percent'],
1507
+ ]);
1508
+
1509
+ T['io.flow.common.v0.models.discount_form'] = PropTypes.exact({
1510
+ offer: T['io.flow.common.v0.unions.discount_offer'].isRequired,
1511
+ target: T['io.flow.common.v0.enums.discount_target'],
1512
+ label: PropTypes.string,
1513
+ });
1514
+
1515
+ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
1516
+ discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
1517
+ });
1518
+
1519
+ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
1520
+ number: PropTypes.string.isRequired,
1521
+ quantity: PropTypes.number.isRequired,
1522
+ shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
1523
+ price: T['io.flow.common.v0.models.money'],
1524
+ attributes: PropTypes.objectOf(PropTypes.string),
1525
+ center: PropTypes.string,
1526
+ discount: T['io.flow.common.v0.models.money'],
1527
+ discounts: T['io.flow.common.v0.models.discounts_form'],
1528
+ });
1529
+
1530
+ T['io.flow.fulfillment.v0.models.delivery_summary'] = PropTypes.exact({
1531
+ id: PropTypes.string.isRequired,
1532
+ items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
1533
+ });
1534
+
1535
+ T['io.flow.fulfillment.v0.models.delivery_version'] = PropTypes.exact({
1536
+ id: PropTypes.string.isRequired,
1537
+ timestamp: PropTypes.string.isRequired,
1538
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1539
+ delivery: T['io.flow.fulfillment.v0.models.delivery_summary'].isRequired,
1540
+ });
1541
+
1542
+ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
1543
+ 'millimeter',
1544
+ 'centimeter',
1545
+ 'inch',
1546
+ 'foot',
1547
+ 'cubic_inch',
1548
+ 'cubic_meter',
1549
+ 'gram',
1550
+ 'kilogram',
1551
+ 'meter',
1552
+ 'ounce',
1553
+ 'pound',
1554
+ ]);
1555
+
1556
+ T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
1557
+ value: PropTypes.string.isRequired,
1558
+ units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
1559
+ });
1560
+
1561
+ T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
1562
+ gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
1563
+ dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
1564
+ });
1565
+
1566
+ T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
1567
+ depth: T['io.flow.common.v0.models.measurement'],
1568
+ diameter: T['io.flow.common.v0.models.measurement'],
1569
+ length: T['io.flow.common.v0.models.measurement'],
1570
+ weight: T['io.flow.common.v0.models.measurement'],
1571
+ width: T['io.flow.common.v0.models.measurement'],
1572
+ });
1573
+
1574
+ T['io.flow.common.v0.models.dimensions'] = PropTypes.exact({
1575
+ product: T['io.flow.common.v0.models.dimension'],
1576
+ packaging: T['io.flow.common.v0.models.dimension'],
1577
+ });
1578
+
1579
+ T['io.flow.catalog.v0.models.item_form_overlay_form'] = PropTypes.exact({
1580
+ number: PropTypes.string.isRequired,
1581
+ price: PropTypes.number,
1582
+ currency: PropTypes.string,
1583
+ position: PropTypes.number,
1584
+ categories: PropTypes.arrayOf(PropTypes.string),
1585
+ description: PropTypes.string,
1586
+ attributes: PropTypes.objectOf(PropTypes.string),
1587
+ dimensions: T['io.flow.common.v0.models.dimensions'],
1588
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
1589
+ deleted_at: PropTypes.string,
1590
+ });
1591
+
1592
+ T['io.flow.catalog.v0.models.item_form'] = PropTypes.exact({
1593
+ number: PropTypes.string.isRequired,
1594
+ locale: PropTypes.string.isRequired,
1595
+ name: PropTypes.string.isRequired,
1596
+ currency: PropTypes.string.isRequired,
1597
+ price: PropTypes.number.isRequired,
1598
+ categories: PropTypes.arrayOf(PropTypes.string),
1599
+ description: PropTypes.string,
1600
+ attributes: PropTypes.objectOf(PropTypes.string),
1601
+ dimensions: T['io.flow.common.v0.models.dimensions'],
1602
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
1603
+ deleted_at: PropTypes.string,
1604
+ });
1605
+
1606
+ T['io.flow.fulfillment.v0.models.packaging'] = PropTypes.exact({
1607
+ dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
1608
+ name: PropTypes.string,
1609
+ number: PropTypes.string,
1610
+ });
1611
+
1612
+ T['io.flow.common.v0.models.name'] = PropTypes.exact({
1613
+ first: PropTypes.string,
1614
+ last: PropTypes.string,
1615
+ });
1616
+
1617
+ T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
1618
+ organization: PropTypes.string.isRequired,
1619
+ email: PropTypes.string.isRequired,
1620
+ name: T['io.flow.common.v0.models.name'],
1621
+ role: T['io.flow.common.v0.enums.role'],
1622
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
1623
+ });
1624
+
1625
+ T['io.flow.organization.v0.models.invitation'] = PropTypes.exact({
1626
+ id: PropTypes.string.isRequired,
1627
+ organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
1628
+ email: PropTypes.string.isRequired,
1629
+ name: T['io.flow.common.v0.models.name'].isRequired,
1630
+ role: T['io.flow.common.v0.enums.role'],
1631
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
1632
+ expiration: PropTypes.string.isRequired,
1633
+ });
1634
+
1635
+ T['io.flow.organization.v0.models.invitation_version'] = PropTypes.exact({
1636
+ id: PropTypes.string.isRequired,
1637
+ timestamp: PropTypes.string.isRequired,
1638
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1639
+ invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
1640
+ });
1641
+
1642
+ T['io.flow.common.v0.models.user'] = PropTypes.exact({
1643
+ discriminator: PropTypes.oneOf(['user']).isRequired,
1644
+ id: PropTypes.string.isRequired,
1645
+ email: PropTypes.string,
1646
+ name: T['io.flow.common.v0.models.name'].isRequired,
1647
+ status: T['io.flow.common.v0.enums.user_status'].isRequired,
1648
+ });
1649
+
1650
+ T['io.flow.common.v0.unions.expandable_user'] = PropTypes.oneOfType([
1651
+ T['io.flow.common.v0.models.user'],
1652
+ T['io.flow.common.v0.models.user_reference'],
1653
+ ]);
1654
+
1655
+ T['io.flow.permission.v0.models.permission_check'] = PropTypes.exact({
1656
+ authentication_technique: T['io.flow.permission.v0.enums.authentication_technique'].isRequired,
1657
+ user: T['io.flow.common.v0.unions.expandable_user'],
1658
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
1659
+ behaviors: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_behavior']).isRequired,
1660
+ routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.permitted_route']).isRequired,
1661
+ });
1662
+
1663
+ T['io.flow.organization.v0.models.membership'] = PropTypes.exact({
1664
+ id: PropTypes.string.isRequired,
1665
+ organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
1666
+ user: T['io.flow.common.v0.unions.expandable_user'].isRequired,
1667
+ role: T['io.flow.common.v0.enums.role'],
1668
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
1669
+ });
1670
+
1671
+ T['io.flow.organization.v0.models.membership_version'] = PropTypes.exact({
1672
+ id: PropTypes.string.isRequired,
1673
+ timestamp: PropTypes.string.isRequired,
1674
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1675
+ membership: T['io.flow.organization.v0.models.membership'].isRequired,
1676
+ });
1677
+
1678
+ T['io.flow.common.v0.models.contact'] = PropTypes.exact({
1679
+ name: T['io.flow.common.v0.models.name'].isRequired,
1680
+ company: PropTypes.string,
1681
+ email: PropTypes.string,
1682
+ phone: PropTypes.string,
1683
+ });
1684
+
1685
+ T['io.flow.fulfillment.v0.models.shipping_address'] = PropTypes.exact({
1686
+ contact: T['io.flow.common.v0.models.contact'].isRequired,
1687
+ location: T['io.flow.common.v0.models.address'].isRequired,
1688
+ center_key: PropTypes.string,
1689
+ center_reference: T['io.flow.fulfillment.v0.models.center_reference'],
1690
+ service: T['io.flow.fulfillment.v0.models.service_summary'],
1691
+ });
1692
+
1693
+ T['io.flow.fulfillment.v0.models.quote_summary'] = PropTypes.exact({
1694
+ id: PropTypes.string.isRequired,
1695
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1696
+ });
1697
+
1698
+ T['io.flow.fulfillment.v0.models.quote_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
+ quote: T['io.flow.fulfillment.v0.models.quote_summary'].isRequired,
1703
+ });
1704
+
1705
+ T['io.flow.fulfillment.v0.models.quote_form'] = PropTypes.exact({
1706
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1707
+ experience: PropTypes.string.isRequired,
1708
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
1709
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
1710
+ delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']),
1711
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
1712
+ });
1713
+
1714
+ T['io.flow.fulfillment.v0.models.delivery_option_form'] = PropTypes.exact({
1715
+ delivery: PropTypes.string.isRequired,
1716
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
1717
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1718
+ });
1719
+
1720
+ T['io.flow.fulfillment.v0.models.center_summary'] = PropTypes.exact({
1721
+ id: PropTypes.string.isRequired,
1722
+ key: PropTypes.string.isRequired,
1723
+ address: T['io.flow.fulfillment.v0.models.shipping_address'],
1724
+ });
1725
+
1726
+ T['io.flow.fulfillment.v0.models.center_form'] = PropTypes.exact({
1727
+ address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1728
+ packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
1729
+ name: PropTypes.string.isRequired,
1730
+ services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.available_service']).isRequired,
1731
+ schedule: T['io.flow.common.v0.models.schedule'].isRequired,
1732
+ timezone: PropTypes.string,
1733
+ key: PropTypes.string,
1734
+ capabilities: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.center_capability']),
1735
+ partner_center_form: T['io.flow.fulfillment.v0.models.partner_center_form'],
1736
+ });
1737
+
1738
+ T['io.flow.fulfillment.v0.models.center'] = PropTypes.exact({
1739
+ discriminator: PropTypes.oneOf(['center']).isRequired,
1740
+ id: PropTypes.string.isRequired,
1741
+ key: PropTypes.string.isRequired,
1742
+ address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
1743
+ packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
1744
+ name: PropTypes.string.isRequired,
1745
+ services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.available_service']).isRequired,
1746
+ schedule: T['io.flow.common.v0.models.schedule'].isRequired,
1747
+ timezone: PropTypes.string.isRequired,
1748
+ capabilities: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.center_capability']),
1749
+ partner_center: T['io.flow.fulfillment.v0.models.partner_center'],
1750
+ });
1751
+
1752
+ T['io.flow.fulfillment.v0.unions.expandable_center'] = PropTypes.oneOfType([
1753
+ T['io.flow.fulfillment.v0.models.center'],
1754
+ T['io.flow.fulfillment.v0.models.center_reference'],
1755
+ ]);
1756
+
1757
+ T['io.flow.fulfillment.v0.models.shipping_lane_summary'] = PropTypes.exact({
1758
+ shipping_lane_id: PropTypes.string.isRequired,
1759
+ region: PropTypes.string.isRequired,
1760
+ centers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.expandable_center']).isRequired,
1761
+ });
1762
+
1763
+ T['io.flow.fulfillment.v0.models.center_version'] = PropTypes.exact({
1764
+ id: PropTypes.string.isRequired,
1765
+ timestamp: PropTypes.string.isRequired,
1766
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1767
+ center: T['io.flow.fulfillment.v0.models.center'].isRequired,
1768
+ });
1769
+
1770
+ T['io.flow.common.v0.models.billing_address'] = PropTypes.exact({
1771
+ name: T['io.flow.common.v0.models.name'],
1772
+ streets: PropTypes.arrayOf(PropTypes.string),
1773
+ city: PropTypes.string,
1774
+ province: PropTypes.string,
1775
+ postal: PropTypes.string,
1776
+ country: PropTypes.string,
1777
+ company: PropTypes.string,
1778
+ });
1779
+
1780
+ T['io.flow.common.v0.models.customer_invoice'] = PropTypes.exact({
1781
+ address: T['io.flow.common.v0.models.billing_address'],
1782
+ });
1783
+
1784
+ T['io.flow.common.v0.models.order_customer_form'] = PropTypes.exact({
1785
+ name: T['io.flow.common.v0.models.name'],
1786
+ number: PropTypes.string,
1787
+ phone: PropTypes.string,
1788
+ email: PropTypes.string,
1789
+ address: T['io.flow.common.v0.models.billing_address'],
1790
+ invoice: T['io.flow.common.v0.models.customer_invoice'],
1791
+ });
1792
+
1793
+ T['io.flow.common.v0.models.order_customer'] = PropTypes.exact({
1794
+ name: T['io.flow.common.v0.models.name'].isRequired,
1795
+ number: PropTypes.string,
1796
+ phone: PropTypes.string,
1797
+ email: PropTypes.string,
1798
+ address: T['io.flow.common.v0.models.billing_address'],
1799
+ invoice: T['io.flow.common.v0.models.customer_invoice'],
1800
+ });
1801
+
1802
+ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
1803
+ 'adjustment',
1804
+ 'vat_deminimis',
1805
+ 'duty_deminimis',
1806
+ 'duties_item_price',
1807
+ 'duties_freight',
1808
+ 'duties_insurance',
1809
+ 'vat_item_price',
1810
+ 'vat_freight',
1811
+ 'vat_insurance',
1812
+ 'vat_duties_item_price',
1813
+ 'vat_duties_freight',
1814
+ 'vat_duties_insurance',
1815
+ 'item_price',
1816
+ 'item_discount',
1817
+ 'rounding',
1818
+ 'insurance',
1819
+ 'shipping',
1820
+ 'shipping_discount',
1821
+ 'order_discount',
1822
+ 'subtotal_percent_sales_margin',
1823
+ 'subtotal_vat_percent_sales_margin',
1824
+ 'subtotal_duty_percent_sales_margin',
1825
+ 'vat_subsidy',
1826
+ 'duty_subsidy',
1827
+ 'remote_area_surcharge',
1828
+ 'fuel_surcharge',
1829
+ 'emergency_situation_surcharge',
1830
+ 'peak_surcharge',
1831
+ 'duties_taxes_paid_surcharge',
1832
+ 'tip',
1833
+ ]);
1834
+
1835
+ T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
1836
+
1837
+ T['io.flow.common.v0.models.price'] = PropTypes.exact({
1838
+ amount: PropTypes.number.isRequired,
1839
+ currency: PropTypes.string.isRequired,
1840
+ label: PropTypes.string.isRequired,
1841
+ });
1842
+
1843
+ T['io.flow.catalog.v0.models.localized_item_price'] = PropTypes.exact({
1844
+ key: PropTypes.oneOf(['localized_item_price']).isRequired,
1845
+ currency: PropTypes.string.isRequired,
1846
+ amount: PropTypes.number.isRequired,
1847
+ label: PropTypes.string.isRequired,
1848
+ base: T['io.flow.common.v0.models.price'].isRequired,
1849
+ includes: T['io.flow.common.v0.models.included_levies'],
1850
+ });
1851
+
1852
+ T['io.flow.catalog.v0.models.localized_adjustment'] = PropTypes.exact({
1853
+ currency: PropTypes.string.isRequired,
1854
+ amount: PropTypes.number.isRequired,
1855
+ label: PropTypes.string.isRequired,
1856
+ base: T['io.flow.common.v0.models.price'].isRequired,
1857
+ reason: T['io.flow.catalog.v0.models.adjustment_reason'].isRequired,
1858
+ });
1859
+
1860
+ T['io.flow.catalog.v0.models.localized_item_vat'] = PropTypes.exact({
1861
+ key: PropTypes.oneOf(['localized_item_vat']).isRequired,
1862
+ currency: PropTypes.string.isRequired,
1863
+ amount: PropTypes.number.isRequired,
1864
+ label: PropTypes.string.isRequired,
1865
+ base: T['io.flow.common.v0.models.price'].isRequired,
1866
+ name: PropTypes.string.isRequired,
1867
+ adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
1868
+ accuracy: T['io.flow.price.v0.enums.price_accuracy'],
1869
+ basis: T['io.flow.common.v0.models.money_with_base'],
1870
+ });
1871
+
1872
+ T['io.flow.catalog.v0.models.localized_item_duty'] = PropTypes.exact({
1873
+ key: PropTypes.oneOf(['localized_item_duty']).isRequired,
1874
+ currency: PropTypes.string.isRequired,
1875
+ amount: PropTypes.number.isRequired,
1876
+ label: PropTypes.string.isRequired,
1877
+ base: T['io.flow.common.v0.models.price'].isRequired,
1878
+ adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
1879
+ basis: T['io.flow.common.v0.models.money_with_base'],
1880
+ });
1881
+
1882
+ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
1883
+ id: PropTypes.string.isRequired,
1884
+ number: PropTypes.string.isRequired,
1885
+ key: PropTypes.string.isRequired,
1886
+ position: PropTypes.number.isRequired,
1887
+ price: T['io.flow.common.v0.models.price'],
1888
+ categories: PropTypes.arrayOf(PropTypes.string),
1889
+ description: PropTypes.string,
1890
+ attributes: PropTypes.objectOf(PropTypes.string),
1891
+ dimensions: T['io.flow.common.v0.models.dimensions'],
1892
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
1893
+ deleted_at: PropTypes.string,
1894
+ });
1895
+
1896
+ T['io.flow.fulfillment.v0.models.flat_rate'] = PropTypes.exact({
1897
+ discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
1898
+ price: T['io.flow.common.v0.models.price'].isRequired,
1899
+ zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
9
1900
  });
10
1901
 
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,
1902
+ T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
1903
+ key: PropTypes.oneOf(['localized_total']).isRequired,
1904
+ currency: PropTypes.string.isRequired,
1905
+ amount: PropTypes.number.isRequired,
1906
+ label: PropTypes.string.isRequired,
1907
+ base: T['io.flow.common.v0.models.price'].isRequired,
15
1908
  });
16
1909
 
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'],
1910
+ T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
1911
+ T['io.flow.catalog.v0.models.localized_item_price'],
1912
+ T['io.flow.catalog.v0.models.localized_item_vat'],
1913
+ T['io.flow.catalog.v0.models.localized_item_duty'],
1914
+ T['io.flow.catalog.v0.models.localized_total'],
20
1915
  ]);
21
1916
 
22
- T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
1917
+ T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
1918
+ id: PropTypes.string.isRequired,
1919
+ cost: T['io.flow.common.v0.models.price'].isRequired,
1920
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
1921
+ price: T['io.flow.common.v0.models.price'].isRequired,
1922
+ service: T['io.flow.fulfillment.v0.models.service_reference'].isRequired,
1923
+ tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
1924
+ window: T['io.flow.common.v0.models.datetime_range'].isRequired,
1925
+ });
23
1926
 
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,
1927
+ T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
1928
+ id: PropTypes.string.isRequired,
1929
+ timestamp: PropTypes.string.isRequired,
1930
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
1931
+ delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
1932
+ });
1933
+
1934
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.exact({
1935
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
1936
+ currency: PropTypes.string.isRequired,
1937
+ amount: PropTypes.number.isRequired,
1938
+ label: PropTypes.string.isRequired,
1939
+ base: T['io.flow.common.v0.models.price'],
1940
+ });
1941
+
1942
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
1943
+ source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
1944
+ ratecard_id: PropTypes.string,
1945
+ currency: PropTypes.string.isRequired,
1946
+ amount: PropTypes.number.isRequired,
1947
+ label: PropTypes.string.isRequired,
1948
+ base: T['io.flow.common.v0.models.price'],
1949
+ components: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_component']).isRequired,
1950
+ });
1951
+
1952
+ T['io.flow.fulfillment.v0.models.price_with_base_and_details'] = PropTypes.exact({
1953
+ currency: PropTypes.string.isRequired,
1954
+ amount: PropTypes.number.isRequired,
1955
+ label: PropTypes.string.isRequired,
1956
+ base: T['io.flow.common.v0.models.price'],
1957
+ details: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_detail']),
1958
+ });
1959
+
1960
+ T['io.flow.fulfillment.v0.models.item_shipping_pricing'] = PropTypes.exact({
1961
+ min: T['io.flow.common.v0.models.price'].isRequired,
1962
+ max: T['io.flow.common.v0.models.price'],
1963
+ });
1964
+
1965
+ T['io.flow.fulfillment.v0.models.country_shipping_pricing'] = PropTypes.exact({
1966
+ pricing: T['io.flow.fulfillment.v0.models.item_shipping_pricing'].isRequired,
1967
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
1968
+ });
1969
+
1970
+ T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
1971
+ id: PropTypes.string.isRequired,
1972
+ item: T['io.flow.common.v0.models.item_reference'].isRequired,
1973
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
1974
+ country_shipping_pricings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_shipping_pricing']).isRequired,
1975
+ });
1976
+
1977
+ T['io.flow.fulfillment.v0.models.amount_margin'] = PropTypes.exact({
1978
+ discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
1979
+ margin: T['io.flow.common.v0.models.price'].isRequired,
1980
+ });
1981
+
1982
+ T['io.flow.fulfillment.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
1983
+ T['io.flow.fulfillment.v0.models.amount_margin'],
1984
+ T['io.flow.fulfillment.v0.models.at_cost'],
1985
+ T['io.flow.fulfillment.v0.models.flat_rate'],
1986
+ T['io.flow.fulfillment.v0.models.percent_margin'],
1987
+ ]);
1988
+
1989
+ T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
1990
+ id: PropTypes.string.isRequired,
1991
+ position: PropTypes.number.isRequired,
1992
+ query: PropTypes.string.isRequired,
1993
+ outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'].isRequired,
1994
+ });
1995
+
1996
+ T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
1997
+ id: PropTypes.string.isRequired,
1998
+ timestamp: PropTypes.string.isRequired,
1999
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2000
+ tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
2001
+ });
2002
+
2003
+ T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
2004
+ id: PropTypes.string.isRequired,
2005
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'].isRequired,
2006
+ integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
2007
+ name: PropTypes.string.isRequired,
2008
+ message: PropTypes.string,
2009
+ rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule']).isRequired,
2010
+ services: PropTypes.arrayOf(T['io.flow.reference.v0.models.carrier_service']).isRequired,
2011
+ strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
2012
+ visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
2013
+ currency: PropTypes.string.isRequired,
2014
+ description: PropTypes.string,
2015
+ display: T['io.flow.fulfillment.v0.models.tier_display'],
2016
+ shipping_lane: PropTypes.string,
2017
+ surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
2018
+ lane: T['io.flow.fulfillment.v0.models.shipping_lane_summary'],
2019
+ settings: T['io.flow.fulfillment.v0.models.tier_settings'],
2020
+ });
2021
+
2022
+ T['io.flow.fulfillment.v0.models.shipping_lane'] = PropTypes.exact({
2023
+ id: PropTypes.string.isRequired,
2024
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
2025
+ region: PropTypes.string.isRequired,
2026
+ centers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.expandable_center']).isRequired,
2027
+ tiers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier']).isRequired,
2028
+ query: T['io.flow.query.builder.v0.models.query'].isRequired,
2029
+ strategy: T['io.flow.fulfillment.v0.enums.lane_strategy'].isRequired,
2030
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
2031
+ preference: T['io.flow.fulfillment.v0.enums.lane_preselect_preference'],
2032
+ });
2033
+
2034
+ T['io.flow.fulfillment.v0.models.shipping_lane_version'] = PropTypes.exact({
2035
+ id: PropTypes.string.isRequired,
2036
+ timestamp: PropTypes.string.isRequired,
2037
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2038
+ shipping_lane: T['io.flow.fulfillment.v0.models.shipping_lane'].isRequired,
2039
+ });
2040
+
2041
+ T['io.flow.fulfillment.v0.models.shipping_configuration'] = PropTypes.exact({
2042
+ id: PropTypes.string.isRequired,
2043
+ name: PropTypes.string.isRequired,
2044
+ key: PropTypes.string.isRequired,
2045
+ type: T['io.flow.fulfillment.v0.enums.shipping_configuration_type'].isRequired,
2046
+ shipping_lanes: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.shipping_lane']).isRequired,
2047
+ });
2048
+
2049
+ T['io.flow.fulfillment.v0.models.shipping_configuration_version'] = PropTypes.exact({
2050
+ id: PropTypes.string.isRequired,
2051
+ timestamp: PropTypes.string.isRequired,
2052
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2053
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration'].isRequired,
2054
+ });
2055
+
2056
+ T['io.flow.fulfillment.v0.models.delivery_option'] = PropTypes.exact({
2057
+ id: PropTypes.string.isRequired,
2058
+ cost: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
2059
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
2060
+ price: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
2061
+ service: T['io.flow.fulfillment.v0.models.service_summary'].isRequired,
2062
+ tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
2063
+ window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
2064
+ rule_outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'],
2065
+ weight: T['io.flow.fulfillment.v0.models.option_weight_estimates'],
2066
+ send_to: T['io.flow.fulfillment.v0.models.shipping_address'],
2067
+ surcharge: T['io.flow.fulfillment.v0.models.price_with_base_and_details'],
2068
+ ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
2069
+ });
2070
+
2071
+ T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
2072
+ id: PropTypes.string.isRequired,
2073
+ key: PropTypes.string.isRequired,
2074
+ price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
2075
+ price: T['io.flow.common.v0.models.price'].isRequired,
2076
+ item_number: PropTypes.string.isRequired,
2077
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
2078
+ item_attributes: PropTypes.objectOf(PropTypes.string),
2079
+ });
2080
+
2081
+ T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
2082
+ currency: PropTypes.string.isRequired,
2083
+ item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
2084
+ margins: T['io.flow.price.v0.models.price_detail'].isRequired,
2085
+ vat: T['io.flow.price.v0.models.price_detail'].isRequired,
2086
+ duty: T['io.flow.price.v0.models.price_detail'].isRequired,
2087
+ rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
2088
+ price: T['io.flow.common.v0.models.price'].isRequired,
2089
+ total: T['io.flow.common.v0.models.price'].isRequired,
2090
+ adjustment: T['io.flow.price.v0.models.price_detail'],
2091
+ });
2092
+
2093
+ T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
2094
+ base: T['io.flow.price.v0.models.price_details'].isRequired,
2095
+ local: T['io.flow.price.v0.models.price_details'].isRequired,
2096
+ discount: T['io.flow.price.v0.models.price_detail'],
2097
+ local_before_discount: T['io.flow.price.v0.models.price_detail'],
2098
+ });
2099
+
2100
+ T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
2101
+ display: T['io.flow.price.v0.models.local_price_details'].isRequired,
2102
+ 'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
2103
+ });
2104
+
2105
+ T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
2106
+ currency: PropTypes.string.isRequired,
2107
+ amount: PropTypes.number.isRequired,
2108
+ label: PropTypes.string.isRequired,
2109
+ base: T['io.flow.common.v0.models.price'],
2110
+ });
2111
+
2112
+ T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
2113
+ experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
2114
+ prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
2115
+ rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']).isRequired,
2116
+ spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
2117
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
2118
+ attributes: PropTypes.objectOf(PropTypes.string),
2119
+ price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
2120
+ });
2121
+
2122
+ T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
2123
+ id: PropTypes.string.isRequired,
2124
+ number: PropTypes.string.isRequired,
2125
+ locale: PropTypes.string.isRequired,
2126
+ name: PropTypes.string.isRequired,
2127
+ price: T['io.flow.common.v0.models.price'].isRequired,
2128
+ categories: PropTypes.arrayOf(PropTypes.string).isRequired,
2129
+ description: PropTypes.string,
2130
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
2131
+ dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
2132
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
2133
+ local: T['io.flow.catalog.v0.models.local'],
2134
+ created_at: PropTypes.string,
2135
+ updated_at: PropTypes.string,
2136
+ deleted_at: PropTypes.string,
2137
+ });
2138
+
2139
+ T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
2140
+ id: PropTypes.string.isRequired,
2141
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
2142
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
2143
+ });
2144
+
2145
+ T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
2146
+ id: PropTypes.string.isRequired,
2147
+ timestamp: PropTypes.string.isRequired,
2148
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2149
+ subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
2150
+ });
2151
+
2152
+ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
2153
+ id: PropTypes.string.isRequired,
2154
+ timestamp: PropTypes.string.isRequired,
2155
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
2156
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
2157
+ });
2158
+
2159
+ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
2160
+ key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
2161
+ currency: PropTypes.string.isRequired,
2162
+ amount: PropTypes.number.isRequired,
2163
+ label: PropTypes.string.isRequired,
2164
+ base: T['io.flow.common.v0.models.price'].isRequired,
2165
+ name: PropTypes.string,
2166
+ });
2167
+
2168
+ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
2169
+ 'adjustment',
2170
+ 'subtotal',
2171
+ 'vat',
2172
+ 'duty',
2173
+ 'shipping',
2174
+ 'insurance',
2175
+ 'discount',
2176
+ 'surcharges',
2177
+ 'tip',
2178
+ ]);
2179
+
2180
+ T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
2181
+ key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
2182
+ currency: PropTypes.string.isRequired,
2183
+ amount: PropTypes.number.isRequired,
2184
+ label: PropTypes.string.isRequired,
2185
+ base: T['io.flow.common.v0.models.price'].isRequired,
2186
+ components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
2187
+ name: PropTypes.string,
2188
+ rate: PropTypes.number,
2189
+ accuracy: T['io.flow.price.v0.enums.price_accuracy'],
2190
+ rate_label: PropTypes.string,
2191
+ });
2192
+
2193
+ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
2194
+ discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
2195
+ id: PropTypes.string.isRequired,
2196
+ key: PropTypes.string,
2197
+ center: T['io.flow.fulfillment.v0.models.center_summary'],
2198
+ fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
2199
+ ship_from_country: PropTypes.string,
2200
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
2201
+ options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
2202
+ special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
2203
+ prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
2204
+ total: T['io.flow.catalog.v0.models.localized_total'],
2205
+ goods_supply: T['io.flow.common.v0.enums.goods_supply'],
2206
+ merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
2207
+ preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
2208
+ });
2209
+
2210
+ T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
2211
+ discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
2212
+ id: PropTypes.string.isRequired,
2213
+ key: PropTypes.string,
2214
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
2215
+ prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
2216
+ total: T['io.flow.catalog.v0.models.localized_total'],
2217
+ });
2218
+
2219
+ T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
2220
+ T['io.flow.fulfillment.v0.models.digital_delivery'],
2221
+ T['io.flow.fulfillment.v0.models.physical_delivery'],
2222
+ ]);
2223
+
2224
+ T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
2225
+ id: PropTypes.string.isRequired,
2226
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
2227
+ deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
2228
+ selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
2229
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
2230
+ delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
27
2231
  });
28
2232
 
29
2233
  T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
@@ -2655,6 +4859,45 @@ T['io.flow.shopify.external.v0.models.price_rule_form'] = PropTypes.exact({
2655
4859
  price_rule: T['io.flow.shopify.external.v0.models.price_rule'].isRequired,
2656
4860
  });
2657
4861
 
4862
+ T['io.flow.inventory.v0.models.generic_reservation_error'] = PropTypes.exact({
4863
+ code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
4864
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4865
+ });
4866
+
4867
+ T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'] = PropTypes.exact({
4868
+ code: PropTypes.oneOf(['external_api_timeout']).isRequired,
4869
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4870
+ });
4871
+
4872
+ T['io.flow.inventory.v0.models.no_inventory_reservation_error'] = PropTypes.exact({
4873
+ code: PropTypes.oneOf(['no_inventory']).isRequired,
4874
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4875
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.no_inventory_reservation_error_item']).isRequired,
4876
+ });
4877
+
4878
+ T['io.flow.inventory.v0.unions.reservation_error'] = PropTypes.oneOfType([
4879
+ T['io.flow.inventory.v0.models.no_inventory_reservation_error'],
4880
+ T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'],
4881
+ T['io.flow.inventory.v0.models.generic_reservation_error'],
4882
+ ]);
4883
+
4884
+ T['io.flow.inventory.v0.models.reservation_item'] = PropTypes.exact({
4885
+ item: T['io.flow.inventory.v0.models.reservation_item_reference'].isRequired,
4886
+ quantity: PropTypes.number.isRequired,
4887
+ });
4888
+
4889
+ T['io.flow.inventory.v0.models.reservation_order_reference'] = PropTypes.exact({
4890
+ number: PropTypes.string.isRequired,
4891
+ });
4892
+
4893
+ T['io.flow.inventory.v0.models.reservation'] = PropTypes.exact({
4894
+ id: PropTypes.string.isRequired,
4895
+ key: PropTypes.string.isRequired,
4896
+ order: T['io.flow.inventory.v0.models.reservation_order_reference'],
4897
+ items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.reservation_item']).isRequired,
4898
+ reserved_until: PropTypes.string,
4899
+ });
4900
+
2658
4901
  T['io.flow.v0.models.avalara_tax_setting'] = PropTypes.exact({
2659
4902
  discriminator: PropTypes.oneOf(['avalara_tax_setting']).isRequired,
2660
4903
  company_code: PropTypes.string.isRequired,
@@ -2667,16 +4910,6 @@ T['io.flow.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
2667
4910
  percent: PropTypes.number.isRequired,
2668
4911
  });
2669
4912
 
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
4913
  T['io.flow.v0.models.query_builder_query_form'] = PropTypes.exact({
2681
4914
  discriminator: PropTypes.oneOf(['query']).isRequired,
2682
4915
  q: PropTypes.string.isRequired,
@@ -4032,6 +6265,41 @@ T['io.flow.v0.models.session_experiment_form'] = PropTypes.exact({
4032
6265
  variant: T['io.flow.v0.models.session_experiment_variant_form'],
4033
6266
  });
4034
6267
 
6268
+ T['io.flow.inventory.v0.unions.inventory_strategy'] = PropTypes.oneOfType([
6269
+ T['io.flow.inventory.v0.models.inventory_backorder'],
6270
+ T['io.flow.inventory.v0.models.inventory_stock'],
6271
+ T['io.flow.inventory.v0.models.inventory_unlimited'],
6272
+ T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'],
6273
+ ]);
6274
+
6275
+ T['io.flow.inventory.v0.models.inventory_rule_form'] = PropTypes.exact({
6276
+ position: PropTypes.number.isRequired,
6277
+ query: PropTypes.string.isRequired,
6278
+ strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
6279
+ });
6280
+
6281
+ T['io.flow.inventory.v0.models.inventory_rule'] = PropTypes.exact({
6282
+ id: PropTypes.string.isRequired,
6283
+ position: PropTypes.number.isRequired,
6284
+ query: PropTypes.string.isRequired,
6285
+ strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
6286
+ });
6287
+
6288
+ T['io.flow.inventory.v0.models.inventory_rule_version'] = PropTypes.exact({
6289
+ id: PropTypes.string.isRequired,
6290
+ timestamp: PropTypes.string.isRequired,
6291
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
6292
+ inventory_rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
6293
+ });
6294
+
6295
+ T['io.flow.v0.models.rule_upserted'] = PropTypes.exact({
6296
+ discriminator: PropTypes.oneOf(['rule_upserted']).isRequired,
6297
+ event_id: PropTypes.string.isRequired,
6298
+ timestamp: PropTypes.string.isRequired,
6299
+ organization_id: PropTypes.string.isRequired,
6300
+ rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
6301
+ });
6302
+
4035
6303
  T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
4036
6304
 
4037
6305
  T['io.flow.v0.models.return_policy_statistic'] = PropTypes.exact({
@@ -4098,41 +6366,10 @@ T['io.flow.v0.models.return_line_item'] = PropTypes.exact({
4098
6366
  attributes: PropTypes.objectOf(PropTypes.string),
4099
6367
  });
4100
6368
 
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,
4122
- });
4123
-
4124
- T['io.flow.v0.models.reservation_order_reference'] = PropTypes.exact({
6369
+ T['io.flow.v0.models.return_order_reference'] = PropTypes.exact({
4125
6370
  number: PropTypes.string.isRequired,
4126
6371
  });
4127
6372
 
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
6373
  T['io.flow.v0.enums.availability_status'] = PropTypes.oneOf(['enabled', 'disabled']);
4137
6374
 
4138
6375
  T['io.flow.v0.models.region_setting_form'] = PropTypes.exact({
@@ -4393,17 +6630,6 @@ T['io.flow.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'fl
4393
6630
  T['io.flow.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
4394
6631
  T['io.flow.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
4395
6632
  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
6633
  T['io.flow.v0.enums.permitted_http_method'] = PropTypes.oneOf(['GET', 'POST', 'PUT', 'DELETE', 'PATCH']);
4408
6634
 
4409
6635
  T['io.flow.v0.models.permitted_route'] = PropTypes.exact({
@@ -5280,24 +7506,6 @@ T['io.flow.v0.models.onboarding_merchant_pickup_window'] = PropTypes.exact({
5280
7506
  to: T['io.flow.v0.models.onboarding_merchant_time'].isRequired,
5281
7507
  });
5282
7508
 
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
7509
  T['io.flow.v0.models.monthly_average_volume'] = PropTypes.exact({
5302
7510
  amount: PropTypes.number,
5303
7511
  currency: PropTypes.string,
@@ -5674,111 +7882,6 @@ T['io.flow.v0.models.invitation_error'] = PropTypes.exact({
5674
7882
  });
5675
7883
 
5676
7884
  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
7885
 
5783
7886
  T['io.flow.v0.models.input_specification_limitation_max'] = PropTypes.exact({
5784
7887
  discriminator: PropTypes.oneOf(['input_specification_limitation_max']).isRequired,
@@ -6411,7 +8514,7 @@ T['io.flow.v0.models.exclusion_rule'] = PropTypes.exact({
6411
8514
  });
6412
8515
 
6413
8516
  T['io.flow.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
6414
- T['io.flow.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec']);
8517
+ T['io.flow.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec', 'zaz']);
6415
8518
 
6416
8519
  T['io.flow.v0.models.ratecard_region_reference'] = PropTypes.exact({
6417
8520
  id: PropTypes.string.isRequired,
@@ -8539,6 +10642,13 @@ T['io.flow.v0.models.schedule'] = PropTypes.exact({
8539
10642
  max_lead_time: PropTypes.number,
8540
10643
  });
8541
10644
 
10645
+ T['io.flow.v0.enums.origin_location_source'] = PropTypes.oneOf([
10646
+ 'public_hub_code',
10647
+ 'merchant_hub_code_override',
10648
+ 'shopify',
10649
+ 'fallback_location',
10650
+ ]);
10651
+
8542
10652
  T['io.flow.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
8543
10653
 
8544
10654
  T['io.flow.v0.models.ratecard_form'] = PropTypes.exact({
@@ -9345,6 +11455,11 @@ T['io.flow.v0.models.three_d_secure'] = PropTypes.exact({
9345
11455
  eci: PropTypes.string,
9346
11456
  liability_sift: PropTypes.bool,
9347
11457
  version: PropTypes.string,
11458
+ authenticated: PropTypes.bool,
11459
+ authenticated_result: PropTypes.string,
11460
+ offered: PropTypes.bool,
11461
+ offered_result: PropTypes.string,
11462
+ sca_exemption: PropTypes.string,
9348
11463
  });
9349
11464
 
9350
11465
  T['io.flow.v0.enums.authorization_status'] = PropTypes.oneOf([
@@ -9632,27 +11747,6 @@ T['io.flow.v0.models.item_margin_version'] = PropTypes.exact({
9632
11747
  item_margin: T['io.flow.v0.models.item_margin'].isRequired,
9633
11748
  });
9634
11749
 
9635
- T['io.flow.v0.models.inventory_update_version'] = PropTypes.exact({
9636
- id: PropTypes.string.isRequired,
9637
- timestamp: PropTypes.string.isRequired,
9638
- type: T['io.flow.v0.enums.change_type'].isRequired,
9639
- inventory_update: T['io.flow.v0.models.inventory_update'].isRequired,
9640
- });
9641
-
9642
- T['io.flow.v0.models.inventory_snapshot_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_snapshot: T['io.flow.v0.models.inventory_snapshot'].isRequired,
9647
- });
9648
-
9649
- T['io.flow.v0.models.inventory_rule_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_rule: T['io.flow.v0.models.inventory_rule'].isRequired,
9654
- });
9655
-
9656
11750
  T['io.flow.v0.models.import_version'] = PropTypes.exact({
9657
11751
  id: PropTypes.string.isRequired,
9658
11752
  timestamp: PropTypes.string.isRequired,
@@ -14170,6 +16264,7 @@ T['io.flow.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
14170
16264
  service: PropTypes.string,
14171
16265
  shipment_recipient: T['io.flow.v0.enums.shipment_recipient'],
14172
16266
  package_dimensions_source: T['io.flow.v0.enums.package_dimensions_source'],
16267
+ origin_location_source: T['io.flow.v0.enums.origin_location_source'],
14173
16268
  reference_id: PropTypes.string,
14174
16269
  });
14175
16270
 
@@ -14181,6 +16276,7 @@ T['io.flow.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
14181
16276
  origin: T['io.flow.v0.models.shipping_address'],
14182
16277
  direction: T['io.flow.v0.enums.direction'],
14183
16278
  reference_id: PropTypes.string,
16279
+ origin_location_source: T['io.flow.v0.enums.origin_location_source'],
14184
16280
  hub_code: PropTypes.string,
14185
16281
  });
14186
16282
 
@@ -14317,7 +16413,6 @@ T['io.flow.v0.models.abandoned_order_settings'] = PropTypes.exact({
14317
16413
  status: T['io.flow.v0.enums.abandoned_order_setting_status'].isRequired,
14318
16414
  });
14319
16415
 
14320
- T['io.flow.v0.enums.aggregate'] = PropTypes.oneOf(['maximum', 'minimum']);
14321
16416
  T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
14322
16417
 
14323
16418
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
@@ -14834,10 +16929,6 @@ T['io.flow.v0.models.input_form'] = PropTypes.exact({
14834
16929
  values: PropTypes.objectOf(PropTypes.string),
14835
16930
  });
14836
16931
 
14837
- T['io.flow.v0.models.inventory_experience_reference'] = PropTypes.exact({
14838
- key: PropTypes.string.isRequired,
14839
- });
14840
-
14841
16932
  T['io.flow.v0.models.invoice_export'] = PropTypes.exact({
14842
16933
  id: PropTypes.string.isRequired,
14843
16934
  });
@@ -15045,10 +17136,6 @@ T['io.flow.v0.models.payout_reference'] = PropTypes.exact({
15045
17136
  id: PropTypes.string.isRequired,
15046
17137
  });
15047
17138
 
15048
- T['io.flow.v0.models.pfs_inventory_status'] = PropTypes.exact({
15049
- status: PropTypes.string.isRequired,
15050
- });
15051
-
15052
17139
  T['io.flow.v0.models.public_key'] = PropTypes.exact({
15053
17140
  id: PropTypes.string.isRequired,
15054
17141
  });
@@ -15439,6 +17526,119 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_shop_redact'] = PropTypes.
15439
17526
  shop_domain: PropTypes.string.isRequired,
15440
17527
  });
15441
17528
 
17529
+ T['io.flow.common.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
17530
+
17531
+ T['io.flow.common.v0.enums.incoterm'] = PropTypes.oneOf([
17532
+ 'EXW',
17533
+ 'FCA',
17534
+ 'CPT',
17535
+ 'CIP',
17536
+ 'DAT',
17537
+ 'DAP',
17538
+ 'DDP',
17539
+ 'FAS',
17540
+ 'FOB',
17541
+ 'CFR',
17542
+ 'CIF',
17543
+ 'DAF',
17544
+ 'DES',
17545
+ 'DEQ',
17546
+ 'DDU',
17547
+ ]);
17548
+
17549
+ T['io.flow.common.v0.enums.measurement_system'] = PropTypes.oneOf(['imperial', 'metric']);
17550
+ T['io.flow.common.v0.enums.merchant_of_record'] = PropTypes.oneOf(['flow', 'organization']);
17551
+ T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
17552
+ T['io.flow.common.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Closed']);
17553
+ T['io.flow.common.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
17554
+ T['io.flow.common.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
17555
+
17556
+ T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
17557
+ id: PropTypes.string.isRequired,
17558
+ number: PropTypes.string.isRequired,
17559
+ });
17560
+
17561
+ T['io.flow.common.v0.models.catalog_item_summary'] = PropTypes.exact({
17562
+ number: PropTypes.string.isRequired,
17563
+ name: PropTypes.string.isRequired,
17564
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17565
+ });
17566
+
17567
+ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
17568
+ id: PropTypes.string.isRequired,
17569
+ });
17570
+
17571
+ T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
17572
+ id: PropTypes.string.isRequired,
17573
+ });
17574
+
17575
+ T['io.flow.common.v0.models.customer_reference'] = PropTypes.exact({
17576
+ number: PropTypes.string.isRequired,
17577
+ });
17578
+
17579
+ T['io.flow.common.v0.models.input_form'] = PropTypes.exact({
17580
+ values: PropTypes.objectOf(PropTypes.string),
17581
+ });
17582
+
17583
+ T['io.flow.common.v0.models.line_item_attributes_form'] = PropTypes.exact({
17584
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17585
+ });
17586
+
17587
+ T['io.flow.common.v0.models.line_item_quantity_form'] = PropTypes.exact({
17588
+ quantity: PropTypes.number.isRequired,
17589
+ });
17590
+
17591
+ T['io.flow.common.v0.models.price_form'] = PropTypes.exact({
17592
+ amount: PropTypes.number.isRequired,
17593
+ currency: PropTypes.string.isRequired,
17594
+ });
17595
+
17596
+ T['io.flow.common.v0.models.session_reference'] = PropTypes.exact({
17597
+ id: PropTypes.string.isRequired,
17598
+ });
17599
+
17600
+ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
17601
+ postals: PropTypes.arrayOf(PropTypes.string),
17602
+ provinces: PropTypes.arrayOf(PropTypes.string),
17603
+ country: PropTypes.string.isRequired,
17604
+ });
17605
+
17606
+ T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
17607
+ T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
17608
+
17609
+ T['io.flow.reference.v0.models.country'] = PropTypes.exact({
17610
+ name: PropTypes.string.isRequired,
17611
+ iso_3166_2: PropTypes.string.isRequired,
17612
+ iso_3166_3: PropTypes.string.isRequired,
17613
+ languages: PropTypes.arrayOf(PropTypes.string).isRequired,
17614
+ measurement_system: PropTypes.string.isRequired,
17615
+ default_currency: PropTypes.string,
17616
+ default_language: PropTypes.string,
17617
+ timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
17618
+ default_delivered_duty: PropTypes.string,
17619
+ });
17620
+
17621
+ T['io.flow.reference.v0.models.language'] = PropTypes.exact({
17622
+ name: PropTypes.string.isRequired,
17623
+ iso_639_2: PropTypes.string.isRequired,
17624
+ });
17625
+
17626
+ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
17627
+ id: PropTypes.string.isRequired,
17628
+ name: PropTypes.string.isRequired,
17629
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
17630
+ currencies: PropTypes.arrayOf(PropTypes.string).isRequired,
17631
+ languages: PropTypes.arrayOf(PropTypes.string).isRequired,
17632
+ measurement_systems: PropTypes.arrayOf(PropTypes.string).isRequired,
17633
+ timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
17634
+ });
17635
+
17636
+ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
17637
+ name: PropTypes.string.isRequired,
17638
+ description: PropTypes.string.isRequired,
17639
+ offset: PropTypes.number.isRequired,
17640
+ });
17641
+
15442
17642
  T['io.flow.ben.test.internal.v0.models.svitlana_test'] = PropTypes.exact({
15443
17643
  name: PropTypes.string.isRequired,
15444
17644
  });
@@ -15447,6 +17647,24 @@ T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
15447
17647
  name: PropTypes.string.isRequired,
15448
17648
  });
15449
17649
 
17650
+ T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
17651
+
17652
+ T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
17653
+ q: PropTypes.string.isRequired,
17654
+ });
17655
+
17656
+ T['io.flow.fulfillment.v0.models.shipping_configuration_copy_form'] = PropTypes.exact({
17657
+ name: PropTypes.string.isRequired,
17658
+ });
17659
+
17660
+ T['io.flow.fulfillment.v0.models.shipping_configuration_form'] = PropTypes.exact({
17661
+ name: PropTypes.string.isRequired,
17662
+ });
17663
+
17664
+ T['io.flow.fulfillment.v0.models.shipping_lane_default_tier_form'] = PropTypes.exact({
17665
+ tier_id: PropTypes.string.isRequired,
17666
+ });
17667
+
15450
17668
  T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
15451
17669
  applicationPrimaryAccountNumber: PropTypes.string.isRequired,
15452
17670
  applicationExpirationDate: PropTypes.string.isRequired,
@@ -15458,6 +17676,55 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
15458
17676
  paymentData: PropTypes.object.isRequired,
15459
17677
  });
15460
17678
 
17679
+ T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
17680
+
17681
+ T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
17682
+ base: PropTypes.string.isRequired,
17683
+ target: PropTypes.string.isRequired,
17684
+ effective_at: PropTypes.string.isRequired,
17685
+ });
17686
+
17687
+ T['io.flow.organization.v0.models.organization_default_configurations_form'] = PropTypes.exact({
17688
+ id: PropTypes.string.isRequired,
17689
+ });
17690
+
17691
+ T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
17692
+ T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
17693
+ T['io.flow.catalog.v0.enums.return_item_status'] = PropTypes.oneOf(['returnable', 'non-returnable']);
17694
+ T['io.flow.catalog.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
17695
+ T['io.flow.catalog.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
17696
+
17697
+ T['io.flow.catalog.v0.models.catalog_reference'] = PropTypes.exact({
17698
+ id: PropTypes.string.isRequired,
17699
+ });
17700
+
17701
+ T['io.flow.catalog.v0.models.item_attributes_patch_form'] = PropTypes.exact({
17702
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17703
+ });
17704
+
17705
+ T['io.flow.catalog.v0.models.item_price_update_form'] = PropTypes.exact({
17706
+ number: PropTypes.string.isRequired,
17707
+ currency: PropTypes.string,
17708
+ price: PropTypes.number.isRequired,
17709
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17710
+ });
17711
+
17712
+ T['io.flow.catalog.v0.models.item_price_update_put_form'] = PropTypes.exact({
17713
+ currency: PropTypes.string,
17714
+ price: PropTypes.number.isRequired,
17715
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17716
+ });
17717
+
17718
+ T['io.flow.inventory.v0.enums.aggregate'] = PropTypes.oneOf(['maximum', 'minimum']);
17719
+
17720
+ T['io.flow.inventory.v0.models.inventory_experience_reference'] = PropTypes.exact({
17721
+ key: PropTypes.string.isRequired,
17722
+ });
17723
+
17724
+ T['io.flow.inventory.v0.models.pfs_inventory_status'] = PropTypes.exact({
17725
+ status: PropTypes.string.isRequired,
17726
+ });
17727
+
15461
17728
  export const abandonedOrderEmailSettings = T['io.flow.v0.models.abandoned_order_email_settings'];
15462
17729
  export const abandonedOrderPromotion = T['io.flow.v0.models.abandoned_order_promotion'];
15463
17730
  export const abandonedOrderPromotionDetails = T['io.flow.v0.unions.abandoned_order_promotion_details'];
@@ -15509,7 +17776,6 @@ export const adyenNativeActionDetails = T['io.flow.v0.models.adyen_native_action
15509
17776
  export const adyenNativeData = T['io.flow.v0.unions.adyen_native_data'];
15510
17777
  export const adyenV3ChallengeToken = T['io.flow.v0.models.adyen_v3_challenge_token'];
15511
17778
  export const adyenV3FingerprintToken = T['io.flow.v0.models.adyen_v3_fingerprint_token'];
15512
- export const aggregate = T['io.flow.v0.enums.aggregate'];
15513
17779
  export const allocation = T['io.flow.v0.models.allocation'];
15514
17780
  export const allocationComponent = T['io.flow.v0.unions.allocation_component'];
15515
17781
  export const allocationDeletedV2 = T['io.flow.v0.models.allocation_deleted_v2'];
@@ -16023,7 +18289,6 @@ export const exportStatus = T['io.flow.v0.enums.export_status'];
16023
18289
  export const exportType = T['io.flow.v0.unions.export_type'];
16024
18290
  export const exportVersion = T['io.flow.v0.models.export_version'];
16025
18291
  export const exporterOfRecord = T['io.flow.v0.enums.exporter_of_record'];
16026
- export const externalApiTimeoutReservationError = T['io.flow.v0.models.external_api_timeout_reservation_error'];
16027
18292
  export const feeDeduction = T['io.flow.v0.models.fee_deduction'];
16028
18293
  export const feeDeductionType = T['io.flow.v0.enums.fee_deduction_type'];
16029
18294
  export const feeWeight = T['io.flow.v0.models.fee_weight'];
@@ -16092,7 +18357,6 @@ export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authen
16092
18357
  export const generateLoad = T['io.flow.v0.models.generate_load'];
16093
18358
  export const genericError = T['io.flow.v0.models.generic_error'];
16094
18359
  export const genericErrorCode = T['io.flow.v0.enums.generic_error_code'];
16095
- export const genericReservationError = T['io.flow.v0.models.generic_reservation_error'];
16096
18360
  export const geoForm = T['io.flow.v0.models.geo_form'];
16097
18361
  export const goodsSupply = T['io.flow.v0.enums.goods_supply'];
16098
18362
  export const googlePayAuthorizationPayload = T['io.flow.v0.models.google_pay_authorization_payload'];
@@ -16158,27 +18422,6 @@ export const inputSpecificationLimitation = T['io.flow.v0.unions.input_specifica
16158
18422
  export const inputSpecificationLimitationMax = T['io.flow.v0.models.input_specification_limitation_max'];
16159
18423
  export const inputSpecificationLimitations = T['io.flow.v0.models.input_specification_limitations'];
16160
18424
  export const inputSpecificationType = T['io.flow.v0.enums.input_specification_type'];
16161
- export const inventoryBackorder = T['io.flow.v0.models.inventory_backorder'];
16162
- export const inventoryCenterReference = T['io.flow.v0.models.inventory_center_reference'];
16163
- export const inventoryCheckResponse = T['io.flow.v0.models.inventory_check_response'];
16164
- export const inventoryCheckResponseItem = T['io.flow.v0.models.inventory_check_response_item'];
16165
- export const inventoryExperienceReference = T['io.flow.v0.models.inventory_experience_reference'];
16166
- export const inventoryFollowEcommercePlatform = T['io.flow.v0.models.inventory_follow_ecommerce_platform'];
16167
- export const inventoryItemReference = T['io.flow.v0.models.inventory_item_reference'];
16168
- export const inventoryRequest = T['io.flow.v0.models.inventory_request'];
16169
- export const inventoryRequestItem = T['io.flow.v0.models.inventory_request_item'];
16170
- export const inventoryRule = T['io.flow.v0.models.inventory_rule'];
16171
- export const inventoryRuleForm = T['io.flow.v0.models.inventory_rule_form'];
16172
- export const inventoryRuleVersion = T['io.flow.v0.models.inventory_rule_version'];
16173
- export const inventorySnapshot = T['io.flow.v0.models.inventory_snapshot'];
16174
- export const inventorySnapshotVersion = T['io.flow.v0.models.inventory_snapshot_version'];
16175
- export const inventoryStatus = T['io.flow.v0.enums.inventory_status'];
16176
- export const inventoryStock = T['io.flow.v0.models.inventory_stock'];
16177
- export const inventoryStrategy = T['io.flow.v0.unions.inventory_strategy'];
16178
- export const inventoryUnlimited = T['io.flow.v0.models.inventory_unlimited'];
16179
- export const inventoryUpdate = T['io.flow.v0.models.inventory_update'];
16180
- export const inventoryUpdateForm = T['io.flow.v0.models.inventory_update_form'];
16181
- export const inventoryUpdateVersion = T['io.flow.v0.models.inventory_update_version'];
16182
18425
  export const invitation = T['io.flow.v0.models.invitation'];
16183
18426
  export const invitationError = T['io.flow.v0.models.invitation_error'];
16184
18427
  export const invitationErrorCode = T['io.flow.v0.enums.invitation_error_code'];
@@ -16346,8 +18589,6 @@ export const monthlyAverage = T['io.flow.v0.models.monthly_average'];
16346
18589
  export const monthlyAverageVolume = T['io.flow.v0.models.monthly_average_volume'];
16347
18590
  export const name = T['io.flow.v0.models.name'];
16348
18591
  export const nameForm = T['io.flow.v0.models.name_form'];
16349
- export const noInventoryReservationError = T['io.flow.v0.models.no_inventory_reservation_error'];
16350
- export const noInventoryReservationErrorItem = T['io.flow.v0.models.no_inventory_reservation_error_item'];
16351
18592
  export const notificationDeletedV2 = T['io.flow.v0.models.notification_deleted_v2'];
16352
18593
  export const notificationUpsertedV2 = T['io.flow.v0.models.notification_upserted_v2'];
16353
18594
  export const numberRange = T['io.flow.v0.models.number_range'];
@@ -16509,6 +18750,7 @@ export const organizationType = T['io.flow.v0.enums.organization_type'];
16509
18750
  export const organizationUpserted = T['io.flow.v0.models.organization_upserted'];
16510
18751
  export const organizationUpsertedV2 = T['io.flow.v0.models.organization_upserted_v2'];
16511
18752
  export const organizationVersion = T['io.flow.v0.models.organization_version'];
18753
+ export const originLocationSource = T['io.flow.v0.enums.origin_location_source'];
16512
18754
  export const originalPrices = T['io.flow.v0.models.original_prices'];
16513
18755
  export const outboundCartonFee = T['io.flow.v0.models.outbound_carton_fee'];
16514
18756
  export const oversizePieceSurchargeRatecardFee = T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'];
@@ -16690,9 +18932,6 @@ export const permissionAudit = T['io.flow.v0.models.permission_audit'];
16690
18932
  export const permissionCheck = T['io.flow.v0.models.permission_check'];
16691
18933
  export const permittedHttpMethod = T['io.flow.v0.enums.permitted_http_method'];
16692
18934
  export const permittedRoute = T['io.flow.v0.models.permitted_route'];
16693
- export const pfsInventoryCheckResponse = T['io.flow.v0.models.pfs_inventory_check_response'];
16694
- export const pfsInventoryCheckResponseItem = T['io.flow.v0.models.pfs_inventory_check_response_item'];
16695
- export const pfsInventoryStatus = T['io.flow.v0.models.pfs_inventory_status'];
16696
18935
  export const physicalDelivery = T['io.flow.v0.models.physical_delivery'];
16697
18936
  export const physicalDeliveryPreferredService = T['io.flow.v0.models.physical_delivery_preferred_service'];
16698
18937
  export const physicalDeliverySpecialSerivce = T['io.flow.v0.enums.physical_delivery_special_serivce'];
@@ -16842,13 +19081,6 @@ export const repeatHourly = T['io.flow.v0.models.repeat_hourly'];
16842
19081
  export const repeatMonthly = T['io.flow.v0.models.repeat_monthly'];
16843
19082
  export const repeatSchedule = T['io.flow.v0.unions.repeat_schedule'];
16844
19083
  export const repeatWeekly = T['io.flow.v0.models.repeat_weekly'];
16845
- export const reservation = T['io.flow.v0.models.reservation'];
16846
- export const reservationError = T['io.flow.v0.unions.reservation_error'];
16847
- export const reservationForm = T['io.flow.v0.models.reservation_form'];
16848
- export const reservationItem = T['io.flow.v0.models.reservation_item'];
16849
- export const reservationItemForm = T['io.flow.v0.models.reservation_item_form'];
16850
- export const reservationItemReference = T['io.flow.v0.models.reservation_item_reference'];
16851
- export const reservationOrderReference = T['io.flow.v0.models.reservation_order_reference'];
16852
19084
  export const restrictedReviewStatus = T['io.flow.v0.enums.restricted_review_status'];
16853
19085
  export const UNSAFE_return = T['io.flow.v0.models.return'];
16854
19086
  export const returnDeleted = T['io.flow.v0.models.return_deleted'];
@@ -17199,7 +19431,6 @@ export const unitOfTime = T['io.flow.v0.enums.unit_of_time'];
17199
19431
  export const unitOfVolume = T['io.flow.v0.enums.unit_of_volume'];
17200
19432
  export const unitOfWeight = T['io.flow.v0.enums.unit_of_weight'];
17201
19433
  export const updatePolicy = T['io.flow.v0.enums.update_policy'];
17202
- export const updateType = T['io.flow.v0.enums.update_type'];
17203
19434
  export const upload = T['io.flow.v0.models.upload'];
17204
19435
  export const user = T['io.flow.v0.models.user'];
17205
19436
  export const userForm = T['io.flow.v0.models.user_form'];