@flowio/api-internal-prop-types 9.24.72 → 9.24.74
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-internal.d.ts +1100 -592
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1100 -592
- package/src/api-internal.js +1335 -718
package/src/api-internal.js
CHANGED
|
@@ -377,23 +377,6 @@ T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
|
|
|
377
377
|
account_number: PropTypes.string.isRequired,
|
|
378
378
|
});
|
|
379
379
|
|
|
380
|
-
T['io.flow.billing.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
381
|
-
'fuel',
|
|
382
|
-
'remote_area',
|
|
383
|
-
'oversize',
|
|
384
|
-
'duties_paid',
|
|
385
|
-
'emergency',
|
|
386
|
-
'peak',
|
|
387
|
-
'address_correction',
|
|
388
|
-
]);
|
|
389
|
-
|
|
390
|
-
T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
391
|
-
amount: PropTypes.number.isRequired,
|
|
392
|
-
type: T['io.flow.billing.v0.enums.trueup_surcharge_type'].isRequired,
|
|
393
|
-
percentage: PropTypes.number,
|
|
394
|
-
per_weight_unit: PropTypes.number,
|
|
395
|
-
});
|
|
396
|
-
|
|
397
380
|
T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
398
381
|
amount: PropTypes.number.isRequired,
|
|
399
382
|
weight: PropTypes.number.isRequired,
|
|
@@ -401,13 +384,9 @@ T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
401
384
|
|
|
402
385
|
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl']);
|
|
403
386
|
|
|
404
|
-
T['io.flow.billing.v0.models.
|
|
387
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
405
388
|
id: PropTypes.string.isRequired,
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
|
|
409
|
-
iin: PropTypes.string.isRequired,
|
|
410
|
-
country: PropTypes.string.isRequired,
|
|
389
|
+
tracking_number: PropTypes.string.isRequired,
|
|
411
390
|
});
|
|
412
391
|
|
|
413
392
|
T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
|
|
@@ -420,7 +399,7 @@ T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes
|
|
|
420
399
|
'waiting_for_fulfillment',
|
|
421
400
|
'waiting_for_in_transit',
|
|
422
401
|
'waiting_for_next_payout_date',
|
|
423
|
-
'
|
|
402
|
+
'waiting_for_tracking_info',
|
|
424
403
|
'waiting_for_positive_account_balance',
|
|
425
404
|
]);
|
|
426
405
|
|
|
@@ -437,12 +416,18 @@ T['io.flow.billing.v0.models.organization_pending_payout_transaction'] = PropTyp
|
|
|
437
416
|
id: PropTypes.string.isRequired,
|
|
438
417
|
reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
|
|
439
418
|
timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
|
|
419
|
+
created_at: PropTypes.string.isRequired,
|
|
420
|
+
updated_at: PropTypes.string.isRequired,
|
|
421
|
+
deleted_at: PropTypes.string,
|
|
440
422
|
});
|
|
441
423
|
|
|
442
424
|
T['io.flow.billing.v0.models.channel_pending_payout_transaction'] = PropTypes.exact({
|
|
443
425
|
id: PropTypes.string.isRequired,
|
|
444
426
|
reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
|
|
445
427
|
timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
|
|
428
|
+
created_at: PropTypes.string.isRequired,
|
|
429
|
+
updated_at: PropTypes.string.isRequired,
|
|
430
|
+
deleted_at: PropTypes.string,
|
|
446
431
|
});
|
|
447
432
|
|
|
448
433
|
T['io.flow.billing.v0.enums.payout_attachment_type'] = PropTypes.oneOf(['transactions']);
|
|
@@ -470,6 +455,10 @@ T['io.flow.billing.v0.models.channel_default_bank_account'] = PropTypes.exact({
|
|
|
470
455
|
bank_account: T['io.flow.billing.v0.models.bank_account_reference'].isRequired,
|
|
471
456
|
});
|
|
472
457
|
|
|
458
|
+
T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.exact({
|
|
459
|
+
id: PropTypes.string.isRequired,
|
|
460
|
+
});
|
|
461
|
+
|
|
473
462
|
T['io.flow.billing.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
|
|
474
463
|
|
|
475
464
|
T['io.flow.billing.v0.models.attachment'] = PropTypes.exact({
|
|
@@ -498,6 +487,11 @@ T['io.flow.billing.internal.v0.unions.spot_rate_metadata'] = PropTypes.oneOfType
|
|
|
498
487
|
T['io.flow.billing.internal.v0.models.spot_rate_metadata_rate'],
|
|
499
488
|
]);
|
|
500
489
|
|
|
490
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_order_combined_shipment'] = PropTypes.exact({
|
|
491
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
492
|
+
order_combined_shipment_id: PropTypes.string.isRequired,
|
|
493
|
+
});
|
|
494
|
+
|
|
501
495
|
T['io.flow.billing.internal.v0.models.proof_of_posting_order_cancellation'] = PropTypes.exact({
|
|
502
496
|
discriminator: PropTypes.oneOf(['order_cancellation']).isRequired,
|
|
503
497
|
order_cancellation_id: PropTypes.string.isRequired,
|
|
@@ -523,6 +517,7 @@ T['io.flow.billing.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
|
523
517
|
T['io.flow.billing.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
524
518
|
T['io.flow.billing.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
525
519
|
T['io.flow.billing.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
520
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
526
521
|
]);
|
|
527
522
|
|
|
528
523
|
T['io.flow.billing.internal.v0.models.channel_rate_metadata_rate'] = PropTypes.exact({
|
|
@@ -644,6 +639,8 @@ T['io.flow.billing.internal.v0.enums.manual_transaction_category'] = PropTypes.o
|
|
|
644
639
|
'platform_fee',
|
|
645
640
|
'shipping_true_up',
|
|
646
641
|
'tax_credit',
|
|
642
|
+
'carrier_credit',
|
|
643
|
+
'negative_balance_guarantee',
|
|
647
644
|
]);
|
|
648
645
|
|
|
649
646
|
T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
@@ -653,6 +650,7 @@ T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exac
|
|
|
653
650
|
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
654
651
|
posted_at: PropTypes.string,
|
|
655
652
|
order: T['io.flow.billing.internal.v0.models.manual_transaction_form_order'],
|
|
653
|
+
original_transaction_id: PropTypes.string,
|
|
656
654
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
657
655
|
});
|
|
658
656
|
|
|
@@ -1179,6 +1177,47 @@ T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
|
1179
1177
|
description: PropTypes.string,
|
|
1180
1178
|
});
|
|
1181
1179
|
|
|
1180
|
+
T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
|
|
1181
|
+
decimal: PropTypes.string.isRequired,
|
|
1182
|
+
group: PropTypes.string.isRequired,
|
|
1183
|
+
});
|
|
1184
|
+
|
|
1185
|
+
T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
|
|
1186
|
+
id: PropTypes.string.isRequired,
|
|
1187
|
+
name: PropTypes.string.isRequired,
|
|
1188
|
+
country: PropTypes.string.isRequired,
|
|
1189
|
+
language: PropTypes.string.isRequired,
|
|
1190
|
+
numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
|
|
1191
|
+
});
|
|
1192
|
+
|
|
1193
|
+
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
1194
|
+
primary: PropTypes.string.isRequired,
|
|
1195
|
+
narrow: PropTypes.string,
|
|
1196
|
+
});
|
|
1197
|
+
|
|
1198
|
+
T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
1199
|
+
name: PropTypes.string.isRequired,
|
|
1200
|
+
iso_4217_3: PropTypes.string.isRequired,
|
|
1201
|
+
number_decimals: PropTypes.number.isRequired,
|
|
1202
|
+
symbols: T['io.flow.reference.v0.models.currency_symbols'],
|
|
1203
|
+
default_locale: PropTypes.string,
|
|
1204
|
+
});
|
|
1205
|
+
|
|
1206
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
1207
|
+
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
1208
|
+
fee: PropTypes.number.isRequired,
|
|
1209
|
+
});
|
|
1210
|
+
|
|
1211
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
|
|
1212
|
+
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
1213
|
+
percentage: PropTypes.number.isRequired,
|
|
1214
|
+
});
|
|
1215
|
+
|
|
1216
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
|
|
1217
|
+
discriminator: PropTypes.oneOf(['flat']).isRequired,
|
|
1218
|
+
placeholder: PropTypes.string,
|
|
1219
|
+
});
|
|
1220
|
+
|
|
1182
1221
|
T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
|
|
1183
1222
|
'base_price',
|
|
1184
1223
|
'discount',
|
|
@@ -1251,90 +1290,6 @@ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
|
|
|
1251
1290
|
T['io.flow.shopify.merchant.config.v0.models.individual'],
|
|
1252
1291
|
]);
|
|
1253
1292
|
|
|
1254
|
-
T['io.flow.billing.true.up.v0.models.shipping_method_reference'] = PropTypes.exact({
|
|
1255
|
-
id: PropTypes.string.isRequired,
|
|
1256
|
-
});
|
|
1257
|
-
|
|
1258
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
1259
|
-
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
1260
|
-
fee: PropTypes.number.isRequired,
|
|
1261
|
-
});
|
|
1262
|
-
|
|
1263
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
|
|
1264
|
-
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
1265
|
-
percentage: PropTypes.number.isRequired,
|
|
1266
|
-
});
|
|
1267
|
-
|
|
1268
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
|
|
1269
|
-
discriminator: PropTypes.oneOf(['flat']).isRequired,
|
|
1270
|
-
placeholder: PropTypes.string,
|
|
1271
|
-
});
|
|
1272
|
-
|
|
1273
|
-
T['io.flow.billing.true.up.v0.models.weights_dimensional'] = PropTypes.exact({
|
|
1274
|
-
weight: PropTypes.number.isRequired,
|
|
1275
|
-
length: PropTypes.number.isRequired,
|
|
1276
|
-
width: PropTypes.number.isRequired,
|
|
1277
|
-
height: PropTypes.number.isRequired,
|
|
1278
|
-
});
|
|
1279
|
-
|
|
1280
|
-
T['io.flow.billing.true.up.v0.models.weights_dead'] = PropTypes.exact({
|
|
1281
|
-
weight: PropTypes.number.isRequired,
|
|
1282
|
-
});
|
|
1283
|
-
|
|
1284
|
-
T['io.flow.billing.true.up.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
1285
|
-
shipping_method: T['io.flow.billing.true.up.v0.models.shipping_method_reference'].isRequired,
|
|
1286
|
-
name: PropTypes.string.isRequired,
|
|
1287
|
-
});
|
|
1288
|
-
|
|
1289
|
-
T['io.flow.billing.true.up.v0.models.metadata_weights'] = PropTypes.exact({
|
|
1290
|
-
dead: T['io.flow.billing.true.up.v0.models.weights_dead'],
|
|
1291
|
-
dimensional: T['io.flow.billing.true.up.v0.models.weights_dimensional'],
|
|
1292
|
-
});
|
|
1293
|
-
|
|
1294
|
-
T['io.flow.billing.true.up.v0.models.metadata_ratecard'] = PropTypes.exact({
|
|
1295
|
-
id: PropTypes.string.isRequired,
|
|
1296
|
-
proposition: T['io.flow.billing.true.up.v0.models.metadata_proposition'].isRequired,
|
|
1297
|
-
});
|
|
1298
|
-
|
|
1299
|
-
T['io.flow.billing.true.up.v0.models.label_metadata'] = PropTypes.exact({
|
|
1300
|
-
ratecard: T['io.flow.billing.true.up.v0.models.metadata_ratecard'].isRequired,
|
|
1301
|
-
weights: T['io.flow.billing.true.up.v0.models.metadata_weights'].isRequired,
|
|
1302
|
-
});
|
|
1303
|
-
|
|
1304
|
-
T['io.flow.billing.true.up.v0.models.label_destination'] = PropTypes.exact({
|
|
1305
|
-
country: PropTypes.string.isRequired,
|
|
1306
|
-
});
|
|
1307
|
-
|
|
1308
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
1309
|
-
amount: PropTypes.number.isRequired,
|
|
1310
|
-
percentage: PropTypes.number,
|
|
1311
|
-
fee_per_weight_unit: PropTypes.number,
|
|
1312
|
-
});
|
|
1313
|
-
|
|
1314
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
1315
|
-
fuel: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
1316
|
-
remote_area: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
1317
|
-
oversize: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
1318
|
-
duties_paid: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
1319
|
-
emergency: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
1320
|
-
peak: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
1321
|
-
address_correction: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
1322
|
-
});
|
|
1323
|
-
|
|
1324
|
-
T['io.flow.billing.true.up.v0.models.carrier_charge_file_result'] = PropTypes.exact({
|
|
1325
|
-
processed_at: PropTypes.string.isRequired,
|
|
1326
|
-
number_lines_successful: PropTypes.number.isRequired,
|
|
1327
|
-
number_lines_with_errors: PropTypes.number.isRequired,
|
|
1328
|
-
errors_url: PropTypes.string,
|
|
1329
|
-
});
|
|
1330
|
-
|
|
1331
|
-
T['io.flow.billing.true.up.v0.models.carrier_charge_file'] = PropTypes.exact({
|
|
1332
|
-
id: PropTypes.string.isRequired,
|
|
1333
|
-
url: PropTypes.string.isRequired,
|
|
1334
|
-
created_at: PropTypes.string.isRequired,
|
|
1335
|
-
result: T['io.flow.billing.true.up.v0.models.carrier_charge_file_result'],
|
|
1336
|
-
});
|
|
1337
|
-
|
|
1338
1293
|
T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
1339
1294
|
|
|
1340
1295
|
T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -1437,6 +1392,11 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
1437
1392
|
weight: PropTypes.number.isRequired,
|
|
1438
1393
|
});
|
|
1439
1394
|
|
|
1395
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
1396
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
|
|
1397
|
+
percent: PropTypes.number.isRequired,
|
|
1398
|
+
});
|
|
1399
|
+
|
|
1440
1400
|
T['io.flow.ratecard.v0.models.ratecard_region_reference'] = PropTypes.exact({
|
|
1441
1401
|
id: PropTypes.string.isRequired,
|
|
1442
1402
|
});
|
|
@@ -1716,6 +1676,60 @@ T['io.flow.experience.v0.models.address_configuration_province_translation'] = P
|
|
|
1716
1676
|
name: PropTypes.string.isRequired,
|
|
1717
1677
|
});
|
|
1718
1678
|
|
|
1679
|
+
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted'] = PropTypes.exact({
|
|
1680
|
+
discriminator: PropTypes.oneOf(['channel_order_summary_deleted']).isRequired,
|
|
1681
|
+
event_id: PropTypes.string.isRequired,
|
|
1682
|
+
timestamp: PropTypes.string.isRequired,
|
|
1683
|
+
channel_id: PropTypes.string.isRequired,
|
|
1684
|
+
id: PropTypes.string.isRequired,
|
|
1685
|
+
});
|
|
1686
|
+
|
|
1687
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted'] = PropTypes.exact({
|
|
1688
|
+
discriminator: PropTypes.oneOf(['shopify_markets_metrics_deleted']).isRequired,
|
|
1689
|
+
event_id: PropTypes.string.isRequired,
|
|
1690
|
+
timestamp: PropTypes.string.isRequired,
|
|
1691
|
+
id: PropTypes.string.isRequired,
|
|
1692
|
+
});
|
|
1693
|
+
|
|
1694
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_deleted'] = PropTypes.exact({
|
|
1695
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_deleted']).isRequired,
|
|
1696
|
+
event_id: PropTypes.string.isRequired,
|
|
1697
|
+
timestamp: PropTypes.string.isRequired,
|
|
1698
|
+
organization: PropTypes.string.isRequired,
|
|
1699
|
+
id: PropTypes.string.isRequired,
|
|
1700
|
+
});
|
|
1701
|
+
|
|
1702
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_webhook_registration_deleted'] = PropTypes.exact({
|
|
1703
|
+
discriminator: PropTypes.oneOf(['shopify_markets_webhook_registration_deleted']).isRequired,
|
|
1704
|
+
event_id: PropTypes.string.isRequired,
|
|
1705
|
+
timestamp: PropTypes.string.isRequired,
|
|
1706
|
+
organization: PropTypes.string.isRequired,
|
|
1707
|
+
id: PropTypes.string.isRequired,
|
|
1708
|
+
});
|
|
1709
|
+
|
|
1710
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_deleted'] = PropTypes.exact({
|
|
1711
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_deleted']).isRequired,
|
|
1712
|
+
event_id: PropTypes.string.isRequired,
|
|
1713
|
+
timestamp: PropTypes.string.isRequired,
|
|
1714
|
+
organization: PropTypes.string.isRequired,
|
|
1715
|
+
id: PropTypes.string.isRequired,
|
|
1716
|
+
});
|
|
1717
|
+
|
|
1718
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_shop_statistics'] = PropTypes.exact({
|
|
1719
|
+
id: PropTypes.string.isRequired,
|
|
1720
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
1721
|
+
catalog_sync_duration: PropTypes.number,
|
|
1722
|
+
catalog_products_count: PropTypes.number,
|
|
1723
|
+
});
|
|
1724
|
+
|
|
1725
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_upserted'] = PropTypes.exact({
|
|
1726
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_upserted']).isRequired,
|
|
1727
|
+
event_id: PropTypes.string.isRequired,
|
|
1728
|
+
timestamp: PropTypes.string.isRequired,
|
|
1729
|
+
organization: PropTypes.string.isRequired,
|
|
1730
|
+
shopify_markets_shop_statistics: T['io.flow.shopify.markets.internal.v0.models.shopify_shop_statistics'].isRequired,
|
|
1731
|
+
});
|
|
1732
|
+
|
|
1719
1733
|
T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance_rate'] = PropTypes.exact({
|
|
1720
1734
|
entity: PropTypes.number.isRequired,
|
|
1721
1735
|
});
|
|
@@ -1776,9 +1790,10 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_destination'] = PropTypes.e
|
|
|
1776
1790
|
province: T['io.flow.billing.reporting.csv.v0.models.reporting_province'],
|
|
1777
1791
|
});
|
|
1778
1792
|
|
|
1779
|
-
T['io.flow.billing.reporting.csv.v0.models.
|
|
1780
|
-
|
|
1781
|
-
|
|
1793
|
+
T['io.flow.billing.reporting.csv.v0.models.reporting_debug_missing_subsidies'] = PropTypes.exact({
|
|
1794
|
+
price: PropTypes.bool,
|
|
1795
|
+
tax: PropTypes.bool,
|
|
1796
|
+
duty: PropTypes.bool,
|
|
1782
1797
|
});
|
|
1783
1798
|
|
|
1784
1799
|
T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
@@ -2587,6 +2602,49 @@ T['io.flow.payment.internal.v0.unions.processor_account'] = PropTypes.oneOfType(
|
|
|
2587
2602
|
T['io.flow.payment.internal.v0.models.crypto_account'],
|
|
2588
2603
|
]);
|
|
2589
2604
|
|
|
2605
|
+
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
2606
|
+
'adjustment',
|
|
2607
|
+
'vat_deminimis',
|
|
2608
|
+
'duty_deminimis',
|
|
2609
|
+
'duties_item_price',
|
|
2610
|
+
'duties_freight',
|
|
2611
|
+
'duties_insurance',
|
|
2612
|
+
'vat_item_price',
|
|
2613
|
+
'vat_freight',
|
|
2614
|
+
'vat_insurance',
|
|
2615
|
+
'vat_duties_item_price',
|
|
2616
|
+
'vat_duties_freight',
|
|
2617
|
+
'vat_duties_insurance',
|
|
2618
|
+
'item_price',
|
|
2619
|
+
'item_discount',
|
|
2620
|
+
'rounding',
|
|
2621
|
+
'insurance',
|
|
2622
|
+
'shipping',
|
|
2623
|
+
'shipping_discount',
|
|
2624
|
+
'order_discount',
|
|
2625
|
+
'subtotal_percent_sales_margin',
|
|
2626
|
+
'subtotal_vat_percent_sales_margin',
|
|
2627
|
+
'subtotal_duty_percent_sales_margin',
|
|
2628
|
+
'vat_subsidy',
|
|
2629
|
+
'duty_subsidy',
|
|
2630
|
+
'remote_area_surcharge',
|
|
2631
|
+
'fuel_surcharge',
|
|
2632
|
+
'emergency_situation_surcharge',
|
|
2633
|
+
'peak_surcharge',
|
|
2634
|
+
'duties_taxes_paid_surcharge',
|
|
2635
|
+
]);
|
|
2636
|
+
|
|
2637
|
+
T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
2638
|
+
'adjustment',
|
|
2639
|
+
'subtotal',
|
|
2640
|
+
'vat',
|
|
2641
|
+
'duty',
|
|
2642
|
+
'shipping',
|
|
2643
|
+
'insurance',
|
|
2644
|
+
'discount',
|
|
2645
|
+
'surcharges',
|
|
2646
|
+
]);
|
|
2647
|
+
|
|
2590
2648
|
T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'] = PropTypes.oneOf(['passed', 'failed']);
|
|
2591
2649
|
|
|
2592
2650
|
T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
|
|
@@ -4893,6 +4951,131 @@ T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'] = PropTypes.exact(
|
|
|
4893
4951
|
});
|
|
4894
4952
|
|
|
4895
4953
|
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'] = PropTypes.oneOf(['pending', 'available', 'invalid']);
|
|
4954
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review']);
|
|
4955
|
+
|
|
4956
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
|
|
4957
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
4958
|
+
});
|
|
4959
|
+
|
|
4960
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_incorporation_country'] = PropTypes.exact({
|
|
4961
|
+
country: PropTypes.string.isRequired,
|
|
4962
|
+
state: PropTypes.string,
|
|
4963
|
+
province: PropTypes.string,
|
|
4964
|
+
jurisdiction: PropTypes.string,
|
|
4965
|
+
});
|
|
4966
|
+
|
|
4967
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_subsidiary_company'] = PropTypes.exact({
|
|
4968
|
+
legal_name: PropTypes.string,
|
|
4969
|
+
incorporation_country: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_incorporation_country'],
|
|
4970
|
+
});
|
|
4971
|
+
|
|
4972
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
4973
|
+
total_order_count: PropTypes.number.isRequired,
|
|
4974
|
+
});
|
|
4975
|
+
|
|
4976
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shopify_order_metrics'] = PropTypes.exact({
|
|
4977
|
+
total_order_count: PropTypes.number.isRequired,
|
|
4978
|
+
});
|
|
4979
|
+
|
|
4980
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_discrepancy'] = PropTypes.exact({
|
|
4981
|
+
organization_id: PropTypes.string.isRequired,
|
|
4982
|
+
count: PropTypes.number.isRequired,
|
|
4983
|
+
});
|
|
4984
|
+
|
|
4985
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_discrepancy_data'] = PropTypes.exact({
|
|
4986
|
+
total_count: PropTypes.number.isRequired,
|
|
4987
|
+
|
|
4988
|
+
discrepancies: PropTypes.arrayOf(
|
|
4989
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_discrepancy'],
|
|
4990
|
+
).isRequired,
|
|
4991
|
+
});
|
|
4992
|
+
|
|
4993
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
|
|
4994
|
+
|
|
4995
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
|
|
4996
|
+
'unsupported_origin_country',
|
|
4997
|
+
'unsupported_destination_country',
|
|
4998
|
+
'domestic_order',
|
|
4999
|
+
'order_contains_gift_card',
|
|
5000
|
+
'order_contains_restricted_goods',
|
|
5001
|
+
'missing_order_information',
|
|
5002
|
+
'unsupported_payment_information',
|
|
5003
|
+
'unsupported_shop_currency',
|
|
5004
|
+
'unsupported_free_order',
|
|
5005
|
+
'extracting_distribution_info_failed',
|
|
5006
|
+
'shipping_estimation_failed',
|
|
5007
|
+
'payment_authorization_failed',
|
|
5008
|
+
'unsupported_subsidized_order',
|
|
5009
|
+
'unsupported_virtual_goods',
|
|
5010
|
+
'non_matching_currencies',
|
|
5011
|
+
]);
|
|
5012
|
+
|
|
5013
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
5014
|
+
description: PropTypes.string.isRequired,
|
|
5015
|
+
rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
|
|
5016
|
+
});
|
|
5017
|
+
|
|
5018
|
+
T['io.flow.shopify.markets.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
5019
|
+
|
|
5020
|
+
T['io.flow.shopify.markets.internal.v0.models.channel_order_summary_fulfillment_details'] = PropTypes.exact({
|
|
5021
|
+
fulfillment_status: T['io.flow.shopify.markets.internal.v0.enums.channel_order_fulfillment_status_code'].isRequired,
|
|
5022
|
+
timestamp: PropTypes.string.isRequired,
|
|
5023
|
+
});
|
|
5024
|
+
|
|
5025
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
|
|
5026
|
+
'cx_team',
|
|
5027
|
+
'core_team',
|
|
5028
|
+
'core_team_investigate',
|
|
5029
|
+
'mex_team',
|
|
5030
|
+
'payments_team',
|
|
5031
|
+
'tc_team',
|
|
5032
|
+
'logistics_team',
|
|
5033
|
+
]);
|
|
5034
|
+
|
|
5035
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
5036
|
+
id: PropTypes.string.isRequired,
|
|
5037
|
+
organization_id: PropTypes.string.isRequired,
|
|
5038
|
+
order_number: PropTypes.string.isRequired,
|
|
5039
|
+
channel_id: PropTypes.string.isRequired,
|
|
5040
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
5041
|
+
payment_request_id: PropTypes.string,
|
|
5042
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
5043
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
5044
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
5045
|
+
order_created_at: PropTypes.string,
|
|
5046
|
+
order_updated_at: PropTypes.string,
|
|
5047
|
+
});
|
|
5048
|
+
|
|
5049
|
+
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
5050
|
+
message: PropTypes.string.isRequired,
|
|
5051
|
+
reason: PropTypes.string.isRequired,
|
|
5052
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
5053
|
+
});
|
|
5054
|
+
|
|
5055
|
+
T['io.flow.shopify.markets.internal.v0.models.order_validation_error'] = PropTypes.exact({
|
|
5056
|
+
message: PropTypes.string.isRequired,
|
|
5057
|
+
reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'].isRequired,
|
|
5058
|
+
action: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_error_action'],
|
|
5059
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
5060
|
+
});
|
|
5061
|
+
|
|
5062
|
+
T['io.flow.shopify.markets.internal.v0.models.generic_validation_error'] = PropTypes.exact({
|
|
5063
|
+
message: PropTypes.string.isRequired,
|
|
5064
|
+
reason: PropTypes.string.isRequired,
|
|
5065
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
5066
|
+
});
|
|
5067
|
+
|
|
5068
|
+
T['io.flow.shopify.markets.internal.v0.models.flow_shop_validation_error'] = PropTypes.exact({
|
|
5069
|
+
message: PropTypes.string.isRequired,
|
|
5070
|
+
reason: PropTypes.string.isRequired,
|
|
5071
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
5072
|
+
});
|
|
5073
|
+
|
|
5074
|
+
T['io.flow.shopify.markets.internal.v0.models.catalog_publication_sync_validation_error'] = PropTypes.exact({
|
|
5075
|
+
message: PropTypes.string.isRequired,
|
|
5076
|
+
reason: PropTypes.string.isRequired,
|
|
5077
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
5078
|
+
});
|
|
4896
5079
|
|
|
4897
5080
|
T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
|
|
4898
5081
|
type: PropTypes.oneOf(['file']).isRequired,
|
|
@@ -5154,33 +5337,19 @@ T['io.flow.external.paypal.v1.models.token_form'] = PropTypes.exact({
|
|
|
5154
5337
|
grant_type: T['io.flow.external.paypal.v1.enums.grant_type'].isRequired,
|
|
5155
5338
|
});
|
|
5156
5339
|
|
|
5340
|
+
T['io.flow.external.paypal.v1.enums.sale_state'] = PropTypes.oneOf(['pending', 'completed', 'denied', 'partially_refunded', 'refunded']);
|
|
5157
5341
|
T['io.flow.external.paypal.v1.enums.refund_state'] = PropTypes.oneOf(['pending', 'completed', 'cancelled', 'failed']);
|
|
5158
5342
|
|
|
5159
|
-
T['io.flow.external.paypal.v1.models.
|
|
5343
|
+
T['io.flow.external.paypal.v1.models.simple_amount'] = PropTypes.exact({
|
|
5160
5344
|
total: PropTypes.string.isRequired,
|
|
5161
5345
|
currency: PropTypes.string.isRequired,
|
|
5162
5346
|
});
|
|
5163
5347
|
|
|
5164
5348
|
T['io.flow.external.paypal.v1.models.refund_request'] = PropTypes.exact({
|
|
5165
|
-
amount: T['io.flow.external.paypal.v1.models.
|
|
5349
|
+
amount: T['io.flow.external.paypal.v1.models.simple_amount'].isRequired,
|
|
5166
5350
|
invoice_number: PropTypes.string.isRequired,
|
|
5167
5351
|
});
|
|
5168
5352
|
|
|
5169
|
-
T['io.flow.external.paypal.v1.models.refund'] = PropTypes.exact({
|
|
5170
|
-
id: PropTypes.string.isRequired,
|
|
5171
|
-
amount: T['io.flow.external.paypal.v1.models.refund_amount'].isRequired,
|
|
5172
|
-
state: T['io.flow.external.paypal.v1.enums.refund_state'].isRequired,
|
|
5173
|
-
sale_id: PropTypes.string.isRequired,
|
|
5174
|
-
invoice_number: PropTypes.string.isRequired,
|
|
5175
|
-
capture_id: PropTypes.string,
|
|
5176
|
-
parent_payment: PropTypes.string,
|
|
5177
|
-
reason_code: PropTypes.string,
|
|
5178
|
-
refund_reason_code: PropTypes.string,
|
|
5179
|
-
refund_funding_type: PropTypes.string,
|
|
5180
|
-
create_time: PropTypes.string.isRequired,
|
|
5181
|
-
update_time: PropTypes.string,
|
|
5182
|
-
});
|
|
5183
|
-
|
|
5184
5353
|
T['io.flow.external.paypal.v1.enums.return_mode'] = PropTypes.oneOf(['SHIPPED', 'IN_PERSON']);
|
|
5185
5354
|
|
|
5186
5355
|
T['io.flow.external.paypal.v1.enums.failure_reason'] = PropTypes.oneOf([
|
|
@@ -5676,6 +5845,48 @@ T['io.flow.external.paypal.v1.models.money'] = PropTypes.exact({
|
|
|
5676
5845
|
value: PropTypes.string,
|
|
5677
5846
|
});
|
|
5678
5847
|
|
|
5848
|
+
T['io.flow.external.paypal.v1.models.sale'] = PropTypes.exact({
|
|
5849
|
+
id: PropTypes.string.isRequired,
|
|
5850
|
+
state: T['io.flow.external.paypal.v1.enums.sale_state'].isRequired,
|
|
5851
|
+
parent_payment: PropTypes.string.isRequired,
|
|
5852
|
+
invoice_number: PropTypes.string,
|
|
5853
|
+
amount: T['io.flow.external.paypal.v1.models.simple_amount'],
|
|
5854
|
+
payment_mode: PropTypes.string,
|
|
5855
|
+
reason_code: PropTypes.string,
|
|
5856
|
+
protection_eligibility: PropTypes.string,
|
|
5857
|
+
protection_eligibility_type: PropTypes.string,
|
|
5858
|
+
receipt_id: PropTypes.string,
|
|
5859
|
+
soft_descriptor: PropTypes.string,
|
|
5860
|
+
exchange_rate: PropTypes.string,
|
|
5861
|
+
payment_hold_status: PropTypes.string,
|
|
5862
|
+
payment_hold_reasons: PropTypes.arrayOf(PropTypes.string),
|
|
5863
|
+
transaction_fee: T['io.flow.external.paypal.v1.models.money'],
|
|
5864
|
+
receivable_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
5865
|
+
custom: PropTypes.string,
|
|
5866
|
+
create_time: PropTypes.string,
|
|
5867
|
+
update_time: PropTypes.string,
|
|
5868
|
+
});
|
|
5869
|
+
|
|
5870
|
+
T['io.flow.external.paypal.v1.models.refund'] = PropTypes.exact({
|
|
5871
|
+
id: PropTypes.string.isRequired,
|
|
5872
|
+
amount: T['io.flow.external.paypal.v1.models.simple_amount'],
|
|
5873
|
+
state: T['io.flow.external.paypal.v1.enums.refund_state'].isRequired,
|
|
5874
|
+
sale_id: PropTypes.string.isRequired,
|
|
5875
|
+
invoice_number: PropTypes.string,
|
|
5876
|
+
capture_id: PropTypes.string,
|
|
5877
|
+
parent_payment: PropTypes.string,
|
|
5878
|
+
reason_code: PropTypes.string,
|
|
5879
|
+
refund_reason_code: PropTypes.string,
|
|
5880
|
+
refund_funding_type: PropTypes.string,
|
|
5881
|
+
refund_from_received_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
5882
|
+
refund_from_transaction_fee: T['io.flow.external.paypal.v1.models.money'],
|
|
5883
|
+
total_refunded_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
5884
|
+
refund_to_payer: T['io.flow.external.paypal.v1.models.money'],
|
|
5885
|
+
custom: PropTypes.string,
|
|
5886
|
+
create_time: PropTypes.string,
|
|
5887
|
+
update_time: PropTypes.string,
|
|
5888
|
+
});
|
|
5889
|
+
|
|
5679
5890
|
T['io.flow.external.paypal.v1.models.item_info'] = PropTypes.exact({
|
|
5680
5891
|
item_id: PropTypes.string,
|
|
5681
5892
|
item_description: PropTypes.string,
|
|
@@ -5933,33 +6144,6 @@ T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
|
|
|
5933
6144
|
name: PropTypes.string.isRequired,
|
|
5934
6145
|
});
|
|
5935
6146
|
|
|
5936
|
-
T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
5937
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'],
|
|
5938
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'],
|
|
5939
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
5940
|
-
]);
|
|
5941
|
-
|
|
5942
|
-
T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
5943
|
-
'fuel',
|
|
5944
|
-
'remote_area',
|
|
5945
|
-
'oversize',
|
|
5946
|
-
'duties_paid',
|
|
5947
|
-
'emergency',
|
|
5948
|
-
'peak',
|
|
5949
|
-
'address_correction',
|
|
5950
|
-
]);
|
|
5951
|
-
|
|
5952
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
|
|
5953
|
-
amount: PropTypes.number.isRequired,
|
|
5954
|
-
type: T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'].isRequired,
|
|
5955
|
-
detail: T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'].isRequired,
|
|
5956
|
-
});
|
|
5957
|
-
|
|
5958
|
-
T['io.flow.billing.true.up.v0.models.label_base'] = PropTypes.exact({
|
|
5959
|
-
amount: PropTypes.number.isRequired,
|
|
5960
|
-
weight: PropTypes.number.isRequired,
|
|
5961
|
-
});
|
|
5962
|
-
|
|
5963
6147
|
T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
|
|
5964
6148
|
id: PropTypes.string.isRequired,
|
|
5965
6149
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
@@ -6190,6 +6374,7 @@ T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
|
6190
6374
|
network: PropTypes.string,
|
|
6191
6375
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
6192
6376
|
stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
|
|
6377
|
+
mcc: PropTypes.string,
|
|
6193
6378
|
});
|
|
6194
6379
|
|
|
6195
6380
|
T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
|
|
@@ -6281,6 +6466,12 @@ T['io.flow.stripe.v0.models.visa_checkout'] = PropTypes.exact({
|
|
|
6281
6466
|
dynamic_last4: PropTypes.string,
|
|
6282
6467
|
});
|
|
6283
6468
|
|
|
6469
|
+
T['io.flow.stripe.v0.models.payment_intent_shipping'] = PropTypes.exact({
|
|
6470
|
+
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
6471
|
+
name: PropTypes.string.isRequired,
|
|
6472
|
+
phone: PropTypes.string,
|
|
6473
|
+
});
|
|
6474
|
+
|
|
6284
6475
|
T['io.flow.stripe.v0.models.shipping'] = PropTypes.exact({
|
|
6285
6476
|
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
6286
6477
|
name: PropTypes.string,
|
|
@@ -6512,6 +6703,7 @@ T['io.flow.stripe.v0.models.payment_intent_form'] = PropTypes.exact({
|
|
|
6512
6703
|
statement_descriptor_suffix: PropTypes.string,
|
|
6513
6704
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
6514
6705
|
transfer_group: PropTypes.string,
|
|
6706
|
+
shipping: T['io.flow.stripe.v0.models.payment_intent_shipping'],
|
|
6515
6707
|
});
|
|
6516
6708
|
|
|
6517
6709
|
T['io.flow.stripe.v0.models.charge_destination'] = PropTypes.exact({
|
|
@@ -6909,6 +7101,7 @@ T['io.flow.stripe.v0.models.payment_intent'] = PropTypes.exact({
|
|
|
6909
7101
|
status: T['io.flow.stripe.v0.enums.payment_intent_status'].isRequired,
|
|
6910
7102
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
6911
7103
|
transfer_group: PropTypes.string,
|
|
7104
|
+
shipping: T['io.flow.stripe.v0.models.payment_intent_shipping'],
|
|
6912
7105
|
});
|
|
6913
7106
|
|
|
6914
7107
|
T['io.flow.stripe.v0.models.stripe_error'] = PropTypes.exact({
|
|
@@ -6994,6 +7187,21 @@ T['io.flow.billing.csv.v0.models.flow_finance_statement_summary'] = PropTypes.ex
|
|
|
6994
7187
|
one_time_adjustments: PropTypes.objectOf(PropTypes.number).isRequired,
|
|
6995
7188
|
});
|
|
6996
7189
|
|
|
7190
|
+
T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
|
|
7191
|
+
iin: PropTypes.string.isRequired,
|
|
7192
|
+
country: PropTypes.string.isRequired,
|
|
7193
|
+
});
|
|
7194
|
+
|
|
7195
|
+
T['io.flow.billing.v0.models.transaction_metadata_original_transaction'] = PropTypes.exact({
|
|
7196
|
+
id: PropTypes.string.isRequired,
|
|
7197
|
+
});
|
|
7198
|
+
|
|
7199
|
+
T['io.flow.billing.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
7200
|
+
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
7201
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
7202
|
+
url: PropTypes.string,
|
|
7203
|
+
});
|
|
7204
|
+
|
|
6997
7205
|
T['io.flow.billing.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
|
|
6998
7206
|
|
|
6999
7207
|
T['io.flow.billing.internal.v0.models.account_source'] = PropTypes.exact({
|
|
@@ -7007,8 +7215,17 @@ T['io.flow.billing.internal.v0.models.account_summary'] = PropTypes.exact({
|
|
|
7007
7215
|
source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
|
|
7008
7216
|
});
|
|
7009
7217
|
|
|
7010
|
-
T['io.flow.billing.v0.models.
|
|
7011
|
-
|
|
7218
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifiers'] = PropTypes.exact({
|
|
7219
|
+
shopify_order_id: PropTypes.string,
|
|
7220
|
+
});
|
|
7221
|
+
|
|
7222
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'] = PropTypes.exact({
|
|
7223
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
7224
|
+
url: PropTypes.string,
|
|
7225
|
+
});
|
|
7226
|
+
|
|
7227
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'] = PropTypes.exact({
|
|
7228
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
7012
7229
|
});
|
|
7013
7230
|
|
|
7014
7231
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'] = PropTypes.exact({
|
|
@@ -7478,6 +7695,17 @@ T['io.flow.payment.gateway.v0.models.payment_refund'] = PropTypes.exact({
|
|
|
7478
7695
|
status: T['io.flow.payment.gateway.v0.models.payment_refund_status'].isRequired,
|
|
7479
7696
|
});
|
|
7480
7697
|
|
|
7698
|
+
T['io.flow.payment.v0.models.payment_processor_transaction_details_card'] = PropTypes.exact({
|
|
7699
|
+
discriminator: PropTypes.oneOf(['card']).isRequired,
|
|
7700
|
+
transaction_identifier: PropTypes.string,
|
|
7701
|
+
method_type: PropTypes.string,
|
|
7702
|
+
result_status: PropTypes.string,
|
|
7703
|
+
reason_code: PropTypes.string,
|
|
7704
|
+
avs_result_code: PropTypes.string,
|
|
7705
|
+
cvv_result_code: PropTypes.string,
|
|
7706
|
+
threeds_result_code: PropTypes.string,
|
|
7707
|
+
});
|
|
7708
|
+
|
|
7481
7709
|
T['io.flow.payment.v0.models.payment_processor_account_reference'] = PropTypes.exact({
|
|
7482
7710
|
organization: PropTypes.string.isRequired,
|
|
7483
7711
|
key: PropTypes.string.isRequired,
|
|
@@ -7962,6 +8190,7 @@ T['io.flow.flexe.v0.models.flexe_retail_fulfillment_form'] = PropTypes.exact({
|
|
|
7962
8190
|
});
|
|
7963
8191
|
|
|
7964
8192
|
T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
|
|
8193
|
+
T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
|
|
7965
8194
|
|
|
7966
8195
|
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
7967
8196
|
key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
|
|
@@ -8125,6 +8354,7 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
8125
8354
|
merchant_of_record_fee: PropTypes.number,
|
|
8126
8355
|
duty_guarantee_fee: PropTypes.number,
|
|
8127
8356
|
transfer_fee: PropTypes.number,
|
|
8357
|
+
negative_balance_guarantee_fee: PropTypes.number,
|
|
8128
8358
|
order_service_fee: T['io.flow.billing.internal.v0.models.tiered_fee'],
|
|
8129
8359
|
label_fees: T['io.flow.billing.internal.v0.models.account_setting_label_fees'],
|
|
8130
8360
|
charge_label_cost_directly: PropTypes.bool.isRequired,
|
|
@@ -8137,77 +8367,6 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
8137
8367
|
enable_fee_reversals: PropTypes.bool.isRequired,
|
|
8138
8368
|
});
|
|
8139
8369
|
|
|
8140
|
-
T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
|
|
8141
|
-
decimal: PropTypes.string.isRequired,
|
|
8142
|
-
group: PropTypes.string.isRequired,
|
|
8143
|
-
});
|
|
8144
|
-
|
|
8145
|
-
T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
|
|
8146
|
-
id: PropTypes.string.isRequired,
|
|
8147
|
-
name: PropTypes.string.isRequired,
|
|
8148
|
-
country: PropTypes.string.isRequired,
|
|
8149
|
-
language: PropTypes.string.isRequired,
|
|
8150
|
-
numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
|
|
8151
|
-
});
|
|
8152
|
-
|
|
8153
|
-
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
8154
|
-
primary: PropTypes.string.isRequired,
|
|
8155
|
-
narrow: PropTypes.string,
|
|
8156
|
-
});
|
|
8157
|
-
|
|
8158
|
-
T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
8159
|
-
name: PropTypes.string.isRequired,
|
|
8160
|
-
iso_4217_3: PropTypes.string.isRequired,
|
|
8161
|
-
number_decimals: PropTypes.number.isRequired,
|
|
8162
|
-
symbols: T['io.flow.reference.v0.models.currency_symbols'],
|
|
8163
|
-
default_locale: PropTypes.string,
|
|
8164
|
-
});
|
|
8165
|
-
|
|
8166
|
-
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
8167
|
-
'adjustment',
|
|
8168
|
-
'vat_deminimis',
|
|
8169
|
-
'duty_deminimis',
|
|
8170
|
-
'duties_item_price',
|
|
8171
|
-
'duties_freight',
|
|
8172
|
-
'duties_insurance',
|
|
8173
|
-
'vat_item_price',
|
|
8174
|
-
'vat_freight',
|
|
8175
|
-
'vat_insurance',
|
|
8176
|
-
'vat_duties_item_price',
|
|
8177
|
-
'vat_duties_freight',
|
|
8178
|
-
'vat_duties_insurance',
|
|
8179
|
-
'item_price',
|
|
8180
|
-
'item_discount',
|
|
8181
|
-
'rounding',
|
|
8182
|
-
'insurance',
|
|
8183
|
-
'shipping',
|
|
8184
|
-
'shipping_discount',
|
|
8185
|
-
'order_discount',
|
|
8186
|
-
'subtotal_percent_sales_margin',
|
|
8187
|
-
'subtotal_vat_percent_sales_margin',
|
|
8188
|
-
'subtotal_duty_percent_sales_margin',
|
|
8189
|
-
'vat_subsidy',
|
|
8190
|
-
'duty_subsidy',
|
|
8191
|
-
'remote_area_surcharge',
|
|
8192
|
-
'fuel_surcharge',
|
|
8193
|
-
'emergency_situation_surcharge',
|
|
8194
|
-
'peak_surcharge',
|
|
8195
|
-
'duties_taxes_paid_surcharge',
|
|
8196
|
-
]);
|
|
8197
|
-
|
|
8198
|
-
T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
|
|
8199
|
-
|
|
8200
|
-
T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
8201
|
-
'adjustment',
|
|
8202
|
-
'subtotal',
|
|
8203
|
-
'vat',
|
|
8204
|
-
'duty',
|
|
8205
|
-
'shipping',
|
|
8206
|
-
'insurance',
|
|
8207
|
-
'discount',
|
|
8208
|
-
'surcharges',
|
|
8209
|
-
]);
|
|
8210
|
-
|
|
8211
8370
|
T['io.flow.return.v0.models.return_source_external_vendor'] = PropTypes.exact({
|
|
8212
8371
|
discriminator: PropTypes.oneOf(['return_source_external_vendor']).isRequired,
|
|
8213
8372
|
key: PropTypes.string.isRequired,
|
|
@@ -8517,6 +8676,11 @@ T['io.flow.internal.v0.unions.spot_rate_metadata'] = PropTypes.oneOfType([
|
|
|
8517
8676
|
T['io.flow.internal.v0.models.spot_rate_metadata_rate'],
|
|
8518
8677
|
]);
|
|
8519
8678
|
|
|
8679
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'] = PropTypes.exact({
|
|
8680
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
8681
|
+
order_combined_shipment_id: PropTypes.string.isRequired,
|
|
8682
|
+
});
|
|
8683
|
+
|
|
8520
8684
|
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'] = PropTypes.exact({
|
|
8521
8685
|
discriminator: PropTypes.oneOf(['order_cancellation']).isRequired,
|
|
8522
8686
|
order_cancellation_id: PropTypes.string.isRequired,
|
|
@@ -8542,6 +8706,7 @@ T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
|
8542
8706
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
8543
8707
|
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
8544
8708
|
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
8709
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
8545
8710
|
]);
|
|
8546
8711
|
|
|
8547
8712
|
T['io.flow.internal.v0.models.online_authorization_completed'] = PropTypes.exact({
|
|
@@ -9272,6 +9437,14 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
9272
9437
|
id: PropTypes.string.isRequired,
|
|
9273
9438
|
});
|
|
9274
9439
|
|
|
9440
|
+
T['io.flow.internal.v0.models.channel_order_summary_deleted'] = PropTypes.exact({
|
|
9441
|
+
discriminator: PropTypes.oneOf(['channel_order_summary_deleted']).isRequired,
|
|
9442
|
+
event_id: PropTypes.string.isRequired,
|
|
9443
|
+
timestamp: PropTypes.string.isRequired,
|
|
9444
|
+
channel_id: PropTypes.string.isRequired,
|
|
9445
|
+
id: PropTypes.string.isRequired,
|
|
9446
|
+
});
|
|
9447
|
+
|
|
9275
9448
|
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'] = PropTypes.exact({
|
|
9276
9449
|
discriminator: PropTypes.oneOf(['shopify_markets_metrics_deleted']).isRequired,
|
|
9277
9450
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9615,6 +9788,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9615
9788
|
id: PropTypes.string.isRequired,
|
|
9616
9789
|
});
|
|
9617
9790
|
|
|
9791
|
+
T['io.flow.internal.v0.models.label_invoice_request_deleted'] = PropTypes.exact({
|
|
9792
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_deleted']).isRequired,
|
|
9793
|
+
event_id: PropTypes.string.isRequired,
|
|
9794
|
+
timestamp: PropTypes.string.isRequired,
|
|
9795
|
+
organization: PropTypes.string.isRequired,
|
|
9796
|
+
id: PropTypes.string.isRequired,
|
|
9797
|
+
});
|
|
9798
|
+
|
|
9618
9799
|
T['io.flow.internal.v0.models.billing_csv_transaction_deleted'] = PropTypes.exact({
|
|
9619
9800
|
discriminator: PropTypes.oneOf(['billing_csv_transaction_deleted']).isRequired,
|
|
9620
9801
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9908,14 +10089,6 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
9908
10089
|
id: PropTypes.string.isRequired,
|
|
9909
10090
|
});
|
|
9910
10091
|
|
|
9911
|
-
T['io.flow.internal.v0.models.label_invoice_request_deleted'] = PropTypes.exact({
|
|
9912
|
-
discriminator: PropTypes.oneOf(['label_invoice_request_deleted']).isRequired,
|
|
9913
|
-
event_id: PropTypes.string.isRequired,
|
|
9914
|
-
timestamp: PropTypes.string.isRequired,
|
|
9915
|
-
organization: PropTypes.string.isRequired,
|
|
9916
|
-
id: PropTypes.string.isRequired,
|
|
9917
|
-
});
|
|
9918
|
-
|
|
9919
10092
|
T['io.flow.internal.v0.models.sales_record_deleted'] = PropTypes.exact({
|
|
9920
10093
|
discriminator: PropTypes.oneOf(['sales_record_deleted']).isRequired,
|
|
9921
10094
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10044,6 +10217,13 @@ T['io.flow.internal.v0.models.account_deleted_v2'] = PropTypes.exact({
|
|
|
10044
10217
|
id: PropTypes.string.isRequired,
|
|
10045
10218
|
});
|
|
10046
10219
|
|
|
10220
|
+
T['io.flow.internal.v0.models.merchant_deleted'] = PropTypes.exact({
|
|
10221
|
+
discriminator: PropTypes.oneOf(['merchant_deleted']).isRequired,
|
|
10222
|
+
event_id: PropTypes.string.isRequired,
|
|
10223
|
+
timestamp: PropTypes.string.isRequired,
|
|
10224
|
+
id: PropTypes.string.isRequired,
|
|
10225
|
+
});
|
|
10226
|
+
|
|
10047
10227
|
T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
10048
10228
|
discriminator: PropTypes.oneOf(['index_assignment_deleted']).isRequired,
|
|
10049
10229
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10711,6 +10891,12 @@ T['io.flow.internal.v0.models.simplified_taxonomy_category'] = PropTypes.exact({
|
|
|
10711
10891
|
children: PropTypes.arrayOf(T['io.flow.internal.v0.unions.simplified_classification_taxonomy']).isRequired,
|
|
10712
10892
|
});
|
|
10713
10893
|
|
|
10894
|
+
T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact({
|
|
10895
|
+
tax: PropTypes.number.isRequired,
|
|
10896
|
+
duty: PropTypes.number.isRequired,
|
|
10897
|
+
total: PropTypes.number.isRequired,
|
|
10898
|
+
});
|
|
10899
|
+
|
|
10714
10900
|
T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
|
|
10715
10901
|
'carts/create',
|
|
10716
10902
|
'carts/update',
|
|
@@ -11052,6 +11238,19 @@ T['io.flow.shopify.markets.v0.models.shopify_webhook_response_wrapper'] = PropTy
|
|
|
11052
11238
|
webhook: T['io.flow.shopify.markets.v0.models.shopify_webhook_response'].isRequired,
|
|
11053
11239
|
});
|
|
11054
11240
|
|
|
11241
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_webhook_registration'] = PropTypes.exact({
|
|
11242
|
+
id: PropTypes.string.isRequired,
|
|
11243
|
+
response: T['io.flow.shopify.markets.v0.models.shopify_webhook_response'].isRequired,
|
|
11244
|
+
});
|
|
11245
|
+
|
|
11246
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_webhook_registration_upserted'] = PropTypes.exact({
|
|
11247
|
+
discriminator: PropTypes.oneOf(['shopify_markets_webhook_registration_upserted']).isRequired,
|
|
11248
|
+
event_id: PropTypes.string.isRequired,
|
|
11249
|
+
timestamp: PropTypes.string.isRequired,
|
|
11250
|
+
organization: PropTypes.string.isRequired,
|
|
11251
|
+
registration: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_webhook_registration'].isRequired,
|
|
11252
|
+
});
|
|
11253
|
+
|
|
11055
11254
|
T['io.flow.internal.v0.models.shopify_markets_webhook_registration'] = PropTypes.exact({
|
|
11056
11255
|
id: PropTypes.string.isRequired,
|
|
11057
11256
|
response: T['io.flow.shopify.markets.v0.models.shopify_webhook_response'].isRequired,
|
|
@@ -11184,22 +11383,6 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
11184
11383
|
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
11185
11384
|
});
|
|
11186
11385
|
|
|
11187
|
-
T['io.flow.internal.v0.models.invoice_info_form'] = PropTypes.exact({
|
|
11188
|
-
invoice_number: PropTypes.string.isRequired,
|
|
11189
|
-
invoice_date: PropTypes.string.isRequired,
|
|
11190
|
-
currency_code: PropTypes.string.isRequired,
|
|
11191
|
-
invoice_amount: PropTypes.string.isRequired,
|
|
11192
|
-
control_id: PropTypes.string,
|
|
11193
|
-
});
|
|
11194
|
-
|
|
11195
|
-
T['io.flow.internal.v0.models.shipper_account_info_form'] = PropTypes.exact({
|
|
11196
|
-
account_name: PropTypes.string,
|
|
11197
|
-
account_number: PropTypes.string.isRequired,
|
|
11198
|
-
postal: PropTypes.string.isRequired,
|
|
11199
|
-
country: PropTypes.string.isRequired,
|
|
11200
|
-
invoice_info: T['io.flow.internal.v0.models.invoice_info_form'],
|
|
11201
|
-
});
|
|
11202
|
-
|
|
11203
11386
|
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
11204
11387
|
'street_address_is_blank_3pl',
|
|
11205
11388
|
'street_address_is_po_box_3pl',
|
|
@@ -11241,6 +11424,10 @@ T['io.flow.internal.v0.models.search_experience_summary'] = PropTypes.exact({
|
|
|
11241
11424
|
status: T['io.flow.experience.v0.enums.experience_status'].isRequired,
|
|
11242
11425
|
});
|
|
11243
11426
|
|
|
11427
|
+
T['io.flow.payment.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType(
|
|
11428
|
+
[T['io.flow.payment.v0.models.payment_processor_transaction_details_card']],
|
|
11429
|
+
);
|
|
11430
|
+
|
|
11244
11431
|
T['io.flow.payment.v0.models.payment_processor_identifier'] = PropTypes.exact({
|
|
11245
11432
|
id: PropTypes.string.isRequired,
|
|
11246
11433
|
label: PropTypes.string.isRequired,
|
|
@@ -11258,6 +11445,7 @@ T['io.flow.payment.v0.models.payment_processor'] = PropTypes.exact({
|
|
|
11258
11445
|
processor: PropTypes.string.isRequired,
|
|
11259
11446
|
operation_identifier: T['io.flow.payment.v0.models.payment_processor_identifier'],
|
|
11260
11447
|
account: T['io.flow.payment.v0.models.payment_processor_account'],
|
|
11448
|
+
transaction_details: T['io.flow.payment.v0.unions.payment_processor_transaction_details'],
|
|
11261
11449
|
});
|
|
11262
11450
|
|
|
11263
11451
|
T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
|
|
@@ -11267,7 +11455,10 @@ T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfTyp
|
|
|
11267
11455
|
|
|
11268
11456
|
T['io.flow.billing.reporting.csv.v0.models.reporting_debug'] = PropTypes.exact({
|
|
11269
11457
|
console_order_link: PropTypes.string.isRequired,
|
|
11270
|
-
|
|
11458
|
+
allocation_order_totals_delta: PropTypes.number,
|
|
11459
|
+
allocation_order_item_discount_delta: PropTypes.number,
|
|
11460
|
+
missing_item_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_debug_missing_subsidies'],
|
|
11461
|
+
missing_shipping_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_debug_missing_subsidies'],
|
|
11271
11462
|
});
|
|
11272
11463
|
|
|
11273
11464
|
T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'] = PropTypes.exact({
|
|
@@ -11275,6 +11466,14 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'] = PropType
|
|
|
11275
11466
|
rate: T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance_rate'].isRequired,
|
|
11276
11467
|
});
|
|
11277
11468
|
|
|
11469
|
+
T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_transactions'] = PropTypes.exact({
|
|
11470
|
+
adjustment: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11471
|
+
reversal: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11472
|
+
tax: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11473
|
+
duty: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11474
|
+
freight: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11475
|
+
});
|
|
11476
|
+
|
|
11278
11477
|
T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
11279
11478
|
duty_guarantee: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11280
11479
|
mor: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -11369,6 +11568,7 @@ T['io.flow.billing.reporting.csv.v0.models.sales_record'] = PropTypes.exact({
|
|
|
11369
11568
|
marked_as_final: T['io.flow.billing.reporting.csv.v0.models.marked_as_final'].isRequired,
|
|
11370
11569
|
merchant_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_subsidies'].isRequired,
|
|
11371
11570
|
merchant_fees: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_fees'].isRequired,
|
|
11571
|
+
merchant_transactions: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_transactions'].isRequired,
|
|
11372
11572
|
vat_remittance: T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'].isRequired,
|
|
11373
11573
|
debug: T['io.flow.billing.reporting.csv.v0.models.reporting_debug'].isRequired,
|
|
11374
11574
|
});
|
|
@@ -11442,16 +11642,24 @@ T['io.flow.internal.v0.models.restriction_item_review_decision_form'] = PropType
|
|
|
11442
11642
|
decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
|
|
11443
11643
|
});
|
|
11444
11644
|
|
|
11645
|
+
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf(['sales_record', 'trueup_overview', 'non_channel_payment_bank_account']);
|
|
11646
|
+
|
|
11647
|
+
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
11648
|
+
from: PropTypes.string.isRequired,
|
|
11649
|
+
to: PropTypes.string.isRequired,
|
|
11650
|
+
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
11651
|
+
});
|
|
11652
|
+
|
|
11445
11653
|
T['io.flow.internal.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
|
|
11446
11654
|
|
|
11447
11655
|
T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
11448
|
-
|
|
11656
|
+
id: PropTypes.string.isRequired,
|
|
11449
11657
|
status: T['io.flow.internal.v0.enums.report_status'].isRequired,
|
|
11658
|
+
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
11450
11659
|
from: PropTypes.string.isRequired,
|
|
11451
11660
|
to: PropTypes.string.isRequired,
|
|
11452
|
-
|
|
11453
|
-
|
|
11454
|
-
refunds_url: PropTypes.string,
|
|
11661
|
+
url: PropTypes.string,
|
|
11662
|
+
processed_at: PropTypes.string,
|
|
11455
11663
|
});
|
|
11456
11664
|
|
|
11457
11665
|
T['io.flow.internal.v0.enums.redirect_reason'] = PropTypes.oneOf(['three_d_secure']);
|
|
@@ -11593,6 +11801,7 @@ T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
|
11593
11801
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
11594
11802
|
id: PropTypes.string,
|
|
11595
11803
|
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
11804
|
+
weight_break: PropTypes.number,
|
|
11596
11805
|
});
|
|
11597
11806
|
|
|
11598
11807
|
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
@@ -12149,6 +12358,7 @@ T['io.flow.internal.v0.models.organization_deactivation'] = PropTypes.exact({
|
|
|
12149
12358
|
deactivate_at: PropTypes.string.isRequired,
|
|
12150
12359
|
created_at: PropTypes.string.isRequired,
|
|
12151
12360
|
reason: PropTypes.string,
|
|
12361
|
+
processed_at: PropTypes.string,
|
|
12152
12362
|
});
|
|
12153
12363
|
|
|
12154
12364
|
T['io.flow.internal.v0.models.organization_deactivation_upserted'] = PropTypes.exact({
|
|
@@ -12412,6 +12622,16 @@ T['io.flow.internal.v0.models.notification'] = PropTypes.exact({
|
|
|
12412
12622
|
order: T['io.flow.internal.v0.models.decision'].isRequired,
|
|
12413
12623
|
});
|
|
12414
12624
|
|
|
12625
|
+
T['io.flow.internal.v0.models.report_bank_account'] = PropTypes.exact({
|
|
12626
|
+
id: PropTypes.string,
|
|
12627
|
+
last4: PropTypes.string,
|
|
12628
|
+
});
|
|
12629
|
+
|
|
12630
|
+
T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
12631
|
+
id: PropTypes.string.isRequired,
|
|
12632
|
+
created_at: PropTypes.string.isRequired,
|
|
12633
|
+
});
|
|
12634
|
+
|
|
12415
12635
|
T['io.flow.internal.v0.models.shipping_method_reference'] = PropTypes.exact({
|
|
12416
12636
|
id: PropTypes.string.isRequired,
|
|
12417
12637
|
});
|
|
@@ -12497,6 +12717,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
12497
12717
|
T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
12498
12718
|
organization_id: PropTypes.string.isRequired,
|
|
12499
12719
|
shop_name: PropTypes.string,
|
|
12720
|
+
shop_id: PropTypes.string,
|
|
12500
12721
|
legal_name: PropTypes.string.isRequired,
|
|
12501
12722
|
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
12502
12723
|
});
|
|
@@ -12545,6 +12766,22 @@ T['io.flow.internal.v0.models.organization_status_change_upserted'] = PropTypes.
|
|
|
12545
12766
|
organization_status_change: T['io.flow.internal.v0.models.organization_status_change'].isRequired,
|
|
12546
12767
|
});
|
|
12547
12768
|
|
|
12769
|
+
T['io.flow.internal.v0.models.account_reference'] = PropTypes.exact({
|
|
12770
|
+
id: PropTypes.string.isRequired,
|
|
12771
|
+
});
|
|
12772
|
+
|
|
12773
|
+
T['io.flow.internal.v0.models.merchant'] = PropTypes.exact({
|
|
12774
|
+
id: PropTypes.string.isRequired,
|
|
12775
|
+
account: T['io.flow.internal.v0.models.account_reference'].isRequired,
|
|
12776
|
+
});
|
|
12777
|
+
|
|
12778
|
+
T['io.flow.internal.v0.models.merchant_upserted'] = PropTypes.exact({
|
|
12779
|
+
discriminator: PropTypes.oneOf(['merchant_upserted']).isRequired,
|
|
12780
|
+
event_id: PropTypes.string.isRequired,
|
|
12781
|
+
timestamp: PropTypes.string.isRequired,
|
|
12782
|
+
merchant: T['io.flow.internal.v0.models.merchant'].isRequired,
|
|
12783
|
+
});
|
|
12784
|
+
|
|
12548
12785
|
T['io.flow.shopify.markets.v0.models.shopify_order_metafield'] = PropTypes.exact({
|
|
12549
12786
|
id: PropTypes.number.isRequired,
|
|
12550
12787
|
key: PropTypes.string.isRequired,
|
|
@@ -12582,7 +12819,7 @@ T['io.flow.shopify.markets.v0.models.response_shopify_transactions'] = PropTypes
|
|
|
12582
12819
|
});
|
|
12583
12820
|
|
|
12584
12821
|
T['io.flow.shopify.markets.v0.enums.shopify_order_inventory_behaviour'] = PropTypes.oneOf(['bypass', 'decrement_ignoring_policy', 'decrement_obeying_policy']);
|
|
12585
|
-
T['io.flow.shopify.markets.v0.enums.shopify_order_processing_method_type'] = PropTypes.oneOf(['checkout', 'direct', 'manual', 'offsite', 'express']);
|
|
12822
|
+
T['io.flow.shopify.markets.v0.enums.shopify_order_processing_method_type'] = PropTypes.oneOf(['checkout', 'direct', 'manual', 'offsite', 'express', 'deferred_payment']);
|
|
12586
12823
|
|
|
12587
12824
|
T['io.flow.shopify.markets.v0.models.shopify_order_attribute'] = PropTypes.exact({
|
|
12588
12825
|
name: PropTypes.string.isRequired,
|
|
@@ -12902,6 +13139,27 @@ T['io.flow.shopify.markets.v0.models.shopify_order_wrapper'] = PropTypes.exact({
|
|
|
12902
13139
|
order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
12903
13140
|
});
|
|
12904
13141
|
|
|
13142
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order'] = PropTypes.exact({
|
|
13143
|
+
id: PropTypes.string.isRequired,
|
|
13144
|
+
model: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
13145
|
+
});
|
|
13146
|
+
|
|
13147
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_upserted'] = PropTypes.exact({
|
|
13148
|
+
discriminator: PropTypes.oneOf(['shopify_markets_order_upserted']).isRequired,
|
|
13149
|
+
event_id: PropTypes.string.isRequired,
|
|
13150
|
+
timestamp: PropTypes.string.isRequired,
|
|
13151
|
+
organization: PropTypes.string.isRequired,
|
|
13152
|
+
shopify_markets_order: T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order'].isRequired,
|
|
13153
|
+
});
|
|
13154
|
+
|
|
13155
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_deleted'] = PropTypes.exact({
|
|
13156
|
+
discriminator: PropTypes.oneOf(['shopify_markets_order_deleted']).isRequired,
|
|
13157
|
+
event_id: PropTypes.string.isRequired,
|
|
13158
|
+
timestamp: PropTypes.string.isRequired,
|
|
13159
|
+
organization: PropTypes.string.isRequired,
|
|
13160
|
+
shopify_markets_order: T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order'].isRequired,
|
|
13161
|
+
});
|
|
13162
|
+
|
|
12905
13163
|
T['io.flow.internal.v0.models.shopify_markets_order'] = PropTypes.exact({
|
|
12906
13164
|
id: PropTypes.string.isRequired,
|
|
12907
13165
|
model: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
@@ -13169,6 +13427,8 @@ T['io.flow.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
|
13169
13427
|
'platform_fee',
|
|
13170
13428
|
'shipping_true_up',
|
|
13171
13429
|
'tax_credit',
|
|
13430
|
+
'carrier_credit',
|
|
13431
|
+
'negative_balance_guarantee',
|
|
13172
13432
|
]);
|
|
13173
13433
|
|
|
13174
13434
|
T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
@@ -13178,6 +13438,7 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
|
13178
13438
|
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
13179
13439
|
posted_at: PropTypes.string,
|
|
13180
13440
|
order: T['io.flow.internal.v0.models.manual_transaction_form_order'],
|
|
13441
|
+
original_transaction_id: PropTypes.string,
|
|
13181
13442
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
13182
13443
|
});
|
|
13183
13444
|
|
|
@@ -13470,39 +13731,6 @@ T['io.flow.internal.v0.models.taxonomy_category'] = PropTypes.exact({
|
|
|
13470
13731
|
children: PropTypes.arrayOf(T['io.flow.internal.v0.unions.classification_taxonomy']).isRequired,
|
|
13471
13732
|
});
|
|
13472
13733
|
|
|
13473
|
-
T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
13474
|
-
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
13475
|
-
fee: PropTypes.number.isRequired,
|
|
13476
|
-
});
|
|
13477
|
-
|
|
13478
|
-
T['io.flow.internal.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
|
|
13479
|
-
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
13480
|
-
percentage: PropTypes.number.isRequired,
|
|
13481
|
-
});
|
|
13482
|
-
|
|
13483
|
-
T['io.flow.internal.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
|
|
13484
|
-
discriminator: PropTypes.oneOf(['flat']).isRequired,
|
|
13485
|
-
placeholder: PropTypes.string,
|
|
13486
|
-
});
|
|
13487
|
-
|
|
13488
|
-
T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
|
|
13489
|
-
id: PropTypes.string.isRequired,
|
|
13490
|
-
name: PropTypes.string.isRequired,
|
|
13491
|
-
tracking_url: PropTypes.string.isRequired,
|
|
13492
|
-
});
|
|
13493
|
-
|
|
13494
|
-
T['io.flow.reference.v0.models.carrier_service'] = PropTypes.exact({
|
|
13495
|
-
id: PropTypes.string.isRequired,
|
|
13496
|
-
carrier: T['io.flow.reference.v0.models.carrier'].isRequired,
|
|
13497
|
-
name: PropTypes.string.isRequired,
|
|
13498
|
-
});
|
|
13499
|
-
|
|
13500
|
-
T['io.flow.experience.v0.models.order_service_change'] = PropTypes.exact({
|
|
13501
|
-
id: PropTypes.string.isRequired,
|
|
13502
|
-
from: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
13503
|
-
to: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
13504
|
-
});
|
|
13505
|
-
|
|
13506
13734
|
T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
13507
13735
|
zpl: PropTypes.string,
|
|
13508
13736
|
zpl_url: PropTypes.string,
|
|
@@ -13539,6 +13767,11 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
13539
13767
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
13540
13768
|
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
13541
13769
|
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
13770
|
+
carrier: T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
13771
|
+
});
|
|
13772
|
+
|
|
13773
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
13774
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
13542
13775
|
});
|
|
13543
13776
|
|
|
13544
13777
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
@@ -13563,39 +13796,23 @@ T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
|
13563
13796
|
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
13564
13797
|
});
|
|
13565
13798
|
|
|
13566
|
-
T['io.flow.internal.v0.models.weights_dimensional'] = PropTypes.exact({
|
|
13567
|
-
weight: PropTypes.number.isRequired,
|
|
13568
|
-
length: PropTypes.number.isRequired,
|
|
13569
|
-
width: PropTypes.number.isRequired,
|
|
13570
|
-
height: PropTypes.number.isRequired,
|
|
13571
|
-
});
|
|
13572
|
-
|
|
13573
|
-
T['io.flow.internal.v0.models.weights_dead'] = PropTypes.exact({
|
|
13574
|
-
weight: PropTypes.number.isRequired,
|
|
13575
|
-
});
|
|
13576
|
-
|
|
13577
13799
|
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
13578
13800
|
shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
|
|
13579
13801
|
name: PropTypes.string.isRequired,
|
|
13580
13802
|
});
|
|
13581
13803
|
|
|
13582
|
-
T['io.flow.internal.v0.models.metadata_weights'] = PropTypes.exact({
|
|
13583
|
-
dead: T['io.flow.internal.v0.models.weights_dead'],
|
|
13584
|
-
dimensional: T['io.flow.internal.v0.models.weights_dimensional'],
|
|
13585
|
-
});
|
|
13586
|
-
|
|
13587
13804
|
T['io.flow.internal.v0.models.metadata_ratecard'] = PropTypes.exact({
|
|
13588
13805
|
id: PropTypes.string.isRequired,
|
|
13589
13806
|
proposition: T['io.flow.internal.v0.models.metadata_proposition'].isRequired,
|
|
13590
13807
|
});
|
|
13591
13808
|
|
|
13592
|
-
T['io.flow.
|
|
13593
|
-
T['io.flow.
|
|
13594
|
-
T['io.flow.
|
|
13595
|
-
T['io.flow.
|
|
13809
|
+
T['io.flow.trueup.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
13810
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_flat'],
|
|
13811
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_percentage'],
|
|
13812
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
13596
13813
|
]);
|
|
13597
13814
|
|
|
13598
|
-
T['io.flow.
|
|
13815
|
+
T['io.flow.trueup.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
13599
13816
|
'fuel',
|
|
13600
13817
|
'remote_area',
|
|
13601
13818
|
'oversize',
|
|
@@ -13605,17 +13822,15 @@ T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
|
13605
13822
|
'address_correction',
|
|
13606
13823
|
]);
|
|
13607
13824
|
|
|
13608
|
-
T['io.flow.
|
|
13609
|
-
|
|
13610
|
-
T['io.flow.
|
|
13611
|
-
|
|
13612
|
-
|
|
13613
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
13614
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
13615
|
-
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
13616
|
-
created_at: PropTypes.string.isRequired,
|
|
13825
|
+
T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
13826
|
+
amount: PropTypes.number.isRequired,
|
|
13827
|
+
type: T['io.flow.trueup.v0.enums.trueup_surcharge_type'].isRequired,
|
|
13828
|
+
percentage: PropTypes.number,
|
|
13829
|
+
per_weight_unit: PropTypes.number,
|
|
13617
13830
|
});
|
|
13618
13831
|
|
|
13832
|
+
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
13833
|
+
|
|
13619
13834
|
T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary_cost'] = PropTypes.exact({
|
|
13620
13835
|
amount: PropTypes.number.isRequired,
|
|
13621
13836
|
currency: PropTypes.string.isRequired,
|
|
@@ -13633,28 +13848,15 @@ T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_su
|
|
|
13633
13848
|
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
13634
13849
|
});
|
|
13635
13850
|
|
|
13636
|
-
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
13637
|
-
ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
|
|
13638
|
-
weights: T['io.flow.internal.v0.models.metadata_weights'].isRequired,
|
|
13639
|
-
});
|
|
13640
|
-
|
|
13641
13851
|
T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
|
|
13642
13852
|
country: PropTypes.string.isRequired,
|
|
13853
|
+
postal: PropTypes.string,
|
|
13643
13854
|
});
|
|
13644
13855
|
|
|
13645
|
-
T['io.flow.
|
|
13856
|
+
T['io.flow.trueup.v0.models.label_surcharge'] = PropTypes.exact({
|
|
13646
13857
|
amount: PropTypes.number.isRequired,
|
|
13647
|
-
type: T['io.flow.
|
|
13648
|
-
detail: T['io.flow.
|
|
13649
|
-
});
|
|
13650
|
-
|
|
13651
|
-
T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
13652
|
-
id: PropTypes.string.isRequired,
|
|
13653
|
-
carrier_service_id: PropTypes.string.isRequired,
|
|
13654
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
13655
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
13656
|
-
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
13657
|
-
created_at: PropTypes.string.isRequired,
|
|
13858
|
+
type: T['io.flow.trueup.v0.enums.trueup_surcharge_type'].isRequired,
|
|
13859
|
+
detail: T['io.flow.trueup.v0.unions.label_surcharge_detail'].isRequired,
|
|
13658
13860
|
});
|
|
13659
13861
|
|
|
13660
13862
|
T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
|
|
@@ -13726,6 +13928,24 @@ T['io.flow.internal.v0.models.klarna_authorization_parameters'] = PropTypes.exac
|
|
|
13726
13928
|
});
|
|
13727
13929
|
|
|
13728
13930
|
T['io.flow.internal.v0.unions.inline_authorization_parameters'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.klarna_authorization_parameters']]);
|
|
13931
|
+
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
13932
|
+
|
|
13933
|
+
T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
|
|
13934
|
+
number: PropTypes.string.isRequired,
|
|
13935
|
+
fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
|
|
13936
|
+
});
|
|
13937
|
+
|
|
13938
|
+
T['io.flow.internal.v0.models.shopper_line'] = PropTypes.exact({
|
|
13939
|
+
item: T['io.flow.internal.v0.models.item_summary'].isRequired,
|
|
13940
|
+
quantity: PropTypes.number.isRequired,
|
|
13941
|
+
unit_price: PropTypes.number.isRequired,
|
|
13942
|
+
price: PropTypes.number.isRequired,
|
|
13943
|
+
discount: PropTypes.number.isRequired,
|
|
13944
|
+
tax: PropTypes.number.isRequired,
|
|
13945
|
+
duty: PropTypes.number.isRequired,
|
|
13946
|
+
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
13947
|
+
total: PropTypes.number.isRequired,
|
|
13948
|
+
});
|
|
13729
13949
|
|
|
13730
13950
|
T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
13731
13951
|
id: PropTypes.string.isRequired,
|
|
@@ -13864,6 +14084,11 @@ T['io.flow.billing.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
|
13864
14084
|
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
13865
14085
|
});
|
|
13866
14086
|
|
|
14087
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel'] = PropTypes.exact({
|
|
14088
|
+
method: PropTypes.string.isRequired,
|
|
14089
|
+
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
14090
|
+
});
|
|
14091
|
+
|
|
13867
14092
|
T['io.flow.payment.v0.models.card_confirmation_summary'] = PropTypes.exact({
|
|
13868
14093
|
discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
|
|
13869
14094
|
type: T['io.flow.payment.v0.enums.card_type'],
|
|
@@ -14424,13 +14649,58 @@ T['io.flow.internal.v0.models.fx_revenue_recognition_organization'] = PropTypes.
|
|
|
14424
14649
|
id: PropTypes.string.isRequired,
|
|
14425
14650
|
});
|
|
14426
14651
|
|
|
14652
|
+
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'] = PropTypes.exact({
|
|
14653
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
14654
|
+
id: PropTypes.string.isRequired,
|
|
14655
|
+
carrier_id: PropTypes.string,
|
|
14656
|
+
carrier_service_id: PropTypes.string,
|
|
14657
|
+
carrier_tracking_number: PropTypes.string,
|
|
14658
|
+
label_id: PropTypes.string,
|
|
14659
|
+
created_at: PropTypes.string,
|
|
14660
|
+
});
|
|
14661
|
+
|
|
14662
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
14663
|
+
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
14664
|
+
id: PropTypes.string.isRequired,
|
|
14665
|
+
carrier_id: PropTypes.string,
|
|
14666
|
+
carrier_service_id: PropTypes.string,
|
|
14667
|
+
carrier_tracking_number: PropTypes.string,
|
|
14668
|
+
label_id: PropTypes.string,
|
|
14669
|
+
created_at: PropTypes.string,
|
|
14670
|
+
});
|
|
14671
|
+
|
|
14672
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
14673
|
+
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
14674
|
+
id: PropTypes.string.isRequired,
|
|
14675
|
+
carrier_id: PropTypes.string,
|
|
14676
|
+
carrier_service_id: PropTypes.string,
|
|
14677
|
+
carrier_tracking_number: PropTypes.string,
|
|
14678
|
+
label_id: PropTypes.string,
|
|
14679
|
+
created_at: PropTypes.string,
|
|
14680
|
+
});
|
|
14681
|
+
|
|
14682
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
14683
|
+
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
14684
|
+
id: PropTypes.string.isRequired,
|
|
14685
|
+
carrier_id: PropTypes.string,
|
|
14686
|
+
carrier_service_id: PropTypes.string,
|
|
14687
|
+
carrier_tracking_number: PropTypes.string,
|
|
14688
|
+
label_id: PropTypes.string,
|
|
14689
|
+
created_at: PropTypes.string,
|
|
14690
|
+
});
|
|
14691
|
+
|
|
14692
|
+
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
14693
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
14694
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
14695
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
14696
|
+
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
14697
|
+
]);
|
|
14698
|
+
|
|
14427
14699
|
T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.exact({
|
|
14428
14700
|
status: T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'].isRequired,
|
|
14429
14701
|
quantity: PropTypes.number.isRequired,
|
|
14430
14702
|
});
|
|
14431
14703
|
|
|
14432
|
-
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
14433
|
-
|
|
14434
14704
|
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
14435
14705
|
item_number: PropTypes.string.isRequired,
|
|
14436
14706
|
line_number: PropTypes.number.isRequired,
|
|
@@ -14476,31 +14746,14 @@ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropType
|
|
|
14476
14746
|
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
14477
14747
|
});
|
|
14478
14748
|
|
|
14479
|
-
T['io.flow.internal.v0.models.
|
|
14480
|
-
discriminator: PropTypes.oneOf(['
|
|
14481
|
-
|
|
14482
|
-
carrier_id: PropTypes.string,
|
|
14483
|
-
carrier_service_id: PropTypes.string,
|
|
14484
|
-
carrier_tracking_number: PropTypes.string,
|
|
14485
|
-
label_id: PropTypes.string,
|
|
14486
|
-
});
|
|
14487
|
-
|
|
14488
|
-
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
14489
|
-
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
14490
|
-
id: PropTypes.string.isRequired,
|
|
14491
|
-
carrier_id: PropTypes.string,
|
|
14492
|
-
carrier_service_id: PropTypes.string,
|
|
14493
|
-
carrier_tracking_number: PropTypes.string,
|
|
14494
|
-
label_id: PropTypes.string,
|
|
14749
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_time'] = PropTypes.exact({
|
|
14750
|
+
discriminator: PropTypes.oneOf(['by_time']).isRequired,
|
|
14751
|
+
placeholder: PropTypes.string,
|
|
14495
14752
|
});
|
|
14496
14753
|
|
|
14497
|
-
T['io.flow.internal.v0.models.
|
|
14498
|
-
discriminator: PropTypes.oneOf(['
|
|
14499
|
-
|
|
14500
|
-
carrier_id: PropTypes.string,
|
|
14501
|
-
carrier_service_id: PropTypes.string,
|
|
14502
|
-
carrier_tracking_number: PropTypes.string,
|
|
14503
|
-
label_id: PropTypes.string,
|
|
14754
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_proof'] = PropTypes.exact({
|
|
14755
|
+
discriminator: PropTypes.oneOf(['by_proof']).isRequired,
|
|
14756
|
+
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
14504
14757
|
});
|
|
14505
14758
|
|
|
14506
14759
|
T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
@@ -14523,6 +14776,15 @@ T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
|
14523
14776
|
total: PropTypes.number.isRequired,
|
|
14524
14777
|
});
|
|
14525
14778
|
|
|
14779
|
+
T['io.flow.internal.v0.models.shopper_freight'] = PropTypes.exact({
|
|
14780
|
+
price: PropTypes.number.isRequired,
|
|
14781
|
+
discount: PropTypes.number.isRequired,
|
|
14782
|
+
tax: PropTypes.number.isRequired,
|
|
14783
|
+
duty: PropTypes.number.isRequired,
|
|
14784
|
+
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
14785
|
+
total: PropTypes.number.isRequired,
|
|
14786
|
+
});
|
|
14787
|
+
|
|
14526
14788
|
T['io.flow.internal.v0.models.shopper_fees'] = PropTypes.exact({
|
|
14527
14789
|
fuel: PropTypes.number.isRequired,
|
|
14528
14790
|
remote_area: PropTypes.number.isRequired,
|
|
@@ -14537,59 +14799,36 @@ T['io.flow.internal.v0.models.merchant_subsidies'] = PropTypes.exact({
|
|
|
14537
14799
|
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
14538
14800
|
tax: PropTypes.number.isRequired,
|
|
14539
14801
|
duty: PropTypes.number.isRequired,
|
|
14540
|
-
freight: PropTypes.number.isRequired,
|
|
14541
14802
|
total: PropTypes.number.isRequired,
|
|
14542
14803
|
});
|
|
14543
14804
|
|
|
14544
|
-
T['io.flow.internal.v0.models.
|
|
14545
|
-
|
|
14546
|
-
|
|
14547
|
-
});
|
|
14548
|
-
|
|
14549
|
-
T['io.flow.internal.v0.models.shopper_freight'] = PropTypes.exact({
|
|
14550
|
-
price: PropTypes.number.isRequired,
|
|
14551
|
-
discount: PropTypes.number.isRequired,
|
|
14552
|
-
tax: PropTypes.number.isRequired,
|
|
14553
|
-
duty: PropTypes.number.isRequired,
|
|
14554
|
-
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
14555
|
-
});
|
|
14556
|
-
|
|
14557
|
-
T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
|
|
14558
|
-
number: PropTypes.string.isRequired,
|
|
14559
|
-
fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
|
|
14805
|
+
T['io.flow.internal.v0.models.shopper_lines'] = PropTypes.exact({
|
|
14806
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopper_line']).isRequired,
|
|
14807
|
+
total: PropTypes.number.isRequired,
|
|
14560
14808
|
});
|
|
14561
14809
|
|
|
14562
14810
|
T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
14563
14811
|
vat_registration_number: PropTypes.string.isRequired,
|
|
14564
14812
|
});
|
|
14565
14813
|
|
|
14566
|
-
T['io.flow.internal.v0.unions.
|
|
14567
|
-
T['io.flow.internal.v0.models.
|
|
14568
|
-
T['io.flow.internal.v0.models.
|
|
14569
|
-
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
14814
|
+
T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
14815
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
|
|
14816
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
14570
14817
|
]);
|
|
14571
14818
|
|
|
14572
14819
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
14573
14820
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
14574
14821
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
14575
14822
|
transactions: T['io.flow.internal.v0.models.merchant_transactions'].isRequired,
|
|
14576
|
-
|
|
14823
|
+
total: PropTypes.number.isRequired,
|
|
14577
14824
|
});
|
|
14578
14825
|
|
|
14579
14826
|
T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
|
|
14827
|
+
fulfilled: T['io.flow.internal.v0.models.shopper_lines'].isRequired,
|
|
14580
14828
|
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
14581
14829
|
freight: T['io.flow.internal.v0.models.shopper_freight'].isRequired,
|
|
14582
|
-
|
|
14583
|
-
|
|
14584
|
-
T['io.flow.internal.v0.models.fulfillment_line'] = PropTypes.exact({
|
|
14585
|
-
item: T['io.flow.internal.v0.models.item_summary'].isRequired,
|
|
14586
|
-
quantity: PropTypes.number.isRequired,
|
|
14587
|
-
unit_price: PropTypes.number.isRequired,
|
|
14588
|
-
price: PropTypes.number.isRequired,
|
|
14589
|
-
discount: PropTypes.number.isRequired,
|
|
14590
|
-
tax: PropTypes.number.isRequired,
|
|
14591
|
-
duty: PropTypes.number.isRequired,
|
|
14592
|
-
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
14830
|
+
order_discount: PropTypes.number.isRequired,
|
|
14831
|
+
total: PropTypes.number.isRequired,
|
|
14593
14832
|
});
|
|
14594
14833
|
|
|
14595
14834
|
T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
@@ -14597,6 +14836,8 @@ T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
|
14597
14836
|
province_code: PropTypes.string,
|
|
14598
14837
|
});
|
|
14599
14838
|
|
|
14839
|
+
T['io.flow.internal.v0.enums.logistics_responsibility'] = PropTypes.oneOf(['organization', 'flow']);
|
|
14840
|
+
|
|
14600
14841
|
T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
14601
14842
|
'millimeter',
|
|
14602
14843
|
'centimeter',
|
|
@@ -14611,6 +14852,17 @@ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
|
14611
14852
|
'pound',
|
|
14612
14853
|
]);
|
|
14613
14854
|
|
|
14855
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'] = PropTypes.exact({
|
|
14856
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_by_weight']).isRequired,
|
|
14857
|
+
amount: PropTypes.number.isRequired,
|
|
14858
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
14859
|
+
});
|
|
14860
|
+
|
|
14861
|
+
T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
|
|
14862
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'],
|
|
14863
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'],
|
|
14864
|
+
]);
|
|
14865
|
+
|
|
14614
14866
|
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
14615
14867
|
value: PropTypes.string.isRequired,
|
|
14616
14868
|
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
@@ -15906,6 +16158,14 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
|
|
|
15906
16158
|
label_tracking_summary_id: PropTypes.string,
|
|
15907
16159
|
shipping_notification_id: PropTypes.string,
|
|
15908
16160
|
external_fulfillment_proof_id: PropTypes.string,
|
|
16161
|
+
order_cancellation_id: PropTypes.string,
|
|
16162
|
+
});
|
|
16163
|
+
|
|
16164
|
+
T['io.flow.internal.v0.models.debug_fulfillment_delta'] = PropTypes.exact({
|
|
16165
|
+
posted_transactions_net: PropTypes.number.isRequired,
|
|
16166
|
+
fulfillments_net: PropTypes.number.isRequired,
|
|
16167
|
+
delta_amount: PropTypes.number.isRequired,
|
|
16168
|
+
delta_percent: PropTypes.number.isRequired,
|
|
15909
16169
|
});
|
|
15910
16170
|
|
|
15911
16171
|
T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
@@ -15913,11 +16173,25 @@ T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
|
15913
16173
|
description: PropTypes.string,
|
|
15914
16174
|
});
|
|
15915
16175
|
|
|
16176
|
+
T['io.flow.billing.v0.models.billing_channel_payment_request_reference'] = PropTypes.exact({
|
|
16177
|
+
id: PropTypes.string.isRequired,
|
|
16178
|
+
reference: PropTypes.string,
|
|
16179
|
+
});
|
|
16180
|
+
|
|
16181
|
+
T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
|
|
16182
|
+
organization: T['io.flow.billing.v0.models.billing_channel_organization_summary'].isRequired,
|
|
16183
|
+
number: PropTypes.string.isRequired,
|
|
16184
|
+
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
16185
|
+
});
|
|
16186
|
+
|
|
15916
16187
|
T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
|
|
15917
16188
|
id: PropTypes.string.isRequired,
|
|
15918
16189
|
});
|
|
15919
16190
|
|
|
15920
16191
|
T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
|
|
16192
|
+
accounting_transactions: PropTypes.arrayOf(PropTypes.object),
|
|
16193
|
+
fulfillments: PropTypes.arrayOf(PropTypes.object),
|
|
16194
|
+
fulfillment_delta: T['io.flow.internal.v0.models.debug_fulfillment_delta'],
|
|
15921
16195
|
sales_records: PropTypes.arrayOf(PropTypes.object),
|
|
15922
16196
|
refund_records: PropTypes.arrayOf(PropTypes.object),
|
|
15923
16197
|
});
|
|
@@ -15949,6 +16223,14 @@ T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
|
15949
16223
|
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
15950
16224
|
});
|
|
15951
16225
|
|
|
16226
|
+
T['io.flow.internal.v0.enums.debug_accounting_transaction_type'] = PropTypes.oneOf(['fulfillment']);
|
|
16227
|
+
|
|
16228
|
+
T['io.flow.internal.v0.models.debug_accounting_transaction'] = PropTypes.exact({
|
|
16229
|
+
type: T['io.flow.internal.v0.enums.debug_accounting_transaction_type'].isRequired,
|
|
16230
|
+
type_id: PropTypes.string.isRequired,
|
|
16231
|
+
transaction_id: PropTypes.string.isRequired,
|
|
16232
|
+
});
|
|
16233
|
+
|
|
15952
16234
|
T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
15953
16235
|
'adjustment_transactions_count',
|
|
15954
16236
|
'adjustment_transactions_total',
|
|
@@ -16028,6 +16310,11 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16028
16310
|
'payouts_failed_total',
|
|
16029
16311
|
'average_payout_amount',
|
|
16030
16312
|
'capture_transaction_with_zero_fees_and_no_channel_transaction_count',
|
|
16313
|
+
'percentage_billable_label_transactions_with_carrier_charge_10_days',
|
|
16314
|
+
'percentage_billable_label_transactions_with_carrier_charge_20_days',
|
|
16315
|
+
'percentage_billable_label_transactions_with_carrier_charge_30_days',
|
|
16316
|
+
'percentage_billable_label_transactions_with_carrier_charge_60_days',
|
|
16317
|
+
'percentage_billable_label_transactions_with_carrier_charge_90_days',
|
|
16031
16318
|
]);
|
|
16032
16319
|
|
|
16033
16320
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -16151,6 +16438,10 @@ T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'] = Prop
|
|
|
16151
16438
|
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16152
16439
|
});
|
|
16153
16440
|
|
|
16441
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
16442
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16443
|
+
});
|
|
16444
|
+
|
|
16154
16445
|
T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
|
|
16155
16446
|
line_number: PropTypes.string.isRequired,
|
|
16156
16447
|
item_number: PropTypes.string.isRequired,
|
|
@@ -20224,6 +20515,13 @@ T['io.flow.internal.v0.models.spot_rate_version'] = PropTypes.exact({
|
|
|
20224
20515
|
spot_rate: T['io.flow.internal.v0.models.spot_rate'].isRequired,
|
|
20225
20516
|
});
|
|
20226
20517
|
|
|
20518
|
+
T['io.flow.internal.v0.models.shopify_markets_order_version'] = PropTypes.exact({
|
|
20519
|
+
id: PropTypes.string.isRequired,
|
|
20520
|
+
timestamp: PropTypes.string.isRequired,
|
|
20521
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20522
|
+
shopify_markets_order: T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order'].isRequired,
|
|
20523
|
+
});
|
|
20524
|
+
|
|
20227
20525
|
T['io.flow.internal.v0.models.organization_payment_setting_version'] = PropTypes.exact({
|
|
20228
20526
|
id: PropTypes.string.isRequired,
|
|
20229
20527
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -20316,6 +20614,13 @@ T['io.flow.internal.v0.models.shopify_channel_organization_tokens'] = PropTypes.
|
|
|
20316
20614
|
service: T['io.flow.internal.v0.enums.shopify_service'].isRequired,
|
|
20317
20615
|
});
|
|
20318
20616
|
|
|
20617
|
+
T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
20618
|
+
|
|
20619
|
+
T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'] = PropTypes.exact({
|
|
20620
|
+
fulfillment_status: T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'].isRequired,
|
|
20621
|
+
timestamp: PropTypes.string.isRequired,
|
|
20622
|
+
});
|
|
20623
|
+
|
|
20319
20624
|
T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
|
|
20320
20625
|
'unsupported_origin_country',
|
|
20321
20626
|
'unsupported_destination_country',
|
|
@@ -20355,6 +20660,24 @@ T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact(
|
|
|
20355
20660
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
20356
20661
|
});
|
|
20357
20662
|
|
|
20663
|
+
T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
|
|
20664
|
+
id: PropTypes.string.isRequired,
|
|
20665
|
+
name: PropTypes.string.isRequired,
|
|
20666
|
+
tracking_url: PropTypes.string.isRequired,
|
|
20667
|
+
});
|
|
20668
|
+
|
|
20669
|
+
T['io.flow.reference.v0.models.carrier_service'] = PropTypes.exact({
|
|
20670
|
+
id: PropTypes.string.isRequired,
|
|
20671
|
+
carrier: T['io.flow.reference.v0.models.carrier'].isRequired,
|
|
20672
|
+
name: PropTypes.string.isRequired,
|
|
20673
|
+
});
|
|
20674
|
+
|
|
20675
|
+
T['io.flow.experience.v0.models.order_service_change'] = PropTypes.exact({
|
|
20676
|
+
id: PropTypes.string.isRequired,
|
|
20677
|
+
from: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
20678
|
+
to: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
20679
|
+
});
|
|
20680
|
+
|
|
20358
20681
|
T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
|
|
20359
20682
|
|
|
20360
20683
|
T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
|
|
@@ -20390,6 +20713,12 @@ T['io.flow.token.v0.models.organization_token_form'] = PropTypes.exact({
|
|
|
20390
20713
|
description: PropTypes.string,
|
|
20391
20714
|
});
|
|
20392
20715
|
|
|
20716
|
+
T['io.flow.channel.internal.v0.models.channel_form'] = PropTypes.exact({
|
|
20717
|
+
name: PropTypes.string.isRequired,
|
|
20718
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
20719
|
+
organization_id_prefix: PropTypes.string,
|
|
20720
|
+
});
|
|
20721
|
+
|
|
20393
20722
|
T['io.flow.session.v0.models.organization_session'] = PropTypes.exact({
|
|
20394
20723
|
discriminator: PropTypes.oneOf(['organization_session']).isRequired,
|
|
20395
20724
|
id: PropTypes.string.isRequired,
|
|
@@ -20760,6 +21089,12 @@ T['io.flow.internal.v0.models.channel_currency_setting_upserted'] = PropTypes.ex
|
|
|
20760
21089
|
|
|
20761
21090
|
T['io.flow.channel.v0.enums.channel_currency_capability'] = PropTypes.oneOf(['payment_authorizations', 'settlement_currency']);
|
|
20762
21091
|
|
|
21092
|
+
T['io.flow.channel.internal.v0.models.channel_currency_form'] = PropTypes.exact({
|
|
21093
|
+
currency: PropTypes.string.isRequired,
|
|
21094
|
+
channel_id: PropTypes.string.isRequired,
|
|
21095
|
+
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
21096
|
+
});
|
|
21097
|
+
|
|
20763
21098
|
T['io.flow.internal.v0.models.channel_currency_form'] = PropTypes.exact({
|
|
20764
21099
|
currency: PropTypes.string.isRequired,
|
|
20765
21100
|
channel_id: PropTypes.string.isRequired,
|
|
@@ -20804,6 +21139,34 @@ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
|
20804
21139
|
id: PropTypes.string.isRequired,
|
|
20805
21140
|
});
|
|
20806
21141
|
|
|
21142
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
21143
|
+
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
21144
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
21145
|
+
});
|
|
21146
|
+
|
|
21147
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
21148
|
+
id: PropTypes.string.isRequired,
|
|
21149
|
+
shopify_shop_id: PropTypes.string,
|
|
21150
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
21151
|
+
domain: PropTypes.string.isRequired,
|
|
21152
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
21153
|
+
organization_id: PropTypes.string.isRequired,
|
|
21154
|
+
shop: PropTypes.string.isRequired,
|
|
21155
|
+
created_at: PropTypes.string.isRequired,
|
|
21156
|
+
shared_secret_masked: PropTypes.string.isRequired,
|
|
21157
|
+
api_key_masked: PropTypes.string,
|
|
21158
|
+
api_password_masked: PropTypes.string,
|
|
21159
|
+
access_token_masked: PropTypes.string,
|
|
21160
|
+
});
|
|
21161
|
+
|
|
21162
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
21163
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
21164
|
+
event_id: PropTypes.string.isRequired,
|
|
21165
|
+
timestamp: PropTypes.string.isRequired,
|
|
21166
|
+
organization: PropTypes.string.isRequired,
|
|
21167
|
+
shopify_markets_shop: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
21168
|
+
});
|
|
21169
|
+
|
|
20807
21170
|
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
20808
21171
|
id: PropTypes.string.isRequired,
|
|
20809
21172
|
currency: PropTypes.string.isRequired,
|
|
@@ -20972,6 +21335,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
20972
21335
|
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
20973
21336
|
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
20974
21337
|
order_created_at: PropTypes.string,
|
|
21338
|
+
order_updated_at: PropTypes.string,
|
|
20975
21339
|
});
|
|
20976
21340
|
|
|
20977
21341
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -21086,6 +21450,8 @@ T['io.flow.internal.v0.models.catalog_import_request'] = PropTypes.exact({
|
|
|
21086
21450
|
filename: PropTypes.string,
|
|
21087
21451
|
});
|
|
21088
21452
|
|
|
21453
|
+
T['io.flow.internal.v0.enums.carrier_charge_other_reason'] = PropTypes.oneOf(['return_to_origin', 'other']);
|
|
21454
|
+
|
|
21089
21455
|
T['io.flow.internal.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
21090
21456
|
amount: PropTypes.number.isRequired,
|
|
21091
21457
|
percentage: PropTypes.number,
|
|
@@ -21100,82 +21466,51 @@ T['io.flow.billing.v0.models.trueup_label_units'] = PropTypes.exact({
|
|
|
21100
21466
|
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
21101
21467
|
});
|
|
21102
21468
|
|
|
21469
|
+
T['io.flow.trueup.v0.models.label_units'] = PropTypes.exact({
|
|
21470
|
+
currency: PropTypes.string.isRequired,
|
|
21471
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
21472
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
21473
|
+
});
|
|
21474
|
+
|
|
21475
|
+
T['io.flow.trueup.v0.models.dimensional_weight'] = PropTypes.exact({
|
|
21476
|
+
weight: PropTypes.number.isRequired,
|
|
21477
|
+
length: PropTypes.number,
|
|
21478
|
+
width: PropTypes.number,
|
|
21479
|
+
height: PropTypes.number,
|
|
21480
|
+
});
|
|
21481
|
+
|
|
21482
|
+
T['io.flow.trueup.v0.models.dead_weight'] = PropTypes.exact({
|
|
21483
|
+
weight: PropTypes.number.isRequired,
|
|
21484
|
+
});
|
|
21485
|
+
|
|
21103
21486
|
T['io.flow.billing.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
21104
21487
|
source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
|
|
21105
21488
|
units: T['io.flow.billing.v0.models.trueup_label_units'].isRequired,
|
|
21106
21489
|
base: T['io.flow.billing.v0.models.trueup_label_base'].isRequired,
|
|
21107
21490
|
surcharges: PropTypes.arrayOf(T['io.flow.billing.v0.models.trueup_label_surcharge']).isRequired,
|
|
21108
21491
|
total: PropTypes.number.isRequired,
|
|
21492
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
21493
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
21109
21494
|
});
|
|
21110
21495
|
|
|
21111
21496
|
T['io.flow.billing.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
21112
21497
|
discriminator: PropTypes.oneOf(['trueup']).isRequired,
|
|
21113
|
-
original: T['io.flow.billing.v0.models.
|
|
21498
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
21114
21499
|
estimate: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
21115
21500
|
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
21116
21501
|
});
|
|
21117
21502
|
|
|
21118
|
-
T['io.flow.billing.
|
|
21119
|
-
|
|
21120
|
-
|
|
21121
|
-
|
|
21122
|
-
|
|
21123
|
-
|
|
21124
|
-
T['io.flow.billing.true.up.v0.models.carrier_charge_form_return_to_origin'] = PropTypes.exact({
|
|
21125
|
-
discriminator: PropTypes.oneOf(['return_to_origin']).isRequired,
|
|
21126
|
-
id: PropTypes.string.isRequired,
|
|
21127
|
-
carrier_id: PropTypes.string.isRequired,
|
|
21128
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
21129
|
-
units: T['io.flow.billing.true.up.v0.models.carrier_charge_units'].isRequired,
|
|
21130
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
21131
|
-
surcharges: T['io.flow.billing.true.up.v0.models.label_surcharge_form'].isRequired,
|
|
21132
|
-
total: PropTypes.number.isRequired,
|
|
21133
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
21134
|
-
});
|
|
21135
|
-
|
|
21136
|
-
T['io.flow.billing.true.up.v0.models.carrier_charge_form_label'] = PropTypes.exact({
|
|
21137
|
-
discriminator: PropTypes.oneOf(['label']).isRequired,
|
|
21138
|
-
id: PropTypes.string.isRequired,
|
|
21139
|
-
label_invoice_request_id: PropTypes.string.isRequired,
|
|
21140
|
-
units: T['io.flow.billing.true.up.v0.models.carrier_charge_units'].isRequired,
|
|
21141
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
21142
|
-
surcharges: T['io.flow.billing.true.up.v0.models.label_surcharge_form'].isRequired,
|
|
21143
|
-
total: PropTypes.number.isRequired,
|
|
21144
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
21145
|
-
});
|
|
21146
|
-
|
|
21147
|
-
T['io.flow.billing.true.up.v0.unions.carrier_charge_form'] = PropTypes.oneOfType([
|
|
21148
|
-
T['io.flow.billing.true.up.v0.models.carrier_charge_form_label'],
|
|
21149
|
-
T['io.flow.billing.true.up.v0.models.carrier_charge_form_return_to_origin'],
|
|
21503
|
+
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
21504
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
|
|
21505
|
+
T['io.flow.billing.v0.models.transaction_metadata_channel'],
|
|
21506
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup'],
|
|
21507
|
+
T['io.flow.billing.v0.models.transaction_metadata_manual'],
|
|
21150
21508
|
]);
|
|
21151
21509
|
|
|
21152
|
-
T['io.flow.
|
|
21153
|
-
|
|
21154
|
-
|
|
21155
|
-
|
|
21156
|
-
});
|
|
21157
|
-
|
|
21158
|
-
T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
21159
|
-
id: PropTypes.string.isRequired,
|
|
21160
|
-
label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
|
|
21161
|
-
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
21162
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
21163
|
-
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
21164
|
-
total: PropTypes.number.isRequired,
|
|
21165
|
-
destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
|
|
21166
|
-
metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
|
|
21167
|
-
});
|
|
21168
|
-
|
|
21169
|
-
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
21170
|
-
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
21171
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
21172
|
-
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
21173
|
-
});
|
|
21174
|
-
|
|
21175
|
-
T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
|
|
21176
|
-
currency: PropTypes.string.isRequired,
|
|
21177
|
-
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
21178
|
-
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
21510
|
+
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
21511
|
+
ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
|
|
21512
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
21513
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
21179
21514
|
});
|
|
21180
21515
|
|
|
21181
21516
|
T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
@@ -21188,28 +21523,15 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
21188
21523
|
address_correction: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
21189
21524
|
});
|
|
21190
21525
|
|
|
21191
|
-
T['io.flow.
|
|
21526
|
+
T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
21192
21527
|
amount: PropTypes.number.isRequired,
|
|
21193
21528
|
weight: PropTypes.number.isRequired,
|
|
21194
21529
|
});
|
|
21195
21530
|
|
|
21196
|
-
T['io.flow.
|
|
21197
|
-
|
|
21198
|
-
|
|
21199
|
-
|
|
21200
|
-
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
21201
|
-
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
|
|
21202
|
-
total: PropTypes.number.isRequired,
|
|
21203
|
-
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
21204
|
-
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
21205
|
-
});
|
|
21206
|
-
|
|
21207
|
-
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
21208
|
-
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
21209
|
-
event_id: PropTypes.string.isRequired,
|
|
21210
|
-
timestamp: PropTypes.string.isRequired,
|
|
21211
|
-
organization: PropTypes.string.isRequired,
|
|
21212
|
-
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
21531
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
21532
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
21533
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21534
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
21213
21535
|
});
|
|
21214
21536
|
|
|
21215
21537
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
@@ -21218,15 +21540,21 @@ T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
|
21218
21540
|
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
21219
21541
|
});
|
|
21220
21542
|
|
|
21221
|
-
T['io.flow.internal.v0.models.
|
|
21222
|
-
discriminator: PropTypes.oneOf(['
|
|
21543
|
+
T['io.flow.internal.v0.models.carrier_charge_form_other'] = PropTypes.exact({
|
|
21544
|
+
discriminator: PropTypes.oneOf(['other']).isRequired,
|
|
21223
21545
|
id: PropTypes.string.isRequired,
|
|
21546
|
+
reason: T['io.flow.internal.v0.enums.carrier_charge_other_reason'].isRequired,
|
|
21547
|
+
organization_id: PropTypes.string.isRequired,
|
|
21548
|
+
order_number: PropTypes.string.isRequired,
|
|
21224
21549
|
carrier_id: PropTypes.string.isRequired,
|
|
21225
21550
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
21551
|
+
label_created_at: PropTypes.string.isRequired,
|
|
21226
21552
|
units: T['io.flow.internal.v0.models.carrier_charge_units'].isRequired,
|
|
21227
|
-
base: T['io.flow.
|
|
21553
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21228
21554
|
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
21229
21555
|
total: PropTypes.number.isRequired,
|
|
21556
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
21557
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
21230
21558
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
21231
21559
|
});
|
|
21232
21560
|
|
|
@@ -21235,15 +21563,17 @@ T['io.flow.internal.v0.models.carrier_charge_form_label'] = PropTypes.exact({
|
|
|
21235
21563
|
id: PropTypes.string.isRequired,
|
|
21236
21564
|
label_invoice_request_id: PropTypes.string.isRequired,
|
|
21237
21565
|
units: T['io.flow.internal.v0.models.carrier_charge_units'].isRequired,
|
|
21238
|
-
base: T['io.flow.
|
|
21566
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21239
21567
|
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
21240
21568
|
total: PropTypes.number.isRequired,
|
|
21569
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
21570
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
21241
21571
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
21242
21572
|
});
|
|
21243
21573
|
|
|
21244
21574
|
T['io.flow.internal.v0.unions.carrier_charge_form'] = PropTypes.oneOfType([
|
|
21245
21575
|
T['io.flow.internal.v0.models.carrier_charge_form_label'],
|
|
21246
|
-
T['io.flow.internal.v0.models.
|
|
21576
|
+
T['io.flow.internal.v0.models.carrier_charge_form_other'],
|
|
21247
21577
|
]);
|
|
21248
21578
|
|
|
21249
21579
|
T['io.flow.internal.v0.models.carrier_charge_file_result'] = PropTypes.exact({
|
|
@@ -21278,11 +21608,9 @@ T['io.flow.internal.v0.models.fedex'] = PropTypes.exact({
|
|
|
21278
21608
|
|
|
21279
21609
|
T['io.flow.internal.v0.models.ups'] = PropTypes.exact({
|
|
21280
21610
|
discriminator: PropTypes.oneOf(['ups']).isRequired,
|
|
21281
|
-
|
|
21282
|
-
|
|
21283
|
-
access_license_number: PropTypes.string.isRequired,
|
|
21611
|
+
client_id: PropTypes.string.isRequired,
|
|
21612
|
+
client_secret: PropTypes.string.isRequired,
|
|
21284
21613
|
account_number: PropTypes.string.isRequired,
|
|
21285
|
-
direct_feed_location_code: PropTypes.string,
|
|
21286
21614
|
});
|
|
21287
21615
|
|
|
21288
21616
|
T['io.flow.internal.v0.models.fedex_crossborder'] = PropTypes.exact({
|
|
@@ -22078,6 +22406,21 @@ T['io.flow.common.v0.models.schedule'] = PropTypes.exact({
|
|
|
22078
22406
|
max_lead_time: PropTypes.number,
|
|
22079
22407
|
});
|
|
22080
22408
|
|
|
22409
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_orders_metrics'] = PropTypes.exact({
|
|
22410
|
+
id: PropTypes.string.isRequired,
|
|
22411
|
+
range: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
22412
|
+
shopify: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
22413
|
+
internal: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
22414
|
+
discrepancy_data: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_discrepancy_data'].isRequired,
|
|
22415
|
+
});
|
|
22416
|
+
|
|
22417
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
22418
|
+
discriminator: PropTypes.oneOf(['shopify_markets_metrics_upserted']).isRequired,
|
|
22419
|
+
event_id: PropTypes.string.isRequired,
|
|
22420
|
+
timestamp: PropTypes.string.isRequired,
|
|
22421
|
+
shopify_markets_metrics: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_orders_metrics'].isRequired,
|
|
22422
|
+
});
|
|
22423
|
+
|
|
22081
22424
|
T['io.flow.tracking.v0.models.tracking'] = PropTypes.exact({
|
|
22082
22425
|
id: PropTypes.string.isRequired,
|
|
22083
22426
|
labels: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_label']).isRequired,
|
|
@@ -22297,6 +22640,10 @@ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
|
|
|
22297
22640
|
destination: T['io.flow.internal.v0.models.billing_order_destination'],
|
|
22298
22641
|
});
|
|
22299
22642
|
|
|
22643
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_identifiers'] = PropTypes.exact({
|
|
22644
|
+
reference_id: PropTypes.string,
|
|
22645
|
+
});
|
|
22646
|
+
|
|
22300
22647
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_discount'] = PropTypes.exact({
|
|
22301
22648
|
amount: PropTypes.number.isRequired,
|
|
22302
22649
|
description: PropTypes.string,
|
|
@@ -22347,23 +22694,13 @@ T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
|
22347
22694
|
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
22348
22695
|
});
|
|
22349
22696
|
|
|
22350
|
-
T['io.flow.billing.v0.models.
|
|
22351
|
-
|
|
22352
|
-
|
|
22697
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'] = PropTypes.exact({
|
|
22698
|
+
channel: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel'],
|
|
22699
|
+
shipping_label: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label'],
|
|
22700
|
+
trueup: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'],
|
|
22701
|
+
manual: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'],
|
|
22353
22702
|
});
|
|
22354
22703
|
|
|
22355
|
-
T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
|
|
22356
|
-
organization: T['io.flow.billing.v0.models.billing_channel_organization_summary'].isRequired,
|
|
22357
|
-
number: PropTypes.string.isRequired,
|
|
22358
|
-
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
22359
|
-
});
|
|
22360
|
-
|
|
22361
|
-
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
22362
|
-
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
|
|
22363
|
-
T['io.flow.billing.v0.models.transaction_metadata_channel'],
|
|
22364
|
-
T['io.flow.billing.v0.models.transaction_metadata_trueup'],
|
|
22365
|
-
]);
|
|
22366
|
-
|
|
22367
22704
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_account'] = PropTypes.exact({
|
|
22368
22705
|
id: PropTypes.string.isRequired,
|
|
22369
22706
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
@@ -22442,33 +22779,6 @@ T['io.flow.billing.csv.v0.models.billing_csv_generic_transaction'] = PropTypes.e
|
|
|
22442
22779
|
description: PropTypes.string.isRequired,
|
|
22443
22780
|
});
|
|
22444
22781
|
|
|
22445
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction'] = PropTypes.exact({
|
|
22446
|
-
id: PropTypes.string.isRequired,
|
|
22447
|
-
type: T['io.flow.billing.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
22448
|
-
account: T['io.flow.billing.csv.v0.models.billing_csv_transaction_account'].isRequired,
|
|
22449
|
-
metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
|
|
22450
|
-
order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
|
|
22451
|
-
payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
|
|
22452
|
-
currency: PropTypes.string.isRequired,
|
|
22453
|
-
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
22454
|
-
parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
|
|
22455
|
-
gross: PropTypes.number.isRequired,
|
|
22456
|
-
fees: T['io.flow.billing.csv.v0.models.billing_csv_transaction_fees'].isRequired,
|
|
22457
|
-
withholdings: T['io.flow.billing.csv.v0.models.billing_csv_transaction_withholdings'].isRequired,
|
|
22458
|
-
discount: T['io.flow.billing.csv.v0.models.billing_csv_transaction_discount'].isRequired,
|
|
22459
|
-
net: PropTypes.number.isRequired,
|
|
22460
|
-
identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22461
|
-
created_at: PropTypes.string.isRequired,
|
|
22462
|
-
updated_at: PropTypes.string.isRequired,
|
|
22463
|
-
});
|
|
22464
|
-
|
|
22465
|
-
T['io.flow.internal.v0.models.billing_csv_transaction_upserted'] = PropTypes.exact({
|
|
22466
|
-
discriminator: PropTypes.oneOf(['billing_csv_transaction_upserted']).isRequired,
|
|
22467
|
-
event_id: PropTypes.string.isRequired,
|
|
22468
|
-
timestamp: PropTypes.string.isRequired,
|
|
22469
|
-
transaction: T['io.flow.billing.csv.v0.models.billing_csv_transaction'].isRequired,
|
|
22470
|
-
});
|
|
22471
|
-
|
|
22472
22782
|
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
|
|
22473
22783
|
|
|
22474
22784
|
T['io.flow.billing.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
@@ -22575,6 +22885,17 @@ T['io.flow.internal.v0.models.restriction_rule_metadata'] = PropTypes.exact({
|
|
|
22575
22885
|
count: PropTypes.number.isRequired,
|
|
22576
22886
|
});
|
|
22577
22887
|
|
|
22888
|
+
T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
|
|
22889
|
+
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
22890
|
+
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
22891
|
+
updated_at: PropTypes.string.isRequired,
|
|
22892
|
+
});
|
|
22893
|
+
|
|
22894
|
+
T['io.flow.internal.v0.models.restriction_product_summary'] = PropTypes.exact({
|
|
22895
|
+
name: PropTypes.string.isRequired,
|
|
22896
|
+
restrictions: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review_summary']).isRequired,
|
|
22897
|
+
});
|
|
22898
|
+
|
|
22578
22899
|
T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact({
|
|
22579
22900
|
status: T['io.flow.internal.v0.enums.restriction_status'],
|
|
22580
22901
|
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_status']),
|
|
@@ -22979,6 +23300,11 @@ T['io.flow.payment.internal.v0.models.authorization_parameters_form'] = PropType
|
|
|
22979
23300
|
origin_url: PropTypes.string,
|
|
22980
23301
|
});
|
|
22981
23302
|
|
|
23303
|
+
T['io.flow.shopify.markets.internal.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
23304
|
+
warehouse_address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
23305
|
+
warehouse_url: PropTypes.string,
|
|
23306
|
+
});
|
|
23307
|
+
|
|
22982
23308
|
T['io.flow.payment.v0.models.inline_authorization_form'] = PropTypes.exact({
|
|
22983
23309
|
discriminator: PropTypes.oneOf(['inline_authorization_form']).isRequired,
|
|
22984
23310
|
method: PropTypes.string.isRequired,
|
|
@@ -23086,40 +23412,6 @@ T['io.flow.payment.v0.models.ach_authorization_form'] = PropTypes.exact({
|
|
|
23086
23412
|
ip: PropTypes.string,
|
|
23087
23413
|
});
|
|
23088
23414
|
|
|
23089
|
-
T['io.flow.internal.v0.models.ups_registration_form'] = PropTypes.exact({
|
|
23090
|
-
username: PropTypes.string.isRequired,
|
|
23091
|
-
password: PropTypes.string.isRequired,
|
|
23092
|
-
access_license_number: PropTypes.string.isRequired,
|
|
23093
|
-
account_number: PropTypes.string.isRequired,
|
|
23094
|
-
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
23095
|
-
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
23096
|
-
shipper_account: T['io.flow.internal.v0.models.shipper_account_info_form'],
|
|
23097
|
-
});
|
|
23098
|
-
|
|
23099
|
-
T['io.flow.internal.v0.models.ups_registration'] = PropTypes.exact({
|
|
23100
|
-
username: PropTypes.string.isRequired,
|
|
23101
|
-
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
23102
|
-
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
23103
|
-
suggest_username_indicator: PropTypes.string,
|
|
23104
|
-
shipper_account_status: PropTypes.string,
|
|
23105
|
-
});
|
|
23106
|
-
|
|
23107
|
-
T['io.flow.internal.v0.models.ups_license_form'] = PropTypes.exact({
|
|
23108
|
-
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
23109
|
-
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
23110
|
-
secondary_contact: T['io.flow.common.v0.models.contact'],
|
|
23111
|
-
developer_license_number: PropTypes.string.isRequired,
|
|
23112
|
-
company_url: PropTypes.string.isRequired,
|
|
23113
|
-
});
|
|
23114
|
-
|
|
23115
|
-
T['io.flow.internal.v0.models.ups_license'] = PropTypes.exact({
|
|
23116
|
-
access_license_number: PropTypes.string.isRequired,
|
|
23117
|
-
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
23118
|
-
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
23119
|
-
secondary_contact: T['io.flow.common.v0.models.contact'],
|
|
23120
|
-
company_url: PropTypes.string.isRequired,
|
|
23121
|
-
});
|
|
23122
|
-
|
|
23123
23415
|
T['io.flow.internal.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
23124
23416
|
warehouse_address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
23125
23417
|
warehouse_url: PropTypes.string,
|
|
@@ -23652,6 +23944,16 @@ T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
|
|
|
23652
23944
|
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
23653
23945
|
});
|
|
23654
23946
|
|
|
23947
|
+
T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
23948
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
23949
|
+
});
|
|
23950
|
+
|
|
23951
|
+
T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
23952
|
+
channel_id: PropTypes.string.isRequired,
|
|
23953
|
+
user_id: PropTypes.string.isRequired,
|
|
23954
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
23955
|
+
});
|
|
23956
|
+
|
|
23655
23957
|
T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
|
|
23656
23958
|
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
23657
23959
|
});
|
|
@@ -24888,6 +25190,7 @@ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropType
|
|
|
24888
25190
|
T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
24889
25191
|
discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
|
|
24890
25192
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
25193
|
+
fuel_surcharge_rate: T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'],
|
|
24891
25194
|
});
|
|
24892
25195
|
|
|
24893
25196
|
T['io.flow.ratecard.v0.models.fuel_surcharge_amount_by_weight_service_fee'] = PropTypes.exact({
|
|
@@ -25029,6 +25332,7 @@ T['io.flow.ratecard.v0.models.hop_estimate_v2'] = PropTypes.exact({
|
|
|
25029
25332
|
currency: PropTypes.string.isRequired,
|
|
25030
25333
|
amount: PropTypes.number.isRequired,
|
|
25031
25334
|
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
25335
|
+
weight_break: PropTypes.number,
|
|
25032
25336
|
total: PropTypes.number.isRequired,
|
|
25033
25337
|
lane: T['io.flow.ratecard.v0.models.lane_summary'].isRequired,
|
|
25034
25338
|
});
|
|
@@ -25590,6 +25894,11 @@ T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
|
|
|
25590
25894
|
T['io.flow.payment.v0.models.online_authorization'],
|
|
25591
25895
|
]);
|
|
25592
25896
|
|
|
25897
|
+
T['io.flow.shopify.markets.internal.v0.models.markets_order'] = PropTypes.exact({
|
|
25898
|
+
shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
25899
|
+
flow_authorization: T['io.flow.payment.v0.unions.authorization'],
|
|
25900
|
+
});
|
|
25901
|
+
|
|
25593
25902
|
T['io.flow.payment.v0.models.authorization_version'] = PropTypes.exact({
|
|
25594
25903
|
id: PropTypes.string.isRequired,
|
|
25595
25904
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -26291,6 +26600,69 @@ T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
|
26291
26600
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26292
26601
|
});
|
|
26293
26602
|
|
|
26603
|
+
T['io.flow.shopify.markets.internal.v0.models.channel_order_summary'] = PropTypes.exact({
|
|
26604
|
+
id: PropTypes.string.isRequired,
|
|
26605
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26606
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
26607
|
+
order_number: PropTypes.string.isRequired,
|
|
26608
|
+
fulfullment_details: T['io.flow.shopify.markets.internal.v0.models.channel_order_summary_fulfillment_details'].isRequired,
|
|
26609
|
+
});
|
|
26610
|
+
|
|
26611
|
+
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_upserted'] = PropTypes.exact({
|
|
26612
|
+
discriminator: PropTypes.oneOf(['channel_order_summary_upserted']).isRequired,
|
|
26613
|
+
event_id: PropTypes.string.isRequired,
|
|
26614
|
+
timestamp: PropTypes.string.isRequired,
|
|
26615
|
+
channel_id: PropTypes.string.isRequired,
|
|
26616
|
+
channel_order_summary: T['io.flow.shopify.markets.internal.v0.models.channel_order_summary'].isRequired,
|
|
26617
|
+
});
|
|
26618
|
+
|
|
26619
|
+
T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_event'] = PropTypes.oneOfType([
|
|
26620
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_upserted'],
|
|
26621
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_order_deleted'],
|
|
26622
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'],
|
|
26623
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_deleted'],
|
|
26624
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_webhook_registration_upserted'],
|
|
26625
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
26626
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
26627
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
26628
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_upserted'],
|
|
26629
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted'],
|
|
26630
|
+
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_upserted'],
|
|
26631
|
+
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted'],
|
|
26632
|
+
]);
|
|
26633
|
+
|
|
26634
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary'] = PropTypes.exact({
|
|
26635
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26636
|
+
number: PropTypes.string.isRequired,
|
|
26637
|
+
identifiers: T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifiers'].isRequired,
|
|
26638
|
+
});
|
|
26639
|
+
|
|
26640
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction'] = PropTypes.exact({
|
|
26641
|
+
id: PropTypes.string.isRequired,
|
|
26642
|
+
type: T['io.flow.billing.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26643
|
+
account: T['io.flow.billing.csv.v0.models.billing_csv_transaction_account'].isRequired,
|
|
26644
|
+
metadata: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'],
|
|
26645
|
+
order: T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary'],
|
|
26646
|
+
currency: PropTypes.string.isRequired,
|
|
26647
|
+
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
26648
|
+
parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
|
|
26649
|
+
gross: PropTypes.number.isRequired,
|
|
26650
|
+
fees: T['io.flow.billing.csv.v0.models.billing_csv_transaction_fees'].isRequired,
|
|
26651
|
+
withholdings: T['io.flow.billing.csv.v0.models.billing_csv_transaction_withholdings'].isRequired,
|
|
26652
|
+
discount: T['io.flow.billing.csv.v0.models.billing_csv_transaction_discount'].isRequired,
|
|
26653
|
+
net: PropTypes.number.isRequired,
|
|
26654
|
+
identifiers: T['io.flow.billing.csv.v0.models.billing_csv_transaction_identifiers'].isRequired,
|
|
26655
|
+
created_at: PropTypes.string.isRequired,
|
|
26656
|
+
updated_at: PropTypes.string.isRequired,
|
|
26657
|
+
});
|
|
26658
|
+
|
|
26659
|
+
T['io.flow.internal.v0.models.billing_csv_transaction_upserted'] = PropTypes.exact({
|
|
26660
|
+
discriminator: PropTypes.oneOf(['billing_csv_transaction_upserted']).isRequired,
|
|
26661
|
+
event_id: PropTypes.string.isRequired,
|
|
26662
|
+
timestamp: PropTypes.string.isRequired,
|
|
26663
|
+
transaction: T['io.flow.billing.csv.v0.models.billing_csv_transaction'].isRequired,
|
|
26664
|
+
});
|
|
26665
|
+
|
|
26294
26666
|
T['io.flow.billing.csv.v0.models.billing_csv_order_transaction'] = PropTypes.exact({
|
|
26295
26667
|
id: PropTypes.string.isRequired,
|
|
26296
26668
|
type: PropTypes.string.isRequired,
|
|
@@ -26667,12 +27039,60 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
26667
27039
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
26668
27040
|
});
|
|
26669
27041
|
|
|
27042
|
+
T['io.flow.internal.v0.models.trueup_label_summary'] = PropTypes.exact({
|
|
27043
|
+
id: PropTypes.string.isRequired,
|
|
27044
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
27045
|
+
order_number: PropTypes.string.isRequired,
|
|
27046
|
+
carrier_id: PropTypes.string.isRequired,
|
|
27047
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
27048
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
27049
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
27050
|
+
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
27051
|
+
created_at: PropTypes.string.isRequired,
|
|
27052
|
+
});
|
|
27053
|
+
|
|
27054
|
+
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
27055
|
+
id: PropTypes.string.isRequired,
|
|
27056
|
+
label: T['io.flow.internal.v0.models.trueup_label_summary'].isRequired,
|
|
27057
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
27058
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
27059
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
27060
|
+
total: PropTypes.number.isRequired,
|
|
27061
|
+
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
27062
|
+
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
27063
|
+
created_at: PropTypes.string.isRequired,
|
|
27064
|
+
});
|
|
27065
|
+
|
|
27066
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
27067
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
27068
|
+
event_id: PropTypes.string.isRequired,
|
|
27069
|
+
timestamp: PropTypes.string.isRequired,
|
|
27070
|
+
organization: PropTypes.string.isRequired,
|
|
27071
|
+
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
27072
|
+
});
|
|
27073
|
+
|
|
26670
27074
|
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
26671
27075
|
id: PropTypes.string.isRequired,
|
|
26672
27076
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26673
27077
|
number: PropTypes.string.isRequired,
|
|
26674
27078
|
});
|
|
26675
27079
|
|
|
27080
|
+
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
27081
|
+
id: PropTypes.string.isRequired,
|
|
27082
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
27083
|
+
owner: T['io.flow.internal.v0.enums.logistics_responsibility'].isRequired,
|
|
27084
|
+
currency: PropTypes.string.isRequired,
|
|
27085
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
27086
|
+
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
27087
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
27088
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
27089
|
+
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'].isRequired,
|
|
27090
|
+
completes_order: PropTypes.bool.isRequired,
|
|
27091
|
+
sequence_number: PropTypes.number.isRequired,
|
|
27092
|
+
posting_cutoff: PropTypes.string.isRequired,
|
|
27093
|
+
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
27094
|
+
});
|
|
27095
|
+
|
|
26676
27096
|
T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
|
|
26677
27097
|
code: T['io.flow.internal.v0.enums.checkout_error_code'].isRequired,
|
|
26678
27098
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -26696,6 +27116,22 @@ T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
|
26696
27116
|
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
26697
27117
|
});
|
|
26698
27118
|
|
|
27119
|
+
T['io.flow.internal.v0.models.channel_order_summary'] = PropTypes.exact({
|
|
27120
|
+
id: PropTypes.string.isRequired,
|
|
27121
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
27122
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
27123
|
+
order_number: PropTypes.string.isRequired,
|
|
27124
|
+
fulfullment_details: T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'].isRequired,
|
|
27125
|
+
});
|
|
27126
|
+
|
|
27127
|
+
T['io.flow.internal.v0.models.channel_order_summary_upserted'] = PropTypes.exact({
|
|
27128
|
+
discriminator: PropTypes.oneOf(['channel_order_summary_upserted']).isRequired,
|
|
27129
|
+
event_id: PropTypes.string.isRequired,
|
|
27130
|
+
timestamp: PropTypes.string.isRequired,
|
|
27131
|
+
channel_id: PropTypes.string.isRequired,
|
|
27132
|
+
channel_order_summary: T['io.flow.internal.v0.models.channel_order_summary'].isRequired,
|
|
27133
|
+
});
|
|
27134
|
+
|
|
26699
27135
|
T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
|
|
26700
27136
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26701
27137
|
number: PropTypes.string.isRequired,
|
|
@@ -26971,6 +27407,7 @@ T['io.flow.billing.internal.v0.models.order_transaction'] = PropTypes.exact({
|
|
|
26971
27407
|
T['io.flow.billing.internal.v0.models.manual_transaction'] = PropTypes.exact({
|
|
26972
27408
|
discriminator: PropTypes.oneOf(['manual_transaction']).isRequired,
|
|
26973
27409
|
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
27410
|
+
original_transaction: T['io.flow.billing.internal.v0.models.transaction_reference'],
|
|
26974
27411
|
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'],
|
|
26975
27412
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
26976
27413
|
id: PropTypes.string.isRequired,
|
|
@@ -27373,6 +27810,28 @@ T['io.flow.partner.v0.models.label'] = PropTypes.exact({
|
|
|
27373
27810
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
27374
27811
|
});
|
|
27375
27812
|
|
|
27813
|
+
T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
|
|
27814
|
+
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
27815
|
+
currency: PropTypes.string.isRequired,
|
|
27816
|
+
amount: PropTypes.number.isRequired,
|
|
27817
|
+
label: PropTypes.string.isRequired,
|
|
27818
|
+
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
27819
|
+
name: PropTypes.string,
|
|
27820
|
+
});
|
|
27821
|
+
|
|
27822
|
+
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
27823
|
+
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
27824
|
+
currency: PropTypes.string.isRequired,
|
|
27825
|
+
amount: PropTypes.number.isRequired,
|
|
27826
|
+
label: PropTypes.string.isRequired,
|
|
27827
|
+
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
27828
|
+
components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
|
|
27829
|
+
name: PropTypes.string,
|
|
27830
|
+
rate: PropTypes.number,
|
|
27831
|
+
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
27832
|
+
rate_label: PropTypes.string,
|
|
27833
|
+
});
|
|
27834
|
+
|
|
27376
27835
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
|
|
27377
27836
|
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
27378
27837
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -27591,28 +28050,6 @@ T['io.flow.billing.internal.v0.models.invoice_transaction'] = PropTypes.exact({
|
|
|
27591
28050
|
created_at: PropTypes.string.isRequired,
|
|
27592
28051
|
});
|
|
27593
28052
|
|
|
27594
|
-
T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
|
|
27595
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
27596
|
-
currency: PropTypes.string.isRequired,
|
|
27597
|
-
amount: PropTypes.number.isRequired,
|
|
27598
|
-
label: PropTypes.string.isRequired,
|
|
27599
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
27600
|
-
name: PropTypes.string,
|
|
27601
|
-
});
|
|
27602
|
-
|
|
27603
|
-
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
27604
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
27605
|
-
currency: PropTypes.string.isRequired,
|
|
27606
|
-
amount: PropTypes.number.isRequired,
|
|
27607
|
-
label: PropTypes.string.isRequired,
|
|
27608
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
27609
|
-
components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
|
|
27610
|
-
name: PropTypes.string,
|
|
27611
|
-
rate: PropTypes.number,
|
|
27612
|
-
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
27613
|
-
rate_label: PropTypes.string,
|
|
27614
|
-
});
|
|
27615
|
-
|
|
27616
28053
|
T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
27617
28054
|
id: PropTypes.string.isRequired,
|
|
27618
28055
|
hop: T['io.flow.label.v0.models.shipping_label_hop_summary'],
|
|
@@ -27691,6 +28128,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
27691
28128
|
name: PropTypes.string.isRequired,
|
|
27692
28129
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
27693
28130
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28131
|
+
primary_item_number: PropTypes.string,
|
|
27694
28132
|
description: PropTypes.string.isRequired,
|
|
27695
28133
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27696
28134
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
@@ -27756,86 +28194,6 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
27756
28194
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
27757
28195
|
});
|
|
27758
28196
|
|
|
27759
|
-
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
27760
|
-
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
27761
|
-
currency: PropTypes.string.isRequired,
|
|
27762
|
-
amount: PropTypes.number.isRequired,
|
|
27763
|
-
label: PropTypes.string.isRequired,
|
|
27764
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
27765
|
-
});
|
|
27766
|
-
|
|
27767
|
-
T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
27768
|
-
discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
|
|
27769
|
-
id: PropTypes.string.isRequired,
|
|
27770
|
-
key: PropTypes.string,
|
|
27771
|
-
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
27772
|
-
fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
|
|
27773
|
-
ship_from_country: PropTypes.string,
|
|
27774
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
27775
|
-
options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
|
|
27776
|
-
special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
|
|
27777
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
27778
|
-
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
27779
|
-
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
27780
|
-
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
27781
|
-
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
27782
|
-
});
|
|
27783
|
-
|
|
27784
|
-
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
27785
|
-
discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
|
|
27786
|
-
id: PropTypes.string.isRequired,
|
|
27787
|
-
key: PropTypes.string,
|
|
27788
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
27789
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
27790
|
-
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
27791
|
-
});
|
|
27792
|
-
|
|
27793
|
-
T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
|
|
27794
|
-
T['io.flow.fulfillment.v0.models.digital_delivery'],
|
|
27795
|
-
T['io.flow.fulfillment.v0.models.physical_delivery'],
|
|
27796
|
-
]);
|
|
27797
|
-
|
|
27798
|
-
T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
27799
|
-
id: PropTypes.string.isRequired,
|
|
27800
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
27801
|
-
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
27802
|
-
selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
|
|
27803
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
27804
|
-
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
27805
|
-
});
|
|
27806
|
-
|
|
27807
|
-
T['io.flow.internal.v0.models.pregenerated_quote'] = PropTypes.exact({
|
|
27808
|
-
id: PropTypes.string.isRequired,
|
|
27809
|
-
experience: T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'].isRequired,
|
|
27810
|
-
destination_country: PropTypes.string.isRequired,
|
|
27811
|
-
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
27812
|
-
quote: T['io.flow.fulfillment.v0.models.quote'],
|
|
27813
|
-
errors: PropTypes.arrayOf(PropTypes.string),
|
|
27814
|
-
});
|
|
27815
|
-
|
|
27816
|
-
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
27817
|
-
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
27818
|
-
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
27819
|
-
T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
27820
|
-
T['io.flow.catalog.v0.models.localized_total'],
|
|
27821
|
-
]);
|
|
27822
|
-
|
|
27823
|
-
T['io.flow.internal.v0.models.order_rates_data_v3'] = PropTypes.exact({
|
|
27824
|
-
organization: PropTypes.string.isRequired,
|
|
27825
|
-
order_id: PropTypes.string.isRequired,
|
|
27826
|
-
order_number: PropTypes.string.isRequired,
|
|
27827
|
-
order_total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
27828
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
27829
|
-
});
|
|
27830
|
-
|
|
27831
|
-
T['io.flow.internal.v0.models.order_rates_published_v3'] = PropTypes.exact({
|
|
27832
|
-
discriminator: PropTypes.oneOf(['order_rates_published_v3']).isRequired,
|
|
27833
|
-
event_id: PropTypes.string.isRequired,
|
|
27834
|
-
timestamp: PropTypes.string.isRequired,
|
|
27835
|
-
organization: PropTypes.string.isRequired,
|
|
27836
|
-
data: T['io.flow.internal.v0.models.order_rates_data_v3'].isRequired,
|
|
27837
|
-
});
|
|
27838
|
-
|
|
27839
28197
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
27840
28198
|
id: PropTypes.string.isRequired,
|
|
27841
28199
|
description: PropTypes.string.isRequired,
|
|
@@ -28127,6 +28485,99 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
28127
28485
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
28128
28486
|
});
|
|
28129
28487
|
|
|
28488
|
+
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
28489
|
+
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
28490
|
+
currency: PropTypes.string.isRequired,
|
|
28491
|
+
amount: PropTypes.number.isRequired,
|
|
28492
|
+
label: PropTypes.string.isRequired,
|
|
28493
|
+
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
28494
|
+
});
|
|
28495
|
+
|
|
28496
|
+
T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
28497
|
+
discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
|
|
28498
|
+
id: PropTypes.string.isRequired,
|
|
28499
|
+
key: PropTypes.string,
|
|
28500
|
+
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
28501
|
+
fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
|
|
28502
|
+
ship_from_country: PropTypes.string,
|
|
28503
|
+
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
28504
|
+
options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
|
|
28505
|
+
special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
|
|
28506
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
28507
|
+
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
28508
|
+
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
28509
|
+
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
28510
|
+
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
28511
|
+
});
|
|
28512
|
+
|
|
28513
|
+
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
28514
|
+
discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
|
|
28515
|
+
id: PropTypes.string.isRequired,
|
|
28516
|
+
key: PropTypes.string,
|
|
28517
|
+
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
28518
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
28519
|
+
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
28520
|
+
});
|
|
28521
|
+
|
|
28522
|
+
T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
|
|
28523
|
+
T['io.flow.fulfillment.v0.models.digital_delivery'],
|
|
28524
|
+
T['io.flow.fulfillment.v0.models.physical_delivery'],
|
|
28525
|
+
]);
|
|
28526
|
+
|
|
28527
|
+
T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
28528
|
+
id: PropTypes.string.isRequired,
|
|
28529
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
28530
|
+
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
28531
|
+
selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
|
|
28532
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
28533
|
+
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
28534
|
+
});
|
|
28535
|
+
|
|
28536
|
+
T['io.flow.internal.v0.models.pregenerated_quote'] = PropTypes.exact({
|
|
28537
|
+
id: PropTypes.string.isRequired,
|
|
28538
|
+
experience: T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'].isRequired,
|
|
28539
|
+
destination_country: PropTypes.string.isRequired,
|
|
28540
|
+
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
28541
|
+
quote: T['io.flow.fulfillment.v0.models.quote'],
|
|
28542
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
28543
|
+
});
|
|
28544
|
+
|
|
28545
|
+
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
28546
|
+
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
28547
|
+
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
28548
|
+
T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
28549
|
+
T['io.flow.catalog.v0.models.localized_total'],
|
|
28550
|
+
]);
|
|
28551
|
+
|
|
28552
|
+
T['io.flow.internal.v0.models.order_rates_data_v3'] = PropTypes.exact({
|
|
28553
|
+
organization: PropTypes.string.isRequired,
|
|
28554
|
+
order_id: PropTypes.string.isRequired,
|
|
28555
|
+
order_number: PropTypes.string.isRequired,
|
|
28556
|
+
order_total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
28557
|
+
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
28558
|
+
});
|
|
28559
|
+
|
|
28560
|
+
T['io.flow.internal.v0.models.order_rates_published_v3'] = PropTypes.exact({
|
|
28561
|
+
discriminator: PropTypes.oneOf(['order_rates_published_v3']).isRequired,
|
|
28562
|
+
event_id: PropTypes.string.isRequired,
|
|
28563
|
+
timestamp: PropTypes.string.isRequired,
|
|
28564
|
+
organization: PropTypes.string.isRequired,
|
|
28565
|
+
data: T['io.flow.internal.v0.models.order_rates_data_v3'].isRequired,
|
|
28566
|
+
});
|
|
28567
|
+
|
|
28568
|
+
T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
|
|
28569
|
+
org_id: PropTypes.string.isRequired,
|
|
28570
|
+
flow_order_number: PropTypes.string.isRequired,
|
|
28571
|
+
shopify_order_number: PropTypes.string.isRequired,
|
|
28572
|
+
order_submission_date: PropTypes.string,
|
|
28573
|
+
order_item_count: PropTypes.number.isRequired,
|
|
28574
|
+
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
28575
|
+
merchant_total: PropTypes.number.isRequired,
|
|
28576
|
+
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
28577
|
+
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
28578
|
+
duty_paid: PropTypes.bool.isRequired,
|
|
28579
|
+
});
|
|
28580
|
+
|
|
28130
28581
|
T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
|
|
28131
28582
|
date: PropTypes.string.isRequired,
|
|
28132
28583
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -29181,6 +29632,17 @@ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
|
29181
29632
|
type: T['io.flow.internal.v0.enums.account_type'].isRequired,
|
|
29182
29633
|
});
|
|
29183
29634
|
|
|
29635
|
+
T['io.flow.internal.v0.models.report_account'] = PropTypes.exact({
|
|
29636
|
+
id: PropTypes.string.isRequired,
|
|
29637
|
+
source: T['io.flow.internal.v0.models.account_source'].isRequired,
|
|
29638
|
+
});
|
|
29639
|
+
|
|
29640
|
+
T['io.flow.internal.v0.models.non_channel_payment_bank_account'] = PropTypes.exact({
|
|
29641
|
+
payment: T['io.flow.internal.v0.models.report_payment'].isRequired,
|
|
29642
|
+
bank_account: T['io.flow.internal.v0.models.report_bank_account'].isRequired,
|
|
29643
|
+
account: T['io.flow.internal.v0.models.report_account'].isRequired,
|
|
29644
|
+
});
|
|
29645
|
+
|
|
29184
29646
|
T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
|
|
29185
29647
|
source: T['io.flow.internal.v0.models.account_source'].isRequired,
|
|
29186
29648
|
id: PropTypes.string.isRequired,
|
|
@@ -29254,23 +29716,6 @@ T['io.flow.internal.v0.models.invoice'] = PropTypes.exact({
|
|
|
29254
29716
|
|
|
29255
29717
|
T['io.flow.internal.v0.enums.responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
29256
29718
|
|
|
29257
|
-
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
29258
|
-
id: PropTypes.string.isRequired,
|
|
29259
|
-
fulfilled_at: PropTypes.string.isRequired,
|
|
29260
|
-
currency: PropTypes.string.isRequired,
|
|
29261
|
-
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
29262
|
-
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
29263
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_line']).isRequired,
|
|
29264
|
-
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
29265
|
-
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
29266
|
-
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
29267
|
-
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
29268
|
-
completes_order: PropTypes.bool.isRequired,
|
|
29269
|
-
sequence_number: PropTypes.number.isRequired,
|
|
29270
|
-
posting_cutoff: PropTypes.string.isRequired,
|
|
29271
|
-
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
29272
|
-
});
|
|
29273
|
-
|
|
29274
29719
|
T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
|
|
29275
29720
|
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
29276
29721
|
tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
|
|
@@ -29336,6 +29781,7 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
29336
29781
|
merchant_of_record_fee: PropTypes.number,
|
|
29337
29782
|
duty_guarantee_fee: PropTypes.number,
|
|
29338
29783
|
transfer_fee: PropTypes.number,
|
|
29784
|
+
negative_balance_guarantee_fee: PropTypes.number,
|
|
29339
29785
|
order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
|
|
29340
29786
|
label_fees: T['io.flow.internal.v0.models.account_setting_label_fees'],
|
|
29341
29787
|
charge_label_cost_directly: PropTypes.bool.isRequired,
|
|
@@ -29622,6 +30068,7 @@ T['io.flow.internal.v0.models.order_transaction_upserted'] = PropTypes.exact({
|
|
|
29622
30068
|
T['io.flow.internal.v0.models.manual_transaction'] = PropTypes.exact({
|
|
29623
30069
|
discriminator: PropTypes.oneOf(['manual_transaction']).isRequired,
|
|
29624
30070
|
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
30071
|
+
original_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
29625
30072
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
29626
30073
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
29627
30074
|
id: PropTypes.string.isRequired,
|
|
@@ -30023,6 +30470,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30023
30470
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
30024
30471
|
T['io.flow.internal.v0.models.index_assignment_upserted'],
|
|
30025
30472
|
T['io.flow.internal.v0.models.index_assignment_deleted'],
|
|
30473
|
+
T['io.flow.internal.v0.models.merchant_upserted'],
|
|
30474
|
+
T['io.flow.internal.v0.models.merchant_deleted'],
|
|
30026
30475
|
T['io.flow.internal.v0.models.account_upserted'],
|
|
30027
30476
|
T['io.flow.internal.v0.models.account_upserted_v2'],
|
|
30028
30477
|
T['io.flow.internal.v0.models.account_deleted_v2'],
|
|
@@ -30070,8 +30519,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30070
30519
|
T['io.flow.internal.v0.models.daily_value_deleted'],
|
|
30071
30520
|
T['io.flow.internal.v0.models.sales_record_upserted'],
|
|
30072
30521
|
T['io.flow.internal.v0.models.sales_record_deleted'],
|
|
30073
|
-
T['io.flow.internal.v0.models.label_invoice_request_upserted'],
|
|
30074
|
-
T['io.flow.internal.v0.models.label_invoice_request_deleted'],
|
|
30075
30522
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
30076
30523
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
30077
30524
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -30166,6 +30613,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30166
30613
|
T['io.flow.internal.v0.models.organization_bank_account_deleted'],
|
|
30167
30614
|
T['io.flow.internal.v0.models.billing_csv_transaction_upserted'],
|
|
30168
30615
|
T['io.flow.internal.v0.models.billing_csv_transaction_deleted'],
|
|
30616
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'],
|
|
30617
|
+
T['io.flow.internal.v0.models.label_invoice_request_deleted'],
|
|
30169
30618
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
30170
30619
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
30171
30620
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -30314,6 +30763,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30314
30763
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
30315
30764
|
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'],
|
|
30316
30765
|
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'],
|
|
30766
|
+
T['io.flow.internal.v0.models.channel_order_summary_upserted'],
|
|
30767
|
+
T['io.flow.internal.v0.models.channel_order_summary_deleted'],
|
|
30317
30768
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
30318
30769
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
30319
30770
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -30355,6 +30806,13 @@ T['io.flow.permission.v0.models.permission_check'] = PropTypes.exact({
|
|
|
30355
30806
|
routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.permitted_route']).isRequired,
|
|
30356
30807
|
});
|
|
30357
30808
|
|
|
30809
|
+
T['io.flow.channel.internal.v0.models.channel_membership'] = PropTypes.exact({
|
|
30810
|
+
id: PropTypes.string.isRequired,
|
|
30811
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
30812
|
+
user: T['io.flow.common.v0.unions.expandable_user'].isRequired,
|
|
30813
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
30814
|
+
});
|
|
30815
|
+
|
|
30358
30816
|
T['io.flow.organization.v0.models.membership'] = PropTypes.exact({
|
|
30359
30817
|
id: PropTypes.string.isRequired,
|
|
30360
30818
|
organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
|
|
@@ -30467,6 +30925,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30467
30925
|
'adyen_refund_upserted',
|
|
30468
30926
|
'index_assignment_upserted',
|
|
30469
30927
|
'index_assignment_deleted',
|
|
30928
|
+
'merchant_upserted',
|
|
30929
|
+
'merchant_deleted',
|
|
30470
30930
|
'account_upserted',
|
|
30471
30931
|
'account_upserted_v2',
|
|
30472
30932
|
'account_deleted_v2',
|
|
@@ -30514,8 +30974,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30514
30974
|
'daily_value_deleted',
|
|
30515
30975
|
'sales_record_upserted',
|
|
30516
30976
|
'sales_record_deleted',
|
|
30517
|
-
'label_invoice_request_upserted',
|
|
30518
|
-
'label_invoice_request_deleted',
|
|
30519
30977
|
'calculator_organization_settings_upserted',
|
|
30520
30978
|
'calculator_organization_settings_deleted',
|
|
30521
30979
|
'carrier_account_upserted_v2',
|
|
@@ -30610,6 +31068,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30610
31068
|
'organization_bank_account_deleted',
|
|
30611
31069
|
'billing_csv_transaction_upserted',
|
|
30612
31070
|
'billing_csv_transaction_deleted',
|
|
31071
|
+
'label_invoice_request_upserted',
|
|
31072
|
+
'label_invoice_request_deleted',
|
|
30613
31073
|
'fraud_review_upserted',
|
|
30614
31074
|
'fraud_review_deleted',
|
|
30615
31075
|
'fraud_pending_review_upserted',
|
|
@@ -30758,6 +31218,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30758
31218
|
'shopify_markets_shop_statistics_deleted',
|
|
30759
31219
|
'shopify_markets_metrics_upserted',
|
|
30760
31220
|
'shopify_markets_metrics_deleted',
|
|
31221
|
+
'channel_order_summary_upserted',
|
|
31222
|
+
'channel_order_summary_deleted',
|
|
30761
31223
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
30762
31224
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
30763
31225
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -30802,6 +31264,8 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
|
|
|
30802
31264
|
'unit_test',
|
|
30803
31265
|
'api',
|
|
30804
31266
|
'api_activation',
|
|
31267
|
+
'audit_auto_activation',
|
|
31268
|
+
'api_deactivation',
|
|
30805
31269
|
'api_sandbox_setup',
|
|
30806
31270
|
'api_internal',
|
|
30807
31271
|
'api_internal_block',
|
|
@@ -30846,21 +31310,25 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
30846
31310
|
'fulfillment_in_transit',
|
|
30847
31311
|
'fulfillment_shipping_notification',
|
|
30848
31312
|
'fulfillment_external',
|
|
30849
|
-
'
|
|
31313
|
+
'fulfillment_order_combined_shipment',
|
|
31314
|
+
'fulfillment_order_time',
|
|
30850
31315
|
'label_tracking_summary',
|
|
30851
31316
|
'label_invoice_request',
|
|
30852
31317
|
'carrier_charge',
|
|
30853
31318
|
'carrier_charge_file',
|
|
30854
|
-
'label_origin',
|
|
30855
31319
|
'order',
|
|
30856
31320
|
'order_identifier',
|
|
30857
31321
|
'organization_onboarding_state',
|
|
31322
|
+
'posting_proof',
|
|
30858
31323
|
'refund',
|
|
30859
31324
|
'refund_over_capture',
|
|
30860
31325
|
'sales_record',
|
|
30861
31326
|
'statement_batch',
|
|
30862
31327
|
'statement_email',
|
|
30863
31328
|
'statement_summary_email',
|
|
31329
|
+
'pending_payout_transaction_event',
|
|
31330
|
+
'credit_and_subsidy',
|
|
31331
|
+
'negative_balance_guarantee',
|
|
30864
31332
|
]);
|
|
30865
31333
|
|
|
30866
31334
|
T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
@@ -31418,6 +31886,14 @@ T['io.flow.internal.v0.models.install_form'] = PropTypes.exact({
|
|
|
31418
31886
|
token: PropTypes.string.isRequired,
|
|
31419
31887
|
});
|
|
31420
31888
|
|
|
31889
|
+
T['io.flow.internal.v0.models.invoice_info_form'] = PropTypes.exact({
|
|
31890
|
+
invoice_number: PropTypes.string.isRequired,
|
|
31891
|
+
invoice_date: PropTypes.string.isRequired,
|
|
31892
|
+
currency_code: PropTypes.string.isRequired,
|
|
31893
|
+
invoice_amount: PropTypes.string.isRequired,
|
|
31894
|
+
control_id: PropTypes.string,
|
|
31895
|
+
});
|
|
31896
|
+
|
|
31421
31897
|
T['io.flow.internal.v0.models.item_classification_form'] = PropTypes.exact({
|
|
31422
31898
|
organization: PropTypes.string.isRequired,
|
|
31423
31899
|
uid: PropTypes.string.isRequired,
|
|
@@ -31712,13 +32188,6 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
31712
32188
|
margin: PropTypes.number.isRequired,
|
|
31713
32189
|
});
|
|
31714
32190
|
|
|
31715
|
-
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
31716
|
-
key: PropTypes.string,
|
|
31717
|
-
from: PropTypes.string.isRequired,
|
|
31718
|
-
to: PropTypes.string.isRequired,
|
|
31719
|
-
organization_id: PropTypes.string,
|
|
31720
|
-
});
|
|
31721
|
-
|
|
31722
32191
|
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
31723
32192
|
task_id: PropTypes.string.isRequired,
|
|
31724
32193
|
});
|
|
@@ -31853,6 +32322,18 @@ T['io.flow.internal.v0.models.shopify_grants_check'] = PropTypes.exact({
|
|
|
31853
32322
|
placeholder: PropTypes.string.isRequired,
|
|
31854
32323
|
});
|
|
31855
32324
|
|
|
32325
|
+
T['io.flow.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact({
|
|
32326
|
+
id: PropTypes.string.isRequired,
|
|
32327
|
+
type: PropTypes.string.isRequired,
|
|
32328
|
+
type_id: PropTypes.string.isRequired,
|
|
32329
|
+
organization_id: PropTypes.string.isRequired,
|
|
32330
|
+
environment: PropTypes.string,
|
|
32331
|
+
num_attempts: PropTypes.number.isRequired,
|
|
32332
|
+
next_attempt_at: PropTypes.string.isRequired,
|
|
32333
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
32334
|
+
stacktrace: PropTypes.string,
|
|
32335
|
+
});
|
|
32336
|
+
|
|
31856
32337
|
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
31857
32338
|
shop: PropTypes.string.isRequired,
|
|
31858
32339
|
domain: PropTypes.string.isRequired,
|
|
@@ -31976,8 +32457,6 @@ T['io.flow.return.v0.models.return_reason_put_form'] = PropTypes.exact({
|
|
|
31976
32457
|
name: PropTypes.string,
|
|
31977
32458
|
});
|
|
31978
32459
|
|
|
31979
|
-
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
|
|
31980
|
-
|
|
31981
32460
|
T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
|
|
31982
32461
|
placeholder: PropTypes.string,
|
|
31983
32462
|
});
|
|
@@ -32183,6 +32662,31 @@ T['io.flow.label.v0.models.manifest_form'] = PropTypes.exact({
|
|
|
32183
32662
|
service: PropTypes.string,
|
|
32184
32663
|
});
|
|
32185
32664
|
|
|
32665
|
+
T['io.flow.external.paypal.v1.enums.event_type'] = PropTypes.oneOf([
|
|
32666
|
+
'PAYMENT.AUTHORIZATION.CREATED',
|
|
32667
|
+
'PAYMENT.AUTHORIZATION.VOIDED',
|
|
32668
|
+
'PAYMENT.CAPTURE.DECLINED',
|
|
32669
|
+
'PAYMENT.CAPTURE.COMPLETED',
|
|
32670
|
+
'PAYMENT.CAPTURE.PENDING',
|
|
32671
|
+
'PAYMENT.CAPTURE.REVERSED',
|
|
32672
|
+
'PAYMENT.CAPTURE.DENIED',
|
|
32673
|
+
'PAYMENT.ORDER.CANCELLED',
|
|
32674
|
+
'PAYMENT.ORDER.CREATED',
|
|
32675
|
+
'PAYMENT.SALE.COMPLETED',
|
|
32676
|
+
'PAYMENT.SALE.DENIED',
|
|
32677
|
+
'PAYMENT.SALE.PENDING',
|
|
32678
|
+
'PAYMENT.SALE.REFUNDED',
|
|
32679
|
+
'PAYMENT.SALE.REVERSED',
|
|
32680
|
+
'PAYMENTS.PAYMENT.CREATED',
|
|
32681
|
+
'CHECKOUT.ORDER.APPROVED',
|
|
32682
|
+
'CHECKOUT.CHECKOUT.BUYER-APPROVED',
|
|
32683
|
+
'CHECKOUT.ORDER.COMPLETED',
|
|
32684
|
+
'CUSTOMER.DISPUTE.CREATED',
|
|
32685
|
+
'CUSTOMER.DISPUTE.RESOLVED',
|
|
32686
|
+
'CUSTOMER.DISPUTE.UPDATED',
|
|
32687
|
+
'CHECKOUT.PAYMENT-APPROVAL.REVERSED',
|
|
32688
|
+
]);
|
|
32689
|
+
|
|
32186
32690
|
T['io.flow.external.paypal.v1.enums.http_method'] = PropTypes.oneOf(['GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'CONNECT', 'OPTIONS', 'PATCH']);
|
|
32187
32691
|
|
|
32188
32692
|
T['io.flow.external.paypal.v1.models.token'] = PropTypes.exact({
|
|
@@ -32270,6 +32774,101 @@ T['io.flow.brickftp.v0.models.file_upload_metadata'] = PropTypes.exact({
|
|
|
32270
32774
|
upload_uri: PropTypes.string.isRequired,
|
|
32271
32775
|
});
|
|
32272
32776
|
|
|
32777
|
+
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
|
|
32778
|
+
T['io.flow.shopify.markets.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
32779
|
+
T['io.flow.shopify.markets.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
|
|
32780
|
+
T['io.flow.shopify.markets.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft']);
|
|
32781
|
+
|
|
32782
|
+
T['io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods'] = PropTypes.oneOf([
|
|
32783
|
+
'aerosols',
|
|
32784
|
+
'air_bag_inflators_or_seat_belt_pretensioners',
|
|
32785
|
+
'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume',
|
|
32786
|
+
'batteries',
|
|
32787
|
+
'carbon_dioxide_or_dry_ice',
|
|
32788
|
+
'corrosives',
|
|
32789
|
+
'cannabidiol_products',
|
|
32790
|
+
'cologne_or_perfume',
|
|
32791
|
+
'currency_or_gift_cards_or_monetary_instruments',
|
|
32792
|
+
'exotic_leather_goods',
|
|
32793
|
+
'environmental_waste',
|
|
32794
|
+
'explosives_or_ammunition',
|
|
32795
|
+
'flammable_liquids',
|
|
32796
|
+
'gases',
|
|
32797
|
+
'hazardous_or_combustible_materials',
|
|
32798
|
+
'infectious_or_biological_substances',
|
|
32799
|
+
'knives',
|
|
32800
|
+
'matches_or_lighter_or_lighter_refills',
|
|
32801
|
+
'nail_polish',
|
|
32802
|
+
'oxidizing_materials_or_organic_peroxides',
|
|
32803
|
+
'pornography',
|
|
32804
|
+
'prohibited_carriage',
|
|
32805
|
+
'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances',
|
|
32806
|
+
]);
|
|
32807
|
+
|
|
32808
|
+
T['io.flow.shopify.markets.internal.v0.enums.shopify_markets_hts_number_available'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
32809
|
+
|
|
32810
|
+
T['io.flow.shopify.markets.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
|
|
32811
|
+
'apparel_and_accessories',
|
|
32812
|
+
'beauty_and_cosmetics',
|
|
32813
|
+
'electronics',
|
|
32814
|
+
'food_or_perishables',
|
|
32815
|
+
'jewellery_and_watches',
|
|
32816
|
+
'paper_and_art',
|
|
32817
|
+
'sports_and_fitness',
|
|
32818
|
+
'toys_hobbies_gifts',
|
|
32819
|
+
'other',
|
|
32820
|
+
]);
|
|
32821
|
+
|
|
32822
|
+
T['io.flow.shopify.markets.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
32823
|
+
origin: PropTypes.string.isRequired,
|
|
32824
|
+
destination: PropTypes.string.isRequired,
|
|
32825
|
+
});
|
|
32826
|
+
|
|
32827
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact({
|
|
32828
|
+
id: PropTypes.string.isRequired,
|
|
32829
|
+
type: PropTypes.string.isRequired,
|
|
32830
|
+
type_id: PropTypes.string.isRequired,
|
|
32831
|
+
organization_id: PropTypes.string.isRequired,
|
|
32832
|
+
environment: PropTypes.string,
|
|
32833
|
+
num_attempts: PropTypes.number.isRequired,
|
|
32834
|
+
next_attempt_at: PropTypes.string.isRequired,
|
|
32835
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
32836
|
+
stacktrace: PropTypes.string,
|
|
32837
|
+
});
|
|
32838
|
+
|
|
32839
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
32840
|
+
shop: PropTypes.string.isRequired,
|
|
32841
|
+
domain: PropTypes.string.isRequired,
|
|
32842
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
32843
|
+
shared_secret: PropTypes.string.isRequired,
|
|
32844
|
+
api_key: PropTypes.string,
|
|
32845
|
+
api_password: PropTypes.string,
|
|
32846
|
+
access_token: PropTypes.string,
|
|
32847
|
+
});
|
|
32848
|
+
|
|
32849
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_sync'] = PropTypes.exact({
|
|
32850
|
+
force_resync: PropTypes.bool,
|
|
32851
|
+
});
|
|
32852
|
+
|
|
32853
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_order_cancel_form'] = PropTypes.exact({
|
|
32854
|
+
note: PropTypes.string,
|
|
32855
|
+
});
|
|
32856
|
+
|
|
32857
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_order_cancel_response'] = PropTypes.exact({
|
|
32858
|
+
shopify_order_cancellation_id: PropTypes.string.isRequired,
|
|
32859
|
+
shopify_order_id: PropTypes.number.isRequired,
|
|
32860
|
+
message: PropTypes.string.isRequired,
|
|
32861
|
+
});
|
|
32862
|
+
|
|
32863
|
+
T['io.flow.shopify.markets.internal.v0.models.third_party_logistics_pick_up_time_window'] = PropTypes.exact({
|
|
32864
|
+
from: PropTypes.string.isRequired,
|
|
32865
|
+
to: PropTypes.string.isRequired,
|
|
32866
|
+
});
|
|
32867
|
+
|
|
32868
|
+
T['io.flow.shopify.markets.internal.v0.models.webhook'] = PropTypes.exact({
|
|
32869
|
+
placeholder: PropTypes.string,
|
|
32870
|
+
});
|
|
32871
|
+
|
|
32273
32872
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_form'] = PropTypes.exact({
|
|
32274
32873
|
order_number: PropTypes.string.isRequired,
|
|
32275
32874
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
@@ -32542,6 +33141,10 @@ T['io.flow.payment.gateway.v0.models.payment_reversal_form'] = PropTypes.exact({
|
|
|
32542
33141
|
currency: PropTypes.string,
|
|
32543
33142
|
});
|
|
32544
33143
|
|
|
33144
|
+
T['io.flow.channel.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
|
|
33145
|
+
placeholder: PropTypes.string,
|
|
33146
|
+
});
|
|
33147
|
+
|
|
32545
33148
|
T['io.flow.payment.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
32546
33149
|
T['io.flow.payment.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
32547
33150
|
|
|
@@ -32914,10 +33517,6 @@ T['io.flow.crypto.v0.models.payment_request'] = PropTypes.exact({
|
|
|
32914
33517
|
order_id: PropTypes.string,
|
|
32915
33518
|
});
|
|
32916
33519
|
|
|
32917
|
-
T['io.flow.billing.true.up.v0.models.carrier_charge_file_form'] = PropTypes.exact({
|
|
32918
|
-
url: PropTypes.string.isRequired,
|
|
32919
|
-
});
|
|
32920
|
-
|
|
32921
33520
|
T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropTypes.exact({
|
|
32922
33521
|
country: PropTypes.string.isRequired,
|
|
32923
33522
|
});
|
|
@@ -33046,21 +33645,25 @@ T['io.flow.billing.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
33046
33645
|
'fulfillment_in_transit',
|
|
33047
33646
|
'fulfillment_shipping_notification',
|
|
33048
33647
|
'fulfillment_external',
|
|
33049
|
-
'
|
|
33648
|
+
'fulfillment_order_combined_shipment',
|
|
33649
|
+
'fulfillment_order_time',
|
|
33050
33650
|
'label_tracking_summary',
|
|
33051
33651
|
'label_invoice_request',
|
|
33052
33652
|
'carrier_charge',
|
|
33053
33653
|
'carrier_charge_file',
|
|
33054
|
-
'label_origin',
|
|
33055
33654
|
'order',
|
|
33056
33655
|
'order_identifier',
|
|
33057
33656
|
'organization_onboarding_state',
|
|
33657
|
+
'posting_proof',
|
|
33058
33658
|
'refund',
|
|
33059
33659
|
'refund_over_capture',
|
|
33060
33660
|
'sales_record',
|
|
33061
33661
|
'statement_batch',
|
|
33062
33662
|
'statement_email',
|
|
33063
33663
|
'statement_summary_email',
|
|
33664
|
+
'pending_payout_transaction_event',
|
|
33665
|
+
'credit_and_subsidy',
|
|
33666
|
+
'negative_balance_guarantee',
|
|
33064
33667
|
]);
|
|
33065
33668
|
|
|
33066
33669
|
T['io.flow.billing.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
|
|
@@ -33348,6 +33951,7 @@ export const accountProcessingRates = T['io.flow.internal.v0.models.account_proc
|
|
|
33348
33951
|
export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
|
|
33349
33952
|
export const accountProcessingRatesForm = T['io.flow.internal.v0.models.account_processing_rates_form'];
|
|
33350
33953
|
export const accountProcessingRatesUpserted = T['io.flow.internal.v0.models.account_processing_rates_upserted'];
|
|
33954
|
+
export const accountReference = T['io.flow.internal.v0.models.account_reference'];
|
|
33351
33955
|
export const accountSettingLabelFees = T['io.flow.internal.v0.models.account_setting_label_fees'];
|
|
33352
33956
|
export const accountSettingLiabilitiesMethod = T['io.flow.internal.v0.enums.account_setting_liabilities_method'];
|
|
33353
33957
|
export const accountSettings = T['io.flow.internal.v0.models.account_settings'];
|
|
@@ -33562,7 +34166,8 @@ export const carrierChargeFileForm = T['io.flow.internal.v0.models.carrier_charg
|
|
|
33562
34166
|
export const carrierChargeFileResult = T['io.flow.internal.v0.models.carrier_charge_file_result'];
|
|
33563
34167
|
export const carrierChargeForm = T['io.flow.internal.v0.unions.carrier_charge_form'];
|
|
33564
34168
|
export const carrierChargeFormLabel = T['io.flow.internal.v0.models.carrier_charge_form_label'];
|
|
33565
|
-
export const
|
|
34169
|
+
export const carrierChargeFormOther = T['io.flow.internal.v0.models.carrier_charge_form_other'];
|
|
34170
|
+
export const carrierChargeOtherReason = T['io.flow.internal.v0.enums.carrier_charge_other_reason'];
|
|
33566
34171
|
export const carrierChargeUnits = T['io.flow.internal.v0.models.carrier_charge_units'];
|
|
33567
34172
|
export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credentials'];
|
|
33568
34173
|
export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
|
|
@@ -33608,6 +34213,7 @@ export const channelForm = T['io.flow.internal.v0.models.channel_form'];
|
|
|
33608
34213
|
export const channelMembership = T['io.flow.internal.v0.models.channel_membership'];
|
|
33609
34214
|
export const channelMembershipForm = T['io.flow.internal.v0.models.channel_membership_form'];
|
|
33610
34215
|
export const channelMembershipPutForm = T['io.flow.internal.v0.models.channel_membership_put_form'];
|
|
34216
|
+
export const channelOrder = T['io.flow.internal.v0.models.channel_order'];
|
|
33611
34217
|
export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_order_acceptance'];
|
|
33612
34218
|
export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
|
|
33613
34219
|
export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
|
|
@@ -33617,6 +34223,11 @@ export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channe
|
|
|
33617
34223
|
export const channelOrderAcceptanceRejectionReason = T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'];
|
|
33618
34224
|
export const channelOrderAcceptanceStatus = T['io.flow.internal.v0.enums.channel_order_acceptance_status'];
|
|
33619
34225
|
export const channelOrderAcceptanceUpserted = T['io.flow.internal.v0.models.channel_order_acceptance_upserted'];
|
|
34226
|
+
export const channelOrderFulfillmentStatusCode = T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'];
|
|
34227
|
+
export const channelOrderSummary = T['io.flow.internal.v0.models.channel_order_summary'];
|
|
34228
|
+
export const channelOrderSummaryDeleted = T['io.flow.internal.v0.models.channel_order_summary_deleted'];
|
|
34229
|
+
export const channelOrderSummaryFulfillmentDetails = T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'];
|
|
34230
|
+
export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel_order_summary_upserted'];
|
|
33620
34231
|
export const channelOrganizationShopify = T['io.flow.internal.v0.models.channel_organization_shopify'];
|
|
33621
34232
|
export const channelOrganizationShopifyForm = T['io.flow.internal.v0.models.channel_organization_shopify_form'];
|
|
33622
34233
|
export const channelOrganizationShopifyPostForm = T['io.flow.internal.v0.models.channel_organization_shopify_post_form'];
|
|
@@ -34245,7 +34856,10 @@ export const dailyExperimentResultsUpserted = T['io.flow.internal.v0.models.dail
|
|
|
34245
34856
|
export const dailyValue = T['io.flow.internal.v0.models.daily_value'];
|
|
34246
34857
|
export const dailyValueDeleted = T['io.flow.internal.v0.models.daily_value_deleted'];
|
|
34247
34858
|
export const dailyValueUpserted = T['io.flow.internal.v0.models.daily_value_upserted'];
|
|
34859
|
+
export const debugAccountingTransaction = T['io.flow.internal.v0.models.debug_accounting_transaction'];
|
|
34860
|
+
export const debugAccountingTransactionType = T['io.flow.internal.v0.enums.debug_accounting_transaction_type'];
|
|
34248
34861
|
export const debugDetails = T['io.flow.internal.v0.models.debug_details'];
|
|
34862
|
+
export const debugFulfillmentDelta = T['io.flow.internal.v0.models.debug_fulfillment_delta'];
|
|
34249
34863
|
export const debugLabel = T['io.flow.internal.v0.models.debug_label'];
|
|
34250
34864
|
export const debugLabelTransactionSummary = T['io.flow.internal.v0.models.debug_label_transaction_summary'];
|
|
34251
34865
|
export const debugOrder = T['io.flow.internal.v0.models.debug_order'];
|
|
@@ -34514,16 +35128,19 @@ export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_a
|
|
|
34514
35128
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
34515
35129
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
34516
35130
|
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
34517
|
-
export const fulfillmentLine = T['io.flow.internal.v0.models.fulfillment_line'];
|
|
34518
35131
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
34519
35132
|
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
34520
35133
|
export const fulfillmentProofExternalFulfillmentProofReference = T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'];
|
|
34521
35134
|
export const fulfillmentProofLabelTrackingReference = T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'];
|
|
35135
|
+
export const fulfillmentProofOrderCombinedShipmentReference = T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'];
|
|
34522
35136
|
export const fulfillmentProofShippingNotificationReference = T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'];
|
|
34523
35137
|
export const fulfillmentReference = T['io.flow.internal.v0.models.fulfillment_reference'];
|
|
34524
35138
|
export const fulfillmentShipmentTracking = T['io.flow.internal.v0.models.fulfillment_shipment_tracking'];
|
|
34525
35139
|
export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
|
|
34526
35140
|
export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
|
|
35141
|
+
export const fulfillmentTrigger = T['io.flow.internal.v0.unions.fulfillment_trigger'];
|
|
35142
|
+
export const fulfillmentTriggerProof = T['io.flow.internal.v0.models.fulfillment_trigger_proof'];
|
|
35143
|
+
export const fulfillmentTriggerTime = T['io.flow.internal.v0.models.fulfillment_trigger_time'];
|
|
34527
35144
|
export const fxFee = T['io.flow.internal.v0.models.fx_fee'];
|
|
34528
35145
|
export const fxRevenueRecognition = T['io.flow.internal.v0.models.fx_revenue_recognition'];
|
|
34529
35146
|
export const fxRevenueRecognitionAccount = T['io.flow.internal.v0.models.fx_revenue_recognition_account'];
|
|
@@ -34710,7 +35327,6 @@ export const labProjectSettingsForm = T['io.flow.internal.v0.models.lab_project_
|
|
|
34710
35327
|
export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'];
|
|
34711
35328
|
export const labelAliases = T['io.flow.internal.v0.models.label_aliases'];
|
|
34712
35329
|
export const labelAssociation = T['io.flow.internal.v0.models.label_association'];
|
|
34713
|
-
export const labelBase = T['io.flow.internal.v0.models.label_base'];
|
|
34714
35330
|
export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_strategy'];
|
|
34715
35331
|
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
34716
35332
|
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
@@ -34735,11 +35351,6 @@ export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_requ
|
|
|
34735
35351
|
export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
|
|
34736
35352
|
export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
|
|
34737
35353
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
34738
|
-
export const labelSurcharge = T['io.flow.internal.v0.models.label_surcharge'];
|
|
34739
|
-
export const labelSurchargeDetail = T['io.flow.internal.v0.unions.label_surcharge_detail'];
|
|
34740
|
-
export const labelSurchargeDetailFlat = T['io.flow.internal.v0.models.label_surcharge_detail_flat'];
|
|
34741
|
-
export const labelSurchargeDetailPerWeightUnit = T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'];
|
|
34742
|
-
export const labelSurchargeDetailPercentage = T['io.flow.internal.v0.models.label_surcharge_detail_percentage'];
|
|
34743
35354
|
export const labelSurchargeForm = T['io.flow.internal.v0.models.label_surcharge_form'];
|
|
34744
35355
|
export const labelSurchargeSingleForm = T['io.flow.internal.v0.models.label_surcharge_single_form'];
|
|
34745
35356
|
export const labelTaxonomy = T['io.flow.internal.v0.models.label_taxonomy'];
|
|
@@ -34749,7 +35360,6 @@ export const labelTransaction = T['io.flow.internal.v0.models.label_transaction'
|
|
|
34749
35360
|
export const labelTransactionDeleted = T['io.flow.internal.v0.models.label_transaction_deleted'];
|
|
34750
35361
|
export const labelTransactionType = T['io.flow.internal.v0.enums.label_transaction_type'];
|
|
34751
35362
|
export const labelTransactionUpserted = T['io.flow.internal.v0.models.label_transaction_upserted'];
|
|
34752
|
-
export const labelUnits = T['io.flow.internal.v0.models.label_units'];
|
|
34753
35363
|
export const labeledContent = T['io.flow.internal.v0.models.labeled_content'];
|
|
34754
35364
|
export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'];
|
|
34755
35365
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
@@ -34788,6 +35398,7 @@ export const localizedPriceBookItemData = T['io.flow.internal.v0.models.localize
|
|
|
34788
35398
|
export const localizedPriceBookItemDeleted = T['io.flow.internal.v0.models.localized_price_book_item_deleted'];
|
|
34789
35399
|
export const localizedPriceBookItemUpserted = T['io.flow.internal.v0.models.localized_price_book_item_upserted'];
|
|
34790
35400
|
export const location = T['io.flow.internal.v0.models.location'];
|
|
35401
|
+
export const logisticsResponsibility = T['io.flow.internal.v0.enums.logistics_responsibility'];
|
|
34791
35402
|
export const logo = T['io.flow.internal.v0.models.logo'];
|
|
34792
35403
|
export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
34793
35404
|
export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
|
|
@@ -34862,8 +35473,10 @@ export const marketingGatewaySchemaSummary = T['io.flow.internal.v0.models.marke
|
|
|
34862
35473
|
export const marketingGatewaySourceSummary = T['io.flow.internal.v0.unions.marketing_gateway_source_summary'];
|
|
34863
35474
|
export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'];
|
|
34864
35475
|
export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
|
|
35476
|
+
export const merchant = T['io.flow.internal.v0.models.merchant'];
|
|
34865
35477
|
export const merchantApplicationSummaries = T['io.flow.internal.v0.models.merchant_application_summaries'];
|
|
34866
35478
|
export const merchantApplicationSummary = T['io.flow.internal.v0.models.merchant_application_summary'];
|
|
35479
|
+
export const merchantDeleted = T['io.flow.internal.v0.models.merchant_deleted'];
|
|
34867
35480
|
export const merchantFees = T['io.flow.internal.v0.models.merchant_fees'];
|
|
34868
35481
|
export const merchantGuidAssignment = T['io.flow.internal.v0.models.merchant_guid_assignment'];
|
|
34869
35482
|
export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'];
|
|
@@ -34874,15 +35487,16 @@ export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_searc
|
|
|
34874
35487
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
34875
35488
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
34876
35489
|
export const merchantTransactions = T['io.flow.internal.v0.models.merchant_transactions'];
|
|
35490
|
+
export const merchantUpserted = T['io.flow.internal.v0.models.merchant_upserted'];
|
|
34877
35491
|
export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
|
|
34878
35492
|
export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
|
|
34879
|
-
export const metadataWeights = T['io.flow.internal.v0.models.metadata_weights'];
|
|
34880
35493
|
export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
34881
35494
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
34882
35495
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
34883
35496
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
34884
35497
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
34885
35498
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
35499
|
+
export const nonChannelPaymentBankAccount = T['io.flow.internal.v0.models.non_channel_payment_bank_account'];
|
|
34886
35500
|
export const notification = T['io.flow.internal.v0.models.notification'];
|
|
34887
35501
|
export const onboardingAuditMessage = T['io.flow.internal.v0.models.onboarding_audit_message'];
|
|
34888
35502
|
export const onboardingAuditMessageLevel = T['io.flow.internal.v0.enums.onboarding_audit_message_level'];
|
|
@@ -35125,6 +35739,7 @@ export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
|
|
|
35125
35739
|
export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'];
|
|
35126
35740
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
35127
35741
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
35742
|
+
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
35128
35743
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
35129
35744
|
export const queuedRecord = T['io.flow.internal.v0.models.queued_record'];
|
|
35130
35745
|
export const queuedRecordType = T['io.flow.internal.v0.enums.queued_record_type'];
|
|
@@ -35195,11 +35810,15 @@ export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.mo
|
|
|
35195
35810
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
35196
35811
|
export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
35197
35812
|
export const report = T['io.flow.internal.v0.models.report'];
|
|
35813
|
+
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
35814
|
+
export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
|
|
35198
35815
|
export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
35199
35816
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
35817
|
+
export const reportPayment = T['io.flow.internal.v0.models.report_payment'];
|
|
35200
35818
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
35201
35819
|
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
35202
35820
|
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
35821
|
+
export const reportType = T['io.flow.internal.v0.enums.report_type'];
|
|
35203
35822
|
export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'];
|
|
35204
35823
|
export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
|
|
35205
35824
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
@@ -35213,6 +35832,7 @@ export const restrictionItem = T['io.flow.internal.v0.models.restriction_item'];
|
|
|
35213
35832
|
export const restrictionItemRequestForm = T['io.flow.internal.v0.models.restriction_item_request_form'];
|
|
35214
35833
|
export const restrictionItemReview = T['io.flow.internal.v0.models.restriction_item_review'];
|
|
35215
35834
|
export const restrictionItemReviewDecisionForm = T['io.flow.internal.v0.models.restriction_item_review_decision_form'];
|
|
35835
|
+
export const restrictionItemReviewSummary = T['io.flow.internal.v0.models.restriction_item_review_summary'];
|
|
35216
35836
|
export const restrictionKeywordMetadata = T['io.flow.internal.v0.models.restriction_keyword_metadata'];
|
|
35217
35837
|
export const restrictionKeywords = T['io.flow.internal.v0.models.restriction_keywords'];
|
|
35218
35838
|
export const restrictionOrganization = T['io.flow.internal.v0.models.restriction_organization'];
|
|
@@ -35224,6 +35844,7 @@ export const restrictionPending = T['io.flow.internal.v0.models.restriction_pend
|
|
|
35224
35844
|
export const restrictionProduct = T['io.flow.internal.v0.models.restriction_product'];
|
|
35225
35845
|
export const restrictionProductDecisionForm = T['io.flow.internal.v0.models.restriction_product_decision_form'];
|
|
35226
35846
|
export const restrictionProductRequestForm = T['io.flow.internal.v0.models.restriction_product_request_form'];
|
|
35847
|
+
export const restrictionProductSummary = T['io.flow.internal.v0.models.restriction_product_summary'];
|
|
35227
35848
|
export const restrictionRule = T['io.flow.internal.v0.models.restriction_rule'];
|
|
35228
35849
|
export const restrictionRuleDecisionForm = T['io.flow.internal.v0.models.restriction_rule_decision_form'];
|
|
35229
35850
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
@@ -35275,7 +35896,6 @@ export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_
|
|
|
35275
35896
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
35276
35897
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
35277
35898
|
export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
|
|
35278
|
-
export const shipperAccountInfoForm = T['io.flow.internal.v0.models.shipper_account_info_form'];
|
|
35279
35899
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
35280
35900
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
35281
35901
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
@@ -35309,7 +35929,9 @@ export const shopifyMarketsMetricsUpserted = T['io.flow.internal.v0.models.shopi
|
|
|
35309
35929
|
export const shopifyMarketsOrder = T['io.flow.internal.v0.models.shopify_markets_order'];
|
|
35310
35930
|
export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_markets_order_deleted'];
|
|
35311
35931
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
35932
|
+
export const shopifyMarketsOrderVersion = T['io.flow.internal.v0.models.shopify_markets_order_version'];
|
|
35312
35933
|
export const shopifyMarketsOrdersMetrics = T['io.flow.internal.v0.models.shopify_markets_orders_metrics'];
|
|
35934
|
+
export const shopifyMarketsQueuedRecord = T['io.flow.internal.v0.models.shopify_markets_queued_record'];
|
|
35313
35935
|
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
35314
35936
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
35315
35937
|
export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
|
|
@@ -35386,6 +36008,8 @@ export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook
|
|
|
35386
36008
|
export const shopifyWebhookForm = T['io.flow.internal.v0.models.shopify_webhook_form'];
|
|
35387
36009
|
export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
|
|
35388
36010
|
export const shopperFreight = T['io.flow.internal.v0.models.shopper_freight'];
|
|
36011
|
+
export const shopperLine = T['io.flow.internal.v0.models.shopper_line'];
|
|
36012
|
+
export const shopperLines = T['io.flow.internal.v0.models.shopper_lines'];
|
|
35389
36013
|
export const shopperSummary = T['io.flow.internal.v0.models.shopper_summary'];
|
|
35390
36014
|
export const significanceAction = T['io.flow.internal.v0.enums.significance_action'];
|
|
35391
36015
|
export const simpleAccountReference = T['io.flow.internal.v0.models.simple_account_reference'];
|
|
@@ -35528,8 +36152,7 @@ export const transferTransactionDeletedV2 = T['io.flow.internal.v0.models.transf
|
|
|
35528
36152
|
export const transferTransactionUpserted = T['io.flow.internal.v0.models.transfer_transaction_upserted'];
|
|
35529
36153
|
export const transferTransactionUpsertedV2 = T['io.flow.internal.v0.models.transfer_transaction_upserted_v2'];
|
|
35530
36154
|
export const tribe = T['io.flow.internal.v0.models.tribe'];
|
|
35531
|
-
export const
|
|
35532
|
-
export const trueUpSurchargeType = T['io.flow.internal.v0.enums.true_up_surcharge_type'];
|
|
36155
|
+
export const trueupLabelSummary = T['io.flow.internal.v0.models.trueup_label_summary'];
|
|
35533
36156
|
export const trueupTransaction = T['io.flow.internal.v0.models.trueup_transaction'];
|
|
35534
36157
|
export const trueupTransactionType = T['io.flow.internal.v0.enums.trueup_transaction_type'];
|
|
35535
36158
|
export const unassignedMerchantGuid = T['io.flow.internal.v0.models.unassigned_merchant_guid'];
|
|
@@ -35542,10 +36165,6 @@ export const unclassifiedProductsSummary = T['io.flow.internal.v0.models.unclass
|
|
|
35542
36165
|
export const unharmonizedItemsExport = T['io.flow.internal.v0.models.unharmonized_items_export'];
|
|
35543
36166
|
export const unphrasedProductsExport = T['io.flow.internal.v0.models.unphrased_products_export'];
|
|
35544
36167
|
export const ups = T['io.flow.internal.v0.models.ups'];
|
|
35545
|
-
export const upsLicense = T['io.flow.internal.v0.models.ups_license'];
|
|
35546
|
-
export const upsLicenseForm = T['io.flow.internal.v0.models.ups_license_form'];
|
|
35547
|
-
export const upsRegistration = T['io.flow.internal.v0.models.ups_registration'];
|
|
35548
|
-
export const upsRegistrationForm = T['io.flow.internal.v0.models.ups_registration_form'];
|
|
35549
36168
|
export const usdSpotRate = T['io.flow.internal.v0.models.usd_spot_rate'];
|
|
35550
36169
|
export const usdSpotRateDeleted = T['io.flow.internal.v0.models.usd_spot_rate_deleted'];
|
|
35551
36170
|
export const usdSpotRateUpserted = T['io.flow.internal.v0.models.usd_spot_rate_upserted'];
|
|
@@ -35572,6 +36191,4 @@ export const virtualCardTransaction = T['io.flow.internal.v0.models.virtual_card
|
|
|
35572
36191
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
35573
36192
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|
|
35574
36193
|
export const webhook = T['io.flow.internal.v0.models.webhook'];
|
|
35575
|
-
export const weightsDead = T['io.flow.internal.v0.models.weights_dead'];
|
|
35576
|
-
export const weightsDimensional = T['io.flow.internal.v0.models.weights_dimensional'];
|
|
35577
36194
|
export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];
|