@flowio/api-internal-prop-types 9.24.84 → 9.24.85
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 +262 -31
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +262 -31
- package/src/api-internal.js +281 -27
package/src/api-internal.js
CHANGED
|
@@ -774,6 +774,19 @@ T['io.flow.billing.internal.v0.models.billing_statement_attachment'] = PropTypes
|
|
|
774
774
|
url: PropTypes.string.isRequired,
|
|
775
775
|
});
|
|
776
776
|
|
|
777
|
+
T['io.flow.billing.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
|
|
778
|
+
processed_at: PropTypes.string.isRequired,
|
|
779
|
+
number_lines_successful: PropTypes.number.isRequired,
|
|
780
|
+
number_lines_with_errors: PropTypes.number.isRequired,
|
|
781
|
+
errors_url: PropTypes.string,
|
|
782
|
+
});
|
|
783
|
+
|
|
784
|
+
T['io.flow.billing.internal.v0.models.bank_payment_status_import'] = PropTypes.exact({
|
|
785
|
+
id: PropTypes.string.isRequired,
|
|
786
|
+
created_at: PropTypes.string.isRequired,
|
|
787
|
+
result: T['io.flow.billing.internal.v0.models.bank_payment_status_import_result'],
|
|
788
|
+
});
|
|
789
|
+
|
|
777
790
|
T['io.flow.billing.internal.v0.models.adjustment_amount_percentage'] = PropTypes.exact({
|
|
778
791
|
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
779
792
|
percentage: PropTypes.number.isRequired,
|
|
@@ -2278,6 +2291,16 @@ T['io.flow.payment.internal.v0.unions.processor_account'] = PropTypes.oneOfType(
|
|
|
2278
2291
|
T['io.flow.payment.internal.v0.models.crypto_account'],
|
|
2279
2292
|
]);
|
|
2280
2293
|
|
|
2294
|
+
T['io.flow.billing.reporting.v0.models.report_owner'] = PropTypes.exact({
|
|
2295
|
+
name: PropTypes.string.isRequired,
|
|
2296
|
+
});
|
|
2297
|
+
|
|
2298
|
+
T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'] = PropTypes.exact({
|
|
2299
|
+
type: PropTypes.string.isRequired,
|
|
2300
|
+
routing_number: PropTypes.string.isRequired,
|
|
2301
|
+
account_number: PropTypes.string.isRequired,
|
|
2302
|
+
});
|
|
2303
|
+
|
|
2281
2304
|
T['io.flow.billing.reporting.v0.enums.revenue_record_type'] = PropTypes.oneOf(['sales', 'refund']);
|
|
2282
2305
|
|
|
2283
2306
|
T['io.flow.billing.reporting.v0.models.reporting_vat_remittance_rate'] = PropTypes.exact({
|
|
@@ -2464,7 +2487,12 @@ T['io.flow.billing.reporting.v0.models.reporting_debug_missing_subsidies'] = Pro
|
|
|
2464
2487
|
duty: PropTypes.bool,
|
|
2465
2488
|
});
|
|
2466
2489
|
|
|
2467
|
-
T['io.flow.billing.reporting.v0.enums.report_type'] = PropTypes.oneOf([
|
|
2490
|
+
T['io.flow.billing.reporting.v0.enums.report_type'] = PropTypes.oneOf([
|
|
2491
|
+
'sales_record',
|
|
2492
|
+
'trueup_overview',
|
|
2493
|
+
'non_channel_payment_bank_account',
|
|
2494
|
+
'scheduled_payment',
|
|
2495
|
+
]);
|
|
2468
2496
|
|
|
2469
2497
|
T['io.flow.billing.reporting.v0.models.report_form'] = PropTypes.exact({
|
|
2470
2498
|
from: PropTypes.string.isRequired,
|
|
@@ -2491,6 +2519,7 @@ T['io.flow.billing.reporting.v0.models.report_bank_account'] = PropTypes.exact({
|
|
|
2491
2519
|
|
|
2492
2520
|
T['io.flow.billing.reporting.v0.models.report_payment'] = PropTypes.exact({
|
|
2493
2521
|
id: PropTypes.string.isRequired,
|
|
2522
|
+
amount: PropTypes.number.isRequired,
|
|
2494
2523
|
created_at: PropTypes.string.isRequired,
|
|
2495
2524
|
});
|
|
2496
2525
|
|
|
@@ -2667,6 +2696,7 @@ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.o
|
|
|
2667
2696
|
'emergency_situation_surcharge',
|
|
2668
2697
|
'peak_surcharge',
|
|
2669
2698
|
'duties_taxes_paid_surcharge',
|
|
2699
|
+
'tip',
|
|
2670
2700
|
]);
|
|
2671
2701
|
|
|
2672
2702
|
T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
@@ -2678,6 +2708,7 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
|
2678
2708
|
'insurance',
|
|
2679
2709
|
'discount',
|
|
2680
2710
|
'surcharges',
|
|
2711
|
+
'tip',
|
|
2681
2712
|
]);
|
|
2682
2713
|
|
|
2683
2714
|
T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'] = PropTypes.oneOf(['passed', 'failed']);
|
|
@@ -5066,6 +5097,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
5066
5097
|
'unsupported_subsidized_order',
|
|
5067
5098
|
'unsupported_virtual_goods',
|
|
5068
5099
|
'non_matching_currencies',
|
|
5100
|
+
'unsupported_order_edit',
|
|
5069
5101
|
]);
|
|
5070
5102
|
|
|
5071
5103
|
T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
@@ -7378,9 +7410,18 @@ T['io.flow.billing.internal.v0.models.account_summary'] = PropTypes.exact({
|
|
|
7378
7410
|
|
|
7379
7411
|
T['io.flow.billing.reporting.v0.models.report_account'] = PropTypes.exact({
|
|
7380
7412
|
id: PropTypes.string.isRequired,
|
|
7413
|
+
currency: PropTypes.string.isRequired,
|
|
7381
7414
|
source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
|
|
7382
7415
|
});
|
|
7383
7416
|
|
|
7417
|
+
T['io.flow.billing.reporting.v0.models.scheduled_payment'] = PropTypes.exact({
|
|
7418
|
+
payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
|
|
7419
|
+
bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'].isRequired,
|
|
7420
|
+
account: T['io.flow.billing.reporting.v0.models.report_account'].isRequired,
|
|
7421
|
+
owner: T['io.flow.billing.reporting.v0.models.report_owner'].isRequired,
|
|
7422
|
+
description: PropTypes.string.isRequired,
|
|
7423
|
+
});
|
|
7424
|
+
|
|
7384
7425
|
T['io.flow.billing.reporting.v0.models.non_channel_payment_bank_account'] = PropTypes.exact({
|
|
7385
7426
|
payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
|
|
7386
7427
|
bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account'].isRequired,
|
|
@@ -9678,6 +9719,14 @@ T['io.flow.internal.v0.models.shopify_shop_deleted'] = PropTypes.exact({
|
|
|
9678
9719
|
id: PropTypes.string.isRequired,
|
|
9679
9720
|
});
|
|
9680
9721
|
|
|
9722
|
+
T['io.flow.internal.v0.models.screening_status_change_deleted'] = PropTypes.exact({
|
|
9723
|
+
discriminator: PropTypes.oneOf(['screening_status_change_deleted']).isRequired,
|
|
9724
|
+
event_id: PropTypes.string.isRequired,
|
|
9725
|
+
timestamp: PropTypes.string.isRequired,
|
|
9726
|
+
organization: PropTypes.string.isRequired,
|
|
9727
|
+
id: PropTypes.string.isRequired,
|
|
9728
|
+
});
|
|
9729
|
+
|
|
9681
9730
|
T['io.flow.internal.v0.models.organization_restriction_status_deleted'] = PropTypes.exact({
|
|
9682
9731
|
discriminator: PropTypes.oneOf(['organization_restriction_status_deleted']).isRequired,
|
|
9683
9732
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10449,6 +10498,13 @@ T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
|
10449
10498
|
id: PropTypes.string.isRequired,
|
|
10450
10499
|
});
|
|
10451
10500
|
|
|
10501
|
+
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
10502
|
+
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
10503
|
+
order_number: PropTypes.string.isRequired,
|
|
10504
|
+
service: PropTypes.string.isRequired,
|
|
10505
|
+
note: PropTypes.string,
|
|
10506
|
+
});
|
|
10507
|
+
|
|
10452
10508
|
T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'] = PropTypes.exact({
|
|
10453
10509
|
discriminator: PropTypes.oneOf(['weee']).isRequired,
|
|
10454
10510
|
label: PropTypes.string.isRequired,
|
|
@@ -10714,6 +10770,10 @@ T['io.flow.internal.v0.models.tracking_response_upserted'] = PropTypes.exact({
|
|
|
10714
10770
|
tracking_response: T['io.flow.internal.v0.models.tracking_response'].isRequired,
|
|
10715
10771
|
});
|
|
10716
10772
|
|
|
10773
|
+
T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact({
|
|
10774
|
+
country: PropTypes.string.isRequired,
|
|
10775
|
+
});
|
|
10776
|
+
|
|
10717
10777
|
T['io.flow.internal.v0.models.time_to_classify'] = PropTypes.exact({
|
|
10718
10778
|
discriminator: PropTypes.oneOf(['time-to-classify']).isRequired,
|
|
10719
10779
|
key: PropTypes.string.isRequired,
|
|
@@ -10784,6 +10844,7 @@ T['io.flow.internal.v0.models.tax_calculation_error'] = PropTypes.exact({
|
|
|
10784
10844
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10785
10845
|
});
|
|
10786
10846
|
|
|
10847
|
+
T['io.flow.internal.v0.enums.tam_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
10787
10848
|
T['io.flow.internal.v0.enums.svitlana_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
10788
10849
|
|
|
10789
10850
|
T['io.flow.internal.v0.models.svitlana_item_form'] = PropTypes.exact({
|
|
@@ -11700,6 +11761,16 @@ T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfTyp
|
|
|
11700
11761
|
T['io.flow.payment.v0.models.payment_processor_reference'],
|
|
11701
11762
|
]);
|
|
11702
11763
|
|
|
11764
|
+
T['io.flow.internal.v0.models.report_owner'] = PropTypes.exact({
|
|
11765
|
+
name: PropTypes.string.isRequired,
|
|
11766
|
+
});
|
|
11767
|
+
|
|
11768
|
+
T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact({
|
|
11769
|
+
type: PropTypes.string.isRequired,
|
|
11770
|
+
routing_number: PropTypes.string.isRequired,
|
|
11771
|
+
account_number: PropTypes.string.isRequired,
|
|
11772
|
+
});
|
|
11773
|
+
|
|
11703
11774
|
T['io.flow.billing.reporting.v0.models.marked_as_final'] = PropTypes.exact({
|
|
11704
11775
|
products: PropTypes.bool.isRequired,
|
|
11705
11776
|
shipping: PropTypes.bool.isRequired,
|
|
@@ -12070,7 +12141,12 @@ T['io.flow.internal.v0.models.reporting_debug'] = PropTypes.exact({
|
|
|
12070
12141
|
missing_shipping_subsidies: T['io.flow.internal.v0.models.reporting_debug_missing_subsidies'],
|
|
12071
12142
|
});
|
|
12072
12143
|
|
|
12073
|
-
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
12144
|
+
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
12145
|
+
'sales_record',
|
|
12146
|
+
'trueup_overview',
|
|
12147
|
+
'non_channel_payment_bank_account',
|
|
12148
|
+
'scheduled_payment',
|
|
12149
|
+
]);
|
|
12074
12150
|
|
|
12075
12151
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
12076
12152
|
from: PropTypes.string.isRequired,
|
|
@@ -12713,6 +12789,23 @@ T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'] = Prop
|
|
|
12713
12789
|
T['io.flow.internal.v0.enums.organization_restriction_risk_level'] = PropTypes.oneOf(['5', '15']);
|
|
12714
12790
|
T['io.flow.internal.v0.enums.organization_restriction_review_type'] = PropTypes.oneOf(['all_pending', 'pending_verification']);
|
|
12715
12791
|
T['io.flow.internal.v0.enums.organization_restriction_screening_status'] = PropTypes.oneOf(['in_review', 'fully_reviewed', 'rejected', 'unscreened']);
|
|
12792
|
+
|
|
12793
|
+
T['io.flow.internal.v0.models.screening_status_change'] = PropTypes.exact({
|
|
12794
|
+
id: PropTypes.string.isRequired,
|
|
12795
|
+
previous_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
12796
|
+
status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'].isRequired,
|
|
12797
|
+
reason: PropTypes.string,
|
|
12798
|
+
status_set_at: PropTypes.string.isRequired,
|
|
12799
|
+
});
|
|
12800
|
+
|
|
12801
|
+
T['io.flow.internal.v0.models.screening_status_change_upserted'] = PropTypes.exact({
|
|
12802
|
+
discriminator: PropTypes.oneOf(['screening_status_change_upserted']).isRequired,
|
|
12803
|
+
event_id: PropTypes.string.isRequired,
|
|
12804
|
+
timestamp: PropTypes.string.isRequired,
|
|
12805
|
+
organization: PropTypes.string.isRequired,
|
|
12806
|
+
screening_status_change: T['io.flow.internal.v0.models.screening_status_change'].isRequired,
|
|
12807
|
+
});
|
|
12808
|
+
|
|
12716
12809
|
T['io.flow.internal.v0.enums.organization_restriction_approval_status'] = PropTypes.oneOf(['ready', 'not-ready']);
|
|
12717
12810
|
|
|
12718
12811
|
T['io.flow.internal.v0.models.restriction_organization_status'] = PropTypes.exact({
|
|
@@ -12861,6 +12954,15 @@ T['io.flow.internal.v0.models.organization_bank_account_upserted'] = PropTypes.e
|
|
|
12861
12954
|
});
|
|
12862
12955
|
|
|
12863
12956
|
T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
|
|
12957
|
+
T['io.flow.internal.v0.enums.order_validation_status'] = PropTypes.oneOf(['success', 'failed', 'unresolvable']);
|
|
12958
|
+
|
|
12959
|
+
T['io.flow.internal.v0.models.order_validation'] = PropTypes.exact({
|
|
12960
|
+
id: PropTypes.string.isRequired,
|
|
12961
|
+
organization_id: PropTypes.string.isRequired,
|
|
12962
|
+
order_number: PropTypes.string.isRequired,
|
|
12963
|
+
service_id: PropTypes.string.isRequired,
|
|
12964
|
+
status: T['io.flow.internal.v0.enums.order_validation_status'].isRequired,
|
|
12965
|
+
});
|
|
12864
12966
|
|
|
12865
12967
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
12866
12968
|
id: PropTypes.string.isRequired,
|
|
@@ -12973,6 +13075,22 @@ T['io.flow.internal.v0.models.order_attribute_upserted'] = PropTypes.exact({
|
|
|
12973
13075
|
attribute: T['io.flow.internal.v0.models.order_attribute'].isRequired,
|
|
12974
13076
|
});
|
|
12975
13077
|
|
|
13078
|
+
T['io.flow.internal.v0.enums.order_address_validation_status'] = PropTypes.oneOf(['success', 'failed']);
|
|
13079
|
+
|
|
13080
|
+
T['io.flow.internal.v0.models.order_address_validation'] = PropTypes.exact({
|
|
13081
|
+
id: PropTypes.string.isRequired,
|
|
13082
|
+
organization_id: PropTypes.string.isRequired,
|
|
13083
|
+
order_number: PropTypes.string.isRequired,
|
|
13084
|
+
service_id: PropTypes.string.isRequired,
|
|
13085
|
+
status: T['io.flow.internal.v0.enums.order_address_validation_status'].isRequired,
|
|
13086
|
+
destination_street1: PropTypes.string,
|
|
13087
|
+
destination_street2: PropTypes.string,
|
|
13088
|
+
destination_city: PropTypes.string,
|
|
13089
|
+
destination_postal: PropTypes.string,
|
|
13090
|
+
destination_state: PropTypes.string,
|
|
13091
|
+
destination_country: PropTypes.string.isRequired,
|
|
13092
|
+
});
|
|
13093
|
+
|
|
12976
13094
|
T['io.flow.internal.v0.enums.order_action'] = PropTypes.oneOf([
|
|
12977
13095
|
'consumer_submit',
|
|
12978
13096
|
'fraud_review_accept',
|
|
@@ -13076,6 +13194,7 @@ T['io.flow.internal.v0.models.report_bank_account'] = PropTypes.exact({
|
|
|
13076
13194
|
|
|
13077
13195
|
T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
13078
13196
|
id: PropTypes.string.isRequired,
|
|
13197
|
+
amount: PropTypes.number.isRequired,
|
|
13079
13198
|
created_at: PropTypes.string.isRequired,
|
|
13080
13199
|
});
|
|
13081
13200
|
|
|
@@ -13450,6 +13569,7 @@ T['io.flow.shopify.markets.v0.models.shopify_update_order'] = PropTypes.exact({
|
|
|
13450
13569
|
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
13451
13570
|
note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']),
|
|
13452
13571
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form']),
|
|
13572
|
+
note: PropTypes.string,
|
|
13453
13573
|
});
|
|
13454
13574
|
|
|
13455
13575
|
T['io.flow.shopify.markets.v0.models.shopify_order_update_form'] = PropTypes.exact({
|
|
@@ -14298,12 +14418,6 @@ T['io.flow.internal.v0.models.label_generation_settings_upserted'] = PropTypes.e
|
|
|
14298
14418
|
label_generation_settings: T['io.flow.internal.v0.models.label_generation_settings'].isRequired,
|
|
14299
14419
|
});
|
|
14300
14420
|
|
|
14301
|
-
T['io.flow.internal.v0.enums.label_generation_address_failure_status'] = PropTypes.oneOf(['in_review', 'resolved', 'unresolved']);
|
|
14302
|
-
|
|
14303
|
-
T['io.flow.internal.v0.models.label_generation_address_failure_status_update_form'] = PropTypes.exact({
|
|
14304
|
-
status: T['io.flow.internal.v0.enums.label_generation_address_failure_status'].isRequired,
|
|
14305
|
-
});
|
|
14306
|
-
|
|
14307
14421
|
T['io.flow.internal.v0.enums.label_creation_status'] = PropTypes.oneOf(['success', 'error', 'pending', 'cancelled']);
|
|
14308
14422
|
|
|
14309
14423
|
T['io.flow.internal.v0.models.label_creation_job_summary'] = PropTypes.exact({
|
|
@@ -14357,6 +14471,8 @@ T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digit
|
|
|
14357
14471
|
T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
|
|
14358
14472
|
number: PropTypes.string.isRequired,
|
|
14359
14473
|
fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
|
|
14474
|
+
country_of_origin: PropTypes.string,
|
|
14475
|
+
inferred: PropTypes.bool,
|
|
14360
14476
|
});
|
|
14361
14477
|
|
|
14362
14478
|
T['io.flow.internal.v0.models.shopper_line'] = PropTypes.exact({
|
|
@@ -16734,10 +16850,6 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16734
16850
|
'queued_other_unprocessed_count',
|
|
16735
16851
|
'queued_record_snooze_count',
|
|
16736
16852
|
'queued_record_snooze_ending_in_48_hours_count',
|
|
16737
|
-
'statements_no_payout_count',
|
|
16738
|
-
'statements_no_payout_total',
|
|
16739
|
-
'statements_pending_payout_count',
|
|
16740
|
-
'statements_pending_payout_total',
|
|
16741
16853
|
'payouts_scheduled_count',
|
|
16742
16854
|
'payouts_scheduled_total',
|
|
16743
16855
|
'payouts_sent_count',
|
|
@@ -16751,8 +16863,10 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16751
16863
|
'percentage_billable_label_transactions_with_carrier_charge_30_days',
|
|
16752
16864
|
'percentage_billable_label_transactions_with_carrier_charge_60_days',
|
|
16753
16865
|
'percentage_billable_label_transactions_with_carrier_charge_90_days',
|
|
16866
|
+
'percentage_bank_account_inserts',
|
|
16754
16867
|
'percentage_bank_account_updates',
|
|
16755
16868
|
'percentage_bank_account_unique_updates',
|
|
16869
|
+
'percentage_bank_account_deletes',
|
|
16756
16870
|
'negative_balance_number_accounts',
|
|
16757
16871
|
'negative_balance_number_accounts_with_order_in_past_30_days',
|
|
16758
16872
|
'negative_balance_number_accounts_without_order_in_past_30_days',
|
|
@@ -17099,6 +17213,7 @@ T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'] = Prop
|
|
|
17099
17213
|
|
|
17100
17214
|
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
17101
17215
|
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
17216
|
+
order_note: PropTypes.string,
|
|
17102
17217
|
});
|
|
17103
17218
|
|
|
17104
17219
|
T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
|
|
@@ -17168,6 +17283,7 @@ T['io.flow.internal.v0.models.smp_tax_calculation'] = PropTypes.exact({
|
|
|
17168
17283
|
|
|
17169
17284
|
T['io.flow.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
17170
17285
|
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
17286
|
+
order_note: PropTypes.string,
|
|
17171
17287
|
});
|
|
17172
17288
|
|
|
17173
17289
|
T['io.flow.internal.v0.models.rate_and_rule_item_form'] = PropTypes.exact({
|
|
@@ -17218,16 +17334,6 @@ T['io.flow.internal.v0.models.destination_error'] = PropTypes.exact({
|
|
|
17218
17334
|
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
17219
17335
|
});
|
|
17220
17336
|
|
|
17221
|
-
T['io.flow.internal.v0.models.label_generation_address_failures'] = PropTypes.exact({
|
|
17222
|
-
id: PropTypes.string.isRequired,
|
|
17223
|
-
organization_id: PropTypes.string.isRequired,
|
|
17224
|
-
status: T['io.flow.internal.v0.enums.label_generation_address_failure_status'].isRequired,
|
|
17225
|
-
order_number: PropTypes.string.isRequired,
|
|
17226
|
-
order_submitted_at: PropTypes.string.isRequired,
|
|
17227
|
-
carrier_id: PropTypes.string.isRequired,
|
|
17228
|
-
destination_errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.destination_error']).isRequired,
|
|
17229
|
-
});
|
|
17230
|
-
|
|
17231
17337
|
T['io.flow.internal.v0.models.customs_details_form'] = PropTypes.exact({
|
|
17232
17338
|
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
17233
17339
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -21077,6 +21183,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
21077
21183
|
'unsupported_subsidized_order',
|
|
21078
21184
|
'unsupported_virtual_goods',
|
|
21079
21185
|
'non_matching_currencies',
|
|
21186
|
+
'unsupported_order_edit',
|
|
21080
21187
|
]);
|
|
21081
21188
|
|
|
21082
21189
|
T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
@@ -21204,6 +21311,18 @@ T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
|
|
|
21204
21311
|
description: PropTypes.string,
|
|
21205
21312
|
});
|
|
21206
21313
|
|
|
21314
|
+
T['io.flow.internal.v0.models.tracking_debug_label_event'] = PropTypes.exact({
|
|
21315
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
21316
|
+
raw_carrier_event_code: PropTypes.string,
|
|
21317
|
+
location: T['io.flow.internal.v0.models.tracking_debug_label_location'],
|
|
21318
|
+
});
|
|
21319
|
+
|
|
21320
|
+
T['io.flow.internal.v0.models.tracking_debug_label'] = PropTypes.exact({
|
|
21321
|
+
in_transit_location: T['io.flow.internal.v0.models.tracking_debug_label_location'],
|
|
21322
|
+
delivery_location: T['io.flow.internal.v0.models.tracking_debug_label_location'],
|
|
21323
|
+
events: PropTypes.arrayOf(T['io.flow.internal.v0.models.tracking_debug_label_event']).isRequired,
|
|
21324
|
+
});
|
|
21325
|
+
|
|
21207
21326
|
T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
21208
21327
|
id: PropTypes.string.isRequired,
|
|
21209
21328
|
address: T['io.flow.common.v0.models.address'],
|
|
@@ -22187,6 +22306,7 @@ T['io.flow.internal.v0.models.carrier_charge_file_result'] = PropTypes.exact({
|
|
|
22187
22306
|
T['io.flow.internal.v0.models.carrier_charge_file'] = PropTypes.exact({
|
|
22188
22307
|
id: PropTypes.string.isRequired,
|
|
22189
22308
|
url: PropTypes.string.isRequired,
|
|
22309
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22190
22310
|
created_at: PropTypes.string.isRequired,
|
|
22191
22311
|
result: T['io.flow.internal.v0.models.carrier_charge_file_result'],
|
|
22192
22312
|
});
|
|
@@ -23385,8 +23505,31 @@ T['io.flow.billing.csv.v0.models.billing_csv_generic_transaction'] = PropTypes.e
|
|
|
23385
23505
|
description: PropTypes.string.isRequired,
|
|
23386
23506
|
});
|
|
23387
23507
|
|
|
23508
|
+
T['io.flow.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
|
|
23509
|
+
processed_at: PropTypes.string.isRequired,
|
|
23510
|
+
number_lines_successful: PropTypes.number.isRequired,
|
|
23511
|
+
number_lines_with_errors: PropTypes.number.isRequired,
|
|
23512
|
+
errors_url: PropTypes.string,
|
|
23513
|
+
});
|
|
23514
|
+
|
|
23515
|
+
T['io.flow.internal.v0.models.bank_payment_status_import'] = PropTypes.exact({
|
|
23516
|
+
id: PropTypes.string.isRequired,
|
|
23517
|
+
created_at: PropTypes.string.isRequired,
|
|
23518
|
+
result: T['io.flow.internal.v0.models.bank_payment_status_import_result'],
|
|
23519
|
+
});
|
|
23520
|
+
|
|
23388
23521
|
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
|
|
23389
23522
|
|
|
23523
|
+
T['io.flow.billing.internal.v0.models.bank_payment_status_single_form'] = PropTypes.exact({
|
|
23524
|
+
payment_id: PropTypes.string.isRequired,
|
|
23525
|
+
code: T['io.flow.billing.internal.v0.enums.bank_payment_status_code'].isRequired,
|
|
23526
|
+
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
23527
|
+
});
|
|
23528
|
+
|
|
23529
|
+
T['io.flow.billing.internal.v0.models.bank_payment_status_import_form'] = PropTypes.exact({
|
|
23530
|
+
forms: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.bank_payment_status_single_form']).isRequired,
|
|
23531
|
+
});
|
|
23532
|
+
|
|
23390
23533
|
T['io.flow.billing.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
23391
23534
|
code: T['io.flow.billing.internal.v0.enums.bank_payment_status_code'].isRequired,
|
|
23392
23535
|
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
@@ -23394,6 +23537,16 @@ T['io.flow.billing.internal.v0.models.bank_payment_status_form'] = PropTypes.exa
|
|
|
23394
23537
|
|
|
23395
23538
|
T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
23396
23539
|
|
|
23540
|
+
T['io.flow.internal.v0.models.bank_payment_status_single_form'] = PropTypes.exact({
|
|
23541
|
+
payment_id: PropTypes.string.isRequired,
|
|
23542
|
+
code: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
|
|
23543
|
+
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
23544
|
+
});
|
|
23545
|
+
|
|
23546
|
+
T['io.flow.internal.v0.models.bank_payment_status_import_form'] = PropTypes.exact({
|
|
23547
|
+
forms: PropTypes.arrayOf(T['io.flow.internal.v0.models.bank_payment_status_single_form']).isRequired,
|
|
23548
|
+
});
|
|
23549
|
+
|
|
23397
23550
|
T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
23398
23551
|
code: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
|
|
23399
23552
|
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
@@ -23632,6 +23785,7 @@ T['io.flow.internal.v0.models.restriction_item_review'] = PropTypes.exact({
|
|
|
23632
23785
|
id: PropTypes.string.isRequired,
|
|
23633
23786
|
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
23634
23787
|
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
23788
|
+
cause_rule_id: PropTypes.string,
|
|
23635
23789
|
keywords: T['io.flow.internal.v0.models.restriction_keywords'].isRequired,
|
|
23636
23790
|
date: PropTypes.string,
|
|
23637
23791
|
updated_by: T['io.flow.common.v0.models.user'],
|
|
@@ -23653,6 +23807,7 @@ T['io.flow.internal.v0.models.restriction_history_item_review_decision'] = PropT
|
|
|
23653
23807
|
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
23654
23808
|
keywords: T['io.flow.internal.v0.models.restriction_keywords'].isRequired,
|
|
23655
23809
|
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
23810
|
+
cause_rule_id: PropTypes.string,
|
|
23656
23811
|
created_at: PropTypes.string.isRequired,
|
|
23657
23812
|
updated_at: PropTypes.string.isRequired,
|
|
23658
23813
|
updated_by: T['io.flow.common.v0.models.user'],
|
|
@@ -23810,6 +23965,19 @@ T['io.flow.return.v0.models.return_form'] = PropTypes.exact({
|
|
|
23810
23965
|
carrier_tracking_number: PropTypes.string,
|
|
23811
23966
|
});
|
|
23812
23967
|
|
|
23968
|
+
T['io.flow.internal.v0.models.order_validation_attempt'] = PropTypes.exact({
|
|
23969
|
+
id: PropTypes.string.isRequired,
|
|
23970
|
+
organization_id: PropTypes.string.isRequired,
|
|
23971
|
+
order_number: PropTypes.string.isRequired,
|
|
23972
|
+
service_id: PropTypes.string.isRequired,
|
|
23973
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23974
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23975
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
23976
|
+
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'].isRequired,
|
|
23977
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
23978
|
+
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
23979
|
+
});
|
|
23980
|
+
|
|
23813
23981
|
T['io.flow.fulfillment.v0.models.center_summary'] = PropTypes.exact({
|
|
23814
23982
|
id: PropTypes.string.isRequired,
|
|
23815
23983
|
key: PropTypes.string.isRequired,
|
|
@@ -23843,6 +24011,18 @@ T['io.flow.order.management.v0.models.fulfillment'] = PropTypes.exact({
|
|
|
23843
24011
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
23844
24012
|
});
|
|
23845
24013
|
|
|
24014
|
+
T['io.flow.internal.v0.models.console_label_request_form'] = PropTypes.exact({
|
|
24015
|
+
discriminator: PropTypes.oneOf(['console_label_request_form']).isRequired,
|
|
24016
|
+
order_number: PropTypes.string.isRequired,
|
|
24017
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
24018
|
+
service: PropTypes.string.isRequired,
|
|
24019
|
+
});
|
|
24020
|
+
|
|
24021
|
+
T['io.flow.internal.v0.unions.console_label_validation_form'] = PropTypes.oneOfType([
|
|
24022
|
+
T['io.flow.internal.v0.models.console_label_request_form'],
|
|
24023
|
+
T['io.flow.internal.v0.models.console_mark_unresolvable_form'],
|
|
24024
|
+
]);
|
|
24025
|
+
|
|
23846
24026
|
T['io.flow.internal.v0.models.center_defaults_form'] = PropTypes.exact({
|
|
23847
24027
|
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
23848
24028
|
shipping_address_contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
@@ -25473,6 +25653,7 @@ T['io.flow.billing.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
25473
25653
|
'processing',
|
|
25474
25654
|
'rate_lock',
|
|
25475
25655
|
'transfer',
|
|
25656
|
+
'negative_balance_guarantee',
|
|
25476
25657
|
]);
|
|
25477
25658
|
|
|
25478
25659
|
T['io.flow.billing.v0.models.fee_deduction'] = PropTypes.exact({
|
|
@@ -26411,9 +26592,9 @@ T['io.flow.label.v0.models.shipping_notification'] = PropTypes.exact({
|
|
|
26411
26592
|
key: PropTypes.string.isRequired,
|
|
26412
26593
|
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26413
26594
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
26414
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address']
|
|
26595
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
26415
26596
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
26416
|
-
origin: T['io.flow.fulfillment.v0.models.shipping_address']
|
|
26597
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
26417
26598
|
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
26418
26599
|
service: T['io.flow.fulfillment.v0.unions.service_description'].isRequired,
|
|
26419
26600
|
window: T['io.flow.common.v0.models.datetime_range'],
|
|
@@ -28385,6 +28566,7 @@ T['io.flow.billing.internal.v0.models.bank_payment'] = PropTypes.exact({
|
|
|
28385
28566
|
sent_on: PropTypes.string,
|
|
28386
28567
|
status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
|
|
28387
28568
|
expected_delivery_by: PropTypes.string,
|
|
28569
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
28388
28570
|
total: T['io.flow.common.v0.models.price'].isRequired,
|
|
28389
28571
|
});
|
|
28390
28572
|
|
|
@@ -28900,6 +29082,22 @@ T['io.flow.return.v0.models.return_version'] = PropTypes.exact({
|
|
|
28900
29082
|
'return': T['io.flow.return.v0.models.return'].isRequired,
|
|
28901
29083
|
});
|
|
28902
29084
|
|
|
29085
|
+
T['io.flow.internal.v0.models.tam_item_form'] = PropTypes.exact({
|
|
29086
|
+
number: PropTypes.string.isRequired,
|
|
29087
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
29088
|
+
description: PropTypes.string,
|
|
29089
|
+
type: T['io.flow.internal.v0.enums.tam_item_type'].isRequired,
|
|
29090
|
+
});
|
|
29091
|
+
|
|
29092
|
+
T['io.flow.internal.v0.models.tam_item'] = PropTypes.exact({
|
|
29093
|
+
id: PropTypes.string.isRequired,
|
|
29094
|
+
number: PropTypes.string.isRequired,
|
|
29095
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
29096
|
+
description: PropTypes.string,
|
|
29097
|
+
type: T['io.flow.internal.v0.enums.tam_item_type'].isRequired,
|
|
29098
|
+
added_on: PropTypes.string.isRequired,
|
|
29099
|
+
});
|
|
29100
|
+
|
|
28903
29101
|
T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
|
|
28904
29102
|
id: PropTypes.string.isRequired,
|
|
28905
29103
|
organization: PropTypes.string.isRequired,
|
|
@@ -29486,6 +29684,7 @@ T['io.flow.internal.v0.models.bank_payment'] = PropTypes.exact({
|
|
|
29486
29684
|
sent_on: PropTypes.string,
|
|
29487
29685
|
status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
|
|
29488
29686
|
expected_delivery_by: PropTypes.string,
|
|
29687
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
29489
29688
|
total: T['io.flow.common.v0.models.price'].isRequired,
|
|
29490
29689
|
});
|
|
29491
29690
|
|
|
@@ -30485,9 +30684,18 @@ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
|
30485
30684
|
|
|
30486
30685
|
T['io.flow.internal.v0.models.report_account'] = PropTypes.exact({
|
|
30487
30686
|
id: PropTypes.string.isRequired,
|
|
30687
|
+
currency: PropTypes.string.isRequired,
|
|
30488
30688
|
source: T['io.flow.internal.v0.models.account_source'].isRequired,
|
|
30489
30689
|
});
|
|
30490
30690
|
|
|
30691
|
+
T['io.flow.internal.v0.models.scheduled_payment'] = PropTypes.exact({
|
|
30692
|
+
payment: T['io.flow.internal.v0.models.report_payment'].isRequired,
|
|
30693
|
+
bank_account: T['io.flow.internal.v0.models.report_bank_account_cleartext'].isRequired,
|
|
30694
|
+
account: T['io.flow.internal.v0.models.report_account'].isRequired,
|
|
30695
|
+
owner: T['io.flow.internal.v0.models.report_owner'].isRequired,
|
|
30696
|
+
description: PropTypes.string.isRequired,
|
|
30697
|
+
});
|
|
30698
|
+
|
|
30491
30699
|
T['io.flow.internal.v0.models.non_channel_payment_bank_account'] = PropTypes.exact({
|
|
30492
30700
|
payment: T['io.flow.internal.v0.models.report_payment'].isRequired,
|
|
30493
30701
|
bank_account: T['io.flow.internal.v0.models.report_bank_account'].isRequired,
|
|
@@ -31624,6 +31832,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
31624
31832
|
T['io.flow.internal.v0.models.restriction_organization_status_deleted'],
|
|
31625
31833
|
T['io.flow.internal.v0.models.organization_restriction_status_upserted'],
|
|
31626
31834
|
T['io.flow.internal.v0.models.organization_restriction_status_deleted'],
|
|
31835
|
+
T['io.flow.internal.v0.models.screening_status_change_upserted'],
|
|
31836
|
+
T['io.flow.internal.v0.models.screening_status_change_deleted'],
|
|
31627
31837
|
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
31628
31838
|
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
31629
31839
|
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
@@ -32095,6 +32305,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
32095
32305
|
'restriction_organization_status_deleted',
|
|
32096
32306
|
'organization_restriction_status_upserted',
|
|
32097
32307
|
'organization_restriction_status_deleted',
|
|
32308
|
+
'screening_status_change_upserted',
|
|
32309
|
+
'screening_status_change_deleted',
|
|
32098
32310
|
'shopify_shop_upserted',
|
|
32099
32311
|
'shopify_shop_deleted',
|
|
32100
32312
|
'shopify_experience_short_id_upserted',
|
|
@@ -32246,6 +32458,7 @@ T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.on
|
|
|
32246
32458
|
'flow_shop',
|
|
32247
32459
|
'online_payment',
|
|
32248
32460
|
'order_update',
|
|
32461
|
+
'order_edit',
|
|
32249
32462
|
'product_restriction_result',
|
|
32250
32463
|
'product_sync',
|
|
32251
32464
|
'webhook_registrations',
|
|
@@ -32362,6 +32575,11 @@ T['io.flow.internal.v0.models.bank_payment_form'] = PropTypes.exact({
|
|
|
32362
32575
|
amount: PropTypes.number.isRequired,
|
|
32363
32576
|
currency: PropTypes.string.isRequired,
|
|
32364
32577
|
transfer_transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
32578
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
32579
|
+
});
|
|
32580
|
+
|
|
32581
|
+
T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'] = PropTypes.exact({
|
|
32582
|
+
payment_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
32365
32583
|
});
|
|
32366
32584
|
|
|
32367
32585
|
T['io.flow.internal.v0.models.billing_authorization_reference'] = PropTypes.exact({
|
|
@@ -32379,6 +32597,7 @@ T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropType
|
|
|
32379
32597
|
|
|
32380
32598
|
T['io.flow.internal.v0.models.carrier_charge_file_form'] = PropTypes.exact({
|
|
32381
32599
|
url: PropTypes.string.isRequired,
|
|
32600
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
32382
32601
|
});
|
|
32383
32602
|
|
|
32384
32603
|
T['io.flow.internal.v0.models.carrier_invoice'] = PropTypes.exact({
|
|
@@ -32599,6 +32818,7 @@ T['io.flow.internal.v0.models.erp_priority_vendor'] = PropTypes.exact({
|
|
|
32599
32818
|
T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
|
|
32600
32819
|
acc_des: PropTypes.string,
|
|
32601
32820
|
tax_code: PropTypes.string,
|
|
32821
|
+
tax_code_2: PropTypes.string,
|
|
32602
32822
|
vat_flag: PropTypes.string,
|
|
32603
32823
|
country_name: PropTypes.string,
|
|
32604
32824
|
w_tax_percent: PropTypes.string,
|
|
@@ -32635,6 +32855,8 @@ T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
|
|
|
32635
32855
|
eacc_des: PropTypes.string,
|
|
32636
32856
|
acng_des: PropTypes.string,
|
|
32637
32857
|
branch_des: PropTypes.string,
|
|
32858
|
+
debit_entry_code: PropTypes.string,
|
|
32859
|
+
credit_entry_code: PropTypes.string,
|
|
32638
32860
|
});
|
|
32639
32861
|
|
|
32640
32862
|
T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
|
|
@@ -33286,6 +33508,10 @@ T['io.flow.internal.v0.models.subcatalog_item_count'] = PropTypes.exact({
|
|
|
33286
33508
|
count: PropTypes.number.isRequired,
|
|
33287
33509
|
});
|
|
33288
33510
|
|
|
33511
|
+
T['io.flow.internal.v0.models.svitlana_test'] = PropTypes.exact({
|
|
33512
|
+
name: PropTypes.string.isRequired,
|
|
33513
|
+
});
|
|
33514
|
+
|
|
33289
33515
|
T['io.flow.internal.v0.models.task_count'] = PropTypes.exact({
|
|
33290
33516
|
discriminator: PropTypes.string.isRequired,
|
|
33291
33517
|
count: PropTypes.number.isRequired,
|
|
@@ -34507,6 +34733,11 @@ T['io.flow.billing.internal.v0.models.bank_payment_form'] = PropTypes.exact({
|
|
|
34507
34733
|
amount: PropTypes.number.isRequired,
|
|
34508
34734
|
currency: PropTypes.string.isRequired,
|
|
34509
34735
|
transfer_transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
34736
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
34737
|
+
});
|
|
34738
|
+
|
|
34739
|
+
T['io.flow.billing.internal.v0.models.bank_payment_status_sent_import_form'] = PropTypes.exact({
|
|
34740
|
+
payment_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
34510
34741
|
});
|
|
34511
34742
|
|
|
34512
34743
|
T['io.flow.billing.internal.v0.models.billing_authorization_reference'] = PropTypes.exact({
|
|
@@ -34866,6 +35097,11 @@ export const bankPaymentForm = T['io.flow.internal.v0.models.bank_payment_form']
|
|
|
34866
35097
|
export const bankPaymentPromiseCompletedMethod = T['io.flow.internal.v0.enums.bank_payment_promise_completed_method'];
|
|
34867
35098
|
export const bankPaymentStatusCode = T['io.flow.internal.v0.enums.bank_payment_status_code'];
|
|
34868
35099
|
export const bankPaymentStatusForm = T['io.flow.internal.v0.models.bank_payment_status_form'];
|
|
35100
|
+
export const bankPaymentStatusImport = T['io.flow.internal.v0.models.bank_payment_status_import'];
|
|
35101
|
+
export const bankPaymentStatusImportForm = T['io.flow.internal.v0.models.bank_payment_status_import_form'];
|
|
35102
|
+
export const bankPaymentStatusImportResult = T['io.flow.internal.v0.models.bank_payment_status_import_result'];
|
|
35103
|
+
export const bankPaymentStatusSentImportForm = T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'];
|
|
35104
|
+
export const bankPaymentStatusSingleForm = T['io.flow.internal.v0.models.bank_payment_status_single_form'];
|
|
34869
35105
|
export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];
|
|
34870
35106
|
export const bankPaymentUpsertedV2 = T['io.flow.internal.v0.models.bank_payment_upserted_v2'];
|
|
34871
35107
|
export const billingAllocationKey = T['io.flow.internal.v0.enums.billing_allocation_key'];
|
|
@@ -35633,6 +35869,9 @@ export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
|
35633
35869
|
export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
|
|
35634
35870
|
export const complianceType = T['io.flow.internal.v0.enums.compliance_type'];
|
|
35635
35871
|
export const components = T['io.flow.internal.v0.models.components'];
|
|
35872
|
+
export const consoleLabelRequestForm = T['io.flow.internal.v0.models.console_label_request_form'];
|
|
35873
|
+
export const consoleLabelValidationForm = T['io.flow.internal.v0.unions.console_label_validation_form'];
|
|
35874
|
+
export const consoleMarkUnresolvableForm = T['io.flow.internal.v0.models.console_mark_unresolvable_form'];
|
|
35636
35875
|
export const consumerOptinActivity = T['io.flow.internal.v0.models.consumer_optin_activity'];
|
|
35637
35876
|
export const contentElementType = T['io.flow.internal.v0.enums.content_element_type'];
|
|
35638
35877
|
export const contentItem = T['io.flow.internal.v0.unions.content_item'];
|
|
@@ -36161,9 +36400,6 @@ export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creat
|
|
|
36161
36400
|
export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
|
|
36162
36401
|
export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
|
|
36163
36402
|
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
36164
|
-
export const labelGenerationAddressFailureStatus = T['io.flow.internal.v0.enums.label_generation_address_failure_status'];
|
|
36165
|
-
export const labelGenerationAddressFailureStatusUpdateForm = T['io.flow.internal.v0.models.label_generation_address_failure_status_update_form'];
|
|
36166
|
-
export const labelGenerationAddressFailures = T['io.flow.internal.v0.models.label_generation_address_failures'];
|
|
36167
36403
|
export const labelGenerationSettings = T['io.flow.internal.v0.models.label_generation_settings'];
|
|
36168
36404
|
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
36169
36405
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
@@ -36353,6 +36589,8 @@ export const optinPromptUpserted = T['io.flow.internal.v0.models.optin_prompt_up
|
|
|
36353
36589
|
export const orderAction = T['io.flow.internal.v0.enums.order_action'];
|
|
36354
36590
|
export const orderActionForm = T['io.flow.internal.v0.unions.order_action_form'];
|
|
36355
36591
|
export const orderActionability = T['io.flow.internal.v0.models.order_actionability'];
|
|
36592
|
+
export const orderAddressValidation = T['io.flow.internal.v0.models.order_address_validation'];
|
|
36593
|
+
export const orderAddressValidationStatus = T['io.flow.internal.v0.enums.order_address_validation_status'];
|
|
36356
36594
|
export const orderAttribute = T['io.flow.internal.v0.models.order_attribute'];
|
|
36357
36595
|
export const orderAttributeDeleted = T['io.flow.internal.v0.models.order_attribute_deleted'];
|
|
36358
36596
|
export const orderAttributeIntent = T['io.flow.internal.v0.enums.order_attribute_intent'];
|
|
@@ -36392,7 +36630,10 @@ export const orderTransaction = T['io.flow.internal.v0.models.order_transaction'
|
|
|
36392
36630
|
export const orderTransactionDeleted = T['io.flow.internal.v0.models.order_transaction_deleted'];
|
|
36393
36631
|
export const orderTransactionType = T['io.flow.internal.v0.enums.order_transaction_type'];
|
|
36394
36632
|
export const orderTransactionUpserted = T['io.flow.internal.v0.models.order_transaction_upserted'];
|
|
36633
|
+
export const orderValidation = T['io.flow.internal.v0.models.order_validation'];
|
|
36634
|
+
export const orderValidationAttempt = T['io.flow.internal.v0.models.order_validation_attempt'];
|
|
36395
36635
|
export const orderValidationError = T['io.flow.internal.v0.models.order_validation_error'];
|
|
36636
|
+
export const orderValidationStatus = T['io.flow.internal.v0.enums.order_validation_status'];
|
|
36396
36637
|
export const organizationAccount = T['io.flow.internal.v0.models.organization_account'];
|
|
36397
36638
|
export const organizationAccountDeleted = T['io.flow.internal.v0.models.organization_account_deleted'];
|
|
36398
36639
|
export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organization_account_upserted_v2'];
|
|
@@ -36643,8 +36884,10 @@ export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
|
36643
36884
|
export const report = T['io.flow.internal.v0.models.report'];
|
|
36644
36885
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
36645
36886
|
export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
|
|
36887
|
+
export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
|
|
36646
36888
|
export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
36647
36889
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
36890
|
+
export const reportOwner = T['io.flow.internal.v0.models.report_owner'];
|
|
36648
36891
|
export const reportPayment = T['io.flow.internal.v0.models.report_payment'];
|
|
36649
36892
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
36650
36893
|
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
@@ -36744,9 +36987,13 @@ export const salesRecordDeleted = T['io.flow.internal.v0.models.sales_record_del
|
|
|
36744
36987
|
export const salesRecordUpserted = T['io.flow.internal.v0.models.sales_record_upserted'];
|
|
36745
36988
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
36746
36989
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
36990
|
+
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
36747
36991
|
export const scope = T['io.flow.internal.v0.enums.scope'];
|
|
36748
36992
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
36749
36993
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
36994
|
+
export const screeningStatusChange = T['io.flow.internal.v0.models.screening_status_change'];
|
|
36995
|
+
export const screeningStatusChangeDeleted = T['io.flow.internal.v0.models.screening_status_change_deleted'];
|
|
36996
|
+
export const screeningStatusChangeUpserted = T['io.flow.internal.v0.models.screening_status_change_upserted'];
|
|
36750
36997
|
export const searchAuthorization = T['io.flow.internal.v0.models.search_authorization'];
|
|
36751
36998
|
export const searchCustomerSummary = T['io.flow.internal.v0.models.search_customer_summary'];
|
|
36752
36999
|
export const searchExperienceSummary = T['io.flow.internal.v0.models.search_experience_summary'];
|
|
@@ -36959,7 +37206,11 @@ export const svitlanaItem = T['io.flow.internal.v0.models.svitlana_item'];
|
|
|
36959
37206
|
export const svitlanaItemDeleted = T['io.flow.internal.v0.models.svitlana_item_deleted'];
|
|
36960
37207
|
export const svitlanaItemForm = T['io.flow.internal.v0.models.svitlana_item_form'];
|
|
36961
37208
|
export const svitlanaItemUpserted = T['io.flow.internal.v0.models.svitlana_item_upserted'];
|
|
37209
|
+
export const svitlanaTest = T['io.flow.internal.v0.models.svitlana_test'];
|
|
36962
37210
|
export const svitlanaType = T['io.flow.internal.v0.enums.svitlana_type'];
|
|
37211
|
+
export const tamItem = T['io.flow.internal.v0.models.tam_item'];
|
|
37212
|
+
export const tamItemForm = T['io.flow.internal.v0.models.tam_item_form'];
|
|
37213
|
+
export const tamItemType = T['io.flow.internal.v0.enums.tam_item_type'];
|
|
36963
37214
|
export const tariffCodeDuty = T['io.flow.internal.v0.models.tariff_code_duty'];
|
|
36964
37215
|
export const tariffCodesExport = T['io.flow.internal.v0.models.tariff_codes_export'];
|
|
36965
37216
|
export const tariffEligibility = T['io.flow.internal.v0.models.tariff_eligibility'];
|
|
@@ -37006,6 +37257,9 @@ export const timeToClassifyUpserted = T['io.flow.internal.v0.models.time_to_clas
|
|
|
37006
37257
|
export const timeWithTimezone = T['io.flow.internal.v0.models.time_with_timezone'];
|
|
37007
37258
|
export const timeseriesType = T['io.flow.internal.v0.enums.timeseries_type'];
|
|
37008
37259
|
export const tracker = T['io.flow.internal.v0.unions.tracker'];
|
|
37260
|
+
export const trackingDebugLabel = T['io.flow.internal.v0.models.tracking_debug_label'];
|
|
37261
|
+
export const trackingDebugLabelEvent = T['io.flow.internal.v0.models.tracking_debug_label_event'];
|
|
37262
|
+
export const trackingDebugLabelLocation = T['io.flow.internal.v0.models.tracking_debug_label_location'];
|
|
37009
37263
|
export const trackingDeleted = T['io.flow.internal.v0.models.tracking_deleted'];
|
|
37010
37264
|
export const trackingEvent = T['io.flow.internal.v0.models.tracking_event'];
|
|
37011
37265
|
export const trackingIntegrationType = T['io.flow.internal.v0.enums.tracking_integration_type'];
|