@flowio/api-internal-prop-types 9.24.72 → 9.24.73
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 +596 -489
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +596 -489
- package/src/api-internal.js +761 -622
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,7 @@ 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',
|
|
647
643
|
]);
|
|
648
644
|
|
|
649
645
|
T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
@@ -653,6 +649,7 @@ T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exac
|
|
|
653
649
|
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
654
650
|
posted_at: PropTypes.string,
|
|
655
651
|
order: T['io.flow.billing.internal.v0.models.manual_transaction_form_order'],
|
|
652
|
+
original_transaction_id: PropTypes.string,
|
|
656
653
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
657
654
|
});
|
|
658
655
|
|
|
@@ -1179,6 +1176,47 @@ T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
|
1179
1176
|
description: PropTypes.string,
|
|
1180
1177
|
});
|
|
1181
1178
|
|
|
1179
|
+
T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
|
|
1180
|
+
decimal: PropTypes.string.isRequired,
|
|
1181
|
+
group: PropTypes.string.isRequired,
|
|
1182
|
+
});
|
|
1183
|
+
|
|
1184
|
+
T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
|
|
1185
|
+
id: PropTypes.string.isRequired,
|
|
1186
|
+
name: PropTypes.string.isRequired,
|
|
1187
|
+
country: PropTypes.string.isRequired,
|
|
1188
|
+
language: PropTypes.string.isRequired,
|
|
1189
|
+
numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
|
|
1190
|
+
});
|
|
1191
|
+
|
|
1192
|
+
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
1193
|
+
primary: PropTypes.string.isRequired,
|
|
1194
|
+
narrow: PropTypes.string,
|
|
1195
|
+
});
|
|
1196
|
+
|
|
1197
|
+
T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
1198
|
+
name: PropTypes.string.isRequired,
|
|
1199
|
+
iso_4217_3: PropTypes.string.isRequired,
|
|
1200
|
+
number_decimals: PropTypes.number.isRequired,
|
|
1201
|
+
symbols: T['io.flow.reference.v0.models.currency_symbols'],
|
|
1202
|
+
default_locale: PropTypes.string,
|
|
1203
|
+
});
|
|
1204
|
+
|
|
1205
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
1206
|
+
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
1207
|
+
fee: PropTypes.number.isRequired,
|
|
1208
|
+
});
|
|
1209
|
+
|
|
1210
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
|
|
1211
|
+
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
1212
|
+
percentage: PropTypes.number.isRequired,
|
|
1213
|
+
});
|
|
1214
|
+
|
|
1215
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
|
|
1216
|
+
discriminator: PropTypes.oneOf(['flat']).isRequired,
|
|
1217
|
+
placeholder: PropTypes.string,
|
|
1218
|
+
});
|
|
1219
|
+
|
|
1182
1220
|
T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
|
|
1183
1221
|
'base_price',
|
|
1184
1222
|
'discount',
|
|
@@ -1251,90 +1289,6 @@ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
|
|
|
1251
1289
|
T['io.flow.shopify.merchant.config.v0.models.individual'],
|
|
1252
1290
|
]);
|
|
1253
1291
|
|
|
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
1292
|
T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
1339
1293
|
|
|
1340
1294
|
T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -1437,6 +1391,11 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
1437
1391
|
weight: PropTypes.number.isRequired,
|
|
1438
1392
|
});
|
|
1439
1393
|
|
|
1394
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
1395
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
|
|
1396
|
+
percent: PropTypes.number.isRequired,
|
|
1397
|
+
});
|
|
1398
|
+
|
|
1440
1399
|
T['io.flow.ratecard.v0.models.ratecard_region_reference'] = PropTypes.exact({
|
|
1441
1400
|
id: PropTypes.string.isRequired,
|
|
1442
1401
|
});
|
|
@@ -1776,9 +1735,10 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_destination'] = PropTypes.e
|
|
|
1776
1735
|
province: T['io.flow.billing.reporting.csv.v0.models.reporting_province'],
|
|
1777
1736
|
});
|
|
1778
1737
|
|
|
1779
|
-
T['io.flow.billing.reporting.csv.v0.models.
|
|
1780
|
-
|
|
1781
|
-
|
|
1738
|
+
T['io.flow.billing.reporting.csv.v0.models.reporting_debug_missing_subsidies'] = PropTypes.exact({
|
|
1739
|
+
price: PropTypes.bool,
|
|
1740
|
+
tax: PropTypes.bool,
|
|
1741
|
+
duty: PropTypes.bool,
|
|
1782
1742
|
});
|
|
1783
1743
|
|
|
1784
1744
|
T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
@@ -5154,33 +5114,19 @@ T['io.flow.external.paypal.v1.models.token_form'] = PropTypes.exact({
|
|
|
5154
5114
|
grant_type: T['io.flow.external.paypal.v1.enums.grant_type'].isRequired,
|
|
5155
5115
|
});
|
|
5156
5116
|
|
|
5117
|
+
T['io.flow.external.paypal.v1.enums.sale_state'] = PropTypes.oneOf(['pending', 'completed', 'denied', 'partially_refunded', 'refunded']);
|
|
5157
5118
|
T['io.flow.external.paypal.v1.enums.refund_state'] = PropTypes.oneOf(['pending', 'completed', 'cancelled', 'failed']);
|
|
5158
5119
|
|
|
5159
|
-
T['io.flow.external.paypal.v1.models.
|
|
5120
|
+
T['io.flow.external.paypal.v1.models.simple_amount'] = PropTypes.exact({
|
|
5160
5121
|
total: PropTypes.string.isRequired,
|
|
5161
5122
|
currency: PropTypes.string.isRequired,
|
|
5162
5123
|
});
|
|
5163
5124
|
|
|
5164
5125
|
T['io.flow.external.paypal.v1.models.refund_request'] = PropTypes.exact({
|
|
5165
|
-
amount: T['io.flow.external.paypal.v1.models.
|
|
5126
|
+
amount: T['io.flow.external.paypal.v1.models.simple_amount'].isRequired,
|
|
5166
5127
|
invoice_number: PropTypes.string.isRequired,
|
|
5167
5128
|
});
|
|
5168
5129
|
|
|
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
5130
|
T['io.flow.external.paypal.v1.enums.return_mode'] = PropTypes.oneOf(['SHIPPED', 'IN_PERSON']);
|
|
5185
5131
|
|
|
5186
5132
|
T['io.flow.external.paypal.v1.enums.failure_reason'] = PropTypes.oneOf([
|
|
@@ -5676,6 +5622,48 @@ T['io.flow.external.paypal.v1.models.money'] = PropTypes.exact({
|
|
|
5676
5622
|
value: PropTypes.string,
|
|
5677
5623
|
});
|
|
5678
5624
|
|
|
5625
|
+
T['io.flow.external.paypal.v1.models.sale'] = PropTypes.exact({
|
|
5626
|
+
id: PropTypes.string.isRequired,
|
|
5627
|
+
state: T['io.flow.external.paypal.v1.enums.sale_state'].isRequired,
|
|
5628
|
+
parent_payment: PropTypes.string.isRequired,
|
|
5629
|
+
invoice_number: PropTypes.string,
|
|
5630
|
+
amount: T['io.flow.external.paypal.v1.models.simple_amount'],
|
|
5631
|
+
payment_mode: PropTypes.string,
|
|
5632
|
+
reason_code: PropTypes.string,
|
|
5633
|
+
protection_eligibility: PropTypes.string,
|
|
5634
|
+
protection_eligibility_type: PropTypes.string,
|
|
5635
|
+
receipt_id: PropTypes.string,
|
|
5636
|
+
soft_descriptor: PropTypes.string,
|
|
5637
|
+
exchange_rate: PropTypes.string,
|
|
5638
|
+
payment_hold_status: PropTypes.string,
|
|
5639
|
+
payment_hold_reasons: PropTypes.arrayOf(PropTypes.string),
|
|
5640
|
+
transaction_fee: T['io.flow.external.paypal.v1.models.money'],
|
|
5641
|
+
receivable_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
5642
|
+
custom: PropTypes.string,
|
|
5643
|
+
create_time: PropTypes.string,
|
|
5644
|
+
update_time: PropTypes.string,
|
|
5645
|
+
});
|
|
5646
|
+
|
|
5647
|
+
T['io.flow.external.paypal.v1.models.refund'] = PropTypes.exact({
|
|
5648
|
+
id: PropTypes.string.isRequired,
|
|
5649
|
+
amount: T['io.flow.external.paypal.v1.models.simple_amount'],
|
|
5650
|
+
state: T['io.flow.external.paypal.v1.enums.refund_state'].isRequired,
|
|
5651
|
+
sale_id: PropTypes.string.isRequired,
|
|
5652
|
+
invoice_number: PropTypes.string,
|
|
5653
|
+
capture_id: PropTypes.string,
|
|
5654
|
+
parent_payment: PropTypes.string,
|
|
5655
|
+
reason_code: PropTypes.string,
|
|
5656
|
+
refund_reason_code: PropTypes.string,
|
|
5657
|
+
refund_funding_type: PropTypes.string,
|
|
5658
|
+
refund_from_received_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
5659
|
+
refund_from_transaction_fee: T['io.flow.external.paypal.v1.models.money'],
|
|
5660
|
+
total_refunded_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
5661
|
+
refund_to_payer: T['io.flow.external.paypal.v1.models.money'],
|
|
5662
|
+
custom: PropTypes.string,
|
|
5663
|
+
create_time: PropTypes.string,
|
|
5664
|
+
update_time: PropTypes.string,
|
|
5665
|
+
});
|
|
5666
|
+
|
|
5679
5667
|
T['io.flow.external.paypal.v1.models.item_info'] = PropTypes.exact({
|
|
5680
5668
|
item_id: PropTypes.string,
|
|
5681
5669
|
item_description: PropTypes.string,
|
|
@@ -5933,33 +5921,6 @@ T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
|
|
|
5933
5921
|
name: PropTypes.string.isRequired,
|
|
5934
5922
|
});
|
|
5935
5923
|
|
|
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
5924
|
T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
|
|
5964
5925
|
id: PropTypes.string.isRequired,
|
|
5965
5926
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
@@ -6190,6 +6151,7 @@ T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
|
6190
6151
|
network: PropTypes.string,
|
|
6191
6152
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
6192
6153
|
stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
|
|
6154
|
+
mcc: PropTypes.string,
|
|
6193
6155
|
});
|
|
6194
6156
|
|
|
6195
6157
|
T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
|
|
@@ -6994,6 +6956,20 @@ T['io.flow.billing.csv.v0.models.flow_finance_statement_summary'] = PropTypes.ex
|
|
|
6994
6956
|
one_time_adjustments: PropTypes.objectOf(PropTypes.number).isRequired,
|
|
6995
6957
|
});
|
|
6996
6958
|
|
|
6959
|
+
T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
|
|
6960
|
+
iin: PropTypes.string.isRequired,
|
|
6961
|
+
country: PropTypes.string.isRequired,
|
|
6962
|
+
});
|
|
6963
|
+
|
|
6964
|
+
T['io.flow.billing.v0.models.transaction_metadata_original_transaction'] = PropTypes.exact({
|
|
6965
|
+
id: PropTypes.string.isRequired,
|
|
6966
|
+
});
|
|
6967
|
+
|
|
6968
|
+
T['io.flow.billing.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
6969
|
+
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
6970
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
6971
|
+
});
|
|
6972
|
+
|
|
6997
6973
|
T['io.flow.billing.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
|
|
6998
6974
|
|
|
6999
6975
|
T['io.flow.billing.internal.v0.models.account_source'] = PropTypes.exact({
|
|
@@ -7007,8 +6983,16 @@ T['io.flow.billing.internal.v0.models.account_summary'] = PropTypes.exact({
|
|
|
7007
6983
|
source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
|
|
7008
6984
|
});
|
|
7009
6985
|
|
|
7010
|
-
T['io.flow.billing.v0.models.
|
|
7011
|
-
|
|
6986
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifiers'] = PropTypes.exact({
|
|
6987
|
+
shopify_order_id: PropTypes.string,
|
|
6988
|
+
});
|
|
6989
|
+
|
|
6990
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'] = PropTypes.exact({
|
|
6991
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
6992
|
+
});
|
|
6993
|
+
|
|
6994
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'] = PropTypes.exact({
|
|
6995
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
7012
6996
|
});
|
|
7013
6997
|
|
|
7014
6998
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'] = PropTypes.exact({
|
|
@@ -7478,6 +7462,17 @@ T['io.flow.payment.gateway.v0.models.payment_refund'] = PropTypes.exact({
|
|
|
7478
7462
|
status: T['io.flow.payment.gateway.v0.models.payment_refund_status'].isRequired,
|
|
7479
7463
|
});
|
|
7480
7464
|
|
|
7465
|
+
T['io.flow.payment.v0.models.payment_processor_transaction_details_card'] = PropTypes.exact({
|
|
7466
|
+
discriminator: PropTypes.oneOf(['card']).isRequired,
|
|
7467
|
+
transaction_identifier: PropTypes.string,
|
|
7468
|
+
method_type: PropTypes.string,
|
|
7469
|
+
result_status: PropTypes.string,
|
|
7470
|
+
reason_code: PropTypes.string,
|
|
7471
|
+
avs_result_code: PropTypes.string,
|
|
7472
|
+
cvv_result_code: PropTypes.string,
|
|
7473
|
+
threeds_result_code: PropTypes.string,
|
|
7474
|
+
});
|
|
7475
|
+
|
|
7481
7476
|
T['io.flow.payment.v0.models.payment_processor_account_reference'] = PropTypes.exact({
|
|
7482
7477
|
organization: PropTypes.string.isRequired,
|
|
7483
7478
|
key: PropTypes.string.isRequired,
|
|
@@ -8137,32 +8132,6 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
8137
8132
|
enable_fee_reversals: PropTypes.bool.isRequired,
|
|
8138
8133
|
});
|
|
8139
8134
|
|
|
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
8135
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
8167
8136
|
'adjustment',
|
|
8168
8137
|
'vat_deminimis',
|
|
@@ -8517,6 +8486,11 @@ T['io.flow.internal.v0.unions.spot_rate_metadata'] = PropTypes.oneOfType([
|
|
|
8517
8486
|
T['io.flow.internal.v0.models.spot_rate_metadata_rate'],
|
|
8518
8487
|
]);
|
|
8519
8488
|
|
|
8489
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'] = PropTypes.exact({
|
|
8490
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
8491
|
+
order_combined_shipment_id: PropTypes.string.isRequired,
|
|
8492
|
+
});
|
|
8493
|
+
|
|
8520
8494
|
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'] = PropTypes.exact({
|
|
8521
8495
|
discriminator: PropTypes.oneOf(['order_cancellation']).isRequired,
|
|
8522
8496
|
order_cancellation_id: PropTypes.string.isRequired,
|
|
@@ -8542,6 +8516,7 @@ T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
|
8542
8516
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
8543
8517
|
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
8544
8518
|
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
8519
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
8545
8520
|
]);
|
|
8546
8521
|
|
|
8547
8522
|
T['io.flow.internal.v0.models.online_authorization_completed'] = PropTypes.exact({
|
|
@@ -9272,6 +9247,14 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
9272
9247
|
id: PropTypes.string.isRequired,
|
|
9273
9248
|
});
|
|
9274
9249
|
|
|
9250
|
+
T['io.flow.internal.v0.models.channel_order_summary_deleted'] = PropTypes.exact({
|
|
9251
|
+
discriminator: PropTypes.oneOf(['channel_order_summary_deleted']).isRequired,
|
|
9252
|
+
event_id: PropTypes.string.isRequired,
|
|
9253
|
+
timestamp: PropTypes.string.isRequired,
|
|
9254
|
+
channel_id: PropTypes.string.isRequired,
|
|
9255
|
+
id: PropTypes.string.isRequired,
|
|
9256
|
+
});
|
|
9257
|
+
|
|
9275
9258
|
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'] = PropTypes.exact({
|
|
9276
9259
|
discriminator: PropTypes.oneOf(['shopify_markets_metrics_deleted']).isRequired,
|
|
9277
9260
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9615,6 +9598,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9615
9598
|
id: PropTypes.string.isRequired,
|
|
9616
9599
|
});
|
|
9617
9600
|
|
|
9601
|
+
T['io.flow.internal.v0.models.label_invoice_request_deleted'] = PropTypes.exact({
|
|
9602
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_deleted']).isRequired,
|
|
9603
|
+
event_id: PropTypes.string.isRequired,
|
|
9604
|
+
timestamp: PropTypes.string.isRequired,
|
|
9605
|
+
organization: PropTypes.string.isRequired,
|
|
9606
|
+
id: PropTypes.string.isRequired,
|
|
9607
|
+
});
|
|
9608
|
+
|
|
9618
9609
|
T['io.flow.internal.v0.models.billing_csv_transaction_deleted'] = PropTypes.exact({
|
|
9619
9610
|
discriminator: PropTypes.oneOf(['billing_csv_transaction_deleted']).isRequired,
|
|
9620
9611
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9908,14 +9899,6 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
9908
9899
|
id: PropTypes.string.isRequired,
|
|
9909
9900
|
});
|
|
9910
9901
|
|
|
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
9902
|
T['io.flow.internal.v0.models.sales_record_deleted'] = PropTypes.exact({
|
|
9920
9903
|
discriminator: PropTypes.oneOf(['sales_record_deleted']).isRequired,
|
|
9921
9904
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10044,6 +10027,13 @@ T['io.flow.internal.v0.models.account_deleted_v2'] = PropTypes.exact({
|
|
|
10044
10027
|
id: PropTypes.string.isRequired,
|
|
10045
10028
|
});
|
|
10046
10029
|
|
|
10030
|
+
T['io.flow.internal.v0.models.merchant_deleted'] = PropTypes.exact({
|
|
10031
|
+
discriminator: PropTypes.oneOf(['merchant_deleted']).isRequired,
|
|
10032
|
+
event_id: PropTypes.string.isRequired,
|
|
10033
|
+
timestamp: PropTypes.string.isRequired,
|
|
10034
|
+
id: PropTypes.string.isRequired,
|
|
10035
|
+
});
|
|
10036
|
+
|
|
10047
10037
|
T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
10048
10038
|
discriminator: PropTypes.oneOf(['index_assignment_deleted']).isRequired,
|
|
10049
10039
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10711,6 +10701,12 @@ T['io.flow.internal.v0.models.simplified_taxonomy_category'] = PropTypes.exact({
|
|
|
10711
10701
|
children: PropTypes.arrayOf(T['io.flow.internal.v0.unions.simplified_classification_taxonomy']).isRequired,
|
|
10712
10702
|
});
|
|
10713
10703
|
|
|
10704
|
+
T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact({
|
|
10705
|
+
tax: PropTypes.number.isRequired,
|
|
10706
|
+
duty: PropTypes.number.isRequired,
|
|
10707
|
+
total: PropTypes.number.isRequired,
|
|
10708
|
+
});
|
|
10709
|
+
|
|
10714
10710
|
T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
|
|
10715
10711
|
'carts/create',
|
|
10716
10712
|
'carts/update',
|
|
@@ -11241,6 +11237,10 @@ T['io.flow.internal.v0.models.search_experience_summary'] = PropTypes.exact({
|
|
|
11241
11237
|
status: T['io.flow.experience.v0.enums.experience_status'].isRequired,
|
|
11242
11238
|
});
|
|
11243
11239
|
|
|
11240
|
+
T['io.flow.payment.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType(
|
|
11241
|
+
[T['io.flow.payment.v0.models.payment_processor_transaction_details_card']],
|
|
11242
|
+
);
|
|
11243
|
+
|
|
11244
11244
|
T['io.flow.payment.v0.models.payment_processor_identifier'] = PropTypes.exact({
|
|
11245
11245
|
id: PropTypes.string.isRequired,
|
|
11246
11246
|
label: PropTypes.string.isRequired,
|
|
@@ -11258,6 +11258,7 @@ T['io.flow.payment.v0.models.payment_processor'] = PropTypes.exact({
|
|
|
11258
11258
|
processor: PropTypes.string.isRequired,
|
|
11259
11259
|
operation_identifier: T['io.flow.payment.v0.models.payment_processor_identifier'],
|
|
11260
11260
|
account: T['io.flow.payment.v0.models.payment_processor_account'],
|
|
11261
|
+
transaction_details: T['io.flow.payment.v0.unions.payment_processor_transaction_details'],
|
|
11261
11262
|
});
|
|
11262
11263
|
|
|
11263
11264
|
T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
|
|
@@ -11267,7 +11268,10 @@ T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfTyp
|
|
|
11267
11268
|
|
|
11268
11269
|
T['io.flow.billing.reporting.csv.v0.models.reporting_debug'] = PropTypes.exact({
|
|
11269
11270
|
console_order_link: PropTypes.string.isRequired,
|
|
11270
|
-
|
|
11271
|
+
allocation_order_totals_delta: PropTypes.number,
|
|
11272
|
+
allocation_order_item_discount_delta: PropTypes.number,
|
|
11273
|
+
missing_item_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_debug_missing_subsidies'],
|
|
11274
|
+
missing_shipping_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_debug_missing_subsidies'],
|
|
11271
11275
|
});
|
|
11272
11276
|
|
|
11273
11277
|
T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'] = PropTypes.exact({
|
|
@@ -11275,6 +11279,14 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'] = PropType
|
|
|
11275
11279
|
rate: T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance_rate'].isRequired,
|
|
11276
11280
|
});
|
|
11277
11281
|
|
|
11282
|
+
T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_transactions'] = PropTypes.exact({
|
|
11283
|
+
adjustment: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11284
|
+
reversal: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11285
|
+
tax: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11286
|
+
duty: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11287
|
+
freight: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11288
|
+
});
|
|
11289
|
+
|
|
11278
11290
|
T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
11279
11291
|
duty_guarantee: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
11280
11292
|
mor: T['io.flow.billing.reporting.csv.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -11369,6 +11381,7 @@ T['io.flow.billing.reporting.csv.v0.models.sales_record'] = PropTypes.exact({
|
|
|
11369
11381
|
marked_as_final: T['io.flow.billing.reporting.csv.v0.models.marked_as_final'].isRequired,
|
|
11370
11382
|
merchant_subsidies: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_subsidies'].isRequired,
|
|
11371
11383
|
merchant_fees: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_fees'].isRequired,
|
|
11384
|
+
merchant_transactions: T['io.flow.billing.reporting.csv.v0.models.reporting_merchant_transactions'].isRequired,
|
|
11372
11385
|
vat_remittance: T['io.flow.billing.reporting.csv.v0.models.reporting_vat_remittance'].isRequired,
|
|
11373
11386
|
debug: T['io.flow.billing.reporting.csv.v0.models.reporting_debug'].isRequired,
|
|
11374
11387
|
});
|
|
@@ -11442,16 +11455,24 @@ T['io.flow.internal.v0.models.restriction_item_review_decision_form'] = PropType
|
|
|
11442
11455
|
decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
|
|
11443
11456
|
});
|
|
11444
11457
|
|
|
11458
|
+
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf(['sales_record', 'trueup_overview']);
|
|
11459
|
+
|
|
11460
|
+
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
11461
|
+
from: PropTypes.string.isRequired,
|
|
11462
|
+
to: PropTypes.string.isRequired,
|
|
11463
|
+
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
11464
|
+
});
|
|
11465
|
+
|
|
11445
11466
|
T['io.flow.internal.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
|
|
11446
11467
|
|
|
11447
11468
|
T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
11448
|
-
|
|
11469
|
+
id: PropTypes.string.isRequired,
|
|
11449
11470
|
status: T['io.flow.internal.v0.enums.report_status'].isRequired,
|
|
11471
|
+
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
11450
11472
|
from: PropTypes.string.isRequired,
|
|
11451
11473
|
to: PropTypes.string.isRequired,
|
|
11452
|
-
|
|
11453
|
-
|
|
11454
|
-
refunds_url: PropTypes.string,
|
|
11474
|
+
url: PropTypes.string,
|
|
11475
|
+
processed_at: PropTypes.string,
|
|
11455
11476
|
});
|
|
11456
11477
|
|
|
11457
11478
|
T['io.flow.internal.v0.enums.redirect_reason'] = PropTypes.oneOf(['three_d_secure']);
|
|
@@ -11593,6 +11614,7 @@ T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
|
11593
11614
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
11594
11615
|
id: PropTypes.string,
|
|
11595
11616
|
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
11617
|
+
weight_break: PropTypes.number,
|
|
11596
11618
|
});
|
|
11597
11619
|
|
|
11598
11620
|
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
@@ -12149,6 +12171,7 @@ T['io.flow.internal.v0.models.organization_deactivation'] = PropTypes.exact({
|
|
|
12149
12171
|
deactivate_at: PropTypes.string.isRequired,
|
|
12150
12172
|
created_at: PropTypes.string.isRequired,
|
|
12151
12173
|
reason: PropTypes.string,
|
|
12174
|
+
processed_at: PropTypes.string,
|
|
12152
12175
|
});
|
|
12153
12176
|
|
|
12154
12177
|
T['io.flow.internal.v0.models.organization_deactivation_upserted'] = PropTypes.exact({
|
|
@@ -12497,6 +12520,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
12497
12520
|
T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
12498
12521
|
organization_id: PropTypes.string.isRequired,
|
|
12499
12522
|
shop_name: PropTypes.string,
|
|
12523
|
+
shop_id: PropTypes.string,
|
|
12500
12524
|
legal_name: PropTypes.string.isRequired,
|
|
12501
12525
|
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
12502
12526
|
});
|
|
@@ -12545,6 +12569,22 @@ T['io.flow.internal.v0.models.organization_status_change_upserted'] = PropTypes.
|
|
|
12545
12569
|
organization_status_change: T['io.flow.internal.v0.models.organization_status_change'].isRequired,
|
|
12546
12570
|
});
|
|
12547
12571
|
|
|
12572
|
+
T['io.flow.internal.v0.models.account_reference'] = PropTypes.exact({
|
|
12573
|
+
id: PropTypes.string.isRequired,
|
|
12574
|
+
});
|
|
12575
|
+
|
|
12576
|
+
T['io.flow.internal.v0.models.merchant'] = PropTypes.exact({
|
|
12577
|
+
id: PropTypes.string.isRequired,
|
|
12578
|
+
account: T['io.flow.internal.v0.models.account_reference'].isRequired,
|
|
12579
|
+
});
|
|
12580
|
+
|
|
12581
|
+
T['io.flow.internal.v0.models.merchant_upserted'] = PropTypes.exact({
|
|
12582
|
+
discriminator: PropTypes.oneOf(['merchant_upserted']).isRequired,
|
|
12583
|
+
event_id: PropTypes.string.isRequired,
|
|
12584
|
+
timestamp: PropTypes.string.isRequired,
|
|
12585
|
+
merchant: T['io.flow.internal.v0.models.merchant'].isRequired,
|
|
12586
|
+
});
|
|
12587
|
+
|
|
12548
12588
|
T['io.flow.shopify.markets.v0.models.shopify_order_metafield'] = PropTypes.exact({
|
|
12549
12589
|
id: PropTypes.number.isRequired,
|
|
12550
12590
|
key: PropTypes.string.isRequired,
|
|
@@ -12582,7 +12622,7 @@ T['io.flow.shopify.markets.v0.models.response_shopify_transactions'] = PropTypes
|
|
|
12582
12622
|
});
|
|
12583
12623
|
|
|
12584
12624
|
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']);
|
|
12625
|
+
T['io.flow.shopify.markets.v0.enums.shopify_order_processing_method_type'] = PropTypes.oneOf(['checkout', 'direct', 'manual', 'offsite', 'express', 'deferred_payment']);
|
|
12586
12626
|
|
|
12587
12627
|
T['io.flow.shopify.markets.v0.models.shopify_order_attribute'] = PropTypes.exact({
|
|
12588
12628
|
name: PropTypes.string.isRequired,
|
|
@@ -13169,6 +13209,7 @@ T['io.flow.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
|
13169
13209
|
'platform_fee',
|
|
13170
13210
|
'shipping_true_up',
|
|
13171
13211
|
'tax_credit',
|
|
13212
|
+
'carrier_credit',
|
|
13172
13213
|
]);
|
|
13173
13214
|
|
|
13174
13215
|
T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
@@ -13178,6 +13219,7 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
|
13178
13219
|
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
13179
13220
|
posted_at: PropTypes.string,
|
|
13180
13221
|
order: T['io.flow.internal.v0.models.manual_transaction_form_order'],
|
|
13222
|
+
original_transaction_id: PropTypes.string,
|
|
13181
13223
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
13182
13224
|
});
|
|
13183
13225
|
|
|
@@ -13470,39 +13512,6 @@ T['io.flow.internal.v0.models.taxonomy_category'] = PropTypes.exact({
|
|
|
13470
13512
|
children: PropTypes.arrayOf(T['io.flow.internal.v0.unions.classification_taxonomy']).isRequired,
|
|
13471
13513
|
});
|
|
13472
13514
|
|
|
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
13515
|
T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
13507
13516
|
zpl: PropTypes.string,
|
|
13508
13517
|
zpl_url: PropTypes.string,
|
|
@@ -13539,6 +13548,11 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
13539
13548
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
13540
13549
|
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
13541
13550
|
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
13551
|
+
carrier: T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
13552
|
+
});
|
|
13553
|
+
|
|
13554
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
13555
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
13542
13556
|
});
|
|
13543
13557
|
|
|
13544
13558
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
@@ -13563,39 +13577,23 @@ T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
|
13563
13577
|
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
13564
13578
|
});
|
|
13565
13579
|
|
|
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
13580
|
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
13578
13581
|
shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
|
|
13579
13582
|
name: PropTypes.string.isRequired,
|
|
13580
13583
|
});
|
|
13581
13584
|
|
|
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
13585
|
T['io.flow.internal.v0.models.metadata_ratecard'] = PropTypes.exact({
|
|
13588
13586
|
id: PropTypes.string.isRequired,
|
|
13589
13587
|
proposition: T['io.flow.internal.v0.models.metadata_proposition'].isRequired,
|
|
13590
13588
|
});
|
|
13591
13589
|
|
|
13592
|
-
T['io.flow.
|
|
13593
|
-
T['io.flow.
|
|
13594
|
-
T['io.flow.
|
|
13595
|
-
T['io.flow.
|
|
13590
|
+
T['io.flow.trueup.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
13591
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_flat'],
|
|
13592
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_percentage'],
|
|
13593
|
+
T['io.flow.trueup.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
13596
13594
|
]);
|
|
13597
13595
|
|
|
13598
|
-
T['io.flow.
|
|
13596
|
+
T['io.flow.trueup.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
13599
13597
|
'fuel',
|
|
13600
13598
|
'remote_area',
|
|
13601
13599
|
'oversize',
|
|
@@ -13605,17 +13603,15 @@ T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
|
13605
13603
|
'address_correction',
|
|
13606
13604
|
]);
|
|
13607
13605
|
|
|
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,
|
|
13606
|
+
T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
13607
|
+
amount: PropTypes.number.isRequired,
|
|
13608
|
+
type: T['io.flow.trueup.v0.enums.trueup_surcharge_type'].isRequired,
|
|
13609
|
+
percentage: PropTypes.number,
|
|
13610
|
+
per_weight_unit: PropTypes.number,
|
|
13617
13611
|
});
|
|
13618
13612
|
|
|
13613
|
+
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
13614
|
+
|
|
13619
13615
|
T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary_cost'] = PropTypes.exact({
|
|
13620
13616
|
amount: PropTypes.number.isRequired,
|
|
13621
13617
|
currency: PropTypes.string.isRequired,
|
|
@@ -13633,28 +13629,15 @@ T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_su
|
|
|
13633
13629
|
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
13634
13630
|
});
|
|
13635
13631
|
|
|
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
13632
|
T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
|
|
13642
13633
|
country: PropTypes.string.isRequired,
|
|
13634
|
+
postal: PropTypes.string,
|
|
13643
13635
|
});
|
|
13644
13636
|
|
|
13645
|
-
T['io.flow.
|
|
13637
|
+
T['io.flow.trueup.v0.models.label_surcharge'] = PropTypes.exact({
|
|
13646
13638
|
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,
|
|
13639
|
+
type: T['io.flow.trueup.v0.enums.trueup_surcharge_type'].isRequired,
|
|
13640
|
+
detail: T['io.flow.trueup.v0.unions.label_surcharge_detail'].isRequired,
|
|
13658
13641
|
});
|
|
13659
13642
|
|
|
13660
13643
|
T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
|
|
@@ -13726,6 +13709,24 @@ T['io.flow.internal.v0.models.klarna_authorization_parameters'] = PropTypes.exac
|
|
|
13726
13709
|
});
|
|
13727
13710
|
|
|
13728
13711
|
T['io.flow.internal.v0.unions.inline_authorization_parameters'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.klarna_authorization_parameters']]);
|
|
13712
|
+
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
13713
|
+
|
|
13714
|
+
T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
|
|
13715
|
+
number: PropTypes.string.isRequired,
|
|
13716
|
+
fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
|
|
13717
|
+
});
|
|
13718
|
+
|
|
13719
|
+
T['io.flow.internal.v0.models.shopper_line'] = PropTypes.exact({
|
|
13720
|
+
item: T['io.flow.internal.v0.models.item_summary'].isRequired,
|
|
13721
|
+
quantity: PropTypes.number.isRequired,
|
|
13722
|
+
unit_price: PropTypes.number.isRequired,
|
|
13723
|
+
price: PropTypes.number.isRequired,
|
|
13724
|
+
discount: PropTypes.number.isRequired,
|
|
13725
|
+
tax: PropTypes.number.isRequired,
|
|
13726
|
+
duty: PropTypes.number.isRequired,
|
|
13727
|
+
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
13728
|
+
total: PropTypes.number.isRequired,
|
|
13729
|
+
});
|
|
13729
13730
|
|
|
13730
13731
|
T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
13731
13732
|
id: PropTypes.string.isRequired,
|
|
@@ -13864,6 +13865,11 @@ T['io.flow.billing.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
|
13864
13865
|
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
13865
13866
|
});
|
|
13866
13867
|
|
|
13868
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel'] = PropTypes.exact({
|
|
13869
|
+
method: PropTypes.string.isRequired,
|
|
13870
|
+
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
13871
|
+
});
|
|
13872
|
+
|
|
13867
13873
|
T['io.flow.payment.v0.models.card_confirmation_summary'] = PropTypes.exact({
|
|
13868
13874
|
discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
|
|
13869
13875
|
type: T['io.flow.payment.v0.enums.card_type'],
|
|
@@ -14424,13 +14430,58 @@ T['io.flow.internal.v0.models.fx_revenue_recognition_organization'] = PropTypes.
|
|
|
14424
14430
|
id: PropTypes.string.isRequired,
|
|
14425
14431
|
});
|
|
14426
14432
|
|
|
14433
|
+
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'] = PropTypes.exact({
|
|
14434
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
14435
|
+
id: PropTypes.string.isRequired,
|
|
14436
|
+
carrier_id: PropTypes.string,
|
|
14437
|
+
carrier_service_id: PropTypes.string,
|
|
14438
|
+
carrier_tracking_number: PropTypes.string,
|
|
14439
|
+
label_id: PropTypes.string,
|
|
14440
|
+
created_at: PropTypes.string,
|
|
14441
|
+
});
|
|
14442
|
+
|
|
14443
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
14444
|
+
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
14445
|
+
id: PropTypes.string.isRequired,
|
|
14446
|
+
carrier_id: PropTypes.string,
|
|
14447
|
+
carrier_service_id: PropTypes.string,
|
|
14448
|
+
carrier_tracking_number: PropTypes.string,
|
|
14449
|
+
label_id: PropTypes.string,
|
|
14450
|
+
created_at: PropTypes.string,
|
|
14451
|
+
});
|
|
14452
|
+
|
|
14453
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
14454
|
+
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
14455
|
+
id: PropTypes.string.isRequired,
|
|
14456
|
+
carrier_id: PropTypes.string,
|
|
14457
|
+
carrier_service_id: PropTypes.string,
|
|
14458
|
+
carrier_tracking_number: PropTypes.string,
|
|
14459
|
+
label_id: PropTypes.string,
|
|
14460
|
+
created_at: PropTypes.string,
|
|
14461
|
+
});
|
|
14462
|
+
|
|
14463
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
14464
|
+
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
14465
|
+
id: PropTypes.string.isRequired,
|
|
14466
|
+
carrier_id: PropTypes.string,
|
|
14467
|
+
carrier_service_id: PropTypes.string,
|
|
14468
|
+
carrier_tracking_number: PropTypes.string,
|
|
14469
|
+
label_id: PropTypes.string,
|
|
14470
|
+
created_at: PropTypes.string,
|
|
14471
|
+
});
|
|
14472
|
+
|
|
14473
|
+
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
14474
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
14475
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
14476
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
14477
|
+
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
14478
|
+
]);
|
|
14479
|
+
|
|
14427
14480
|
T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.exact({
|
|
14428
14481
|
status: T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'].isRequired,
|
|
14429
14482
|
quantity: PropTypes.number.isRequired,
|
|
14430
14483
|
});
|
|
14431
14484
|
|
|
14432
|
-
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
14433
|
-
|
|
14434
14485
|
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
14435
14486
|
item_number: PropTypes.string.isRequired,
|
|
14436
14487
|
line_number: PropTypes.number.isRequired,
|
|
@@ -14476,31 +14527,14 @@ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropType
|
|
|
14476
14527
|
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
14477
14528
|
});
|
|
14478
14529
|
|
|
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,
|
|
14530
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_time'] = PropTypes.exact({
|
|
14531
|
+
discriminator: PropTypes.oneOf(['by_time']).isRequired,
|
|
14532
|
+
placeholder: PropTypes.string,
|
|
14495
14533
|
});
|
|
14496
14534
|
|
|
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,
|
|
14535
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_proof'] = PropTypes.exact({
|
|
14536
|
+
discriminator: PropTypes.oneOf(['by_proof']).isRequired,
|
|
14537
|
+
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
14504
14538
|
});
|
|
14505
14539
|
|
|
14506
14540
|
T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
@@ -14523,6 +14557,15 @@ T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
|
14523
14557
|
total: PropTypes.number.isRequired,
|
|
14524
14558
|
});
|
|
14525
14559
|
|
|
14560
|
+
T['io.flow.internal.v0.models.shopper_freight'] = PropTypes.exact({
|
|
14561
|
+
price: PropTypes.number.isRequired,
|
|
14562
|
+
discount: PropTypes.number.isRequired,
|
|
14563
|
+
tax: PropTypes.number.isRequired,
|
|
14564
|
+
duty: PropTypes.number.isRequired,
|
|
14565
|
+
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
14566
|
+
total: PropTypes.number.isRequired,
|
|
14567
|
+
});
|
|
14568
|
+
|
|
14526
14569
|
T['io.flow.internal.v0.models.shopper_fees'] = PropTypes.exact({
|
|
14527
14570
|
fuel: PropTypes.number.isRequired,
|
|
14528
14571
|
remote_area: PropTypes.number.isRequired,
|
|
@@ -14537,59 +14580,36 @@ T['io.flow.internal.v0.models.merchant_subsidies'] = PropTypes.exact({
|
|
|
14537
14580
|
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
14538
14581
|
tax: PropTypes.number.isRequired,
|
|
14539
14582
|
duty: PropTypes.number.isRequired,
|
|
14540
|
-
freight: PropTypes.number.isRequired,
|
|
14541
14583
|
total: PropTypes.number.isRequired,
|
|
14542
14584
|
});
|
|
14543
14585
|
|
|
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,
|
|
14586
|
+
T['io.flow.internal.v0.models.shopper_lines'] = PropTypes.exact({
|
|
14587
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopper_line']).isRequired,
|
|
14588
|
+
total: PropTypes.number.isRequired,
|
|
14560
14589
|
});
|
|
14561
14590
|
|
|
14562
14591
|
T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
14563
14592
|
vat_registration_number: PropTypes.string.isRequired,
|
|
14564
14593
|
});
|
|
14565
14594
|
|
|
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'],
|
|
14595
|
+
T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
14596
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
|
|
14597
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
14570
14598
|
]);
|
|
14571
14599
|
|
|
14572
14600
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
14573
14601
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
14574
14602
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
14575
14603
|
transactions: T['io.flow.internal.v0.models.merchant_transactions'].isRequired,
|
|
14576
|
-
|
|
14604
|
+
total: PropTypes.number.isRequired,
|
|
14577
14605
|
});
|
|
14578
14606
|
|
|
14579
14607
|
T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
|
|
14608
|
+
fulfilled: T['io.flow.internal.v0.models.shopper_lines'].isRequired,
|
|
14580
14609
|
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
14581
14610
|
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,
|
|
14611
|
+
order_discount: PropTypes.number.isRequired,
|
|
14612
|
+
total: PropTypes.number.isRequired,
|
|
14593
14613
|
});
|
|
14594
14614
|
|
|
14595
14615
|
T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
@@ -14611,6 +14631,17 @@ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
|
14611
14631
|
'pound',
|
|
14612
14632
|
]);
|
|
14613
14633
|
|
|
14634
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'] = PropTypes.exact({
|
|
14635
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_by_weight']).isRequired,
|
|
14636
|
+
amount: PropTypes.number.isRequired,
|
|
14637
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
14638
|
+
});
|
|
14639
|
+
|
|
14640
|
+
T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
|
|
14641
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'],
|
|
14642
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'],
|
|
14643
|
+
]);
|
|
14644
|
+
|
|
14614
14645
|
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
14615
14646
|
value: PropTypes.string.isRequired,
|
|
14616
14647
|
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
@@ -15906,6 +15937,14 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
|
|
|
15906
15937
|
label_tracking_summary_id: PropTypes.string,
|
|
15907
15938
|
shipping_notification_id: PropTypes.string,
|
|
15908
15939
|
external_fulfillment_proof_id: PropTypes.string,
|
|
15940
|
+
order_cancellation_id: PropTypes.string,
|
|
15941
|
+
});
|
|
15942
|
+
|
|
15943
|
+
T['io.flow.internal.v0.models.debug_fulfillment_delta'] = PropTypes.exact({
|
|
15944
|
+
posted_transactions_net: PropTypes.number.isRequired,
|
|
15945
|
+
fulfillments_net: PropTypes.number.isRequired,
|
|
15946
|
+
delta_amount: PropTypes.number.isRequired,
|
|
15947
|
+
delta_percent: PropTypes.number.isRequired,
|
|
15909
15948
|
});
|
|
15910
15949
|
|
|
15911
15950
|
T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
@@ -15913,11 +15952,25 @@ T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
|
15913
15952
|
description: PropTypes.string,
|
|
15914
15953
|
});
|
|
15915
15954
|
|
|
15955
|
+
T['io.flow.billing.v0.models.billing_channel_payment_request_reference'] = PropTypes.exact({
|
|
15956
|
+
id: PropTypes.string.isRequired,
|
|
15957
|
+
reference: PropTypes.string,
|
|
15958
|
+
});
|
|
15959
|
+
|
|
15960
|
+
T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
|
|
15961
|
+
organization: T['io.flow.billing.v0.models.billing_channel_organization_summary'].isRequired,
|
|
15962
|
+
number: PropTypes.string.isRequired,
|
|
15963
|
+
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
15964
|
+
});
|
|
15965
|
+
|
|
15916
15966
|
T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
|
|
15917
15967
|
id: PropTypes.string.isRequired,
|
|
15918
15968
|
});
|
|
15919
15969
|
|
|
15920
15970
|
T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
|
|
15971
|
+
accounting_transactions: PropTypes.arrayOf(PropTypes.object),
|
|
15972
|
+
fulfillments: PropTypes.arrayOf(PropTypes.object),
|
|
15973
|
+
fulfillment_delta: T['io.flow.internal.v0.models.debug_fulfillment_delta'],
|
|
15921
15974
|
sales_records: PropTypes.arrayOf(PropTypes.object),
|
|
15922
15975
|
refund_records: PropTypes.arrayOf(PropTypes.object),
|
|
15923
15976
|
});
|
|
@@ -15949,6 +16002,14 @@ T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
|
15949
16002
|
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
15950
16003
|
});
|
|
15951
16004
|
|
|
16005
|
+
T['io.flow.internal.v0.enums.debug_accounting_transaction_type'] = PropTypes.oneOf(['fulfillment']);
|
|
16006
|
+
|
|
16007
|
+
T['io.flow.internal.v0.models.debug_accounting_transaction'] = PropTypes.exact({
|
|
16008
|
+
type: T['io.flow.internal.v0.enums.debug_accounting_transaction_type'].isRequired,
|
|
16009
|
+
type_id: PropTypes.string.isRequired,
|
|
16010
|
+
transaction_id: PropTypes.string.isRequired,
|
|
16011
|
+
});
|
|
16012
|
+
|
|
15952
16013
|
T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
15953
16014
|
'adjustment_transactions_count',
|
|
15954
16015
|
'adjustment_transactions_total',
|
|
@@ -20316,6 +20377,13 @@ T['io.flow.internal.v0.models.shopify_channel_organization_tokens'] = PropTypes.
|
|
|
20316
20377
|
service: T['io.flow.internal.v0.enums.shopify_service'].isRequired,
|
|
20317
20378
|
});
|
|
20318
20379
|
|
|
20380
|
+
T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
20381
|
+
|
|
20382
|
+
T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'] = PropTypes.exact({
|
|
20383
|
+
fulfillment_status: T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'].isRequired,
|
|
20384
|
+
timestamp: PropTypes.string.isRequired,
|
|
20385
|
+
});
|
|
20386
|
+
|
|
20319
20387
|
T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
|
|
20320
20388
|
'unsupported_origin_country',
|
|
20321
20389
|
'unsupported_destination_country',
|
|
@@ -20355,6 +20423,24 @@ T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact(
|
|
|
20355
20423
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
20356
20424
|
});
|
|
20357
20425
|
|
|
20426
|
+
T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
|
|
20427
|
+
id: PropTypes.string.isRequired,
|
|
20428
|
+
name: PropTypes.string.isRequired,
|
|
20429
|
+
tracking_url: PropTypes.string.isRequired,
|
|
20430
|
+
});
|
|
20431
|
+
|
|
20432
|
+
T['io.flow.reference.v0.models.carrier_service'] = PropTypes.exact({
|
|
20433
|
+
id: PropTypes.string.isRequired,
|
|
20434
|
+
carrier: T['io.flow.reference.v0.models.carrier'].isRequired,
|
|
20435
|
+
name: PropTypes.string.isRequired,
|
|
20436
|
+
});
|
|
20437
|
+
|
|
20438
|
+
T['io.flow.experience.v0.models.order_service_change'] = PropTypes.exact({
|
|
20439
|
+
id: PropTypes.string.isRequired,
|
|
20440
|
+
from: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
20441
|
+
to: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
20442
|
+
});
|
|
20443
|
+
|
|
20358
20444
|
T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
|
|
20359
20445
|
|
|
20360
20446
|
T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
|
|
@@ -20972,6 +21058,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
20972
21058
|
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
20973
21059
|
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
20974
21060
|
order_created_at: PropTypes.string,
|
|
21061
|
+
order_updated_at: PropTypes.string,
|
|
20975
21062
|
});
|
|
20976
21063
|
|
|
20977
21064
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -21100,82 +21187,51 @@ T['io.flow.billing.v0.models.trueup_label_units'] = PropTypes.exact({
|
|
|
21100
21187
|
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
21101
21188
|
});
|
|
21102
21189
|
|
|
21190
|
+
T['io.flow.trueup.v0.models.label_units'] = PropTypes.exact({
|
|
21191
|
+
currency: PropTypes.string.isRequired,
|
|
21192
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
21193
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
21194
|
+
});
|
|
21195
|
+
|
|
21196
|
+
T['io.flow.trueup.v0.models.dimensional_weight'] = PropTypes.exact({
|
|
21197
|
+
weight: PropTypes.number.isRequired,
|
|
21198
|
+
length: PropTypes.number,
|
|
21199
|
+
width: PropTypes.number,
|
|
21200
|
+
height: PropTypes.number,
|
|
21201
|
+
});
|
|
21202
|
+
|
|
21203
|
+
T['io.flow.trueup.v0.models.dead_weight'] = PropTypes.exact({
|
|
21204
|
+
weight: PropTypes.number.isRequired,
|
|
21205
|
+
});
|
|
21206
|
+
|
|
21103
21207
|
T['io.flow.billing.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
21104
21208
|
source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
|
|
21105
21209
|
units: T['io.flow.billing.v0.models.trueup_label_units'].isRequired,
|
|
21106
21210
|
base: T['io.flow.billing.v0.models.trueup_label_base'].isRequired,
|
|
21107
21211
|
surcharges: PropTypes.arrayOf(T['io.flow.billing.v0.models.trueup_label_surcharge']).isRequired,
|
|
21108
21212
|
total: PropTypes.number.isRequired,
|
|
21213
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
21214
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
21109
21215
|
});
|
|
21110
21216
|
|
|
21111
21217
|
T['io.flow.billing.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
21112
21218
|
discriminator: PropTypes.oneOf(['trueup']).isRequired,
|
|
21113
|
-
original: T['io.flow.billing.v0.models.
|
|
21219
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
21114
21220
|
estimate: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
21115
21221
|
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
21116
21222
|
});
|
|
21117
21223
|
|
|
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'],
|
|
21224
|
+
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
21225
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
|
|
21226
|
+
T['io.flow.billing.v0.models.transaction_metadata_channel'],
|
|
21227
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup'],
|
|
21228
|
+
T['io.flow.billing.v0.models.transaction_metadata_manual'],
|
|
21150
21229
|
]);
|
|
21151
21230
|
|
|
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,
|
|
21231
|
+
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
21232
|
+
ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
|
|
21233
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
21234
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
21179
21235
|
});
|
|
21180
21236
|
|
|
21181
21237
|
T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
@@ -21188,28 +21244,15 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
21188
21244
|
address_correction: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
21189
21245
|
});
|
|
21190
21246
|
|
|
21191
|
-
T['io.flow.
|
|
21247
|
+
T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
21192
21248
|
amount: PropTypes.number.isRequired,
|
|
21193
21249
|
weight: PropTypes.number.isRequired,
|
|
21194
21250
|
});
|
|
21195
21251
|
|
|
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,
|
|
21252
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
21253
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
21254
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21255
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
21213
21256
|
});
|
|
21214
21257
|
|
|
21215
21258
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
@@ -21221,12 +21264,17 @@ T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
|
21221
21264
|
T['io.flow.internal.v0.models.carrier_charge_form_return_to_origin'] = PropTypes.exact({
|
|
21222
21265
|
discriminator: PropTypes.oneOf(['return_to_origin']).isRequired,
|
|
21223
21266
|
id: PropTypes.string.isRequired,
|
|
21267
|
+
organization_id: PropTypes.string.isRequired,
|
|
21268
|
+
order_number: PropTypes.string.isRequired,
|
|
21224
21269
|
carrier_id: PropTypes.string.isRequired,
|
|
21225
21270
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
21271
|
+
label_created_at: PropTypes.string.isRequired,
|
|
21226
21272
|
units: T['io.flow.internal.v0.models.carrier_charge_units'].isRequired,
|
|
21227
|
-
base: T['io.flow.
|
|
21273
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21228
21274
|
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
21229
21275
|
total: PropTypes.number.isRequired,
|
|
21276
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
21277
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
21230
21278
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
21231
21279
|
});
|
|
21232
21280
|
|
|
@@ -21235,9 +21283,11 @@ T['io.flow.internal.v0.models.carrier_charge_form_label'] = PropTypes.exact({
|
|
|
21235
21283
|
id: PropTypes.string.isRequired,
|
|
21236
21284
|
label_invoice_request_id: PropTypes.string.isRequired,
|
|
21237
21285
|
units: T['io.flow.internal.v0.models.carrier_charge_units'].isRequired,
|
|
21238
|
-
base: T['io.flow.
|
|
21286
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21239
21287
|
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
21240
21288
|
total: PropTypes.number.isRequired,
|
|
21289
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
21290
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
21241
21291
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
21242
21292
|
});
|
|
21243
21293
|
|
|
@@ -22297,6 +22347,10 @@ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
|
|
|
22297
22347
|
destination: T['io.flow.internal.v0.models.billing_order_destination'],
|
|
22298
22348
|
});
|
|
22299
22349
|
|
|
22350
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_identifiers'] = PropTypes.exact({
|
|
22351
|
+
reference_id: PropTypes.string,
|
|
22352
|
+
});
|
|
22353
|
+
|
|
22300
22354
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_discount'] = PropTypes.exact({
|
|
22301
22355
|
amount: PropTypes.number.isRequired,
|
|
22302
22356
|
description: PropTypes.string,
|
|
@@ -22347,23 +22401,13 @@ T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
|
22347
22401
|
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
22348
22402
|
});
|
|
22349
22403
|
|
|
22350
|
-
T['io.flow.billing.v0.models.
|
|
22351
|
-
|
|
22352
|
-
|
|
22353
|
-
|
|
22354
|
-
|
|
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),
|
|
22404
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'] = PropTypes.exact({
|
|
22405
|
+
channel: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel'],
|
|
22406
|
+
shipping_label: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label'],
|
|
22407
|
+
trueup: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'],
|
|
22408
|
+
manual: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'],
|
|
22359
22409
|
});
|
|
22360
22410
|
|
|
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
22411
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_account'] = PropTypes.exact({
|
|
22368
22412
|
id: PropTypes.string.isRequired,
|
|
22369
22413
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
@@ -22442,33 +22486,6 @@ T['io.flow.billing.csv.v0.models.billing_csv_generic_transaction'] = PropTypes.e
|
|
|
22442
22486
|
description: PropTypes.string.isRequired,
|
|
22443
22487
|
});
|
|
22444
22488
|
|
|
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
22489
|
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
|
|
22473
22490
|
|
|
22474
22491
|
T['io.flow.billing.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
@@ -22575,6 +22592,17 @@ T['io.flow.internal.v0.models.restriction_rule_metadata'] = PropTypes.exact({
|
|
|
22575
22592
|
count: PropTypes.number.isRequired,
|
|
22576
22593
|
});
|
|
22577
22594
|
|
|
22595
|
+
T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
|
|
22596
|
+
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
22597
|
+
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
22598
|
+
updated_at: PropTypes.string.isRequired,
|
|
22599
|
+
});
|
|
22600
|
+
|
|
22601
|
+
T['io.flow.internal.v0.models.restriction_product_summary'] = PropTypes.exact({
|
|
22602
|
+
name: PropTypes.string.isRequired,
|
|
22603
|
+
restrictions: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review_summary']).isRequired,
|
|
22604
|
+
});
|
|
22605
|
+
|
|
22578
22606
|
T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact({
|
|
22579
22607
|
status: T['io.flow.internal.v0.enums.restriction_status'],
|
|
22580
22608
|
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_status']),
|
|
@@ -23086,40 +23114,6 @@ T['io.flow.payment.v0.models.ach_authorization_form'] = PropTypes.exact({
|
|
|
23086
23114
|
ip: PropTypes.string,
|
|
23087
23115
|
});
|
|
23088
23116
|
|
|
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
23117
|
T['io.flow.internal.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
23124
23118
|
warehouse_address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
23125
23119
|
warehouse_url: PropTypes.string,
|
|
@@ -24888,6 +24882,7 @@ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropType
|
|
|
24888
24882
|
T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
24889
24883
|
discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
|
|
24890
24884
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24885
|
+
fuel_surcharge_rate: T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'],
|
|
24891
24886
|
});
|
|
24892
24887
|
|
|
24893
24888
|
T['io.flow.ratecard.v0.models.fuel_surcharge_amount_by_weight_service_fee'] = PropTypes.exact({
|
|
@@ -25029,6 +25024,7 @@ T['io.flow.ratecard.v0.models.hop_estimate_v2'] = PropTypes.exact({
|
|
|
25029
25024
|
currency: PropTypes.string.isRequired,
|
|
25030
25025
|
amount: PropTypes.number.isRequired,
|
|
25031
25026
|
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
25027
|
+
weight_break: PropTypes.number,
|
|
25032
25028
|
total: PropTypes.number.isRequired,
|
|
25033
25029
|
lane: T['io.flow.ratecard.v0.models.lane_summary'].isRequired,
|
|
25034
25030
|
});
|
|
@@ -26291,6 +26287,38 @@ T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
|
26291
26287
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26292
26288
|
});
|
|
26293
26289
|
|
|
26290
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary'] = PropTypes.exact({
|
|
26291
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26292
|
+
number: PropTypes.string.isRequired,
|
|
26293
|
+
identifiers: T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifiers'].isRequired,
|
|
26294
|
+
});
|
|
26295
|
+
|
|
26296
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction'] = PropTypes.exact({
|
|
26297
|
+
id: PropTypes.string.isRequired,
|
|
26298
|
+
type: T['io.flow.billing.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26299
|
+
account: T['io.flow.billing.csv.v0.models.billing_csv_transaction_account'].isRequired,
|
|
26300
|
+
metadata: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'],
|
|
26301
|
+
order: T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary'],
|
|
26302
|
+
currency: PropTypes.string.isRequired,
|
|
26303
|
+
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
26304
|
+
parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
|
|
26305
|
+
gross: PropTypes.number.isRequired,
|
|
26306
|
+
fees: T['io.flow.billing.csv.v0.models.billing_csv_transaction_fees'].isRequired,
|
|
26307
|
+
withholdings: T['io.flow.billing.csv.v0.models.billing_csv_transaction_withholdings'].isRequired,
|
|
26308
|
+
discount: T['io.flow.billing.csv.v0.models.billing_csv_transaction_discount'].isRequired,
|
|
26309
|
+
net: PropTypes.number.isRequired,
|
|
26310
|
+
identifiers: T['io.flow.billing.csv.v0.models.billing_csv_transaction_identifiers'].isRequired,
|
|
26311
|
+
created_at: PropTypes.string.isRequired,
|
|
26312
|
+
updated_at: PropTypes.string.isRequired,
|
|
26313
|
+
});
|
|
26314
|
+
|
|
26315
|
+
T['io.flow.internal.v0.models.billing_csv_transaction_upserted'] = PropTypes.exact({
|
|
26316
|
+
discriminator: PropTypes.oneOf(['billing_csv_transaction_upserted']).isRequired,
|
|
26317
|
+
event_id: PropTypes.string.isRequired,
|
|
26318
|
+
timestamp: PropTypes.string.isRequired,
|
|
26319
|
+
transaction: T['io.flow.billing.csv.v0.models.billing_csv_transaction'].isRequired,
|
|
26320
|
+
});
|
|
26321
|
+
|
|
26294
26322
|
T['io.flow.billing.csv.v0.models.billing_csv_order_transaction'] = PropTypes.exact({
|
|
26295
26323
|
id: PropTypes.string.isRequired,
|
|
26296
26324
|
type: PropTypes.string.isRequired,
|
|
@@ -26667,12 +26695,58 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
26667
26695
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
26668
26696
|
});
|
|
26669
26697
|
|
|
26698
|
+
T['io.flow.internal.v0.models.trueup_label_summary'] = PropTypes.exact({
|
|
26699
|
+
id: PropTypes.string.isRequired,
|
|
26700
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26701
|
+
carrier_id: PropTypes.string.isRequired,
|
|
26702
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
26703
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
26704
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
26705
|
+
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
26706
|
+
created_at: PropTypes.string.isRequired,
|
|
26707
|
+
});
|
|
26708
|
+
|
|
26709
|
+
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
26710
|
+
id: PropTypes.string.isRequired,
|
|
26711
|
+
label: T['io.flow.internal.v0.models.trueup_label_summary'].isRequired,
|
|
26712
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
26713
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
26714
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
26715
|
+
total: PropTypes.number.isRequired,
|
|
26716
|
+
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
26717
|
+
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
26718
|
+
created_at: PropTypes.string.isRequired,
|
|
26719
|
+
});
|
|
26720
|
+
|
|
26721
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
26722
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
26723
|
+
event_id: PropTypes.string.isRequired,
|
|
26724
|
+
timestamp: PropTypes.string.isRequired,
|
|
26725
|
+
organization: PropTypes.string.isRequired,
|
|
26726
|
+
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
26727
|
+
});
|
|
26728
|
+
|
|
26670
26729
|
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
26671
26730
|
id: PropTypes.string.isRequired,
|
|
26672
26731
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26673
26732
|
number: PropTypes.string.isRequired,
|
|
26674
26733
|
});
|
|
26675
26734
|
|
|
26735
|
+
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
26736
|
+
id: PropTypes.string.isRequired,
|
|
26737
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
26738
|
+
currency: PropTypes.string.isRequired,
|
|
26739
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
26740
|
+
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
26741
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
26742
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
26743
|
+
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'].isRequired,
|
|
26744
|
+
completes_order: PropTypes.bool.isRequired,
|
|
26745
|
+
sequence_number: PropTypes.number.isRequired,
|
|
26746
|
+
posting_cutoff: PropTypes.string.isRequired,
|
|
26747
|
+
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
26748
|
+
});
|
|
26749
|
+
|
|
26676
26750
|
T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
|
|
26677
26751
|
code: T['io.flow.internal.v0.enums.checkout_error_code'].isRequired,
|
|
26678
26752
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -26696,6 +26770,22 @@ T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
|
26696
26770
|
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
26697
26771
|
});
|
|
26698
26772
|
|
|
26773
|
+
T['io.flow.internal.v0.models.channel_order_summary'] = PropTypes.exact({
|
|
26774
|
+
id: PropTypes.string.isRequired,
|
|
26775
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26776
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
26777
|
+
order_number: PropTypes.string.isRequired,
|
|
26778
|
+
fulfullment_details: T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'].isRequired,
|
|
26779
|
+
});
|
|
26780
|
+
|
|
26781
|
+
T['io.flow.internal.v0.models.channel_order_summary_upserted'] = PropTypes.exact({
|
|
26782
|
+
discriminator: PropTypes.oneOf(['channel_order_summary_upserted']).isRequired,
|
|
26783
|
+
event_id: PropTypes.string.isRequired,
|
|
26784
|
+
timestamp: PropTypes.string.isRequired,
|
|
26785
|
+
channel_id: PropTypes.string.isRequired,
|
|
26786
|
+
channel_order_summary: T['io.flow.internal.v0.models.channel_order_summary'].isRequired,
|
|
26787
|
+
});
|
|
26788
|
+
|
|
26699
26789
|
T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
|
|
26700
26790
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26701
26791
|
number: PropTypes.string.isRequired,
|
|
@@ -26971,6 +27061,7 @@ T['io.flow.billing.internal.v0.models.order_transaction'] = PropTypes.exact({
|
|
|
26971
27061
|
T['io.flow.billing.internal.v0.models.manual_transaction'] = PropTypes.exact({
|
|
26972
27062
|
discriminator: PropTypes.oneOf(['manual_transaction']).isRequired,
|
|
26973
27063
|
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
27064
|
+
original_transaction: T['io.flow.billing.internal.v0.models.transaction_reference'],
|
|
26974
27065
|
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'],
|
|
26975
27066
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
26976
27067
|
id: PropTypes.string.isRequired,
|
|
@@ -27691,6 +27782,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
27691
27782
|
name: PropTypes.string.isRequired,
|
|
27692
27783
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
27693
27784
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27785
|
+
primary_item_number: PropTypes.string,
|
|
27694
27786
|
description: PropTypes.string.isRequired,
|
|
27695
27787
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27696
27788
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
@@ -27756,86 +27848,6 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
27756
27848
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
27757
27849
|
});
|
|
27758
27850
|
|
|
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
27851
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
27840
27852
|
id: PropTypes.string.isRequired,
|
|
27841
27853
|
description: PropTypes.string.isRequired,
|
|
@@ -28127,6 +28139,99 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
28127
28139
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
28128
28140
|
});
|
|
28129
28141
|
|
|
28142
|
+
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
28143
|
+
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
28144
|
+
currency: PropTypes.string.isRequired,
|
|
28145
|
+
amount: PropTypes.number.isRequired,
|
|
28146
|
+
label: PropTypes.string.isRequired,
|
|
28147
|
+
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
28148
|
+
});
|
|
28149
|
+
|
|
28150
|
+
T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
28151
|
+
discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
|
|
28152
|
+
id: PropTypes.string.isRequired,
|
|
28153
|
+
key: PropTypes.string,
|
|
28154
|
+
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
28155
|
+
fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
|
|
28156
|
+
ship_from_country: PropTypes.string,
|
|
28157
|
+
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
28158
|
+
options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
|
|
28159
|
+
special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
|
|
28160
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
28161
|
+
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
28162
|
+
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
28163
|
+
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
28164
|
+
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
28165
|
+
});
|
|
28166
|
+
|
|
28167
|
+
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
28168
|
+
discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
|
|
28169
|
+
id: PropTypes.string.isRequired,
|
|
28170
|
+
key: PropTypes.string,
|
|
28171
|
+
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
28172
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
28173
|
+
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
28174
|
+
});
|
|
28175
|
+
|
|
28176
|
+
T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
|
|
28177
|
+
T['io.flow.fulfillment.v0.models.digital_delivery'],
|
|
28178
|
+
T['io.flow.fulfillment.v0.models.physical_delivery'],
|
|
28179
|
+
]);
|
|
28180
|
+
|
|
28181
|
+
T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
28182
|
+
id: PropTypes.string.isRequired,
|
|
28183
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
28184
|
+
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
28185
|
+
selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
|
|
28186
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
28187
|
+
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
28188
|
+
});
|
|
28189
|
+
|
|
28190
|
+
T['io.flow.internal.v0.models.pregenerated_quote'] = PropTypes.exact({
|
|
28191
|
+
id: PropTypes.string.isRequired,
|
|
28192
|
+
experience: T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'].isRequired,
|
|
28193
|
+
destination_country: PropTypes.string.isRequired,
|
|
28194
|
+
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
28195
|
+
quote: T['io.flow.fulfillment.v0.models.quote'],
|
|
28196
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
28197
|
+
});
|
|
28198
|
+
|
|
28199
|
+
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
28200
|
+
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
28201
|
+
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
28202
|
+
T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
28203
|
+
T['io.flow.catalog.v0.models.localized_total'],
|
|
28204
|
+
]);
|
|
28205
|
+
|
|
28206
|
+
T['io.flow.internal.v0.models.order_rates_data_v3'] = PropTypes.exact({
|
|
28207
|
+
organization: PropTypes.string.isRequired,
|
|
28208
|
+
order_id: PropTypes.string.isRequired,
|
|
28209
|
+
order_number: PropTypes.string.isRequired,
|
|
28210
|
+
order_total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
28211
|
+
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
28212
|
+
});
|
|
28213
|
+
|
|
28214
|
+
T['io.flow.internal.v0.models.order_rates_published_v3'] = PropTypes.exact({
|
|
28215
|
+
discriminator: PropTypes.oneOf(['order_rates_published_v3']).isRequired,
|
|
28216
|
+
event_id: PropTypes.string.isRequired,
|
|
28217
|
+
timestamp: PropTypes.string.isRequired,
|
|
28218
|
+
organization: PropTypes.string.isRequired,
|
|
28219
|
+
data: T['io.flow.internal.v0.models.order_rates_data_v3'].isRequired,
|
|
28220
|
+
});
|
|
28221
|
+
|
|
28222
|
+
T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
|
|
28223
|
+
org_id: PropTypes.string.isRequired,
|
|
28224
|
+
flow_order_number: PropTypes.string.isRequired,
|
|
28225
|
+
shopify_order_number: PropTypes.string.isRequired,
|
|
28226
|
+
order_submission_date: PropTypes.string,
|
|
28227
|
+
order_item_count: PropTypes.number.isRequired,
|
|
28228
|
+
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
28229
|
+
merchant_total: PropTypes.number.isRequired,
|
|
28230
|
+
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
28231
|
+
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
28232
|
+
duty_paid: PropTypes.bool.isRequired,
|
|
28233
|
+
});
|
|
28234
|
+
|
|
28130
28235
|
T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
|
|
28131
28236
|
date: PropTypes.string.isRequired,
|
|
28132
28237
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -29254,23 +29359,6 @@ T['io.flow.internal.v0.models.invoice'] = PropTypes.exact({
|
|
|
29254
29359
|
|
|
29255
29360
|
T['io.flow.internal.v0.enums.responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
29256
29361
|
|
|
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
29362
|
T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
|
|
29275
29363
|
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
29276
29364
|
tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
|
|
@@ -29622,6 +29710,7 @@ T['io.flow.internal.v0.models.order_transaction_upserted'] = PropTypes.exact({
|
|
|
29622
29710
|
T['io.flow.internal.v0.models.manual_transaction'] = PropTypes.exact({
|
|
29623
29711
|
discriminator: PropTypes.oneOf(['manual_transaction']).isRequired,
|
|
29624
29712
|
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
29713
|
+
original_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
29625
29714
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
29626
29715
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
29627
29716
|
id: PropTypes.string.isRequired,
|
|
@@ -30023,6 +30112,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30023
30112
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
30024
30113
|
T['io.flow.internal.v0.models.index_assignment_upserted'],
|
|
30025
30114
|
T['io.flow.internal.v0.models.index_assignment_deleted'],
|
|
30115
|
+
T['io.flow.internal.v0.models.merchant_upserted'],
|
|
30116
|
+
T['io.flow.internal.v0.models.merchant_deleted'],
|
|
30026
30117
|
T['io.flow.internal.v0.models.account_upserted'],
|
|
30027
30118
|
T['io.flow.internal.v0.models.account_upserted_v2'],
|
|
30028
30119
|
T['io.flow.internal.v0.models.account_deleted_v2'],
|
|
@@ -30070,8 +30161,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30070
30161
|
T['io.flow.internal.v0.models.daily_value_deleted'],
|
|
30071
30162
|
T['io.flow.internal.v0.models.sales_record_upserted'],
|
|
30072
30163
|
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
30164
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
30076
30165
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
30077
30166
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -30166,6 +30255,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30166
30255
|
T['io.flow.internal.v0.models.organization_bank_account_deleted'],
|
|
30167
30256
|
T['io.flow.internal.v0.models.billing_csv_transaction_upserted'],
|
|
30168
30257
|
T['io.flow.internal.v0.models.billing_csv_transaction_deleted'],
|
|
30258
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'],
|
|
30259
|
+
T['io.flow.internal.v0.models.label_invoice_request_deleted'],
|
|
30169
30260
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
30170
30261
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
30171
30262
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -30314,6 +30405,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30314
30405
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
30315
30406
|
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'],
|
|
30316
30407
|
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'],
|
|
30408
|
+
T['io.flow.internal.v0.models.channel_order_summary_upserted'],
|
|
30409
|
+
T['io.flow.internal.v0.models.channel_order_summary_deleted'],
|
|
30317
30410
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
30318
30411
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
30319
30412
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -30467,6 +30560,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30467
30560
|
'adyen_refund_upserted',
|
|
30468
30561
|
'index_assignment_upserted',
|
|
30469
30562
|
'index_assignment_deleted',
|
|
30563
|
+
'merchant_upserted',
|
|
30564
|
+
'merchant_deleted',
|
|
30470
30565
|
'account_upserted',
|
|
30471
30566
|
'account_upserted_v2',
|
|
30472
30567
|
'account_deleted_v2',
|
|
@@ -30514,8 +30609,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30514
30609
|
'daily_value_deleted',
|
|
30515
30610
|
'sales_record_upserted',
|
|
30516
30611
|
'sales_record_deleted',
|
|
30517
|
-
'label_invoice_request_upserted',
|
|
30518
|
-
'label_invoice_request_deleted',
|
|
30519
30612
|
'calculator_organization_settings_upserted',
|
|
30520
30613
|
'calculator_organization_settings_deleted',
|
|
30521
30614
|
'carrier_account_upserted_v2',
|
|
@@ -30610,6 +30703,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30610
30703
|
'organization_bank_account_deleted',
|
|
30611
30704
|
'billing_csv_transaction_upserted',
|
|
30612
30705
|
'billing_csv_transaction_deleted',
|
|
30706
|
+
'label_invoice_request_upserted',
|
|
30707
|
+
'label_invoice_request_deleted',
|
|
30613
30708
|
'fraud_review_upserted',
|
|
30614
30709
|
'fraud_review_deleted',
|
|
30615
30710
|
'fraud_pending_review_upserted',
|
|
@@ -30758,6 +30853,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30758
30853
|
'shopify_markets_shop_statistics_deleted',
|
|
30759
30854
|
'shopify_markets_metrics_upserted',
|
|
30760
30855
|
'shopify_markets_metrics_deleted',
|
|
30856
|
+
'channel_order_summary_upserted',
|
|
30857
|
+
'channel_order_summary_deleted',
|
|
30761
30858
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
30762
30859
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
30763
30860
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -30802,6 +30899,8 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
|
|
|
30802
30899
|
'unit_test',
|
|
30803
30900
|
'api',
|
|
30804
30901
|
'api_activation',
|
|
30902
|
+
'audit_auto_activation',
|
|
30903
|
+
'api_deactivation',
|
|
30805
30904
|
'api_sandbox_setup',
|
|
30806
30905
|
'api_internal',
|
|
30807
30906
|
'api_internal_block',
|
|
@@ -30847,20 +30946,23 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
30847
30946
|
'fulfillment_shipping_notification',
|
|
30848
30947
|
'fulfillment_external',
|
|
30849
30948
|
'fulfillment_order_cancellation',
|
|
30949
|
+
'fulfillment_order_combined_shipment',
|
|
30950
|
+
'fulfillment_order_time',
|
|
30850
30951
|
'label_tracking_summary',
|
|
30851
30952
|
'label_invoice_request',
|
|
30852
30953
|
'carrier_charge',
|
|
30853
30954
|
'carrier_charge_file',
|
|
30854
|
-
'label_origin',
|
|
30855
30955
|
'order',
|
|
30856
30956
|
'order_identifier',
|
|
30857
30957
|
'organization_onboarding_state',
|
|
30958
|
+
'posting_proof',
|
|
30858
30959
|
'refund',
|
|
30859
30960
|
'refund_over_capture',
|
|
30860
30961
|
'sales_record',
|
|
30861
30962
|
'statement_batch',
|
|
30862
30963
|
'statement_email',
|
|
30863
30964
|
'statement_summary_email',
|
|
30965
|
+
'pending_payout_transaction_event',
|
|
30864
30966
|
]);
|
|
30865
30967
|
|
|
30866
30968
|
T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
@@ -31712,13 +31814,6 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
31712
31814
|
margin: PropTypes.number.isRequired,
|
|
31713
31815
|
});
|
|
31714
31816
|
|
|
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
31817
|
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
31723
31818
|
task_id: PropTypes.string.isRequired,
|
|
31724
31819
|
});
|
|
@@ -31853,6 +31948,18 @@ T['io.flow.internal.v0.models.shopify_grants_check'] = PropTypes.exact({
|
|
|
31853
31948
|
placeholder: PropTypes.string.isRequired,
|
|
31854
31949
|
});
|
|
31855
31950
|
|
|
31951
|
+
T['io.flow.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact({
|
|
31952
|
+
id: PropTypes.string.isRequired,
|
|
31953
|
+
type: PropTypes.string.isRequired,
|
|
31954
|
+
type_id: PropTypes.string.isRequired,
|
|
31955
|
+
organization_id: PropTypes.string.isRequired,
|
|
31956
|
+
environment: PropTypes.string,
|
|
31957
|
+
num_attempts: PropTypes.number.isRequired,
|
|
31958
|
+
next_attempt_at: PropTypes.string.isRequired,
|
|
31959
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
31960
|
+
stacktrace: PropTypes.string,
|
|
31961
|
+
});
|
|
31962
|
+
|
|
31856
31963
|
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
31857
31964
|
shop: PropTypes.string.isRequired,
|
|
31858
31965
|
domain: PropTypes.string.isRequired,
|
|
@@ -32183,6 +32290,31 @@ T['io.flow.label.v0.models.manifest_form'] = PropTypes.exact({
|
|
|
32183
32290
|
service: PropTypes.string,
|
|
32184
32291
|
});
|
|
32185
32292
|
|
|
32293
|
+
T['io.flow.external.paypal.v1.enums.event_type'] = PropTypes.oneOf([
|
|
32294
|
+
'PAYMENT.AUTHORIZATION.CREATED',
|
|
32295
|
+
'PAYMENT.AUTHORIZATION.VOIDED',
|
|
32296
|
+
'PAYMENT.CAPTURE.DECLINED',
|
|
32297
|
+
'PAYMENT.CAPTURE.COMPLETED',
|
|
32298
|
+
'PAYMENT.CAPTURE.PENDING',
|
|
32299
|
+
'PAYMENT.CAPTURE.REVERSED',
|
|
32300
|
+
'PAYMENT.CAPTURE.DENIED',
|
|
32301
|
+
'PAYMENT.ORDER.CANCELLED',
|
|
32302
|
+
'PAYMENT.ORDER.CREATED',
|
|
32303
|
+
'PAYMENT.SALE.COMPLETED',
|
|
32304
|
+
'PAYMENT.SALE.DENIED',
|
|
32305
|
+
'PAYMENT.SALE.PENDING',
|
|
32306
|
+
'PAYMENT.SALE.REFUNDED',
|
|
32307
|
+
'PAYMENT.SALE.REVERSED',
|
|
32308
|
+
'PAYMENTS.PAYMENT.CREATED',
|
|
32309
|
+
'CHECKOUT.ORDER.APPROVED',
|
|
32310
|
+
'CHECKOUT.CHECKOUT.BUYER-APPROVED',
|
|
32311
|
+
'CHECKOUT.ORDER.COMPLETED',
|
|
32312
|
+
'CUSTOMER.DISPUTE.CREATED',
|
|
32313
|
+
'CUSTOMER.DISPUTE.RESOLVED',
|
|
32314
|
+
'CUSTOMER.DISPUTE.UPDATED',
|
|
32315
|
+
'CHECKOUT.PAYMENT-APPROVAL.REVERSED',
|
|
32316
|
+
]);
|
|
32317
|
+
|
|
32186
32318
|
T['io.flow.external.paypal.v1.enums.http_method'] = PropTypes.oneOf(['GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'CONNECT', 'OPTIONS', 'PATCH']);
|
|
32187
32319
|
|
|
32188
32320
|
T['io.flow.external.paypal.v1.models.token'] = PropTypes.exact({
|
|
@@ -32914,10 +33046,6 @@ T['io.flow.crypto.v0.models.payment_request'] = PropTypes.exact({
|
|
|
32914
33046
|
order_id: PropTypes.string,
|
|
32915
33047
|
});
|
|
32916
33048
|
|
|
32917
|
-
T['io.flow.billing.true.up.v0.models.carrier_charge_file_form'] = PropTypes.exact({
|
|
32918
|
-
url: PropTypes.string.isRequired,
|
|
32919
|
-
});
|
|
32920
|
-
|
|
32921
33049
|
T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropTypes.exact({
|
|
32922
33050
|
country: PropTypes.string.isRequired,
|
|
32923
33051
|
});
|
|
@@ -33047,20 +33175,23 @@ T['io.flow.billing.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
33047
33175
|
'fulfillment_shipping_notification',
|
|
33048
33176
|
'fulfillment_external',
|
|
33049
33177
|
'fulfillment_order_cancellation',
|
|
33178
|
+
'fulfillment_order_combined_shipment',
|
|
33179
|
+
'fulfillment_order_time',
|
|
33050
33180
|
'label_tracking_summary',
|
|
33051
33181
|
'label_invoice_request',
|
|
33052
33182
|
'carrier_charge',
|
|
33053
33183
|
'carrier_charge_file',
|
|
33054
|
-
'label_origin',
|
|
33055
33184
|
'order',
|
|
33056
33185
|
'order_identifier',
|
|
33057
33186
|
'organization_onboarding_state',
|
|
33187
|
+
'posting_proof',
|
|
33058
33188
|
'refund',
|
|
33059
33189
|
'refund_over_capture',
|
|
33060
33190
|
'sales_record',
|
|
33061
33191
|
'statement_batch',
|
|
33062
33192
|
'statement_email',
|
|
33063
33193
|
'statement_summary_email',
|
|
33194
|
+
'pending_payout_transaction_event',
|
|
33064
33195
|
]);
|
|
33065
33196
|
|
|
33066
33197
|
T['io.flow.billing.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
|
|
@@ -33348,6 +33479,7 @@ export const accountProcessingRates = T['io.flow.internal.v0.models.account_proc
|
|
|
33348
33479
|
export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
|
|
33349
33480
|
export const accountProcessingRatesForm = T['io.flow.internal.v0.models.account_processing_rates_form'];
|
|
33350
33481
|
export const accountProcessingRatesUpserted = T['io.flow.internal.v0.models.account_processing_rates_upserted'];
|
|
33482
|
+
export const accountReference = T['io.flow.internal.v0.models.account_reference'];
|
|
33351
33483
|
export const accountSettingLabelFees = T['io.flow.internal.v0.models.account_setting_label_fees'];
|
|
33352
33484
|
export const accountSettingLiabilitiesMethod = T['io.flow.internal.v0.enums.account_setting_liabilities_method'];
|
|
33353
33485
|
export const accountSettings = T['io.flow.internal.v0.models.account_settings'];
|
|
@@ -33608,6 +33740,7 @@ export const channelForm = T['io.flow.internal.v0.models.channel_form'];
|
|
|
33608
33740
|
export const channelMembership = T['io.flow.internal.v0.models.channel_membership'];
|
|
33609
33741
|
export const channelMembershipForm = T['io.flow.internal.v0.models.channel_membership_form'];
|
|
33610
33742
|
export const channelMembershipPutForm = T['io.flow.internal.v0.models.channel_membership_put_form'];
|
|
33743
|
+
export const channelOrder = T['io.flow.internal.v0.models.channel_order'];
|
|
33611
33744
|
export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_order_acceptance'];
|
|
33612
33745
|
export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
|
|
33613
33746
|
export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
|
|
@@ -33617,6 +33750,11 @@ export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channe
|
|
|
33617
33750
|
export const channelOrderAcceptanceRejectionReason = T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'];
|
|
33618
33751
|
export const channelOrderAcceptanceStatus = T['io.flow.internal.v0.enums.channel_order_acceptance_status'];
|
|
33619
33752
|
export const channelOrderAcceptanceUpserted = T['io.flow.internal.v0.models.channel_order_acceptance_upserted'];
|
|
33753
|
+
export const channelOrderFulfillmentStatusCode = T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'];
|
|
33754
|
+
export const channelOrderSummary = T['io.flow.internal.v0.models.channel_order_summary'];
|
|
33755
|
+
export const channelOrderSummaryDeleted = T['io.flow.internal.v0.models.channel_order_summary_deleted'];
|
|
33756
|
+
export const channelOrderSummaryFulfillmentDetails = T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'];
|
|
33757
|
+
export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel_order_summary_upserted'];
|
|
33620
33758
|
export const channelOrganizationShopify = T['io.flow.internal.v0.models.channel_organization_shopify'];
|
|
33621
33759
|
export const channelOrganizationShopifyForm = T['io.flow.internal.v0.models.channel_organization_shopify_form'];
|
|
33622
33760
|
export const channelOrganizationShopifyPostForm = T['io.flow.internal.v0.models.channel_organization_shopify_post_form'];
|
|
@@ -34245,7 +34383,10 @@ export const dailyExperimentResultsUpserted = T['io.flow.internal.v0.models.dail
|
|
|
34245
34383
|
export const dailyValue = T['io.flow.internal.v0.models.daily_value'];
|
|
34246
34384
|
export const dailyValueDeleted = T['io.flow.internal.v0.models.daily_value_deleted'];
|
|
34247
34385
|
export const dailyValueUpserted = T['io.flow.internal.v0.models.daily_value_upserted'];
|
|
34386
|
+
export const debugAccountingTransaction = T['io.flow.internal.v0.models.debug_accounting_transaction'];
|
|
34387
|
+
export const debugAccountingTransactionType = T['io.flow.internal.v0.enums.debug_accounting_transaction_type'];
|
|
34248
34388
|
export const debugDetails = T['io.flow.internal.v0.models.debug_details'];
|
|
34389
|
+
export const debugFulfillmentDelta = T['io.flow.internal.v0.models.debug_fulfillment_delta'];
|
|
34249
34390
|
export const debugLabel = T['io.flow.internal.v0.models.debug_label'];
|
|
34250
34391
|
export const debugLabelTransactionSummary = T['io.flow.internal.v0.models.debug_label_transaction_summary'];
|
|
34251
34392
|
export const debugOrder = T['io.flow.internal.v0.models.debug_order'];
|
|
@@ -34514,16 +34655,19 @@ export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_a
|
|
|
34514
34655
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
34515
34656
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
34516
34657
|
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
34658
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
34519
34659
|
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
34520
34660
|
export const fulfillmentProofExternalFulfillmentProofReference = T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'];
|
|
34521
34661
|
export const fulfillmentProofLabelTrackingReference = T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'];
|
|
34662
|
+
export const fulfillmentProofOrderCombinedShipmentReference = T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'];
|
|
34522
34663
|
export const fulfillmentProofShippingNotificationReference = T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'];
|
|
34523
34664
|
export const fulfillmentReference = T['io.flow.internal.v0.models.fulfillment_reference'];
|
|
34524
34665
|
export const fulfillmentShipmentTracking = T['io.flow.internal.v0.models.fulfillment_shipment_tracking'];
|
|
34525
34666
|
export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
|
|
34526
34667
|
export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
|
|
34668
|
+
export const fulfillmentTrigger = T['io.flow.internal.v0.unions.fulfillment_trigger'];
|
|
34669
|
+
export const fulfillmentTriggerProof = T['io.flow.internal.v0.models.fulfillment_trigger_proof'];
|
|
34670
|
+
export const fulfillmentTriggerTime = T['io.flow.internal.v0.models.fulfillment_trigger_time'];
|
|
34527
34671
|
export const fxFee = T['io.flow.internal.v0.models.fx_fee'];
|
|
34528
34672
|
export const fxRevenueRecognition = T['io.flow.internal.v0.models.fx_revenue_recognition'];
|
|
34529
34673
|
export const fxRevenueRecognitionAccount = T['io.flow.internal.v0.models.fx_revenue_recognition_account'];
|
|
@@ -34710,7 +34854,6 @@ export const labProjectSettingsForm = T['io.flow.internal.v0.models.lab_project_
|
|
|
34710
34854
|
export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'];
|
|
34711
34855
|
export const labelAliases = T['io.flow.internal.v0.models.label_aliases'];
|
|
34712
34856
|
export const labelAssociation = T['io.flow.internal.v0.models.label_association'];
|
|
34713
|
-
export const labelBase = T['io.flow.internal.v0.models.label_base'];
|
|
34714
34857
|
export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_strategy'];
|
|
34715
34858
|
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
34716
34859
|
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
@@ -34735,11 +34878,6 @@ export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_requ
|
|
|
34735
34878
|
export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
|
|
34736
34879
|
export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
|
|
34737
34880
|
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
34881
|
export const labelSurchargeForm = T['io.flow.internal.v0.models.label_surcharge_form'];
|
|
34744
34882
|
export const labelSurchargeSingleForm = T['io.flow.internal.v0.models.label_surcharge_single_form'];
|
|
34745
34883
|
export const labelTaxonomy = T['io.flow.internal.v0.models.label_taxonomy'];
|
|
@@ -34749,7 +34887,6 @@ export const labelTransaction = T['io.flow.internal.v0.models.label_transaction'
|
|
|
34749
34887
|
export const labelTransactionDeleted = T['io.flow.internal.v0.models.label_transaction_deleted'];
|
|
34750
34888
|
export const labelTransactionType = T['io.flow.internal.v0.enums.label_transaction_type'];
|
|
34751
34889
|
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
34890
|
export const labeledContent = T['io.flow.internal.v0.models.labeled_content'];
|
|
34754
34891
|
export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'];
|
|
34755
34892
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
@@ -34862,8 +34999,10 @@ export const marketingGatewaySchemaSummary = T['io.flow.internal.v0.models.marke
|
|
|
34862
34999
|
export const marketingGatewaySourceSummary = T['io.flow.internal.v0.unions.marketing_gateway_source_summary'];
|
|
34863
35000
|
export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'];
|
|
34864
35001
|
export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
|
|
35002
|
+
export const merchant = T['io.flow.internal.v0.models.merchant'];
|
|
34865
35003
|
export const merchantApplicationSummaries = T['io.flow.internal.v0.models.merchant_application_summaries'];
|
|
34866
35004
|
export const merchantApplicationSummary = T['io.flow.internal.v0.models.merchant_application_summary'];
|
|
35005
|
+
export const merchantDeleted = T['io.flow.internal.v0.models.merchant_deleted'];
|
|
34867
35006
|
export const merchantFees = T['io.flow.internal.v0.models.merchant_fees'];
|
|
34868
35007
|
export const merchantGuidAssignment = T['io.flow.internal.v0.models.merchant_guid_assignment'];
|
|
34869
35008
|
export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'];
|
|
@@ -34874,9 +35013,9 @@ export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_searc
|
|
|
34874
35013
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
34875
35014
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
34876
35015
|
export const merchantTransactions = T['io.flow.internal.v0.models.merchant_transactions'];
|
|
35016
|
+
export const merchantUpserted = T['io.flow.internal.v0.models.merchant_upserted'];
|
|
34877
35017
|
export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
|
|
34878
35018
|
export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
|
|
34879
|
-
export const metadataWeights = T['io.flow.internal.v0.models.metadata_weights'];
|
|
34880
35019
|
export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
34881
35020
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
34882
35021
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
@@ -35125,6 +35264,7 @@ export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
|
|
|
35125
35264
|
export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'];
|
|
35126
35265
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
35127
35266
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
35267
|
+
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
35128
35268
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
35129
35269
|
export const queuedRecord = T['io.flow.internal.v0.models.queued_record'];
|
|
35130
35270
|
export const queuedRecordType = T['io.flow.internal.v0.enums.queued_record_type'];
|
|
@@ -35200,6 +35340,7 @@ export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
|
35200
35340
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
35201
35341
|
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
35202
35342
|
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
35343
|
+
export const reportType = T['io.flow.internal.v0.enums.report_type'];
|
|
35203
35344
|
export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'];
|
|
35204
35345
|
export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
|
|
35205
35346
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
@@ -35213,6 +35354,7 @@ export const restrictionItem = T['io.flow.internal.v0.models.restriction_item'];
|
|
|
35213
35354
|
export const restrictionItemRequestForm = T['io.flow.internal.v0.models.restriction_item_request_form'];
|
|
35214
35355
|
export const restrictionItemReview = T['io.flow.internal.v0.models.restriction_item_review'];
|
|
35215
35356
|
export const restrictionItemReviewDecisionForm = T['io.flow.internal.v0.models.restriction_item_review_decision_form'];
|
|
35357
|
+
export const restrictionItemReviewSummary = T['io.flow.internal.v0.models.restriction_item_review_summary'];
|
|
35216
35358
|
export const restrictionKeywordMetadata = T['io.flow.internal.v0.models.restriction_keyword_metadata'];
|
|
35217
35359
|
export const restrictionKeywords = T['io.flow.internal.v0.models.restriction_keywords'];
|
|
35218
35360
|
export const restrictionOrganization = T['io.flow.internal.v0.models.restriction_organization'];
|
|
@@ -35224,6 +35366,7 @@ export const restrictionPending = T['io.flow.internal.v0.models.restriction_pend
|
|
|
35224
35366
|
export const restrictionProduct = T['io.flow.internal.v0.models.restriction_product'];
|
|
35225
35367
|
export const restrictionProductDecisionForm = T['io.flow.internal.v0.models.restriction_product_decision_form'];
|
|
35226
35368
|
export const restrictionProductRequestForm = T['io.flow.internal.v0.models.restriction_product_request_form'];
|
|
35369
|
+
export const restrictionProductSummary = T['io.flow.internal.v0.models.restriction_product_summary'];
|
|
35227
35370
|
export const restrictionRule = T['io.flow.internal.v0.models.restriction_rule'];
|
|
35228
35371
|
export const restrictionRuleDecisionForm = T['io.flow.internal.v0.models.restriction_rule_decision_form'];
|
|
35229
35372
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
@@ -35310,6 +35453,7 @@ export const shopifyMarketsOrder = T['io.flow.internal.v0.models.shopify_markets
|
|
|
35310
35453
|
export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_markets_order_deleted'];
|
|
35311
35454
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
35312
35455
|
export const shopifyMarketsOrdersMetrics = T['io.flow.internal.v0.models.shopify_markets_orders_metrics'];
|
|
35456
|
+
export const shopifyMarketsQueuedRecord = T['io.flow.internal.v0.models.shopify_markets_queued_record'];
|
|
35313
35457
|
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
35314
35458
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
35315
35459
|
export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
|
|
@@ -35386,6 +35530,8 @@ export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook
|
|
|
35386
35530
|
export const shopifyWebhookForm = T['io.flow.internal.v0.models.shopify_webhook_form'];
|
|
35387
35531
|
export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
|
|
35388
35532
|
export const shopperFreight = T['io.flow.internal.v0.models.shopper_freight'];
|
|
35533
|
+
export const shopperLine = T['io.flow.internal.v0.models.shopper_line'];
|
|
35534
|
+
export const shopperLines = T['io.flow.internal.v0.models.shopper_lines'];
|
|
35389
35535
|
export const shopperSummary = T['io.flow.internal.v0.models.shopper_summary'];
|
|
35390
35536
|
export const significanceAction = T['io.flow.internal.v0.enums.significance_action'];
|
|
35391
35537
|
export const simpleAccountReference = T['io.flow.internal.v0.models.simple_account_reference'];
|
|
@@ -35528,8 +35674,7 @@ export const transferTransactionDeletedV2 = T['io.flow.internal.v0.models.transf
|
|
|
35528
35674
|
export const transferTransactionUpserted = T['io.flow.internal.v0.models.transfer_transaction_upserted'];
|
|
35529
35675
|
export const transferTransactionUpsertedV2 = T['io.flow.internal.v0.models.transfer_transaction_upserted_v2'];
|
|
35530
35676
|
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'];
|
|
35677
|
+
export const trueupLabelSummary = T['io.flow.internal.v0.models.trueup_label_summary'];
|
|
35533
35678
|
export const trueupTransaction = T['io.flow.internal.v0.models.trueup_transaction'];
|
|
35534
35679
|
export const trueupTransactionType = T['io.flow.internal.v0.enums.trueup_transaction_type'];
|
|
35535
35680
|
export const unassignedMerchantGuid = T['io.flow.internal.v0.models.unassigned_merchant_guid'];
|
|
@@ -35542,10 +35687,6 @@ export const unclassifiedProductsSummary = T['io.flow.internal.v0.models.unclass
|
|
|
35542
35687
|
export const unharmonizedItemsExport = T['io.flow.internal.v0.models.unharmonized_items_export'];
|
|
35543
35688
|
export const unphrasedProductsExport = T['io.flow.internal.v0.models.unphrased_products_export'];
|
|
35544
35689
|
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
35690
|
export const usdSpotRate = T['io.flow.internal.v0.models.usd_spot_rate'];
|
|
35550
35691
|
export const usdSpotRateDeleted = T['io.flow.internal.v0.models.usd_spot_rate_deleted'];
|
|
35551
35692
|
export const usdSpotRateUpserted = T['io.flow.internal.v0.models.usd_spot_rate_upserted'];
|
|
@@ -35572,6 +35713,4 @@ export const virtualCardTransaction = T['io.flow.internal.v0.models.virtual_card
|
|
|
35572
35713
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
35573
35714
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|
|
35574
35715
|
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
35716
|
export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];
|