@flowio/types 11.24.64 → 11.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/dist/api-internal.d.ts +147 -63
- package/dist/api.d.ts +86 -4
- package/package.json +2 -2
- package/src/api-internal.ts +272 -70
- package/src/api.ts +105 -4
package/src/api-internal.ts
CHANGED
|
@@ -1776,6 +1776,21 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1776
1776
|
readonly raw?: string;
|
|
1777
1777
|
}
|
|
1778
1778
|
|
|
1779
|
+
interface DeviceDetailsBrowser {
|
|
1780
|
+
readonly type: 'browser';
|
|
1781
|
+
readonly user_agent: string;
|
|
1782
|
+
readonly origin: string;
|
|
1783
|
+
readonly accept_language?: string;
|
|
1784
|
+
readonly ip?: string;
|
|
1785
|
+
readonly time_zone_offset?: number;
|
|
1786
|
+
readonly date_string?: string;
|
|
1787
|
+
readonly navigator_language?: string;
|
|
1788
|
+
readonly navigator_hardware_concurrency?: number;
|
|
1789
|
+
readonly cookie_created_at?: number;
|
|
1790
|
+
readonly session_duration?: number;
|
|
1791
|
+
readonly fingerprint?: string;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1779
1794
|
interface DirectAuthorizationForm {
|
|
1780
1795
|
readonly discriminator: 'direct_authorization_form';
|
|
1781
1796
|
readonly token: string;
|
|
@@ -2343,6 +2358,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2343
2358
|
type ConfirmationDetails =
|
|
2344
2359
|
| io.flow.payment.v0.models.DirectDebit
|
|
2345
2360
|
| io.flow.payment.v0.models.CardConfirmationSummary;
|
|
2361
|
+
type DeviceDetails = io.flow.payment.v0.models.DeviceDetailsBrowser;
|
|
2346
2362
|
type ExpandableCard =
|
|
2347
2363
|
| io.flow.payment.v0.models.Card
|
|
2348
2364
|
| io.flow.payment.v0.models.CardReference
|
|
@@ -5526,6 +5542,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5526
5542
|
readonly vendor?: string;
|
|
5527
5543
|
readonly body_html?: string;
|
|
5528
5544
|
readonly product_type?: string;
|
|
5545
|
+
readonly status?: string;
|
|
5529
5546
|
readonly options: io.flow.shopify.external.v0.models.Option[];
|
|
5530
5547
|
readonly tags?: string;
|
|
5531
5548
|
readonly template_suffix?: string;
|
|
@@ -6451,7 +6468,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6451
6468
|
|
|
6452
6469
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
6453
6470
|
interface FulfillmentOrderInternationalDuties {
|
|
6454
|
-
readonly incoterm
|
|
6471
|
+
readonly incoterm?: io.flow.shopify.markets.v0.enums.IncotermDuties;
|
|
6455
6472
|
}
|
|
6456
6473
|
|
|
6457
6474
|
interface FulfillmentOrderLineItem {
|
|
@@ -7516,21 +7533,6 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7516
7533
|
readonly result: any /*object*/;
|
|
7517
7534
|
}
|
|
7518
7535
|
|
|
7519
|
-
interface DeviceDetailsBrowser {
|
|
7520
|
-
readonly type: 'browser';
|
|
7521
|
-
readonly user_agent: string;
|
|
7522
|
-
readonly origin: string;
|
|
7523
|
-
readonly accept_language?: string;
|
|
7524
|
-
readonly ip?: string;
|
|
7525
|
-
readonly time_zone_offset?: number;
|
|
7526
|
-
readonly date_string?: string;
|
|
7527
|
-
readonly navigator_language?: string;
|
|
7528
|
-
readonly navigator_hardware_concurrency?: number;
|
|
7529
|
-
readonly cookie_created_at?: number;
|
|
7530
|
-
readonly session_duration?: number;
|
|
7531
|
-
readonly fingerprint?: string;
|
|
7532
|
-
}
|
|
7533
|
-
|
|
7534
7536
|
interface DeviceFingerprintDetailsBrowser {
|
|
7535
7537
|
readonly type: 'browser';
|
|
7536
7538
|
readonly accept?: string;
|
|
@@ -7942,7 +7944,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7942
7944
|
readonly amount: number;
|
|
7943
7945
|
readonly currency: string;
|
|
7944
7946
|
readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
7945
|
-
readonly device_details: io.flow.payment.
|
|
7947
|
+
readonly device_details: io.flow.payment.v0.unions.DeviceDetails;
|
|
7946
7948
|
readonly locale?: string;
|
|
7947
7949
|
readonly return_url: string;
|
|
7948
7950
|
readonly attributes?: Record<string, string>;
|
|
@@ -7957,7 +7959,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7957
7959
|
readonly amount: number;
|
|
7958
7960
|
readonly currency: string;
|
|
7959
7961
|
readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
7960
|
-
readonly device_details: io.flow.payment.
|
|
7962
|
+
readonly device_details: io.flow.payment.v0.unions.DeviceDetails;
|
|
7961
7963
|
readonly locale?: string;
|
|
7962
7964
|
readonly return_url: string;
|
|
7963
7965
|
readonly attributes?: Record<string, string>;
|
|
@@ -8036,7 +8038,6 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
8036
8038
|
type CardNumber =
|
|
8037
8039
|
| io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCleartext
|
|
8038
8040
|
| io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCipher;
|
|
8039
|
-
type DeviceDetails = io.flow.payment.gateway.v0.models.DeviceDetailsBrowser;
|
|
8040
8041
|
type DeviceFingerprintDetails =
|
|
8041
8042
|
io.flow.payment.gateway.v0.models.DeviceFingerprintDetailsBrowser;
|
|
8042
8043
|
type OrderInformation =
|
|
@@ -9525,6 +9526,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9525
9526
|
readonly rules?: io.flow.experience.v0.models.OrderRulesSummary;
|
|
9526
9527
|
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
9527
9528
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
9529
|
+
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
9528
9530
|
}
|
|
9529
9531
|
|
|
9530
9532
|
interface OrderAddress {
|
|
@@ -11764,7 +11766,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11764
11766
|
| 'rate_lock'
|
|
11765
11767
|
| 'transfer';
|
|
11766
11768
|
type PayoutAttachmentType = 'transactions';
|
|
11767
|
-
type PayoutStatusFailureCode =
|
|
11769
|
+
type PayoutStatusFailureCode =
|
|
11770
|
+
| 'invalid_account_number'
|
|
11771
|
+
| 'account_closed'
|
|
11772
|
+
| 'could_not_process';
|
|
11768
11773
|
type StatementAttachmentType = 'csv';
|
|
11769
11774
|
type TransactionSource =
|
|
11770
11775
|
| 'capture'
|
|
@@ -11800,10 +11805,17 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11800
11805
|
readonly url: string;
|
|
11801
11806
|
}
|
|
11802
11807
|
|
|
11803
|
-
interface
|
|
11808
|
+
interface BankAccountFormInfo {
|
|
11809
|
+
readonly discriminator: 'info';
|
|
11804
11810
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
11805
11811
|
}
|
|
11806
11812
|
|
|
11813
|
+
interface BankAccountFormSimple {
|
|
11814
|
+
readonly discriminator: 'simple';
|
|
11815
|
+
readonly routing_number: string;
|
|
11816
|
+
readonly account_number: string;
|
|
11817
|
+
}
|
|
11818
|
+
|
|
11807
11819
|
interface BankAccountReference {
|
|
11808
11820
|
readonly id: string;
|
|
11809
11821
|
}
|
|
@@ -12007,6 +12019,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12007
12019
|
}
|
|
12008
12020
|
|
|
12009
12021
|
declare namespace io.flow.billing.v0.unions {
|
|
12022
|
+
type BankAccountForm =
|
|
12023
|
+
| io.flow.billing.v0.models.BankAccountFormInfo
|
|
12024
|
+
| io.flow.billing.v0.models.BankAccountFormSimple;
|
|
12010
12025
|
type PayoutStatus =
|
|
12011
12026
|
| io.flow.billing.v0.models.PayoutStatusScheduled
|
|
12012
12027
|
| io.flow.billing.v0.models.PayoutStatusSent
|
|
@@ -13344,6 +13359,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13344
13359
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
13345
13360
|
readonly transitions: io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
|
|
13346
13361
|
readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
13362
|
+
readonly started_at?: string;
|
|
13363
|
+
readonly time_blocked?: number;
|
|
13364
|
+
readonly blocked_since?: string;
|
|
13365
|
+
readonly completed_at?: string;
|
|
13347
13366
|
}
|
|
13348
13367
|
|
|
13349
13368
|
interface SetupBlocked {
|
|
@@ -13704,6 +13723,30 @@ declare namespace io.flow.session.v0.unions {
|
|
|
13704
13723
|
}
|
|
13705
13724
|
|
|
13706
13725
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
13726
|
+
interface BankAccountInfoCan {
|
|
13727
|
+
readonly discriminator: 'can';
|
|
13728
|
+
readonly routing_number: string;
|
|
13729
|
+
readonly account_number: string;
|
|
13730
|
+
}
|
|
13731
|
+
|
|
13732
|
+
interface BankAccountInfoFra {
|
|
13733
|
+
readonly discriminator: 'fra';
|
|
13734
|
+
readonly swift_code: string;
|
|
13735
|
+
readonly iban: string;
|
|
13736
|
+
}
|
|
13737
|
+
|
|
13738
|
+
interface BankAccountInfoGbr {
|
|
13739
|
+
readonly discriminator: 'gbr';
|
|
13740
|
+
readonly swift_code: string;
|
|
13741
|
+
readonly iban: string;
|
|
13742
|
+
}
|
|
13743
|
+
|
|
13744
|
+
interface BankAccountInfoIta {
|
|
13745
|
+
readonly discriminator: 'ita';
|
|
13746
|
+
readonly swift_code: string;
|
|
13747
|
+
readonly iban: string;
|
|
13748
|
+
}
|
|
13749
|
+
|
|
13707
13750
|
interface BankAccountInfoUsa {
|
|
13708
13751
|
readonly discriminator: 'usa';
|
|
13709
13752
|
readonly routing_number: string;
|
|
@@ -13713,7 +13756,11 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
13713
13756
|
|
|
13714
13757
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
13715
13758
|
type BankAccountInfo =
|
|
13716
|
-
io.flow.billing.bank.account.v0.models.BankAccountInfoUsa
|
|
13759
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoUsa
|
|
13760
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoCan
|
|
13761
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
|
|
13762
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoFra
|
|
13763
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
13717
13764
|
}
|
|
13718
13765
|
|
|
13719
13766
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -13730,6 +13777,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13730
13777
|
| 'duty_rates_data_event'
|
|
13731
13778
|
| 'integration_test'
|
|
13732
13779
|
| 'unit_test';
|
|
13780
|
+
type AutoRestrictRule =
|
|
13781
|
+
| 'prr-3ce7d556f2464314ab0a3e8eee33e0ce'
|
|
13782
|
+
| 'prr-599c6246a1a24752aeb85e8f79030781'
|
|
13783
|
+
| 'prr-79e41878ea564f9c81cc432a0e84703f'
|
|
13784
|
+
| 'prr-f29c26dc09e04536bc77f9c32786ed70'
|
|
13785
|
+
| 'prr-0522d426a5b741c791ba05496c35297a';
|
|
13733
13786
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13734
13787
|
type BillingAllocationKey =
|
|
13735
13788
|
| 'freight_cost'
|
|
@@ -13758,6 +13811,69 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13758
13811
|
| 'duty_subsidy'
|
|
13759
13812
|
| 'fuel_surcharge'
|
|
13760
13813
|
| 'remote_area_surcharge';
|
|
13814
|
+
type BillingMetricKey =
|
|
13815
|
+
| 'adjustment_transactions_count'
|
|
13816
|
+
| 'adjustment_transactions_total'
|
|
13817
|
+
| 'capture_transactions_count'
|
|
13818
|
+
| 'capture_transactions_total'
|
|
13819
|
+
| 'channel_transactions_count'
|
|
13820
|
+
| 'channel_transactions_total'
|
|
13821
|
+
| 'channel_billed_transactions_count'
|
|
13822
|
+
| 'channel_billed_transactions_total'
|
|
13823
|
+
| 'credit_payment_transactions_count'
|
|
13824
|
+
| 'credit_payment_transactions_total'
|
|
13825
|
+
| 'duty_transactions_count'
|
|
13826
|
+
| 'duty_transactions_total'
|
|
13827
|
+
| 'fully_subsidized_order_transactions_count'
|
|
13828
|
+
| 'fully_subsidized_order_transactions_total'
|
|
13829
|
+
| 'billable_label_transactions_count'
|
|
13830
|
+
| 'billable_label_transactions_total'
|
|
13831
|
+
| 'revenue_share_label_transactions_count'
|
|
13832
|
+
| 'revenue_share_label_transactions_total'
|
|
13833
|
+
| 'manual_transactions_count'
|
|
13834
|
+
| 'manual_transactions_total'
|
|
13835
|
+
| 'order_transactions_count'
|
|
13836
|
+
| 'order_transactions_total'
|
|
13837
|
+
| 'refund_transactions_count'
|
|
13838
|
+
| 'refund_transactions_total'
|
|
13839
|
+
| 'reversal_order_cancellations_transactions_count'
|
|
13840
|
+
| 'reversal_order_cancellations_transactions_total'
|
|
13841
|
+
| 'reversal_external_fulfillment_transactions_count'
|
|
13842
|
+
| 'reversal_external_fulfillment_transactions_total'
|
|
13843
|
+
| 'tax_transactions_count'
|
|
13844
|
+
| 'tax_transactions_total'
|
|
13845
|
+
| 'transfer_transactions_count'
|
|
13846
|
+
| 'transfer_transactions_total'
|
|
13847
|
+
| 'fulfillments_count'
|
|
13848
|
+
| 'fulfillments_total'
|
|
13849
|
+
| 'shipping_notifications_count'
|
|
13850
|
+
| 'queued_capture_unprocessed_count'
|
|
13851
|
+
| 'queued_capture_deletion_unprocessed_count'
|
|
13852
|
+
| 'queued_channel_transaction_unprocessed_count'
|
|
13853
|
+
| 'queued_channel_organization_unprocessed_count'
|
|
13854
|
+
| 'queued_consumer_invoice_unprocessed_count'
|
|
13855
|
+
| 'queued_label_tracking_summary_unprocessed_count'
|
|
13856
|
+
| 'queued_order_unprocessed_count'
|
|
13857
|
+
| 'queued_order_identifier_unprocessed_count'
|
|
13858
|
+
| 'queued_refund_unprocessed_count'
|
|
13859
|
+
| 'queued_refund_deletion_unprocessed_count'
|
|
13860
|
+
| 'queued_statement_batch_unprocessed_count'
|
|
13861
|
+
| 'queued_statement_batch_email_unprocessed_count'
|
|
13862
|
+
| 'queued_statement_email_unprocessed_count'
|
|
13863
|
+
| 'queued_statement_summary_email_unprocessed_count'
|
|
13864
|
+
| 'shipping_notifications_total'
|
|
13865
|
+
| 'statements_no_payout_count'
|
|
13866
|
+
| 'statements_no_payout_total'
|
|
13867
|
+
| 'statements_pending_payout_count'
|
|
13868
|
+
| 'statements_pending_payout_total'
|
|
13869
|
+
| 'payouts_scheduled_count'
|
|
13870
|
+
| 'payouts_scheduled_total'
|
|
13871
|
+
| 'payouts_sent_count'
|
|
13872
|
+
| 'payouts_sent_total'
|
|
13873
|
+
| 'payouts_failed_count'
|
|
13874
|
+
| 'payouts_failed_total'
|
|
13875
|
+
| 'pending_payouts_max_age'
|
|
13876
|
+
| 'average_payout_amount';
|
|
13761
13877
|
type BillingStatementAttachmentKey =
|
|
13762
13878
|
| 'invoice'
|
|
13763
13879
|
| 'statement'
|
|
@@ -14221,6 +14337,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14221
14337
|
| 'tax_transaction_deleted'
|
|
14222
14338
|
| 'duty_transaction_upserted'
|
|
14223
14339
|
| 'duty_transaction_deleted'
|
|
14340
|
+
| 'daily_value_upserted'
|
|
14341
|
+
| 'daily_value_deleted'
|
|
14224
14342
|
| 'calculator_organization_settings_upserted'
|
|
14225
14343
|
| 'calculator_organization_settings_deleted'
|
|
14226
14344
|
| 'carrier_account_upserted_v2'
|
|
@@ -14307,6 +14425,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14307
14425
|
| 'billing_statement_batch_deleted'
|
|
14308
14426
|
| 'billing_statement_batch_statement_upserted'
|
|
14309
14427
|
| 'billing_statement_batch_statement_deleted'
|
|
14428
|
+
| 'standalone_attachment_upserted'
|
|
14429
|
+
| 'standalone_attachment_deleted'
|
|
14310
14430
|
| 'platform_fee_change_upserted'
|
|
14311
14431
|
| 'platform_fee_change_deleted'
|
|
14312
14432
|
| 'organization_bank_account_upserted'
|
|
@@ -14676,6 +14796,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14676
14796
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
14677
14797
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
14678
14798
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
14799
|
+
type OrganizationMetricType =
|
|
14800
|
+
| 'organization_restriction_snapshot'
|
|
14801
|
+
| 'organization_restriction_status';
|
|
14679
14802
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
14680
14803
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
14681
14804
|
type OrganizationRestrictionNoteType =
|
|
@@ -14733,10 +14856,27 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14733
14856
|
| 'fiserv'
|
|
14734
14857
|
| 'crypto';
|
|
14735
14858
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
14859
|
+
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
14736
14860
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
14737
14861
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
14738
14862
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
14739
14863
|
type PromptTarget = 'browse' | 'checkout';
|
|
14864
|
+
type QueuedRecordType =
|
|
14865
|
+
| 'capture'
|
|
14866
|
+
| 'capture_deletion'
|
|
14867
|
+
| 'channel_transaction'
|
|
14868
|
+
| 'channel_organization'
|
|
14869
|
+
| 'consumer_invoice'
|
|
14870
|
+
| 'label_tracking_summary'
|
|
14871
|
+
| 'order'
|
|
14872
|
+
| 'order_identifier'
|
|
14873
|
+
| 'refund'
|
|
14874
|
+
| 'refund_deletion'
|
|
14875
|
+
| 'statement_batch'
|
|
14876
|
+
| 'statement_batch_email'
|
|
14877
|
+
| 'statement_email'
|
|
14878
|
+
| 'statement_summary_email'
|
|
14879
|
+
| 'wash';
|
|
14740
14880
|
type QuoteRequestType =
|
|
14741
14881
|
| 'generate'
|
|
14742
14882
|
| 'delete'
|
|
@@ -14837,7 +14977,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14837
14977
|
| 'do_nothing';
|
|
14838
14978
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14839
14979
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14840
|
-
type SnoozeSourceType = '
|
|
14980
|
+
type SnoozeSourceType = 'queued_record';
|
|
14841
14981
|
type StatementStatus =
|
|
14842
14982
|
| 'created'
|
|
14843
14983
|
| 'no_transactions'
|
|
@@ -15810,7 +15950,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15810
15950
|
|
|
15811
15951
|
interface BillingStatementBatch {
|
|
15812
15952
|
readonly id: string;
|
|
15813
|
-
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
15814
15953
|
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
15815
15954
|
}
|
|
15816
15955
|
|
|
@@ -18930,6 +19069,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18930
19069
|
readonly number_of_items: number;
|
|
18931
19070
|
}
|
|
18932
19071
|
|
|
19072
|
+
interface ClassificationSummaryReportPayload {
|
|
19073
|
+
readonly organization_id?: string;
|
|
19074
|
+
readonly product_id?: string;
|
|
19075
|
+
readonly date_from?: string;
|
|
19076
|
+
readonly date_to?: string;
|
|
19077
|
+
readonly email: string;
|
|
19078
|
+
readonly limit: number;
|
|
19079
|
+
}
|
|
19080
|
+
|
|
18933
19081
|
interface ClassificationWrapper {
|
|
18934
19082
|
readonly classifications: io.flow.internal.v0.unions.ClassificationResponse[];
|
|
18935
19083
|
}
|
|
@@ -19388,6 +19536,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19388
19536
|
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
19389
19537
|
}
|
|
19390
19538
|
|
|
19539
|
+
interface DailyValue {
|
|
19540
|
+
readonly id: string;
|
|
19541
|
+
readonly key: io.flow.internal.v0.enums.BillingMetricKey;
|
|
19542
|
+
readonly value: number;
|
|
19543
|
+
readonly date: string;
|
|
19544
|
+
}
|
|
19545
|
+
|
|
19546
|
+
interface DailyValueDeleted {
|
|
19547
|
+
readonly discriminator: 'daily_value_deleted';
|
|
19548
|
+
readonly event_id: string;
|
|
19549
|
+
readonly timestamp: string;
|
|
19550
|
+
readonly id: string;
|
|
19551
|
+
}
|
|
19552
|
+
|
|
19553
|
+
interface DailyValueUpserted {
|
|
19554
|
+
readonly discriminator: 'daily_value_upserted';
|
|
19555
|
+
readonly event_id: string;
|
|
19556
|
+
readonly timestamp: string;
|
|
19557
|
+
readonly daily_value: io.flow.internal.v0.models.DailyValue;
|
|
19558
|
+
}
|
|
19559
|
+
|
|
19391
19560
|
interface DebugDetails {
|
|
19392
19561
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
19393
19562
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
@@ -19441,8 +19610,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19441
19610
|
readonly type: string;
|
|
19442
19611
|
readonly processing_transaction_id?: string;
|
|
19443
19612
|
readonly queue_errors?: string[];
|
|
19444
|
-
readonly
|
|
19445
|
-
readonly channel_transaction_ignore_reason?: string;
|
|
19613
|
+
readonly ignore_reason?: string;
|
|
19446
19614
|
}
|
|
19447
19615
|
|
|
19448
19616
|
interface DebugTransactionDetails {
|
|
@@ -19509,6 +19677,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19509
19677
|
readonly name: string;
|
|
19510
19678
|
}
|
|
19511
19679
|
|
|
19680
|
+
interface DeleteTransitionsPutForm {
|
|
19681
|
+
readonly transition_ids: string[];
|
|
19682
|
+
}
|
|
19683
|
+
|
|
19512
19684
|
interface DeliveredDutyOption {
|
|
19513
19685
|
readonly methods: io.flow.common.v0.enums.DeliveredDuty[];
|
|
19514
19686
|
readonly message?: io.flow.internal.v0.models.DeliveredDutyOptionMessage;
|
|
@@ -20441,33 +20613,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20441
20613
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
20442
20614
|
}
|
|
20443
20615
|
|
|
20444
|
-
interface File {
|
|
20445
|
-
readonly id: string;
|
|
20446
|
-
readonly stream: io.flow.internal.v0.models.StreamReference;
|
|
20447
|
-
readonly url: string;
|
|
20448
|
-
readonly created_at: string;
|
|
20449
|
-
readonly metadata: io.flow.internal.v0.models.FileMetadata;
|
|
20450
|
-
readonly confirmation?: io.flow.internal.v0.models.FileConfirmation;
|
|
20451
|
-
}
|
|
20452
|
-
|
|
20453
|
-
interface FileConfirmation {
|
|
20454
|
-
readonly counts: io.flow.internal.v0.models.FileMetadataCounts;
|
|
20455
|
-
}
|
|
20456
|
-
|
|
20457
|
-
interface FileConfirmationForm {
|
|
20458
|
-
readonly count_transactions: number;
|
|
20459
|
-
readonly count_statements: number;
|
|
20460
|
-
}
|
|
20461
|
-
|
|
20462
|
-
interface FileMetadata {
|
|
20463
|
-
readonly counts: io.flow.internal.v0.models.FileMetadataCounts;
|
|
20464
|
-
}
|
|
20465
|
-
|
|
20466
|
-
interface FileMetadataCounts {
|
|
20467
|
-
readonly transactions: number;
|
|
20468
|
-
readonly statements: number;
|
|
20469
|
-
}
|
|
20470
|
-
|
|
20471
20616
|
interface FinanceBankAccount {
|
|
20472
20617
|
readonly id: string;
|
|
20473
20618
|
readonly accounts: io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -23746,6 +23891,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23746
23891
|
readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
23747
23892
|
}
|
|
23748
23893
|
|
|
23894
|
+
interface OrganizationOnboardingStateAuditResult {
|
|
23895
|
+
readonly organization: string;
|
|
23896
|
+
readonly validation_errors: string[];
|
|
23897
|
+
}
|
|
23898
|
+
|
|
23749
23899
|
interface OrganizationPaymentSetting {
|
|
23750
23900
|
readonly id: string;
|
|
23751
23901
|
readonly organization_id: string;
|
|
@@ -25031,6 +25181,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25031
25181
|
readonly number: string;
|
|
25032
25182
|
}
|
|
25033
25183
|
|
|
25184
|
+
interface ReportRuleDecision {
|
|
25185
|
+
readonly rule_id: string;
|
|
25186
|
+
readonly rule_name: string;
|
|
25187
|
+
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
25188
|
+
readonly count: number;
|
|
25189
|
+
}
|
|
25190
|
+
|
|
25191
|
+
interface ReportSummary {
|
|
25192
|
+
readonly task_id: string;
|
|
25193
|
+
}
|
|
25194
|
+
|
|
25034
25195
|
interface RequeueRequestForm {
|
|
25035
25196
|
readonly product_ids?: string[];
|
|
25036
25197
|
readonly hs6_codes?: string[];
|
|
@@ -25904,6 +26065,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25904
26065
|
readonly id: string;
|
|
25905
26066
|
}
|
|
25906
26067
|
|
|
26068
|
+
interface ShopifyShopStatistics {
|
|
26069
|
+
readonly id: string;
|
|
26070
|
+
readonly initial_catalog_synced_at?: string;
|
|
26071
|
+
readonly catalog_sync_duration?: number;
|
|
26072
|
+
readonly catalog_products_count?: number;
|
|
26073
|
+
}
|
|
26074
|
+
|
|
25907
26075
|
interface ShopifyShopUpserted {
|
|
25908
26076
|
readonly discriminator: 'shopify_shop_upserted';
|
|
25909
26077
|
readonly event_id: string;
|
|
@@ -26053,23 +26221,36 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26053
26221
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
26054
26222
|
}
|
|
26055
26223
|
|
|
26056
|
-
interface
|
|
26057
|
-
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
26224
|
+
interface StandaloneAttachment {
|
|
26058
26225
|
readonly id: string;
|
|
26059
|
-
readonly
|
|
26226
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
26227
|
+
readonly key: io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
26228
|
+
readonly name: string;
|
|
26229
|
+
readonly url: string;
|
|
26060
26230
|
}
|
|
26061
26231
|
|
|
26062
|
-
interface
|
|
26063
|
-
readonly
|
|
26232
|
+
interface StandaloneAttachmentDeleted {
|
|
26233
|
+
readonly discriminator: 'standalone_attachment_deleted';
|
|
26234
|
+
readonly event_id: string;
|
|
26235
|
+
readonly timestamp: string;
|
|
26236
|
+
readonly id: string;
|
|
26064
26237
|
}
|
|
26065
26238
|
|
|
26066
|
-
interface
|
|
26067
|
-
readonly
|
|
26068
|
-
readonly
|
|
26239
|
+
interface StandaloneAttachmentUpserted {
|
|
26240
|
+
readonly discriminator: 'standalone_attachment_upserted';
|
|
26241
|
+
readonly event_id: string;
|
|
26242
|
+
readonly timestamp: string;
|
|
26243
|
+
readonly attachment: io.flow.internal.v0.models.StandaloneAttachment;
|
|
26069
26244
|
}
|
|
26070
26245
|
|
|
26071
|
-
interface
|
|
26246
|
+
interface StoreConnection {
|
|
26247
|
+
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
26072
26248
|
readonly id: string;
|
|
26249
|
+
readonly domain: string;
|
|
26250
|
+
}
|
|
26251
|
+
|
|
26252
|
+
interface StoreConnectionForm {
|
|
26253
|
+
readonly organization: string;
|
|
26073
26254
|
}
|
|
26074
26255
|
|
|
26075
26256
|
interface StringFeatureDefaultValue {
|
|
@@ -27515,6 +27696,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27515
27696
|
| io.flow.internal.v0.models.TaxTransactionDeleted
|
|
27516
27697
|
| io.flow.internal.v0.models.DutyTransactionUpserted
|
|
27517
27698
|
| io.flow.internal.v0.models.DutyTransactionDeleted
|
|
27699
|
+
| io.flow.internal.v0.models.DailyValueUpserted
|
|
27700
|
+
| io.flow.internal.v0.models.DailyValueDeleted
|
|
27518
27701
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
|
|
27519
27702
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
|
|
27520
27703
|
| io.flow.internal.v0.models.CarrierAccountUpsertedV2
|
|
@@ -27601,6 +27784,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27601
27784
|
| io.flow.internal.v0.models.BillingStatementBatchDeleted
|
|
27602
27785
|
| io.flow.internal.v0.models.BillingStatementBatchStatementUpserted
|
|
27603
27786
|
| io.flow.internal.v0.models.BillingStatementBatchStatementDeleted
|
|
27787
|
+
| io.flow.internal.v0.models.StandaloneAttachmentUpserted
|
|
27788
|
+
| io.flow.internal.v0.models.StandaloneAttachmentDeleted
|
|
27604
27789
|
| io.flow.internal.v0.models.PlatformFeeChangeUpserted
|
|
27605
27790
|
| io.flow.internal.v0.models.PlatformFeeChangeDeleted
|
|
27606
27791
|
| io.flow.internal.v0.models.OrganizationBankAccountUpserted
|
|
@@ -28215,6 +28400,7 @@ export type AuthorizedOrderCharge =
|
|
|
28215
28400
|
io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
28216
28401
|
export type AuthorizedShippingCharge =
|
|
28217
28402
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
28403
|
+
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
28218
28404
|
export type Backfill = io.flow.internal.v0.models.Backfill;
|
|
28219
28405
|
export type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
28220
28406
|
export type BankAccountReference =
|
|
@@ -28242,6 +28428,7 @@ export type BillingLabelSummary =
|
|
|
28242
28428
|
io.flow.internal.v0.models.BillingLabelSummary;
|
|
28243
28429
|
export type BillingLabelTrackingSummaryReference =
|
|
28244
28430
|
io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
|
|
28431
|
+
export type BillingMetricKey = io.flow.internal.v0.enums.BillingMetricKey;
|
|
28245
28432
|
export type BillingOrderDestination =
|
|
28246
28433
|
io.flow.internal.v0.models.BillingOrderDestination;
|
|
28247
28434
|
export type BillingOrderSummary =
|
|
@@ -29595,6 +29782,8 @@ export type ClassificationResponse =
|
|
|
29595
29782
|
io.flow.internal.v0.unions.ClassificationResponse;
|
|
29596
29783
|
export type ClassificationStatistics =
|
|
29597
29784
|
io.flow.internal.v0.models.ClassificationStatistics;
|
|
29785
|
+
export type ClassificationSummaryReportPayload =
|
|
29786
|
+
io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
29598
29787
|
export type ClassificationTaxonomy =
|
|
29599
29788
|
io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
29600
29789
|
export type ClassificationWrapper =
|
|
@@ -29700,6 +29889,9 @@ export type DailyExperimentResultsDeleted =
|
|
|
29700
29889
|
io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
29701
29890
|
export type DailyExperimentResultsUpserted =
|
|
29702
29891
|
io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
29892
|
+
export type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
29893
|
+
export type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
29894
|
+
export type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
29703
29895
|
export type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
29704
29896
|
export type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
29705
29897
|
export type DebugLabelTransactionSummary =
|
|
@@ -29730,6 +29922,8 @@ export type DeclineReasonFraud = io.flow.internal.v0.models.DeclineReasonFraud;
|
|
|
29730
29922
|
export type DecryptCipherForm = io.flow.internal.v0.models.DecryptCipherForm;
|
|
29731
29923
|
export type DecryptedCipher = io.flow.internal.v0.models.DecryptedCipher;
|
|
29732
29924
|
export type DeleteIndexTask = io.flow.internal.v0.models.DeleteIndexTask;
|
|
29925
|
+
export type DeleteTransitionsPutForm =
|
|
29926
|
+
io.flow.internal.v0.models.DeleteTransitionsPutForm;
|
|
29733
29927
|
export type DeliveredDutyOption =
|
|
29734
29928
|
io.flow.internal.v0.models.DeliveredDutyOption;
|
|
29735
29929
|
export type DeliveredDutyOptionMessage =
|
|
@@ -29981,12 +30175,6 @@ export type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
|
|
|
29981
30175
|
export type FeedsExport = io.flow.internal.v0.models.FeedsExport;
|
|
29982
30176
|
export type Fees = io.flow.internal.v0.models.Fees;
|
|
29983
30177
|
export type FeesSource = io.flow.internal.v0.enums.FeesSource;
|
|
29984
|
-
export type File = io.flow.internal.v0.models.File;
|
|
29985
|
-
export type FileConfirmation = io.flow.internal.v0.models.FileConfirmation;
|
|
29986
|
-
export type FileConfirmationForm =
|
|
29987
|
-
io.flow.internal.v0.models.FileConfirmationForm;
|
|
29988
|
-
export type FileMetadata = io.flow.internal.v0.models.FileMetadata;
|
|
29989
|
-
export type FileMetadataCounts = io.flow.internal.v0.models.FileMetadataCounts;
|
|
29990
30178
|
export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
29991
30179
|
export type FinanceBankAccountOwner =
|
|
29992
30180
|
io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
@@ -30787,8 +30975,12 @@ export type OrganizationMembershipCopy =
|
|
|
30787
30975
|
io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
30788
30976
|
export type OrganizationMembershipCopyForm =
|
|
30789
30977
|
io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
30978
|
+
export type OrganizationMetricType =
|
|
30979
|
+
io.flow.internal.v0.enums.OrganizationMetricType;
|
|
30790
30980
|
export type OrganizationOnboardingStateAdjustmentResult =
|
|
30791
30981
|
io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult;
|
|
30982
|
+
export type OrganizationOnboardingStateAuditResult =
|
|
30983
|
+
io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult;
|
|
30792
30984
|
export type OrganizationPaymentSetting =
|
|
30793
30985
|
io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
30794
30986
|
export type OrganizationPaymentSettingDeleted =
|
|
@@ -31018,6 +31210,7 @@ export type ProductListSettingsForm =
|
|
|
31018
31210
|
io.flow.internal.v0.models.ProductListSettingsForm;
|
|
31019
31211
|
export type ProductReviewHistory =
|
|
31020
31212
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
31213
|
+
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
31021
31214
|
export type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
31022
31215
|
export type PromptCheckoutDisplayPosition =
|
|
31023
31216
|
io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
@@ -31032,6 +31225,7 @@ export type ProofOfPostingOrderCancellation =
|
|
|
31032
31225
|
io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
31033
31226
|
export type ProofOfPostingShippingNotification =
|
|
31034
31227
|
io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
31228
|
+
export type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
|
|
31035
31229
|
export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
31036
31230
|
export type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
31037
31231
|
export type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
|
|
@@ -31140,6 +31334,8 @@ export type RegisteredExporterTariffEligibilityForm =
|
|
|
31140
31334
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
31141
31335
|
export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
31142
31336
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
31337
|
+
export type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
31338
|
+
export type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
31143
31339
|
export type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
31144
31340
|
export type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
31145
31341
|
export type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -31407,6 +31603,8 @@ export type ShopifyPromotionStatus =
|
|
|
31407
31603
|
io.flow.internal.v0.enums.ShopifyPromotionStatus;
|
|
31408
31604
|
export type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
31409
31605
|
export type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
|
|
31606
|
+
export type ShopifyShopStatistics =
|
|
31607
|
+
io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
31410
31608
|
export type ShopifyShopUpserted =
|
|
31411
31609
|
io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
31412
31610
|
export type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
@@ -31447,6 +31645,12 @@ export type SpotRateMetadataRate =
|
|
|
31447
31645
|
io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
31448
31646
|
export type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
31449
31647
|
export type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
31648
|
+
export type StandaloneAttachment =
|
|
31649
|
+
io.flow.internal.v0.models.StandaloneAttachment;
|
|
31650
|
+
export type StandaloneAttachmentDeleted =
|
|
31651
|
+
io.flow.internal.v0.models.StandaloneAttachmentDeleted;
|
|
31652
|
+
export type StandaloneAttachmentUpserted =
|
|
31653
|
+
io.flow.internal.v0.models.StandaloneAttachmentUpserted;
|
|
31450
31654
|
export type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
31451
31655
|
export type StatementTransferTransactionLocation =
|
|
31452
31656
|
io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
@@ -31455,8 +31659,6 @@ export type Status = io.flow.internal.v0.enums.Status;
|
|
|
31455
31659
|
export type StoreConnection = io.flow.internal.v0.models.StoreConnection;
|
|
31456
31660
|
export type StoreConnectionForm =
|
|
31457
31661
|
io.flow.internal.v0.models.StoreConnectionForm;
|
|
31458
|
-
export type Stream = io.flow.internal.v0.models.Stream;
|
|
31459
|
-
export type StreamReference = io.flow.internal.v0.models.StreamReference;
|
|
31460
31662
|
export type StringFeatureDefaultValue =
|
|
31461
31663
|
io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
31462
31664
|
export type StringFeatureRule = io.flow.internal.v0.models.StringFeatureRule;
|