@flowio/api-prop-types 10.16.100 → 10.16.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +567 -2376
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +567 -2376
- package/src/api.js +690 -2741
package/src/api.js
CHANGED
|
@@ -1,392 +1,6 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
2
|
const T = {};
|
|
3
3
|
|
|
4
|
-
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
5
|
-
'insufficient_details',
|
|
6
|
-
'ineligible_category',
|
|
7
|
-
'wait_for_high_fidelity',
|
|
8
|
-
'external_service_unavailable',
|
|
9
|
-
]);
|
|
10
|
-
|
|
11
|
-
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
12
|
-
discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
|
|
13
|
-
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
14
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
T['io.flow.sellability.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
|
|
18
|
-
|
|
19
|
-
T['io.flow.sellability.v0.models.product_sellability_price'] = PropTypes.exact({
|
|
20
|
-
currency: PropTypes.string.isRequired,
|
|
21
|
-
amount: PropTypes.number.isRequired,
|
|
22
|
-
});
|
|
23
|
-
|
|
24
|
-
T['io.flow.query.builder.v0.models.query_builder_query_form'] = PropTypes.exact({
|
|
25
|
-
discriminator: PropTypes.oneOf(['query']).isRequired,
|
|
26
|
-
q: PropTypes.string.isRequired,
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
T['io.flow.query.builder.v0.models.query_filter_unstructured_form'] = PropTypes.exact({
|
|
30
|
-
discriminator: PropTypes.oneOf(['unstructured']).isRequired,
|
|
31
|
-
q: PropTypes.string.isRequired,
|
|
32
|
-
});
|
|
33
|
-
|
|
34
|
-
T['io.flow.query.builder.v0.models.query_filter_structured_form'] = PropTypes.exact({
|
|
35
|
-
discriminator: PropTypes.oneOf(['structured']).isRequired,
|
|
36
|
-
field: PropTypes.string.isRequired,
|
|
37
|
-
operator: PropTypes.string.isRequired,
|
|
38
|
-
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
T['io.flow.query.builder.v0.unions.query_filter_form'] = PropTypes.oneOfType([
|
|
42
|
-
T['io.flow.query.builder.v0.models.query_filter_structured_form'],
|
|
43
|
-
T['io.flow.query.builder.v0.models.query_filter_unstructured_form'],
|
|
44
|
-
]);
|
|
45
|
-
|
|
46
|
-
T['io.flow.query.builder.v0.models.query_builder_filter_form'] = PropTypes.exact({
|
|
47
|
-
discriminator: PropTypes.oneOf(['filter']).isRequired,
|
|
48
|
-
filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter_form']).isRequired,
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
T['io.flow.query.builder.v0.unions.query_builder_form'] = PropTypes.oneOfType([
|
|
52
|
-
T['io.flow.query.builder.v0.models.query_builder_filter_form'],
|
|
53
|
-
T['io.flow.query.builder.v0.models.query_builder_query_form'],
|
|
54
|
-
]);
|
|
55
|
-
|
|
56
|
-
T['io.flow.query.builder.v0.models.available_filter_unstructured'] = PropTypes.exact({
|
|
57
|
-
discriminator: PropTypes.oneOf(['unstructured']).isRequired,
|
|
58
|
-
placeholder: PropTypes.string,
|
|
59
|
-
});
|
|
60
|
-
|
|
61
|
-
T['io.flow.query.builder.v0.models.query_filter_unstructured'] = PropTypes.exact({
|
|
62
|
-
discriminator: PropTypes.oneOf(['unstructured']).isRequired,
|
|
63
|
-
q: PropTypes.string.isRequired,
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
T['io.flow.query.builder.v0.models.query_filter_structured'] = PropTypes.exact({
|
|
67
|
-
discriminator: PropTypes.oneOf(['structured']).isRequired,
|
|
68
|
-
q: PropTypes.string.isRequired,
|
|
69
|
-
field: PropTypes.string.isRequired,
|
|
70
|
-
operator: PropTypes.string.isRequired,
|
|
71
|
-
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
72
|
-
});
|
|
73
|
-
|
|
74
|
-
T['io.flow.query.builder.v0.enums.available_filter_format'] = PropTypes.oneOf([
|
|
75
|
-
'boolean',
|
|
76
|
-
'date',
|
|
77
|
-
'money',
|
|
78
|
-
'decimal',
|
|
79
|
-
'string',
|
|
80
|
-
'unit_of_length',
|
|
81
|
-
'unit_of_mass',
|
|
82
|
-
]);
|
|
83
|
-
|
|
84
|
-
T['io.flow.query.builder.v0.models.available_filter_structured'] = PropTypes.exact({
|
|
85
|
-
discriminator: PropTypes.oneOf(['structured']).isRequired,
|
|
86
|
-
field: PropTypes.string.isRequired,
|
|
87
|
-
operators: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
88
|
-
format: T['io.flow.query.builder.v0.enums.available_filter_format'].isRequired,
|
|
89
|
-
valid_values: PropTypes.arrayOf(PropTypes.string),
|
|
90
|
-
placeholder: PropTypes.string,
|
|
91
|
-
});
|
|
92
|
-
|
|
93
|
-
T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
|
|
94
|
-
T['io.flow.query.builder.v0.models.available_filter_structured'],
|
|
95
|
-
T['io.flow.query.builder.v0.models.available_filter_unstructured'],
|
|
96
|
-
]);
|
|
97
|
-
|
|
98
|
-
T['io.flow.permission.v0.enums.permitted_http_method'] = PropTypes.oneOf(['GET', 'POST', 'PUT', 'DELETE', 'PATCH']);
|
|
99
|
-
|
|
100
|
-
T['io.flow.permission.v0.models.permitted_route'] = PropTypes.exact({
|
|
101
|
-
method: T['io.flow.permission.v0.enums.permitted_http_method'].isRequired,
|
|
102
|
-
path: PropTypes.string.isRequired,
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
T['io.flow.permission.v0.enums.authentication_technique'] = PropTypes.oneOf(['anonymous', 'session', 'token', 'partner_token', 'user']);
|
|
106
|
-
T['io.flow.permission.v0.enums.flow_behavior'] = PropTypes.oneOf(['view_consumer_data']);
|
|
107
|
-
|
|
108
|
-
T['io.flow.permission.v0.models.simple_permission_check'] = PropTypes.exact({
|
|
109
|
-
behaviors: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_behavior']).isRequired,
|
|
110
|
-
});
|
|
111
|
-
|
|
112
|
-
T['io.flow.inventory.v0.models.reservation_item_form'] = PropTypes.exact({
|
|
113
|
-
item_number: PropTypes.string.isRequired,
|
|
114
|
-
quantity: PropTypes.number.isRequired,
|
|
115
|
-
});
|
|
116
|
-
|
|
117
|
-
T['io.flow.inventory.v0.models.reservation_form'] = PropTypes.exact({
|
|
118
|
-
order_number: PropTypes.string,
|
|
119
|
-
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.reservation_item_form']).isRequired,
|
|
120
|
-
});
|
|
121
|
-
|
|
122
|
-
T['io.flow.inventory.v0.models.reservation_item_reference'] = PropTypes.exact({
|
|
123
|
-
number: PropTypes.string.isRequired,
|
|
124
|
-
});
|
|
125
|
-
|
|
126
|
-
T['io.flow.inventory.v0.models.pfs_inventory_check_response_item'] = PropTypes.exact({
|
|
127
|
-
number: PropTypes.string.isRequired,
|
|
128
|
-
ats: PropTypes.number.isRequired,
|
|
129
|
-
in_stock: PropTypes.bool.isRequired,
|
|
130
|
-
});
|
|
131
|
-
|
|
132
|
-
T['io.flow.inventory.v0.models.pfs_inventory_check_response'] = PropTypes.exact({
|
|
133
|
-
items: PropTypes.objectOf(T['io.flow.inventory.v0.models.pfs_inventory_check_response_item']).isRequired,
|
|
134
|
-
});
|
|
135
|
-
|
|
136
|
-
T['io.flow.inventory.v0.models.no_inventory_reservation_error_item'] = PropTypes.exact({
|
|
137
|
-
number: PropTypes.string.isRequired,
|
|
138
|
-
requested_quantity: PropTypes.number.isRequired,
|
|
139
|
-
available_quantity: PropTypes.number.isRequired,
|
|
140
|
-
});
|
|
141
|
-
|
|
142
|
-
T['io.flow.inventory.v0.enums.update_type'] = PropTypes.oneOf(['change', 'set']);
|
|
143
|
-
|
|
144
|
-
T['io.flow.inventory.v0.models.inventory_update_form'] = PropTypes.exact({
|
|
145
|
-
center: PropTypes.string.isRequired,
|
|
146
|
-
idempotency_key: PropTypes.string.isRequired,
|
|
147
|
-
item_number: PropTypes.string.isRequired,
|
|
148
|
-
quantity: PropTypes.number.isRequired,
|
|
149
|
-
type: T['io.flow.inventory.v0.enums.update_type'].isRequired,
|
|
150
|
-
notes: PropTypes.object,
|
|
151
|
-
});
|
|
152
|
-
|
|
153
|
-
T['io.flow.inventory.v0.models.inventory_item_reference'] = PropTypes.exact({
|
|
154
|
-
number: PropTypes.string.isRequired,
|
|
155
|
-
});
|
|
156
|
-
|
|
157
|
-
T['io.flow.inventory.v0.models.inventory_center_reference'] = PropTypes.exact({
|
|
158
|
-
key: PropTypes.string.isRequired,
|
|
159
|
-
});
|
|
160
|
-
|
|
161
|
-
T['io.flow.inventory.v0.models.inventory_update'] = PropTypes.exact({
|
|
162
|
-
id: PropTypes.string.isRequired,
|
|
163
|
-
idempotency_key: PropTypes.string.isRequired,
|
|
164
|
-
center: T['io.flow.inventory.v0.models.inventory_center_reference'].isRequired,
|
|
165
|
-
item: T['io.flow.inventory.v0.models.inventory_item_reference'].isRequired,
|
|
166
|
-
notes: PropTypes.object.isRequired,
|
|
167
|
-
quantity: PropTypes.number.isRequired,
|
|
168
|
-
type: T['io.flow.inventory.v0.enums.update_type'].isRequired,
|
|
169
|
-
});
|
|
170
|
-
|
|
171
|
-
T['io.flow.inventory.v0.models.inventory_snapshot'] = PropTypes.exact({
|
|
172
|
-
id: PropTypes.string.isRequired,
|
|
173
|
-
available: PropTypes.number.isRequired,
|
|
174
|
-
center: T['io.flow.inventory.v0.models.inventory_center_reference'].isRequired,
|
|
175
|
-
item: T['io.flow.inventory.v0.models.inventory_item_reference'].isRequired,
|
|
176
|
-
quantity: PropTypes.number.isRequired,
|
|
177
|
-
});
|
|
178
|
-
|
|
179
|
-
T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'] = PropTypes.exact({
|
|
180
|
-
discriminator: PropTypes.oneOf(['inventory_follow_ecommerce_platform']).isRequired,
|
|
181
|
-
quantity: PropTypes.number.isRequired,
|
|
182
|
-
});
|
|
183
|
-
|
|
184
|
-
T['io.flow.inventory.v0.models.inventory_unlimited'] = PropTypes.exact({
|
|
185
|
-
discriminator: PropTypes.oneOf(['inventory_unlimited']).isRequired,
|
|
186
|
-
placeholder: PropTypes.string,
|
|
187
|
-
});
|
|
188
|
-
|
|
189
|
-
T['io.flow.inventory.v0.models.inventory_stock'] = PropTypes.exact({
|
|
190
|
-
discriminator: PropTypes.oneOf(['inventory_stock']).isRequired,
|
|
191
|
-
quantity: PropTypes.number.isRequired,
|
|
192
|
-
});
|
|
193
|
-
|
|
194
|
-
T['io.flow.inventory.v0.models.inventory_backorder'] = PropTypes.exact({
|
|
195
|
-
discriminator: PropTypes.oneOf(['inventory_backorder']).isRequired,
|
|
196
|
-
quantity: PropTypes.number.isRequired,
|
|
197
|
-
});
|
|
198
|
-
|
|
199
|
-
T['io.flow.inventory.v0.unions.inventory_strategy'] = PropTypes.oneOfType([
|
|
200
|
-
T['io.flow.inventory.v0.models.inventory_backorder'],
|
|
201
|
-
T['io.flow.inventory.v0.models.inventory_stock'],
|
|
202
|
-
T['io.flow.inventory.v0.models.inventory_unlimited'],
|
|
203
|
-
T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'],
|
|
204
|
-
]);
|
|
205
|
-
|
|
206
|
-
T['io.flow.inventory.v0.models.inventory_rule_form'] = PropTypes.exact({
|
|
207
|
-
position: PropTypes.number.isRequired,
|
|
208
|
-
query: PropTypes.string.isRequired,
|
|
209
|
-
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
210
|
-
});
|
|
211
|
-
|
|
212
|
-
T['io.flow.inventory.v0.models.inventory_rule'] = PropTypes.exact({
|
|
213
|
-
id: PropTypes.string.isRequired,
|
|
214
|
-
position: PropTypes.number.isRequired,
|
|
215
|
-
query: PropTypes.string.isRequired,
|
|
216
|
-
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
217
|
-
});
|
|
218
|
-
|
|
219
|
-
T['io.flow.inventory.v0.models.inventory_request_item'] = PropTypes.exact({
|
|
220
|
-
number: PropTypes.string.isRequired,
|
|
221
|
-
quantity: PropTypes.number.isRequired,
|
|
222
|
-
});
|
|
223
|
-
|
|
224
|
-
T['io.flow.inventory.v0.models.inventory_request'] = PropTypes.exact({
|
|
225
|
-
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.inventory_request_item']).isRequired,
|
|
226
|
-
});
|
|
227
|
-
|
|
228
|
-
T['io.flow.inventory.v0.enums.inventory_status'] = PropTypes.oneOf(['has_inventory', 'no_inventory']);
|
|
229
|
-
|
|
230
|
-
T['io.flow.inventory.v0.models.inventory_check_response_item'] = PropTypes.exact({
|
|
231
|
-
number: PropTypes.string.isRequired,
|
|
232
|
-
quantity: PropTypes.number.isRequired,
|
|
233
|
-
inventory_status: T['io.flow.inventory.v0.enums.inventory_status'].isRequired,
|
|
234
|
-
});
|
|
235
|
-
|
|
236
|
-
T['io.flow.inventory.v0.models.inventory_check_response'] = PropTypes.exact({
|
|
237
|
-
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.inventory_check_response_item']).isRequired,
|
|
238
|
-
});
|
|
239
|
-
|
|
240
|
-
T['io.flow.catalog.v0.models.subcatalog_reference'] = PropTypes.exact({
|
|
241
|
-
discriminator: PropTypes.oneOf(['subcatalog_reference']).isRequired,
|
|
242
|
-
id: PropTypes.string.isRequired,
|
|
243
|
-
});
|
|
244
|
-
|
|
245
|
-
T['io.flow.catalog.v0.models.catalog_statistics'] = PropTypes.exact({
|
|
246
|
-
id: PropTypes.string.isRequired,
|
|
247
|
-
items: PropTypes.number.isRequired,
|
|
248
|
-
categories: PropTypes.number.isRequired,
|
|
249
|
-
});
|
|
250
|
-
|
|
251
|
-
T['io.flow.catalog.v0.models.item_statistics'] = PropTypes.exact({
|
|
252
|
-
items: PropTypes.number.isRequired,
|
|
253
|
-
categories: PropTypes.number.isRequired,
|
|
254
|
-
});
|
|
255
|
-
|
|
256
|
-
T['io.flow.catalog.v0.models.subcatalog_statistics'] = PropTypes.exact({
|
|
257
|
-
excluded: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
|
|
258
|
-
included: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
|
|
259
|
-
restricted: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
|
|
260
|
-
queue: T['io.flow.catalog.v0.models.item_statistics'].isRequired,
|
|
261
|
-
catalog: T['io.flow.catalog.v0.models.catalog_statistics'].isRequired,
|
|
262
|
-
});
|
|
263
|
-
|
|
264
|
-
T['io.flow.catalog.v0.enums.update_policy'] = PropTypes.oneOf(['auto', 'queue', 'discard']);
|
|
265
|
-
|
|
266
|
-
T['io.flow.catalog.v0.models.subcatalog_settings_form'] = PropTypes.exact({
|
|
267
|
-
update_policy: T['io.flow.catalog.v0.enums.update_policy'],
|
|
268
|
-
});
|
|
269
|
-
|
|
270
|
-
T['io.flow.catalog.v0.models.subcatalog_form'] = PropTypes.exact({
|
|
271
|
-
settings: T['io.flow.catalog.v0.models.subcatalog_settings_form'],
|
|
272
|
-
});
|
|
273
|
-
|
|
274
|
-
T['io.flow.catalog.v0.models.subcatalog_settings'] = PropTypes.exact({
|
|
275
|
-
update_policy: T['io.flow.catalog.v0.enums.update_policy'].isRequired,
|
|
276
|
-
});
|
|
277
|
-
|
|
278
|
-
T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
|
|
279
|
-
id: PropTypes.string.isRequired,
|
|
280
|
-
base: PropTypes.string.isRequired,
|
|
281
|
-
target: PropTypes.string.isRequired,
|
|
282
|
-
effective_at: PropTypes.string.isRequired,
|
|
283
|
-
value: PropTypes.number.isRequired,
|
|
284
|
-
});
|
|
285
|
-
|
|
286
|
-
T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
|
|
287
|
-
id: PropTypes.string.isRequired,
|
|
288
|
-
key: PropTypes.string.isRequired,
|
|
289
|
-
name: PropTypes.string.isRequired,
|
|
290
|
-
country: PropTypes.string,
|
|
291
|
-
currency: PropTypes.string,
|
|
292
|
-
language: PropTypes.string,
|
|
293
|
-
});
|
|
294
|
-
|
|
295
|
-
T['io.flow.catalog.v0.enums.image_tag'] = PropTypes.oneOf(['thumbnail', 'checkout']);
|
|
296
|
-
|
|
297
|
-
T['io.flow.catalog.v0.models.image_form'] = PropTypes.exact({
|
|
298
|
-
url: PropTypes.string.isRequired,
|
|
299
|
-
tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']),
|
|
300
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
301
|
-
});
|
|
302
|
-
|
|
303
|
-
T['io.flow.catalog.v0.models.image'] = PropTypes.exact({
|
|
304
|
-
url: PropTypes.string.isRequired,
|
|
305
|
-
tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']).isRequired,
|
|
306
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
307
|
-
});
|
|
308
|
-
|
|
309
|
-
T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
|
|
310
|
-
|
|
311
|
-
T['io.flow.catalog.v0.models.flow_item_index_metadata'] = PropTypes.exact({
|
|
312
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
313
|
-
});
|
|
314
|
-
|
|
315
|
-
T['io.flow.catalog.v0.models.catalog'] = PropTypes.exact({
|
|
316
|
-
id: PropTypes.string.isRequired,
|
|
317
|
-
});
|
|
318
|
-
|
|
319
|
-
T['io.flow.catalog.v0.models.subcatalog'] = PropTypes.exact({
|
|
320
|
-
discriminator: PropTypes.oneOf(['subcatalog']).isRequired,
|
|
321
|
-
id: PropTypes.string.isRequired,
|
|
322
|
-
catalog: T['io.flow.catalog.v0.models.catalog'].isRequired,
|
|
323
|
-
settings: T['io.flow.catalog.v0.models.subcatalog_settings'].isRequired,
|
|
324
|
-
});
|
|
325
|
-
|
|
326
|
-
T['io.flow.catalog.v0.unions.expandable_subcatalog'] = PropTypes.oneOfType([
|
|
327
|
-
T['io.flow.catalog.v0.models.subcatalog'],
|
|
328
|
-
T['io.flow.catalog.v0.models.subcatalog_reference'],
|
|
329
|
-
]);
|
|
330
|
-
|
|
331
|
-
T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
|
|
332
|
-
|
|
333
|
-
T['io.flow.catalog.v0.enums.attribute_intent'] = PropTypes.oneOf([
|
|
334
|
-
'brand',
|
|
335
|
-
'color',
|
|
336
|
-
'countries_of_origin',
|
|
337
|
-
'product_id',
|
|
338
|
-
'fulfillment_method',
|
|
339
|
-
'hazardous',
|
|
340
|
-
'price',
|
|
341
|
-
'size',
|
|
342
|
-
'sku',
|
|
343
|
-
'taxability',
|
|
344
|
-
'consumer_url',
|
|
345
|
-
'gtin',
|
|
346
|
-
'mpn',
|
|
347
|
-
'facet',
|
|
348
|
-
'eccn',
|
|
349
|
-
'returnable',
|
|
350
|
-
'searchable',
|
|
351
|
-
'barcode',
|
|
352
|
-
'min_days_to_ship',
|
|
353
|
-
'max_days_to_ship',
|
|
354
|
-
'commercial_invoice_item_number',
|
|
355
|
-
'include_in_product_feeds',
|
|
356
|
-
]);
|
|
357
|
-
|
|
358
|
-
T['io.flow.catalog.v0.models.options'] = PropTypes.exact({
|
|
359
|
-
required: PropTypes.bool.isRequired,
|
|
360
|
-
show_in_catalog: PropTypes.bool.isRequired,
|
|
361
|
-
show_in_harmonization: PropTypes.bool.isRequired,
|
|
362
|
-
});
|
|
363
|
-
|
|
364
|
-
T['io.flow.catalog.v0.models.attribute_form'] = PropTypes.exact({
|
|
365
|
-
key: PropTypes.string.isRequired,
|
|
366
|
-
options: T['io.flow.catalog.v0.models.options'].isRequired,
|
|
367
|
-
label: PropTypes.string,
|
|
368
|
-
intent: T['io.flow.catalog.v0.enums.attribute_intent'],
|
|
369
|
-
type: T['io.flow.common.v0.enums.attribute_data_type'],
|
|
370
|
-
position: PropTypes.number,
|
|
371
|
-
});
|
|
372
|
-
|
|
373
|
-
T['io.flow.catalog.v0.models.attribute'] = PropTypes.exact({
|
|
374
|
-
id: PropTypes.string.isRequired,
|
|
375
|
-
key: PropTypes.string.isRequired,
|
|
376
|
-
options: T['io.flow.catalog.v0.models.options'].isRequired,
|
|
377
|
-
label: PropTypes.string,
|
|
378
|
-
intent: T['io.flow.catalog.v0.enums.attribute_intent'],
|
|
379
|
-
type: T['io.flow.common.v0.enums.attribute_data_type'],
|
|
380
|
-
position: PropTypes.number,
|
|
381
|
-
});
|
|
382
|
-
|
|
383
|
-
T['io.flow.catalog.v0.enums.adjustment_reason_key'] = PropTypes.oneOf(['duty_deminimis', 'vat_deminimis']);
|
|
384
|
-
|
|
385
|
-
T['io.flow.catalog.v0.models.adjustment_reason'] = PropTypes.exact({
|
|
386
|
-
key: T['io.flow.catalog.v0.enums.adjustment_reason_key'].isRequired,
|
|
387
|
-
label: PropTypes.string.isRequired,
|
|
388
|
-
});
|
|
389
|
-
|
|
390
4
|
T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
|
|
391
5
|
discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
|
|
392
6
|
organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -404,1042 +18,89 @@ T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
404
18
|
T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
|
|
405
19
|
]);
|
|
406
20
|
|
|
407
|
-
T['io.flow.product.v0.models.
|
|
408
|
-
|
|
409
|
-
value: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
410
|
-
});
|
|
411
|
-
|
|
412
|
-
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
|
|
413
|
-
|
|
414
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
|
|
415
|
-
id: PropTypes.string.isRequired,
|
|
416
|
-
organization_id: PropTypes.string.isRequired,
|
|
417
|
-
channel_id: PropTypes.string.isRequired,
|
|
418
|
-
payment_request_id: PropTypes.string.isRequired,
|
|
419
|
-
code: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'].isRequired,
|
|
420
|
-
reason: PropTypes.string.isRequired,
|
|
421
|
-
});
|
|
422
|
-
|
|
423
|
-
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
|
|
424
|
-
'unsupported_origin_country',
|
|
425
|
-
'unsupported_destination_country',
|
|
426
|
-
'domestic_order',
|
|
427
|
-
'order_contains_gift_card',
|
|
428
|
-
'order_contains_restricted_goods',
|
|
429
|
-
'missing_order_information',
|
|
430
|
-
'missing_classification_information',
|
|
431
|
-
'unsupported_payment_information',
|
|
432
|
-
'unsupported_shop_currency',
|
|
433
|
-
'unsupported_free_order',
|
|
434
|
-
'extracting_distribution_info_failed',
|
|
435
|
-
'shipping_estimation_failed',
|
|
436
|
-
'payment_authorization_failed',
|
|
437
|
-
'unsupported_subsidized_order',
|
|
438
|
-
'unsupported_virtual_goods',
|
|
439
|
-
'non_matching_currencies',
|
|
440
|
-
'unsupported_order_edit',
|
|
441
|
-
'order_missing',
|
|
442
|
-
]);
|
|
443
|
-
|
|
444
|
-
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
445
|
-
|
|
446
|
-
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
447
|
-
edited_at: PropTypes.string.isRequired,
|
|
448
|
-
});
|
|
449
|
-
|
|
450
|
-
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
|
|
451
|
-
'cx_team',
|
|
452
|
-
'core_team',
|
|
453
|
-
'core_team_investigate',
|
|
454
|
-
'mex_team',
|
|
455
|
-
'payments_team',
|
|
456
|
-
'tc_team',
|
|
457
|
-
'logistics_team',
|
|
458
|
-
]);
|
|
459
|
-
|
|
460
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
461
|
-
description: PropTypes.string.isRequired,
|
|
462
|
-
rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
|
|
463
|
-
});
|
|
464
|
-
|
|
465
|
-
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
466
|
-
'adjustment',
|
|
467
|
-
'vat_deminimis',
|
|
468
|
-
'duty_deminimis',
|
|
469
|
-
'duties_item_price',
|
|
470
|
-
'duties_freight',
|
|
471
|
-
'duties_insurance',
|
|
472
|
-
'vat_item_price',
|
|
473
|
-
'vat_freight',
|
|
474
|
-
'vat_insurance',
|
|
475
|
-
'vat_duties_item_price',
|
|
476
|
-
'vat_duties_freight',
|
|
477
|
-
'vat_duties_insurance',
|
|
478
|
-
'item_price',
|
|
479
|
-
'item_discount',
|
|
480
|
-
'rounding',
|
|
481
|
-
'insurance',
|
|
482
|
-
'shipping',
|
|
483
|
-
'shipping_discount',
|
|
484
|
-
'order_discount',
|
|
485
|
-
'subtotal_percent_sales_margin',
|
|
486
|
-
'subtotal_vat_percent_sales_margin',
|
|
487
|
-
'subtotal_duty_percent_sales_margin',
|
|
488
|
-
'vat_subsidy',
|
|
489
|
-
'duty_subsidy',
|
|
490
|
-
'remote_area_surcharge',
|
|
491
|
-
'fuel_surcharge',
|
|
492
|
-
'emergency_situation_surcharge',
|
|
493
|
-
'peak_surcharge',
|
|
494
|
-
'duties_taxes_paid_surcharge',
|
|
495
|
-
'tip',
|
|
496
|
-
]);
|
|
497
|
-
|
|
498
|
-
T['io.flow.common.v0.enums.availability_status'] = PropTypes.oneOf(['enabled', 'disabled']);
|
|
499
|
-
|
|
500
|
-
T['io.flow.organization.v0.models.region_setting_form'] = PropTypes.exact({
|
|
501
|
-
status: T['io.flow.common.v0.enums.availability_status'].isRequired,
|
|
502
|
-
});
|
|
503
|
-
|
|
504
|
-
T['io.flow.organization.v0.models.region_setting'] = PropTypes.exact({
|
|
505
|
-
id: PropTypes.string.isRequired,
|
|
506
|
-
region: PropTypes.string.isRequired,
|
|
507
|
-
status: T['io.flow.common.v0.enums.availability_status'].isRequired,
|
|
508
|
-
});
|
|
509
|
-
|
|
510
|
-
T['io.flow.organization.v0.models.organization_configuration_reference'] = PropTypes.exact({
|
|
511
|
-
id: PropTypes.string.isRequired,
|
|
512
|
-
});
|
|
513
|
-
|
|
514
|
-
T['io.flow.organization.v0.models.organization_default_configurations'] = PropTypes.exact({
|
|
515
|
-
id: PropTypes.string.isRequired,
|
|
516
|
-
checkout_configuration: T['io.flow.organization.v0.models.organization_configuration_reference'].isRequired,
|
|
517
|
-
});
|
|
518
|
-
|
|
519
|
-
T['io.flow.organization.v0.enums.invitation_error_code'] = PropTypes.oneOf(['expired', 'invalid_email']);
|
|
520
|
-
|
|
521
|
-
T['io.flow.organization.v0.models.invitation_error'] = PropTypes.exact({
|
|
522
|
-
code: T['io.flow.organization.v0.enums.invitation_error_code'].isRequired,
|
|
523
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
524
|
-
});
|
|
525
|
-
|
|
526
|
-
T['io.flow.permission.v0.enums.flow_role'] = PropTypes.oneOf([
|
|
527
|
-
'organization_admin',
|
|
528
|
-
'organization_merchant',
|
|
529
|
-
'organization_customer_service',
|
|
530
|
-
'organization_fulfillment',
|
|
531
|
-
'organization_marketing',
|
|
532
|
-
'organization_finance',
|
|
533
|
-
'organization_classification',
|
|
534
|
-
'flow_operations',
|
|
535
|
-
'channel_admin',
|
|
536
|
-
'channel_organization_admin',
|
|
537
|
-
]);
|
|
538
|
-
|
|
539
|
-
T['io.flow.permission.v0.models.route_audit'] = PropTypes.exact({
|
|
540
|
-
method: T['io.flow.permission.v0.enums.permitted_http_method'].isRequired,
|
|
541
|
-
path: PropTypes.string.isRequired,
|
|
542
|
-
authentication_techniques: PropTypes.arrayOf(T['io.flow.permission.v0.enums.authentication_technique']).isRequired,
|
|
543
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
|
|
544
|
-
});
|
|
545
|
-
|
|
546
|
-
T['io.flow.permission.v0.models.behavior_audit'] = PropTypes.exact({
|
|
547
|
-
behavior: T['io.flow.permission.v0.enums.flow_behavior'].isRequired,
|
|
548
|
-
authentication_techniques: PropTypes.arrayOf(T['io.flow.permission.v0.enums.authentication_technique']).isRequired,
|
|
549
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
|
|
550
|
-
});
|
|
551
|
-
|
|
552
|
-
T['io.flow.permission.v0.models.permission_audit'] = PropTypes.exact({
|
|
553
|
-
routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.route_audit']).isRequired,
|
|
554
|
-
behaviors: PropTypes.arrayOf(T['io.flow.permission.v0.models.behavior_audit']).isRequired,
|
|
555
|
-
});
|
|
556
|
-
|
|
557
|
-
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
558
|
-
|
|
559
|
-
T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
560
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
561
|
-
});
|
|
562
|
-
|
|
563
|
-
T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
564
|
-
channel_id: PropTypes.string.isRequired,
|
|
565
|
-
user_id: PropTypes.string.isRequired,
|
|
566
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
567
|
-
});
|
|
568
|
-
|
|
569
|
-
T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
|
|
570
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
571
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
572
|
-
});
|
|
573
|
-
|
|
574
|
-
T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
|
|
575
|
-
organization: PropTypes.string.isRequired,
|
|
576
|
-
user: PropTypes.string.isRequired,
|
|
577
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
578
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
579
|
-
});
|
|
580
|
-
|
|
581
|
-
T['io.flow.organization.v0.enums.ecommerce_platform_type'] = PropTypes.oneOf([
|
|
582
|
-
'commercetools',
|
|
583
|
-
'custom',
|
|
584
|
-
'hybris',
|
|
585
|
-
'magento',
|
|
586
|
-
'shopify',
|
|
587
|
-
'shopify_markets',
|
|
588
|
-
'sfcc',
|
|
589
|
-
'solidus',
|
|
590
|
-
'workarea',
|
|
591
|
-
]);
|
|
592
|
-
|
|
593
|
-
T['io.flow.organization.v0.models.ecommerce_platform_form'] = PropTypes.exact({
|
|
594
|
-
type: T['io.flow.organization.v0.enums.ecommerce_platform_type'].isRequired,
|
|
595
|
-
version: PropTypes.string,
|
|
596
|
-
});
|
|
597
|
-
|
|
598
|
-
T['io.flow.organization.v0.models.ecommerce_platform'] = PropTypes.exact({
|
|
599
|
-
id: PropTypes.string.isRequired,
|
|
600
|
-
type: T['io.flow.organization.v0.enums.ecommerce_platform_type'].isRequired,
|
|
601
|
-
version: PropTypes.string,
|
|
602
|
-
});
|
|
603
|
-
|
|
604
|
-
T['io.flow.organization.v0.enums.country_picker_source'] = PropTypes.oneOf(['experience', 'destination']);
|
|
605
|
-
|
|
606
|
-
T['io.flow.organization.v0.models.country_picker_form'] = PropTypes.exact({
|
|
607
|
-
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
608
|
-
});
|
|
609
|
-
|
|
610
|
-
T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
611
|
-
id: PropTypes.string.isRequired,
|
|
612
|
-
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
613
|
-
});
|
|
614
|
-
|
|
615
|
-
T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
616
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
617
|
-
|
|
618
|
-
T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
|
|
619
|
-
discriminator: PropTypes.oneOf(['service_unknown']).isRequired,
|
|
620
|
-
name: PropTypes.string.isRequired,
|
|
621
|
-
});
|
|
622
|
-
|
|
623
|
-
T['io.flow.fulfillment.v0.enums.tier_estimate_type'] = PropTypes.oneOf(['calculated', 'custom']);
|
|
624
|
-
T['io.flow.fulfillment.v0.enums.tier_availability'] = PropTypes.oneOf(['always', 'backup']);
|
|
625
|
-
|
|
626
|
-
T['io.flow.fulfillment.v0.models.tier_estimate'] = PropTypes.exact({
|
|
627
|
-
type: T['io.flow.fulfillment.v0.enums.tier_estimate_type'].isRequired,
|
|
628
|
-
label: PropTypes.string,
|
|
629
|
-
});
|
|
630
|
-
|
|
631
|
-
T['io.flow.fulfillment.v0.models.tier_display_form'] = PropTypes.exact({
|
|
632
|
-
estimate: T['io.flow.fulfillment.v0.models.tier_estimate'],
|
|
633
|
-
});
|
|
634
|
-
|
|
635
|
-
T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
|
|
636
|
-
|
|
637
|
-
T['io.flow.fulfillment.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
|
|
638
|
-
name: PropTypes.string.isRequired,
|
|
639
|
-
responsible_party: T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'].isRequired,
|
|
640
|
-
});
|
|
641
|
-
|
|
642
|
-
T['io.flow.query.builder.v0.unions.query_filter'] = PropTypes.oneOfType([
|
|
643
|
-
T['io.flow.query.builder.v0.models.query_filter_structured'],
|
|
644
|
-
T['io.flow.query.builder.v0.models.query_filter_unstructured'],
|
|
645
|
-
]);
|
|
646
|
-
|
|
647
|
-
T['io.flow.query.builder.v0.models.query_builder'] = PropTypes.exact({
|
|
648
|
-
q: PropTypes.string.isRequired,
|
|
649
|
-
filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter']).isRequired,
|
|
650
|
-
available: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.available_filter']).isRequired,
|
|
651
|
-
});
|
|
652
|
-
|
|
653
|
-
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
654
|
-
number: PropTypes.string.isRequired,
|
|
655
|
-
});
|
|
656
|
-
|
|
657
|
-
T['io.flow.fulfillment.v0.enums.lane_preselect_preference'] = PropTypes.oneOf(['lowest_cost', 'default_tier']);
|
|
658
|
-
T['io.flow.fulfillment.v0.enums.lane_strategy'] = PropTypes.oneOf(['oldest', 'fastest', 'lowest_cost', 'highest_priority']);
|
|
659
|
-
|
|
660
|
-
T['io.flow.query.builder.v0.models.query'] = PropTypes.exact({
|
|
661
|
-
q: PropTypes.string.isRequired,
|
|
662
|
-
filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter']).isRequired,
|
|
663
|
-
});
|
|
664
|
-
|
|
665
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration_reference'] = PropTypes.exact({
|
|
666
|
-
key: PropTypes.string.isRequired,
|
|
667
|
-
});
|
|
668
|
-
|
|
669
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration_copy'] = PropTypes.exact({
|
|
670
|
-
original: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
|
|
671
|
-
'new': T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
|
|
672
|
-
});
|
|
673
|
-
|
|
674
|
-
T['io.flow.fulfillment.v0.enums.shipping_configuration_type'] = PropTypes.oneOf(['default', 'variant']);
|
|
675
|
-
|
|
676
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration_summary'] = PropTypes.exact({
|
|
677
|
-
id: PropTypes.string.isRequired,
|
|
678
|
-
name: PropTypes.string.isRequired,
|
|
679
|
-
key: PropTypes.string.isRequired,
|
|
680
|
-
type: T['io.flow.fulfillment.v0.enums.shipping_configuration_type'].isRequired,
|
|
681
|
-
});
|
|
682
|
-
|
|
683
|
-
T['io.flow.fulfillment.v0.enums.lane_direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
684
|
-
|
|
685
|
-
T['io.flow.fulfillment.v0.models.shipping_lane_form'] = PropTypes.exact({
|
|
686
|
-
from: PropTypes.string.isRequired,
|
|
687
|
-
to: PropTypes.string.isRequired,
|
|
688
|
-
strategy: T['io.flow.fulfillment.v0.enums.lane_strategy'],
|
|
689
|
-
direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
|
|
690
|
-
preference: T['io.flow.fulfillment.v0.enums.lane_preselect_preference'],
|
|
691
|
-
});
|
|
692
|
-
|
|
693
|
-
T['io.flow.fulfillment.v0.enums.quote_error_code'] = PropTypes.oneOf(['generic_error', 'items_not_available', 'shipping_unavailable']);
|
|
694
|
-
|
|
695
|
-
T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
|
|
696
|
-
code: T['io.flow.fulfillment.v0.enums.quote_error_code'].isRequired,
|
|
697
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
698
|
-
item_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
699
|
-
});
|
|
700
|
-
|
|
701
|
-
T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
|
|
702
|
-
id: PropTypes.string.isRequired,
|
|
703
|
-
});
|
|
704
|
-
|
|
705
|
-
T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
|
|
706
|
-
|
|
707
|
-
T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
|
|
708
|
-
id: PropTypes.string.isRequired,
|
|
709
|
-
selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
|
|
710
|
-
});
|
|
711
|
-
|
|
712
|
-
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa']);
|
|
713
|
-
T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
|
|
714
|
-
T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
|
|
715
|
-
T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
|
|
716
|
-
T['io.flow.fulfillment.v0.enums.zero_amount_indicator'] = PropTypes.oneOf(['zero', 'free']);
|
|
717
|
-
T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
|
|
718
|
-
|
|
719
|
-
T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
720
|
-
'adjustment',
|
|
721
|
-
'subtotal',
|
|
722
|
-
'vat',
|
|
723
|
-
'duty',
|
|
724
|
-
'shipping',
|
|
725
|
-
'insurance',
|
|
726
|
-
'discount',
|
|
727
|
-
'surcharges',
|
|
728
|
-
'tip',
|
|
729
|
-
]);
|
|
730
|
-
|
|
731
|
-
T['io.flow.fulfillment.v0.enums.delivery_window_location'] = PropTypes.oneOf(['center', 'crossdock', 'customer']);
|
|
732
|
-
T['io.flow.fulfillment.v0.enums.delivery_window_component_source'] = PropTypes.oneOf(['flow', 'organization', 'carrier', 'center', 'mixed']);
|
|
733
|
-
|
|
734
|
-
T['io.flow.fulfillment.v0.models.transit_estimate'] = PropTypes.exact({
|
|
735
|
-
origin: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
|
|
736
|
-
destination: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
|
|
737
|
-
min_date: PropTypes.string.isRequired,
|
|
738
|
-
max_date: PropTypes.string.isRequired,
|
|
739
|
-
source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
|
|
740
|
-
});
|
|
741
|
-
|
|
742
|
-
T['io.flow.fulfillment.v0.models.processing_estimate'] = PropTypes.exact({
|
|
743
|
-
location: T['io.flow.fulfillment.v0.enums.delivery_window_location'].isRequired,
|
|
744
|
-
min_date: PropTypes.string.isRequired,
|
|
745
|
-
max_date: PropTypes.string.isRequired,
|
|
746
|
-
source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
|
|
747
|
-
});
|
|
748
|
-
|
|
749
|
-
T['io.flow.fulfillment.v0.models.delivery_window_components_v2'] = PropTypes.exact({
|
|
750
|
-
processing_estimates: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.processing_estimate']).isRequired,
|
|
751
|
-
transit_estimates: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.transit_estimate']).isRequired,
|
|
752
|
-
});
|
|
753
|
-
|
|
754
|
-
T['io.flow.fulfillment.v0.models.delivery_window_component'] = PropTypes.exact({
|
|
755
|
-
from: PropTypes.string.isRequired,
|
|
756
|
-
to: PropTypes.string.isRequired,
|
|
757
|
-
source: T['io.flow.fulfillment.v0.enums.delivery_window_component_source'].isRequired,
|
|
758
|
-
});
|
|
759
|
-
|
|
760
|
-
T['io.flow.fulfillment.v0.models.delivery_window_components'] = PropTypes.exact({
|
|
761
|
-
shipment_estimate: T['io.flow.fulfillment.v0.models.delivery_window_component'].isRequired,
|
|
762
|
-
transit_estimate: T['io.flow.fulfillment.v0.models.delivery_window_component'].isRequired,
|
|
763
|
-
});
|
|
764
|
-
|
|
765
|
-
T['io.flow.fulfillment.v0.models.tier_reference'] = PropTypes.exact({
|
|
766
|
-
id: PropTypes.string.isRequired,
|
|
767
|
-
});
|
|
768
|
-
|
|
769
|
-
T['io.flow.fulfillment.v0.models.shipping_lane_default_tier'] = PropTypes.exact({
|
|
770
|
-
id: PropTypes.string.isRequired,
|
|
771
|
-
tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
|
|
772
|
-
});
|
|
773
|
-
|
|
774
|
-
T['io.flow.fulfillment.v0.models.service_reference'] = PropTypes.exact({
|
|
775
|
-
id: PropTypes.string.isRequired,
|
|
776
|
-
});
|
|
777
|
-
|
|
778
|
-
T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'] = PropTypes.oneOf(['center', 'ratecard']);
|
|
779
|
-
|
|
780
|
-
T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'] = PropTypes.oneOf([
|
|
781
|
-
'ratecard_base_cost',
|
|
782
|
-
'ratecard_ddp_fee',
|
|
783
|
-
'ratecard_fuel_surcharge',
|
|
784
|
-
'ratecard_oversized_shipment_fee',
|
|
785
|
-
'ratecard_rural_shipment_fee',
|
|
786
|
-
'ratecard_emergency_situation_surcharge_fee',
|
|
787
|
-
'ratecard_peak_surcharge_fee',
|
|
788
|
-
'ratecard_duties_taxes_paid_surcharge_fee',
|
|
789
|
-
'center_commercial_invoice_fee',
|
|
790
|
-
'center_inbound_carton_fee',
|
|
791
|
-
'center_outbound_carton_fee',
|
|
792
|
-
]);
|
|
793
|
-
|
|
794
|
-
T['io.flow.fulfillment.v0.models.surcharge_setting_display'] = PropTypes.exact({
|
|
795
|
-
name: PropTypes.string.isRequired,
|
|
796
|
-
description: PropTypes.string.isRequired,
|
|
797
|
-
key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
|
|
798
|
-
available: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_responsible_party_display']).isRequired,
|
|
799
|
-
});
|
|
800
|
-
|
|
801
|
-
T['io.flow.fulfillment.v0.models.surcharge_setting'] = PropTypes.exact({
|
|
802
|
-
key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
|
|
803
|
-
responsible_party: T['io.flow.fulfillment.v0.enums.surcharge_responsible_party'].isRequired,
|
|
804
|
-
});
|
|
805
|
-
|
|
806
|
-
T['io.flow.fulfillment.v0.models.percent_margin'] = PropTypes.exact({
|
|
807
|
-
discriminator: PropTypes.oneOf(['percent_margin']).isRequired,
|
|
808
|
-
percentage: PropTypes.number.isRequired,
|
|
809
|
-
});
|
|
810
|
-
|
|
811
|
-
T['io.flow.fulfillment.v0.models.at_cost'] = PropTypes.exact({
|
|
812
|
-
discriminator: PropTypes.oneOf(['at_cost']).isRequired,
|
|
813
|
-
ignore: PropTypes.string,
|
|
814
|
-
});
|
|
815
|
-
|
|
816
|
-
T['io.flow.fulfillment.v0.models.tier_settings'] = PropTypes.exact({
|
|
817
|
-
availability: T['io.flow.fulfillment.v0.enums.tier_availability'].isRequired,
|
|
818
|
-
});
|
|
819
|
-
|
|
820
|
-
T['io.flow.fulfillment.v0.models.tier_display'] = PropTypes.exact({
|
|
821
|
-
estimate: T['io.flow.fulfillment.v0.models.tier_estimate'].isRequired,
|
|
822
|
-
});
|
|
823
|
-
|
|
824
|
-
T['io.flow.common.v0.enums.visibility'] = PropTypes.oneOf(['public', 'private']);
|
|
825
|
-
T['io.flow.fulfillment.v0.enums.tier_strategy'] = PropTypes.oneOf(['fastest', 'lowest_cost']);
|
|
826
|
-
T['io.flow.fulfillment.v0.enums.shipment_integration_type'] = PropTypes.oneOf(['direct', 'information', 'preadvice']);
|
|
827
|
-
|
|
828
|
-
T['io.flow.fulfillment.v0.models.fulfillment_experience_reference'] = PropTypes.exact({
|
|
829
|
-
id: PropTypes.string.isRequired,
|
|
830
|
-
currency: PropTypes.string.isRequired,
|
|
831
|
-
});
|
|
832
|
-
|
|
833
|
-
T['io.flow.fulfillment.v0.models.carrier_reference'] = PropTypes.exact({
|
|
834
|
-
id: PropTypes.string.isRequired,
|
|
835
|
-
});
|
|
836
|
-
|
|
837
|
-
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
838
|
-
|
|
839
|
-
T['io.flow.fulfillment.v0.models.delivery_window'] = PropTypes.exact({
|
|
840
|
-
from: PropTypes.string.isRequired,
|
|
841
|
-
to: PropTypes.string.isRequired,
|
|
842
|
-
timezone: PropTypes.string,
|
|
843
|
-
label: PropTypes.string,
|
|
844
|
-
min_days: PropTypes.number,
|
|
845
|
-
max_days: PropTypes.number,
|
|
846
|
-
});
|
|
847
|
-
|
|
848
|
-
T['io.flow.fulfillment.v0.models.delivery_window_summary'] = PropTypes.exact({
|
|
849
|
-
country: PropTypes.string.isRequired,
|
|
850
|
-
delivery_window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
|
|
851
|
-
});
|
|
852
|
-
|
|
853
|
-
T['io.flow.fulfillment.v0.models.tier_summary'] = PropTypes.exact({
|
|
854
|
-
id: PropTypes.string.isRequired,
|
|
855
|
-
experience: T['io.flow.fulfillment.v0.models.fulfillment_experience_reference'],
|
|
856
|
-
integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
|
|
857
|
-
name: PropTypes.string.isRequired,
|
|
858
|
-
services: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
859
|
-
strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
|
|
860
|
-
visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
|
|
861
|
-
currency: PropTypes.string.isRequired,
|
|
862
|
-
display: T['io.flow.fulfillment.v0.models.tier_display'],
|
|
863
|
-
message: PropTypes.string,
|
|
864
|
-
settings: T['io.flow.fulfillment.v0.models.tier_settings'],
|
|
865
|
-
});
|
|
866
|
-
|
|
867
|
-
T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
|
|
868
|
-
T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
|
|
869
|
-
|
|
870
|
-
T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
|
|
871
|
-
status: T['io.flow.fulfillment.v0.enums.item_availability_status'].isRequired,
|
|
872
|
-
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
873
|
-
});
|
|
874
|
-
|
|
875
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration_item_availability'] = PropTypes.exact({
|
|
876
|
-
id: PropTypes.string.isRequired,
|
|
877
|
-
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
878
|
-
shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
|
|
879
|
-
availabilities: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_availability']).isRequired,
|
|
880
|
-
});
|
|
881
|
-
|
|
882
|
-
T['io.flow.common.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
|
|
883
|
-
|
|
884
|
-
T['io.flow.currency.v0.models.rate_version'] = PropTypes.exact({
|
|
885
|
-
id: PropTypes.string.isRequired,
|
|
886
|
-
timestamp: PropTypes.string.isRequired,
|
|
887
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
888
|
-
rate: T['io.flow.currency.v0.models.rate'].isRequired,
|
|
889
|
-
});
|
|
890
|
-
|
|
891
|
-
T['io.flow.inventory.v0.models.inventory_update_version'] = PropTypes.exact({
|
|
892
|
-
id: PropTypes.string.isRequired,
|
|
893
|
-
timestamp: PropTypes.string.isRequired,
|
|
894
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
895
|
-
inventory_update: T['io.flow.inventory.v0.models.inventory_update'].isRequired,
|
|
896
|
-
});
|
|
897
|
-
|
|
898
|
-
T['io.flow.inventory.v0.models.inventory_snapshot_version'] = PropTypes.exact({
|
|
899
|
-
id: PropTypes.string.isRequired,
|
|
900
|
-
timestamp: PropTypes.string.isRequired,
|
|
901
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
902
|
-
inventory_snapshot: T['io.flow.inventory.v0.models.inventory_snapshot'].isRequired,
|
|
903
|
-
});
|
|
904
|
-
|
|
905
|
-
T['io.flow.inventory.v0.models.inventory_rule_version'] = PropTypes.exact({
|
|
906
|
-
id: PropTypes.string.isRequired,
|
|
907
|
-
timestamp: PropTypes.string.isRequired,
|
|
908
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
909
|
-
inventory_rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
|
|
910
|
-
});
|
|
911
|
-
|
|
912
|
-
T['io.flow.catalog.v0.models.subcatalog_version'] = PropTypes.exact({
|
|
913
|
-
id: PropTypes.string.isRequired,
|
|
914
|
-
timestamp: PropTypes.string.isRequired,
|
|
915
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
916
|
-
subcatalog: T['io.flow.catalog.v0.models.subcatalog'].isRequired,
|
|
917
|
-
});
|
|
918
|
-
|
|
919
|
-
T['io.flow.catalog.v0.models.catalog_version'] = PropTypes.exact({
|
|
920
|
-
id: PropTypes.string.isRequired,
|
|
921
|
-
timestamp: PropTypes.string.isRequired,
|
|
922
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
923
|
-
catalog: T['io.flow.catalog.v0.models.catalog'].isRequired,
|
|
924
|
-
});
|
|
925
|
-
|
|
926
|
-
T['io.flow.catalog.v0.models.attribute_version'] = PropTypes.exact({
|
|
927
|
-
id: PropTypes.string.isRequired,
|
|
928
|
-
timestamp: PropTypes.string.isRequired,
|
|
929
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
930
|
-
attribute: T['io.flow.catalog.v0.models.attribute'].isRequired,
|
|
931
|
-
});
|
|
932
|
-
|
|
933
|
-
T['io.flow.fulfillment.v0.models.tier_version'] = PropTypes.exact({
|
|
934
|
-
id: PropTypes.string.isRequired,
|
|
935
|
-
timestamp: PropTypes.string.isRequired,
|
|
936
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
937
|
-
tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
|
|
938
|
-
});
|
|
939
|
-
|
|
940
|
-
T['io.flow.common.v0.models.partner_reference'] = PropTypes.exact({
|
|
941
|
-
id: PropTypes.string.isRequired,
|
|
942
|
-
});
|
|
943
|
-
|
|
944
|
-
T['io.flow.fulfillment.v0.models.service_summary'] = PropTypes.exact({
|
|
945
|
-
discriminator: PropTypes.oneOf(['service_summary']).isRequired,
|
|
946
|
-
id: PropTypes.string.isRequired,
|
|
947
|
-
carrier: T['io.flow.fulfillment.v0.models.carrier_reference'].isRequired,
|
|
948
|
-
name: PropTypes.string.isRequired,
|
|
949
|
-
center_code: PropTypes.string,
|
|
950
|
-
});
|
|
951
|
-
|
|
952
|
-
T['io.flow.fulfillment.v0.unions.service_description'] = PropTypes.oneOfType([
|
|
953
|
-
T['io.flow.fulfillment.v0.models.service_summary'],
|
|
954
|
-
T['io.flow.fulfillment.v0.models.service_unknown'],
|
|
955
|
-
]);
|
|
956
|
-
|
|
957
|
-
T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
|
|
958
|
-
discriminator: PropTypes.oneOf(['center_reference']).isRequired,
|
|
959
|
-
organization_id: PropTypes.string.isRequired,
|
|
960
|
-
center_key: PropTypes.string.isRequired,
|
|
961
|
-
});
|
|
962
|
-
|
|
963
|
-
T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
964
|
-
text: PropTypes.string,
|
|
965
|
-
streets: PropTypes.arrayOf(PropTypes.string),
|
|
966
|
-
street_number: PropTypes.string,
|
|
967
|
-
city: PropTypes.string,
|
|
968
|
-
province: PropTypes.string,
|
|
969
|
-
postal: PropTypes.string,
|
|
970
|
-
country: PropTypes.string,
|
|
971
|
-
latitude: PropTypes.string,
|
|
972
|
-
longitude: PropTypes.string,
|
|
973
|
-
});
|
|
974
|
-
|
|
975
|
-
T['io.flow.fulfillment.v0.enums.center_capability'] = PropTypes.oneOf(['international', 'domestic', 'crossdock', 'commercial_invoice']);
|
|
976
|
-
|
|
977
|
-
T['io.flow.fulfillment.v0.models.number_range'] = PropTypes.exact({
|
|
978
|
-
min: PropTypes.number.isRequired,
|
|
979
|
-
max: PropTypes.number.isRequired,
|
|
980
|
-
});
|
|
981
|
-
|
|
982
|
-
T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
|
|
983
|
-
'area',
|
|
984
|
-
'city',
|
|
985
|
-
'county',
|
|
986
|
-
'department',
|
|
987
|
-
'dependency',
|
|
988
|
-
'district',
|
|
989
|
-
'do_si',
|
|
990
|
-
'emirate',
|
|
991
|
-
'entity',
|
|
992
|
-
'island',
|
|
993
|
-
'municipality',
|
|
994
|
-
'oblast',
|
|
995
|
-
'outlying_area',
|
|
996
|
-
'parish',
|
|
997
|
-
'prefecture',
|
|
998
|
-
'province',
|
|
999
|
-
'state',
|
|
1000
|
-
'territory',
|
|
1001
|
-
'other',
|
|
1002
|
-
]);
|
|
1003
|
-
|
|
1004
|
-
T['io.flow.reference.v0.models.payment_method_image'] = PropTypes.exact({
|
|
1005
|
-
url: PropTypes.string.isRequired,
|
|
1006
|
-
width: PropTypes.number.isRequired,
|
|
1007
|
-
height: PropTypes.number.isRequired,
|
|
1008
|
-
});
|
|
1009
|
-
|
|
1010
|
-
T['io.flow.reference.v0.enums.payment_method_capability'] = PropTypes.oneOf(['credit', 'debit']);
|
|
1011
|
-
|
|
1012
|
-
T['io.flow.reference.v0.models.payment_method_images'] = PropTypes.exact({
|
|
1013
|
-
small: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
|
|
1014
|
-
medium: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
|
|
1015
|
-
large: T['io.flow.reference.v0.models.payment_method_image'].isRequired,
|
|
1016
|
-
});
|
|
1017
|
-
|
|
1018
|
-
T['io.flow.reference.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
|
|
1019
|
-
|
|
1020
|
-
T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
|
|
1021
|
-
id: PropTypes.string.isRequired,
|
|
1022
|
-
type: T['io.flow.reference.v0.enums.payment_method_type'].isRequired,
|
|
1023
|
-
name: PropTypes.string.isRequired,
|
|
1024
|
-
images: T['io.flow.reference.v0.models.payment_method_images'].isRequired,
|
|
1025
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1026
|
-
capabilities: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_capability']),
|
|
1027
|
-
});
|
|
1028
|
-
|
|
1029
|
-
T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
|
|
1030
|
-
decimal: PropTypes.string.isRequired,
|
|
1031
|
-
group: PropTypes.string.isRequired,
|
|
1032
|
-
});
|
|
1033
|
-
|
|
1034
|
-
T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
|
|
1035
|
-
id: PropTypes.string.isRequired,
|
|
1036
|
-
name: PropTypes.string.isRequired,
|
|
1037
|
-
country: PropTypes.string.isRequired,
|
|
1038
|
-
language: PropTypes.string.isRequired,
|
|
1039
|
-
numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
|
|
1040
|
-
});
|
|
1041
|
-
|
|
1042
|
-
T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
|
|
1043
|
-
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
1044
|
-
name: PropTypes.string.isRequired,
|
|
1045
|
-
});
|
|
1046
|
-
|
|
1047
|
-
T['io.flow.reference.v0.models.province'] = PropTypes.exact({
|
|
1048
|
-
id: PropTypes.string.isRequired,
|
|
1049
|
-
iso_3166_2: PropTypes.string.isRequired,
|
|
1050
|
-
name: PropTypes.string.isRequired,
|
|
1051
|
-
country: PropTypes.string.isRequired,
|
|
1052
|
-
province_type: T['io.flow.reference.v0.enums.province_type'].isRequired,
|
|
1053
|
-
translations: PropTypes.arrayOf(T['io.flow.reference.v0.models.localized_translation']),
|
|
1054
|
-
});
|
|
1055
|
-
|
|
1056
|
-
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
1057
|
-
primary: PropTypes.string.isRequired,
|
|
1058
|
-
narrow: PropTypes.string,
|
|
1059
|
-
});
|
|
1060
|
-
|
|
1061
|
-
T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
1062
|
-
name: PropTypes.string.isRequired,
|
|
1063
|
-
iso_4217_3: PropTypes.string.isRequired,
|
|
1064
|
-
number_decimals: PropTypes.number.isRequired,
|
|
1065
|
-
symbols: T['io.flow.reference.v0.models.currency_symbols'],
|
|
1066
|
-
default_locale: PropTypes.string,
|
|
1067
|
-
});
|
|
1068
|
-
|
|
1069
|
-
T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
|
|
1070
|
-
id: PropTypes.string.isRequired,
|
|
1071
|
-
name: PropTypes.string.isRequired,
|
|
1072
|
-
tracking_url: PropTypes.string.isRequired,
|
|
1073
|
-
});
|
|
1074
|
-
|
|
1075
|
-
T['io.flow.reference.v0.models.carrier_service'] = PropTypes.exact({
|
|
1076
|
-
id: PropTypes.string.isRequired,
|
|
1077
|
-
carrier: T['io.flow.reference.v0.models.carrier'].isRequired,
|
|
1078
|
-
name: PropTypes.string.isRequired,
|
|
1079
|
-
});
|
|
1080
|
-
|
|
1081
|
-
T['io.flow.channel.v0.enums.channel_currency_capability'] = PropTypes.oneOf(['payment_authorizations', 'settlement_currency']);
|
|
1082
|
-
|
|
1083
|
-
T['io.flow.channel.internal.v0.models.channel_currency_form'] = PropTypes.exact({
|
|
1084
|
-
currency: PropTypes.string.isRequired,
|
|
1085
|
-
channel_id: PropTypes.string.isRequired,
|
|
1086
|
-
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
1087
|
-
});
|
|
1088
|
-
|
|
1089
|
-
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
1090
|
-
id: PropTypes.string.isRequired,
|
|
1091
|
-
});
|
|
1092
|
-
|
|
1093
|
-
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
1094
|
-
id: PropTypes.string.isRequired,
|
|
1095
|
-
currency: PropTypes.string.isRequired,
|
|
1096
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
1097
|
-
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
1098
|
-
});
|
|
1099
|
-
|
|
1100
|
-
T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
|
|
1101
|
-
|
|
1102
|
-
T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
|
|
1103
|
-
'base_price',
|
|
1104
|
-
'discount',
|
|
1105
|
-
'currency_margin',
|
|
1106
|
-
'percent_item_margin',
|
|
1107
|
-
'fixed_item_margin',
|
|
1108
|
-
'duties_item_price',
|
|
1109
|
-
'duties_added_margin',
|
|
1110
|
-
'duties_rounding',
|
|
1111
|
-
'duties_deminimis',
|
|
1112
|
-
'vat_item_price',
|
|
1113
|
-
'vat_added_margin',
|
|
1114
|
-
'vat_rounding',
|
|
1115
|
-
'vat_duties_item_price',
|
|
1116
|
-
'vat_duties_added_margin',
|
|
1117
|
-
'vat_duties_rounding',
|
|
1118
|
-
'vat_deminimis',
|
|
1119
|
-
'item_price_percent_sales_margin',
|
|
1120
|
-
'margins_percent_sales_margin',
|
|
1121
|
-
'rounding_percent_sales_margin',
|
|
1122
|
-
'vat_percent_sales_margin',
|
|
1123
|
-
'vat_duty_percent_sales_margin',
|
|
1124
|
-
'duty_percent_sales_margin',
|
|
1125
|
-
]);
|
|
1126
|
-
|
|
1127
|
-
T['io.flow.price.v0.models.price_book_item_schedule'] = PropTypes.exact({
|
|
1128
|
-
starts_at: PropTypes.string.isRequired,
|
|
1129
|
-
ends_at: PropTypes.string,
|
|
1130
|
-
});
|
|
1131
|
-
|
|
1132
|
-
T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
|
|
1133
|
-
price_book_key: PropTypes.string.isRequired,
|
|
1134
|
-
item_query: PropTypes.string.isRequired,
|
|
1135
|
-
amount: PropTypes.number.isRequired,
|
|
1136
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
1137
|
-
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
1138
|
-
});
|
|
1139
|
-
|
|
1140
|
-
T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
|
|
1141
|
-
price_book_key: PropTypes.string.isRequired,
|
|
1142
|
-
item_number: PropTypes.string.isRequired,
|
|
1143
|
-
amount: PropTypes.number.isRequired,
|
|
1144
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
1145
|
-
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
1146
|
-
});
|
|
1147
|
-
|
|
1148
|
-
T['io.flow.price.v0.models.price_book_reference'] = PropTypes.exact({
|
|
1149
|
-
id: PropTypes.string.isRequired,
|
|
1150
|
-
key: PropTypes.string.isRequired,
|
|
1151
|
-
});
|
|
1152
|
-
|
|
1153
|
-
T['io.flow.common.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
|
|
1154
|
-
|
|
1155
|
-
T['io.flow.price.v0.models.price_detail_component'] = PropTypes.exact({
|
|
1156
|
-
key: T['io.flow.price.v0.enums.price_detail_component_key'].isRequired,
|
|
1157
|
-
amount: PropTypes.number.isRequired,
|
|
1158
|
-
label: PropTypes.string.isRequired,
|
|
1159
|
-
name: PropTypes.string,
|
|
1160
|
-
});
|
|
1161
|
-
|
|
1162
|
-
T['io.flow.price.v0.enums.price_detail_key'] = PropTypes.oneOf(['item_price', 'margins', 'vat', 'duty', 'rounding', 'adjustment']);
|
|
1163
|
-
|
|
1164
|
-
T['io.flow.price.v0.models.price_detail'] = PropTypes.exact({
|
|
1165
|
-
key: T['io.flow.price.v0.enums.price_detail_key'].isRequired,
|
|
1166
|
-
components: PropTypes.arrayOf(T['io.flow.price.v0.models.price_detail_component']).isRequired,
|
|
1167
|
-
amount: PropTypes.number.isRequired,
|
|
1168
|
-
label: PropTypes.string.isRequired,
|
|
1169
|
-
name: PropTypes.string,
|
|
1170
|
-
basis: PropTypes.number,
|
|
1171
|
-
});
|
|
1172
|
-
|
|
1173
|
-
T['io.flow.price.v0.models.deminimis_per_item'] = PropTypes.exact({
|
|
1174
|
-
discriminator: PropTypes.oneOf(['deminimis_per_item']).isRequired,
|
|
1175
|
-
currency: PropTypes.string.isRequired,
|
|
1176
|
-
minimum: PropTypes.number,
|
|
1177
|
-
maximum: PropTypes.number,
|
|
1178
|
-
});
|
|
1179
|
-
|
|
1180
|
-
T['io.flow.price.v0.enums.levy_component'] = PropTypes.oneOf(['goods', 'duty', 'insurance', 'freight', 'vat']);
|
|
1181
|
-
|
|
1182
|
-
T['io.flow.price.v0.models.deminimis_simple'] = PropTypes.exact({
|
|
1183
|
-
discriminator: PropTypes.oneOf(['deminimis_simple']).isRequired,
|
|
1184
|
-
value: PropTypes.number,
|
|
1185
|
-
currency: PropTypes.string.isRequired,
|
|
1186
|
-
components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
|
|
1187
|
-
minimum: PropTypes.number,
|
|
1188
|
-
});
|
|
1189
|
-
|
|
1190
|
-
T['io.flow.price.v0.unions.deminimis'] = PropTypes.oneOfType([
|
|
1191
|
-
T['io.flow.price.v0.models.deminimis_simple'],
|
|
1192
|
-
T['io.flow.price.v0.models.deminimis_per_item'],
|
|
1193
|
-
]);
|
|
1194
|
-
|
|
1195
|
-
T['io.flow.price.v0.models.tax'] = PropTypes.exact({
|
|
1196
|
-
name: PropTypes.string.isRequired,
|
|
1197
|
-
rate: PropTypes.number.isRequired,
|
|
1198
|
-
components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
|
|
1199
|
-
deminimis: T['io.flow.price.v0.unions.deminimis'],
|
|
1200
|
-
});
|
|
1201
|
-
|
|
1202
|
-
T['io.flow.price.v0.models.duty'] = PropTypes.exact({
|
|
1203
|
-
rate: PropTypes.number.isRequired,
|
|
1204
|
-
components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
|
|
1205
|
-
deminimis: T['io.flow.price.v0.unions.deminimis'],
|
|
1206
|
-
name: PropTypes.string,
|
|
1207
|
-
});
|
|
1208
|
-
|
|
1209
|
-
T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
|
|
1210
|
-
T['io.flow.common.v0.enums.currency_symbol_format'] = PropTypes.oneOf(['narrow', 'primary']);
|
|
1211
|
-
|
|
1212
|
-
T['io.flow.price.v0.models.currency_format'] = PropTypes.exact({
|
|
1213
|
-
symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
|
|
1214
|
-
label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
|
|
1215
|
-
});
|
|
1216
|
-
|
|
1217
|
-
T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
|
|
1218
|
-
|
|
1219
|
-
T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
1220
|
-
code: T['io.flow.error.v0.enums.generic_error_code'].isRequired,
|
|
1221
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1222
|
-
});
|
|
1223
|
-
|
|
1224
|
-
T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
|
|
1225
|
-
discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
|
|
1226
|
-
interval: PropTypes.number.isRequired,
|
|
1227
|
-
days: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
1228
|
-
});
|
|
1229
|
-
|
|
1230
|
-
T['io.flow.common.v0.models.repeat_daily'] = PropTypes.exact({
|
|
1231
|
-
discriminator: PropTypes.oneOf(['repeat_daily']).isRequired,
|
|
1232
|
-
interval: PropTypes.number.isRequired,
|
|
1233
|
-
});
|
|
1234
|
-
|
|
1235
|
-
T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
1236
|
-
discriminator: PropTypes.oneOf(['repeat_hourly']).isRequired,
|
|
1237
|
-
interval: PropTypes.number.isRequired,
|
|
1238
|
-
});
|
|
1239
|
-
|
|
1240
|
-
T['io.flow.common.v0.models.logo_image_svg'] = PropTypes.exact({
|
|
1241
|
-
discriminator: PropTypes.oneOf(['svg']).isRequired,
|
|
1242
|
-
url: PropTypes.string.isRequired,
|
|
1243
|
-
});
|
|
1244
|
-
|
|
1245
|
-
T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
|
|
1246
|
-
discriminator: PropTypes.oneOf(['user_reference']).isRequired,
|
|
1247
|
-
id: PropTypes.string.isRequired,
|
|
1248
|
-
});
|
|
1249
|
-
|
|
1250
|
-
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
1251
|
-
T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
|
|
1252
|
-
T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
|
|
1253
|
-
T['io.flow.common.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
|
|
1254
|
-
T['io.flow.common.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
|
|
1255
|
-
|
|
1256
|
-
T['io.flow.common.v0.models.rounding'] = PropTypes.exact({
|
|
1257
|
-
type: T['io.flow.common.v0.enums.rounding_type'].isRequired,
|
|
1258
|
-
method: T['io.flow.common.v0.enums.rounding_method'].isRequired,
|
|
1259
|
-
value: PropTypes.number.isRequired,
|
|
1260
|
-
});
|
|
1261
|
-
|
|
1262
|
-
T['io.flow.price.v0.models.pricing'] = PropTypes.exact({
|
|
1263
|
-
vat: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
|
|
1264
|
-
duty: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
|
|
1265
|
-
rounding: T['io.flow.common.v0.models.rounding'],
|
|
1266
|
-
});
|
|
1267
|
-
|
|
1268
|
-
T['io.flow.price.v0.models.price_equation'] = PropTypes.exact({
|
|
1269
|
-
contracted_rate: PropTypes.number.isRequired,
|
|
1270
|
-
rate: PropTypes.number.isRequired,
|
|
1271
|
-
pricing: T['io.flow.price.v0.models.pricing'].isRequired,
|
|
1272
|
-
base_price: PropTypes.number.isRequired,
|
|
1273
|
-
discount: PropTypes.number.isRequired,
|
|
1274
|
-
fixed_margin: PropTypes.number.isRequired,
|
|
1275
|
-
percent_margin: PropTypes.number.isRequired,
|
|
1276
|
-
insurance: PropTypes.number.isRequired,
|
|
1277
|
-
freight: PropTypes.number.isRequired,
|
|
1278
|
-
duty: T['io.flow.price.v0.models.duty'],
|
|
1279
|
-
tax: T['io.flow.price.v0.models.tax'],
|
|
1280
|
-
percent_sales_margin: PropTypes.number.isRequired,
|
|
1281
|
-
});
|
|
1282
|
-
|
|
1283
|
-
T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
|
|
1284
|
-
'sunday',
|
|
1285
|
-
'monday',
|
|
1286
|
-
'tuesday',
|
|
1287
|
-
'wednesday',
|
|
1288
|
-
'thursday',
|
|
1289
|
-
'friday',
|
|
1290
|
-
'saturday',
|
|
1291
|
-
]);
|
|
1292
|
-
|
|
1293
|
-
T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
1294
|
-
day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
|
|
1295
|
-
hour_of_day: PropTypes.string.isRequired,
|
|
1296
|
-
minute_of_hour: PropTypes.string.isRequired,
|
|
1297
|
-
});
|
|
1298
|
-
|
|
1299
|
-
T['io.flow.fulfillment.v0.models.available_service'] = PropTypes.exact({
|
|
1300
|
-
service: PropTypes.string.isRequired,
|
|
1301
|
-
scheduled_pickups: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.scheduled_pickup']),
|
|
1302
|
-
lead_days: T['io.flow.fulfillment.v0.models.number_range'],
|
|
1303
|
-
});
|
|
1304
|
-
|
|
1305
|
-
T['io.flow.common.v0.models.repeat_weekly'] = PropTypes.exact({
|
|
1306
|
-
discriminator: PropTypes.oneOf(['repeat_weekly']).isRequired,
|
|
1307
|
-
interval: PropTypes.number.isRequired,
|
|
1308
|
-
days_of_week: PropTypes.arrayOf(T['io.flow.common.v0.enums.day_of_week']).isRequired,
|
|
1309
|
-
});
|
|
1310
|
-
|
|
1311
|
-
T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
|
|
1312
|
-
T['io.flow.common.v0.models.repeat_hourly'],
|
|
1313
|
-
T['io.flow.common.v0.models.repeat_daily'],
|
|
1314
|
-
T['io.flow.common.v0.models.repeat_weekly'],
|
|
1315
|
-
T['io.flow.common.v0.models.repeat_monthly'],
|
|
1316
|
-
]);
|
|
1317
|
-
|
|
1318
|
-
T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
|
|
1319
|
-
id: PropTypes.string.isRequired,
|
|
1320
|
-
key: PropTypes.string.isRequired,
|
|
1321
|
-
});
|
|
1322
|
-
|
|
1323
|
-
T['io.flow.common.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
|
|
1324
|
-
T['io.flow.common.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
|
|
1325
|
-
|
|
1326
|
-
T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
|
|
1327
|
-
country: PropTypes.string.isRequired,
|
|
1328
|
-
base_currency: PropTypes.string.isRequired,
|
|
1329
|
-
language: PropTypes.string.isRequired,
|
|
1330
|
-
locale: PropTypes.string.isRequired,
|
|
1331
|
-
timezone: PropTypes.string.isRequired,
|
|
1332
|
-
});
|
|
1333
|
-
|
|
1334
|
-
T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
1335
|
-
name: PropTypes.string,
|
|
1336
|
-
slug: PropTypes.string,
|
|
1337
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
1338
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1339
|
-
});
|
|
1340
|
-
|
|
1341
|
-
T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
|
|
1342
|
-
key: PropTypes.string.isRequired,
|
|
1343
|
-
name: PropTypes.string,
|
|
1344
|
-
slug: PropTypes.string,
|
|
1345
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
1346
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1347
|
-
});
|
|
1348
|
-
|
|
1349
|
-
T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
|
|
1350
|
-
|
|
1351
|
-
T['io.flow.channel.internal.v0.models.channel_form'] = PropTypes.exact({
|
|
21
|
+
T['io.flow.product.v0.models.product_taxonomy_value'] = PropTypes.exact({
|
|
22
|
+
handle: PropTypes.string.isRequired,
|
|
1352
23
|
name: PropTypes.string.isRequired,
|
|
1353
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1354
|
-
organization_id_prefix: PropTypes.string,
|
|
1355
|
-
});
|
|
1356
|
-
|
|
1357
|
-
T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
|
|
1358
|
-
name: PropTypes.string,
|
|
1359
|
-
environment: T['io.flow.common.v0.enums.environment'],
|
|
1360
|
-
parent_id: PropTypes.string,
|
|
1361
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'],
|
|
1362
|
-
status: T['io.flow.common.v0.enums.organization_status'],
|
|
1363
24
|
});
|
|
1364
25
|
|
|
1365
|
-
T['io.flow.
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
parent_id: PropTypes.string,
|
|
1370
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'],
|
|
1371
|
-
status: T['io.flow.common.v0.enums.organization_status'],
|
|
1372
|
-
type: T['io.flow.common.v0.enums.organization_type'],
|
|
26
|
+
T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
27
|
+
key: PropTypes.string.isRequired,
|
|
28
|
+
value: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29
|
+
value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
|
|
1373
30
|
});
|
|
1374
31
|
|
|
1375
|
-
T['io.flow.
|
|
1376
|
-
|
|
1377
|
-
|
|
32
|
+
T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
33
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
34
|
+
|
|
35
|
+
T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
|
|
36
|
+
discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
|
|
37
|
+
interval: PropTypes.number.isRequired,
|
|
38
|
+
days: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
1378
39
|
});
|
|
1379
40
|
|
|
1380
|
-
T['io.flow.
|
|
1381
|
-
|
|
1382
|
-
|
|
41
|
+
T['io.flow.common.v0.models.repeat_daily'] = PropTypes.exact({
|
|
42
|
+
discriminator: PropTypes.oneOf(['repeat_daily']).isRequired,
|
|
43
|
+
interval: PropTypes.number.isRequired,
|
|
1383
44
|
});
|
|
1384
45
|
|
|
1385
|
-
T['io.flow.
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1389
|
-
organization_id_prefix: PropTypes.string,
|
|
46
|
+
T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
47
|
+
discriminator: PropTypes.oneOf(['repeat_hourly']).isRequired,
|
|
48
|
+
interval: PropTypes.number.isRequired,
|
|
1390
49
|
});
|
|
1391
50
|
|
|
1392
|
-
T['io.flow.common.v0.models.
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
51
|
+
T['io.flow.common.v0.models.logo_image_svg'] = PropTypes.exact({
|
|
52
|
+
discriminator: PropTypes.oneOf(['svg']).isRequired,
|
|
53
|
+
url: PropTypes.string.isRequired,
|
|
1396
54
|
});
|
|
1397
55
|
|
|
1398
|
-
T['io.flow.common.v0.
|
|
1399
|
-
|
|
1400
|
-
|
|
56
|
+
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
57
|
+
T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
|
|
58
|
+
T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
|
|
59
|
+
T['io.flow.common.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
|
|
60
|
+
T['io.flow.common.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
|
|
61
|
+
|
|
62
|
+
T['io.flow.common.v0.models.rounding'] = PropTypes.exact({
|
|
63
|
+
type: T['io.flow.common.v0.enums.rounding_type'].isRequired,
|
|
64
|
+
method: T['io.flow.common.v0.enums.rounding_method'].isRequired,
|
|
65
|
+
value: PropTypes.number.isRequired,
|
|
1401
66
|
});
|
|
1402
67
|
|
|
1403
|
-
T['io.flow.common.v0.
|
|
1404
|
-
|
|
1405
|
-
|
|
68
|
+
T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
|
|
69
|
+
'sunday',
|
|
70
|
+
'monday',
|
|
71
|
+
'tuesday',
|
|
72
|
+
'wednesday',
|
|
73
|
+
'thursday',
|
|
74
|
+
'friday',
|
|
75
|
+
'saturday',
|
|
76
|
+
]);
|
|
77
|
+
|
|
78
|
+
T['io.flow.common.v0.models.repeat_weekly'] = PropTypes.exact({
|
|
79
|
+
discriminator: PropTypes.oneOf(['repeat_weekly']).isRequired,
|
|
80
|
+
interval: PropTypes.number.isRequired,
|
|
81
|
+
days_of_week: PropTypes.arrayOf(T['io.flow.common.v0.enums.day_of_week']).isRequired,
|
|
1406
82
|
});
|
|
1407
83
|
|
|
1408
|
-
T['io.flow.
|
|
84
|
+
T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
|
|
85
|
+
T['io.flow.common.v0.models.repeat_hourly'],
|
|
86
|
+
T['io.flow.common.v0.models.repeat_daily'],
|
|
87
|
+
T['io.flow.common.v0.models.repeat_weekly'],
|
|
88
|
+
T['io.flow.common.v0.models.repeat_monthly'],
|
|
89
|
+
]);
|
|
90
|
+
|
|
91
|
+
T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
|
|
1409
92
|
id: PropTypes.string.isRequired,
|
|
1410
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
1411
93
|
key: PropTypes.string.isRequired,
|
|
1412
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
1413
|
-
name: PropTypes.string.isRequired,
|
|
1414
|
-
slug: PropTypes.string,
|
|
1415
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
1416
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1417
94
|
});
|
|
1418
95
|
|
|
1419
|
-
T['io.flow.common.v0.
|
|
1420
|
-
|
|
1421
|
-
id: PropTypes.string.isRequired,
|
|
1422
|
-
name: PropTypes.string.isRequired,
|
|
1423
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1424
|
-
parent: T['io.flow.common.v0.models.organization_reference'],
|
|
1425
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'],
|
|
1426
|
-
created_at: PropTypes.string,
|
|
1427
|
-
status: T['io.flow.common.v0.enums.organization_status'],
|
|
1428
|
-
type: T['io.flow.common.v0.enums.organization_type'],
|
|
1429
|
-
});
|
|
96
|
+
T['io.flow.common.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
|
|
97
|
+
T['io.flow.common.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
|
|
1430
98
|
|
|
1431
|
-
T['io.flow.
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
1435
|
-
organization: T['io.flow.common.v0.models.organization'].isRequired,
|
|
99
|
+
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
100
|
+
number: PropTypes.string.isRequired,
|
|
101
|
+
country: PropTypes.string.isRequired,
|
|
1436
102
|
});
|
|
1437
103
|
|
|
1438
|
-
T['io.flow.common.v0.unions.expandable_organization'] = PropTypes.oneOfType([
|
|
1439
|
-
T['io.flow.common.v0.models.organization'],
|
|
1440
|
-
T['io.flow.common.v0.models.organization_reference'],
|
|
1441
|
-
]);
|
|
1442
|
-
|
|
1443
104
|
T['io.flow.common.v0.enums.margin_type'] = PropTypes.oneOf(['fixed', 'percent']);
|
|
1444
105
|
|
|
1445
106
|
T['io.flow.common.v0.models.margin'] = PropTypes.exact({
|
|
@@ -1490,27 +151,11 @@ T['io.flow.common.v0.models.input_form_specification'] = PropTypes.exact({
|
|
|
1490
151
|
|
|
1491
152
|
T['io.flow.common.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
|
|
1492
153
|
|
|
1493
|
-
T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
|
|
1494
|
-
currency: PropTypes.string.isRequired,
|
|
1495
|
-
name: PropTypes.string.isRequired,
|
|
1496
|
-
includes: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
|
|
1497
|
-
status: T['io.flow.common.v0.enums.price_book_status'],
|
|
1498
|
-
});
|
|
1499
|
-
|
|
1500
154
|
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
1501
155
|
key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
|
|
1502
156
|
label: PropTypes.string.isRequired,
|
|
1503
157
|
});
|
|
1504
158
|
|
|
1505
|
-
T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
|
|
1506
|
-
id: PropTypes.string.isRequired,
|
|
1507
|
-
key: PropTypes.string.isRequired,
|
|
1508
|
-
currency: PropTypes.string.isRequired,
|
|
1509
|
-
name: PropTypes.string.isRequired,
|
|
1510
|
-
includes: T['io.flow.common.v0.models.included_levies'].isRequired,
|
|
1511
|
-
status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
|
|
1512
|
-
});
|
|
1513
|
-
|
|
1514
159
|
T['io.flow.common.v0.models.datetime_range'] = PropTypes.exact({
|
|
1515
160
|
from: PropTypes.string.isRequired,
|
|
1516
161
|
to: PropTypes.string.isRequired,
|
|
@@ -1540,28 +185,8 @@ T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
|
1540
185
|
issuing_country: PropTypes.string,
|
|
1541
186
|
});
|
|
1542
187
|
|
|
1543
|
-
T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
|
|
1544
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
1545
|
-
name: PropTypes.string.isRequired,
|
|
1546
|
-
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
1547
|
-
identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
|
|
1548
|
-
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1549
|
-
city: PropTypes.string.isRequired,
|
|
1550
|
-
province: PropTypes.string,
|
|
1551
|
-
postal: PropTypes.string,
|
|
1552
|
-
country: PropTypes.string.isRequired,
|
|
1553
|
-
phone: PropTypes.string,
|
|
1554
|
-
email: PropTypes.string,
|
|
1555
|
-
});
|
|
1556
|
-
|
|
1557
188
|
T['io.flow.common.v0.enums.unit_of_time'] = PropTypes.oneOf(['year', 'month', 'week', 'day', 'hour', 'minute']);
|
|
1558
189
|
|
|
1559
|
-
T['io.flow.fulfillment.v0.models.estimated_window'] = PropTypes.exact({
|
|
1560
|
-
from: PropTypes.number.isRequired,
|
|
1561
|
-
to: PropTypes.number.isRequired,
|
|
1562
|
-
unit: T['io.flow.common.v0.enums.unit_of_time'].isRequired,
|
|
1563
|
-
});
|
|
1564
|
-
|
|
1565
190
|
T['io.flow.common.v0.models.duration'] = PropTypes.exact({
|
|
1566
191
|
unit: T['io.flow.common.v0.enums.unit_of_time'].isRequired,
|
|
1567
192
|
value: PropTypes.number.isRequired,
|
|
@@ -1572,80 +197,6 @@ T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
|
1572
197
|
currency: PropTypes.string.isRequired,
|
|
1573
198
|
});
|
|
1574
199
|
|
|
1575
|
-
T['io.flow.fulfillment.v0.models.outbound_carton_fee'] = PropTypes.exact({
|
|
1576
|
-
discriminator: PropTypes.oneOf(['outbound_carton_fee']).isRequired,
|
|
1577
|
-
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
1578
|
-
});
|
|
1579
|
-
|
|
1580
|
-
T['io.flow.fulfillment.v0.models.inbound_carton_fee'] = PropTypes.exact({
|
|
1581
|
-
discriminator: PropTypes.oneOf(['inbound_carton_fee']).isRequired,
|
|
1582
|
-
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
1583
|
-
});
|
|
1584
|
-
|
|
1585
|
-
T['io.flow.fulfillment.v0.models.flat_rate_form'] = PropTypes.exact({
|
|
1586
|
-
discriminator: PropTypes.oneOf(['flat_rate_form']).isRequired,
|
|
1587
|
-
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
1588
|
-
zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
|
|
1589
|
-
});
|
|
1590
|
-
|
|
1591
|
-
T['io.flow.fulfillment.v0.models.commercial_invoice_fee'] = PropTypes.exact({
|
|
1592
|
-
discriminator: PropTypes.oneOf(['commercial_invoice_fee']).isRequired,
|
|
1593
|
-
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
1594
|
-
});
|
|
1595
|
-
|
|
1596
|
-
T['io.flow.fulfillment.v0.unions.partner_center_fee'] = PropTypes.oneOfType([
|
|
1597
|
-
T['io.flow.fulfillment.v0.models.commercial_invoice_fee'],
|
|
1598
|
-
T['io.flow.fulfillment.v0.models.inbound_carton_fee'],
|
|
1599
|
-
T['io.flow.fulfillment.v0.models.outbound_carton_fee'],
|
|
1600
|
-
]);
|
|
1601
|
-
|
|
1602
|
-
T['io.flow.fulfillment.v0.models.partner_center_form'] = PropTypes.exact({
|
|
1603
|
-
partner_id: PropTypes.string.isRequired,
|
|
1604
|
-
number: PropTypes.string,
|
|
1605
|
-
fees: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.partner_center_fee']),
|
|
1606
|
-
});
|
|
1607
|
-
|
|
1608
|
-
T['io.flow.fulfillment.v0.models.partner_center'] = PropTypes.exact({
|
|
1609
|
-
partner_reference: T['io.flow.common.v0.models.partner_reference'].isRequired,
|
|
1610
|
-
number: PropTypes.string,
|
|
1611
|
-
fees: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.partner_center_fee']),
|
|
1612
|
-
});
|
|
1613
|
-
|
|
1614
|
-
T['io.flow.fulfillment.v0.models.amount_margin_form'] = PropTypes.exact({
|
|
1615
|
-
discriminator: PropTypes.oneOf(['amount_margin_form']).isRequired,
|
|
1616
|
-
margin: T['io.flow.common.v0.models.money'].isRequired,
|
|
1617
|
-
});
|
|
1618
|
-
|
|
1619
|
-
T['io.flow.fulfillment.v0.unions.tier_rule_outcome_form'] = PropTypes.oneOfType([
|
|
1620
|
-
T['io.flow.fulfillment.v0.models.amount_margin_form'],
|
|
1621
|
-
T['io.flow.fulfillment.v0.models.flat_rate_form'],
|
|
1622
|
-
T['io.flow.fulfillment.v0.models.at_cost'],
|
|
1623
|
-
T['io.flow.fulfillment.v0.models.percent_margin'],
|
|
1624
|
-
]);
|
|
1625
|
-
|
|
1626
|
-
T['io.flow.fulfillment.v0.models.tier_rule_form'] = PropTypes.exact({
|
|
1627
|
-
position: PropTypes.number,
|
|
1628
|
-
query: PropTypes.string.isRequired,
|
|
1629
|
-
outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome_form'].isRequired,
|
|
1630
|
-
});
|
|
1631
|
-
|
|
1632
|
-
T['io.flow.fulfillment.v0.models.tier_form'] = PropTypes.exact({
|
|
1633
|
-
currency: PropTypes.string.isRequired,
|
|
1634
|
-
integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
|
|
1635
|
-
name: PropTypes.string.isRequired,
|
|
1636
|
-
message: PropTypes.string,
|
|
1637
|
-
rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule_form']).isRequired,
|
|
1638
|
-
services: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1639
|
-
strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
|
|
1640
|
-
visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
|
|
1641
|
-
description: PropTypes.string,
|
|
1642
|
-
direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
|
|
1643
|
-
display: T['io.flow.fulfillment.v0.models.tier_display_form'],
|
|
1644
|
-
shipping_lane: PropTypes.string.isRequired,
|
|
1645
|
-
surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
|
|
1646
|
-
settings: T['io.flow.fulfillment.v0.models.tier_settings'],
|
|
1647
|
-
});
|
|
1648
|
-
|
|
1649
200
|
T['io.flow.common.v0.models.price_source_provided'] = PropTypes.exact({
|
|
1650
201
|
discriminator: PropTypes.oneOf(['provided']).isRequired,
|
|
1651
202
|
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -1675,32 +226,12 @@ T['io.flow.common.v0.models.money_with_optional_base'] = PropTypes.exact({
|
|
|
1675
226
|
base: T['io.flow.common.v0.models.money'],
|
|
1676
227
|
});
|
|
1677
228
|
|
|
1678
|
-
T['io.flow.fulfillment.v0.models.delivery_item'] = PropTypes.exact({
|
|
1679
|
-
id: PropTypes.string,
|
|
1680
|
-
number: PropTypes.string.isRequired,
|
|
1681
|
-
quantity: PropTypes.number.isRequired,
|
|
1682
|
-
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
1683
|
-
price: T['io.flow.common.v0.models.money_with_optional_base'],
|
|
1684
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1685
|
-
center: PropTypes.string,
|
|
1686
|
-
line_number: PropTypes.number,
|
|
1687
|
-
});
|
|
1688
|
-
|
|
1689
229
|
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
1690
230
|
currency: PropTypes.string.isRequired,
|
|
1691
231
|
amount: PropTypes.number.isRequired,
|
|
1692
232
|
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
1693
233
|
});
|
|
1694
234
|
|
|
1695
|
-
T['io.flow.fulfillment.v0.models.quote_line_item_form'] = PropTypes.exact({
|
|
1696
|
-
number: PropTypes.string.isRequired,
|
|
1697
|
-
quantity: PropTypes.number.isRequired,
|
|
1698
|
-
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
1699
|
-
price: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
1700
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1701
|
-
center: PropTypes.string,
|
|
1702
|
-
});
|
|
1703
|
-
|
|
1704
235
|
T['io.flow.common.v0.models.line_item'] = PropTypes.exact({
|
|
1705
236
|
number: PropTypes.string.isRequired,
|
|
1706
237
|
quantity: PropTypes.number.isRequired,
|
|
@@ -1748,18 +279,6 @@ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
|
1748
279
|
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
1749
280
|
});
|
|
1750
281
|
|
|
1751
|
-
T['io.flow.fulfillment.v0.models.delivery_summary'] = PropTypes.exact({
|
|
1752
|
-
id: PropTypes.string.isRequired,
|
|
1753
|
-
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
1754
|
-
});
|
|
1755
|
-
|
|
1756
|
-
T['io.flow.fulfillment.v0.models.delivery_version'] = PropTypes.exact({
|
|
1757
|
-
id: PropTypes.string.isRequired,
|
|
1758
|
-
timestamp: PropTypes.string.isRequired,
|
|
1759
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
1760
|
-
delivery: T['io.flow.fulfillment.v0.models.delivery_summary'].isRequired,
|
|
1761
|
-
});
|
|
1762
|
-
|
|
1763
282
|
T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
1764
283
|
'millimeter',
|
|
1765
284
|
'centimeter',
|
|
@@ -1782,11 +301,6 @@ T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
|
1782
301
|
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
1783
302
|
});
|
|
1784
303
|
|
|
1785
|
-
T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
|
|
1786
|
-
gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
1787
|
-
dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
1788
|
-
});
|
|
1789
|
-
|
|
1790
304
|
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
1791
305
|
depth: T['io.flow.common.v0.models.measurement'],
|
|
1792
306
|
diameter: T['io.flow.common.v0.models.measurement'],
|
|
@@ -1800,67 +314,155 @@ T['io.flow.common.v0.models.dimensions'] = PropTypes.exact({
|
|
|
1800
314
|
packaging: T['io.flow.common.v0.models.dimension'],
|
|
1801
315
|
});
|
|
1802
316
|
|
|
1803
|
-
T['io.flow.
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
317
|
+
T['io.flow.common.v0.models.name'] = PropTypes.exact({
|
|
318
|
+
first: PropTypes.string,
|
|
319
|
+
last: PropTypes.string,
|
|
320
|
+
});
|
|
321
|
+
|
|
322
|
+
T['io.flow.common.v0.models.contact'] = PropTypes.exact({
|
|
323
|
+
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
324
|
+
company: PropTypes.string,
|
|
325
|
+
email: PropTypes.string,
|
|
326
|
+
phone: PropTypes.string,
|
|
327
|
+
});
|
|
328
|
+
|
|
329
|
+
T['io.flow.common.v0.models.billing_address'] = PropTypes.exact({
|
|
330
|
+
name: T['io.flow.common.v0.models.name'],
|
|
331
|
+
streets: PropTypes.arrayOf(PropTypes.string),
|
|
332
|
+
city: PropTypes.string,
|
|
333
|
+
province: PropTypes.string,
|
|
334
|
+
postal: PropTypes.string,
|
|
335
|
+
country: PropTypes.string,
|
|
336
|
+
company: PropTypes.string,
|
|
337
|
+
});
|
|
338
|
+
|
|
339
|
+
T['io.flow.common.v0.models.customer_invoice'] = PropTypes.exact({
|
|
340
|
+
address: T['io.flow.common.v0.models.billing_address'],
|
|
341
|
+
});
|
|
342
|
+
|
|
343
|
+
T['io.flow.common.v0.models.order_customer_form'] = PropTypes.exact({
|
|
344
|
+
name: T['io.flow.common.v0.models.name'],
|
|
345
|
+
number: PropTypes.string,
|
|
346
|
+
phone: PropTypes.string,
|
|
347
|
+
email: PropTypes.string,
|
|
348
|
+
address: T['io.flow.common.v0.models.billing_address'],
|
|
349
|
+
invoice: T['io.flow.common.v0.models.customer_invoice'],
|
|
350
|
+
});
|
|
351
|
+
|
|
352
|
+
T['io.flow.common.v0.models.order_customer'] = PropTypes.exact({
|
|
353
|
+
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
354
|
+
number: PropTypes.string,
|
|
355
|
+
phone: PropTypes.string,
|
|
356
|
+
email: PropTypes.string,
|
|
357
|
+
address: T['io.flow.common.v0.models.billing_address'],
|
|
358
|
+
invoice: T['io.flow.common.v0.models.customer_invoice'],
|
|
359
|
+
});
|
|
360
|
+
|
|
361
|
+
T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
|
|
362
|
+
country: PropTypes.string.isRequired,
|
|
363
|
+
base_currency: PropTypes.string.isRequired,
|
|
364
|
+
language: PropTypes.string.isRequired,
|
|
365
|
+
locale: PropTypes.string.isRequired,
|
|
366
|
+
timezone: PropTypes.string.isRequired,
|
|
367
|
+
});
|
|
368
|
+
|
|
369
|
+
T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
370
|
+
name: PropTypes.string,
|
|
371
|
+
slug: PropTypes.string,
|
|
372
|
+
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
1810
373
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1811
|
-
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
1812
|
-
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
1813
|
-
deleted_at: PropTypes.string,
|
|
1814
374
|
});
|
|
1815
375
|
|
|
1816
|
-
T['io.flow.
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
price: PropTypes.number.isRequired,
|
|
1822
|
-
categories: PropTypes.arrayOf(PropTypes.string),
|
|
1823
|
-
description: PropTypes.string,
|
|
376
|
+
T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
|
|
377
|
+
key: PropTypes.string.isRequired,
|
|
378
|
+
name: PropTypes.string,
|
|
379
|
+
slug: PropTypes.string,
|
|
380
|
+
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
1824
381
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1825
|
-
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
1826
|
-
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
1827
|
-
deleted_at: PropTypes.string,
|
|
1828
382
|
});
|
|
1829
383
|
|
|
1830
|
-
T['io.flow.
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
number: PropTypes.string,
|
|
384
|
+
T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
|
|
385
|
+
discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
|
|
386
|
+
id: PropTypes.string.isRequired,
|
|
1834
387
|
});
|
|
1835
388
|
|
|
1836
|
-
T['io.flow.common.v0.models.
|
|
1837
|
-
|
|
1838
|
-
|
|
389
|
+
T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
|
|
390
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
391
|
+
name: PropTypes.string.isRequired,
|
|
392
|
+
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
393
|
+
identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
|
|
394
|
+
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
395
|
+
city: PropTypes.string.isRequired,
|
|
396
|
+
province: PropTypes.string,
|
|
397
|
+
postal: PropTypes.string,
|
|
398
|
+
country: PropTypes.string.isRequired,
|
|
399
|
+
phone: PropTypes.string,
|
|
400
|
+
email: PropTypes.string,
|
|
1839
401
|
});
|
|
1840
402
|
|
|
1841
|
-
T['io.flow.
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
403
|
+
T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
|
|
404
|
+
|
|
405
|
+
T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
406
|
+
code: T['io.flow.error.v0.enums.generic_error_code'].isRequired,
|
|
407
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1847
408
|
});
|
|
1848
409
|
|
|
1849
|
-
T['io.flow.
|
|
410
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
|
|
411
|
+
|
|
412
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
|
|
1850
413
|
id: PropTypes.string.isRequired,
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
414
|
+
organization_id: PropTypes.string.isRequired,
|
|
415
|
+
channel_id: PropTypes.string.isRequired,
|
|
416
|
+
payment_request_id: PropTypes.string.isRequired,
|
|
417
|
+
code: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'].isRequired,
|
|
418
|
+
reason: PropTypes.string.isRequired,
|
|
419
|
+
});
|
|
420
|
+
|
|
421
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
|
|
422
|
+
'unsupported_origin_country',
|
|
423
|
+
'unsupported_destination_country',
|
|
424
|
+
'domestic_order',
|
|
425
|
+
'order_contains_gift_card',
|
|
426
|
+
'order_contains_restricted_goods',
|
|
427
|
+
'missing_order_information',
|
|
428
|
+
'missing_classification_information',
|
|
429
|
+
'unsupported_payment_information',
|
|
430
|
+
'unsupported_shop_currency',
|
|
431
|
+
'unsupported_free_order',
|
|
432
|
+
'extracting_distribution_info_failed',
|
|
433
|
+
'shipping_estimation_failed',
|
|
434
|
+
'payment_authorization_failed',
|
|
435
|
+
'unsupported_subsidized_order',
|
|
436
|
+
'unsupported_virtual_goods',
|
|
437
|
+
'non_matching_currencies',
|
|
438
|
+
'unsupported_order_edit',
|
|
439
|
+
'order_missing',
|
|
440
|
+
]);
|
|
441
|
+
|
|
442
|
+
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
443
|
+
|
|
444
|
+
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
445
|
+
edited_at: PropTypes.string.isRequired,
|
|
446
|
+
});
|
|
447
|
+
|
|
448
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
|
|
449
|
+
'cx_team',
|
|
450
|
+
'core_team',
|
|
451
|
+
'core_team_investigate',
|
|
452
|
+
'mex_team',
|
|
453
|
+
'payments_team',
|
|
454
|
+
'tc_team',
|
|
455
|
+
'logistics_team',
|
|
456
|
+
]);
|
|
457
|
+
|
|
458
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
459
|
+
description: PropTypes.string.isRequired,
|
|
460
|
+
rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
|
|
1857
461
|
});
|
|
1858
462
|
|
|
1859
|
-
T['io.flow.
|
|
463
|
+
T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
|
|
464
|
+
discriminator: PropTypes.oneOf(['user_reference']).isRequired,
|
|
1860
465
|
id: PropTypes.string.isRequired,
|
|
1861
|
-
timestamp: PropTypes.string.isRequired,
|
|
1862
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
1863
|
-
invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
|
|
1864
466
|
});
|
|
1865
467
|
|
|
1866
468
|
T['io.flow.common.v0.models.user'] = PropTypes.exact({
|
|
@@ -1871,163 +473,96 @@ T['io.flow.common.v0.models.user'] = PropTypes.exact({
|
|
|
1871
473
|
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
1872
474
|
});
|
|
1873
475
|
|
|
1874
|
-
T['io.flow.common.v0.
|
|
1875
|
-
T['io.flow.common.v0.models.user'],
|
|
1876
|
-
T['io.flow.common.v0.models.user_reference'],
|
|
1877
|
-
]);
|
|
1878
|
-
|
|
1879
|
-
T['io.flow.permission.v0.models.permission_check'] = PropTypes.exact({
|
|
1880
|
-
authentication_technique: T['io.flow.permission.v0.enums.authentication_technique'].isRequired,
|
|
1881
|
-
user: T['io.flow.common.v0.unions.expandable_user'],
|
|
1882
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
|
|
1883
|
-
behaviors: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_behavior']).isRequired,
|
|
1884
|
-
routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.permitted_route']).isRequired,
|
|
1885
|
-
});
|
|
476
|
+
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
1886
477
|
|
|
1887
|
-
T['io.flow.channel.internal.v0.models.
|
|
1888
|
-
id: PropTypes.string.isRequired,
|
|
1889
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
1890
|
-
user: T['io.flow.common.v0.unions.expandable_user'].isRequired,
|
|
478
|
+
T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
1891
479
|
role: T['io.flow.common.v0.enums.role'],
|
|
1892
480
|
});
|
|
1893
481
|
|
|
1894
|
-
T['io.flow.
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
user: T['io.flow.common.v0.unions.expandable_user'].isRequired,
|
|
482
|
+
T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
483
|
+
channel_id: PropTypes.string.isRequired,
|
|
484
|
+
user_id: PropTypes.string.isRequired,
|
|
1898
485
|
role: T['io.flow.common.v0.enums.role'],
|
|
1899
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']).isRequired,
|
|
1900
|
-
});
|
|
1901
|
-
|
|
1902
|
-
T['io.flow.organization.v0.models.membership_version'] = PropTypes.exact({
|
|
1903
|
-
id: PropTypes.string.isRequired,
|
|
1904
|
-
timestamp: PropTypes.string.isRequired,
|
|
1905
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
1906
|
-
membership: T['io.flow.organization.v0.models.membership'].isRequired,
|
|
1907
|
-
});
|
|
1908
|
-
|
|
1909
|
-
T['io.flow.common.v0.models.contact'] = PropTypes.exact({
|
|
1910
|
-
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
1911
|
-
company: PropTypes.string,
|
|
1912
|
-
email: PropTypes.string,
|
|
1913
|
-
phone: PropTypes.string,
|
|
1914
486
|
});
|
|
1915
487
|
|
|
1916
|
-
T['io.flow.
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
center_reference: T['io.flow.fulfillment.v0.models.center_reference'],
|
|
1921
|
-
service: T['io.flow.fulfillment.v0.models.service_summary'],
|
|
1922
|
-
});
|
|
488
|
+
T['io.flow.common.v0.unions.expandable_user'] = PropTypes.oneOfType([
|
|
489
|
+
T['io.flow.common.v0.models.user'],
|
|
490
|
+
T['io.flow.common.v0.models.user_reference'],
|
|
491
|
+
]);
|
|
1923
492
|
|
|
1924
|
-
T['io.flow.
|
|
493
|
+
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
1925
494
|
id: PropTypes.string.isRequired,
|
|
1926
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
1927
495
|
});
|
|
1928
496
|
|
|
1929
|
-
T['io.flow.
|
|
497
|
+
T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
1930
498
|
id: PropTypes.string.isRequired,
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
499
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
500
|
+
key: PropTypes.string.isRequired,
|
|
501
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
502
|
+
name: PropTypes.string.isRequired,
|
|
503
|
+
slug: PropTypes.string,
|
|
504
|
+
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
505
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1934
506
|
});
|
|
1935
507
|
|
|
1936
|
-
T['io.flow.
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']),
|
|
1942
|
-
direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
|
|
508
|
+
T['io.flow.channel.internal.v0.models.channel_membership'] = PropTypes.exact({
|
|
509
|
+
id: PropTypes.string.isRequired,
|
|
510
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
511
|
+
user: T['io.flow.common.v0.unions.expandable_user'].isRequired,
|
|
512
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
1943
513
|
});
|
|
1944
514
|
|
|
1945
|
-
T['io.flow.
|
|
1946
|
-
delivery: PropTypes.string.isRequired,
|
|
1947
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
|
|
1948
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
1949
|
-
});
|
|
515
|
+
T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
|
|
1950
516
|
|
|
1951
|
-
T['io.flow.
|
|
517
|
+
T['io.flow.common.v0.models.organization_summary'] = PropTypes.exact({
|
|
1952
518
|
id: PropTypes.string.isRequired,
|
|
1953
|
-
key: PropTypes.string.isRequired,
|
|
1954
|
-
address: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
1955
|
-
});
|
|
1956
|
-
|
|
1957
|
-
T['io.flow.fulfillment.v0.models.center_form'] = PropTypes.exact({
|
|
1958
|
-
address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
1959
|
-
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
1960
519
|
name: PropTypes.string.isRequired,
|
|
1961
|
-
|
|
1962
|
-
schedule: T['io.flow.common.v0.models.schedule'].isRequired,
|
|
1963
|
-
timezone: PropTypes.string,
|
|
1964
|
-
key: PropTypes.string,
|
|
1965
|
-
capabilities: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.center_capability']),
|
|
1966
|
-
partner_center_form: T['io.flow.fulfillment.v0.models.partner_center_form'],
|
|
520
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1967
521
|
});
|
|
1968
522
|
|
|
1969
|
-
T['io.flow.
|
|
1970
|
-
discriminator: PropTypes.oneOf(['
|
|
523
|
+
T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
524
|
+
discriminator: PropTypes.oneOf(['organization']).isRequired,
|
|
1971
525
|
id: PropTypes.string.isRequired,
|
|
1972
|
-
key: PropTypes.string.isRequired,
|
|
1973
|
-
address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
1974
|
-
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
1975
526
|
name: PropTypes.string.isRequired,
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
527
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
528
|
+
parent: T['io.flow.common.v0.models.organization_reference'],
|
|
529
|
+
defaults: T['io.flow.common.v0.models.organization_defaults'],
|
|
530
|
+
created_at: PropTypes.string,
|
|
531
|
+
status: T['io.flow.common.v0.enums.organization_status'],
|
|
532
|
+
type: T['io.flow.common.v0.enums.organization_type'],
|
|
1981
533
|
});
|
|
1982
534
|
|
|
1983
|
-
T['io.flow.
|
|
1984
|
-
T['io.flow.
|
|
1985
|
-
T['io.flow.
|
|
535
|
+
T['io.flow.common.v0.unions.expandable_organization'] = PropTypes.oneOfType([
|
|
536
|
+
T['io.flow.common.v0.models.organization'],
|
|
537
|
+
T['io.flow.common.v0.models.organization_reference'],
|
|
1986
538
|
]);
|
|
1987
539
|
|
|
1988
|
-
T['io.flow.
|
|
1989
|
-
shipping_lane_id: PropTypes.string.isRequired,
|
|
1990
|
-
region: PropTypes.string.isRequired,
|
|
1991
|
-
centers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.expandable_center']).isRequired,
|
|
1992
|
-
});
|
|
1993
|
-
|
|
1994
|
-
T['io.flow.fulfillment.v0.models.center_version'] = PropTypes.exact({
|
|
540
|
+
T['io.flow.channel.v0.models.channel'] = PropTypes.exact({
|
|
1995
541
|
id: PropTypes.string.isRequired,
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
542
|
+
name: PropTypes.string.isRequired,
|
|
543
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
544
|
+
organization_id_prefix: PropTypes.string,
|
|
1999
545
|
});
|
|
2000
546
|
|
|
2001
|
-
T['io.flow.
|
|
2002
|
-
name:
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
province: PropTypes.string,
|
|
2006
|
-
postal: PropTypes.string,
|
|
2007
|
-
country: PropTypes.string,
|
|
2008
|
-
company: PropTypes.string,
|
|
547
|
+
T['io.flow.channel.internal.v0.models.channel_form'] = PropTypes.exact({
|
|
548
|
+
name: PropTypes.string.isRequired,
|
|
549
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
550
|
+
organization_id_prefix: PropTypes.string,
|
|
2009
551
|
});
|
|
2010
552
|
|
|
2011
|
-
T['io.flow.
|
|
2012
|
-
address: T['io.flow.common.v0.models.billing_address'],
|
|
2013
|
-
});
|
|
553
|
+
T['io.flow.channel.v0.enums.channel_currency_capability'] = PropTypes.oneOf(['payment_authorizations', 'settlement_currency']);
|
|
2014
554
|
|
|
2015
|
-
T['io.flow.
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
address: T['io.flow.common.v0.models.billing_address'],
|
|
2021
|
-
invoice: T['io.flow.common.v0.models.customer_invoice'],
|
|
555
|
+
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
556
|
+
id: PropTypes.string.isRequired,
|
|
557
|
+
currency: PropTypes.string.isRequired,
|
|
558
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
559
|
+
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
2022
560
|
});
|
|
2023
561
|
|
|
2024
|
-
T['io.flow.
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
email: PropTypes.string,
|
|
2029
|
-
address: T['io.flow.common.v0.models.billing_address'],
|
|
2030
|
-
invoice: T['io.flow.common.v0.models.customer_invoice'],
|
|
562
|
+
T['io.flow.channel.internal.v0.models.channel_currency_form'] = PropTypes.exact({
|
|
563
|
+
currency: PropTypes.string.isRequired,
|
|
564
|
+
channel_id: PropTypes.string.isRequired,
|
|
565
|
+
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
2031
566
|
});
|
|
2032
567
|
|
|
2033
568
|
T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
|
|
@@ -2698,23 +1233,13 @@ T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
|
2698
1233
|
full_name: PropTypes.string.isRequired,
|
|
2699
1234
|
});
|
|
2700
1235
|
|
|
2701
|
-
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
2702
|
-
shop_id: PropTypes.string.isRequired,
|
|
2703
|
-
product_id: PropTypes.string,
|
|
2704
|
-
name: PropTypes.string.isRequired,
|
|
2705
|
-
price: T['io.flow.sellability.v0.models.product_sellability_price'].isRequired,
|
|
2706
|
-
description: PropTypes.string.isRequired,
|
|
2707
|
-
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
2708
|
-
status: T['io.flow.sellability.v0.enums.sellability_request_status'],
|
|
2709
|
-
dry_run: PropTypes.bool,
|
|
2710
|
-
});
|
|
2711
|
-
|
|
2712
1236
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
2713
1237
|
organization_id: PropTypes.string.isRequired,
|
|
2714
1238
|
number: PropTypes.string.isRequired,
|
|
2715
1239
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
2716
1240
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
2717
1241
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1242
|
+
highest_value_item_number: PropTypes.string,
|
|
2718
1243
|
updated_at: PropTypes.string.isRequired,
|
|
2719
1244
|
deleted_at: PropTypes.string,
|
|
2720
1245
|
});
|
|
@@ -2998,6 +1523,7 @@ T['io.flow.shopify.external.v0.models.graphql_product_image'] = PropTypes.exact(
|
|
|
2998
1523
|
T['io.flow.shopify.external.v0.models.graphql_metaobject_field'] = PropTypes.exact({
|
|
2999
1524
|
key: PropTypes.string.isRequired,
|
|
3000
1525
|
value: PropTypes.string,
|
|
1526
|
+
type: PropTypes.string,
|
|
3001
1527
|
});
|
|
3002
1528
|
|
|
3003
1529
|
T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
|
|
@@ -4940,54 +3466,15 @@ T['io.flow.google.pay.v0.models.payment_data'] = PropTypes.exact({
|
|
|
4940
3466
|
T['io.flow.google.pay.v0.enums.billing_address_format'] = PropTypes.oneOf(['MIN', 'FULL']);
|
|
4941
3467
|
|
|
4942
3468
|
T['io.flow.google.pay.v0.models.billing_address_parameters'] = PropTypes.exact({
|
|
4943
|
-
format: T['io.flow.google.pay.v0.enums.billing_address_format'],
|
|
4944
|
-
phoneNumberRequired: PropTypes.bool,
|
|
4945
|
-
});
|
|
4946
|
-
|
|
4947
|
-
T['io.flow.google.pay.v0.models.card_payment_method_parameters'] = PropTypes.exact({
|
|
4948
|
-
allowedAuthMethods: PropTypes.arrayOf(T['io.flow.google.pay.v0.enums.auth_method']).isRequired,
|
|
4949
|
-
allowedCardNetworks: PropTypes.arrayOf(T['io.flow.google.pay.v0.enums.card_network']).isRequired,
|
|
4950
|
-
billingAddressRequired: PropTypes.bool,
|
|
4951
|
-
billingAddressParameters: T['io.flow.google.pay.v0.models.billing_address_parameters'],
|
|
4952
|
-
});
|
|
4953
|
-
|
|
4954
|
-
T['io.flow.inventory.v0.models.generic_reservation_error'] = PropTypes.exact({
|
|
4955
|
-
code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
|
|
4956
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4957
|
-
});
|
|
4958
|
-
|
|
4959
|
-
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'] = PropTypes.exact({
|
|
4960
|
-
code: PropTypes.oneOf(['external_api_timeout']).isRequired,
|
|
4961
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4962
|
-
});
|
|
4963
|
-
|
|
4964
|
-
T['io.flow.inventory.v0.models.no_inventory_reservation_error'] = PropTypes.exact({
|
|
4965
|
-
code: PropTypes.oneOf(['no_inventory']).isRequired,
|
|
4966
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4967
|
-
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.no_inventory_reservation_error_item']).isRequired,
|
|
4968
|
-
});
|
|
4969
|
-
|
|
4970
|
-
T['io.flow.inventory.v0.unions.reservation_error'] = PropTypes.oneOfType([
|
|
4971
|
-
T['io.flow.inventory.v0.models.no_inventory_reservation_error'],
|
|
4972
|
-
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'],
|
|
4973
|
-
T['io.flow.inventory.v0.models.generic_reservation_error'],
|
|
4974
|
-
]);
|
|
4975
|
-
|
|
4976
|
-
T['io.flow.inventory.v0.models.reservation_item'] = PropTypes.exact({
|
|
4977
|
-
item: T['io.flow.inventory.v0.models.reservation_item_reference'].isRequired,
|
|
4978
|
-
quantity: PropTypes.number.isRequired,
|
|
4979
|
-
});
|
|
4980
|
-
|
|
4981
|
-
T['io.flow.inventory.v0.models.reservation_order_reference'] = PropTypes.exact({
|
|
4982
|
-
number: PropTypes.string.isRequired,
|
|
3469
|
+
format: T['io.flow.google.pay.v0.enums.billing_address_format'],
|
|
3470
|
+
phoneNumberRequired: PropTypes.bool,
|
|
4983
3471
|
});
|
|
4984
3472
|
|
|
4985
|
-
T['io.flow.
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4990
|
-
reserved_until: PropTypes.string,
|
|
3473
|
+
T['io.flow.google.pay.v0.models.card_payment_method_parameters'] = PropTypes.exact({
|
|
3474
|
+
allowedAuthMethods: PropTypes.arrayOf(T['io.flow.google.pay.v0.enums.auth_method']).isRequired,
|
|
3475
|
+
allowedCardNetworks: PropTypes.arrayOf(T['io.flow.google.pay.v0.enums.card_network']).isRequired,
|
|
3476
|
+
billingAddressRequired: PropTypes.bool,
|
|
3477
|
+
billingAddressParameters: T['io.flow.google.pay.v0.models.billing_address_parameters'],
|
|
4991
3478
|
});
|
|
4992
3479
|
|
|
4993
3480
|
T['io.flow.v0.models.dispute_reference'] = PropTypes.exact({
|
|
@@ -5275,38 +3762,6 @@ T['io.flow.v0.models.shipping_configuration_deleted'] = PropTypes.exact({
|
|
|
5275
3762
|
id: PropTypes.string.isRequired,
|
|
5276
3763
|
});
|
|
5277
3764
|
|
|
5278
|
-
T['io.flow.v0.models.pricing_upserted'] = PropTypes.exact({
|
|
5279
|
-
discriminator: PropTypes.oneOf(['pricing_upserted']).isRequired,
|
|
5280
|
-
event_id: PropTypes.string.isRequired,
|
|
5281
|
-
timestamp: PropTypes.string.isRequired,
|
|
5282
|
-
organization: PropTypes.string.isRequired,
|
|
5283
|
-
experience_key: PropTypes.string.isRequired,
|
|
5284
|
-
vat: PropTypes.string.isRequired,
|
|
5285
|
-
duty: PropTypes.string.isRequired,
|
|
5286
|
-
rounding_type: PropTypes.string,
|
|
5287
|
-
rounding_method: PropTypes.string,
|
|
5288
|
-
rounding_value: PropTypes.number,
|
|
5289
|
-
});
|
|
5290
|
-
|
|
5291
|
-
T['io.flow.v0.models.pricing_deleted'] = PropTypes.exact({
|
|
5292
|
-
discriminator: PropTypes.oneOf(['pricing_deleted']).isRequired,
|
|
5293
|
-
event_id: PropTypes.string.isRequired,
|
|
5294
|
-
timestamp: PropTypes.string.isRequired,
|
|
5295
|
-
organization: PropTypes.string.isRequired,
|
|
5296
|
-
experience_key: PropTypes.string.isRequired,
|
|
5297
|
-
});
|
|
5298
|
-
|
|
5299
|
-
T['io.flow.v0.models.order_identifier_upserted_v2'] = PropTypes.exact({
|
|
5300
|
-
discriminator: PropTypes.oneOf(['order_identifier_upserted_v2']).isRequired,
|
|
5301
|
-
event_id: PropTypes.string.isRequired,
|
|
5302
|
-
timestamp: PropTypes.string.isRequired,
|
|
5303
|
-
organization: PropTypes.string.isRequired,
|
|
5304
|
-
id: PropTypes.string.isRequired,
|
|
5305
|
-
order_number: PropTypes.string.isRequired,
|
|
5306
|
-
identifier: PropTypes.string.isRequired,
|
|
5307
|
-
primary: PropTypes.bool.isRequired,
|
|
5308
|
-
});
|
|
5309
|
-
|
|
5310
3765
|
T['io.flow.v0.models.order_identifier_deleted_v2'] = PropTypes.exact({
|
|
5311
3766
|
discriminator: PropTypes.oneOf(['order_identifier_deleted_v2']).isRequired,
|
|
5312
3767
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5315,114 +3770,6 @@ T['io.flow.v0.models.order_identifier_deleted_v2'] = PropTypes.exact({
|
|
|
5315
3770
|
id: PropTypes.string.isRequired,
|
|
5316
3771
|
});
|
|
5317
3772
|
|
|
5318
|
-
T['io.flow.v0.models.order_identifier_upserted'] = PropTypes.exact({
|
|
5319
|
-
discriminator: PropTypes.oneOf(['order_identifier_upserted']).isRequired,
|
|
5320
|
-
event_id: PropTypes.string.isRequired,
|
|
5321
|
-
timestamp: PropTypes.string.isRequired,
|
|
5322
|
-
id: PropTypes.string.isRequired,
|
|
5323
|
-
organization: PropTypes.string.isRequired,
|
|
5324
|
-
number: PropTypes.string.isRequired,
|
|
5325
|
-
order_number: PropTypes.string.isRequired,
|
|
5326
|
-
});
|
|
5327
|
-
|
|
5328
|
-
T['io.flow.v0.models.order_identifier_deleted'] = PropTypes.exact({
|
|
5329
|
-
discriminator: PropTypes.oneOf(['order_identifier_deleted']).isRequired,
|
|
5330
|
-
event_id: PropTypes.string.isRequired,
|
|
5331
|
-
timestamp: PropTypes.string.isRequired,
|
|
5332
|
-
id: PropTypes.string.isRequired,
|
|
5333
|
-
});
|
|
5334
|
-
|
|
5335
|
-
T['io.flow.v0.models.order_deleted'] = PropTypes.exact({
|
|
5336
|
-
discriminator: PropTypes.oneOf(['order_deleted']).isRequired,
|
|
5337
|
-
event_id: PropTypes.string.isRequired,
|
|
5338
|
-
timestamp: PropTypes.string.isRequired,
|
|
5339
|
-
organization: PropTypes.string.isRequired,
|
|
5340
|
-
number: PropTypes.string.isRequired,
|
|
5341
|
-
});
|
|
5342
|
-
|
|
5343
|
-
T['io.flow.v0.models.label_format_upserted'] = PropTypes.exact({
|
|
5344
|
-
discriminator: PropTypes.oneOf(['label_format_upserted']).isRequired,
|
|
5345
|
-
event_id: PropTypes.string.isRequired,
|
|
5346
|
-
timestamp: PropTypes.string.isRequired,
|
|
5347
|
-
organization: PropTypes.string.isRequired,
|
|
5348
|
-
experience_key: PropTypes.string.isRequired,
|
|
5349
|
-
format: PropTypes.string.isRequired,
|
|
5350
|
-
});
|
|
5351
|
-
|
|
5352
|
-
T['io.flow.v0.models.label_format_deleted'] = PropTypes.exact({
|
|
5353
|
-
discriminator: PropTypes.oneOf(['label_format_deleted']).isRequired,
|
|
5354
|
-
event_id: PropTypes.string.isRequired,
|
|
5355
|
-
timestamp: PropTypes.string.isRequired,
|
|
5356
|
-
organization: PropTypes.string.isRequired,
|
|
5357
|
-
experience_key: PropTypes.string.isRequired,
|
|
5358
|
-
});
|
|
5359
|
-
|
|
5360
|
-
T['io.flow.v0.models.item_sales_margin_upserted'] = PropTypes.exact({
|
|
5361
|
-
discriminator: PropTypes.oneOf(['item_sales_margin_upserted']).isRequired,
|
|
5362
|
-
event_id: PropTypes.string.isRequired,
|
|
5363
|
-
timestamp: PropTypes.string.isRequired,
|
|
5364
|
-
item_sales_margin_id: PropTypes.string.isRequired,
|
|
5365
|
-
organization_id: PropTypes.string.isRequired,
|
|
5366
|
-
experience_key: PropTypes.string.isRequired,
|
|
5367
|
-
name: PropTypes.string.isRequired,
|
|
5368
|
-
q: PropTypes.string.isRequired,
|
|
5369
|
-
fixed: PropTypes.number.isRequired,
|
|
5370
|
-
percent: PropTypes.number.isRequired,
|
|
5371
|
-
position: PropTypes.number.isRequired,
|
|
5372
|
-
});
|
|
5373
|
-
|
|
5374
|
-
T['io.flow.v0.models.item_sales_margin_deleted'] = PropTypes.exact({
|
|
5375
|
-
discriminator: PropTypes.oneOf(['item_sales_margin_deleted']).isRequired,
|
|
5376
|
-
event_id: PropTypes.string.isRequired,
|
|
5377
|
-
timestamp: PropTypes.string.isRequired,
|
|
5378
|
-
item_sales_margin_id: PropTypes.string.isRequired,
|
|
5379
|
-
organization_id: PropTypes.string.isRequired,
|
|
5380
|
-
experience_key: PropTypes.string.isRequired,
|
|
5381
|
-
});
|
|
5382
|
-
|
|
5383
|
-
T['io.flow.v0.models.experience_price_book_mapping_deleted'] = PropTypes.exact({
|
|
5384
|
-
discriminator: PropTypes.oneOf(['experience_price_book_mapping_deleted']).isRequired,
|
|
5385
|
-
event_id: PropTypes.string.isRequired,
|
|
5386
|
-
timestamp: PropTypes.string.isRequired,
|
|
5387
|
-
organization: PropTypes.string.isRequired,
|
|
5388
|
-
id: PropTypes.string.isRequired,
|
|
5389
|
-
});
|
|
5390
|
-
|
|
5391
|
-
T['io.flow.v0.models.experience_upserted'] = PropTypes.exact({
|
|
5392
|
-
discriminator: PropTypes.oneOf(['experience_upserted']).isRequired,
|
|
5393
|
-
event_id: PropTypes.string.isRequired,
|
|
5394
|
-
timestamp: PropTypes.string.isRequired,
|
|
5395
|
-
organization: PropTypes.string.isRequired,
|
|
5396
|
-
key: PropTypes.string.isRequired,
|
|
5397
|
-
name: PropTypes.string.isRequired,
|
|
5398
|
-
delivered_duty: PropTypes.string.isRequired,
|
|
5399
|
-
subcatalog_id: PropTypes.string.isRequired,
|
|
5400
|
-
region_id: PropTypes.string.isRequired,
|
|
5401
|
-
country: PropTypes.string.isRequired,
|
|
5402
|
-
currency: PropTypes.string.isRequired,
|
|
5403
|
-
language: PropTypes.string.isRequired,
|
|
5404
|
-
measurement_system: PropTypes.string.isRequired,
|
|
5405
|
-
position: PropTypes.number.isRequired,
|
|
5406
|
-
status: PropTypes.string,
|
|
5407
|
-
});
|
|
5408
|
-
|
|
5409
|
-
T['io.flow.v0.models.experience_deleted'] = PropTypes.exact({
|
|
5410
|
-
discriminator: PropTypes.oneOf(['experience_deleted']).isRequired,
|
|
5411
|
-
event_id: PropTypes.string.isRequired,
|
|
5412
|
-
timestamp: PropTypes.string.isRequired,
|
|
5413
|
-
organization: PropTypes.string.isRequired,
|
|
5414
|
-
key: PropTypes.string.isRequired,
|
|
5415
|
-
subcatalog_id: PropTypes.string.isRequired,
|
|
5416
|
-
});
|
|
5417
|
-
|
|
5418
|
-
T['io.flow.v0.models.currency_format_deleted'] = PropTypes.exact({
|
|
5419
|
-
discriminator: PropTypes.oneOf(['currency_format_deleted']).isRequired,
|
|
5420
|
-
event_id: PropTypes.string.isRequired,
|
|
5421
|
-
timestamp: PropTypes.string.isRequired,
|
|
5422
|
-
organization: PropTypes.string.isRequired,
|
|
5423
|
-
id: PropTypes.string.isRequired,
|
|
5424
|
-
});
|
|
5425
|
-
|
|
5426
3773
|
T['io.flow.v0.models.allocation_deleted_v2'] = PropTypes.exact({
|
|
5427
3774
|
discriminator: PropTypes.oneOf(['allocation_deleted_v2']).isRequired,
|
|
5428
3775
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5431,23 +3778,6 @@ T['io.flow.v0.models.allocation_deleted_v2'] = PropTypes.exact({
|
|
|
5431
3778
|
id: PropTypes.string.isRequired,
|
|
5432
3779
|
});
|
|
5433
3780
|
|
|
5434
|
-
T['io.flow.v0.models.available_promotions_deleted'] = PropTypes.exact({
|
|
5435
|
-
discriminator: PropTypes.oneOf(['available_promotions_deleted']).isRequired,
|
|
5436
|
-
event_id: PropTypes.string.isRequired,
|
|
5437
|
-
timestamp: PropTypes.string.isRequired,
|
|
5438
|
-
organization: PropTypes.string.isRequired,
|
|
5439
|
-
experience_key: PropTypes.string.isRequired,
|
|
5440
|
-
});
|
|
5441
|
-
|
|
5442
|
-
T['io.flow.v0.models.available_promotions_upserted'] = PropTypes.exact({
|
|
5443
|
-
discriminator: PropTypes.oneOf(['available_promotions_upserted']).isRequired,
|
|
5444
|
-
event_id: PropTypes.string.isRequired,
|
|
5445
|
-
timestamp: PropTypes.string.isRequired,
|
|
5446
|
-
organization: PropTypes.string.isRequired,
|
|
5447
|
-
experience_key: PropTypes.string.isRequired,
|
|
5448
|
-
available_promotions: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
5449
|
-
});
|
|
5450
|
-
|
|
5451
3781
|
T['io.flow.v0.models.rate_upserted'] = PropTypes.exact({
|
|
5452
3782
|
discriminator: PropTypes.oneOf(['rate_upserted']).isRequired,
|
|
5453
3783
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5628,6 +3958,13 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
|
|
|
5628
3958
|
id: PropTypes.string.isRequired,
|
|
5629
3959
|
});
|
|
5630
3960
|
|
|
3961
|
+
T['io.flow.v0.models.anirban_item_deleted'] = PropTypes.exact({
|
|
3962
|
+
discriminator: PropTypes.oneOf(['anirban_item_deleted']).isRequired,
|
|
3963
|
+
event_id: PropTypes.string.isRequired,
|
|
3964
|
+
timestamp: PropTypes.string.isRequired,
|
|
3965
|
+
id: PropTypes.string.isRequired,
|
|
3966
|
+
});
|
|
3967
|
+
|
|
5631
3968
|
T['io.flow.v0.models.ansh_item_deleted'] = PropTypes.exact({
|
|
5632
3969
|
discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
|
|
5633
3970
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5656,6 +3993,20 @@ T['io.flow.v0.models.niall_item_deleted'] = PropTypes.exact({
|
|
|
5656
3993
|
id: PropTypes.string.isRequired,
|
|
5657
3994
|
});
|
|
5658
3995
|
|
|
3996
|
+
T['io.flow.v0.models.hosein_item_deleted'] = PropTypes.exact({
|
|
3997
|
+
discriminator: PropTypes.oneOf(['hosein_item_deleted']).isRequired,
|
|
3998
|
+
event_id: PropTypes.string.isRequired,
|
|
3999
|
+
timestamp: PropTypes.string.isRequired,
|
|
4000
|
+
id: PropTypes.string.isRequired,
|
|
4001
|
+
});
|
|
4002
|
+
|
|
4003
|
+
T['io.flow.v0.models.sarvesh_item_deleted'] = PropTypes.exact({
|
|
4004
|
+
discriminator: PropTypes.oneOf(['sarvesh_item_deleted']).isRequired,
|
|
4005
|
+
event_id: PropTypes.string.isRequired,
|
|
4006
|
+
timestamp: PropTypes.string.isRequired,
|
|
4007
|
+
id: PropTypes.string.isRequired,
|
|
4008
|
+
});
|
|
4009
|
+
|
|
5659
4010
|
T['io.flow.v0.models.generate_load'] = PropTypes.exact({
|
|
5660
4011
|
discriminator: PropTypes.oneOf(['generate_load']).isRequired,
|
|
5661
4012
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5958,6 +4309,105 @@ T['io.flow.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
|
5958
4309
|
interval: PropTypes.number.isRequired,
|
|
5959
4310
|
});
|
|
5960
4311
|
|
|
4312
|
+
T['io.flow.v0.enums.zero_levy_reason_code'] = PropTypes.oneOf([
|
|
4313
|
+
'zero_basis',
|
|
4314
|
+
'zero_rate_on_goods',
|
|
4315
|
+
'value_rounds_to_zero',
|
|
4316
|
+
'order_below_de_minimis_threshold',
|
|
4317
|
+
'amount_below_de_minimis_threshold',
|
|
4318
|
+
'delivered_unpaid',
|
|
4319
|
+
'duty_free_domestic',
|
|
4320
|
+
'duty_free_intra_community',
|
|
4321
|
+
'duty_free_reimport',
|
|
4322
|
+
'duty_free_by_trade_agreement',
|
|
4323
|
+
]);
|
|
4324
|
+
|
|
4325
|
+
T['io.flow.v0.enums.preferential_rate_eligibility'] = PropTypes.oneOf(['baby_clothing', 'kids_clothing']);
|
|
4326
|
+
T['io.flow.v0.enums.levy_inclusion'] = PropTypes.oneOf(['tax', 'duty']);
|
|
4327
|
+
|
|
4328
|
+
T['io.flow.v0.models.tax_duty_quote_fee_value'] = PropTypes.exact({
|
|
4329
|
+
amount: PropTypes.number.isRequired,
|
|
4330
|
+
description: PropTypes.string.isRequired,
|
|
4331
|
+
amount_refundable_on_return: PropTypes.number.isRequired,
|
|
4332
|
+
});
|
|
4333
|
+
|
|
4334
|
+
T['io.flow.v0.models.tax_duty_quote_simple_levy_value'] = PropTypes.exact({
|
|
4335
|
+
discriminator: PropTypes.oneOf(['tax_duty_quote_simple_levy_value']).isRequired,
|
|
4336
|
+
amount: PropTypes.number.isRequired,
|
|
4337
|
+
rate: PropTypes.number.isRequired,
|
|
4338
|
+
description: PropTypes.string.isRequired,
|
|
4339
|
+
zero_levy_reason: PropTypes.arrayOf(T['io.flow.v0.enums.zero_levy_reason_code']),
|
|
4340
|
+
amount_refundable_on_return: PropTypes.number.isRequired,
|
|
4341
|
+
});
|
|
4342
|
+
|
|
4343
|
+
T['io.flow.v0.unions.tax_duty_quote_levy_value'] = PropTypes.oneOfType([T['io.flow.v0.models.tax_duty_quote_simple_levy_value']]);
|
|
4344
|
+
|
|
4345
|
+
T['io.flow.v0.models.tax_duty_quote_values'] = PropTypes.exact({
|
|
4346
|
+
price: PropTypes.number.isRequired,
|
|
4347
|
+
duty: T['io.flow.v0.models.tax_duty_quote_simple_levy_value'].isRequired,
|
|
4348
|
+
tax: T['io.flow.v0.models.tax_duty_quote_simple_levy_value'].isRequired,
|
|
4349
|
+
fees: T['io.flow.v0.models.tax_duty_quote_fee_value'].isRequired,
|
|
4350
|
+
total: PropTypes.number.isRequired,
|
|
4351
|
+
});
|
|
4352
|
+
|
|
4353
|
+
T['io.flow.v0.models.street_address'] = PropTypes.exact({
|
|
4354
|
+
streets: PropTypes.arrayOf(PropTypes.string),
|
|
4355
|
+
city: PropTypes.string,
|
|
4356
|
+
province: PropTypes.string,
|
|
4357
|
+
postal: PropTypes.string,
|
|
4358
|
+
country: PropTypes.string,
|
|
4359
|
+
});
|
|
4360
|
+
|
|
4361
|
+
T['io.flow.v0.models.tax_duty_quote_simple_shipping_form'] = PropTypes.exact({
|
|
4362
|
+
price: PropTypes.number.isRequired,
|
|
4363
|
+
includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']).isRequired,
|
|
4364
|
+
ship_from: T['io.flow.v0.models.street_address'],
|
|
4365
|
+
});
|
|
4366
|
+
|
|
4367
|
+
T['io.flow.v0.models.tax_duty_quote_simple_shipping'] = PropTypes.exact({
|
|
4368
|
+
values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
|
|
4369
|
+
ship_from: T['io.flow.v0.models.street_address'].isRequired,
|
|
4370
|
+
});
|
|
4371
|
+
|
|
4372
|
+
T['io.flow.v0.models.tax_duty_quote_line_item'] = PropTypes.exact({
|
|
4373
|
+
primary_identifier: PropTypes.string.isRequired,
|
|
4374
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
4375
|
+
ship_from: T['io.flow.v0.models.street_address'].isRequired,
|
|
4376
|
+
quantity: PropTypes.number.isRequired,
|
|
4377
|
+
unit_values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
|
|
4378
|
+
country_of_origin: PropTypes.string.isRequired,
|
|
4379
|
+
hs_code: PropTypes.string.isRequired,
|
|
4380
|
+
});
|
|
4381
|
+
|
|
4382
|
+
T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'] = PropTypes.oneOf([
|
|
4383
|
+
'generic_error',
|
|
4384
|
+
'destination_country_not_defined',
|
|
4385
|
+
'destination_address_iso3166_unrecognized',
|
|
4386
|
+
'line_item_shipfrom_shipto_country_invalid',
|
|
4387
|
+
'line_item_ship_from_invalid',
|
|
4388
|
+
'line_item_currency_iso4217_unrecognized',
|
|
4389
|
+
'line_quantity_invalid',
|
|
4390
|
+
'line_item_quantity_invalid',
|
|
4391
|
+
'line_item_unit_price_precision_invalid',
|
|
4392
|
+
'line_item_unit_price_negative',
|
|
4393
|
+
'line_item_discount_amount_precision_invalid',
|
|
4394
|
+
'line_item_discount_amount_positive',
|
|
4395
|
+
'line_item_country_of_origin_iso3166_unrecognized',
|
|
4396
|
+
'line_item_hs_code_invalid',
|
|
4397
|
+
'line_item_duty_provider_invalid',
|
|
4398
|
+
'shipping_unit_price_precision_invalid',
|
|
4399
|
+
'shipping_unit_price_negative',
|
|
4400
|
+
'shipping_discount_amount_precision_invalid',
|
|
4401
|
+
'shipping_discount_amount_invalid',
|
|
4402
|
+
'merchant_of_record_invalid',
|
|
4403
|
+
'wrong_unit_specified',
|
|
4404
|
+
]);
|
|
4405
|
+
|
|
4406
|
+
T['io.flow.v0.models.tax_duty_calculator_validation_error'] = PropTypes.exact({
|
|
4407
|
+
code: T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'].isRequired,
|
|
4408
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4409
|
+
});
|
|
4410
|
+
|
|
5961
4411
|
T['io.flow.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
|
|
5962
4412
|
|
|
5963
4413
|
T['io.flow.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
|
|
@@ -6208,6 +4658,20 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
|
6208
4658
|
'missing_logistics_contact_info',
|
|
6209
4659
|
]);
|
|
6210
4660
|
|
|
4661
|
+
T['io.flow.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
4662
|
+
'insufficient_details',
|
|
4663
|
+
'ineligible_category',
|
|
4664
|
+
'wait_for_high_fidelity',
|
|
4665
|
+
'external_service_unavailable',
|
|
4666
|
+
]);
|
|
4667
|
+
|
|
4668
|
+
T['io.flow.v0.models.sellability_error'] = PropTypes.exact({
|
|
4669
|
+
discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
|
|
4670
|
+
code: T['io.flow.v0.enums.sellability_error_code'].isRequired,
|
|
4671
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4672
|
+
});
|
|
4673
|
+
|
|
4674
|
+
T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
6211
4675
|
T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
6212
4676
|
T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
6213
4677
|
|
|
@@ -6419,12 +4883,19 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
|
|
|
6419
4883
|
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6420
4884
|
});
|
|
6421
4885
|
|
|
6422
|
-
T['io.flow.
|
|
4886
|
+
T['io.flow.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
|
|
4887
|
+
T['io.flow.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
6423
4888
|
T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
6424
4889
|
|
|
4890
|
+
T['io.flow.v0.models.product_taxonomy_value'] = PropTypes.exact({
|
|
4891
|
+
handle: PropTypes.string.isRequired,
|
|
4892
|
+
name: PropTypes.string.isRequired,
|
|
4893
|
+
});
|
|
4894
|
+
|
|
6425
4895
|
T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
6426
4896
|
key: PropTypes.string.isRequired,
|
|
6427
4897
|
value: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4898
|
+
value_obj: PropTypes.arrayOf(T['io.flow.v0.models.product_taxonomy_value']),
|
|
6428
4899
|
});
|
|
6429
4900
|
|
|
6430
4901
|
T['io.flow.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
@@ -6438,6 +4909,7 @@ T['io.flow.v0.models.product'] = PropTypes.exact({
|
|
|
6438
4909
|
taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'],
|
|
6439
4910
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.v0.models.product_taxonomy_data']),
|
|
6440
4911
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4912
|
+
highest_value_item_number: PropTypes.string,
|
|
6441
4913
|
updated_at: PropTypes.string.isRequired,
|
|
6442
4914
|
deleted_at: PropTypes.string,
|
|
6443
4915
|
});
|
|
@@ -7033,21 +5505,6 @@ T['io.flow.v0.models.session_visitor'] = PropTypes.exact({
|
|
|
7033
5505
|
});
|
|
7034
5506
|
|
|
7035
5507
|
T['io.flow.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
|
|
7036
|
-
|
|
7037
|
-
T['io.flow.v0.models.order_service_change_request_data'] = PropTypes.exact({
|
|
7038
|
-
id: PropTypes.string.isRequired,
|
|
7039
|
-
source_url: PropTypes.string.isRequired,
|
|
7040
|
-
filename: PropTypes.string,
|
|
7041
|
-
});
|
|
7042
|
-
|
|
7043
|
-
T['io.flow.v0.models.order_service_change_request'] = PropTypes.exact({
|
|
7044
|
-
discriminator: PropTypes.oneOf(['order_service_change_request']).isRequired,
|
|
7045
|
-
event_id: PropTypes.string.isRequired,
|
|
7046
|
-
timestamp: PropTypes.string.isRequired,
|
|
7047
|
-
organization: PropTypes.string.isRequired,
|
|
7048
|
-
request: T['io.flow.v0.models.order_service_change_request_data'].isRequired,
|
|
7049
|
-
});
|
|
7050
|
-
|
|
7051
5508
|
T['io.flow.v0.enums.order_refund_summary_partial_charged'] = PropTypes.oneOf(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']);
|
|
7052
5509
|
|
|
7053
5510
|
T['io.flow.v0.models.order_refund_summary_item'] = PropTypes.exact({
|
|
@@ -7093,6 +5550,8 @@ T['io.flow.v0.models.order_refund_summary'] = PropTypes.exact({
|
|
|
7093
5550
|
amounts: T['io.flow.v0.models.order_refund_summary_amounts'].isRequired,
|
|
7094
5551
|
});
|
|
7095
5552
|
|
|
5553
|
+
T['io.flow.v0.enums.order_price_fee_type'] = PropTypes.oneOf(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product']);
|
|
5554
|
+
|
|
7096
5555
|
T['io.flow.v0.models.order_number_generator_fixed_length'] = PropTypes.exact({
|
|
7097
5556
|
length: PropTypes.number.isRequired,
|
|
7098
5557
|
padding: PropTypes.string.isRequired,
|
|
@@ -7250,6 +5709,17 @@ T['io.flow.v0.models.order_rule_reference'] = PropTypes.exact({
|
|
|
7250
5709
|
key: PropTypes.string.isRequired,
|
|
7251
5710
|
});
|
|
7252
5711
|
|
|
5712
|
+
T['io.flow.v0.models.order_rate'] = PropTypes.exact({
|
|
5713
|
+
from: PropTypes.string.isRequired,
|
|
5714
|
+
to: PropTypes.string.isRequired,
|
|
5715
|
+
rate: PropTypes.number.isRequired,
|
|
5716
|
+
});
|
|
5717
|
+
|
|
5718
|
+
T['io.flow.v0.models.edit_summary'] = PropTypes.exact({
|
|
5719
|
+
id: PropTypes.string.isRequired,
|
|
5720
|
+
edited_at: PropTypes.string.isRequired,
|
|
5721
|
+
});
|
|
5722
|
+
|
|
7253
5723
|
T['io.flow.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
7254
5724
|
title: PropTypes.string.isRequired,
|
|
7255
5725
|
country: PropTypes.string.isRequired,
|
|
@@ -7624,6 +6094,7 @@ T['io.flow.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
|
7624
6094
|
'saturday_stop',
|
|
7625
6095
|
'residential_extended_area_pickup',
|
|
7626
6096
|
'package_level_detail',
|
|
6097
|
+
'pickup',
|
|
7627
6098
|
]);
|
|
7628
6099
|
|
|
7629
6100
|
T['io.flow.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
@@ -7820,6 +6291,8 @@ T['io.flow.v0.models.import_form'] = PropTypes.exact({
|
|
|
7820
6291
|
emails: PropTypes.arrayOf(PropTypes.string),
|
|
7821
6292
|
});
|
|
7822
6293
|
|
|
6294
|
+
T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
6295
|
+
|
|
7823
6296
|
T['io.flow.v0.models.return_package_ratecard_fee'] = PropTypes.exact({
|
|
7824
6297
|
discriminator: PropTypes.oneOf(['return_package_ratecard_fee']).isRequired,
|
|
7825
6298
|
amount: PropTypes.number.isRequired,
|
|
@@ -7880,56 +6353,28 @@ T['io.flow.v0.models.harmonization_document'] = PropTypes.exact({
|
|
|
7880
6353
|
origin: PropTypes.string,
|
|
7881
6354
|
});
|
|
7882
6355
|
|
|
7883
|
-
T['io.flow.
|
|
7884
|
-
|
|
6356
|
+
T['io.flow.v0.models.needs_action_attributes'] = PropTypes.exact({
|
|
6357
|
+
reason_code: PropTypes.string.isRequired,
|
|
6358
|
+
category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6359
|
+
});
|
|
6360
|
+
|
|
6361
|
+
T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
6362
|
+
type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
|
|
7885
6363
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7886
6364
|
});
|
|
7887
6365
|
|
|
7888
|
-
T['io.flow.
|
|
6366
|
+
T['io.flow.v0.models.product_sellability'] = PropTypes.exact({
|
|
7889
6367
|
discriminator: PropTypes.oneOf(['product_sellability']).isRequired,
|
|
7890
6368
|
shop_id: PropTypes.string.isRequired,
|
|
7891
6369
|
product_id: PropTypes.string,
|
|
7892
6370
|
request_id: PropTypes.string.isRequired,
|
|
7893
6371
|
hs6_code: PropTypes.string.isRequired,
|
|
7894
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.
|
|
6372
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
|
|
7895
6373
|
});
|
|
7896
6374
|
|
|
7897
|
-
T['io.flow.
|
|
7898
|
-
T['io.flow.
|
|
7899
|
-
T['io.flow.
|
|
7900
|
-
]);
|
|
7901
|
-
|
|
7902
|
-
T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
|
|
7903
|
-
'Adult Products',
|
|
7904
|
-
'Alcohol',
|
|
7905
|
-
'Anti Money Laundering',
|
|
7906
|
-
'Collagen',
|
|
7907
|
-
'Consumer Safety',
|
|
7908
|
-
'Cosmetics',
|
|
7909
|
-
'DG - Batteries',
|
|
7910
|
-
'DG - Hazmat',
|
|
7911
|
-
'Drugs',
|
|
7912
|
-
'Dual Use',
|
|
7913
|
-
'Fine Art',
|
|
7914
|
-
'Fish & Wildlife - CITES',
|
|
7915
|
-
'Fish & Wildlife - Plant',
|
|
7916
|
-
'Fish & Wildlife - USFWS',
|
|
7917
|
-
'Food',
|
|
7918
|
-
'Gambling',
|
|
7919
|
-
'Health',
|
|
7920
|
-
'Human hair',
|
|
7921
|
-
'Insufficient Details',
|
|
7922
|
-
'Intangible',
|
|
7923
|
-
'Jewelry',
|
|
7924
|
-
'Jewelry & Watches Over 5000',
|
|
7925
|
-
'Knives',
|
|
7926
|
-
'Liquids',
|
|
7927
|
-
'Oversized',
|
|
7928
|
-
'Restrict by Default',
|
|
7929
|
-
'Supplements',
|
|
7930
|
-
'Tattoo Ink And PMU',
|
|
7931
|
-
'Weapon',
|
|
7932
|
-
'Wood',
|
|
6375
|
+
T['io.flow.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
6376
|
+
T['io.flow.v0.models.product_sellability'],
|
|
6377
|
+
T['io.flow.v0.models.sellability_error'],
|
|
7933
6378
|
]);
|
|
7934
6379
|
|
|
7935
6380
|
T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
|
|
@@ -7948,11 +6393,12 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
|
|
|
7948
6393
|
sellability_restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
7949
6394
|
reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
|
|
7950
6395
|
review_status: T['io.flow.v0.enums.review_status'],
|
|
7951
|
-
rules: PropTypes.arrayOf(
|
|
6396
|
+
rules: PropTypes.arrayOf(PropTypes.string),
|
|
7952
6397
|
updated_by: PropTypes.string,
|
|
7953
6398
|
product_restriction_id: PropTypes.string,
|
|
7954
6399
|
hs_code: PropTypes.string,
|
|
7955
|
-
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.
|
|
6400
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']),
|
|
6401
|
+
needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.needs_action_attributes']),
|
|
7956
6402
|
});
|
|
7957
6403
|
|
|
7958
6404
|
T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
|
|
@@ -8315,22 +6761,6 @@ T['io.flow.v0.models.import'] = PropTypes.exact({
|
|
|
8315
6761
|
deliveries: PropTypes.arrayOf(T['io.flow.v0.unions.export_delivery']).isRequired,
|
|
8316
6762
|
});
|
|
8317
6763
|
|
|
8318
|
-
T['io.flow.v0.models.import_failed_v2'] = PropTypes.exact({
|
|
8319
|
-
discriminator: PropTypes.oneOf(['import_failed_v2']).isRequired,
|
|
8320
|
-
event_id: PropTypes.string.isRequired,
|
|
8321
|
-
timestamp: PropTypes.string.isRequired,
|
|
8322
|
-
organization: PropTypes.string.isRequired,
|
|
8323
|
-
'import': T['io.flow.v0.models.import'].isRequired,
|
|
8324
|
-
});
|
|
8325
|
-
|
|
8326
|
-
T['io.flow.v0.models.import_completed_v2'] = PropTypes.exact({
|
|
8327
|
-
discriminator: PropTypes.oneOf(['import_completed_v2']).isRequired,
|
|
8328
|
-
event_id: PropTypes.string.isRequired,
|
|
8329
|
-
timestamp: PropTypes.string.isRequired,
|
|
8330
|
-
organization: PropTypes.string.isRequired,
|
|
8331
|
-
'import': T['io.flow.v0.models.import'].isRequired,
|
|
8332
|
-
});
|
|
8333
|
-
|
|
8334
6764
|
T['io.flow.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
|
|
8335
6765
|
|
|
8336
6766
|
T['io.flow.v0.models.pricing'] = PropTypes.exact({
|
|
@@ -8919,17 +7349,6 @@ T['io.flow.v0.models.experience_currency_format'] = PropTypes.exact({
|
|
|
8919
7349
|
label_formatters: PropTypes.arrayOf(T['io.flow.v0.enums.currency_label_formatter']).isRequired,
|
|
8920
7350
|
});
|
|
8921
7351
|
|
|
8922
|
-
T['io.flow.v0.models.currency_format_upserted'] = PropTypes.exact({
|
|
8923
|
-
discriminator: PropTypes.oneOf(['currency_format_upserted']).isRequired,
|
|
8924
|
-
event_id: PropTypes.string.isRequired,
|
|
8925
|
-
timestamp: PropTypes.string.isRequired,
|
|
8926
|
-
organization: PropTypes.string.isRequired,
|
|
8927
|
-
id: PropTypes.string.isRequired,
|
|
8928
|
-
experience_key: PropTypes.string.isRequired,
|
|
8929
|
-
symbol: T['io.flow.v0.enums.currency_symbol_format'].isRequired,
|
|
8930
|
-
label_formatters: PropTypes.arrayOf(T['io.flow.v0.enums.currency_label_formatter']).isRequired,
|
|
8931
|
-
});
|
|
8932
|
-
|
|
8933
7352
|
T['io.flow.v0.models.currency_format'] = PropTypes.exact({
|
|
8934
7353
|
symbol: T['io.flow.v0.enums.currency_symbol_format'].isRequired,
|
|
8935
7354
|
label_formatters: PropTypes.arrayOf(T['io.flow.v0.enums.currency_label_formatter']).isRequired,
|
|
@@ -9087,27 +7506,11 @@ T['io.flow.v0.enums.experience_country_status'] = PropTypes.oneOf(['enabled', 'd
|
|
|
9087
7506
|
T['io.flow.v0.models.country_status_form'] = PropTypes.exact({
|
|
9088
7507
|
status: T['io.flow.v0.enums.experience_country_status'].isRequired,
|
|
9089
7508
|
});
|
|
9090
|
-
|
|
9091
|
-
T['io.flow.v0.models.country_status'] = PropTypes.exact({
|
|
9092
|
-
id: PropTypes.string.isRequired,
|
|
9093
|
-
country: PropTypes.string.isRequired,
|
|
9094
|
-
status: T['io.flow.v0.enums.experience_country_status'].isRequired,
|
|
9095
|
-
});
|
|
9096
|
-
|
|
9097
|
-
T['io.flow.v0.models.country_status_upserted'] = PropTypes.exact({
|
|
9098
|
-
discriminator: PropTypes.oneOf(['country_status_upserted']).isRequired,
|
|
9099
|
-
event_id: PropTypes.string.isRequired,
|
|
9100
|
-
timestamp: PropTypes.string.isRequired,
|
|
9101
|
-
organization: PropTypes.string.isRequired,
|
|
9102
|
-
country_status: T['io.flow.v0.models.country_status'].isRequired,
|
|
9103
|
-
});
|
|
9104
|
-
|
|
9105
|
-
T['io.flow.v0.models.country_status_deleted'] = PropTypes.exact({
|
|
9106
|
-
discriminator: PropTypes.oneOf(['country_status_deleted']).isRequired,
|
|
9107
|
-
event_id: PropTypes.string.isRequired,
|
|
9108
|
-
timestamp: PropTypes.string.isRequired,
|
|
9109
|
-
organization: PropTypes.string.isRequired,
|
|
9110
|
-
country_status: T['io.flow.v0.models.country_status'].isRequired,
|
|
7509
|
+
|
|
7510
|
+
T['io.flow.v0.models.country_status'] = PropTypes.exact({
|
|
7511
|
+
id: PropTypes.string.isRequired,
|
|
7512
|
+
country: PropTypes.string.isRequired,
|
|
7513
|
+
status: T['io.flow.v0.enums.experience_country_status'].isRequired,
|
|
9111
7514
|
});
|
|
9112
7515
|
|
|
9113
7516
|
T['io.flow.v0.enums.country_picker_source'] = PropTypes.oneOf(['experience', 'destination']);
|
|
@@ -9357,22 +7760,6 @@ T['io.flow.v0.models.item_margin'] = PropTypes.exact({
|
|
|
9357
7760
|
experience: T['io.flow.v0.models.experience_reference'],
|
|
9358
7761
|
});
|
|
9359
7762
|
|
|
9360
|
-
T['io.flow.v0.models.item_margin_upserted_v2'] = PropTypes.exact({
|
|
9361
|
-
discriminator: PropTypes.oneOf(['item_margin_upserted_v2']).isRequired,
|
|
9362
|
-
event_id: PropTypes.string.isRequired,
|
|
9363
|
-
timestamp: PropTypes.string.isRequired,
|
|
9364
|
-
organization: PropTypes.string.isRequired,
|
|
9365
|
-
item_margin: T['io.flow.v0.models.item_margin'].isRequired,
|
|
9366
|
-
});
|
|
9367
|
-
|
|
9368
|
-
T['io.flow.v0.models.item_margin_deleted_v2'] = PropTypes.exact({
|
|
9369
|
-
discriminator: PropTypes.oneOf(['item_margin_deleted_v2']).isRequired,
|
|
9370
|
-
event_id: PropTypes.string.isRequired,
|
|
9371
|
-
timestamp: PropTypes.string.isRequired,
|
|
9372
|
-
organization: PropTypes.string.isRequired,
|
|
9373
|
-
item_margin: T['io.flow.v0.models.item_margin'].isRequired,
|
|
9374
|
-
});
|
|
9375
|
-
|
|
9376
7763
|
T['io.flow.v0.models.experience_price_book_mapping'] = PropTypes.exact({
|
|
9377
7764
|
id: PropTypes.string.isRequired,
|
|
9378
7765
|
experience: T['io.flow.v0.models.experience_reference'].isRequired,
|
|
@@ -9380,14 +7767,6 @@ T['io.flow.v0.models.experience_price_book_mapping'] = PropTypes.exact({
|
|
|
9380
7767
|
position: PropTypes.number.isRequired,
|
|
9381
7768
|
});
|
|
9382
7769
|
|
|
9383
|
-
T['io.flow.v0.models.experience_price_book_mapping_upserted'] = PropTypes.exact({
|
|
9384
|
-
discriminator: PropTypes.oneOf(['experience_price_book_mapping_upserted']).isRequired,
|
|
9385
|
-
event_id: PropTypes.string.isRequired,
|
|
9386
|
-
timestamp: PropTypes.string.isRequired,
|
|
9387
|
-
organization: PropTypes.string.isRequired,
|
|
9388
|
-
experience_price_book_mapping: T['io.flow.v0.models.experience_price_book_mapping'].isRequired,
|
|
9389
|
-
});
|
|
9390
|
-
|
|
9391
7770
|
T['io.flow.v0.models.experience_clone'] = PropTypes.exact({
|
|
9392
7771
|
id: PropTypes.string.isRequired,
|
|
9393
7772
|
source_experience: T['io.flow.v0.models.experience_reference'].isRequired,
|
|
@@ -9572,6 +7951,8 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
9572
7951
|
'tax_refund',
|
|
9573
7952
|
'duty_refund',
|
|
9574
7953
|
'non_l4l_tax_duty_fx',
|
|
7954
|
+
'merchant_payout',
|
|
7955
|
+
'merchant_refund',
|
|
9575
7956
|
'ge_revenue_share',
|
|
9576
7957
|
]);
|
|
9577
7958
|
|
|
@@ -9623,6 +8004,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
|
|
|
9623
8004
|
channel_id: PropTypes.string.isRequired,
|
|
9624
8005
|
external_order_reference: PropTypes.string.isRequired,
|
|
9625
8006
|
payment_request_id: PropTypes.string,
|
|
8007
|
+
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
9626
8008
|
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
9627
8009
|
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
9628
8010
|
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
@@ -10212,6 +8594,20 @@ T['io.flow.v0.models.customer_payment'] = PropTypes.exact({
|
|
|
10212
8594
|
|
|
10213
8595
|
T['io.flow.v0.enums.merchant_of_record'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10214
8596
|
|
|
8597
|
+
T['io.flow.v0.models.tax_duty_quote'] = PropTypes.exact({
|
|
8598
|
+
id: PropTypes.string.isRequired,
|
|
8599
|
+
primary_identifier: PropTypes.string.isRequired,
|
|
8600
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
8601
|
+
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8602
|
+
delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
|
|
8603
|
+
destination: T['io.flow.v0.models.street_address'].isRequired,
|
|
8604
|
+
quote_date: PropTypes.string.isRequired,
|
|
8605
|
+
currency: PropTypes.string.isRequired,
|
|
8606
|
+
lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item']).isRequired,
|
|
8607
|
+
shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping']).isRequired,
|
|
8608
|
+
total_values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
|
|
8609
|
+
});
|
|
8610
|
+
|
|
10215
8611
|
T['io.flow.v0.models.payment_payment_method'] = PropTypes.exact({
|
|
10216
8612
|
id: PropTypes.string.isRequired,
|
|
10217
8613
|
name: PropTypes.string.isRequired,
|
|
@@ -11316,44 +9712,12 @@ T['io.flow.v0.unions.expandable_experience'] = PropTypes.oneOfType([
|
|
|
11316
9712
|
T['io.flow.v0.models.experience_reference'],
|
|
11317
9713
|
]);
|
|
11318
9714
|
|
|
11319
|
-
T['io.flow.v0.models.experience_upserted_v2'] = PropTypes.exact({
|
|
11320
|
-
discriminator: PropTypes.oneOf(['experience_upserted_v2']).isRequired,
|
|
11321
|
-
event_id: PropTypes.string.isRequired,
|
|
11322
|
-
timestamp: PropTypes.string.isRequired,
|
|
11323
|
-
organization: PropTypes.string.isRequired,
|
|
11324
|
-
experience: T['io.flow.v0.models.experience'].isRequired,
|
|
11325
|
-
});
|
|
11326
|
-
|
|
11327
|
-
T['io.flow.v0.models.experience_deleted_v2'] = PropTypes.exact({
|
|
11328
|
-
discriminator: PropTypes.oneOf(['experience_deleted_v2']).isRequired,
|
|
11329
|
-
event_id: PropTypes.string.isRequired,
|
|
11330
|
-
timestamp: PropTypes.string.isRequired,
|
|
11331
|
-
organization: PropTypes.string.isRequired,
|
|
11332
|
-
experience: T['io.flow.v0.models.experience'].isRequired,
|
|
11333
|
-
});
|
|
11334
|
-
|
|
11335
9715
|
T['io.flow.v0.models.experience_logistics_settings'] = PropTypes.exact({
|
|
11336
9716
|
id: PropTypes.string.isRequired,
|
|
11337
9717
|
experience: T['io.flow.v0.models.experience_overview'].isRequired,
|
|
11338
9718
|
shipping_configuration: T['io.flow.v0.models.shipping_configuration_reference'].isRequired,
|
|
11339
9719
|
});
|
|
11340
9720
|
|
|
11341
|
-
T['io.flow.v0.models.experience_logistics_settings_upserted'] = PropTypes.exact({
|
|
11342
|
-
discriminator: PropTypes.oneOf(['experience_logistics_settings_upserted']).isRequired,
|
|
11343
|
-
event_id: PropTypes.string.isRequired,
|
|
11344
|
-
timestamp: PropTypes.string.isRequired,
|
|
11345
|
-
organization: PropTypes.string.isRequired,
|
|
11346
|
-
logistics_settings: T['io.flow.v0.models.experience_logistics_settings'].isRequired,
|
|
11347
|
-
});
|
|
11348
|
-
|
|
11349
|
-
T['io.flow.v0.models.experience_logistics_settings_deleted'] = PropTypes.exact({
|
|
11350
|
-
discriminator: PropTypes.oneOf(['experience_logistics_settings_deleted']).isRequired,
|
|
11351
|
-
event_id: PropTypes.string.isRequired,
|
|
11352
|
-
timestamp: PropTypes.string.isRequired,
|
|
11353
|
-
organization: PropTypes.string.isRequired,
|
|
11354
|
-
logistics_settings: T['io.flow.v0.models.experience_logistics_settings'].isRequired,
|
|
11355
|
-
});
|
|
11356
|
-
|
|
11357
9721
|
T['io.flow.v0.enums.available_filter_format'] = PropTypes.oneOf([
|
|
11358
9722
|
'boolean',
|
|
11359
9723
|
'date',
|
|
@@ -11954,6 +10318,7 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
|
|
|
11954
10318
|
});
|
|
11955
10319
|
|
|
11956
10320
|
T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
10321
|
+
T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11957
10322
|
|
|
11958
10323
|
T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
11959
10324
|
'adjustment',
|
|
@@ -12333,14 +10698,6 @@ T['io.flow.v0.models.tier_rule_version'] = PropTypes.exact({
|
|
|
12333
10698
|
tier_rule: T['io.flow.v0.models.tier_rule'].isRequired,
|
|
12334
10699
|
});
|
|
12335
10700
|
|
|
12336
|
-
T['io.flow.v0.models.localized_total'] = PropTypes.exact({
|
|
12337
|
-
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
12338
|
-
currency: PropTypes.string.isRequired,
|
|
12339
|
-
amount: PropTypes.number.isRequired,
|
|
12340
|
-
label: PropTypes.string.isRequired,
|
|
12341
|
-
base: T['io.flow.v0.models.price'].isRequired,
|
|
12342
|
-
});
|
|
12343
|
-
|
|
12344
10701
|
T['io.flow.v0.models.price_with_base'] = PropTypes.exact({
|
|
12345
10702
|
currency: PropTypes.string.isRequired,
|
|
12346
10703
|
amount: PropTypes.number.isRequired,
|
|
@@ -12412,6 +10769,32 @@ T['io.flow.v0.models.shopify_cart_item'] = PropTypes.exact({
|
|
|
12412
10769
|
vendor: PropTypes.string,
|
|
12413
10770
|
});
|
|
12414
10771
|
|
|
10772
|
+
T['io.flow.v0.models.order_price_fee'] = PropTypes.exact({
|
|
10773
|
+
key: PropTypes.string.isRequired,
|
|
10774
|
+
value: T['io.flow.v0.models.price_with_base'].isRequired,
|
|
10775
|
+
type: T['io.flow.v0.enums.order_price_fee_type'].isRequired,
|
|
10776
|
+
});
|
|
10777
|
+
|
|
10778
|
+
T['io.flow.v0.models.purchase_price_breakdown'] = PropTypes.exact({
|
|
10779
|
+
total_price: T['io.flow.v0.models.price_with_base'].isRequired,
|
|
10780
|
+
product_price: T['io.flow.v0.models.price_with_base'].isRequired,
|
|
10781
|
+
fees: PropTypes.arrayOf(T['io.flow.v0.models.order_price_fee']).isRequired,
|
|
10782
|
+
});
|
|
10783
|
+
|
|
10784
|
+
T['io.flow.v0.models.order_price_detail_breakdown'] = PropTypes.exact({
|
|
10785
|
+
purchase_price: T['io.flow.v0.models.purchase_price_breakdown'].isRequired,
|
|
10786
|
+
fees: PropTypes.arrayOf(T['io.flow.v0.models.order_price_fee']).isRequired,
|
|
10787
|
+
});
|
|
10788
|
+
|
|
10789
|
+
T['io.flow.v0.models.localized_total'] = PropTypes.exact({
|
|
10790
|
+
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
10791
|
+
currency: PropTypes.string.isRequired,
|
|
10792
|
+
amount: PropTypes.number.isRequired,
|
|
10793
|
+
label: PropTypes.string.isRequired,
|
|
10794
|
+
base: T['io.flow.v0.models.price'].isRequired,
|
|
10795
|
+
breakdown: T['io.flow.v0.models.order_price_detail_breakdown'],
|
|
10796
|
+
});
|
|
10797
|
+
|
|
12415
10798
|
T['io.flow.v0.models.line'] = PropTypes.exact({
|
|
12416
10799
|
id: PropTypes.string,
|
|
12417
10800
|
item_number: PropTypes.string.isRequired,
|
|
@@ -12501,22 +10884,6 @@ T['io.flow.v0.models.available_promotion'] = PropTypes.exact({
|
|
|
12501
10884
|
promotions: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
|
|
12502
10885
|
});
|
|
12503
10886
|
|
|
12504
|
-
T['io.flow.v0.models.available_promotions_upserted_v2'] = PropTypes.exact({
|
|
12505
|
-
discriminator: PropTypes.oneOf(['available_promotions_upserted_v2']).isRequired,
|
|
12506
|
-
event_id: PropTypes.string.isRequired,
|
|
12507
|
-
timestamp: PropTypes.string.isRequired,
|
|
12508
|
-
organization: PropTypes.string.isRequired,
|
|
12509
|
-
available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
|
|
12510
|
-
});
|
|
12511
|
-
|
|
12512
|
-
T['io.flow.v0.models.available_promotions_deleted_v2'] = PropTypes.exact({
|
|
12513
|
-
discriminator: PropTypes.oneOf(['available_promotions_deleted_v2']).isRequired,
|
|
12514
|
-
event_id: PropTypes.string.isRequired,
|
|
12515
|
-
timestamp: PropTypes.string.isRequired,
|
|
12516
|
-
organization: PropTypes.string.isRequired,
|
|
12517
|
-
available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
|
|
12518
|
-
});
|
|
12519
|
-
|
|
12520
10887
|
T['io.flow.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
12521
10888
|
'adjustment',
|
|
12522
10889
|
'vat_deminimis',
|
|
@@ -12570,6 +10937,7 @@ T['io.flow.v0.models.order_price_detail'] = PropTypes.exact({
|
|
|
12570
10937
|
rate: PropTypes.number,
|
|
12571
10938
|
accuracy: T['io.flow.v0.enums.price_accuracy'],
|
|
12572
10939
|
rate_label: PropTypes.string,
|
|
10940
|
+
breakdown: T['io.flow.v0.models.order_price_detail_breakdown'],
|
|
12573
10941
|
});
|
|
12574
10942
|
|
|
12575
10943
|
T['io.flow.v0.models.allocation_detail_component'] = PropTypes.exact({
|
|
@@ -12593,66 +10961,12 @@ T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
|
12593
10961
|
label: PropTypes.string.isRequired,
|
|
12594
10962
|
});
|
|
12595
10963
|
|
|
12596
|
-
T['io.flow.
|
|
12597
|
-
key: PropTypes.oneOf(['localized_item_price']).isRequired,
|
|
12598
|
-
currency: PropTypes.string.isRequired,
|
|
12599
|
-
amount: PropTypes.number.isRequired,
|
|
12600
|
-
label: PropTypes.string.isRequired,
|
|
12601
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
12602
|
-
includes: T['io.flow.common.v0.models.included_levies'],
|
|
12603
|
-
});
|
|
12604
|
-
|
|
12605
|
-
T['io.flow.catalog.v0.models.localized_adjustment'] = PropTypes.exact({
|
|
12606
|
-
currency: PropTypes.string.isRequired,
|
|
12607
|
-
amount: PropTypes.number.isRequired,
|
|
12608
|
-
label: PropTypes.string.isRequired,
|
|
12609
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
12610
|
-
reason: T['io.flow.catalog.v0.models.adjustment_reason'].isRequired,
|
|
12611
|
-
});
|
|
12612
|
-
|
|
12613
|
-
T['io.flow.catalog.v0.models.localized_item_vat'] = PropTypes.exact({
|
|
12614
|
-
key: PropTypes.oneOf(['localized_item_vat']).isRequired,
|
|
12615
|
-
currency: PropTypes.string.isRequired,
|
|
12616
|
-
amount: PropTypes.number.isRequired,
|
|
12617
|
-
label: PropTypes.string.isRequired,
|
|
12618
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
12619
|
-
name: PropTypes.string.isRequired,
|
|
12620
|
-
adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
|
|
12621
|
-
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
12622
|
-
basis: T['io.flow.common.v0.models.money_with_base'],
|
|
12623
|
-
});
|
|
12624
|
-
|
|
12625
|
-
T['io.flow.catalog.v0.models.localized_item_duty'] = PropTypes.exact({
|
|
12626
|
-
key: PropTypes.oneOf(['localized_item_duty']).isRequired,
|
|
12627
|
-
currency: PropTypes.string.isRequired,
|
|
12628
|
-
amount: PropTypes.number.isRequired,
|
|
12629
|
-
label: PropTypes.string.isRequired,
|
|
12630
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
12631
|
-
adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
|
|
12632
|
-
basis: T['io.flow.common.v0.models.money_with_base'],
|
|
12633
|
-
});
|
|
12634
|
-
|
|
12635
|
-
T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
|
|
12636
|
-
id: PropTypes.string.isRequired,
|
|
10964
|
+
T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item_form'] = PropTypes.exact({
|
|
12637
10965
|
number: PropTypes.string.isRequired,
|
|
12638
|
-
|
|
12639
|
-
position: PropTypes.number.isRequired,
|
|
12640
|
-
price: T['io.flow.common.v0.models.price'],
|
|
12641
|
-
categories: PropTypes.arrayOf(PropTypes.string),
|
|
10966
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12642
10967
|
description: PropTypes.string,
|
|
12643
|
-
|
|
12644
|
-
|
|
12645
|
-
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
12646
|
-
deleted_at: PropTypes.string,
|
|
12647
|
-
});
|
|
12648
|
-
|
|
12649
|
-
T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
|
|
12650
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
12651
|
-
currency: PropTypes.string.isRequired,
|
|
12652
|
-
amount: PropTypes.number.isRequired,
|
|
12653
|
-
label: PropTypes.string.isRequired,
|
|
12654
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
12655
|
-
name: PropTypes.string,
|
|
10968
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'].isRequired,
|
|
10969
|
+
added_on: PropTypes.string.isRequired,
|
|
12656
10970
|
});
|
|
12657
10971
|
|
|
12658
10972
|
T['io.flow.tech.onboarding.playground.v0.models.rohan_item_form'] = PropTypes.exact({
|
|
@@ -12685,285 +10999,39 @@ T['io.flow.tech.onboarding.playground.v0.models.niall_item_form'] = PropTypes.ex
|
|
|
12685
10999
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12686
11000
|
description: PropTypes.string,
|
|
12687
11001
|
type: T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'].isRequired,
|
|
12688
|
-
added_on: PropTypes.string.isRequired,
|
|
12689
|
-
});
|
|
12690
|
-
|
|
12691
|
-
T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
|
|
12692
|
-
number: PropTypes.string.isRequired,
|
|
12693
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12694
|
-
description: PropTypes.string,
|
|
12695
|
-
type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
|
|
12696
|
-
added_on: PropTypes.string.isRequired,
|
|
12697
|
-
});
|
|
12698
|
-
|
|
12699
|
-
T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
12700
|
-
number: PropTypes.string.isRequired,
|
|
12701
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12702
|
-
description: PropTypes.string,
|
|
12703
|
-
type: T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'].isRequired,
|
|
12704
|
-
added_on: PropTypes.string.isRequired,
|
|
12705
|
-
});
|
|
12706
|
-
|
|
12707
|
-
T['io.flow.fulfillment.v0.models.flat_rate'] = PropTypes.exact({
|
|
12708
|
-
discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
|
|
12709
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
12710
|
-
zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
|
|
12711
|
-
});
|
|
12712
|
-
|
|
12713
|
-
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
12714
|
-
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
12715
|
-
currency: PropTypes.string.isRequired,
|
|
12716
|
-
amount: PropTypes.number.isRequired,
|
|
12717
|
-
label: PropTypes.string.isRequired,
|
|
12718
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
12719
|
-
});
|
|
12720
|
-
|
|
12721
|
-
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
12722
|
-
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
12723
|
-
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
12724
|
-
T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
12725
|
-
T['io.flow.catalog.v0.models.localized_total'],
|
|
12726
|
-
]);
|
|
12727
|
-
|
|
12728
|
-
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
12729
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
12730
|
-
currency: PropTypes.string.isRequired,
|
|
12731
|
-
amount: PropTypes.number.isRequired,
|
|
12732
|
-
label: PropTypes.string.isRequired,
|
|
12733
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
12734
|
-
components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
|
|
12735
|
-
name: PropTypes.string,
|
|
12736
|
-
rate: PropTypes.number,
|
|
12737
|
-
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
12738
|
-
rate_label: PropTypes.string,
|
|
12739
|
-
});
|
|
12740
|
-
|
|
12741
|
-
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
12742
|
-
discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
|
|
12743
|
-
id: PropTypes.string.isRequired,
|
|
12744
|
-
key: PropTypes.string,
|
|
12745
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
12746
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
12747
|
-
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
12748
|
-
});
|
|
12749
|
-
|
|
12750
|
-
T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
|
|
12751
|
-
id: PropTypes.string.isRequired,
|
|
12752
|
-
cost: T['io.flow.common.v0.models.price'].isRequired,
|
|
12753
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
12754
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
12755
|
-
service: T['io.flow.fulfillment.v0.models.service_reference'].isRequired,
|
|
12756
|
-
tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
|
|
12757
|
-
window: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
12758
|
-
});
|
|
12759
|
-
|
|
12760
|
-
T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
|
|
12761
|
-
id: PropTypes.string.isRequired,
|
|
12762
|
-
timestamp: PropTypes.string.isRequired,
|
|
12763
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
12764
|
-
delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
|
|
12765
|
-
});
|
|
12766
|
-
|
|
12767
|
-
T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.exact({
|
|
12768
|
-
key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
|
|
12769
|
-
currency: PropTypes.string.isRequired,
|
|
12770
|
-
amount: PropTypes.number.isRequired,
|
|
12771
|
-
label: PropTypes.string.isRequired,
|
|
12772
|
-
base: T['io.flow.common.v0.models.price'],
|
|
12773
|
-
});
|
|
12774
|
-
|
|
12775
|
-
T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
|
|
12776
|
-
source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
|
|
12777
|
-
ratecard_id: PropTypes.string,
|
|
12778
|
-
currency: PropTypes.string.isRequired,
|
|
12779
|
-
amount: PropTypes.number.isRequired,
|
|
12780
|
-
label: PropTypes.string.isRequired,
|
|
12781
|
-
base: T['io.flow.common.v0.models.price'],
|
|
12782
|
-
components: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_component']).isRequired,
|
|
12783
|
-
});
|
|
12784
|
-
|
|
12785
|
-
T['io.flow.fulfillment.v0.models.price_with_base_and_details'] = PropTypes.exact({
|
|
12786
|
-
currency: PropTypes.string.isRequired,
|
|
12787
|
-
amount: PropTypes.number.isRequired,
|
|
12788
|
-
label: PropTypes.string.isRequired,
|
|
12789
|
-
base: T['io.flow.common.v0.models.price'],
|
|
12790
|
-
details: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_detail']),
|
|
12791
|
-
});
|
|
12792
|
-
|
|
12793
|
-
T['io.flow.fulfillment.v0.models.item_shipping_pricing'] = PropTypes.exact({
|
|
12794
|
-
min: T['io.flow.common.v0.models.price'].isRequired,
|
|
12795
|
-
max: T['io.flow.common.v0.models.price'],
|
|
12796
|
-
});
|
|
12797
|
-
|
|
12798
|
-
T['io.flow.fulfillment.v0.models.country_shipping_pricing'] = PropTypes.exact({
|
|
12799
|
-
pricing: T['io.flow.fulfillment.v0.models.item_shipping_pricing'].isRequired,
|
|
12800
|
-
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12801
|
-
});
|
|
12802
|
-
|
|
12803
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
|
|
12804
|
-
id: PropTypes.string.isRequired,
|
|
12805
|
-
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
12806
|
-
shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
|
|
12807
|
-
country_shipping_pricings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_shipping_pricing']).isRequired,
|
|
12808
|
-
});
|
|
12809
|
-
|
|
12810
|
-
T['io.flow.fulfillment.v0.models.amount_margin'] = PropTypes.exact({
|
|
12811
|
-
discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
|
|
12812
|
-
margin: T['io.flow.common.v0.models.price'].isRequired,
|
|
12813
|
-
});
|
|
12814
|
-
|
|
12815
|
-
T['io.flow.fulfillment.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
|
|
12816
|
-
T['io.flow.fulfillment.v0.models.amount_margin'],
|
|
12817
|
-
T['io.flow.fulfillment.v0.models.at_cost'],
|
|
12818
|
-
T['io.flow.fulfillment.v0.models.flat_rate'],
|
|
12819
|
-
T['io.flow.fulfillment.v0.models.percent_margin'],
|
|
12820
|
-
]);
|
|
12821
|
-
|
|
12822
|
-
T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
|
|
12823
|
-
id: PropTypes.string.isRequired,
|
|
12824
|
-
position: PropTypes.number.isRequired,
|
|
12825
|
-
query: PropTypes.string.isRequired,
|
|
12826
|
-
outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'].isRequired,
|
|
12827
|
-
});
|
|
12828
|
-
|
|
12829
|
-
T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
|
|
12830
|
-
id: PropTypes.string.isRequired,
|
|
12831
|
-
timestamp: PropTypes.string.isRequired,
|
|
12832
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
12833
|
-
tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
|
|
12834
|
-
});
|
|
12835
|
-
|
|
12836
|
-
T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
|
|
12837
|
-
id: PropTypes.string.isRequired,
|
|
12838
|
-
direction: T['io.flow.fulfillment.v0.enums.lane_direction'].isRequired,
|
|
12839
|
-
integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
|
|
12840
|
-
name: PropTypes.string.isRequired,
|
|
12841
|
-
message: PropTypes.string,
|
|
12842
|
-
rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule']).isRequired,
|
|
12843
|
-
services: PropTypes.arrayOf(T['io.flow.reference.v0.models.carrier_service']).isRequired,
|
|
12844
|
-
strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
|
|
12845
|
-
visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
|
|
12846
|
-
currency: PropTypes.string.isRequired,
|
|
12847
|
-
description: PropTypes.string,
|
|
12848
|
-
display: T['io.flow.fulfillment.v0.models.tier_display'],
|
|
12849
|
-
shipping_lane: PropTypes.string,
|
|
12850
|
-
surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
|
|
12851
|
-
lane: T['io.flow.fulfillment.v0.models.shipping_lane_summary'],
|
|
12852
|
-
settings: T['io.flow.fulfillment.v0.models.tier_settings'],
|
|
12853
|
-
});
|
|
12854
|
-
|
|
12855
|
-
T['io.flow.fulfillment.v0.models.shipping_lane'] = PropTypes.exact({
|
|
12856
|
-
id: PropTypes.string.isRequired,
|
|
12857
|
-
shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
|
|
12858
|
-
region: PropTypes.string.isRequired,
|
|
12859
|
-
centers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.expandable_center']).isRequired,
|
|
12860
|
-
tiers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier']).isRequired,
|
|
12861
|
-
query: T['io.flow.query.builder.v0.models.query'].isRequired,
|
|
12862
|
-
strategy: T['io.flow.fulfillment.v0.enums.lane_strategy'].isRequired,
|
|
12863
|
-
direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
|
|
12864
|
-
preference: T['io.flow.fulfillment.v0.enums.lane_preselect_preference'],
|
|
12865
|
-
});
|
|
12866
|
-
|
|
12867
|
-
T['io.flow.fulfillment.v0.models.shipping_lane_version'] = PropTypes.exact({
|
|
12868
|
-
id: PropTypes.string.isRequired,
|
|
12869
|
-
timestamp: PropTypes.string.isRequired,
|
|
12870
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
12871
|
-
shipping_lane: T['io.flow.fulfillment.v0.models.shipping_lane'].isRequired,
|
|
12872
|
-
});
|
|
12873
|
-
|
|
12874
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration'] = PropTypes.exact({
|
|
12875
|
-
id: PropTypes.string.isRequired,
|
|
12876
|
-
name: PropTypes.string.isRequired,
|
|
12877
|
-
key: PropTypes.string.isRequired,
|
|
12878
|
-
type: T['io.flow.fulfillment.v0.enums.shipping_configuration_type'].isRequired,
|
|
12879
|
-
shipping_lanes: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.shipping_lane']).isRequired,
|
|
12880
|
-
});
|
|
12881
|
-
|
|
12882
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration_version'] = PropTypes.exact({
|
|
12883
|
-
id: PropTypes.string.isRequired,
|
|
12884
|
-
timestamp: PropTypes.string.isRequired,
|
|
12885
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
12886
|
-
shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration'].isRequired,
|
|
12887
|
-
});
|
|
12888
|
-
|
|
12889
|
-
T['io.flow.fulfillment.v0.models.delivery_option'] = PropTypes.exact({
|
|
12890
|
-
id: PropTypes.string.isRequired,
|
|
12891
|
-
cost: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
|
|
12892
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
12893
|
-
price: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
|
|
12894
|
-
service: T['io.flow.fulfillment.v0.models.service_summary'].isRequired,
|
|
12895
|
-
tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
|
|
12896
|
-
window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
|
|
12897
|
-
rule_outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'],
|
|
12898
|
-
weight: T['io.flow.fulfillment.v0.models.option_weight_estimates'],
|
|
12899
|
-
send_to: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
12900
|
-
surcharge: T['io.flow.fulfillment.v0.models.price_with_base_and_details'],
|
|
12901
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
12902
|
-
});
|
|
12903
|
-
|
|
12904
|
-
T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
12905
|
-
discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
|
|
12906
|
-
id: PropTypes.string.isRequired,
|
|
12907
|
-
key: PropTypes.string,
|
|
12908
|
-
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
12909
|
-
fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
|
|
12910
|
-
ship_from_country: PropTypes.string,
|
|
12911
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
12912
|
-
options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
|
|
12913
|
-
special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
|
|
12914
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
12915
|
-
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
12916
|
-
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
12917
|
-
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
12918
|
-
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
12919
|
-
});
|
|
12920
|
-
|
|
12921
|
-
T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
|
|
12922
|
-
T['io.flow.fulfillment.v0.models.digital_delivery'],
|
|
12923
|
-
T['io.flow.fulfillment.v0.models.physical_delivery'],
|
|
12924
|
-
]);
|
|
12925
|
-
|
|
12926
|
-
T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
12927
|
-
id: PropTypes.string.isRequired,
|
|
12928
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
12929
|
-
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
12930
|
-
selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
|
|
12931
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
12932
|
-
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
12933
|
-
});
|
|
12934
|
-
|
|
12935
|
-
T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
|
|
12936
|
-
id: PropTypes.string.isRequired,
|
|
12937
|
-
key: PropTypes.string.isRequired,
|
|
12938
|
-
price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
|
|
12939
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
12940
|
-
item_number: PropTypes.string.isRequired,
|
|
12941
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
12942
|
-
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
11002
|
+
added_on: PropTypes.string.isRequired,
|
|
12943
11003
|
});
|
|
12944
11004
|
|
|
12945
|
-
T['io.flow.
|
|
12946
|
-
|
|
12947
|
-
|
|
12948
|
-
|
|
12949
|
-
|
|
12950
|
-
|
|
12951
|
-
|
|
12952
|
-
|
|
12953
|
-
|
|
12954
|
-
|
|
11005
|
+
T['io.flow.tech.onboarding.playground.v0.models.hosein_item_form'] = PropTypes.exact({
|
|
11006
|
+
number: PropTypes.string.isRequired,
|
|
11007
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
11008
|
+
description: PropTypes.string,
|
|
11009
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'].isRequired,
|
|
11010
|
+
added_on: PropTypes.string.isRequired,
|
|
11011
|
+
});
|
|
11012
|
+
|
|
11013
|
+
T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
|
|
11014
|
+
number: PropTypes.string.isRequired,
|
|
11015
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
11016
|
+
description: PropTypes.string,
|
|
11017
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
|
|
11018
|
+
added_on: PropTypes.string.isRequired,
|
|
12955
11019
|
});
|
|
12956
11020
|
|
|
12957
|
-
T['io.flow.
|
|
12958
|
-
|
|
12959
|
-
|
|
12960
|
-
|
|
12961
|
-
|
|
11021
|
+
T['io.flow.tech.onboarding.playground.v0.models.anirban_item_form'] = PropTypes.exact({
|
|
11022
|
+
number: PropTypes.string.isRequired,
|
|
11023
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
11024
|
+
description: PropTypes.string,
|
|
11025
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'].isRequired,
|
|
11026
|
+
added_on: PropTypes.string.isRequired,
|
|
12962
11027
|
});
|
|
12963
11028
|
|
|
12964
|
-
T['io.flow.
|
|
12965
|
-
|
|
12966
|
-
|
|
11029
|
+
T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
11030
|
+
number: PropTypes.string.isRequired,
|
|
11031
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
11032
|
+
description: PropTypes.string,
|
|
11033
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'].isRequired,
|
|
11034
|
+
added_on: PropTypes.string.isRequired,
|
|
12967
11035
|
});
|
|
12968
11036
|
|
|
12969
11037
|
T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
|
|
@@ -12973,51 +11041,20 @@ T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
|
|
|
12973
11041
|
base: T['io.flow.common.v0.models.price'],
|
|
12974
11042
|
});
|
|
12975
11043
|
|
|
12976
|
-
T['io.flow.
|
|
12977
|
-
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
12978
|
-
prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
|
|
12979
|
-
rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']).isRequired,
|
|
12980
|
-
spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
12981
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
12982
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12983
|
-
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
|
|
12984
|
-
});
|
|
12985
|
-
|
|
12986
|
-
T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
11044
|
+
T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'] = PropTypes.exact({
|
|
12987
11045
|
id: PropTypes.string.isRequired,
|
|
12988
11046
|
number: PropTypes.string.isRequired,
|
|
12989
|
-
|
|
12990
|
-
name: PropTypes.string.isRequired,
|
|
12991
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
12992
|
-
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11047
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12993
11048
|
description: PropTypes.string,
|
|
12994
|
-
|
|
12995
|
-
|
|
12996
|
-
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
12997
|
-
local: T['io.flow.catalog.v0.models.local'],
|
|
12998
|
-
created_at: PropTypes.string,
|
|
12999
|
-
updated_at: PropTypes.string,
|
|
13000
|
-
deleted_at: PropTypes.string,
|
|
13001
|
-
});
|
|
13002
|
-
|
|
13003
|
-
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
13004
|
-
id: PropTypes.string.isRequired,
|
|
13005
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
13006
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
13007
|
-
});
|
|
13008
|
-
|
|
13009
|
-
T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
|
|
13010
|
-
id: PropTypes.string.isRequired,
|
|
13011
|
-
timestamp: PropTypes.string.isRequired,
|
|
13012
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
13013
|
-
subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
|
|
11049
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'].isRequired,
|
|
11050
|
+
added_on: PropTypes.string.isRequired,
|
|
13014
11051
|
});
|
|
13015
11052
|
|
|
13016
|
-
T['io.flow.
|
|
13017
|
-
|
|
11053
|
+
T['io.flow.v0.models.sarvesh_item_upserted'] = PropTypes.exact({
|
|
11054
|
+
discriminator: PropTypes.oneOf(['sarvesh_item_upserted']).isRequired,
|
|
11055
|
+
event_id: PropTypes.string.isRequired,
|
|
13018
11056
|
timestamp: PropTypes.string.isRequired,
|
|
13019
|
-
|
|
13020
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
11057
|
+
item: T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'].isRequired,
|
|
13021
11058
|
});
|
|
13022
11059
|
|
|
13023
11060
|
T['io.flow.tech.onboarding.playground.v0.models.rohan_item'] = PropTypes.exact({
|
|
@@ -13052,6 +11089,22 @@ T['io.flow.v0.models.niall_item_upserted'] = PropTypes.exact({
|
|
|
13052
11089
|
item: T['io.flow.tech.onboarding.playground.v0.models.niall_item'].isRequired,
|
|
13053
11090
|
});
|
|
13054
11091
|
|
|
11092
|
+
T['io.flow.tech.onboarding.playground.v0.models.hosein_item'] = PropTypes.exact({
|
|
11093
|
+
id: PropTypes.string.isRequired,
|
|
11094
|
+
number: PropTypes.string.isRequired,
|
|
11095
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
11096
|
+
description: PropTypes.string,
|
|
11097
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'].isRequired,
|
|
11098
|
+
added_on: PropTypes.string.isRequired,
|
|
11099
|
+
});
|
|
11100
|
+
|
|
11101
|
+
T['io.flow.v0.models.hosein_item_upserted'] = PropTypes.exact({
|
|
11102
|
+
discriminator: PropTypes.oneOf(['hosein_item_upserted']).isRequired,
|
|
11103
|
+
event_id: PropTypes.string.isRequired,
|
|
11104
|
+
timestamp: PropTypes.string.isRequired,
|
|
11105
|
+
item: T['io.flow.tech.onboarding.playground.v0.models.hosein_item'].isRequired,
|
|
11106
|
+
});
|
|
11107
|
+
|
|
13055
11108
|
T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
|
|
13056
11109
|
id: PropTypes.string.isRequired,
|
|
13057
11110
|
number: PropTypes.string.isRequired,
|
|
@@ -13068,6 +11121,22 @@ T['io.flow.v0.models.ansh_item_upserted'] = PropTypes.exact({
|
|
|
13068
11121
|
item: T['io.flow.tech.onboarding.playground.v0.models.ansh_item'].isRequired,
|
|
13069
11122
|
});
|
|
13070
11123
|
|
|
11124
|
+
T['io.flow.tech.onboarding.playground.v0.models.anirban_item'] = PropTypes.exact({
|
|
11125
|
+
id: PropTypes.string.isRequired,
|
|
11126
|
+
number: PropTypes.string.isRequired,
|
|
11127
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
11128
|
+
description: PropTypes.string,
|
|
11129
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'].isRequired,
|
|
11130
|
+
added_on: PropTypes.string.isRequired,
|
|
11131
|
+
});
|
|
11132
|
+
|
|
11133
|
+
T['io.flow.v0.models.anirban_item_upserted'] = PropTypes.exact({
|
|
11134
|
+
discriminator: PropTypes.oneOf(['anirban_item_upserted']).isRequired,
|
|
11135
|
+
event_id: PropTypes.string.isRequired,
|
|
11136
|
+
timestamp: PropTypes.string.isRequired,
|
|
11137
|
+
item: T['io.flow.tech.onboarding.playground.v0.models.anirban_item'].isRequired,
|
|
11138
|
+
});
|
|
11139
|
+
|
|
13071
11140
|
T['io.flow.tech.onboarding.playground.v0.models.aldo_item'] = PropTypes.exact({
|
|
13072
11141
|
id: PropTypes.string.isRequired,
|
|
13073
11142
|
number: PropTypes.string.isRequired,
|
|
@@ -13596,6 +11665,17 @@ T['io.flow.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
|
|
|
13596
11665
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
13597
11666
|
});
|
|
13598
11667
|
|
|
11668
|
+
T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
11669
|
+
shop_id: PropTypes.string.isRequired,
|
|
11670
|
+
product_id: PropTypes.string,
|
|
11671
|
+
name: PropTypes.string.isRequired,
|
|
11672
|
+
price: T['io.flow.v0.models.money'].isRequired,
|
|
11673
|
+
description: PropTypes.string.isRequired,
|
|
11674
|
+
taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'].isRequired,
|
|
11675
|
+
status: T['io.flow.v0.enums.sellability_request_status'],
|
|
11676
|
+
dry_run: PropTypes.bool,
|
|
11677
|
+
});
|
|
11678
|
+
|
|
13599
11679
|
T['io.flow.v0.models.price_source_provided'] = PropTypes.exact({
|
|
13600
11680
|
discriminator: PropTypes.oneOf(['provided']).isRequired,
|
|
13601
11681
|
price: T['io.flow.v0.models.money'].isRequired,
|
|
@@ -14038,6 +12118,7 @@ T['io.flow.v0.models.localized_line_item'] = PropTypes.exact({
|
|
|
14038
12118
|
local: T['io.flow.v0.models.local'].isRequired,
|
|
14039
12119
|
shipment_estimate: T['io.flow.v0.models.datetime_range'],
|
|
14040
12120
|
price_source: T['io.flow.v0.unions.price_source'],
|
|
12121
|
+
breakdown: T['io.flow.v0.models.order_price_detail_breakdown'],
|
|
14041
12122
|
});
|
|
14042
12123
|
|
|
14043
12124
|
T['io.flow.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
|
|
@@ -14367,6 +12448,30 @@ T['io.flow.v0.models.measurement'] = PropTypes.exact({
|
|
|
14367
12448
|
units: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
|
|
14368
12449
|
});
|
|
14369
12450
|
|
|
12451
|
+
T['io.flow.v0.models.tax_duty_quote_line_item_form'] = PropTypes.exact({
|
|
12452
|
+
primary_identifier: PropTypes.string.isRequired,
|
|
12453
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12454
|
+
ship_from: T['io.flow.v0.models.street_address'].isRequired,
|
|
12455
|
+
quantity: PropTypes.number.isRequired,
|
|
12456
|
+
unit_price: PropTypes.number.isRequired,
|
|
12457
|
+
unit_weight: T['io.flow.v0.models.measurement'],
|
|
12458
|
+
country_of_origin: PropTypes.string,
|
|
12459
|
+
hs_code: PropTypes.string,
|
|
12460
|
+
includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']).isRequired,
|
|
12461
|
+
preferential_rate_eligibilities: PropTypes.arrayOf(T['io.flow.v0.enums.preferential_rate_eligibility']),
|
|
12462
|
+
});
|
|
12463
|
+
|
|
12464
|
+
T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
|
|
12465
|
+
primary_identifier: PropTypes.string.isRequired,
|
|
12466
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12467
|
+
delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
|
|
12468
|
+
destination: T['io.flow.v0.models.street_address'].isRequired,
|
|
12469
|
+
currency: PropTypes.string.isRequired,
|
|
12470
|
+
lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item_form']).isRequired,
|
|
12471
|
+
shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping_form']).isRequired,
|
|
12472
|
+
includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
|
|
12473
|
+
});
|
|
12474
|
+
|
|
14370
12475
|
T['io.flow.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
14371
12476
|
depth: T['io.flow.v0.models.measurement'].isRequired,
|
|
14372
12477
|
length: T['io.flow.v0.models.measurement'].isRequired,
|
|
@@ -15715,36 +13820,6 @@ T['io.flow.v0.models.order_customer'] = PropTypes.exact({
|
|
|
15715
13820
|
invoice: T['io.flow.v0.models.customer_invoice'],
|
|
15716
13821
|
});
|
|
15717
13822
|
|
|
15718
|
-
T['io.flow.v0.models.order_upserted'] = PropTypes.exact({
|
|
15719
|
-
discriminator: PropTypes.oneOf(['order_upserted']).isRequired,
|
|
15720
|
-
event_id: PropTypes.string.isRequired,
|
|
15721
|
-
timestamp: PropTypes.string.isRequired,
|
|
15722
|
-
organization: PropTypes.string.isRequired,
|
|
15723
|
-
number: PropTypes.string.isRequired,
|
|
15724
|
-
environment: PropTypes.string.isRequired,
|
|
15725
|
-
experience_id: PropTypes.string.isRequired,
|
|
15726
|
-
expires_at: PropTypes.string.isRequired,
|
|
15727
|
-
customer: T['io.flow.v0.models.order_customer'].isRequired,
|
|
15728
|
-
selections: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15729
|
-
items: PropTypes.arrayOf(T['io.flow.v0.models.localized_line_item']).isRequired,
|
|
15730
|
-
destination: T['io.flow.v0.models.order_address'].isRequired,
|
|
15731
|
-
deliveries: PropTypes.arrayOf(T['io.flow.v0.unions.delivery']).isRequired,
|
|
15732
|
-
prices: PropTypes.arrayOf(T['io.flow.v0.models.order_price_detail']).isRequired,
|
|
15733
|
-
order_id: PropTypes.string,
|
|
15734
|
-
payments: PropTypes.arrayOf(T['io.flow.v0.models.order_payment']),
|
|
15735
|
-
discount: T['io.flow.v0.models.money'],
|
|
15736
|
-
delivered_duty: PropTypes.string,
|
|
15737
|
-
total: T['io.flow.v0.models.localized_total'].isRequired,
|
|
15738
|
-
created_at: PropTypes.string,
|
|
15739
|
-
updated_at: PropTypes.string,
|
|
15740
|
-
submitted_at: PropTypes.string,
|
|
15741
|
-
lines: PropTypes.arrayOf(T['io.flow.v0.models.line']),
|
|
15742
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
15743
|
-
geo: T['io.flow.v0.models.order_geo'],
|
|
15744
|
-
merchant_of_record: T['io.flow.v0.enums.order_merchant_of_record'],
|
|
15745
|
-
tax_registration: T['io.flow.v0.models.tax_registration'],
|
|
15746
|
-
});
|
|
15747
|
-
|
|
15748
13823
|
T['io.flow.v0.models.order'] = PropTypes.exact({
|
|
15749
13824
|
discriminator: PropTypes.oneOf(['order']).isRequired,
|
|
15750
13825
|
id: PropTypes.string.isRequired,
|
|
@@ -15775,6 +13850,8 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
|
|
|
15775
13850
|
destination_contact_details: PropTypes.arrayOf(T['io.flow.v0.models.destination_contact_detail']),
|
|
15776
13851
|
incoterm_summary: T['io.flow.v0.models.incoterm_summary'],
|
|
15777
13852
|
payment_source: T['io.flow.v0.enums.order_payment_source_type'],
|
|
13853
|
+
edits: PropTypes.arrayOf(T['io.flow.v0.models.edit_summary']),
|
|
13854
|
+
rates: PropTypes.arrayOf(T['io.flow.v0.models.order_rate']),
|
|
15778
13855
|
});
|
|
15779
13856
|
|
|
15780
13857
|
T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -15835,22 +13912,6 @@ T['io.flow.v0.models.order_replacement'] = PropTypes.exact({
|
|
|
15835
13912
|
replacement_order: T['io.flow.v0.models.order'].isRequired,
|
|
15836
13913
|
});
|
|
15837
13914
|
|
|
15838
|
-
T['io.flow.v0.models.order_replacement_upserted'] = PropTypes.exact({
|
|
15839
|
-
discriminator: PropTypes.oneOf(['order_replacement_upserted']).isRequired,
|
|
15840
|
-
event_id: PropTypes.string.isRequired,
|
|
15841
|
-
timestamp: PropTypes.string.isRequired,
|
|
15842
|
-
organization: PropTypes.string.isRequired,
|
|
15843
|
-
order_replacement: T['io.flow.v0.models.order_replacement'].isRequired,
|
|
15844
|
-
});
|
|
15845
|
-
|
|
15846
|
-
T['io.flow.v0.models.order_replacement_deleted'] = PropTypes.exact({
|
|
15847
|
-
discriminator: PropTypes.oneOf(['order_replacement_deleted']).isRequired,
|
|
15848
|
-
event_id: PropTypes.string.isRequired,
|
|
15849
|
-
timestamp: PropTypes.string.isRequired,
|
|
15850
|
-
organization: PropTypes.string.isRequired,
|
|
15851
|
-
order_replacement: T['io.flow.v0.models.order_replacement'].isRequired,
|
|
15852
|
-
});
|
|
15853
|
-
|
|
15854
13915
|
T['io.flow.v0.models.order_placed_details'] = PropTypes.exact({
|
|
15855
13916
|
id: PropTypes.string.isRequired,
|
|
15856
13917
|
order: T['io.flow.v0.models.order'].isRequired,
|
|
@@ -16527,6 +14588,10 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
|
|
|
16527
14588
|
T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
16528
14589
|
T['io.flow.v0.models.test_upserted'],
|
|
16529
14590
|
T['io.flow.v0.models.generate_load'],
|
|
14591
|
+
T['io.flow.v0.models.sarvesh_item_upserted'],
|
|
14592
|
+
T['io.flow.v0.models.sarvesh_item_deleted'],
|
|
14593
|
+
T['io.flow.v0.models.hosein_item_upserted'],
|
|
14594
|
+
T['io.flow.v0.models.hosein_item_deleted'],
|
|
16530
14595
|
T['io.flow.v0.models.niall_item_upserted'],
|
|
16531
14596
|
T['io.flow.v0.models.niall_item_deleted'],
|
|
16532
14597
|
T['io.flow.v0.models.rohan_item_upserted'],
|
|
@@ -16535,6 +14600,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16535
14600
|
T['io.flow.v0.models.aldo_item_deleted'],
|
|
16536
14601
|
T['io.flow.v0.models.ansh_item_upserted'],
|
|
16537
14602
|
T['io.flow.v0.models.ansh_item_deleted'],
|
|
14603
|
+
T['io.flow.v0.models.anirban_item_upserted'],
|
|
14604
|
+
T['io.flow.v0.models.anirban_item_deleted'],
|
|
16538
14605
|
T['io.flow.v0.models.transaction_upserted'],
|
|
16539
14606
|
T['io.flow.v0.models.organization_transaction_upserted'],
|
|
16540
14607
|
T['io.flow.v0.models.organization_transaction_deleted'],
|
|
@@ -16589,44 +14656,12 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16589
14656
|
T['io.flow.v0.models.rate_upserted'],
|
|
16590
14657
|
T['io.flow.v0.models.rate_deleted_v3'],
|
|
16591
14658
|
T['io.flow.v0.models.rate_upserted_v3'],
|
|
16592
|
-
T['io.flow.v0.models.available_promotions_upserted'],
|
|
16593
|
-
T['io.flow.v0.models.available_promotions_deleted'],
|
|
16594
|
-
T['io.flow.v0.models.available_promotions_upserted_v2'],
|
|
16595
|
-
T['io.flow.v0.models.available_promotions_deleted_v2'],
|
|
16596
14659
|
T['io.flow.v0.models.allocation_deleted_v2'],
|
|
16597
14660
|
T['io.flow.v0.models.allocation_upserted_v2'],
|
|
16598
|
-
T['io.flow.v0.models.currency_format_deleted'],
|
|
16599
|
-
T['io.flow.v0.models.currency_format_upserted'],
|
|
16600
|
-
T['io.flow.v0.models.experience_deleted'],
|
|
16601
|
-
T['io.flow.v0.models.experience_upserted'],
|
|
16602
|
-
T['io.flow.v0.models.experience_deleted_v2'],
|
|
16603
|
-
T['io.flow.v0.models.experience_upserted_v2'],
|
|
16604
|
-
T['io.flow.v0.models.country_status_upserted'],
|
|
16605
|
-
T['io.flow.v0.models.country_status_deleted'],
|
|
16606
|
-
T['io.flow.v0.models.experience_price_book_mapping_deleted'],
|
|
16607
|
-
T['io.flow.v0.models.experience_price_book_mapping_upserted'],
|
|
16608
|
-
T['io.flow.v0.models.experience_logistics_settings_upserted'],
|
|
16609
|
-
T['io.flow.v0.models.experience_logistics_settings_deleted'],
|
|
16610
|
-
T['io.flow.v0.models.item_margin_deleted_v2'],
|
|
16611
|
-
T['io.flow.v0.models.item_margin_upserted_v2'],
|
|
16612
|
-
T['io.flow.v0.models.item_sales_margin_deleted'],
|
|
16613
|
-
T['io.flow.v0.models.item_sales_margin_upserted'],
|
|
16614
|
-
T['io.flow.v0.models.label_format_deleted'],
|
|
16615
|
-
T['io.flow.v0.models.label_format_upserted'],
|
|
16616
|
-
T['io.flow.v0.models.order_deleted'],
|
|
16617
|
-
T['io.flow.v0.models.order_upserted'],
|
|
16618
14661
|
T['io.flow.v0.models.order_deleted_v2'],
|
|
16619
14662
|
T['io.flow.v0.models.order_upserted_v2'],
|
|
16620
|
-
T['io.flow.v0.models.order_identifier_deleted'],
|
|
16621
|
-
T['io.flow.v0.models.order_identifier_upserted'],
|
|
16622
14663
|
T['io.flow.v0.models.order_identifier_deleted_v2'],
|
|
16623
|
-
T['io.flow.v0.models.order_identifier_upserted_v2'],
|
|
16624
14664
|
T['io.flow.v0.models.order_identifier_upserted_v3'],
|
|
16625
|
-
T['io.flow.v0.models.order_replacement_upserted'],
|
|
16626
|
-
T['io.flow.v0.models.order_replacement_deleted'],
|
|
16627
|
-
T['io.flow.v0.models.pricing_deleted'],
|
|
16628
|
-
T['io.flow.v0.models.pricing_upserted'],
|
|
16629
|
-
T['io.flow.v0.models.order_service_change_request'],
|
|
16630
14665
|
T['io.flow.v0.models.fraud_status_changed'],
|
|
16631
14666
|
T['io.flow.v0.models.center_upserted'],
|
|
16632
14667
|
T['io.flow.v0.models.center_deleted'],
|
|
@@ -16651,8 +14686,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16651
14686
|
T['io.flow.v0.models.item_origin_deleted'],
|
|
16652
14687
|
T['io.flow.v0.models.harmonized_landed_cost_upserted'],
|
|
16653
14688
|
T['io.flow.v0.models.fully_harmonized_item_upserted'],
|
|
16654
|
-
T['io.flow.v0.models.import_completed_v2'],
|
|
16655
|
-
T['io.flow.v0.models.import_failed_v2'],
|
|
16656
14689
|
T['io.flow.v0.models.label_upserted'],
|
|
16657
14690
|
T['io.flow.v0.models.label_deleted_v2'],
|
|
16658
14691
|
T['io.flow.v0.models.label_upserted_v2'],
|
|
@@ -16761,6 +14794,7 @@ T['io.flow.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
|
16761
14794
|
package_dimensions_source: T['io.flow.v0.enums.package_dimensions_source'],
|
|
16762
14795
|
origin_location_source: T['io.flow.v0.enums.origin_location_source'],
|
|
16763
14796
|
reference_id: PropTypes.string,
|
|
14797
|
+
shipping_date_time: PropTypes.string,
|
|
16764
14798
|
});
|
|
16765
14799
|
|
|
16766
14800
|
T['io.flow.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
@@ -16913,6 +14947,10 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
|
|
|
16913
14947
|
T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
16914
14948
|
'test_upserted',
|
|
16915
14949
|
'generate_load',
|
|
14950
|
+
'sarvesh_item_upserted',
|
|
14951
|
+
'sarvesh_item_deleted',
|
|
14952
|
+
'hosein_item_upserted',
|
|
14953
|
+
'hosein_item_deleted',
|
|
16916
14954
|
'niall_item_upserted',
|
|
16917
14955
|
'niall_item_deleted',
|
|
16918
14956
|
'rohan_item_upserted',
|
|
@@ -16921,6 +14959,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
16921
14959
|
'aldo_item_deleted',
|
|
16922
14960
|
'ansh_item_upserted',
|
|
16923
14961
|
'ansh_item_deleted',
|
|
14962
|
+
'anirban_item_upserted',
|
|
14963
|
+
'anirban_item_deleted',
|
|
16924
14964
|
'transaction_upserted',
|
|
16925
14965
|
'organization_transaction_upserted',
|
|
16926
14966
|
'organization_transaction_deleted',
|
|
@@ -16975,44 +15015,12 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
16975
15015
|
'rate_upserted',
|
|
16976
15016
|
'rate_deleted_v3',
|
|
16977
15017
|
'rate_upserted_v3',
|
|
16978
|
-
'available_promotions_upserted',
|
|
16979
|
-
'available_promotions_deleted',
|
|
16980
|
-
'available_promotions_upserted_v2',
|
|
16981
|
-
'available_promotions_deleted_v2',
|
|
16982
15018
|
'allocation_deleted_v2',
|
|
16983
15019
|
'allocation_upserted_v2',
|
|
16984
|
-
'currency_format_deleted',
|
|
16985
|
-
'currency_format_upserted',
|
|
16986
|
-
'experience_deleted',
|
|
16987
|
-
'experience_upserted',
|
|
16988
|
-
'experience_deleted_v2',
|
|
16989
|
-
'experience_upserted_v2',
|
|
16990
|
-
'country_status_upserted',
|
|
16991
|
-
'country_status_deleted',
|
|
16992
|
-
'experience_price_book_mapping_deleted',
|
|
16993
|
-
'experience_price_book_mapping_upserted',
|
|
16994
|
-
'experience_logistics_settings_upserted',
|
|
16995
|
-
'experience_logistics_settings_deleted',
|
|
16996
|
-
'item_margin_deleted_v2',
|
|
16997
|
-
'item_margin_upserted_v2',
|
|
16998
|
-
'item_sales_margin_deleted',
|
|
16999
|
-
'item_sales_margin_upserted',
|
|
17000
|
-
'label_format_deleted',
|
|
17001
|
-
'label_format_upserted',
|
|
17002
|
-
'order_deleted',
|
|
17003
|
-
'order_upserted',
|
|
17004
15020
|
'order_deleted_v2',
|
|
17005
15021
|
'order_upserted_v2',
|
|
17006
|
-
'order_identifier_deleted',
|
|
17007
|
-
'order_identifier_upserted',
|
|
17008
15022
|
'order_identifier_deleted_v2',
|
|
17009
|
-
'order_identifier_upserted_v2',
|
|
17010
15023
|
'order_identifier_upserted_v3',
|
|
17011
|
-
'order_replacement_upserted',
|
|
17012
|
-
'order_replacement_deleted',
|
|
17013
|
-
'pricing_deleted',
|
|
17014
|
-
'pricing_upserted',
|
|
17015
|
-
'order_service_change_request',
|
|
17016
15024
|
'fraud_status_changed',
|
|
17017
15025
|
'center_upserted',
|
|
17018
15026
|
'center_deleted',
|
|
@@ -17037,8 +15045,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
17037
15045
|
'item_origin_deleted',
|
|
17038
15046
|
'harmonized_landed_cost_upserted',
|
|
17039
15047
|
'fully_harmonized_item_upserted',
|
|
17040
|
-
'import_completed_v2',
|
|
17041
|
-
'import_failed_v2',
|
|
17042
15048
|
'label_upserted',
|
|
17043
15049
|
'label_deleted_v2',
|
|
17044
15050
|
'label_upserted_v2',
|
|
@@ -17627,6 +15633,12 @@ T['io.flow.v0.models.order_service_change_form'] = PropTypes.exact({
|
|
|
17627
15633
|
to_service_id: PropTypes.string.isRequired,
|
|
17628
15634
|
});
|
|
17629
15635
|
|
|
15636
|
+
T['io.flow.v0.models.order_service_change_request_data'] = PropTypes.exact({
|
|
15637
|
+
id: PropTypes.string.isRequired,
|
|
15638
|
+
source_url: PropTypes.string.isRequired,
|
|
15639
|
+
filename: PropTypes.string,
|
|
15640
|
+
});
|
|
15641
|
+
|
|
17630
15642
|
T['io.flow.v0.models.organization_bank_account'] = PropTypes.exact({
|
|
17631
15643
|
id: PropTypes.string.isRequired,
|
|
17632
15644
|
key: PropTypes.string.isRequired,
|
|
@@ -18064,7 +16076,20 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_shop_redact'] = PropTypes.
|
|
|
18064
16076
|
shop_domain: PropTypes.string.isRequired,
|
|
18065
16077
|
});
|
|
18066
16078
|
|
|
16079
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
|
|
16080
|
+
|
|
16081
|
+
T['io.flow.channel.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
|
|
16082
|
+
placeholder: PropTypes.string,
|
|
16083
|
+
});
|
|
16084
|
+
|
|
16085
|
+
T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
|
|
16086
|
+
T['io.flow.common.v0.enums.availability_status'] = PropTypes.oneOf(['enabled', 'disabled']);
|
|
18067
16087
|
T['io.flow.common.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
|
|
16088
|
+
T['io.flow.common.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
|
|
16089
|
+
T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
|
|
16090
|
+
T['io.flow.common.v0.enums.currency_symbol_format'] = PropTypes.oneOf(['narrow', 'primary']);
|
|
16091
|
+
T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
|
|
16092
|
+
T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
|
|
18068
16093
|
|
|
18069
16094
|
T['io.flow.common.v0.enums.incoterm'] = PropTypes.oneOf([
|
|
18070
16095
|
'EXW',
|
|
@@ -18087,9 +16112,23 @@ T['io.flow.common.v0.enums.incoterm'] = PropTypes.oneOf([
|
|
|
18087
16112
|
T['io.flow.common.v0.enums.measurement_system'] = PropTypes.oneOf(['imperial', 'metric']);
|
|
18088
16113
|
T['io.flow.common.v0.enums.merchant_of_record'] = PropTypes.oneOf(['flow', 'organization']);
|
|
18089
16114
|
T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
|
|
16115
|
+
T['io.flow.common.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
|
|
18090
16116
|
T['io.flow.common.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Closed']);
|
|
18091
16117
|
T['io.flow.common.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
|
|
18092
16118
|
T['io.flow.common.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
|
|
16119
|
+
T['io.flow.common.v0.enums.visibility'] = PropTypes.oneOf(['public', 'private']);
|
|
16120
|
+
|
|
16121
|
+
T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
16122
|
+
text: PropTypes.string,
|
|
16123
|
+
streets: PropTypes.arrayOf(PropTypes.string),
|
|
16124
|
+
street_number: PropTypes.string,
|
|
16125
|
+
city: PropTypes.string,
|
|
16126
|
+
province: PropTypes.string,
|
|
16127
|
+
postal: PropTypes.string,
|
|
16128
|
+
country: PropTypes.string,
|
|
16129
|
+
latitude: PropTypes.string,
|
|
16130
|
+
longitude: PropTypes.string,
|
|
16131
|
+
});
|
|
18093
16132
|
|
|
18094
16133
|
T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
|
|
18095
16134
|
id: PropTypes.string.isRequired,
|
|
@@ -18110,10 +16149,23 @@ T['io.flow.common.v0.models.customer_reference'] = PropTypes.exact({
|
|
|
18110
16149
|
number: PropTypes.string.isRequired,
|
|
18111
16150
|
});
|
|
18112
16151
|
|
|
16152
|
+
T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
|
|
16153
|
+
id: PropTypes.string.isRequired,
|
|
16154
|
+
key: PropTypes.string.isRequired,
|
|
16155
|
+
name: PropTypes.string.isRequired,
|
|
16156
|
+
country: PropTypes.string,
|
|
16157
|
+
currency: PropTypes.string,
|
|
16158
|
+
language: PropTypes.string,
|
|
16159
|
+
});
|
|
16160
|
+
|
|
18113
16161
|
T['io.flow.common.v0.models.input_form'] = PropTypes.exact({
|
|
18114
16162
|
values: PropTypes.objectOf(PropTypes.string),
|
|
18115
16163
|
});
|
|
18116
16164
|
|
|
16165
|
+
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
16166
|
+
number: PropTypes.string.isRequired,
|
|
16167
|
+
});
|
|
16168
|
+
|
|
18117
16169
|
T['io.flow.common.v0.models.line_item_attributes_form'] = PropTypes.exact({
|
|
18118
16170
|
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
18119
16171
|
});
|
|
@@ -18122,6 +16174,10 @@ T['io.flow.common.v0.models.line_item_quantity_form'] = PropTypes.exact({
|
|
|
18122
16174
|
quantity: PropTypes.number.isRequired,
|
|
18123
16175
|
});
|
|
18124
16176
|
|
|
16177
|
+
T['io.flow.common.v0.models.partner_reference'] = PropTypes.exact({
|
|
16178
|
+
id: PropTypes.string.isRequired,
|
|
16179
|
+
});
|
|
16180
|
+
|
|
18125
16181
|
T['io.flow.common.v0.models.price_form'] = PropTypes.exact({
|
|
18126
16182
|
amount: PropTypes.number.isRequired,
|
|
18127
16183
|
currency: PropTypes.string.isRequired,
|
|
@@ -18137,8 +16193,6 @@ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
|
18137
16193
|
country: PropTypes.string.isRequired,
|
|
18138
16194
|
});
|
|
18139
16195
|
|
|
18140
|
-
T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
|
|
18141
|
-
|
|
18142
16196
|
T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
|
|
18143
16197
|
placeholder: PropTypes.string,
|
|
18144
16198
|
});
|
|
@@ -18156,59 +16210,6 @@ T['io.flow.channel.v0.models.channel_organization_authorization_form'] = PropTyp
|
|
|
18156
16210
|
organization_id: PropTypes.string.isRequired,
|
|
18157
16211
|
});
|
|
18158
16212
|
|
|
18159
|
-
T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
|
|
18160
|
-
|
|
18161
|
-
T['io.flow.reference.v0.models.country'] = PropTypes.exact({
|
|
18162
|
-
name: PropTypes.string.isRequired,
|
|
18163
|
-
iso_3166_2: PropTypes.string.isRequired,
|
|
18164
|
-
iso_3166_3: PropTypes.string.isRequired,
|
|
18165
|
-
languages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18166
|
-
measurement_system: PropTypes.string.isRequired,
|
|
18167
|
-
default_currency: PropTypes.string,
|
|
18168
|
-
default_language: PropTypes.string,
|
|
18169
|
-
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18170
|
-
default_delivered_duty: PropTypes.string,
|
|
18171
|
-
});
|
|
18172
|
-
|
|
18173
|
-
T['io.flow.reference.v0.models.language'] = PropTypes.exact({
|
|
18174
|
-
name: PropTypes.string.isRequired,
|
|
18175
|
-
iso_639_2: PropTypes.string.isRequired,
|
|
18176
|
-
});
|
|
18177
|
-
|
|
18178
|
-
T['io.flow.reference.v0.models.region'] = PropTypes.exact({
|
|
18179
|
-
id: PropTypes.string.isRequired,
|
|
18180
|
-
name: PropTypes.string.isRequired,
|
|
18181
|
-
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18182
|
-
currencies: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18183
|
-
languages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18184
|
-
measurement_systems: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18185
|
-
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18186
|
-
});
|
|
18187
|
-
|
|
18188
|
-
T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
|
|
18189
|
-
name: PropTypes.string.isRequired,
|
|
18190
|
-
description: PropTypes.string.isRequired,
|
|
18191
|
-
offset: PropTypes.number.isRequired,
|
|
18192
|
-
});
|
|
18193
|
-
|
|
18194
|
-
T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
|
|
18195
|
-
|
|
18196
|
-
T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
|
|
18197
|
-
q: PropTypes.string.isRequired,
|
|
18198
|
-
});
|
|
18199
|
-
|
|
18200
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration_copy_form'] = PropTypes.exact({
|
|
18201
|
-
name: PropTypes.string.isRequired,
|
|
18202
|
-
});
|
|
18203
|
-
|
|
18204
|
-
T['io.flow.fulfillment.v0.models.shipping_configuration_form'] = PropTypes.exact({
|
|
18205
|
-
name: PropTypes.string.isRequired,
|
|
18206
|
-
});
|
|
18207
|
-
|
|
18208
|
-
T['io.flow.fulfillment.v0.models.shipping_lane_default_tier_form'] = PropTypes.exact({
|
|
18209
|
-
tier_id: PropTypes.string.isRequired,
|
|
18210
|
-
});
|
|
18211
|
-
|
|
18212
16213
|
T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
|
|
18213
16214
|
applicationPrimaryAccountNumber: PropTypes.string.isRequired,
|
|
18214
16215
|
applicationExpirationDate: PropTypes.string.isRequired,
|
|
@@ -18220,8 +16221,6 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
|
|
|
18220
16221
|
paymentData: PropTypes.object.isRequired,
|
|
18221
16222
|
});
|
|
18222
16223
|
|
|
18223
|
-
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
18224
|
-
|
|
18225
16224
|
T['io.flow.tech.onboarding.playground.v0.models.jean_demo_item'] = PropTypes.exact({
|
|
18226
16225
|
id: PropTypes.string.isRequired,
|
|
18227
16226
|
name: PropTypes.string.isRequired,
|
|
@@ -18231,63 +16230,10 @@ T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] =
|
|
|
18231
16230
|
description: PropTypes.string.isRequired,
|
|
18232
16231
|
});
|
|
18233
16232
|
|
|
18234
|
-
T['io.flow.organization.v0.models.organization_default_configurations_form'] = PropTypes.exact({
|
|
18235
|
-
id: PropTypes.string.isRequired,
|
|
18236
|
-
});
|
|
18237
|
-
|
|
18238
|
-
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
|
|
18239
|
-
|
|
18240
|
-
T['io.flow.channel.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
|
|
18241
|
-
placeholder: PropTypes.string,
|
|
18242
|
-
});
|
|
18243
|
-
|
|
18244
16233
|
T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
|
|
18245
16234
|
name: PropTypes.string.isRequired,
|
|
18246
16235
|
});
|
|
18247
16236
|
|
|
18248
|
-
T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
|
|
18249
|
-
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
18250
|
-
T['io.flow.catalog.v0.enums.return_item_status'] = PropTypes.oneOf(['returnable', 'non-returnable']);
|
|
18251
|
-
T['io.flow.catalog.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
|
|
18252
|
-
T['io.flow.catalog.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
|
|
18253
|
-
|
|
18254
|
-
T['io.flow.catalog.v0.models.catalog_reference'] = PropTypes.exact({
|
|
18255
|
-
id: PropTypes.string.isRequired,
|
|
18256
|
-
});
|
|
18257
|
-
|
|
18258
|
-
T['io.flow.catalog.v0.models.item_attributes_patch_form'] = PropTypes.exact({
|
|
18259
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
18260
|
-
});
|
|
18261
|
-
|
|
18262
|
-
T['io.flow.catalog.v0.models.item_price_update_form'] = PropTypes.exact({
|
|
18263
|
-
number: PropTypes.string.isRequired,
|
|
18264
|
-
currency: PropTypes.string,
|
|
18265
|
-
price: PropTypes.number.isRequired,
|
|
18266
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
18267
|
-
});
|
|
18268
|
-
|
|
18269
|
-
T['io.flow.catalog.v0.models.item_price_update_put_form'] = PropTypes.exact({
|
|
18270
|
-
currency: PropTypes.string,
|
|
18271
|
-
price: PropTypes.number.isRequired,
|
|
18272
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
18273
|
-
});
|
|
18274
|
-
|
|
18275
|
-
T['io.flow.inventory.v0.enums.aggregate'] = PropTypes.oneOf(['maximum', 'minimum']);
|
|
18276
|
-
|
|
18277
|
-
T['io.flow.inventory.v0.models.inventory_experience_reference'] = PropTypes.exact({
|
|
18278
|
-
key: PropTypes.string.isRequired,
|
|
18279
|
-
});
|
|
18280
|
-
|
|
18281
|
-
T['io.flow.inventory.v0.models.pfs_inventory_status'] = PropTypes.exact({
|
|
18282
|
-
status: PropTypes.string.isRequired,
|
|
18283
|
-
});
|
|
18284
|
-
|
|
18285
|
-
T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
18286
|
-
base: PropTypes.string.isRequired,
|
|
18287
|
-
target: PropTypes.string.isRequired,
|
|
18288
|
-
effective_at: PropTypes.string.isRequired,
|
|
18289
|
-
});
|
|
18290
|
-
|
|
18291
16237
|
export const abandonedOrderEmailSettings = T['io.flow.v0.models.abandoned_order_email_settings'];
|
|
18292
16238
|
export const abandonedOrderPromotion = T['io.flow.v0.models.abandoned_order_promotion'];
|
|
18293
16239
|
export const abandonedOrderPromotionDetails = T['io.flow.v0.unions.abandoned_order_promotion_details'];
|
|
@@ -18358,6 +16304,8 @@ export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
|
|
|
18358
16304
|
export const amountMargin = T['io.flow.v0.models.amount_margin'];
|
|
18359
16305
|
export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
|
|
18360
16306
|
export const analyticsExportType = T['io.flow.v0.models.analytics_export_type'];
|
|
16307
|
+
export const anirbanItemDeleted = T['io.flow.v0.models.anirban_item_deleted'];
|
|
16308
|
+
export const anirbanItemUpserted = T['io.flow.v0.models.anirban_item_upserted'];
|
|
18361
16309
|
export const anshItemDeleted = T['io.flow.v0.models.ansh_item_deleted'];
|
|
18362
16310
|
export const anshItemUpserted = T['io.flow.v0.models.ansh_item_upserted'];
|
|
18363
16311
|
export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
|
|
@@ -18411,10 +16359,6 @@ export const availableFilterFormat = T['io.flow.v0.enums.available_filter_format
|
|
|
18411
16359
|
export const availableFilterStructured = T['io.flow.v0.models.available_filter_structured'];
|
|
18412
16360
|
export const availableFilterUnstructured = T['io.flow.v0.models.available_filter_unstructured'];
|
|
18413
16361
|
export const availablePromotion = T['io.flow.v0.models.available_promotion'];
|
|
18414
|
-
export const availablePromotionsDeleted = T['io.flow.v0.models.available_promotions_deleted'];
|
|
18415
|
-
export const availablePromotionsDeletedV2 = T['io.flow.v0.models.available_promotions_deleted_v2'];
|
|
18416
|
-
export const availablePromotionsUpserted = T['io.flow.v0.models.available_promotions_upserted'];
|
|
18417
|
-
export const availablePromotionsUpsertedV2 = T['io.flow.v0.models.available_promotions_upserted_v2'];
|
|
18418
16362
|
export const availableService = T['io.flow.v0.models.available_service'];
|
|
18419
16363
|
export const avalaraTaxCsvSetting = T['io.flow.v0.models.avalara_tax_csv_setting'];
|
|
18420
16364
|
export const avalaraTaxSetting = T['io.flow.v0.models.avalara_tax_setting'];
|
|
@@ -18619,9 +16563,7 @@ export const countryPickerForm = T['io.flow.v0.models.country_picker_form'];
|
|
|
18619
16563
|
export const countryPickerSource = T['io.flow.v0.enums.country_picker_source'];
|
|
18620
16564
|
export const countryShippingPricing = T['io.flow.v0.models.country_shipping_pricing'];
|
|
18621
16565
|
export const countryStatus = T['io.flow.v0.models.country_status'];
|
|
18622
|
-
export const countryStatusDeleted = T['io.flow.v0.models.country_status_deleted'];
|
|
18623
16566
|
export const countryStatusForm = T['io.flow.v0.models.country_status_form'];
|
|
18624
|
-
export const countryStatusUpserted = T['io.flow.v0.models.country_status_upserted'];
|
|
18625
16567
|
export const creditMemo = T['io.flow.v0.models.credit_memo'];
|
|
18626
16568
|
export const creditMemoDeleted = T['io.flow.v0.models.credit_memo_deleted'];
|
|
18627
16569
|
export const creditMemoForm = T['io.flow.v0.models.credit_memo_form'];
|
|
@@ -18639,8 +16581,6 @@ export const csvPriceBookItemExportRowByItemNumber = T['io.flow.v0.models.csv_pr
|
|
|
18639
16581
|
export const csvPriceBookItemExportRowBySku = T['io.flow.v0.models.csv_price_book_item_export_row_by_sku'];
|
|
18640
16582
|
export const currency = T['io.flow.v0.models.currency'];
|
|
18641
16583
|
export const currencyFormat = T['io.flow.v0.models.currency_format'];
|
|
18642
|
-
export const currencyFormatDeleted = T['io.flow.v0.models.currency_format_deleted'];
|
|
18643
|
-
export const currencyFormatUpserted = T['io.flow.v0.models.currency_format_upserted'];
|
|
18644
16584
|
export const currencyLabelFormatter = T['io.flow.v0.enums.currency_label_formatter'];
|
|
18645
16585
|
export const currencySymbolFormat = T['io.flow.v0.enums.currency_symbol_format'];
|
|
18646
16586
|
export const currencySymbols = T['io.flow.v0.models.currency_symbols'];
|
|
@@ -18751,6 +16691,7 @@ export const ecommercePlatformForm = T['io.flow.v0.models.ecommerce_platform_for
|
|
|
18751
16691
|
export const ecommercePlatformType = T['io.flow.v0.enums.ecommerce_platform_type'];
|
|
18752
16692
|
export const ecommercePlatformUpserted = T['io.flow.v0.models.ecommerce_platform_upserted'];
|
|
18753
16693
|
export const economicTitleLocation = T['io.flow.v0.enums.economic_title_location'];
|
|
16694
|
+
export const editSummary = T['io.flow.v0.models.edit_summary'];
|
|
18754
16695
|
export const eeiFilingRatecardFee = T['io.flow.v0.models.eei_filing_ratecard_fee'];
|
|
18755
16696
|
export const eeiFilingServiceFee = T['io.flow.v0.models.eei_filing_service_fee'];
|
|
18756
16697
|
export const emailAbandonedOrderPromotion = T['io.flow.v0.models.email_abandoned_order_promotion'];
|
|
@@ -18802,15 +16743,11 @@ export const experienceCountryStatus = T['io.flow.v0.enums.experience_country_st
|
|
|
18802
16743
|
export const experienceCurrencyFormat = T['io.flow.v0.models.experience_currency_format'];
|
|
18803
16744
|
export const experienceCurrencyFormatForm = T['io.flow.v0.models.experience_currency_format_form'];
|
|
18804
16745
|
export const experienceDefaults = T['io.flow.v0.models.experience_defaults'];
|
|
18805
|
-
export const experienceDeleted = T['io.flow.v0.models.experience_deleted'];
|
|
18806
|
-
export const experienceDeletedV2 = T['io.flow.v0.models.experience_deleted_v2'];
|
|
18807
16746
|
export const experienceExportType = T['io.flow.v0.models.experience_export_type'];
|
|
18808
16747
|
export const experienceForm = T['io.flow.v0.models.experience_form'];
|
|
18809
16748
|
export const experienceGeo = T['io.flow.v0.models.experience_geo'];
|
|
18810
16749
|
export const experienceLogisticsSettings = T['io.flow.v0.models.experience_logistics_settings'];
|
|
18811
|
-
export const experienceLogisticsSettingsDeleted = T['io.flow.v0.models.experience_logistics_settings_deleted'];
|
|
18812
16750
|
export const experienceLogisticsSettingsPutForm = T['io.flow.v0.models.experience_logistics_settings_put_form'];
|
|
18813
|
-
export const experienceLogisticsSettingsUpserted = T['io.flow.v0.models.experience_logistics_settings_upserted'];
|
|
18814
16751
|
export const experienceLogisticsSummary = T['io.flow.v0.models.experience_logistics_summary'];
|
|
18815
16752
|
export const experienceLogisticsTierSummary = T['io.flow.v0.models.experience_logistics_tier_summary'];
|
|
18816
16753
|
export const experienceLogisticsTierSummaryPrices = T['io.flow.v0.models.experience_logistics_tier_summary_prices'];
|
|
@@ -18819,10 +16756,8 @@ export const experiencePaymentMethodRule = T['io.flow.v0.models.experience_payme
|
|
|
18819
16756
|
export const experiencePaymentMethodRuleForm = T['io.flow.v0.models.experience_payment_method_rule_form'];
|
|
18820
16757
|
export const experiencePaymentMethodTag = T['io.flow.v0.enums.experience_payment_method_tag'];
|
|
18821
16758
|
export const experiencePriceBookMapping = T['io.flow.v0.models.experience_price_book_mapping'];
|
|
18822
|
-
export const experiencePriceBookMappingDeleted = T['io.flow.v0.models.experience_price_book_mapping_deleted'];
|
|
18823
16759
|
export const experiencePriceBookMappingForm = T['io.flow.v0.models.experience_price_book_mapping_form'];
|
|
18824
16760
|
export const experiencePriceBookMappingPutForm = T['io.flow.v0.models.experience_price_book_mapping_put_form'];
|
|
18825
|
-
export const experiencePriceBookMappingUpserted = T['io.flow.v0.models.experience_price_book_mapping_upserted'];
|
|
18826
16761
|
export const experiencePriceConversion = T['io.flow.v0.models.experience_price_conversion'];
|
|
18827
16762
|
export const experiencePriceConversionRequest = T['io.flow.v0.models.experience_price_conversion_request'];
|
|
18828
16763
|
export const experiencePriceConversionResponse = T['io.flow.v0.models.experience_price_conversion_response'];
|
|
@@ -18834,8 +16769,6 @@ export const experienceSettings = T['io.flow.v0.models.experience_settings'];
|
|
|
18834
16769
|
export const experienceStatus = T['io.flow.v0.enums.experience_status'];
|
|
18835
16770
|
export const experienceStatusForm = T['io.flow.v0.models.experience_status_form'];
|
|
18836
16771
|
export const experienceSummary = T['io.flow.v0.models.experience_summary'];
|
|
18837
|
-
export const experienceUpserted = T['io.flow.v0.models.experience_upserted'];
|
|
18838
|
-
export const experienceUpsertedV2 = T['io.flow.v0.models.experience_upserted_v2'];
|
|
18839
16772
|
export const experienceVersion = T['io.flow.v0.models.experience_version'];
|
|
18840
16773
|
export const expiration = T['io.flow.v0.models.expiration'];
|
|
18841
16774
|
export const UNSAFE_export = T['io.flow.v0.models.export'];
|
|
@@ -18955,6 +16888,8 @@ export const hop = T['io.flow.v0.models.hop'];
|
|
|
18955
16888
|
export const hopEstimate = T['io.flow.v0.models.hop_estimate'];
|
|
18956
16889
|
export const hopEstimateV2 = T['io.flow.v0.models.hop_estimate_v2'];
|
|
18957
16890
|
export const hopV2 = T['io.flow.v0.models.hop_v2'];
|
|
16891
|
+
export const hoseinItemDeleted = T['io.flow.v0.models.hosein_item_deleted'];
|
|
16892
|
+
export const hoseinItemUpserted = T['io.flow.v0.models.hosein_item_upserted'];
|
|
18958
16893
|
export const hs10 = T['io.flow.v0.models.hs10'];
|
|
18959
16894
|
export const hs10CodeDeleted = T['io.flow.v0.models.hs10_code_deleted'];
|
|
18960
16895
|
export const hs10CodeUpserted = T['io.flow.v0.models.hs10_code_upserted'];
|
|
@@ -18967,8 +16902,6 @@ export const image = T['io.flow.v0.models.image'];
|
|
|
18967
16902
|
export const imageForm = T['io.flow.v0.models.image_form'];
|
|
18968
16903
|
export const imageTag = T['io.flow.v0.enums.image_tag'];
|
|
18969
16904
|
export const UNSAFE_import = T['io.flow.v0.models.import'];
|
|
18970
|
-
export const importCompletedV2 = T['io.flow.v0.models.import_completed_v2'];
|
|
18971
|
-
export const importFailedV2 = T['io.flow.v0.models.import_failed_v2'];
|
|
18972
16905
|
export const importForm = T['io.flow.v0.models.import_form'];
|
|
18973
16906
|
export const importResults = T['io.flow.v0.models.import_results'];
|
|
18974
16907
|
export const importTemplate = T['io.flow.v0.models.import_template'];
|
|
@@ -19017,10 +16950,8 @@ export const itemFormOverlayForm = T['io.flow.v0.models.item_form_overlay_form']
|
|
|
19017
16950
|
export const itemIdentifier = T['io.flow.v0.enums.item_identifier'];
|
|
19018
16951
|
export const itemInserted = T['io.flow.v0.models.item_inserted'];
|
|
19019
16952
|
export const itemMargin = T['io.flow.v0.models.item_margin'];
|
|
19020
|
-
export const itemMarginDeletedV2 = T['io.flow.v0.models.item_margin_deleted_v2'];
|
|
19021
16953
|
export const itemMarginPostForm = T['io.flow.v0.models.item_margin_post_form'];
|
|
19022
16954
|
export const itemMarginPutForm = T['io.flow.v0.models.item_margin_put_form'];
|
|
19023
|
-
export const itemMarginUpsertedV2 = T['io.flow.v0.models.item_margin_upserted_v2'];
|
|
19024
16955
|
export const itemMarginVersion = T['io.flow.v0.models.item_margin_version'];
|
|
19025
16956
|
export const itemOriginDeleted = T['io.flow.v0.models.item_origin_deleted'];
|
|
19026
16957
|
export const itemOriginUpserted = T['io.flow.v0.models.item_origin_upserted'];
|
|
@@ -19028,8 +16959,6 @@ export const itemPriceUpdateForm = T['io.flow.v0.models.item_price_update_form']
|
|
|
19028
16959
|
export const itemPriceUpdatePutForm = T['io.flow.v0.models.item_price_update_put_form'];
|
|
19029
16960
|
export const itemQuerySuggestion = T['io.flow.v0.models.item_query_suggestion'];
|
|
19030
16961
|
export const itemReference = T['io.flow.v0.models.item_reference'];
|
|
19031
|
-
export const itemSalesMarginDeleted = T['io.flow.v0.models.item_sales_margin_deleted'];
|
|
19032
|
-
export const itemSalesMarginUpserted = T['io.flow.v0.models.item_sales_margin_upserted'];
|
|
19033
16962
|
export const itemShippingPricing = T['io.flow.v0.models.item_shipping_pricing'];
|
|
19034
16963
|
export const itemStatistics = T['io.flow.v0.models.item_statistics'];
|
|
19035
16964
|
export const itemUpdated = T['io.flow.v0.models.item_updated'];
|
|
@@ -19048,8 +16977,6 @@ export const knowYourBusinessUsaForm = T['io.flow.v0.models.know_your_business_u
|
|
|
19048
16977
|
export const kubeHealthcheck = T['io.flow.v0.models.kube-healthcheck'];
|
|
19049
16978
|
export const labelBase = T['io.flow.v0.models.label_base'];
|
|
19050
16979
|
export const labelDeletedV2 = T['io.flow.v0.models.label_deleted_v2'];
|
|
19051
|
-
export const labelFormatDeleted = T['io.flow.v0.models.label_format_deleted'];
|
|
19052
|
-
export const labelFormatUpserted = T['io.flow.v0.models.label_format_upserted'];
|
|
19053
16980
|
export const labelOrderSummary = T['io.flow.v0.models.label_order_summary'];
|
|
19054
16981
|
export const labelProcessingModification = T['io.flow.v0.models.label_processing_modification'];
|
|
19055
16982
|
export const labelProcessingModificationDeleted = T['io.flow.v0.models.label_processing_modification_deleted'];
|
|
@@ -19077,6 +17004,7 @@ export const laneSummary = T['io.flow.v0.models.lane_summary'];
|
|
|
19077
17004
|
export const language = T['io.flow.v0.models.language'];
|
|
19078
17005
|
export const largePackageServiceFee = T['io.flow.v0.models.large_package_service_fee'];
|
|
19079
17006
|
export const levyComponent = T['io.flow.v0.enums.levy_component'];
|
|
17007
|
+
export const levyInclusion = T['io.flow.v0.enums.levy_inclusion'];
|
|
19080
17008
|
export const levyStrategy = T['io.flow.v0.enums.levy_strategy'];
|
|
19081
17009
|
export const line = T['io.flow.v0.models.line'];
|
|
19082
17010
|
export const lineItem = T['io.flow.v0.models.line_item'];
|
|
@@ -19161,6 +17089,7 @@ export const monthlyAverage = T['io.flow.v0.models.monthly_average'];
|
|
|
19161
17089
|
export const monthlyAverageVolume = T['io.flow.v0.models.monthly_average_volume'];
|
|
19162
17090
|
export const name = T['io.flow.v0.models.name'];
|
|
19163
17091
|
export const nameForm = T['io.flow.v0.models.name_form'];
|
|
17092
|
+
export const needsActionAttributes = T['io.flow.v0.models.needs_action_attributes'];
|
|
19164
17093
|
export const niallItemDeleted = T['io.flow.v0.models.niall_item_deleted'];
|
|
19165
17094
|
export const niallItemUpserted = T['io.flow.v0.models.niall_item_upserted'];
|
|
19166
17095
|
export const notificationDeletedV2 = T['io.flow.v0.models.notification_deleted_v2'];
|
|
@@ -19196,7 +17125,6 @@ export const orderBuilderSelectionsForm = T['io.flow.v0.models.order_builder_sel
|
|
|
19196
17125
|
export const orderChangeSource = T['io.flow.v0.enums.order_change_source'];
|
|
19197
17126
|
export const orderCustomer = T['io.flow.v0.models.order_customer'];
|
|
19198
17127
|
export const orderCustomerForm = T['io.flow.v0.models.order_customer_form'];
|
|
19199
|
-
export const orderDeleted = T['io.flow.v0.models.order_deleted'];
|
|
19200
17128
|
export const orderDeletedV2 = T['io.flow.v0.models.order_deleted_v2'];
|
|
19201
17129
|
export const orderDestinationPutForm = T['io.flow.v0.models.order_destination_put_form'];
|
|
19202
17130
|
export const orderDetails = T['io.flow.v0.models.order_details'];
|
|
@@ -19209,12 +17137,9 @@ export const orderForm = T['io.flow.v0.models.order_form'];
|
|
|
19209
17137
|
export const orderFraudStatus = T['io.flow.v0.models.order_fraud_status'];
|
|
19210
17138
|
export const orderGeo = T['io.flow.v0.models.order_geo'];
|
|
19211
17139
|
export const orderIdentifier = T['io.flow.v0.models.order_identifier'];
|
|
19212
|
-
export const orderIdentifierDeleted = T['io.flow.v0.models.order_identifier_deleted'];
|
|
19213
17140
|
export const orderIdentifierDeletedV2 = T['io.flow.v0.models.order_identifier_deleted_v2'];
|
|
19214
17141
|
export const orderIdentifierForm = T['io.flow.v0.models.order_identifier_form'];
|
|
19215
17142
|
export const orderIdentifierPutForm = T['io.flow.v0.models.order_identifier_put_form'];
|
|
19216
|
-
export const orderIdentifierUpserted = T['io.flow.v0.models.order_identifier_upserted'];
|
|
19217
|
-
export const orderIdentifierUpsertedV2 = T['io.flow.v0.models.order_identifier_upserted_v2'];
|
|
19218
17143
|
export const orderIdentifierUpsertedV3 = T['io.flow.v0.models.order_identifier_upserted_v3'];
|
|
19219
17144
|
export const orderIdentifierVersion = T['io.flow.v0.models.order_identifier_version'];
|
|
19220
17145
|
export const orderInformation = T['io.flow.v0.unions.order_information'];
|
|
@@ -19237,13 +17162,17 @@ export const orderPlaced = T['io.flow.v0.models.order_placed'];
|
|
|
19237
17162
|
export const orderPlacedDetails = T['io.flow.v0.models.order_placed_details'];
|
|
19238
17163
|
export const orderPlacedV2 = T['io.flow.v0.models.order_placed_v2'];
|
|
19239
17164
|
export const orderPriceDetail = T['io.flow.v0.models.order_price_detail'];
|
|
17165
|
+
export const orderPriceDetailBreakdown = T['io.flow.v0.models.order_price_detail_breakdown'];
|
|
19240
17166
|
export const orderPriceDetailComponent = T['io.flow.v0.models.order_price_detail_component'];
|
|
19241
17167
|
export const orderPriceDetailComponentKey = T['io.flow.v0.enums.order_price_detail_component_key'];
|
|
19242
17168
|
export const orderPriceDetailKey = T['io.flow.v0.enums.order_price_detail_key'];
|
|
17169
|
+
export const orderPriceFee = T['io.flow.v0.models.order_price_fee'];
|
|
17170
|
+
export const orderPriceFeeType = T['io.flow.v0.enums.order_price_fee_type'];
|
|
19243
17171
|
export const orderPromotion = T['io.flow.v0.unions.order_promotion'];
|
|
19244
17172
|
export const orderPromotionForm = T['io.flow.v0.unions.order_promotion_form'];
|
|
19245
17173
|
export const orderPromotionTrigger = T['io.flow.v0.models.order_promotion_trigger'];
|
|
19246
17174
|
export const orderPutForm = T['io.flow.v0.models.order_put_form'];
|
|
17175
|
+
export const orderRate = T['io.flow.v0.models.order_rate'];
|
|
19247
17176
|
export const orderReference = T['io.flow.v0.models.order_reference'];
|
|
19248
17177
|
export const orderRefundSummary = T['io.flow.v0.models.order_refund_summary'];
|
|
19249
17178
|
export const orderRefundSummaryAmounts = T['io.flow.v0.models.order_refund_summary_amounts'];
|
|
@@ -19255,14 +17184,11 @@ export const orderRefundSummaryPartialCharged = T['io.flow.v0.enums.order_refund
|
|
|
19255
17184
|
export const orderRefundSummaryPartialForm = T['io.flow.v0.models.order_refund_summary_partial_form'];
|
|
19256
17185
|
export const orderRefundSummaryPartialIncludes = T['io.flow.v0.models.order_refund_summary_partial_includes'];
|
|
19257
17186
|
export const orderReplacement = T['io.flow.v0.models.order_replacement'];
|
|
19258
|
-
export const orderReplacementDeleted = T['io.flow.v0.models.order_replacement_deleted'];
|
|
19259
17187
|
export const orderReplacementForm = T['io.flow.v0.models.order_replacement_form'];
|
|
19260
|
-
export const orderReplacementUpserted = T['io.flow.v0.models.order_replacement_upserted'];
|
|
19261
17188
|
export const orderRuleReference = T['io.flow.v0.models.order_rule_reference'];
|
|
19262
17189
|
export const orderRulesSummary = T['io.flow.v0.models.order_rules_summary'];
|
|
19263
17190
|
export const orderServiceChange = T['io.flow.v0.models.order_service_change'];
|
|
19264
17191
|
export const orderServiceChangeForm = T['io.flow.v0.models.order_service_change_form'];
|
|
19265
|
-
export const orderServiceChangeRequest = T['io.flow.v0.models.order_service_change_request'];
|
|
19266
17192
|
export const orderServiceChangeRequestData = T['io.flow.v0.models.order_service_change_request_data'];
|
|
19267
17193
|
export const orderStatus = T['io.flow.v0.enums.order_status'];
|
|
19268
17194
|
export const orderStorage = T['io.flow.v0.enums.order_storage'];
|
|
@@ -19275,7 +17201,6 @@ export const orderSummaryLevy = T['io.flow.v0.models.order_summary_levy'];
|
|
|
19275
17201
|
export const orderSummaryLineItem = T['io.flow.v0.models.order_summary_line_item'];
|
|
19276
17202
|
export const orderSummaryPriceDetail = T['io.flow.v0.models.order_summary_price_detail'];
|
|
19277
17203
|
export const orderType = T['io.flow.v0.enums.order_type'];
|
|
19278
|
-
export const orderUpserted = T['io.flow.v0.models.order_upserted'];
|
|
19279
17204
|
export const orderUpsertedV2 = T['io.flow.v0.models.order_upserted_v2'];
|
|
19280
17205
|
export const orderVersion = T['io.flow.v0.models.order_version'];
|
|
19281
17206
|
export const orderWithDiscountsForm = T['io.flow.v0.models.order_with_discounts_form'];
|
|
@@ -19508,6 +17433,7 @@ export const physicalDeliveryPreferredService = T['io.flow.v0.models.physical_de
|
|
|
19508
17433
|
export const physicalDeliverySpecialSerivce = T['io.flow.v0.enums.physical_delivery_special_serivce'];
|
|
19509
17434
|
export const postPaymentRedirectUrls = T['io.flow.v0.models.post_payment_redirect_urls'];
|
|
19510
17435
|
export const postalType = T['io.flow.v0.enums.postal_type'];
|
|
17436
|
+
export const preferentialRateEligibility = T['io.flow.v0.enums.preferential_rate_eligibility'];
|
|
19511
17437
|
export const preferredServiceSelectionStrategy = T['io.flow.v0.enums.preferred_service_selection_strategy'];
|
|
19512
17438
|
export const price = T['io.flow.v0.models.price'];
|
|
19513
17439
|
export const priceAccuracy = T['io.flow.v0.enums.price_accuracy'];
|
|
@@ -19541,10 +17467,8 @@ export const priceSourceProvided = T['io.flow.v0.models.price_source_provided'];
|
|
|
19541
17467
|
export const priceWithBase = T['io.flow.v0.models.price_with_base'];
|
|
19542
17468
|
export const priceWithBaseAndDetails = T['io.flow.v0.models.price_with_base_and_details'];
|
|
19543
17469
|
export const pricing = T['io.flow.v0.models.pricing'];
|
|
19544
|
-
export const pricingDeleted = T['io.flow.v0.models.pricing_deleted'];
|
|
19545
17470
|
export const pricingLevySetting = T['io.flow.v0.enums.pricing_levy_setting'];
|
|
19546
17471
|
export const pricingSettings = T['io.flow.v0.models.pricing_settings'];
|
|
19547
|
-
export const pricingUpserted = T['io.flow.v0.models.pricing_upserted'];
|
|
19548
17472
|
export const pricingVersion = T['io.flow.v0.models.pricing_version'];
|
|
19549
17473
|
export const processingEstimate = T['io.flow.v0.models.processing_estimate'];
|
|
19550
17474
|
export const product = T['io.flow.v0.models.product'];
|
|
@@ -19553,9 +17477,11 @@ export const productInserted = T['io.flow.v0.models.product_inserted'];
|
|
|
19553
17477
|
export const productRestrictionResult = T['io.flow.v0.models.product_restriction_result'];
|
|
19554
17478
|
export const productRestrictionResultDeleted = T['io.flow.v0.models.product_restriction_result_deleted'];
|
|
19555
17479
|
export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
|
|
19556
|
-
export const
|
|
17480
|
+
export const productSellability = T['io.flow.v0.models.product_sellability'];
|
|
17481
|
+
export const productSellabilityForm = T['io.flow.v0.models.product_sellability_form'];
|
|
19557
17482
|
export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
|
|
19558
17483
|
export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
|
|
17484
|
+
export const productTaxonomyValue = T['io.flow.v0.models.product_taxonomy_value'];
|
|
19559
17485
|
export const productUpdated = T['io.flow.v0.models.product_updated'];
|
|
19560
17486
|
export const promotion = T['io.flow.v0.unions.promotion'];
|
|
19561
17487
|
export const promotionTrigger = T['io.flow.v0.models.promotion_trigger'];
|
|
@@ -19565,6 +17491,7 @@ export const promotions = T['io.flow.v0.models.promotions'];
|
|
|
19565
17491
|
export const province = T['io.flow.v0.models.province'];
|
|
19566
17492
|
export const provinceType = T['io.flow.v0.enums.province_type'];
|
|
19567
17493
|
export const publicKey = T['io.flow.v0.models.public_key'];
|
|
17494
|
+
export const purchasePriceBreakdown = T['io.flow.v0.models.purchase_price_breakdown'];
|
|
19568
17495
|
export const query = T['io.flow.v0.models.query'];
|
|
19569
17496
|
export const queryBuilder = T['io.flow.v0.models.query_builder'];
|
|
19570
17497
|
export const queryBuilderFilterForm = T['io.flow.v0.models.query_builder_filter_form'];
|
|
@@ -19700,6 +17627,9 @@ export const rounding = T['io.flow.v0.models.rounding'];
|
|
|
19700
17627
|
export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
|
|
19701
17628
|
export const roundingType = T['io.flow.v0.enums.rounding_type'];
|
|
19702
17629
|
export const routeAudit = T['io.flow.v0.models.route_audit'];
|
|
17630
|
+
export const ruleEffectType = T['io.flow.v0.enums.rule_effect_type'];
|
|
17631
|
+
export const sarveshItemDeleted = T['io.flow.v0.models.sarvesh_item_deleted'];
|
|
17632
|
+
export const sarveshItemUpserted = T['io.flow.v0.models.sarvesh_item_upserted'];
|
|
19703
17633
|
export const schedule = T['io.flow.v0.models.schedule'];
|
|
19704
17634
|
export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
|
|
19705
17635
|
export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
|
|
@@ -19709,6 +17639,11 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
|
|
|
19709
17639
|
export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
|
|
19710
17640
|
export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
|
|
19711
17641
|
export const selectIssuerOptionActionDetails = T['io.flow.v0.models.select_issuer_option_action_details'];
|
|
17642
|
+
export const sellabilityError = T['io.flow.v0.models.sellability_error'];
|
|
17643
|
+
export const sellabilityErrorCode = T['io.flow.v0.enums.sellability_error_code'];
|
|
17644
|
+
export const sellabilityRequestStatus = T['io.flow.v0.enums.sellability_request_status'];
|
|
17645
|
+
export const sellabilityResponse = T['io.flow.v0.unions.sellability_response'];
|
|
17646
|
+
export const sellablilityRegionResult = T['io.flow.v0.models.sellablility_region_result'];
|
|
19712
17647
|
export const serviceDescription = T['io.flow.v0.unions.service_description'];
|
|
19713
17648
|
export const serviceFee = T['io.flow.v0.unions.service_fee'];
|
|
19714
17649
|
export const serviceReference = T['io.flow.v0.models.service_reference'];
|
|
@@ -19833,6 +17768,7 @@ export const statementDeleted = T['io.flow.v0.models.statement_deleted'];
|
|
|
19833
17768
|
export const statementUpserted = T['io.flow.v0.models.statement_upserted'];
|
|
19834
17769
|
export const storedMethodUsageStep = T['io.flow.v0.enums.stored_method_usage_step'];
|
|
19835
17770
|
export const strategy = T['io.flow.v0.enums.strategy'];
|
|
17771
|
+
export const streetAddress = T['io.flow.v0.models.street_address'];
|
|
19836
17772
|
export const stripeAuthenticationData = T['io.flow.v0.models.stripe_authentication_data'];
|
|
19837
17773
|
export const stripeAuthenticationDataForm = T['io.flow.v0.models.stripe_authentication_data_form'];
|
|
19838
17774
|
export const stripeAuthorizationResultActionDetails = T['io.flow.v0.models.stripe_authorization_result_action_details'];
|
|
@@ -19860,6 +17796,18 @@ export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
|
|
|
19860
17796
|
export const surchargeSettingDisplay = T['io.flow.v0.models.surcharge_setting_display'];
|
|
19861
17797
|
export const tax = T['io.flow.v0.models.tax'];
|
|
19862
17798
|
export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
|
|
17799
|
+
export const taxDutyCalculatorValidationError = T['io.flow.v0.models.tax_duty_calculator_validation_error'];
|
|
17800
|
+
export const taxDutyCalculatorValidationErrorCode = T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'];
|
|
17801
|
+
export const taxDutyQuote = T['io.flow.v0.models.tax_duty_quote'];
|
|
17802
|
+
export const taxDutyQuoteFeeValue = T['io.flow.v0.models.tax_duty_quote_fee_value'];
|
|
17803
|
+
export const taxDutyQuoteForm = T['io.flow.v0.models.tax_duty_quote_form'];
|
|
17804
|
+
export const taxDutyQuoteLevyValue = T['io.flow.v0.unions.tax_duty_quote_levy_value'];
|
|
17805
|
+
export const taxDutyQuoteLineItem = T['io.flow.v0.models.tax_duty_quote_line_item'];
|
|
17806
|
+
export const taxDutyQuoteLineItemForm = T['io.flow.v0.models.tax_duty_quote_line_item_form'];
|
|
17807
|
+
export const taxDutyQuoteSimpleLevyValue = T['io.flow.v0.models.tax_duty_quote_simple_levy_value'];
|
|
17808
|
+
export const taxDutyQuoteSimpleShipping = T['io.flow.v0.models.tax_duty_quote_simple_shipping'];
|
|
17809
|
+
export const taxDutyQuoteSimpleShippingForm = T['io.flow.v0.models.tax_duty_quote_simple_shipping_form'];
|
|
17810
|
+
export const taxDutyQuoteValues = T['io.flow.v0.models.tax_duty_quote_values'];
|
|
19863
17811
|
export const taxDutyTransactionReasonCode = T['io.flow.v0.enums.tax_duty_transaction_reason_code'];
|
|
19864
17812
|
export const taxRegistration = T['io.flow.v0.models.tax_registration'];
|
|
19865
17813
|
export const taxRegistrationForm = T['io.flow.v0.models.tax_registration_form'];
|
|
@@ -20014,4 +17962,5 @@ export const webhookStatus = T['io.flow.v0.enums.webhook_status'];
|
|
|
20014
17962
|
export const withholdingDeduction = T['io.flow.v0.models.withholding_deduction'];
|
|
20015
17963
|
export const withholdingDeductionType = T['io.flow.v0.enums.withholding_deduction_type'];
|
|
20016
17964
|
export const zeroAmountIndicator = T['io.flow.v0.enums.zero_amount_indicator'];
|
|
17965
|
+
export const zeroLevyReasonCode = T['io.flow.v0.enums.zero_levy_reason_code'];
|
|
20017
17966
|
export const zone = T['io.flow.v0.models.zone'];
|