@flowio/types 11.24.43 → 11.24.45
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 +244 -23
- package/dist/api.d.ts +48 -3
- package/package.json +2 -2
- package/src/api-internal.ts +345 -23
- package/src/api.ts +73 -3
package/src/api-internal.ts
CHANGED
|
@@ -1818,6 +1818,11 @@ declare namespace io.flow.flexe.v0.models {
|
|
|
1818
1818
|
}
|
|
1819
1819
|
|
|
1820
1820
|
declare namespace io.flow.payment.v0.enums {
|
|
1821
|
+
type AddressVerificationResultFieldCode =
|
|
1822
|
+
| 'matched'
|
|
1823
|
+
| 'not_available'
|
|
1824
|
+
| 'not_checked'
|
|
1825
|
+
| 'not_matched';
|
|
1821
1826
|
type AuthorizationDeclineCode =
|
|
1822
1827
|
| 'expired'
|
|
1823
1828
|
| 'invalid_name'
|
|
@@ -1875,6 +1880,11 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1875
1880
|
| 'mastercard'
|
|
1876
1881
|
| 'visa';
|
|
1877
1882
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1883
|
+
type CvvResultCode =
|
|
1884
|
+
| 'matched'
|
|
1885
|
+
| 'not_available'
|
|
1886
|
+
| 'not_checked'
|
|
1887
|
+
| 'not_matched';
|
|
1878
1888
|
type PaymentErrorCode =
|
|
1879
1889
|
| 'duplicate'
|
|
1880
1890
|
| 'invalid_amount'
|
|
@@ -1927,6 +1937,13 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1927
1937
|
readonly ip?: string;
|
|
1928
1938
|
}
|
|
1929
1939
|
|
|
1940
|
+
interface AddressVerificationResult {
|
|
1941
|
+
readonly street_code: io.flow.payment.v0.enums.AddressVerificationResultFieldCode;
|
|
1942
|
+
readonly postal_code: io.flow.payment.v0.enums.AddressVerificationResultFieldCode;
|
|
1943
|
+
readonly name_code: io.flow.payment.v0.enums.AddressVerificationResultFieldCode;
|
|
1944
|
+
readonly raw?: string;
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1930
1947
|
interface AdyenChallengeShopperData {
|
|
1931
1948
|
readonly discriminator: 'adyen_challenge_shopper_data';
|
|
1932
1949
|
readonly challenge_token: string;
|
|
@@ -2246,6 +2263,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2246
2263
|
readonly description?: string;
|
|
2247
2264
|
}
|
|
2248
2265
|
|
|
2266
|
+
interface CvvResult {
|
|
2267
|
+
readonly code: io.flow.payment.v0.enums.CvvResultCode;
|
|
2268
|
+
readonly raw?: string;
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2249
2271
|
interface DirectAuthorizationForm {
|
|
2250
2272
|
readonly discriminator: 'direct_authorization_form';
|
|
2251
2273
|
readonly token: string;
|
|
@@ -2697,6 +2719,17 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2697
2719
|
readonly method: string;
|
|
2698
2720
|
}
|
|
2699
2721
|
|
|
2722
|
+
interface TransactionDetailsCard {
|
|
2723
|
+
readonly address_verification_result?: io.flow.payment.v0.models.AddressVerificationResult;
|
|
2724
|
+
readonly cvv_result?: io.flow.payment.v0.models.CvvResult;
|
|
2725
|
+
readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
interface TransactionNetworkDetailsCard {
|
|
2729
|
+
readonly network_transaction_id?: string;
|
|
2730
|
+
readonly network?: io.flow.payment.v0.enums.CardType;
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2700
2733
|
interface VirtualCard {
|
|
2701
2734
|
readonly id: string;
|
|
2702
2735
|
readonly key: string;
|
|
@@ -3814,6 +3847,15 @@ declare namespace io.flow.customer.v0.models {
|
|
|
3814
3847
|
declare namespace io.flow.label.v0.enums {
|
|
3815
3848
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3816
3849
|
type Direction = 'outbound' | 'return';
|
|
3850
|
+
type LabelRequestMethod =
|
|
3851
|
+
| 'flow_web_sync'
|
|
3852
|
+
| 'channel_web_async'
|
|
3853
|
+
| 'direct_api_sync'
|
|
3854
|
+
| 'direct_api_async'
|
|
3855
|
+
| 'bridge_api_sync'
|
|
3856
|
+
| 'partner_api_sync'
|
|
3857
|
+
| 'autogenerated';
|
|
3858
|
+
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3817
3859
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3818
3860
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3819
3861
|
}
|
|
@@ -3909,6 +3951,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3909
3951
|
readonly order_identifier?: string;
|
|
3910
3952
|
readonly fulfillment_key?: string;
|
|
3911
3953
|
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3954
|
+
readonly label_request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
3955
|
+
readonly label_trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
3912
3956
|
readonly created_at?: string;
|
|
3913
3957
|
readonly updated_at?: string;
|
|
3914
3958
|
}
|
|
@@ -3964,9 +4008,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3964
4008
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3965
4009
|
readonly flow_tracking_number: string;
|
|
3966
4010
|
readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3967
|
-
readonly package
|
|
3968
|
-
readonly service: io.flow.fulfillment.v0.
|
|
3969
|
-
readonly window
|
|
4011
|
+
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
4012
|
+
readonly service: io.flow.fulfillment.v0.unions.ServiceDescription;
|
|
4013
|
+
readonly window?: io.flow.common.v0.models.DatetimeRange;
|
|
3970
4014
|
readonly order?: io.flow.label.v0.models.LabelOrderSummary;
|
|
3971
4015
|
readonly order_identifier?: string;
|
|
3972
4016
|
readonly fulfillment_key?: string;
|
|
@@ -8025,6 +8069,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
8025
8069
|
readonly card_data: io.flow.payment.gateway.v0.unions.PaymentMethodCard;
|
|
8026
8070
|
readonly device_fingerprint_details: io.flow.payment.gateway.v0.unions.DeviceFingerprintDetails;
|
|
8027
8071
|
readonly cvv?: string;
|
|
8072
|
+
readonly reference?: string;
|
|
8073
|
+
readonly previous_transaction_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
8028
8074
|
}
|
|
8029
8075
|
|
|
8030
8076
|
interface PaymentMethodDataAuthorizeGooglepay {
|
|
@@ -8140,6 +8186,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
8140
8186
|
readonly last_four: string;
|
|
8141
8187
|
readonly card_type: io.flow.payment.v0.enums.CardType;
|
|
8142
8188
|
readonly id: string;
|
|
8189
|
+
readonly reference?: string;
|
|
8190
|
+
readonly transaction_details?: io.flow.payment.v0.models.TransactionDetailsCard;
|
|
8143
8191
|
}
|
|
8144
8192
|
|
|
8145
8193
|
interface PaymentMethodSummaryGooglepay {
|
|
@@ -9849,6 +9897,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9849
9897
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
9850
9898
|
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
9851
9899
|
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
9900
|
+
readonly ratecard_id?: string;
|
|
9852
9901
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
9853
9902
|
}
|
|
9854
9903
|
|
|
@@ -12368,12 +12417,18 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
12368
12417
|
}
|
|
12369
12418
|
|
|
12370
12419
|
interface ServiceSummary {
|
|
12420
|
+
readonly discriminator: 'service_summary';
|
|
12371
12421
|
readonly id: string;
|
|
12372
12422
|
readonly carrier: io.flow.fulfillment.v0.models.CarrierReference;
|
|
12373
12423
|
readonly name: string;
|
|
12374
12424
|
readonly center_code?: string;
|
|
12375
12425
|
}
|
|
12376
12426
|
|
|
12427
|
+
interface ServiceUnknown {
|
|
12428
|
+
readonly discriminator: 'service_unknown';
|
|
12429
|
+
readonly name: string;
|
|
12430
|
+
}
|
|
12431
|
+
|
|
12377
12432
|
interface ShippingAddress {
|
|
12378
12433
|
readonly contact: io.flow.common.v0.models.Contact;
|
|
12379
12434
|
readonly location: io.flow.common.v0.models.Address;
|
|
@@ -12612,6 +12667,9 @@ declare namespace io.flow.fulfillment.v0.unions {
|
|
|
12612
12667
|
| io.flow.fulfillment.v0.models.CommercialInvoiceFee
|
|
12613
12668
|
| io.flow.fulfillment.v0.models.InboundCartonFee
|
|
12614
12669
|
| io.flow.fulfillment.v0.models.OutboundCartonFee;
|
|
12670
|
+
type ServiceDescription =
|
|
12671
|
+
| io.flow.fulfillment.v0.models.ServiceSummary
|
|
12672
|
+
| io.flow.fulfillment.v0.models.ServiceUnknown;
|
|
12615
12673
|
type TierRuleOutcome =
|
|
12616
12674
|
| io.flow.fulfillment.v0.models.AmountMargin
|
|
12617
12675
|
| io.flow.fulfillment.v0.models.AtCost
|
|
@@ -12806,6 +12864,82 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
12806
12864
|
| io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
|
|
12807
12865
|
}
|
|
12808
12866
|
|
|
12867
|
+
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
12868
|
+
type MerchantRejectedReason =
|
|
12869
|
+
| 'merchant_ubo_is_pep'
|
|
12870
|
+
| 'merchant_catalog_is_unsupportable'
|
|
12871
|
+
| 'merchant_failed_kyb_review';
|
|
12872
|
+
type OnboardingBlockedReason =
|
|
12873
|
+
| 'street_address_is_blank_3pl'
|
|
12874
|
+
| 'street_address_is_po_box_3pl'
|
|
12875
|
+
| 'business_street_address_is_blank'
|
|
12876
|
+
| 'business_street_address_is_po_box';
|
|
12877
|
+
}
|
|
12878
|
+
|
|
12879
|
+
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
12880
|
+
interface ActivationPutForm {
|
|
12881
|
+
readonly placeholder?: boolean;
|
|
12882
|
+
}
|
|
12883
|
+
|
|
12884
|
+
interface ApplicationReceived {
|
|
12885
|
+
readonly discriminator: 'application_received';
|
|
12886
|
+
readonly placeholder?: boolean;
|
|
12887
|
+
}
|
|
12888
|
+
|
|
12889
|
+
interface InComplianceReview {
|
|
12890
|
+
readonly discriminator: 'in_compliance_review';
|
|
12891
|
+
readonly placeholder?: boolean;
|
|
12892
|
+
}
|
|
12893
|
+
|
|
12894
|
+
interface MerchantActivated {
|
|
12895
|
+
readonly discriminator: 'merchant_activated';
|
|
12896
|
+
readonly placeholder?: boolean;
|
|
12897
|
+
}
|
|
12898
|
+
|
|
12899
|
+
interface MerchantRejected {
|
|
12900
|
+
readonly discriminator: 'merchant_rejected';
|
|
12901
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
12902
|
+
readonly description?: string;
|
|
12903
|
+
}
|
|
12904
|
+
|
|
12905
|
+
interface OnboardingStateTransition {
|
|
12906
|
+
readonly state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
12907
|
+
readonly started_at: string;
|
|
12908
|
+
}
|
|
12909
|
+
|
|
12910
|
+
interface OrganizationOnboardingState {
|
|
12911
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
12912
|
+
readonly transitions: io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
|
|
12913
|
+
readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
12914
|
+
}
|
|
12915
|
+
|
|
12916
|
+
interface SetupBlocked {
|
|
12917
|
+
readonly discriminator: 'setup_blocked';
|
|
12918
|
+
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
12919
|
+
}
|
|
12920
|
+
|
|
12921
|
+
interface SetupCompleted {
|
|
12922
|
+
readonly discriminator: 'setup_completed';
|
|
12923
|
+
readonly placeholder?: boolean;
|
|
12924
|
+
}
|
|
12925
|
+
|
|
12926
|
+
interface SetupInProgress {
|
|
12927
|
+
readonly discriminator: 'setup_in_progress';
|
|
12928
|
+
readonly placeholder?: boolean;
|
|
12929
|
+
}
|
|
12930
|
+
}
|
|
12931
|
+
|
|
12932
|
+
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
12933
|
+
type OnboardingState =
|
|
12934
|
+
| io.flow.organization.onboarding.state.v0.models.ApplicationReceived
|
|
12935
|
+
| io.flow.organization.onboarding.state.v0.models.InComplianceReview
|
|
12936
|
+
| io.flow.organization.onboarding.state.v0.models.SetupInProgress
|
|
12937
|
+
| io.flow.organization.onboarding.state.v0.models.MerchantRejected
|
|
12938
|
+
| io.flow.organization.onboarding.state.v0.models.SetupBlocked
|
|
12939
|
+
| io.flow.organization.onboarding.state.v0.models.SetupCompleted
|
|
12940
|
+
| io.flow.organization.onboarding.state.v0.models.MerchantActivated;
|
|
12941
|
+
}
|
|
12942
|
+
|
|
12809
12943
|
declare namespace io.flow.fraud.v0.enums {
|
|
12810
12944
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
12811
12945
|
type FraudLiability = 'flow' | 'organization';
|
|
@@ -13151,6 +13285,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
13151
13285
|
}
|
|
13152
13286
|
|
|
13153
13287
|
declare namespace io.flow.internal.v0.enums {
|
|
13288
|
+
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
13154
13289
|
type AccountType = 'channel' | 'organization';
|
|
13155
13290
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
13156
13291
|
type AdyenIntegrationType =
|
|
@@ -13830,6 +13965,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13830
13965
|
| 'shopify_experience_short_id_deleted'
|
|
13831
13966
|
| 'shopify_markets_order_upserted'
|
|
13832
13967
|
| 'shopify_markets_order_deleted'
|
|
13968
|
+
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
13969
|
+
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
13833
13970
|
| 'stripe_authorization_deleted'
|
|
13834
13971
|
| 'stripe_authorization_upserted'
|
|
13835
13972
|
| 'stripe_reversal_deleted'
|
|
@@ -13913,7 +14050,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13913
14050
|
| 'billable_label'
|
|
13914
14051
|
| 'fee'
|
|
13915
14052
|
| 'revenue_share';
|
|
13916
|
-
type LiabilitiesMethod = 'withholding' | 'transaction';
|
|
13917
14053
|
type LiabilityType =
|
|
13918
14054
|
| 'full_value_tax'
|
|
13919
14055
|
| 'low_value_goods_tax'
|
|
@@ -14013,6 +14149,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14013
14149
|
| 'shopify_markets'
|
|
14014
14150
|
| 'integration_partner'
|
|
14015
14151
|
| 'dtce'
|
|
14152
|
+
| 'restrictions'
|
|
14016
14153
|
| 'miscellaneous';
|
|
14017
14154
|
type OnboardingAutomationProcessState =
|
|
14018
14155
|
| 'not_started'
|
|
@@ -14172,6 +14309,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14172
14309
|
| 'sports_and_fitness'
|
|
14173
14310
|
| 'toys_hobbies_gifts'
|
|
14174
14311
|
| 'other';
|
|
14312
|
+
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
14313
|
+
type ShopifyMonitoringTrackingField =
|
|
14314
|
+
| 'tracking_number'
|
|
14315
|
+
| 'carrier_service'
|
|
14316
|
+
| 'tracking_url';
|
|
14175
14317
|
type ShopifyPromotionBehavior = 'disable_discount_codes';
|
|
14176
14318
|
type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
|
|
14177
14319
|
type ShopifyPromotionOrderEntitlementComponent =
|
|
@@ -14186,6 +14328,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14186
14328
|
| 'end_and_revert'
|
|
14187
14329
|
| 'do_nothing';
|
|
14188
14330
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14331
|
+
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14332
|
+
type SnoozeSourceType = 'queued_capture' | 'queued_refund';
|
|
14189
14333
|
type StatementStatus =
|
|
14190
14334
|
| 'created'
|
|
14191
14335
|
| 'no_transactions'
|
|
@@ -14393,6 +14537,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14393
14537
|
readonly fees_source: io.flow.internal.v0.enums.FeesSource;
|
|
14394
14538
|
readonly require_payment_request: boolean;
|
|
14395
14539
|
readonly round_individual_transactions: boolean;
|
|
14540
|
+
readonly liabilities_method: io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
14396
14541
|
}
|
|
14397
14542
|
|
|
14398
14543
|
interface AccountSettingsDeleted {
|
|
@@ -14486,6 +14631,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14486
14631
|
readonly percentage: number;
|
|
14487
14632
|
}
|
|
14488
14633
|
|
|
14634
|
+
interface AdjustmentDetailsAmountFixed {
|
|
14635
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
14636
|
+
}
|
|
14637
|
+
|
|
14638
|
+
interface AdjustmentDetailsAmountPercentage {
|
|
14639
|
+
readonly percentage: number;
|
|
14640
|
+
}
|
|
14641
|
+
|
|
14642
|
+
interface AdjustmentDetailsProcessingTransaction {
|
|
14643
|
+
readonly discriminator: 'processing_transaction';
|
|
14644
|
+
readonly withholdings?: io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionWithholding[];
|
|
14645
|
+
readonly fees?: io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionFee[];
|
|
14646
|
+
}
|
|
14647
|
+
|
|
14648
|
+
interface AdjustmentDetailsProcessingTransactionFee {
|
|
14649
|
+
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
14650
|
+
readonly amount: io.flow.internal.v0.unions.AdjustmentAmount;
|
|
14651
|
+
}
|
|
14652
|
+
|
|
14653
|
+
interface AdjustmentDetailsProcessingTransactionWithholding {
|
|
14654
|
+
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
14655
|
+
readonly amount: io.flow.internal.v0.unions.AdjustmentAmount;
|
|
14656
|
+
}
|
|
14657
|
+
|
|
14489
14658
|
interface AdyenAccount {
|
|
14490
14659
|
readonly discriminator: 'adyen_account';
|
|
14491
14660
|
readonly id: string;
|
|
@@ -18132,6 +18301,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18132
18301
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
18133
18302
|
readonly categories: string[];
|
|
18134
18303
|
readonly model_id?: string;
|
|
18304
|
+
readonly classified_by?: string;
|
|
18135
18305
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
18136
18306
|
readonly status?: io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
18137
18307
|
readonly suggested_action?: io.flow.internal.v0.enums.ItemClassificationAction;
|
|
@@ -18140,8 +18310,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18140
18310
|
|
|
18141
18311
|
interface ClassificationActionFormUndo {
|
|
18142
18312
|
readonly discriminator: 'undo';
|
|
18143
|
-
readonly
|
|
18144
|
-
readonly item_numbers: string[];
|
|
18313
|
+
readonly item_classification_ids: string[];
|
|
18145
18314
|
readonly user: string;
|
|
18146
18315
|
}
|
|
18147
18316
|
|
|
@@ -18223,13 +18392,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18223
18392
|
readonly message: string;
|
|
18224
18393
|
}
|
|
18225
18394
|
|
|
18226
|
-
interface ClassificationSearch {
|
|
18227
|
-
readonly product_id: string;
|
|
18228
|
-
readonly organization_id: io.flow.common.v0.models.OrganizationSummary;
|
|
18229
|
-
readonly items: io.flow.common.v0.models.CatalogItemSummary[];
|
|
18230
|
-
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
18231
|
-
}
|
|
18232
|
-
|
|
18233
18395
|
interface ClassificationStatistics {
|
|
18234
18396
|
readonly status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
18235
18397
|
readonly number_of_items: number;
|
|
@@ -18357,6 +18519,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18357
18519
|
readonly id: string;
|
|
18358
18520
|
}
|
|
18359
18521
|
|
|
18522
|
+
interface CourthouseProductSummary {
|
|
18523
|
+
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
18524
|
+
readonly product_id: string;
|
|
18525
|
+
readonly items: io.flow.common.v0.models.CatalogItemSummary[];
|
|
18526
|
+
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
18527
|
+
}
|
|
18528
|
+
|
|
18360
18529
|
interface CryptoAccount {
|
|
18361
18530
|
readonly discriminator: 'crypto_account';
|
|
18362
18531
|
readonly id: string;
|
|
@@ -22246,6 +22415,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22246
22415
|
readonly lines: io.flow.internal.v0.models.OnboardingAuditReportLine[];
|
|
22247
22416
|
}
|
|
22248
22417
|
|
|
22418
|
+
interface OnboardingOrganization {
|
|
22419
|
+
readonly age: number;
|
|
22420
|
+
readonly compliance_approved: boolean;
|
|
22421
|
+
readonly compliance_full_review_required: boolean;
|
|
22422
|
+
readonly application_received: string;
|
|
22423
|
+
readonly legal_name: string;
|
|
22424
|
+
readonly shop_name: string;
|
|
22425
|
+
readonly organization_id: string;
|
|
22426
|
+
readonly onboarding_state: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
22427
|
+
readonly gmv: number;
|
|
22428
|
+
}
|
|
22429
|
+
|
|
22249
22430
|
interface OneTimeTokenRedemptionForm {
|
|
22250
22431
|
readonly token: string;
|
|
22251
22432
|
}
|
|
@@ -23894,6 +24075,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23894
24075
|
interface RestrictionOrganizationDecisionSummary {
|
|
23895
24076
|
readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
|
|
23896
24077
|
readonly earliest_pending_date: string;
|
|
24078
|
+
readonly date: string;
|
|
23897
24079
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
23898
24080
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
23899
24081
|
readonly count: number;
|
|
@@ -24352,6 +24534,69 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24352
24534
|
readonly token: string;
|
|
24353
24535
|
}
|
|
24354
24536
|
|
|
24537
|
+
interface ShopifyMonitoringCarrierService {
|
|
24538
|
+
readonly service: string;
|
|
24539
|
+
}
|
|
24540
|
+
|
|
24541
|
+
interface ShopifyMonitoringFulfillmentExternal {
|
|
24542
|
+
readonly discriminator: 'fulfillment_external';
|
|
24543
|
+
readonly shopify_fulfillment_id: string;
|
|
24544
|
+
readonly flow_tracking_numbers: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber[];
|
|
24545
|
+
readonly flow_carrier_service: io.flow.internal.v0.models.ShopifyMonitoringCarrierService[];
|
|
24546
|
+
readonly shopify_tracking_number: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
24547
|
+
readonly shopify_carrier_service?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
24548
|
+
}
|
|
24549
|
+
|
|
24550
|
+
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
24551
|
+
readonly discriminator: 'fulfillment_missing_details';
|
|
24552
|
+
readonly shopify_fulfillment_id: string;
|
|
24553
|
+
readonly missing_details: io.flow.internal.v0.enums.ShopifyMonitoringTrackingField[];
|
|
24554
|
+
}
|
|
24555
|
+
|
|
24556
|
+
interface ShopifyMonitoringOrderMonitor {
|
|
24557
|
+
readonly id: string;
|
|
24558
|
+
readonly organization_reference: io.flow.common.v0.models.OrganizationReference;
|
|
24559
|
+
readonly order_number: string;
|
|
24560
|
+
readonly monitor: io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
24561
|
+
readonly created_at: string;
|
|
24562
|
+
}
|
|
24563
|
+
|
|
24564
|
+
interface ShopifyMonitoringOrderMonitorEventDeleted {
|
|
24565
|
+
readonly discriminator: 'shopify_monitoring_order_monitor_event_deleted';
|
|
24566
|
+
readonly event_id: string;
|
|
24567
|
+
readonly timestamp: string;
|
|
24568
|
+
readonly organization: string;
|
|
24569
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
24570
|
+
}
|
|
24571
|
+
|
|
24572
|
+
interface ShopifyMonitoringOrderMonitorEventUpserted {
|
|
24573
|
+
readonly discriminator: 'shopify_monitoring_order_monitor_event_upserted';
|
|
24574
|
+
readonly event_id: string;
|
|
24575
|
+
readonly timestamp: string;
|
|
24576
|
+
readonly organization: string;
|
|
24577
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
24578
|
+
}
|
|
24579
|
+
|
|
24580
|
+
interface ShopifyMonitoringOrderMonitorReview {
|
|
24581
|
+
readonly id: string;
|
|
24582
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
24583
|
+
readonly order_details: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
24584
|
+
readonly status: io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
24585
|
+
}
|
|
24586
|
+
|
|
24587
|
+
interface ShopifyMonitoringOrderMonitorReviewOrderDetails {
|
|
24588
|
+
readonly organization: string;
|
|
24589
|
+
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
24590
|
+
}
|
|
24591
|
+
|
|
24592
|
+
interface ShopifyMonitoringTrackingNumber {
|
|
24593
|
+
readonly number: string;
|
|
24594
|
+
}
|
|
24595
|
+
|
|
24596
|
+
interface ShopifyMonitoringTrackingUrl {
|
|
24597
|
+
readonly url: string;
|
|
24598
|
+
}
|
|
24599
|
+
|
|
24355
24600
|
interface ShopifyOrderAuthorization {
|
|
24356
24601
|
readonly result: io.flow.payment.v0.models.AuthorizationResult;
|
|
24357
24602
|
readonly detail?: io.flow.internal.v0.models.ShopifyOrderDetail;
|
|
@@ -24569,6 +24814,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24569
24814
|
interface SingleClassificationAction {
|
|
24570
24815
|
readonly discriminator: 'single';
|
|
24571
24816
|
readonly organization: string;
|
|
24817
|
+
readonly item_classification_id: string;
|
|
24572
24818
|
readonly item_summary: io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
24573
24819
|
readonly customs_description: string;
|
|
24574
24820
|
readonly labels?: io.flow.internal.v0.models.ProductLabels;
|
|
@@ -24582,7 +24828,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24582
24828
|
readonly initial_customs_description?: string;
|
|
24583
24829
|
}
|
|
24584
24830
|
|
|
24585
|
-
interface
|
|
24831
|
+
interface SmpTaxCalculation {
|
|
24586
24832
|
readonly quote_reference: string;
|
|
24587
24833
|
readonly target_currency_code: string;
|
|
24588
24834
|
readonly total: number;
|
|
@@ -24593,7 +24839,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24593
24839
|
readonly customer_code?: string;
|
|
24594
24840
|
}
|
|
24595
24841
|
|
|
24596
|
-
interface
|
|
24842
|
+
interface SmpTaxCalculationForm {
|
|
24597
24843
|
readonly quote_reference: string;
|
|
24598
24844
|
readonly target_currency_code: string;
|
|
24599
24845
|
readonly destination: io.flow.common.v0.models.Address;
|
|
@@ -24609,6 +24855,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24609
24855
|
readonly tracker_id: string;
|
|
24610
24856
|
}
|
|
24611
24857
|
|
|
24858
|
+
interface Snooze {
|
|
24859
|
+
readonly id: string;
|
|
24860
|
+
readonly until: string;
|
|
24861
|
+
readonly reason: string;
|
|
24862
|
+
readonly next_action_with: io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
24863
|
+
readonly source: io.flow.internal.v0.models.SnoozeSource;
|
|
24864
|
+
}
|
|
24865
|
+
|
|
24866
|
+
interface SnoozeForm {
|
|
24867
|
+
readonly until: string;
|
|
24868
|
+
readonly reason: string;
|
|
24869
|
+
readonly next_action_with: io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
24870
|
+
readonly source_type: io.flow.internal.v0.enums.SnoozeSourceType;
|
|
24871
|
+
readonly source_id: string;
|
|
24872
|
+
}
|
|
24873
|
+
|
|
24874
|
+
interface SnoozeSource {
|
|
24875
|
+
readonly type: io.flow.internal.v0.enums.SnoozeSourceType;
|
|
24876
|
+
readonly id: string;
|
|
24877
|
+
}
|
|
24878
|
+
|
|
24612
24879
|
interface SpotRate {
|
|
24613
24880
|
readonly id: string;
|
|
24614
24881
|
readonly effective_at: string;
|
|
@@ -25304,13 +25571,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25304
25571
|
readonly original_transaction: io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
25305
25572
|
readonly adjustment_transaction: io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
25306
25573
|
readonly description: string;
|
|
25307
|
-
readonly
|
|
25574
|
+
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
25308
25575
|
}
|
|
25309
25576
|
|
|
25310
25577
|
interface TransactionAdjustmentForm {
|
|
25311
25578
|
readonly original_transaction_id: string;
|
|
25312
25579
|
readonly description: string;
|
|
25313
|
-
readonly
|
|
25580
|
+
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
25314
25581
|
}
|
|
25315
25582
|
|
|
25316
25583
|
interface TransactionReference {
|
|
@@ -25612,6 +25879,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25612
25879
|
type AdjustmentAmount =
|
|
25613
25880
|
| io.flow.internal.v0.models.AdjustmentAmountPercentage
|
|
25614
25881
|
| io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
25882
|
+
type AdjustmentDetails =
|
|
25883
|
+
| io.flow.internal.v0.models.AdjustmentAmountPercentage
|
|
25884
|
+
| io.flow.internal.v0.models.AdjustmentAmountFixed
|
|
25885
|
+
| io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
25615
25886
|
type AuthorizationPayload =
|
|
25616
25887
|
| io.flow.internal.v0.models.ApplePayAuthorizationPayload
|
|
25617
25888
|
| io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
@@ -26293,6 +26564,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26293
26564
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted
|
|
26294
26565
|
| io.flow.internal.v0.models.ShopifyMarketsOrderUpserted
|
|
26295
26566
|
| io.flow.internal.v0.models.ShopifyMarketsOrderDeleted
|
|
26567
|
+
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
26568
|
+
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
26296
26569
|
| io.flow.internal.v0.models.StripeAuthorizationDeleted
|
|
26297
26570
|
| io.flow.internal.v0.models.StripeAuthorizationUpserted
|
|
26298
26571
|
| io.flow.internal.v0.models.StripeReversalDeleted
|
|
@@ -26505,6 +26778,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26505
26778
|
| io.flow.internal.v0.models.RoutingProcessor
|
|
26506
26779
|
| io.flow.internal.v0.models.RoutingAccount
|
|
26507
26780
|
| io.flow.internal.v0.models.RoutingMerchant;
|
|
26781
|
+
type ShopifyMonitoringOrderMonitorType =
|
|
26782
|
+
| io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal
|
|
26783
|
+
| io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
26508
26784
|
type ShopifyPromotionOfferDiscount =
|
|
26509
26785
|
| io.flow.internal.v0.models.ShopifyPromotionFixedAmount
|
|
26510
26786
|
| io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
@@ -26595,6 +26871,8 @@ export type AccountProcessingRatesUpserted =
|
|
|
26595
26871
|
export type AccountReference = io.flow.internal.v0.models.AccountReference;
|
|
26596
26872
|
export type AccountSettingLabelFees =
|
|
26597
26873
|
io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
26874
|
+
export type AccountSettingLiabilitiesMethod =
|
|
26875
|
+
io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
26598
26876
|
export type AccountSettings = io.flow.internal.v0.models.AccountSettings;
|
|
26599
26877
|
export type AccountSettingsDeleted =
|
|
26600
26878
|
io.flow.internal.v0.models.AccountSettingsDeleted;
|
|
@@ -26621,6 +26899,17 @@ export type AdjustmentAmountFixed =
|
|
|
26621
26899
|
io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
26622
26900
|
export type AdjustmentAmountPercentage =
|
|
26623
26901
|
io.flow.internal.v0.models.AdjustmentAmountPercentage;
|
|
26902
|
+
export type AdjustmentDetails = io.flow.internal.v0.unions.AdjustmentDetails;
|
|
26903
|
+
export type AdjustmentDetailsAmountFixed =
|
|
26904
|
+
io.flow.internal.v0.models.AdjustmentDetailsAmountFixed;
|
|
26905
|
+
export type AdjustmentDetailsAmountPercentage =
|
|
26906
|
+
io.flow.internal.v0.models.AdjustmentDetailsAmountPercentage;
|
|
26907
|
+
export type AdjustmentDetailsProcessingTransaction =
|
|
26908
|
+
io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
26909
|
+
export type AdjustmentDetailsProcessingTransactionFee =
|
|
26910
|
+
io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionFee;
|
|
26911
|
+
export type AdjustmentDetailsProcessingTransactionWithholding =
|
|
26912
|
+
io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionWithholding;
|
|
26624
26913
|
export type AdyenAccount = io.flow.internal.v0.models.AdyenAccount;
|
|
26625
26914
|
export type AdyenAccountModificationForm =
|
|
26626
26915
|
io.flow.internal.v0.models.AdyenAccountModificationForm;
|
|
@@ -28109,8 +28398,6 @@ export type ClassificationRequeueRequest =
|
|
|
28109
28398
|
io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
28110
28399
|
export type ClassificationResponse =
|
|
28111
28400
|
io.flow.internal.v0.unions.ClassificationResponse;
|
|
28112
|
-
export type ClassificationSearch =
|
|
28113
|
-
io.flow.internal.v0.models.ClassificationSearch;
|
|
28114
28401
|
export type ClassificationStatistics =
|
|
28115
28402
|
io.flow.internal.v0.models.ClassificationStatistics;
|
|
28116
28403
|
export type ClassificationTaxonomy =
|
|
@@ -28152,6 +28439,8 @@ export type CountryPickerExperienceData =
|
|
|
28152
28439
|
io.flow.internal.v0.models.CountryPickerExperienceData;
|
|
28153
28440
|
export type CountryPickerPaymentMethod =
|
|
28154
28441
|
io.flow.internal.v0.models.CountryPickerPaymentMethod;
|
|
28442
|
+
export type CourthouseProductSummary =
|
|
28443
|
+
io.flow.internal.v0.models.CourthouseProductSummary;
|
|
28155
28444
|
export type CrossdockTrackingStatus =
|
|
28156
28445
|
io.flow.internal.v0.enums.CrossdockTrackingStatus;
|
|
28157
28446
|
export type CryptoAccount = io.flow.internal.v0.models.CryptoAccount;
|
|
@@ -28877,7 +29166,6 @@ export type Landmark = io.flow.internal.v0.models.Landmark;
|
|
|
28877
29166
|
export type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
|
|
28878
29167
|
export type LevyRateSummaryUpserted =
|
|
28879
29168
|
io.flow.internal.v0.models.LevyRateSummaryUpserted;
|
|
28880
|
-
export type LiabilitiesMethod = io.flow.internal.v0.enums.LiabilitiesMethod;
|
|
28881
29169
|
export type Liability = io.flow.internal.v0.models.Liability;
|
|
28882
29170
|
export type LiabilityItem = io.flow.internal.v0.models.LiabilityItem;
|
|
28883
29171
|
export type LiabilityMoney = io.flow.internal.v0.models.LiabilityMoney;
|
|
@@ -29105,6 +29393,8 @@ export type OnboardingAutomationProcessState =
|
|
|
29105
29393
|
io.flow.internal.v0.enums.OnboardingAutomationProcessState;
|
|
29106
29394
|
export type OnboardingAutomationTaskState =
|
|
29107
29395
|
io.flow.internal.v0.enums.OnboardingAutomationTaskState;
|
|
29396
|
+
export type OnboardingOrganization =
|
|
29397
|
+
io.flow.internal.v0.models.OnboardingOrganization;
|
|
29108
29398
|
export type OneTimeTokenRedemptionForm =
|
|
29109
29399
|
io.flow.internal.v0.models.OneTimeTokenRedemptionForm;
|
|
29110
29400
|
export type OnlineAuthorizationCompleted =
|
|
@@ -29676,6 +29966,32 @@ export type ShopifyMarketsTradeSector =
|
|
|
29676
29966
|
export type ShopifyMarketsWebhookRegistration =
|
|
29677
29967
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
29678
29968
|
export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
29969
|
+
export type ShopifyMonitoringCarrierService =
|
|
29970
|
+
io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
29971
|
+
export type ShopifyMonitoringFulfillmentExternal =
|
|
29972
|
+
io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
29973
|
+
export type ShopifyMonitoringFulfillmentMissingDetails =
|
|
29974
|
+
io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
29975
|
+
export type ShopifyMonitoringMonitorReviewStatus =
|
|
29976
|
+
io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
29977
|
+
export type ShopifyMonitoringOrderMonitor =
|
|
29978
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
29979
|
+
export type ShopifyMonitoringOrderMonitorEventDeleted =
|
|
29980
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted;
|
|
29981
|
+
export type ShopifyMonitoringOrderMonitorEventUpserted =
|
|
29982
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted;
|
|
29983
|
+
export type ShopifyMonitoringOrderMonitorReview =
|
|
29984
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview;
|
|
29985
|
+
export type ShopifyMonitoringOrderMonitorReviewOrderDetails =
|
|
29986
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
29987
|
+
export type ShopifyMonitoringOrderMonitorType =
|
|
29988
|
+
io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
29989
|
+
export type ShopifyMonitoringTrackingField =
|
|
29990
|
+
io.flow.internal.v0.enums.ShopifyMonitoringTrackingField;
|
|
29991
|
+
export type ShopifyMonitoringTrackingNumber =
|
|
29992
|
+
io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
29993
|
+
export type ShopifyMonitoringTrackingUrl =
|
|
29994
|
+
io.flow.internal.v0.models.ShopifyMonitoringTrackingUrl;
|
|
29679
29995
|
export type ShopifyOrderAuthorization =
|
|
29680
29996
|
io.flow.internal.v0.models.ShopifyOrderAuthorization;
|
|
29681
29997
|
export type ShopifyOrderCancelForm =
|
|
@@ -29766,10 +30082,16 @@ export type SingleClassificationAction =
|
|
|
29766
30082
|
io.flow.internal.v0.models.SingleClassificationAction;
|
|
29767
30083
|
export type SingleClassificationForm =
|
|
29768
30084
|
io.flow.internal.v0.models.SingleClassificationForm;
|
|
29769
|
-
export type
|
|
29770
|
-
export type
|
|
29771
|
-
io.flow.internal.v0.models.
|
|
30085
|
+
export type SmpTaxCalculation = io.flow.internal.v0.models.SmpTaxCalculation;
|
|
30086
|
+
export type SmpTaxCalculationForm =
|
|
30087
|
+
io.flow.internal.v0.models.SmpTaxCalculationForm;
|
|
29772
30088
|
export type SnapchatPixel = io.flow.internal.v0.models.SnapchatPixel;
|
|
30089
|
+
export type Snooze = io.flow.internal.v0.models.Snooze;
|
|
30090
|
+
export type SnoozeForm = io.flow.internal.v0.models.SnoozeForm;
|
|
30091
|
+
export type SnoozeNextActionWith =
|
|
30092
|
+
io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
30093
|
+
export type SnoozeSource = io.flow.internal.v0.models.SnoozeSource;
|
|
30094
|
+
export type SnoozeSourceType = io.flow.internal.v0.enums.SnoozeSourceType;
|
|
29773
30095
|
export type SpotRate = io.flow.internal.v0.models.SpotRate;
|
|
29774
30096
|
export type SpotRateDeleted = io.flow.internal.v0.models.SpotRateDeleted;
|
|
29775
30097
|
export type SpotRateMetadata = io.flow.internal.v0.unions.SpotRateMetadata;
|