@flowio/api-internal-prop-types 9.24.63 → 9.24.64
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 +166 -72
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +166 -72
- package/src/api-internal.js +346 -145
package/src/api-internal.js
CHANGED
|
@@ -364,6 +364,12 @@ T['io.flow.shopify.v0.unions.shopify_cart_add_form'] = PropTypes.oneOfType([
|
|
|
364
364
|
T['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'],
|
|
365
365
|
]);
|
|
366
366
|
|
|
367
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
|
|
368
|
+
discriminator: PropTypes.oneOf(['simple']).isRequired,
|
|
369
|
+
routing_number: PropTypes.string.isRequired,
|
|
370
|
+
account_number: PropTypes.string.isRequired,
|
|
371
|
+
});
|
|
372
|
+
|
|
367
373
|
T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
|
|
368
374
|
discriminator: PropTypes.oneOf(['no_payout']).isRequired,
|
|
369
375
|
placeholder: PropTypes.string,
|
|
@@ -1289,21 +1295,6 @@ T['io.flow.payment.gateway.v0.models.payment_request_review_check'] = PropTypes.
|
|
|
1289
1295
|
|
|
1290
1296
|
T['io.flow.payment.gateway.v0.enums.payment_request_review_status'] = PropTypes.oneOf(['pending', 'approved', 'rejected']);
|
|
1291
1297
|
|
|
1292
|
-
T['io.flow.payment.gateway.v0.models.device_details_browser'] = PropTypes.exact({
|
|
1293
|
-
type: PropTypes.oneOf(['browser']).isRequired,
|
|
1294
|
-
user_agent: PropTypes.string.isRequired,
|
|
1295
|
-
origin: PropTypes.string.isRequired,
|
|
1296
|
-
accept_language: PropTypes.string,
|
|
1297
|
-
ip: PropTypes.string,
|
|
1298
|
-
time_zone_offset: PropTypes.number,
|
|
1299
|
-
date_string: PropTypes.string,
|
|
1300
|
-
navigator_language: PropTypes.string,
|
|
1301
|
-
navigator_hardware_concurrency: PropTypes.number,
|
|
1302
|
-
cookie_created_at: PropTypes.number,
|
|
1303
|
-
session_duration: PropTypes.number,
|
|
1304
|
-
fingerprint: PropTypes.string,
|
|
1305
|
-
});
|
|
1306
|
-
|
|
1307
1298
|
T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
|
|
1308
1299
|
'card',
|
|
1309
1300
|
'klarna',
|
|
@@ -2177,7 +2168,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_kind_type'] = PropTypes.oneOf(
|
|
|
2177
2168
|
T['io.flow.shopify.markets.v0.enums.incoterm_duties'] = PropTypes.oneOf(['DAP', 'DDP']);
|
|
2178
2169
|
|
|
2179
2170
|
T['io.flow.shopify.markets.v0.models.fulfillment_order_international_duties'] = PropTypes.exact({
|
|
2180
|
-
incoterm: T['io.flow.shopify.markets.v0.enums.incoterm_duties']
|
|
2171
|
+
incoterm: T['io.flow.shopify.markets.v0.enums.incoterm_duties'],
|
|
2181
2172
|
});
|
|
2182
2173
|
|
|
2183
2174
|
T['io.flow.shopify.markets.v0.models.shopify_fulfillment_order'] = PropTypes.exact({
|
|
@@ -3014,6 +3005,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
|
3014
3005
|
vendor: PropTypes.string,
|
|
3015
3006
|
body_html: PropTypes.string,
|
|
3016
3007
|
product_type: PropTypes.string,
|
|
3008
|
+
status: PropTypes.string,
|
|
3017
3009
|
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
3018
3010
|
tags: PropTypes.string,
|
|
3019
3011
|
template_suffix: PropTypes.string,
|
|
@@ -5268,6 +5260,21 @@ T['io.flow.payment.v0.models.stripe_authentication_data'] = PropTypes.exact({
|
|
|
5268
5260
|
|
|
5269
5261
|
T['io.flow.payment.v0.unions.gateway_authentication_data'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.stripe_authentication_data']]);
|
|
5270
5262
|
|
|
5263
|
+
T['io.flow.payment.v0.models.device_details_browser'] = PropTypes.exact({
|
|
5264
|
+
type: PropTypes.oneOf(['browser']).isRequired,
|
|
5265
|
+
user_agent: PropTypes.string.isRequired,
|
|
5266
|
+
origin: PropTypes.string.isRequired,
|
|
5267
|
+
accept_language: PropTypes.string,
|
|
5268
|
+
ip: PropTypes.string,
|
|
5269
|
+
time_zone_offset: PropTypes.number,
|
|
5270
|
+
date_string: PropTypes.string,
|
|
5271
|
+
navigator_language: PropTypes.string,
|
|
5272
|
+
navigator_hardware_concurrency: PropTypes.number,
|
|
5273
|
+
cookie_created_at: PropTypes.number,
|
|
5274
|
+
session_duration: PropTypes.number,
|
|
5275
|
+
fingerprint: PropTypes.string,
|
|
5276
|
+
});
|
|
5277
|
+
|
|
5271
5278
|
T['io.flow.payment.v0.models.issuer_v1'] = PropTypes.exact({
|
|
5272
5279
|
iin: PropTypes.string.isRequired,
|
|
5273
5280
|
card_brand: PropTypes.string.isRequired,
|
|
@@ -7690,6 +7697,13 @@ T['io.flow.internal.v0.models.platform_fee_change_deleted'] = PropTypes.exact({
|
|
|
7690
7697
|
id: PropTypes.string.isRequired,
|
|
7691
7698
|
});
|
|
7692
7699
|
|
|
7700
|
+
T['io.flow.internal.v0.models.standalone_attachment_deleted'] = PropTypes.exact({
|
|
7701
|
+
discriminator: PropTypes.oneOf(['standalone_attachment_deleted']).isRequired,
|
|
7702
|
+
event_id: PropTypes.string.isRequired,
|
|
7703
|
+
timestamp: PropTypes.string.isRequired,
|
|
7704
|
+
id: PropTypes.string.isRequired,
|
|
7705
|
+
});
|
|
7706
|
+
|
|
7693
7707
|
T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'] = PropTypes.exact({
|
|
7694
7708
|
discriminator: PropTypes.oneOf(['billing_statement_batch_statement_deleted']).isRequired,
|
|
7695
7709
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7953,6 +7967,13 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
7953
7967
|
id: PropTypes.string.isRequired,
|
|
7954
7968
|
});
|
|
7955
7969
|
|
|
7970
|
+
T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
|
|
7971
|
+
discriminator: PropTypes.oneOf(['daily_value_deleted']).isRequired,
|
|
7972
|
+
event_id: PropTypes.string.isRequired,
|
|
7973
|
+
timestamp: PropTypes.string.isRequired,
|
|
7974
|
+
id: PropTypes.string.isRequired,
|
|
7975
|
+
});
|
|
7976
|
+
|
|
7956
7977
|
T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
|
|
7957
7978
|
discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
|
|
7958
7979
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8588,7 +8609,7 @@ T['io.flow.internal.v0.models.spot_rate_upserted'] = PropTypes.exact({
|
|
|
8588
8609
|
spot_rate: T['io.flow.internal.v0.models.spot_rate'].isRequired,
|
|
8589
8610
|
});
|
|
8590
8611
|
|
|
8591
|
-
T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['
|
|
8612
|
+
T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['queued_record']);
|
|
8592
8613
|
|
|
8593
8614
|
T['io.flow.internal.v0.models.snooze_source'] = PropTypes.exact({
|
|
8594
8615
|
type: T['io.flow.internal.v0.enums.snooze_source_type'].isRequired,
|
|
@@ -9428,6 +9449,13 @@ T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
|
|
|
9428
9449
|
count: PropTypes.number.isRequired,
|
|
9429
9450
|
});
|
|
9430
9451
|
|
|
9452
|
+
T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
|
|
9453
|
+
rule_id: PropTypes.string.isRequired,
|
|
9454
|
+
rule_name: PropTypes.string.isRequired,
|
|
9455
|
+
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
9456
|
+
count: PropTypes.number.isRequired,
|
|
9457
|
+
});
|
|
9458
|
+
|
|
9431
9459
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
9432
9460
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9433
9461
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11610,27 +11638,11 @@ T['io.flow.payment.gateway.v0.enums.payment_action_type'] = PropTypes.oneOf([
|
|
|
11610
11638
|
'display_inline_window',
|
|
11611
11639
|
]);
|
|
11612
11640
|
|
|
11613
|
-
T['io.flow.payment.gateway.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.gateway.v0.models.device_details_browser']]);
|
|
11614
|
-
|
|
11615
11641
|
T['io.flow.payment.gateway.v0.unions.order_information'] = PropTypes.oneOfType([
|
|
11616
11642
|
T['io.flow.payment.gateway.v0.models.order_information_flow'],
|
|
11617
11643
|
T['io.flow.payment.gateway.v0.models.order_information_details'],
|
|
11618
11644
|
]);
|
|
11619
11645
|
|
|
11620
|
-
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
11621
|
-
amount: PropTypes.number.isRequired,
|
|
11622
|
-
currency: PropTypes.string.isRequired,
|
|
11623
|
-
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
11624
|
-
device_details: T['io.flow.payment.gateway.v0.unions.device_details'].isRequired,
|
|
11625
|
-
locale: PropTypes.string,
|
|
11626
|
-
return_url: PropTypes.string.isRequired,
|
|
11627
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
11628
|
-
reference: PropTypes.string,
|
|
11629
|
-
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
11630
|
-
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
11631
|
-
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
11632
|
-
});
|
|
11633
|
-
|
|
11634
11646
|
T['io.flow.payment.gateway.v0.models.payment_failure'] = PropTypes.exact({
|
|
11635
11647
|
authorization_id: PropTypes.string,
|
|
11636
11648
|
failure_code: T['io.flow.payment.gateway.v0.enums.payment_failure_code'].isRequired,
|
|
@@ -12101,48 +12113,58 @@ T['io.flow.internal.v0.models.financial_reporting_statement'] = PropTypes.exact(
|
|
|
12101
12113
|
adjustments_url: PropTypes.string,
|
|
12102
12114
|
});
|
|
12103
12115
|
|
|
12104
|
-
T['io.flow.billing.bank.account.v0.models.
|
|
12105
|
-
discriminator: PropTypes.oneOf(['
|
|
12106
|
-
|
|
12107
|
-
|
|
12116
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'] = PropTypes.exact({
|
|
12117
|
+
discriminator: PropTypes.oneOf(['ita']).isRequired,
|
|
12118
|
+
swift_code: PropTypes.string.isRequired,
|
|
12119
|
+
iban: PropTypes.string.isRequired,
|
|
12108
12120
|
});
|
|
12109
12121
|
|
|
12110
|
-
T['io.flow.
|
|
12111
|
-
|
|
12122
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'] = PropTypes.exact({
|
|
12123
|
+
discriminator: PropTypes.oneOf(['fra']).isRequired,
|
|
12124
|
+
swift_code: PropTypes.string.isRequired,
|
|
12125
|
+
iban: PropTypes.string.isRequired,
|
|
12112
12126
|
});
|
|
12113
12127
|
|
|
12114
|
-
T['io.flow.billing.bank.account.v0.
|
|
12115
|
-
|
|
12116
|
-
|
|
12117
|
-
|
|
12128
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'] = PropTypes.exact({
|
|
12129
|
+
discriminator: PropTypes.oneOf(['gbr']).isRequired,
|
|
12130
|
+
swift_code: PropTypes.string.isRequired,
|
|
12131
|
+
iban: PropTypes.string.isRequired,
|
|
12118
12132
|
});
|
|
12119
12133
|
|
|
12120
|
-
T['io.flow.
|
|
12121
|
-
|
|
12122
|
-
|
|
12134
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'] = PropTypes.exact({
|
|
12135
|
+
discriminator: PropTypes.oneOf(['can']).isRequired,
|
|
12136
|
+
routing_number: PropTypes.string.isRequired,
|
|
12137
|
+
account_number: PropTypes.string.isRequired,
|
|
12123
12138
|
});
|
|
12124
12139
|
|
|
12125
|
-
T['io.flow.
|
|
12126
|
-
|
|
12140
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'] = PropTypes.exact({
|
|
12141
|
+
discriminator: PropTypes.oneOf(['usa']).isRequired,
|
|
12142
|
+
routing_number: PropTypes.string.isRequired,
|
|
12143
|
+
account_number: PropTypes.string.isRequired,
|
|
12127
12144
|
});
|
|
12128
12145
|
|
|
12129
|
-
T['io.flow.internal.v0.models.
|
|
12130
|
-
|
|
12146
|
+
T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
|
|
12147
|
+
name: PropTypes.string.isRequired,
|
|
12131
12148
|
});
|
|
12132
12149
|
|
|
12133
|
-
T['io.flow.
|
|
12134
|
-
|
|
12135
|
-
|
|
12150
|
+
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
12151
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
12152
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
12153
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
12154
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
12155
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
12156
|
+
]);
|
|
12136
12157
|
|
|
12137
|
-
T['io.flow.
|
|
12138
|
-
|
|
12139
|
-
|
|
12140
|
-
url: PropTypes.string.isRequired,
|
|
12141
|
-
created_at: PropTypes.string.isRequired,
|
|
12142
|
-
metadata: T['io.flow.internal.v0.models.file_metadata'].isRequired,
|
|
12143
|
-
confirmation: T['io.flow.internal.v0.models.file_confirmation'],
|
|
12158
|
+
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
12159
|
+
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
12160
|
+
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
12144
12161
|
});
|
|
12145
12162
|
|
|
12163
|
+
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
12164
|
+
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
12165
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
12166
|
+
]);
|
|
12167
|
+
|
|
12146
12168
|
T['io.flow.internal.v0.enums.marketing_gateway_feed_state'] = PropTypes.oneOf(['initialized', 'generated', 'in_review', 'rejected', 'active']);
|
|
12147
12169
|
|
|
12148
12170
|
T['io.flow.internal.v0.models.marketing_gateway_feed_source_facebook'] = PropTypes.exact({
|
|
@@ -13079,8 +13101,7 @@ T['io.flow.internal.v0.models.debug_payment_transaction_summary'] = PropTypes.ex
|
|
|
13079
13101
|
type: PropTypes.string.isRequired,
|
|
13080
13102
|
processing_transaction_id: PropTypes.string,
|
|
13081
13103
|
queue_errors: PropTypes.arrayOf(PropTypes.string),
|
|
13082
|
-
|
|
13083
|
-
channel_transaction_ignore_reason: PropTypes.string,
|
|
13104
|
+
ignore_reason: PropTypes.string,
|
|
13084
13105
|
});
|
|
13085
13106
|
|
|
13086
13107
|
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
@@ -13097,6 +13118,85 @@ T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
|
13097
13118
|
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
13098
13119
|
});
|
|
13099
13120
|
|
|
13121
|
+
T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
13122
|
+
'adjustment_transactions_count',
|
|
13123
|
+
'adjustment_transactions_total',
|
|
13124
|
+
'capture_transactions_count',
|
|
13125
|
+
'capture_transactions_total',
|
|
13126
|
+
'channel_transactions_count',
|
|
13127
|
+
'channel_transactions_total',
|
|
13128
|
+
'channel_billed_transactions_count',
|
|
13129
|
+
'channel_billed_transactions_total',
|
|
13130
|
+
'credit_payment_transactions_count',
|
|
13131
|
+
'credit_payment_transactions_total',
|
|
13132
|
+
'duty_transactions_count',
|
|
13133
|
+
'duty_transactions_total',
|
|
13134
|
+
'fully_subsidized_order_transactions_count',
|
|
13135
|
+
'fully_subsidized_order_transactions_total',
|
|
13136
|
+
'billable_label_transactions_count',
|
|
13137
|
+
'billable_label_transactions_total',
|
|
13138
|
+
'revenue_share_label_transactions_count',
|
|
13139
|
+
'revenue_share_label_transactions_total',
|
|
13140
|
+
'manual_transactions_count',
|
|
13141
|
+
'manual_transactions_total',
|
|
13142
|
+
'order_transactions_count',
|
|
13143
|
+
'order_transactions_total',
|
|
13144
|
+
'refund_transactions_count',
|
|
13145
|
+
'refund_transactions_total',
|
|
13146
|
+
'reversal_order_cancellations_transactions_count',
|
|
13147
|
+
'reversal_order_cancellations_transactions_total',
|
|
13148
|
+
'reversal_external_fulfillment_transactions_count',
|
|
13149
|
+
'reversal_external_fulfillment_transactions_total',
|
|
13150
|
+
'tax_transactions_count',
|
|
13151
|
+
'tax_transactions_total',
|
|
13152
|
+
'transfer_transactions_count',
|
|
13153
|
+
'transfer_transactions_total',
|
|
13154
|
+
'fulfillments_count',
|
|
13155
|
+
'fulfillments_total',
|
|
13156
|
+
'shipping_notifications_count',
|
|
13157
|
+
'queued_capture_unprocessed_count',
|
|
13158
|
+
'queued_capture_deletion_unprocessed_count',
|
|
13159
|
+
'queued_channel_transaction_unprocessed_count',
|
|
13160
|
+
'queued_channel_organization_unprocessed_count',
|
|
13161
|
+
'queued_consumer_invoice_unprocessed_count',
|
|
13162
|
+
'queued_label_tracking_summary_unprocessed_count',
|
|
13163
|
+
'queued_order_unprocessed_count',
|
|
13164
|
+
'queued_order_identifier_unprocessed_count',
|
|
13165
|
+
'queued_refund_unprocessed_count',
|
|
13166
|
+
'queued_refund_deletion_unprocessed_count',
|
|
13167
|
+
'queued_statement_batch_unprocessed_count',
|
|
13168
|
+
'queued_statement_batch_email_unprocessed_count',
|
|
13169
|
+
'queued_statement_email_unprocessed_count',
|
|
13170
|
+
'queued_statement_summary_email_unprocessed_count',
|
|
13171
|
+
'shipping_notifications_total',
|
|
13172
|
+
'statements_no_payout_count',
|
|
13173
|
+
'statements_no_payout_total',
|
|
13174
|
+
'statements_pending_payout_count',
|
|
13175
|
+
'statements_pending_payout_total',
|
|
13176
|
+
'payouts_scheduled_count',
|
|
13177
|
+
'payouts_scheduled_total',
|
|
13178
|
+
'payouts_sent_count',
|
|
13179
|
+
'payouts_sent_total',
|
|
13180
|
+
'payouts_failed_count',
|
|
13181
|
+
'payouts_failed_total',
|
|
13182
|
+
'pending_payouts_max_age',
|
|
13183
|
+
'average_payout_amount',
|
|
13184
|
+
]);
|
|
13185
|
+
|
|
13186
|
+
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
13187
|
+
id: PropTypes.string.isRequired,
|
|
13188
|
+
key: T['io.flow.internal.v0.enums.billing_metric_key'].isRequired,
|
|
13189
|
+
value: PropTypes.number.isRequired,
|
|
13190
|
+
date: PropTypes.string.isRequired,
|
|
13191
|
+
});
|
|
13192
|
+
|
|
13193
|
+
T['io.flow.internal.v0.models.daily_value_upserted'] = PropTypes.exact({
|
|
13194
|
+
discriminator: PropTypes.oneOf(['daily_value_upserted']).isRequired,
|
|
13195
|
+
event_id: PropTypes.string.isRequired,
|
|
13196
|
+
timestamp: PropTypes.string.isRequired,
|
|
13197
|
+
daily_value: T['io.flow.internal.v0.models.daily_value'].isRequired,
|
|
13198
|
+
});
|
|
13199
|
+
|
|
13100
13200
|
T['io.flow.internal.v0.models.daily_experiment_results'] = PropTypes.exact({
|
|
13101
13201
|
id: PropTypes.string.isRequired,
|
|
13102
13202
|
day: PropTypes.string.isRequired,
|
|
@@ -14678,33 +14778,6 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
|
|
|
14678
14778
|
possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
14679
14779
|
});
|
|
14680
14780
|
|
|
14681
|
-
T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
14682
|
-
id: PropTypes.string.isRequired,
|
|
14683
|
-
status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
|
|
14684
|
-
created_at: PropTypes.string.isRequired,
|
|
14685
|
-
updated_at: PropTypes.string.isRequired,
|
|
14686
|
-
available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
|
|
14687
|
-
last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
|
|
14688
|
-
next_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
14689
|
-
amount: PropTypes.number.isRequired,
|
|
14690
|
-
currency: PropTypes.string.isRequired,
|
|
14691
|
-
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
14692
|
-
device_details: T['io.flow.payment.gateway.v0.unions.device_details'].isRequired,
|
|
14693
|
-
locale: PropTypes.string,
|
|
14694
|
-
return_url: PropTypes.string.isRequired,
|
|
14695
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
14696
|
-
reference: PropTypes.string,
|
|
14697
|
-
payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
|
|
14698
|
-
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
14699
|
-
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
14700
|
-
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
14701
|
-
});
|
|
14702
|
-
|
|
14703
|
-
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
14704
|
-
payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
|
|
14705
|
-
actual_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
14706
|
-
});
|
|
14707
|
-
|
|
14708
14781
|
T['io.flow.reference.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
|
|
14709
14782
|
|
|
14710
14783
|
T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
|
|
@@ -16269,6 +16342,49 @@ T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
|
16269
16342
|
'total_changed',
|
|
16270
16343
|
]);
|
|
16271
16344
|
|
|
16345
|
+
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
16346
|
+
|
|
16347
|
+
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
16348
|
+
amount: PropTypes.number.isRequired,
|
|
16349
|
+
currency: PropTypes.string.isRequired,
|
|
16350
|
+
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
16351
|
+
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
16352
|
+
locale: PropTypes.string,
|
|
16353
|
+
return_url: PropTypes.string.isRequired,
|
|
16354
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16355
|
+
reference: PropTypes.string,
|
|
16356
|
+
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
16357
|
+
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
16358
|
+
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
16359
|
+
});
|
|
16360
|
+
|
|
16361
|
+
T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
16362
|
+
id: PropTypes.string.isRequired,
|
|
16363
|
+
status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
|
|
16364
|
+
created_at: PropTypes.string.isRequired,
|
|
16365
|
+
updated_at: PropTypes.string.isRequired,
|
|
16366
|
+
available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
|
|
16367
|
+
last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
|
|
16368
|
+
next_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
16369
|
+
amount: PropTypes.number.isRequired,
|
|
16370
|
+
currency: PropTypes.string.isRequired,
|
|
16371
|
+
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
16372
|
+
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
16373
|
+
locale: PropTypes.string,
|
|
16374
|
+
return_url: PropTypes.string.isRequired,
|
|
16375
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16376
|
+
reference: PropTypes.string,
|
|
16377
|
+
payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
|
|
16378
|
+
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
16379
|
+
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
16380
|
+
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
16381
|
+
});
|
|
16382
|
+
|
|
16383
|
+
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
16384
|
+
payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
|
|
16385
|
+
actual_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
16386
|
+
});
|
|
16387
|
+
|
|
16272
16388
|
T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
|
|
16273
16389
|
ip: PropTypes.string,
|
|
16274
16390
|
country: PropTypes.string.isRequired,
|
|
@@ -18935,42 +19051,6 @@ T['io.flow.internal.v0.models.bitpay_authentication'] = PropTypes.exact({
|
|
|
18935
19051
|
secret_key_reference: PropTypes.string.isRequired,
|
|
18936
19052
|
});
|
|
18937
19053
|
|
|
18938
|
-
T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
|
|
18939
|
-
id: PropTypes.string.isRequired,
|
|
18940
|
-
});
|
|
18941
|
-
|
|
18942
|
-
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
18943
|
-
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
18944
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
18945
|
-
});
|
|
18946
|
-
|
|
18947
|
-
T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
18948
|
-
id: PropTypes.string.isRequired,
|
|
18949
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
18950
|
-
reason: PropTypes.string.isRequired,
|
|
18951
|
-
});
|
|
18952
|
-
|
|
18953
|
-
T['io.flow.internal.v0.models.billing_statement_batch_reference'] = PropTypes.exact({
|
|
18954
|
-
id: PropTypes.string.isRequired,
|
|
18955
|
-
});
|
|
18956
|
-
|
|
18957
|
-
T['io.flow.internal.v0.models.billing_statement_batch_statement'] = PropTypes.exact({
|
|
18958
|
-
id: PropTypes.string.isRequired,
|
|
18959
|
-
batch: T['io.flow.internal.v0.models.billing_statement_batch_reference'].isRequired,
|
|
18960
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
18961
|
-
});
|
|
18962
|
-
|
|
18963
|
-
T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = PropTypes.exact({
|
|
18964
|
-
discriminator: PropTypes.oneOf(['billing_statement_batch_statement_upserted']).isRequired,
|
|
18965
|
-
event_id: PropTypes.string.isRequired,
|
|
18966
|
-
timestamp: PropTypes.string.isRequired,
|
|
18967
|
-
billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
|
|
18968
|
-
});
|
|
18969
|
-
|
|
18970
|
-
T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'] = PropTypes.exact({
|
|
18971
|
-
month: PropTypes.string.isRequired,
|
|
18972
|
-
});
|
|
18973
|
-
|
|
18974
19054
|
T['io.flow.common.v0.models.datetime_range'] = PropTypes.exact({
|
|
18975
19055
|
from: PropTypes.string.isRequired,
|
|
18976
19056
|
to: PropTypes.string.isRequired,
|
|
@@ -19102,9 +19182,44 @@ T['io.flow.internal.v0.models.checkout_order_deliveries'] = PropTypes.exact({
|
|
|
19102
19182
|
all: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkout_order_delivery']).isRequired,
|
|
19103
19183
|
});
|
|
19104
19184
|
|
|
19185
|
+
T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
|
|
19186
|
+
id: PropTypes.string.isRequired,
|
|
19187
|
+
});
|
|
19188
|
+
|
|
19189
|
+
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
19190
|
+
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
19191
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19192
|
+
});
|
|
19193
|
+
|
|
19194
|
+
T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
19195
|
+
id: PropTypes.string.isRequired,
|
|
19196
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19197
|
+
reason: PropTypes.string.isRequired,
|
|
19198
|
+
});
|
|
19199
|
+
|
|
19200
|
+
T['io.flow.internal.v0.models.billing_statement_batch_reference'] = PropTypes.exact({
|
|
19201
|
+
id: PropTypes.string.isRequired,
|
|
19202
|
+
});
|
|
19203
|
+
|
|
19204
|
+
T['io.flow.internal.v0.models.billing_statement_batch_statement'] = PropTypes.exact({
|
|
19205
|
+
id: PropTypes.string.isRequired,
|
|
19206
|
+
batch: T['io.flow.internal.v0.models.billing_statement_batch_reference'].isRequired,
|
|
19207
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19208
|
+
});
|
|
19209
|
+
|
|
19210
|
+
T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = PropTypes.exact({
|
|
19211
|
+
discriminator: PropTypes.oneOf(['billing_statement_batch_statement_upserted']).isRequired,
|
|
19212
|
+
event_id: PropTypes.string.isRequired,
|
|
19213
|
+
timestamp: PropTypes.string.isRequired,
|
|
19214
|
+
billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
|
|
19215
|
+
});
|
|
19216
|
+
|
|
19217
|
+
T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'] = PropTypes.exact({
|
|
19218
|
+
month: PropTypes.string.isRequired,
|
|
19219
|
+
});
|
|
19220
|
+
|
|
19105
19221
|
T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
|
|
19106
19222
|
id: PropTypes.string.isRequired,
|
|
19107
|
-
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
19108
19223
|
reconciliation: T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'].isRequired,
|
|
19109
19224
|
});
|
|
19110
19225
|
|
|
@@ -19132,6 +19247,21 @@ T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneO
|
|
|
19132
19247
|
'all',
|
|
19133
19248
|
]);
|
|
19134
19249
|
|
|
19250
|
+
T['io.flow.internal.v0.models.standalone_attachment'] = PropTypes.exact({
|
|
19251
|
+
id: PropTypes.string.isRequired,
|
|
19252
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19253
|
+
key: T['io.flow.internal.v0.enums.billing_statement_attachment_key'].isRequired,
|
|
19254
|
+
name: PropTypes.string.isRequired,
|
|
19255
|
+
url: PropTypes.string.isRequired,
|
|
19256
|
+
});
|
|
19257
|
+
|
|
19258
|
+
T['io.flow.internal.v0.models.standalone_attachment_upserted'] = PropTypes.exact({
|
|
19259
|
+
discriminator: PropTypes.oneOf(['standalone_attachment_upserted']).isRequired,
|
|
19260
|
+
event_id: PropTypes.string.isRequired,
|
|
19261
|
+
timestamp: PropTypes.string.isRequired,
|
|
19262
|
+
attachment: T['io.flow.internal.v0.models.standalone_attachment'].isRequired,
|
|
19263
|
+
});
|
|
19264
|
+
|
|
19135
19265
|
T['io.flow.internal.v0.models.billing_statement_attachment'] = PropTypes.exact({
|
|
19136
19266
|
key: T['io.flow.internal.v0.enums.billing_statement_attachment_key'].isRequired,
|
|
19137
19267
|
name: PropTypes.string.isRequired,
|
|
@@ -19170,7 +19300,7 @@ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
|
|
|
19170
19300
|
destination: T['io.flow.internal.v0.models.billing_order_destination'],
|
|
19171
19301
|
});
|
|
19172
19302
|
|
|
19173
|
-
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'could_not_process']);
|
|
19303
|
+
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
|
|
19174
19304
|
T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
19175
19305
|
|
|
19176
19306
|
T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
@@ -22903,6 +23033,10 @@ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state
|
|
|
22903
23033
|
).isRequired,
|
|
22904
23034
|
|
|
22905
23035
|
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
23036
|
+
started_at: PropTypes.string,
|
|
23037
|
+
time_blocked: PropTypes.number,
|
|
23038
|
+
blocked_since: PropTypes.string,
|
|
23039
|
+
completed_at: PropTypes.string,
|
|
22906
23040
|
});
|
|
22907
23041
|
|
|
22908
23042
|
T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'] = PropTypes.exact({
|
|
@@ -24511,6 +24645,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
24511
24645
|
rules: T['io.flow.experience.v0.models.order_rules_summary'],
|
|
24512
24646
|
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
24513
24647
|
geo: T['io.flow.experience.v0.models.order_geo'],
|
|
24648
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
24514
24649
|
});
|
|
24515
24650
|
|
|
24516
24651
|
T['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -25727,6 +25862,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25727
25862
|
T['io.flow.internal.v0.models.tax_transaction_deleted'],
|
|
25728
25863
|
T['io.flow.internal.v0.models.duty_transaction_upserted'],
|
|
25729
25864
|
T['io.flow.internal.v0.models.duty_transaction_deleted'],
|
|
25865
|
+
T['io.flow.internal.v0.models.daily_value_upserted'],
|
|
25866
|
+
T['io.flow.internal.v0.models.daily_value_deleted'],
|
|
25730
25867
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
25731
25868
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
25732
25869
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -25813,6 +25950,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25813
25950
|
T['io.flow.internal.v0.models.billing_statement_batch_deleted'],
|
|
25814
25951
|
T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'],
|
|
25815
25952
|
T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'],
|
|
25953
|
+
T['io.flow.internal.v0.models.standalone_attachment_upserted'],
|
|
25954
|
+
T['io.flow.internal.v0.models.standalone_attachment_deleted'],
|
|
25816
25955
|
T['io.flow.internal.v0.models.platform_fee_change_upserted'],
|
|
25817
25956
|
T['io.flow.internal.v0.models.platform_fee_change_deleted'],
|
|
25818
25957
|
T['io.flow.internal.v0.models.organization_bank_account_upserted'],
|
|
@@ -26147,6 +26286,14 @@ T['io.flow.internal.v0.models.lab_project_settings'] = PropTypes.exact({
|
|
|
26147
26286
|
T['io.flow.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
26148
26287
|
T['io.flow.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
|
|
26149
26288
|
|
|
26289
|
+
T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
|
|
26290
|
+
'prr-3ce7d556f2464314ab0a3e8eee33e0ce',
|
|
26291
|
+
'prr-599c6246a1a24752aeb85e8f79030781',
|
|
26292
|
+
'prr-79e41878ea564f9c81cc432a0e84703f',
|
|
26293
|
+
'prr-f29c26dc09e04536bc77f9c32786ed70',
|
|
26294
|
+
'prr-0522d426a5b741c791ba05496c35297a',
|
|
26295
|
+
]);
|
|
26296
|
+
|
|
26150
26297
|
T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
26151
26298
|
'freight_cost',
|
|
26152
26299
|
'adjustment',
|
|
@@ -26248,6 +26395,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26248
26395
|
'tax_transaction_deleted',
|
|
26249
26396
|
'duty_transaction_upserted',
|
|
26250
26397
|
'duty_transaction_deleted',
|
|
26398
|
+
'daily_value_upserted',
|
|
26399
|
+
'daily_value_deleted',
|
|
26251
26400
|
'calculator_organization_settings_upserted',
|
|
26252
26401
|
'calculator_organization_settings_deleted',
|
|
26253
26402
|
'carrier_account_upserted_v2',
|
|
@@ -26334,6 +26483,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26334
26483
|
'billing_statement_batch_deleted',
|
|
26335
26484
|
'billing_statement_batch_statement_upserted',
|
|
26336
26485
|
'billing_statement_batch_statement_deleted',
|
|
26486
|
+
'standalone_attachment_upserted',
|
|
26487
|
+
'standalone_attachment_deleted',
|
|
26337
26488
|
'platform_fee_change_upserted',
|
|
26338
26489
|
'platform_fee_change_deleted',
|
|
26339
26490
|
'organization_bank_account_upserted',
|
|
@@ -26525,6 +26676,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
|
|
|
26525
26676
|
|
|
26526
26677
|
T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
|
|
26527
26678
|
T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
|
|
26679
|
+
T['io.flow.internal.v0.enums.organization_metric_type'] = PropTypes.oneOf(['organization_restriction_snapshot', 'organization_restriction_status']);
|
|
26528
26680
|
T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
|
|
26529
26681
|
T['io.flow.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
|
|
26530
26682
|
|
|
@@ -26546,7 +26698,27 @@ T['io.flow.internal.v0.enums.processing_transaction_type'] = PropTypes.oneOf([
|
|
|
26546
26698
|
'credit_payment',
|
|
26547
26699
|
]);
|
|
26548
26700
|
|
|
26701
|
+
T['io.flow.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft']);
|
|
26549
26702
|
T['io.flow.internal.v0.enums.prompt_action'] = PropTypes.oneOf(['prompt_displayed', 'consent_granted', 'consent_denied']);
|
|
26703
|
+
|
|
26704
|
+
T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
26705
|
+
'capture',
|
|
26706
|
+
'capture_deletion',
|
|
26707
|
+
'channel_transaction',
|
|
26708
|
+
'channel_organization',
|
|
26709
|
+
'consumer_invoice',
|
|
26710
|
+
'label_tracking_summary',
|
|
26711
|
+
'order',
|
|
26712
|
+
'order_identifier',
|
|
26713
|
+
'refund',
|
|
26714
|
+
'refund_deletion',
|
|
26715
|
+
'statement_batch',
|
|
26716
|
+
'statement_batch_email',
|
|
26717
|
+
'statement_email',
|
|
26718
|
+
'statement_summary_email',
|
|
26719
|
+
'wash',
|
|
26720
|
+
]);
|
|
26721
|
+
|
|
26550
26722
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
26551
26723
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
26552
26724
|
T['io.flow.internal.v0.enums.serial_reservation_error'] = PropTypes.oneOf(['duration_too_long', 'items_not_found', 'reservation_expired']);
|
|
@@ -26782,6 +26954,15 @@ T['io.flow.internal.v0.models.classification_requeue_request'] = PropTypes.exact
|
|
|
26782
26954
|
message: PropTypes.string.isRequired,
|
|
26783
26955
|
});
|
|
26784
26956
|
|
|
26957
|
+
T['io.flow.internal.v0.models.classification_summary_report_payload'] = PropTypes.exact({
|
|
26958
|
+
organization_id: PropTypes.string,
|
|
26959
|
+
product_id: PropTypes.string,
|
|
26960
|
+
date_from: PropTypes.string,
|
|
26961
|
+
date_to: PropTypes.string,
|
|
26962
|
+
email: PropTypes.string.isRequired,
|
|
26963
|
+
limit: PropTypes.number.isRequired,
|
|
26964
|
+
});
|
|
26965
|
+
|
|
26785
26966
|
T['io.flow.internal.v0.models.commercial_invoice_comparison'] = PropTypes.exact({
|
|
26786
26967
|
urls: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
26787
26968
|
});
|
|
@@ -26836,6 +27017,10 @@ T['io.flow.internal.v0.models.decrypted_cipher'] = PropTypes.exact({
|
|
|
26836
27017
|
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26837
27018
|
});
|
|
26838
27019
|
|
|
27020
|
+
T['io.flow.internal.v0.models.delete_transitions_put_form'] = PropTypes.exact({
|
|
27021
|
+
transition_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27022
|
+
});
|
|
27023
|
+
|
|
26839
27024
|
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
26840
27025
|
amount: PropTypes.number.isRequired,
|
|
26841
27026
|
description: PropTypes.string,
|
|
@@ -26893,11 +27078,6 @@ T['io.flow.internal.v0.models.feature_release_form'] = PropTypes.exact({
|
|
|
26893
27078
|
released_at: PropTypes.string,
|
|
26894
27079
|
});
|
|
26895
27080
|
|
|
26896
|
-
T['io.flow.internal.v0.models.file_confirmation_form'] = PropTypes.exact({
|
|
26897
|
-
count_transactions: PropTypes.number.isRequired,
|
|
26898
|
-
count_statements: PropTypes.number.isRequired,
|
|
26899
|
-
});
|
|
26900
|
-
|
|
26901
27081
|
T['io.flow.internal.v0.models.financial_merchant_category'] = PropTypes.exact({
|
|
26902
27082
|
id: PropTypes.string.isRequired,
|
|
26903
27083
|
iso_18245_4: PropTypes.string.isRequired,
|
|
@@ -27135,6 +27315,11 @@ T['io.flow.internal.v0.models.organization_membership_copy_form'] = PropTypes.ex
|
|
|
27135
27315
|
to: PropTypes.string.isRequired,
|
|
27136
27316
|
});
|
|
27137
27317
|
|
|
27318
|
+
T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'] = PropTypes.exact({
|
|
27319
|
+
organization: PropTypes.string.isRequired,
|
|
27320
|
+
validation_errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27321
|
+
});
|
|
27322
|
+
|
|
27138
27323
|
T['io.flow.internal.v0.models.partner_organization_authorization_form'] = PropTypes.exact({
|
|
27139
27324
|
partner: PropTypes.string.isRequired,
|
|
27140
27325
|
});
|
|
@@ -27232,6 +27417,10 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
27232
27417
|
margin: PropTypes.number.isRequired,
|
|
27233
27418
|
});
|
|
27234
27419
|
|
|
27420
|
+
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
27421
|
+
task_id: PropTypes.string.isRequired,
|
|
27422
|
+
});
|
|
27423
|
+
|
|
27235
27424
|
T['io.flow.internal.v0.models.requeue_request_form'] = PropTypes.exact({
|
|
27236
27425
|
product_ids: PropTypes.arrayOf(PropTypes.string),
|
|
27237
27426
|
hs6_codes: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -27385,6 +27574,13 @@ T['io.flow.internal.v0.models.shopify_promotion_form'] = PropTypes.exact({
|
|
|
27385
27574
|
code: PropTypes.string.isRequired,
|
|
27386
27575
|
});
|
|
27387
27576
|
|
|
27577
|
+
T['io.flow.internal.v0.models.shopify_shop_statistics'] = PropTypes.exact({
|
|
27578
|
+
id: PropTypes.string.isRequired,
|
|
27579
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
27580
|
+
catalog_sync_duration: PropTypes.number,
|
|
27581
|
+
catalog_products_count: PropTypes.number,
|
|
27582
|
+
});
|
|
27583
|
+
|
|
27388
27584
|
T['io.flow.internal.v0.models.shopify_webhook_event'] = PropTypes.exact({
|
|
27389
27585
|
placeholder: PropTypes.string.isRequired,
|
|
27390
27586
|
});
|
|
@@ -27393,11 +27589,6 @@ T['io.flow.internal.v0.models.store_connection_form'] = PropTypes.exact({
|
|
|
27393
27589
|
organization: PropTypes.string.isRequired,
|
|
27394
27590
|
});
|
|
27395
27591
|
|
|
27396
|
-
T['io.flow.internal.v0.models.stream'] = PropTypes.exact({
|
|
27397
|
-
id: PropTypes.string.isRequired,
|
|
27398
|
-
key: PropTypes.string.isRequired,
|
|
27399
|
-
});
|
|
27400
|
-
|
|
27401
27592
|
T['io.flow.internal.v0.models.subcatalog_item_count'] = PropTypes.exact({
|
|
27402
27593
|
key: PropTypes.string.isRequired,
|
|
27403
27594
|
count: PropTypes.number.isRequired,
|
|
@@ -28517,6 +28708,7 @@ export const authorizedChargeStatus = T['io.flow.internal.v0.models.authorized_c
|
|
|
28517
28708
|
export const authorizedLineItemCharge = T['io.flow.internal.v0.models.authorized_line_item_charge'];
|
|
28518
28709
|
export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_order_charge'];
|
|
28519
28710
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
28711
|
+
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
28520
28712
|
export const backfill = T['io.flow.internal.v0.models.backfill'];
|
|
28521
28713
|
export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
|
|
28522
28714
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
@@ -28533,6 +28725,7 @@ export const billingAuthorizationReference = T['io.flow.internal.v0.models.billi
|
|
|
28533
28725
|
export const billingInvoiceSummary = T['io.flow.internal.v0.models.billing_invoice_summary'];
|
|
28534
28726
|
export const billingLabelSummary = T['io.flow.internal.v0.models.billing_label_summary'];
|
|
28535
28727
|
export const billingLabelTrackingSummaryReference = T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'];
|
|
28728
|
+
export const billingMetricKey = T['io.flow.internal.v0.enums.billing_metric_key'];
|
|
28536
28729
|
export const billingOrderDestination = T['io.flow.internal.v0.models.billing_order_destination'];
|
|
28537
28730
|
export const billingOrderSummary = T['io.flow.internal.v0.models.billing_order_summary'];
|
|
28538
28731
|
export const billingOrderTransactionOrderReference = T['io.flow.internal.v0.models.billing_order_transaction_order_reference'];
|
|
@@ -29244,6 +29437,7 @@ export const classificationProductSummaryPage = T['io.flow.internal.v0.models.cl
|
|
|
29244
29437
|
export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
|
|
29245
29438
|
export const classificationResponse = T['io.flow.internal.v0.unions.classification_response'];
|
|
29246
29439
|
export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
|
|
29440
|
+
export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
|
|
29247
29441
|
export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
|
|
29248
29442
|
export const classificationWrapper = T['io.flow.internal.v0.models.classification_wrapper'];
|
|
29249
29443
|
export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
|
|
@@ -29312,6 +29506,9 @@ export const dailyExperimentEngineResults = T['io.flow.internal.v0.models.daily_
|
|
|
29312
29506
|
export const dailyExperimentResults = T['io.flow.internal.v0.models.daily_experiment_results'];
|
|
29313
29507
|
export const dailyExperimentResultsDeleted = T['io.flow.internal.v0.models.daily_experiment_results_deleted'];
|
|
29314
29508
|
export const dailyExperimentResultsUpserted = T['io.flow.internal.v0.models.daily_experiment_results_upserted'];
|
|
29509
|
+
export const dailyValue = T['io.flow.internal.v0.models.daily_value'];
|
|
29510
|
+
export const dailyValueDeleted = T['io.flow.internal.v0.models.daily_value_deleted'];
|
|
29511
|
+
export const dailyValueUpserted = T['io.flow.internal.v0.models.daily_value_upserted'];
|
|
29315
29512
|
export const debugDetails = T['io.flow.internal.v0.models.debug_details'];
|
|
29316
29513
|
export const debugLabel = T['io.flow.internal.v0.models.debug_label'];
|
|
29317
29514
|
export const debugLabelTransactionSummary = T['io.flow.internal.v0.models.debug_label_transaction_summary'];
|
|
@@ -29332,6 +29529,7 @@ export const declineReasonFraud = T['io.flow.internal.v0.models.decline_reason_f
|
|
|
29332
29529
|
export const decryptCipherForm = T['io.flow.internal.v0.models.decrypt_cipher_form'];
|
|
29333
29530
|
export const decryptedCipher = T['io.flow.internal.v0.models.decrypted_cipher'];
|
|
29334
29531
|
export const deleteIndexTask = T['io.flow.internal.v0.models.delete_index_task'];
|
|
29532
|
+
export const deleteTransitionsPutForm = T['io.flow.internal.v0.models.delete_transitions_put_form'];
|
|
29335
29533
|
export const deliveredDutyOption = T['io.flow.internal.v0.models.delivered_duty_option'];
|
|
29336
29534
|
export const deliveredDutyOptionMessage = T['io.flow.internal.v0.models.delivered_duty_option_message'];
|
|
29337
29535
|
export const deliveredDutyOptionMessageType = T['io.flow.internal.v0.enums.delivered_duty_option_message_type'];
|
|
@@ -29504,11 +29702,6 @@ export const feedUpserted = T['io.flow.internal.v0.models.feed_upserted'];
|
|
|
29504
29702
|
export const feedsExport = T['io.flow.internal.v0.models.feeds_export'];
|
|
29505
29703
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
29506
29704
|
export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
|
|
29507
|
-
export const file = T['io.flow.internal.v0.models.file'];
|
|
29508
|
-
export const fileConfirmation = T['io.flow.internal.v0.models.file_confirmation'];
|
|
29509
|
-
export const fileConfirmationForm = T['io.flow.internal.v0.models.file_confirmation_form'];
|
|
29510
|
-
export const fileMetadata = T['io.flow.internal.v0.models.file_metadata'];
|
|
29511
|
-
export const fileMetadataCounts = T['io.flow.internal.v0.models.file_metadata_counts'];
|
|
29512
29705
|
export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
|
|
29513
29706
|
export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
|
|
29514
29707
|
export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
|
|
@@ -29985,7 +30178,9 @@ export const organizationDebugTransaction = T['io.flow.internal.v0.models.organi
|
|
|
29985
30178
|
export const organizationInvitationAcceptForm = T['io.flow.internal.v0.models.organization_invitation_accept_form'];
|
|
29986
30179
|
export const organizationMembershipCopy = T['io.flow.internal.v0.models.organization_membership_copy'];
|
|
29987
30180
|
export const organizationMembershipCopyForm = T['io.flow.internal.v0.models.organization_membership_copy_form'];
|
|
30181
|
+
export const organizationMetricType = T['io.flow.internal.v0.enums.organization_metric_type'];
|
|
29988
30182
|
export const organizationOnboardingStateAdjustmentResult = T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'];
|
|
30183
|
+
export const organizationOnboardingStateAuditResult = T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'];
|
|
29989
30184
|
export const organizationPaymentSetting = T['io.flow.internal.v0.models.organization_payment_setting'];
|
|
29990
30185
|
export const organizationPaymentSettingDeleted = T['io.flow.internal.v0.models.organization_payment_setting_deleted'];
|
|
29991
30186
|
export const organizationPaymentSettingForm = T['io.flow.internal.v0.models.organization_payment_setting_form'];
|
|
@@ -30116,6 +30311,7 @@ export const productHarmonizationForm = T['io.flow.internal.v0.models.product_ha
|
|
|
30116
30311
|
export const productLabels = T['io.flow.internal.v0.models.product_labels'];
|
|
30117
30312
|
export const productListSettingsForm = T['io.flow.internal.v0.models.product_list_settings_form'];
|
|
30118
30313
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
30314
|
+
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
30119
30315
|
export const promptAction = T['io.flow.internal.v0.enums.prompt_action'];
|
|
30120
30316
|
export const promptCheckoutDisplayPosition = T['io.flow.internal.v0.enums.prompt_checkout_display_position'];
|
|
30121
30317
|
export const promptOptions = T['io.flow.internal.v0.enums.prompt_options'];
|
|
@@ -30125,6 +30321,7 @@ export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.p
|
|
|
30125
30321
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
30126
30322
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
30127
30323
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
30324
|
+
export const queuedRecordType = T['io.flow.internal.v0.enums.queued_record_type'];
|
|
30128
30325
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
30129
30326
|
export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
|
|
30130
30327
|
export const rateAndRuleItem = T['io.flow.internal.v0.models.rate_and_rule_item'];
|
|
@@ -30191,6 +30388,8 @@ export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.mo
|
|
|
30191
30388
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
30192
30389
|
export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
30193
30390
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
30391
|
+
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
30392
|
+
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
30194
30393
|
export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
|
|
30195
30394
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
30196
30395
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
@@ -30349,6 +30548,7 @@ export const shopifyPromotionRule = T['io.flow.internal.v0.models.shopify_promot
|
|
|
30349
30548
|
export const shopifyPromotionStatus = T['io.flow.internal.v0.enums.shopify_promotion_status'];
|
|
30350
30549
|
export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
|
|
30351
30550
|
export const shopifyShopDeleted = T['io.flow.internal.v0.models.shopify_shop_deleted'];
|
|
30551
|
+
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
30352
30552
|
export const shopifyShopUpserted = T['io.flow.internal.v0.models.shopify_shop_upserted'];
|
|
30353
30553
|
export const shopifyWebhook = T['io.flow.internal.v0.models.shopify_webhook'];
|
|
30354
30554
|
export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook_event'];
|
|
@@ -30376,14 +30576,15 @@ export const spotRateMetadataIdentity = T['io.flow.internal.v0.models.spot_rate_
|
|
|
30376
30576
|
export const spotRateMetadataRate = T['io.flow.internal.v0.models.spot_rate_metadata_rate'];
|
|
30377
30577
|
export const spotRateUpserted = T['io.flow.internal.v0.models.spot_rate_upserted'];
|
|
30378
30578
|
export const spotRateVersion = T['io.flow.internal.v0.models.spot_rate_version'];
|
|
30579
|
+
export const standaloneAttachment = T['io.flow.internal.v0.models.standalone_attachment'];
|
|
30580
|
+
export const standaloneAttachmentDeleted = T['io.flow.internal.v0.models.standalone_attachment_deleted'];
|
|
30581
|
+
export const standaloneAttachmentUpserted = T['io.flow.internal.v0.models.standalone_attachment_upserted'];
|
|
30379
30582
|
export const statementStatus = T['io.flow.internal.v0.enums.statement_status'];
|
|
30380
30583
|
export const statementTransferTransactionLocation = T['io.flow.internal.v0.enums.statement_transfer_transaction_location'];
|
|
30381
30584
|
export const statisticType = T['io.flow.internal.v0.enums.statistic_type'];
|
|
30382
30585
|
export const status = T['io.flow.internal.v0.enums.status'];
|
|
30383
30586
|
export const storeConnection = T['io.flow.internal.v0.models.store_connection'];
|
|
30384
30587
|
export const storeConnectionForm = T['io.flow.internal.v0.models.store_connection_form'];
|
|
30385
|
-
export const stream = T['io.flow.internal.v0.models.stream'];
|
|
30386
|
-
export const streamReference = T['io.flow.internal.v0.models.stream_reference'];
|
|
30387
30588
|
export const stringFeatureDefaultValue = T['io.flow.internal.v0.models.string_feature_default_value'];
|
|
30388
30589
|
export const stringFeatureRule = T['io.flow.internal.v0.models.string_feature_rule'];
|
|
30389
30590
|
export const stringFeatureRuleForm = T['io.flow.internal.v0.models.string_feature_rule_form'];
|
|
@@ -30530,4 +30731,4 @@ export const washExportRequest = T['io.flow.internal.v0.models.wash_export_reque
|
|
|
30530
30731
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
30531
30732
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|
|
30532
30733
|
export const webhook = T['io.flow.internal.v0.models.webhook'];
|
|
30533
|
-
export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];
|
|
30734
|
+
export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];
|