@flowio/api-internal-prop-types 9.24.63 → 9.24.65
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 +204 -71
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +204 -71
- package/src/api-internal.js +390 -145
package/src/api-internal.js
CHANGED
|
@@ -159,7 +159,6 @@ T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
|
|
|
159
159
|
item_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
160
160
|
});
|
|
161
161
|
|
|
162
|
-
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
|
|
163
162
|
T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
|
|
164
163
|
T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
|
|
165
164
|
T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
|
|
@@ -364,6 +363,12 @@ T['io.flow.shopify.v0.unions.shopify_cart_add_form'] = PropTypes.oneOfType([
|
|
|
364
363
|
T['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'],
|
|
365
364
|
]);
|
|
366
365
|
|
|
366
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
|
|
367
|
+
discriminator: PropTypes.oneOf(['simple']).isRequired,
|
|
368
|
+
routing_number: PropTypes.string.isRequired,
|
|
369
|
+
account_number: PropTypes.string.isRequired,
|
|
370
|
+
});
|
|
371
|
+
|
|
367
372
|
T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
|
|
368
373
|
discriminator: PropTypes.oneOf(['no_payout']).isRequired,
|
|
369
374
|
placeholder: PropTypes.string,
|
|
@@ -1289,21 +1294,6 @@ T['io.flow.payment.gateway.v0.models.payment_request_review_check'] = PropTypes.
|
|
|
1289
1294
|
|
|
1290
1295
|
T['io.flow.payment.gateway.v0.enums.payment_request_review_status'] = PropTypes.oneOf(['pending', 'approved', 'rejected']);
|
|
1291
1296
|
|
|
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
1297
|
T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
|
|
1308
1298
|
'card',
|
|
1309
1299
|
'klarna',
|
|
@@ -2177,7 +2167,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_kind_type'] = PropTypes.oneOf(
|
|
|
2177
2167
|
T['io.flow.shopify.markets.v0.enums.incoterm_duties'] = PropTypes.oneOf(['DAP', 'DDP']);
|
|
2178
2168
|
|
|
2179
2169
|
T['io.flow.shopify.markets.v0.models.fulfillment_order_international_duties'] = PropTypes.exact({
|
|
2180
|
-
incoterm: T['io.flow.shopify.markets.v0.enums.incoterm_duties']
|
|
2170
|
+
incoterm: T['io.flow.shopify.markets.v0.enums.incoterm_duties'],
|
|
2181
2171
|
});
|
|
2182
2172
|
|
|
2183
2173
|
T['io.flow.shopify.markets.v0.models.shopify_fulfillment_order'] = PropTypes.exact({
|
|
@@ -3014,6 +3004,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
|
3014
3004
|
vendor: PropTypes.string,
|
|
3015
3005
|
body_html: PropTypes.string,
|
|
3016
3006
|
product_type: PropTypes.string,
|
|
3007
|
+
status: PropTypes.string,
|
|
3017
3008
|
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
3018
3009
|
tags: PropTypes.string,
|
|
3019
3010
|
template_suffix: PropTypes.string,
|
|
@@ -5268,6 +5259,21 @@ T['io.flow.payment.v0.models.stripe_authentication_data'] = PropTypes.exact({
|
|
|
5268
5259
|
|
|
5269
5260
|
T['io.flow.payment.v0.unions.gateway_authentication_data'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.stripe_authentication_data']]);
|
|
5270
5261
|
|
|
5262
|
+
T['io.flow.payment.v0.models.device_details_browser'] = PropTypes.exact({
|
|
5263
|
+
type: PropTypes.oneOf(['browser']).isRequired,
|
|
5264
|
+
user_agent: PropTypes.string.isRequired,
|
|
5265
|
+
origin: PropTypes.string.isRequired,
|
|
5266
|
+
accept_language: PropTypes.string,
|
|
5267
|
+
ip: PropTypes.string,
|
|
5268
|
+
time_zone_offset: PropTypes.number,
|
|
5269
|
+
date_string: PropTypes.string,
|
|
5270
|
+
navigator_language: PropTypes.string,
|
|
5271
|
+
navigator_hardware_concurrency: PropTypes.number,
|
|
5272
|
+
cookie_created_at: PropTypes.number,
|
|
5273
|
+
session_duration: PropTypes.number,
|
|
5274
|
+
fingerprint: PropTypes.string,
|
|
5275
|
+
});
|
|
5276
|
+
|
|
5271
5277
|
T['io.flow.payment.v0.models.issuer_v1'] = PropTypes.exact({
|
|
5272
5278
|
iin: PropTypes.string.isRequired,
|
|
5273
5279
|
card_brand: PropTypes.string.isRequired,
|
|
@@ -7393,6 +7399,14 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
7393
7399
|
id: PropTypes.string.isRequired,
|
|
7394
7400
|
});
|
|
7395
7401
|
|
|
7402
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'] = PropTypes.exact({
|
|
7403
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_deleted']).isRequired,
|
|
7404
|
+
event_id: PropTypes.string.isRequired,
|
|
7405
|
+
timestamp: PropTypes.string.isRequired,
|
|
7406
|
+
organization: PropTypes.string.isRequired,
|
|
7407
|
+
id: PropTypes.string.isRequired,
|
|
7408
|
+
});
|
|
7409
|
+
|
|
7396
7410
|
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'] = PropTypes.exact({
|
|
7397
7411
|
discriminator: PropTypes.oneOf(['shopify_markets_webhook_registration_deleted']).isRequired,
|
|
7398
7412
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7690,6 +7704,13 @@ T['io.flow.internal.v0.models.platform_fee_change_deleted'] = PropTypes.exact({
|
|
|
7690
7704
|
id: PropTypes.string.isRequired,
|
|
7691
7705
|
});
|
|
7692
7706
|
|
|
7707
|
+
T['io.flow.internal.v0.models.standalone_attachment_deleted'] = PropTypes.exact({
|
|
7708
|
+
discriminator: PropTypes.oneOf(['standalone_attachment_deleted']).isRequired,
|
|
7709
|
+
event_id: PropTypes.string.isRequired,
|
|
7710
|
+
timestamp: PropTypes.string.isRequired,
|
|
7711
|
+
id: PropTypes.string.isRequired,
|
|
7712
|
+
});
|
|
7713
|
+
|
|
7693
7714
|
T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'] = PropTypes.exact({
|
|
7694
7715
|
discriminator: PropTypes.oneOf(['billing_statement_batch_statement_deleted']).isRequired,
|
|
7695
7716
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7953,6 +7974,13 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
7953
7974
|
id: PropTypes.string.isRequired,
|
|
7954
7975
|
});
|
|
7955
7976
|
|
|
7977
|
+
T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
|
|
7978
|
+
discriminator: PropTypes.oneOf(['daily_value_deleted']).isRequired,
|
|
7979
|
+
event_id: PropTypes.string.isRequired,
|
|
7980
|
+
timestamp: PropTypes.string.isRequired,
|
|
7981
|
+
id: PropTypes.string.isRequired,
|
|
7982
|
+
});
|
|
7983
|
+
|
|
7956
7984
|
T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
|
|
7957
7985
|
discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
|
|
7958
7986
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8588,7 +8616,7 @@ T['io.flow.internal.v0.models.spot_rate_upserted'] = PropTypes.exact({
|
|
|
8588
8616
|
spot_rate: T['io.flow.internal.v0.models.spot_rate'].isRequired,
|
|
8589
8617
|
});
|
|
8590
8618
|
|
|
8591
|
-
T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['
|
|
8619
|
+
T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['queued_record']);
|
|
8592
8620
|
|
|
8593
8621
|
T['io.flow.internal.v0.models.snooze_source'] = PropTypes.exact({
|
|
8594
8622
|
type: T['io.flow.internal.v0.enums.snooze_source_type'].isRequired,
|
|
@@ -8912,6 +8940,7 @@ T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'] = PropTy
|
|
|
8912
8940
|
flow_carrier_service: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_monitoring_carrier_service']).isRequired,
|
|
8913
8941
|
shopify_tracking_number: T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'].isRequired,
|
|
8914
8942
|
shopify_carrier_service: T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'],
|
|
8943
|
+
fulfillment_created_at: PropTypes.string,
|
|
8915
8944
|
});
|
|
8916
8945
|
|
|
8917
8946
|
T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropTypes.oneOfType([
|
|
@@ -9007,6 +9036,21 @@ T['io.flow.internal.v0.models.shopify_markets_subsidiary_company'] = PropTypes.e
|
|
|
9007
9036
|
incorporation_country: T['io.flow.internal.v0.models.shopify_markets_incorporation_country'],
|
|
9008
9037
|
});
|
|
9009
9038
|
|
|
9039
|
+
T['io.flow.internal.v0.models.shopify_shop_statistics'] = PropTypes.exact({
|
|
9040
|
+
id: PropTypes.string.isRequired,
|
|
9041
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
9042
|
+
catalog_sync_duration: PropTypes.number,
|
|
9043
|
+
catalog_products_count: PropTypes.number,
|
|
9044
|
+
});
|
|
9045
|
+
|
|
9046
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'] = PropTypes.exact({
|
|
9047
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_upserted']).isRequired,
|
|
9048
|
+
event_id: PropTypes.string.isRequired,
|
|
9049
|
+
timestamp: PropTypes.string.isRequired,
|
|
9050
|
+
organization: PropTypes.string.isRequired,
|
|
9051
|
+
shopify_markets_shop_statistics: T['io.flow.internal.v0.models.shopify_shop_statistics'].isRequired,
|
|
9052
|
+
});
|
|
9053
|
+
|
|
9010
9054
|
T['io.flow.experience.v0.models.experience_reference'] = PropTypes.exact({
|
|
9011
9055
|
discriminator: PropTypes.oneOf(['experience_reference']).isRequired,
|
|
9012
9056
|
key: PropTypes.string.isRequired,
|
|
@@ -9428,6 +9472,13 @@ T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
|
|
|
9428
9472
|
count: PropTypes.number.isRequired,
|
|
9429
9473
|
});
|
|
9430
9474
|
|
|
9475
|
+
T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
|
|
9476
|
+
rule_id: PropTypes.string.isRequired,
|
|
9477
|
+
rule_name: PropTypes.string.isRequired,
|
|
9478
|
+
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
9479
|
+
count: PropTypes.number.isRequired,
|
|
9480
|
+
});
|
|
9481
|
+
|
|
9431
9482
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
9432
9483
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9433
9484
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11610,27 +11661,11 @@ T['io.flow.payment.gateway.v0.enums.payment_action_type'] = PropTypes.oneOf([
|
|
|
11610
11661
|
'display_inline_window',
|
|
11611
11662
|
]);
|
|
11612
11663
|
|
|
11613
|
-
T['io.flow.payment.gateway.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.gateway.v0.models.device_details_browser']]);
|
|
11614
|
-
|
|
11615
11664
|
T['io.flow.payment.gateway.v0.unions.order_information'] = PropTypes.oneOfType([
|
|
11616
11665
|
T['io.flow.payment.gateway.v0.models.order_information_flow'],
|
|
11617
11666
|
T['io.flow.payment.gateway.v0.models.order_information_details'],
|
|
11618
11667
|
]);
|
|
11619
11668
|
|
|
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
11669
|
T['io.flow.payment.gateway.v0.models.payment_failure'] = PropTypes.exact({
|
|
11635
11670
|
authorization_id: PropTypes.string,
|
|
11636
11671
|
failure_code: T['io.flow.payment.gateway.v0.enums.payment_failure_code'].isRequired,
|
|
@@ -12101,48 +12136,58 @@ T['io.flow.internal.v0.models.financial_reporting_statement'] = PropTypes.exact(
|
|
|
12101
12136
|
adjustments_url: PropTypes.string,
|
|
12102
12137
|
});
|
|
12103
12138
|
|
|
12104
|
-
T['io.flow.billing.bank.account.v0.models.
|
|
12105
|
-
discriminator: PropTypes.oneOf(['
|
|
12106
|
-
|
|
12107
|
-
|
|
12139
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'] = PropTypes.exact({
|
|
12140
|
+
discriminator: PropTypes.oneOf(['ita']).isRequired,
|
|
12141
|
+
swift_code: PropTypes.string.isRequired,
|
|
12142
|
+
iban: PropTypes.string.isRequired,
|
|
12108
12143
|
});
|
|
12109
12144
|
|
|
12110
|
-
T['io.flow.
|
|
12111
|
-
|
|
12145
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'] = PropTypes.exact({
|
|
12146
|
+
discriminator: PropTypes.oneOf(['fra']).isRequired,
|
|
12147
|
+
swift_code: PropTypes.string.isRequired,
|
|
12148
|
+
iban: PropTypes.string.isRequired,
|
|
12112
12149
|
});
|
|
12113
12150
|
|
|
12114
|
-
T['io.flow.billing.bank.account.v0.
|
|
12115
|
-
|
|
12116
|
-
|
|
12117
|
-
|
|
12151
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'] = PropTypes.exact({
|
|
12152
|
+
discriminator: PropTypes.oneOf(['gbr']).isRequired,
|
|
12153
|
+
swift_code: PropTypes.string.isRequired,
|
|
12154
|
+
iban: PropTypes.string.isRequired,
|
|
12118
12155
|
});
|
|
12119
12156
|
|
|
12120
|
-
T['io.flow.
|
|
12121
|
-
|
|
12122
|
-
|
|
12157
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'] = PropTypes.exact({
|
|
12158
|
+
discriminator: PropTypes.oneOf(['can']).isRequired,
|
|
12159
|
+
routing_number: PropTypes.string.isRequired,
|
|
12160
|
+
account_number: PropTypes.string.isRequired,
|
|
12123
12161
|
});
|
|
12124
12162
|
|
|
12125
|
-
T['io.flow.
|
|
12126
|
-
|
|
12163
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'] = PropTypes.exact({
|
|
12164
|
+
discriminator: PropTypes.oneOf(['usa']).isRequired,
|
|
12165
|
+
routing_number: PropTypes.string.isRequired,
|
|
12166
|
+
account_number: PropTypes.string.isRequired,
|
|
12127
12167
|
});
|
|
12128
12168
|
|
|
12129
|
-
T['io.flow.internal.v0.models.
|
|
12130
|
-
|
|
12169
|
+
T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
|
|
12170
|
+
name: PropTypes.string.isRequired,
|
|
12131
12171
|
});
|
|
12132
12172
|
|
|
12133
|
-
T['io.flow.
|
|
12134
|
-
|
|
12135
|
-
|
|
12173
|
+
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
12174
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
12175
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
12176
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
12177
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
12178
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
12179
|
+
]);
|
|
12136
12180
|
|
|
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'],
|
|
12181
|
+
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
12182
|
+
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
12183
|
+
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
12144
12184
|
});
|
|
12145
12185
|
|
|
12186
|
+
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
12187
|
+
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
12188
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
12189
|
+
]);
|
|
12190
|
+
|
|
12146
12191
|
T['io.flow.internal.v0.enums.marketing_gateway_feed_state'] = PropTypes.oneOf(['initialized', 'generated', 'in_review', 'rejected', 'active']);
|
|
12147
12192
|
|
|
12148
12193
|
T['io.flow.internal.v0.models.marketing_gateway_feed_source_facebook'] = PropTypes.exact({
|
|
@@ -12684,6 +12729,13 @@ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
|
|
|
12684
12729
|
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12685
12730
|
});
|
|
12686
12731
|
|
|
12732
|
+
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
|
|
12733
|
+
|
|
12734
|
+
T['io.flow.internal.v0.models.erp_vendors_delta'] = PropTypes.exact({
|
|
12735
|
+
entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'].isRequired,
|
|
12736
|
+
count: PropTypes.number.isRequired,
|
|
12737
|
+
});
|
|
12738
|
+
|
|
12687
12739
|
T['io.flow.internal.v0.enums.erp_file_type'] = PropTypes.oneOf(['vendor']);
|
|
12688
12740
|
|
|
12689
12741
|
T['io.flow.internal.v0.models.erp_priority_file_form'] = PropTypes.exact({
|
|
@@ -13079,8 +13131,7 @@ T['io.flow.internal.v0.models.debug_payment_transaction_summary'] = PropTypes.ex
|
|
|
13079
13131
|
type: PropTypes.string.isRequired,
|
|
13080
13132
|
processing_transaction_id: PropTypes.string,
|
|
13081
13133
|
queue_errors: PropTypes.arrayOf(PropTypes.string),
|
|
13082
|
-
|
|
13083
|
-
channel_transaction_ignore_reason: PropTypes.string,
|
|
13134
|
+
ignore_reason: PropTypes.string,
|
|
13084
13135
|
});
|
|
13085
13136
|
|
|
13086
13137
|
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
@@ -13097,6 +13148,85 @@ T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
|
13097
13148
|
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
13098
13149
|
});
|
|
13099
13150
|
|
|
13151
|
+
T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
13152
|
+
'adjustment_transactions_count',
|
|
13153
|
+
'adjustment_transactions_total',
|
|
13154
|
+
'capture_transactions_count',
|
|
13155
|
+
'capture_transactions_total',
|
|
13156
|
+
'channel_transactions_count',
|
|
13157
|
+
'channel_transactions_total',
|
|
13158
|
+
'channel_billed_transactions_count',
|
|
13159
|
+
'channel_billed_transactions_total',
|
|
13160
|
+
'credit_payment_transactions_count',
|
|
13161
|
+
'credit_payment_transactions_total',
|
|
13162
|
+
'duty_transactions_count',
|
|
13163
|
+
'duty_transactions_total',
|
|
13164
|
+
'fully_subsidized_order_transactions_count',
|
|
13165
|
+
'fully_subsidized_order_transactions_total',
|
|
13166
|
+
'billable_label_transactions_count',
|
|
13167
|
+
'billable_label_transactions_total',
|
|
13168
|
+
'revenue_share_label_transactions_count',
|
|
13169
|
+
'revenue_share_label_transactions_total',
|
|
13170
|
+
'manual_transactions_count',
|
|
13171
|
+
'manual_transactions_total',
|
|
13172
|
+
'order_transactions_count',
|
|
13173
|
+
'order_transactions_total',
|
|
13174
|
+
'refund_transactions_count',
|
|
13175
|
+
'refund_transactions_total',
|
|
13176
|
+
'reversal_order_cancellations_transactions_count',
|
|
13177
|
+
'reversal_order_cancellations_transactions_total',
|
|
13178
|
+
'reversal_external_fulfillment_transactions_count',
|
|
13179
|
+
'reversal_external_fulfillment_transactions_total',
|
|
13180
|
+
'tax_transactions_count',
|
|
13181
|
+
'tax_transactions_total',
|
|
13182
|
+
'transfer_transactions_count',
|
|
13183
|
+
'transfer_transactions_total',
|
|
13184
|
+
'fulfillments_count',
|
|
13185
|
+
'fulfillments_total',
|
|
13186
|
+
'shipping_notifications_count',
|
|
13187
|
+
'queued_capture_unprocessed_count',
|
|
13188
|
+
'queued_capture_deletion_unprocessed_count',
|
|
13189
|
+
'queued_channel_transaction_unprocessed_count',
|
|
13190
|
+
'queued_channel_organization_unprocessed_count',
|
|
13191
|
+
'queued_consumer_invoice_unprocessed_count',
|
|
13192
|
+
'queued_label_tracking_summary_unprocessed_count',
|
|
13193
|
+
'queued_order_unprocessed_count',
|
|
13194
|
+
'queued_order_identifier_unprocessed_count',
|
|
13195
|
+
'queued_refund_unprocessed_count',
|
|
13196
|
+
'queued_refund_deletion_unprocessed_count',
|
|
13197
|
+
'queued_statement_batch_unprocessed_count',
|
|
13198
|
+
'queued_statement_batch_email_unprocessed_count',
|
|
13199
|
+
'queued_statement_email_unprocessed_count',
|
|
13200
|
+
'queued_statement_summary_email_unprocessed_count',
|
|
13201
|
+
'shipping_notifications_total',
|
|
13202
|
+
'statements_no_payout_count',
|
|
13203
|
+
'statements_no_payout_total',
|
|
13204
|
+
'statements_pending_payout_count',
|
|
13205
|
+
'statements_pending_payout_total',
|
|
13206
|
+
'payouts_scheduled_count',
|
|
13207
|
+
'payouts_scheduled_total',
|
|
13208
|
+
'payouts_sent_count',
|
|
13209
|
+
'payouts_sent_total',
|
|
13210
|
+
'payouts_failed_count',
|
|
13211
|
+
'payouts_failed_total',
|
|
13212
|
+
'pending_payouts_max_age',
|
|
13213
|
+
'average_payout_amount',
|
|
13214
|
+
]);
|
|
13215
|
+
|
|
13216
|
+
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
13217
|
+
id: PropTypes.string.isRequired,
|
|
13218
|
+
key: T['io.flow.internal.v0.enums.billing_metric_key'].isRequired,
|
|
13219
|
+
value: PropTypes.number.isRequired,
|
|
13220
|
+
date: PropTypes.string.isRequired,
|
|
13221
|
+
});
|
|
13222
|
+
|
|
13223
|
+
T['io.flow.internal.v0.models.daily_value_upserted'] = PropTypes.exact({
|
|
13224
|
+
discriminator: PropTypes.oneOf(['daily_value_upserted']).isRequired,
|
|
13225
|
+
event_id: PropTypes.string.isRequired,
|
|
13226
|
+
timestamp: PropTypes.string.isRequired,
|
|
13227
|
+
daily_value: T['io.flow.internal.v0.models.daily_value'].isRequired,
|
|
13228
|
+
});
|
|
13229
|
+
|
|
13100
13230
|
T['io.flow.internal.v0.models.daily_experiment_results'] = PropTypes.exact({
|
|
13101
13231
|
id: PropTypes.string.isRequired,
|
|
13102
13232
|
day: PropTypes.string.isRequired,
|
|
@@ -14678,33 +14808,6 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
|
|
|
14678
14808
|
possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
14679
14809
|
});
|
|
14680
14810
|
|
|
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
14811
|
T['io.flow.reference.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
|
|
14709
14812
|
|
|
14710
14813
|
T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
|
|
@@ -16269,6 +16372,49 @@ T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
|
16269
16372
|
'total_changed',
|
|
16270
16373
|
]);
|
|
16271
16374
|
|
|
16375
|
+
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
16376
|
+
|
|
16377
|
+
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
16378
|
+
amount: PropTypes.number.isRequired,
|
|
16379
|
+
currency: PropTypes.string.isRequired,
|
|
16380
|
+
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
16381
|
+
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
16382
|
+
locale: PropTypes.string,
|
|
16383
|
+
return_url: PropTypes.string.isRequired,
|
|
16384
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16385
|
+
reference: PropTypes.string,
|
|
16386
|
+
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
16387
|
+
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
16388
|
+
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
16389
|
+
});
|
|
16390
|
+
|
|
16391
|
+
T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
16392
|
+
id: PropTypes.string.isRequired,
|
|
16393
|
+
status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
|
|
16394
|
+
created_at: PropTypes.string.isRequired,
|
|
16395
|
+
updated_at: PropTypes.string.isRequired,
|
|
16396
|
+
available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
|
|
16397
|
+
last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
|
|
16398
|
+
next_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
16399
|
+
amount: PropTypes.number.isRequired,
|
|
16400
|
+
currency: PropTypes.string.isRequired,
|
|
16401
|
+
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
16402
|
+
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
16403
|
+
locale: PropTypes.string,
|
|
16404
|
+
return_url: PropTypes.string.isRequired,
|
|
16405
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16406
|
+
reference: PropTypes.string,
|
|
16407
|
+
payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
|
|
16408
|
+
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
16409
|
+
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
16410
|
+
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
16411
|
+
});
|
|
16412
|
+
|
|
16413
|
+
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
16414
|
+
payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
|
|
16415
|
+
actual_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
16416
|
+
});
|
|
16417
|
+
|
|
16272
16418
|
T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
|
|
16273
16419
|
ip: PropTypes.string,
|
|
16274
16420
|
country: PropTypes.string.isRequired,
|
|
@@ -17655,6 +17801,11 @@ T['io.flow.internal.v0.models.partner_organization_authorization'] = PropTypes.e
|
|
|
17655
17801
|
partner: T['io.flow.internal.v0.models.partner'].isRequired,
|
|
17656
17802
|
});
|
|
17657
17803
|
|
|
17804
|
+
T['io.flow.internal.v0.models.erp_flow_file_batch_form'] = PropTypes.exact({
|
|
17805
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
17806
|
+
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
17807
|
+
});
|
|
17808
|
+
|
|
17658
17809
|
T['io.flow.internal.v0.models.checkout_organization_summary'] = PropTypes.exact({
|
|
17659
17810
|
id: PropTypes.string.isRequired,
|
|
17660
17811
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
@@ -18935,42 +19086,6 @@ T['io.flow.internal.v0.models.bitpay_authentication'] = PropTypes.exact({
|
|
|
18935
19086
|
secret_key_reference: PropTypes.string.isRequired,
|
|
18936
19087
|
});
|
|
18937
19088
|
|
|
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
19089
|
T['io.flow.common.v0.models.datetime_range'] = PropTypes.exact({
|
|
18975
19090
|
from: PropTypes.string.isRequired,
|
|
18976
19091
|
to: PropTypes.string.isRequired,
|
|
@@ -19102,9 +19217,44 @@ T['io.flow.internal.v0.models.checkout_order_deliveries'] = PropTypes.exact({
|
|
|
19102
19217
|
all: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkout_order_delivery']).isRequired,
|
|
19103
19218
|
});
|
|
19104
19219
|
|
|
19220
|
+
T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
|
|
19221
|
+
id: PropTypes.string.isRequired,
|
|
19222
|
+
});
|
|
19223
|
+
|
|
19224
|
+
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
19225
|
+
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
19226
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19227
|
+
});
|
|
19228
|
+
|
|
19229
|
+
T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
19230
|
+
id: PropTypes.string.isRequired,
|
|
19231
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19232
|
+
reason: PropTypes.string.isRequired,
|
|
19233
|
+
});
|
|
19234
|
+
|
|
19235
|
+
T['io.flow.internal.v0.models.billing_statement_batch_reference'] = PropTypes.exact({
|
|
19236
|
+
id: PropTypes.string.isRequired,
|
|
19237
|
+
});
|
|
19238
|
+
|
|
19239
|
+
T['io.flow.internal.v0.models.billing_statement_batch_statement'] = PropTypes.exact({
|
|
19240
|
+
id: PropTypes.string.isRequired,
|
|
19241
|
+
batch: T['io.flow.internal.v0.models.billing_statement_batch_reference'].isRequired,
|
|
19242
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19243
|
+
});
|
|
19244
|
+
|
|
19245
|
+
T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = PropTypes.exact({
|
|
19246
|
+
discriminator: PropTypes.oneOf(['billing_statement_batch_statement_upserted']).isRequired,
|
|
19247
|
+
event_id: PropTypes.string.isRequired,
|
|
19248
|
+
timestamp: PropTypes.string.isRequired,
|
|
19249
|
+
billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
|
|
19250
|
+
});
|
|
19251
|
+
|
|
19252
|
+
T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'] = PropTypes.exact({
|
|
19253
|
+
month: PropTypes.string.isRequired,
|
|
19254
|
+
});
|
|
19255
|
+
|
|
19105
19256
|
T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
|
|
19106
19257
|
id: PropTypes.string.isRequired,
|
|
19107
|
-
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
19108
19258
|
reconciliation: T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'].isRequired,
|
|
19109
19259
|
});
|
|
19110
19260
|
|
|
@@ -19132,6 +19282,21 @@ T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneO
|
|
|
19132
19282
|
'all',
|
|
19133
19283
|
]);
|
|
19134
19284
|
|
|
19285
|
+
T['io.flow.internal.v0.models.standalone_attachment'] = PropTypes.exact({
|
|
19286
|
+
id: PropTypes.string.isRequired,
|
|
19287
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19288
|
+
key: T['io.flow.internal.v0.enums.billing_statement_attachment_key'].isRequired,
|
|
19289
|
+
name: PropTypes.string.isRequired,
|
|
19290
|
+
url: PropTypes.string.isRequired,
|
|
19291
|
+
});
|
|
19292
|
+
|
|
19293
|
+
T['io.flow.internal.v0.models.standalone_attachment_upserted'] = PropTypes.exact({
|
|
19294
|
+
discriminator: PropTypes.oneOf(['standalone_attachment_upserted']).isRequired,
|
|
19295
|
+
event_id: PropTypes.string.isRequired,
|
|
19296
|
+
timestamp: PropTypes.string.isRequired,
|
|
19297
|
+
attachment: T['io.flow.internal.v0.models.standalone_attachment'].isRequired,
|
|
19298
|
+
});
|
|
19299
|
+
|
|
19135
19300
|
T['io.flow.internal.v0.models.billing_statement_attachment'] = PropTypes.exact({
|
|
19136
19301
|
key: T['io.flow.internal.v0.enums.billing_statement_attachment_key'].isRequired,
|
|
19137
19302
|
name: PropTypes.string.isRequired,
|
|
@@ -19170,7 +19335,7 @@ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
|
|
|
19170
19335
|
destination: T['io.flow.internal.v0.models.billing_order_destination'],
|
|
19171
19336
|
});
|
|
19172
19337
|
|
|
19173
|
-
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'could_not_process']);
|
|
19338
|
+
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
|
|
19174
19339
|
T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
19175
19340
|
|
|
19176
19341
|
T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
@@ -21917,6 +22082,7 @@ T['io.flow.label.v0.models.shipping_notification'] = PropTypes.exact({
|
|
|
21917
22082
|
order_identifier: PropTypes.string,
|
|
21918
22083
|
fulfillment_key: PropTypes.string,
|
|
21919
22084
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22085
|
+
created_at: PropTypes.string,
|
|
21920
22086
|
updated_at: PropTypes.string,
|
|
21921
22087
|
});
|
|
21922
22088
|
|
|
@@ -22399,6 +22565,7 @@ T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
|
22399
22565
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22400
22566
|
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
22401
22567
|
options: T['io.flow.experience.v0.models.order_options'],
|
|
22568
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
22402
22569
|
});
|
|
22403
22570
|
|
|
22404
22571
|
T['io.flow.checkout.v0.models.checkout_token_order_form'] = PropTypes.exact({
|
|
@@ -22452,6 +22619,7 @@ T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
|
|
|
22452
22619
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22453
22620
|
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
22454
22621
|
options: T['io.flow.experience.v0.models.order_options'],
|
|
22622
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
22455
22623
|
});
|
|
22456
22624
|
|
|
22457
22625
|
T['io.flow.internal.v0.models.invalid_checkout_data'] = PropTypes.exact({
|
|
@@ -22903,6 +23071,10 @@ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state
|
|
|
22903
23071
|
).isRequired,
|
|
22904
23072
|
|
|
22905
23073
|
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
23074
|
+
started_at: PropTypes.string,
|
|
23075
|
+
time_blocked: PropTypes.number,
|
|
23076
|
+
blocked_since: PropTypes.string,
|
|
23077
|
+
completed_at: PropTypes.string,
|
|
22906
23078
|
});
|
|
22907
23079
|
|
|
22908
23080
|
T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'] = PropTypes.exact({
|
|
@@ -24511,6 +24683,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
24511
24683
|
rules: T['io.flow.experience.v0.models.order_rules_summary'],
|
|
24512
24684
|
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
24513
24685
|
geo: T['io.flow.experience.v0.models.order_geo'],
|
|
24686
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
24514
24687
|
});
|
|
24515
24688
|
|
|
24516
24689
|
T['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -25727,6 +25900,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25727
25900
|
T['io.flow.internal.v0.models.tax_transaction_deleted'],
|
|
25728
25901
|
T['io.flow.internal.v0.models.duty_transaction_upserted'],
|
|
25729
25902
|
T['io.flow.internal.v0.models.duty_transaction_deleted'],
|
|
25903
|
+
T['io.flow.internal.v0.models.daily_value_upserted'],
|
|
25904
|
+
T['io.flow.internal.v0.models.daily_value_deleted'],
|
|
25730
25905
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
25731
25906
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
25732
25907
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -25813,6 +25988,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25813
25988
|
T['io.flow.internal.v0.models.billing_statement_batch_deleted'],
|
|
25814
25989
|
T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'],
|
|
25815
25990
|
T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'],
|
|
25991
|
+
T['io.flow.internal.v0.models.standalone_attachment_upserted'],
|
|
25992
|
+
T['io.flow.internal.v0.models.standalone_attachment_deleted'],
|
|
25816
25993
|
T['io.flow.internal.v0.models.platform_fee_change_upserted'],
|
|
25817
25994
|
T['io.flow.internal.v0.models.platform_fee_change_deleted'],
|
|
25818
25995
|
T['io.flow.internal.v0.models.organization_bank_account_upserted'],
|
|
@@ -25949,6 +26126,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25949
26126
|
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'],
|
|
25950
26127
|
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'],
|
|
25951
26128
|
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
26129
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
26130
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
25952
26131
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
25953
26132
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
25954
26133
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -26147,6 +26326,14 @@ T['io.flow.internal.v0.models.lab_project_settings'] = PropTypes.exact({
|
|
|
26147
26326
|
T['io.flow.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
26148
26327
|
T['io.flow.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
|
|
26149
26328
|
|
|
26329
|
+
T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
|
|
26330
|
+
'prr-3ce7d556f2464314ab0a3e8eee33e0ce',
|
|
26331
|
+
'prr-599c6246a1a24752aeb85e8f79030781',
|
|
26332
|
+
'prr-79e41878ea564f9c81cc432a0e84703f',
|
|
26333
|
+
'prr-f29c26dc09e04536bc77f9c32786ed70',
|
|
26334
|
+
'prr-0522d426a5b741c791ba05496c35297a',
|
|
26335
|
+
]);
|
|
26336
|
+
|
|
26150
26337
|
T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
26151
26338
|
'freight_cost',
|
|
26152
26339
|
'adjustment',
|
|
@@ -26248,6 +26435,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26248
26435
|
'tax_transaction_deleted',
|
|
26249
26436
|
'duty_transaction_upserted',
|
|
26250
26437
|
'duty_transaction_deleted',
|
|
26438
|
+
'daily_value_upserted',
|
|
26439
|
+
'daily_value_deleted',
|
|
26251
26440
|
'calculator_organization_settings_upserted',
|
|
26252
26441
|
'calculator_organization_settings_deleted',
|
|
26253
26442
|
'carrier_account_upserted_v2',
|
|
@@ -26334,6 +26523,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26334
26523
|
'billing_statement_batch_deleted',
|
|
26335
26524
|
'billing_statement_batch_statement_upserted',
|
|
26336
26525
|
'billing_statement_batch_statement_deleted',
|
|
26526
|
+
'standalone_attachment_upserted',
|
|
26527
|
+
'standalone_attachment_deleted',
|
|
26337
26528
|
'platform_fee_change_upserted',
|
|
26338
26529
|
'platform_fee_change_deleted',
|
|
26339
26530
|
'organization_bank_account_upserted',
|
|
@@ -26470,6 +26661,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26470
26661
|
'shopify_markets_shop_deleted',
|
|
26471
26662
|
'shopify_markets_webhook_registration_upserted',
|
|
26472
26663
|
'shopify_markets_webhook_registration_deleted',
|
|
26664
|
+
'shopify_markets_shop_statistics_upserted',
|
|
26665
|
+
'shopify_markets_shop_statistics_deleted',
|
|
26473
26666
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
26474
26667
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
26475
26668
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -26525,6 +26718,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
|
|
|
26525
26718
|
|
|
26526
26719
|
T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
|
|
26527
26720
|
T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
|
|
26721
|
+
T['io.flow.internal.v0.enums.organization_metric_type'] = PropTypes.oneOf(['organization_restriction_snapshot', 'organization_restriction_status']);
|
|
26528
26722
|
T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
|
|
26529
26723
|
T['io.flow.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
|
|
26530
26724
|
|
|
@@ -26546,7 +26740,27 @@ T['io.flow.internal.v0.enums.processing_transaction_type'] = PropTypes.oneOf([
|
|
|
26546
26740
|
'credit_payment',
|
|
26547
26741
|
]);
|
|
26548
26742
|
|
|
26743
|
+
T['io.flow.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft']);
|
|
26549
26744
|
T['io.flow.internal.v0.enums.prompt_action'] = PropTypes.oneOf(['prompt_displayed', 'consent_granted', 'consent_denied']);
|
|
26745
|
+
|
|
26746
|
+
T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
26747
|
+
'capture',
|
|
26748
|
+
'capture_deletion',
|
|
26749
|
+
'channel_transaction',
|
|
26750
|
+
'channel_organization',
|
|
26751
|
+
'consumer_invoice',
|
|
26752
|
+
'label_tracking_summary',
|
|
26753
|
+
'order',
|
|
26754
|
+
'order_identifier',
|
|
26755
|
+
'refund',
|
|
26756
|
+
'refund_deletion',
|
|
26757
|
+
'statement_batch',
|
|
26758
|
+
'statement_batch_email',
|
|
26759
|
+
'statement_email',
|
|
26760
|
+
'statement_summary_email',
|
|
26761
|
+
'wash',
|
|
26762
|
+
]);
|
|
26763
|
+
|
|
26550
26764
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
26551
26765
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
26552
26766
|
T['io.flow.internal.v0.enums.serial_reservation_error'] = PropTypes.oneOf(['duration_too_long', 'items_not_found', 'reservation_expired']);
|
|
@@ -26782,6 +26996,15 @@ T['io.flow.internal.v0.models.classification_requeue_request'] = PropTypes.exact
|
|
|
26782
26996
|
message: PropTypes.string.isRequired,
|
|
26783
26997
|
});
|
|
26784
26998
|
|
|
26999
|
+
T['io.flow.internal.v0.models.classification_summary_report_payload'] = PropTypes.exact({
|
|
27000
|
+
organization_id: PropTypes.string,
|
|
27001
|
+
product_id: PropTypes.string,
|
|
27002
|
+
date_from: PropTypes.string,
|
|
27003
|
+
date_to: PropTypes.string,
|
|
27004
|
+
email: PropTypes.string.isRequired,
|
|
27005
|
+
limit: PropTypes.number.isRequired,
|
|
27006
|
+
});
|
|
27007
|
+
|
|
26785
27008
|
T['io.flow.internal.v0.models.commercial_invoice_comparison'] = PropTypes.exact({
|
|
26786
27009
|
urls: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
26787
27010
|
});
|
|
@@ -26836,6 +27059,10 @@ T['io.flow.internal.v0.models.decrypted_cipher'] = PropTypes.exact({
|
|
|
26836
27059
|
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26837
27060
|
});
|
|
26838
27061
|
|
|
27062
|
+
T['io.flow.internal.v0.models.delete_transitions_put_form'] = PropTypes.exact({
|
|
27063
|
+
transition_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27064
|
+
});
|
|
27065
|
+
|
|
26839
27066
|
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
26840
27067
|
amount: PropTypes.number.isRequired,
|
|
26841
27068
|
description: PropTypes.string,
|
|
@@ -26863,6 +27090,10 @@ T['io.flow.internal.v0.models.email_modification_form'] = PropTypes.exact({
|
|
|
26863
27090
|
email: PropTypes.string,
|
|
26864
27091
|
});
|
|
26865
27092
|
|
|
27093
|
+
T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
|
|
27094
|
+
placeholder: PropTypes.string,
|
|
27095
|
+
});
|
|
27096
|
+
|
|
26866
27097
|
T['io.flow.internal.v0.models.experiment_engine_results'] = PropTypes.exact({
|
|
26867
27098
|
organization_id: PropTypes.string.isRequired,
|
|
26868
27099
|
experiment_key: PropTypes.string.isRequired,
|
|
@@ -26893,11 +27124,6 @@ T['io.flow.internal.v0.models.feature_release_form'] = PropTypes.exact({
|
|
|
26893
27124
|
released_at: PropTypes.string,
|
|
26894
27125
|
});
|
|
26895
27126
|
|
|
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
27127
|
T['io.flow.internal.v0.models.financial_merchant_category'] = PropTypes.exact({
|
|
26902
27128
|
id: PropTypes.string.isRequired,
|
|
26903
27129
|
iso_18245_4: PropTypes.string.isRequired,
|
|
@@ -27135,6 +27361,11 @@ T['io.flow.internal.v0.models.organization_membership_copy_form'] = PropTypes.ex
|
|
|
27135
27361
|
to: PropTypes.string.isRequired,
|
|
27136
27362
|
});
|
|
27137
27363
|
|
|
27364
|
+
T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'] = PropTypes.exact({
|
|
27365
|
+
organization: PropTypes.string.isRequired,
|
|
27366
|
+
validation_errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27367
|
+
});
|
|
27368
|
+
|
|
27138
27369
|
T['io.flow.internal.v0.models.partner_organization_authorization_form'] = PropTypes.exact({
|
|
27139
27370
|
partner: PropTypes.string.isRequired,
|
|
27140
27371
|
});
|
|
@@ -27232,6 +27463,10 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
27232
27463
|
margin: PropTypes.number.isRequired,
|
|
27233
27464
|
});
|
|
27234
27465
|
|
|
27466
|
+
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
27467
|
+
task_id: PropTypes.string.isRequired,
|
|
27468
|
+
});
|
|
27469
|
+
|
|
27235
27470
|
T['io.flow.internal.v0.models.requeue_request_form'] = PropTypes.exact({
|
|
27236
27471
|
product_ids: PropTypes.arrayOf(PropTypes.string),
|
|
27237
27472
|
hs6_codes: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -27393,11 +27628,6 @@ T['io.flow.internal.v0.models.store_connection_form'] = PropTypes.exact({
|
|
|
27393
27628
|
organization: PropTypes.string.isRequired,
|
|
27394
27629
|
});
|
|
27395
27630
|
|
|
27396
|
-
T['io.flow.internal.v0.models.stream'] = PropTypes.exact({
|
|
27397
|
-
id: PropTypes.string.isRequired,
|
|
27398
|
-
key: PropTypes.string.isRequired,
|
|
27399
|
-
});
|
|
27400
|
-
|
|
27401
27631
|
T['io.flow.internal.v0.models.subcatalog_item_count'] = PropTypes.exact({
|
|
27402
27632
|
key: PropTypes.string.isRequired,
|
|
27403
27633
|
count: PropTypes.number.isRequired,
|
|
@@ -28517,6 +28747,7 @@ export const authorizedChargeStatus = T['io.flow.internal.v0.models.authorized_c
|
|
|
28517
28747
|
export const authorizedLineItemCharge = T['io.flow.internal.v0.models.authorized_line_item_charge'];
|
|
28518
28748
|
export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_order_charge'];
|
|
28519
28749
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
28750
|
+
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
28520
28751
|
export const backfill = T['io.flow.internal.v0.models.backfill'];
|
|
28521
28752
|
export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
|
|
28522
28753
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
@@ -28533,6 +28764,7 @@ export const billingAuthorizationReference = T['io.flow.internal.v0.models.billi
|
|
|
28533
28764
|
export const billingInvoiceSummary = T['io.flow.internal.v0.models.billing_invoice_summary'];
|
|
28534
28765
|
export const billingLabelSummary = T['io.flow.internal.v0.models.billing_label_summary'];
|
|
28535
28766
|
export const billingLabelTrackingSummaryReference = T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'];
|
|
28767
|
+
export const billingMetricKey = T['io.flow.internal.v0.enums.billing_metric_key'];
|
|
28536
28768
|
export const billingOrderDestination = T['io.flow.internal.v0.models.billing_order_destination'];
|
|
28537
28769
|
export const billingOrderSummary = T['io.flow.internal.v0.models.billing_order_summary'];
|
|
28538
28770
|
export const billingOrderTransactionOrderReference = T['io.flow.internal.v0.models.billing_order_transaction_order_reference'];
|
|
@@ -29244,6 +29476,7 @@ export const classificationProductSummaryPage = T['io.flow.internal.v0.models.cl
|
|
|
29244
29476
|
export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
|
|
29245
29477
|
export const classificationResponse = T['io.flow.internal.v0.unions.classification_response'];
|
|
29246
29478
|
export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
|
|
29479
|
+
export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
|
|
29247
29480
|
export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
|
|
29248
29481
|
export const classificationWrapper = T['io.flow.internal.v0.models.classification_wrapper'];
|
|
29249
29482
|
export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
|
|
@@ -29312,6 +29545,9 @@ export const dailyExperimentEngineResults = T['io.flow.internal.v0.models.daily_
|
|
|
29312
29545
|
export const dailyExperimentResults = T['io.flow.internal.v0.models.daily_experiment_results'];
|
|
29313
29546
|
export const dailyExperimentResultsDeleted = T['io.flow.internal.v0.models.daily_experiment_results_deleted'];
|
|
29314
29547
|
export const dailyExperimentResultsUpserted = T['io.flow.internal.v0.models.daily_experiment_results_upserted'];
|
|
29548
|
+
export const dailyValue = T['io.flow.internal.v0.models.daily_value'];
|
|
29549
|
+
export const dailyValueDeleted = T['io.flow.internal.v0.models.daily_value_deleted'];
|
|
29550
|
+
export const dailyValueUpserted = T['io.flow.internal.v0.models.daily_value_upserted'];
|
|
29315
29551
|
export const debugDetails = T['io.flow.internal.v0.models.debug_details'];
|
|
29316
29552
|
export const debugLabel = T['io.flow.internal.v0.models.debug_label'];
|
|
29317
29553
|
export const debugLabelTransactionSummary = T['io.flow.internal.v0.models.debug_label_transaction_summary'];
|
|
@@ -29332,6 +29568,7 @@ export const declineReasonFraud = T['io.flow.internal.v0.models.decline_reason_f
|
|
|
29332
29568
|
export const decryptCipherForm = T['io.flow.internal.v0.models.decrypt_cipher_form'];
|
|
29333
29569
|
export const decryptedCipher = T['io.flow.internal.v0.models.decrypted_cipher'];
|
|
29334
29570
|
export const deleteIndexTask = T['io.flow.internal.v0.models.delete_index_task'];
|
|
29571
|
+
export const deleteTransitionsPutForm = T['io.flow.internal.v0.models.delete_transitions_put_form'];
|
|
29335
29572
|
export const deliveredDutyOption = T['io.flow.internal.v0.models.delivered_duty_option'];
|
|
29336
29573
|
export const deliveredDutyOptionMessage = T['io.flow.internal.v0.models.delivered_duty_option_message'];
|
|
29337
29574
|
export const deliveredDutyOptionMessageType = T['io.flow.internal.v0.enums.delivered_duty_option_message_type'];
|
|
@@ -29414,8 +29651,11 @@ export const emptyClassificationForm = T['io.flow.internal.v0.models.empty_class
|
|
|
29414
29651
|
export const encryption = T['io.flow.internal.v0.models.encryption'];
|
|
29415
29652
|
export const erpFileType = T['io.flow.internal.v0.enums.erp_file_type'];
|
|
29416
29653
|
export const erpFlowFile = T['io.flow.internal.v0.models.erp_flow_file'];
|
|
29654
|
+
export const erpFlowFileBatchForm = T['io.flow.internal.v0.models.erp_flow_file_batch_form'];
|
|
29417
29655
|
export const erpPriorityFile = T['io.flow.internal.v0.models.erp_priority_file'];
|
|
29418
29656
|
export const erpPriorityFileForm = T['io.flow.internal.v0.models.erp_priority_file_form'];
|
|
29657
|
+
export const erpVendor = T['io.flow.internal.v0.models.erp_vendor'];
|
|
29658
|
+
export const erpVendorsDelta = T['io.flow.internal.v0.models.erp_vendors_delta'];
|
|
29419
29659
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
29420
29660
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
29421
29661
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
@@ -29504,11 +29744,6 @@ export const feedUpserted = T['io.flow.internal.v0.models.feed_upserted'];
|
|
|
29504
29744
|
export const feedsExport = T['io.flow.internal.v0.models.feeds_export'];
|
|
29505
29745
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
29506
29746
|
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
29747
|
export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
|
|
29513
29748
|
export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
|
|
29514
29749
|
export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
|
|
@@ -29985,7 +30220,9 @@ export const organizationDebugTransaction = T['io.flow.internal.v0.models.organi
|
|
|
29985
30220
|
export const organizationInvitationAcceptForm = T['io.flow.internal.v0.models.organization_invitation_accept_form'];
|
|
29986
30221
|
export const organizationMembershipCopy = T['io.flow.internal.v0.models.organization_membership_copy'];
|
|
29987
30222
|
export const organizationMembershipCopyForm = T['io.flow.internal.v0.models.organization_membership_copy_form'];
|
|
30223
|
+
export const organizationMetricType = T['io.flow.internal.v0.enums.organization_metric_type'];
|
|
29988
30224
|
export const organizationOnboardingStateAdjustmentResult = T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'];
|
|
30225
|
+
export const organizationOnboardingStateAuditResult = T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'];
|
|
29989
30226
|
export const organizationPaymentSetting = T['io.flow.internal.v0.models.organization_payment_setting'];
|
|
29990
30227
|
export const organizationPaymentSettingDeleted = T['io.flow.internal.v0.models.organization_payment_setting_deleted'];
|
|
29991
30228
|
export const organizationPaymentSettingForm = T['io.flow.internal.v0.models.organization_payment_setting_form'];
|
|
@@ -30116,6 +30353,7 @@ export const productHarmonizationForm = T['io.flow.internal.v0.models.product_ha
|
|
|
30116
30353
|
export const productLabels = T['io.flow.internal.v0.models.product_labels'];
|
|
30117
30354
|
export const productListSettingsForm = T['io.flow.internal.v0.models.product_list_settings_form'];
|
|
30118
30355
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
30356
|
+
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
30119
30357
|
export const promptAction = T['io.flow.internal.v0.enums.prompt_action'];
|
|
30120
30358
|
export const promptCheckoutDisplayPosition = T['io.flow.internal.v0.enums.prompt_checkout_display_position'];
|
|
30121
30359
|
export const promptOptions = T['io.flow.internal.v0.enums.prompt_options'];
|
|
@@ -30125,6 +30363,7 @@ export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.p
|
|
|
30125
30363
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
30126
30364
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
30127
30365
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
30366
|
+
export const queuedRecordType = T['io.flow.internal.v0.enums.queued_record_type'];
|
|
30128
30367
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
30129
30368
|
export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
|
|
30130
30369
|
export const rateAndRuleItem = T['io.flow.internal.v0.models.rate_and_rule_item'];
|
|
@@ -30191,6 +30430,8 @@ export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.mo
|
|
|
30191
30430
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
30192
30431
|
export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
30193
30432
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
30433
|
+
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
30434
|
+
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
30194
30435
|
export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
|
|
30195
30436
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
30196
30437
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
@@ -30288,6 +30529,8 @@ export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify
|
|
|
30288
30529
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
30289
30530
|
export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
|
|
30290
30531
|
export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
|
|
30532
|
+
export const shopifyMarketsShopStatisticsDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'];
|
|
30533
|
+
export const shopifyMarketsShopStatisticsUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'];
|
|
30291
30534
|
export const shopifyMarketsShopSummary = T['io.flow.internal.v0.models.shopify_markets_shop_summary'];
|
|
30292
30535
|
export const shopifyMarketsShopUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_upserted'];
|
|
30293
30536
|
export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.shopify_markets_subsidiary_company'];
|
|
@@ -30349,6 +30592,7 @@ export const shopifyPromotionRule = T['io.flow.internal.v0.models.shopify_promot
|
|
|
30349
30592
|
export const shopifyPromotionStatus = T['io.flow.internal.v0.enums.shopify_promotion_status'];
|
|
30350
30593
|
export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
|
|
30351
30594
|
export const shopifyShopDeleted = T['io.flow.internal.v0.models.shopify_shop_deleted'];
|
|
30595
|
+
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
30352
30596
|
export const shopifyShopUpserted = T['io.flow.internal.v0.models.shopify_shop_upserted'];
|
|
30353
30597
|
export const shopifyWebhook = T['io.flow.internal.v0.models.shopify_webhook'];
|
|
30354
30598
|
export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook_event'];
|
|
@@ -30376,14 +30620,15 @@ export const spotRateMetadataIdentity = T['io.flow.internal.v0.models.spot_rate_
|
|
|
30376
30620
|
export const spotRateMetadataRate = T['io.flow.internal.v0.models.spot_rate_metadata_rate'];
|
|
30377
30621
|
export const spotRateUpserted = T['io.flow.internal.v0.models.spot_rate_upserted'];
|
|
30378
30622
|
export const spotRateVersion = T['io.flow.internal.v0.models.spot_rate_version'];
|
|
30623
|
+
export const standaloneAttachment = T['io.flow.internal.v0.models.standalone_attachment'];
|
|
30624
|
+
export const standaloneAttachmentDeleted = T['io.flow.internal.v0.models.standalone_attachment_deleted'];
|
|
30625
|
+
export const standaloneAttachmentUpserted = T['io.flow.internal.v0.models.standalone_attachment_upserted'];
|
|
30379
30626
|
export const statementStatus = T['io.flow.internal.v0.enums.statement_status'];
|
|
30380
30627
|
export const statementTransferTransactionLocation = T['io.flow.internal.v0.enums.statement_transfer_transaction_location'];
|
|
30381
30628
|
export const statisticType = T['io.flow.internal.v0.enums.statistic_type'];
|
|
30382
30629
|
export const status = T['io.flow.internal.v0.enums.status'];
|
|
30383
30630
|
export const storeConnection = T['io.flow.internal.v0.models.store_connection'];
|
|
30384
30631
|
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
30632
|
export const stringFeatureDefaultValue = T['io.flow.internal.v0.models.string_feature_default_value'];
|
|
30388
30633
|
export const stringFeatureRule = T['io.flow.internal.v0.models.string_feature_rule'];
|
|
30389
30634
|
export const stringFeatureRuleForm = T['io.flow.internal.v0.models.string_feature_rule_form'];
|