@flowio/types 11.24.104 → 11.24.106
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 +269 -38
- package/dist/api.d.ts +1948 -268
- package/package.json +2 -2
- package/src/api-internal.ts +359 -47
- package/src/api.ts +2565 -343
package/src/api-internal.ts
CHANGED
|
@@ -2708,6 +2708,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2708
2708
|
readonly eci?: string;
|
|
2709
2709
|
readonly liability_sift?: boolean;
|
|
2710
2710
|
readonly version?: string;
|
|
2711
|
+
readonly authenticated?: boolean;
|
|
2712
|
+
readonly authenticated_result?: string;
|
|
2713
|
+
readonly offered?: boolean;
|
|
2714
|
+
readonly offered_result?: string;
|
|
2715
|
+
readonly sca_exemption?: string;
|
|
2711
2716
|
}
|
|
2712
2717
|
|
|
2713
2718
|
interface ThreedsChallengeActionDetails {
|
|
@@ -4619,6 +4624,11 @@ declare namespace io.flow.label.v0.enums {
|
|
|
4619
4624
|
| 'flow_simulation_sync'
|
|
4620
4625
|
| 'autogenerated';
|
|
4621
4626
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
4627
|
+
type OriginLocationSource =
|
|
4628
|
+
| 'public_hub_code'
|
|
4629
|
+
| 'merchant_hub_code_override'
|
|
4630
|
+
| 'shopify'
|
|
4631
|
+
| 'fallback_location';
|
|
4622
4632
|
type PackageDimensionsSource =
|
|
4623
4633
|
| 'provided'
|
|
4624
4634
|
| 'item_dimensions_estimated'
|
|
@@ -4653,6 +4663,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4653
4663
|
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4654
4664
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
4655
4665
|
readonly reference_id?: string;
|
|
4666
|
+
readonly origin_location_source?: io.flow.label.v0.enums.OriginLocationSource;
|
|
4656
4667
|
readonly hub_code?: string;
|
|
4657
4668
|
}
|
|
4658
4669
|
|
|
@@ -4676,6 +4687,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4676
4687
|
readonly service?: string;
|
|
4677
4688
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
4678
4689
|
readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
4690
|
+
readonly origin_location_source?: io.flow.label.v0.enums.OriginLocationSource;
|
|
4679
4691
|
readonly reference_id?: string;
|
|
4680
4692
|
}
|
|
4681
4693
|
|
|
@@ -6214,6 +6226,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6214
6226
|
readonly inventory_item_id: number;
|
|
6215
6227
|
readonly shopify_shop_id: number;
|
|
6216
6228
|
readonly shopify_inventory_item: io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
6229
|
+
readonly deleted_at?: string;
|
|
6217
6230
|
}
|
|
6218
6231
|
|
|
6219
6232
|
interface MarketsOrder {
|
|
@@ -6449,6 +6462,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6449
6462
|
| 'DISPUTE_DEFENSE_PERIOD_ENDED'
|
|
6450
6463
|
| 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
6451
6464
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
6465
|
+
type LifecycleStage = 'INQUIRY' | 'CHARGEBACK';
|
|
6452
6466
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
6453
6467
|
type PaymentMethod =
|
|
6454
6468
|
| 'ach'
|
|
@@ -6697,6 +6711,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6697
6711
|
readonly paymentMethod?: io.flow.adyen.v0.enums.PaymentMethod;
|
|
6698
6712
|
readonly reason?: string;
|
|
6699
6713
|
readonly success: string;
|
|
6714
|
+
readonly lifecycleStage?: io.flow.adyen.v0.enums.LifecycleStage;
|
|
6700
6715
|
}
|
|
6701
6716
|
|
|
6702
6717
|
interface ModificationRequest {
|
|
@@ -9324,6 +9339,15 @@ declare namespace io.flow.partner.v0.models {
|
|
|
9324
9339
|
readonly id: string;
|
|
9325
9340
|
}
|
|
9326
9341
|
|
|
9342
|
+
interface PartnerTrackingSubscription {
|
|
9343
|
+
readonly id: string;
|
|
9344
|
+
readonly carrier_tracking_number: string;
|
|
9345
|
+
readonly carrier_id: string;
|
|
9346
|
+
readonly source: string;
|
|
9347
|
+
readonly reference_key: string;
|
|
9348
|
+
readonly created_at: string;
|
|
9349
|
+
}
|
|
9350
|
+
|
|
9327
9351
|
interface SummaryLabelForm {
|
|
9328
9352
|
readonly discriminator: 'summary_label_form';
|
|
9329
9353
|
readonly organization: string;
|
|
@@ -9367,7 +9391,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
9367
9391
|
| 'saturday';
|
|
9368
9392
|
type DeliveredDuty = 'paid' | 'unpaid';
|
|
9369
9393
|
type DiscountTarget = 'item' | 'shipping';
|
|
9370
|
-
type EntityIdentifierType = 'ioss' | 'voec';
|
|
9394
|
+
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
9371
9395
|
type Environment = 'sandbox' | 'production';
|
|
9372
9396
|
type ExceptionType = 'open' | 'closed';
|
|
9373
9397
|
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
@@ -16300,10 +16324,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16300
16324
|
| 'negative_balance_number_accounts'
|
|
16301
16325
|
| 'negative_balance_number_accounts_with_order_in_past_30_days'
|
|
16302
16326
|
| 'negative_balance_number_accounts_without_order_in_past_30_days'
|
|
16327
|
+
| 'negative_balance_number_offboarded_accounts'
|
|
16303
16328
|
| 'negative_balance_number_active_accounts_with_balance_over_1000'
|
|
16304
16329
|
| 'negative_balance_total'
|
|
16305
16330
|
| 'negative_balance_total_with_order_in_past_30_days'
|
|
16306
16331
|
| 'negative_balance_total_without_order_in_past_30_days'
|
|
16332
|
+
| 'negative_balance_total_offboarded_accounts'
|
|
16307
16333
|
| 'negative_balance_single_account_max'
|
|
16308
16334
|
| 'negative_balance_single_active_account_max'
|
|
16309
16335
|
| 'negative_balance_fee_total'
|
|
@@ -16321,7 +16347,32 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16321
16347
|
| 'negative_balance_sent_total'
|
|
16322
16348
|
| 'negative_balance_failed_count'
|
|
16323
16349
|
| 'negative_balance_failed_total'
|
|
16324
|
-
| 'negative_debit_success_rate'
|
|
16350
|
+
| 'negative_debit_success_rate'
|
|
16351
|
+
| 'current_attempt_merchant_count'
|
|
16352
|
+
| 'current_attempt_amount_total'
|
|
16353
|
+
| 'current_attempt_failed_merchant_count'
|
|
16354
|
+
| 'current_attempt_failed_amount_total'
|
|
16355
|
+
| 'current_attempt_success_ratio'
|
|
16356
|
+
| 'first_attempt_merchant_count'
|
|
16357
|
+
| 'first_attempt_amount_total'
|
|
16358
|
+
| 'first_attempt_failed_merchant_count'
|
|
16359
|
+
| 'first_attempt_failed_amount_total'
|
|
16360
|
+
| 'first_attempt_success_ratio'
|
|
16361
|
+
| 'second_attempt_merchant_count'
|
|
16362
|
+
| 'second_attempt_amount_total'
|
|
16363
|
+
| 'second_attempt_failed_merchant_count'
|
|
16364
|
+
| 'second_attempt_failed_amount_total'
|
|
16365
|
+
| 'second_attempt_success_ratio'
|
|
16366
|
+
| 'third_attempt_merchant_count'
|
|
16367
|
+
| 'third_attempt_amount_total'
|
|
16368
|
+
| 'third_attempt_failed_merchant_count'
|
|
16369
|
+
| 'third_attempt_failed_amount_total'
|
|
16370
|
+
| 'third_attempt_success_ratio'
|
|
16371
|
+
| 'fourth_plus_attempt_merchant_count'
|
|
16372
|
+
| 'fourth_plus_attempt_amount_total'
|
|
16373
|
+
| 'fourth_plus_attempt_failed_merchant_count'
|
|
16374
|
+
| 'fourth_plus_attempt_failed_amount_total'
|
|
16375
|
+
| 'fourth_plus_attempt_success_ratio';
|
|
16325
16376
|
type BillingStatementAttachmentKey =
|
|
16326
16377
|
| 'invoice'
|
|
16327
16378
|
| 'statement'
|
|
@@ -16364,7 +16415,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16364
16415
|
| 'duty'
|
|
16365
16416
|
| 'trueup'
|
|
16366
16417
|
| 'carrier_charge'
|
|
16367
|
-
| 'tax_refund'
|
|
16418
|
+
| 'tax_refund'
|
|
16419
|
+
| 'duty_refund';
|
|
16368
16420
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16369
16421
|
type CalculatorEngine =
|
|
16370
16422
|
| 'flow_rate_and_rule'
|
|
@@ -16807,6 +16859,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16807
16859
|
| 'partner_organization_settings_deleted'
|
|
16808
16860
|
| 'unassigned_merchant_guid_upserted'
|
|
16809
16861
|
| 'unassigned_merchant_guid_deleted'
|
|
16862
|
+
| 'partner_tracking_subscription_upserted'
|
|
16863
|
+
| 'partner_tracking_subscription_deleted'
|
|
16810
16864
|
| 'internal_authorization_upserted'
|
|
16811
16865
|
| 'internal_authorization_deleted'
|
|
16812
16866
|
| 'afterpay_authorization_upserted'
|
|
@@ -16833,6 +16887,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16833
16887
|
| 'paypal_execution_upserted'
|
|
16834
16888
|
| 'paypal_refund_deleted'
|
|
16835
16889
|
| 'paypal_refund_upserted'
|
|
16890
|
+
| 'paypal_dispute_upserted'
|
|
16891
|
+
| 'paypal_dispute_deleted'
|
|
16836
16892
|
| 'pricing_indicator'
|
|
16837
16893
|
| 'product_restriction_rule_decision_upserted'
|
|
16838
16894
|
| 'product_restriction_rule_decision_deleted'
|
|
@@ -16892,6 +16948,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16892
16948
|
| 'stripe_capture_upserted'
|
|
16893
16949
|
| 'stripe_refund_deleted'
|
|
16894
16950
|
| 'stripe_refund_upserted'
|
|
16951
|
+
| 'stripe_dispute_upserted'
|
|
16952
|
+
| 'stripe_dispute_deleted'
|
|
16895
16953
|
| 'liability_remittance_plan_upserted'
|
|
16896
16954
|
| 'liability_remittance_plan_deleted'
|
|
16897
16955
|
| 'svitlana_item_upserted'
|
|
@@ -16910,6 +16968,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16910
16968
|
| 'michaelyan_item_deleted'
|
|
16911
16969
|
| 'miljenko_item_upserted'
|
|
16912
16970
|
| 'miljenko_item_deleted'
|
|
16971
|
+
| 'sanjay_item_upserted'
|
|
16972
|
+
| 'sanjay_item_deleted'
|
|
16913
16973
|
| 'shruti_demo_item_upserted'
|
|
16914
16974
|
| 'shruti_demo_item_deleted'
|
|
16915
16975
|
| 'tam_item_upserted'
|
|
@@ -16928,6 +16988,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16928
16988
|
| 'tracking_assurance_analysis_deleted'
|
|
16929
16989
|
| 'tracking_assurance_job_upserted'
|
|
16930
16990
|
| 'tracking_assurance_job_deleted'
|
|
16991
|
+
| 'tracking_subscription_upserted'
|
|
16992
|
+
| 'tracking_subscription_deleted'
|
|
16931
16993
|
| 'tracking_label_dimensions_upserted'
|
|
16932
16994
|
| 'tracking_label_dimensions_deleted'
|
|
16933
16995
|
| 'tracking_request_upserted'
|
|
@@ -16979,8 +17041,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16979
17041
|
| 'legacy_model'
|
|
16980
17042
|
| 'enterprise_model';
|
|
16981
17043
|
type HttpMethod = 'get' | 'post';
|
|
16982
|
-
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
16983
|
-
type InventoryReservation = 'synchronous-on-submit';
|
|
16984
17044
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
16985
17045
|
type ItemClassificationStatus =
|
|
16986
17046
|
| 'unknown'
|
|
@@ -17044,7 +17104,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17044
17104
|
| 'tax_credit'
|
|
17045
17105
|
| 'carrier_credit'
|
|
17046
17106
|
| 'negative_balance_guarantee'
|
|
17047
|
-
| 'bank_payment_failure'
|
|
17107
|
+
| 'bank_payment_failure'
|
|
17108
|
+
| 'non_fraud_chargeback';
|
|
17048
17109
|
type MarketingGatewayAccountConnectionStatus =
|
|
17049
17110
|
| 'not_connected'
|
|
17050
17111
|
| 'connecting'
|
|
@@ -17302,7 +17363,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17302
17363
|
| 'invariants'
|
|
17303
17364
|
| 'payments'
|
|
17304
17365
|
| 'reconcile_not_recorded'
|
|
17305
|
-
| 'products_record'
|
|
17366
|
+
| 'products_record'
|
|
17367
|
+
| 'disputes';
|
|
17306
17368
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
17307
17369
|
type ReportingScheme =
|
|
17308
17370
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -17327,10 +17389,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17327
17389
|
| 'Low-Risk'
|
|
17328
17390
|
| 'Restricted-Party'
|
|
17329
17391
|
| 'none';
|
|
17330
|
-
type
|
|
17331
|
-
| 'duration_too_long'
|
|
17332
|
-
| 'items_not_found'
|
|
17333
|
-
| 'reservation_expired';
|
|
17392
|
+
type SanjayItemType = 'digital' | 'physical';
|
|
17334
17393
|
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
17335
17394
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
17336
17395
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
@@ -17645,6 +17704,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17645
17704
|
readonly transfers: io.flow.common.v0.models.Price;
|
|
17646
17705
|
readonly balance: io.flow.common.v0.models.Price;
|
|
17647
17706
|
readonly pending: io.flow.common.v0.models.Price;
|
|
17707
|
+
readonly additional_balances?: io.flow.internal.v0.models.AccountStatisticsAdditionalBalances;
|
|
17708
|
+
}
|
|
17709
|
+
|
|
17710
|
+
interface AccountStatisticsAdditionalBalances {
|
|
17711
|
+
readonly on_hold: io.flow.common.v0.models.Price;
|
|
17648
17712
|
}
|
|
17649
17713
|
|
|
17650
17714
|
interface AccountSummary {
|
|
@@ -18865,6 +18929,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18865
18929
|
readonly calculator_organization_settings: io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
18866
18930
|
}
|
|
18867
18931
|
|
|
18932
|
+
interface CallRecord {
|
|
18933
|
+
readonly id: string;
|
|
18934
|
+
readonly request_body?: string;
|
|
18935
|
+
}
|
|
18936
|
+
|
|
18868
18937
|
interface CarrierAccount {
|
|
18869
18938
|
readonly id: string;
|
|
18870
18939
|
readonly carrier: io.flow.fulfillment.v0.models.CarrierReference;
|
|
@@ -19118,6 +19187,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19118
19187
|
readonly id: string;
|
|
19119
19188
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
19120
19189
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
19190
|
+
readonly location_fallback?: io.flow.common.v0.models.Address;
|
|
19121
19191
|
}
|
|
19122
19192
|
|
|
19123
19193
|
interface CenterDefaultsDeleted {
|
|
@@ -19131,6 +19201,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19131
19201
|
interface CenterDefaultsForm {
|
|
19132
19202
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
19133
19203
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
19204
|
+
readonly location_fallback?: io.flow.common.v0.models.Address;
|
|
19134
19205
|
}
|
|
19135
19206
|
|
|
19136
19207
|
interface CenterDefaultsUpserted {
|
|
@@ -20801,6 +20872,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20801
20872
|
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
20802
20873
|
}
|
|
20803
20874
|
|
|
20875
|
+
interface DisputeRecord {
|
|
20876
|
+
readonly id: string;
|
|
20877
|
+
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
20878
|
+
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
20879
|
+
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20880
|
+
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
20881
|
+
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
20882
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20883
|
+
readonly chargeback_amount: io.flow.common.v0.models.MoneyWithBase;
|
|
20884
|
+
}
|
|
20885
|
+
|
|
20804
20886
|
interface DisputeStatusForm {
|
|
20805
20887
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20806
20888
|
}
|
|
@@ -21894,6 +21976,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21894
21976
|
readonly payment_authorization_id?: string;
|
|
21895
21977
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
21896
21978
|
readonly created_at?: string;
|
|
21979
|
+
readonly has_provider_link?: boolean;
|
|
21897
21980
|
}
|
|
21898
21981
|
|
|
21899
21982
|
interface FraudReviewAuthorization {
|
|
@@ -21912,6 +21995,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21912
21995
|
readonly payment_authorization_id?: string;
|
|
21913
21996
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
21914
21997
|
readonly created_at?: string;
|
|
21998
|
+
readonly has_provider_link?: boolean;
|
|
21915
21999
|
}
|
|
21916
22000
|
|
|
21917
22001
|
interface FraudReviewAuthorizationDecision {
|
|
@@ -22739,19 +22823,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22739
22823
|
readonly inventory_item_id: number;
|
|
22740
22824
|
readonly shopify_shop_id: number;
|
|
22741
22825
|
readonly shopify_inventory_item: io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
22742
|
-
|
|
22743
|
-
|
|
22744
|
-
interface InventoryOrganizationSettings {
|
|
22745
|
-
readonly id: string;
|
|
22746
|
-
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
22747
|
-
readonly inventory_check_service: io.flow.internal.v0.enums.InventoryCheckService;
|
|
22748
|
-
readonly inventory_check_service_root_url?: string;
|
|
22749
|
-
}
|
|
22750
|
-
|
|
22751
|
-
interface InventoryOrganizationSettingsForm {
|
|
22752
|
-
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
22753
|
-
readonly inventory_check_service: io.flow.internal.v0.enums.InventoryCheckService;
|
|
22754
|
-
readonly inventory_check_service_root_url?: string;
|
|
22826
|
+
readonly deleted_at?: string;
|
|
22755
22827
|
}
|
|
22756
22828
|
|
|
22757
22829
|
interface Invoice {
|
|
@@ -24426,8 +24498,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24426
24498
|
|
|
24427
24499
|
interface NegativeDebitMetrics {
|
|
24428
24500
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24501
|
+
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24429
24502
|
readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24430
24503
|
readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24504
|
+
readonly forth_plus_attempts: io.flow.internal.v0.models.AttemptStatistics;
|
|
24431
24505
|
}
|
|
24432
24506
|
|
|
24433
24507
|
interface NextBillingStatement {
|
|
@@ -25170,6 +25244,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25170
25244
|
readonly product_count: number;
|
|
25171
25245
|
readonly restricted_product_count: number;
|
|
25172
25246
|
readonly last_order_submitted_at?: string;
|
|
25247
|
+
readonly matching_positive_keywords: string[];
|
|
25248
|
+
readonly product_categories: string[];
|
|
25173
25249
|
}
|
|
25174
25250
|
|
|
25175
25251
|
interface OrganizationMetadataDeleted {
|
|
@@ -25573,11 +25649,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25573
25649
|
readonly partner_organization_settings: io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
25574
25650
|
}
|
|
25575
25651
|
|
|
25576
|
-
interface
|
|
25652
|
+
interface PartnerTrackingSubscriptionDeleted {
|
|
25653
|
+
readonly discriminator: 'partner_tracking_subscription_deleted';
|
|
25654
|
+
readonly event_id: string;
|
|
25655
|
+
readonly timestamp: string;
|
|
25577
25656
|
readonly id: string;
|
|
25578
|
-
|
|
25579
|
-
|
|
25580
|
-
|
|
25657
|
+
}
|
|
25658
|
+
|
|
25659
|
+
interface PartnerTrackingSubscriptionUpserted {
|
|
25660
|
+
readonly discriminator: 'partner_tracking_subscription_upserted';
|
|
25661
|
+
readonly event_id: string;
|
|
25662
|
+
readonly timestamp: string;
|
|
25663
|
+
readonly partner_tracking_subscription: io.flow.partner.v0.models.PartnerTrackingSubscription;
|
|
25581
25664
|
}
|
|
25582
25665
|
|
|
25583
25666
|
interface Passphrase {
|
|
@@ -25742,6 +25825,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25742
25825
|
readonly payer_id: string;
|
|
25743
25826
|
}
|
|
25744
25827
|
|
|
25828
|
+
interface PaypalDisputeDeleted {
|
|
25829
|
+
readonly discriminator: 'paypal_dispute_deleted';
|
|
25830
|
+
readonly event_id: string;
|
|
25831
|
+
readonly timestamp: string;
|
|
25832
|
+
readonly id: string;
|
|
25833
|
+
}
|
|
25834
|
+
|
|
25835
|
+
interface PaypalDisputeUpserted {
|
|
25836
|
+
readonly discriminator: 'paypal_dispute_upserted';
|
|
25837
|
+
readonly event_id: string;
|
|
25838
|
+
readonly timestamp: string;
|
|
25839
|
+
readonly dispute: io.flow.internal.v0.models.PaypalInternalDispute;
|
|
25840
|
+
}
|
|
25841
|
+
|
|
25745
25842
|
interface PaypalExecutionDeleted {
|
|
25746
25843
|
readonly discriminator: 'paypal_execution_deleted';
|
|
25747
25844
|
readonly event_id: string;
|
|
@@ -25756,6 +25853,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25756
25853
|
readonly execution: io.flow.internal.v0.models.PaypalInternalExecution;
|
|
25757
25854
|
}
|
|
25758
25855
|
|
|
25856
|
+
interface PaypalInternalDispute {
|
|
25857
|
+
readonly id: string;
|
|
25858
|
+
readonly dispute_id: string;
|
|
25859
|
+
readonly create_time: string;
|
|
25860
|
+
readonly update_time: string;
|
|
25861
|
+
readonly buyer_transaction_id?: string;
|
|
25862
|
+
readonly seller_transaction_id?: string;
|
|
25863
|
+
readonly transaction_reference_id?: string;
|
|
25864
|
+
readonly transaction_create_time?: string;
|
|
25865
|
+
readonly transaction_status?: string;
|
|
25866
|
+
readonly transaction_gross_amount?: string;
|
|
25867
|
+
readonly transaction_gross_currency?: string;
|
|
25868
|
+
readonly transaction_invoice_number?: string;
|
|
25869
|
+
readonly transaction_custom?: string;
|
|
25870
|
+
readonly buyer_name?: string;
|
|
25871
|
+
readonly seller_merchant_id?: string;
|
|
25872
|
+
readonly seller_merchant_name?: string;
|
|
25873
|
+
readonly items?: any /*object*/[];
|
|
25874
|
+
readonly other_disputed_transactions?: any /*object*/[];
|
|
25875
|
+
readonly reason: string;
|
|
25876
|
+
readonly status: string;
|
|
25877
|
+
readonly dispute_amount: string;
|
|
25878
|
+
readonly dispute_currency: string;
|
|
25879
|
+
readonly dispute_outcome_code?: string;
|
|
25880
|
+
readonly dispute_outcome_amount_refunded?: string;
|
|
25881
|
+
readonly dispute_outcome_currency?: string;
|
|
25882
|
+
readonly dispute_life_cycle_stage: string;
|
|
25883
|
+
readonly dispute_channel: string;
|
|
25884
|
+
readonly messages?: any /*object*/[];
|
|
25885
|
+
readonly evidences?: any /*object*/[];
|
|
25886
|
+
readonly buyer_response_due_date?: string;
|
|
25887
|
+
readonly seller_response_due_date?: string;
|
|
25888
|
+
readonly offer?: any /*object*/;
|
|
25889
|
+
readonly communication_details?: any /*object*/;
|
|
25890
|
+
readonly links?: any /*object*/[];
|
|
25891
|
+
readonly previous_status?: string;
|
|
25892
|
+
readonly updated_by_user_id: string;
|
|
25893
|
+
readonly created_at: string;
|
|
25894
|
+
readonly updated_at: string;
|
|
25895
|
+
}
|
|
25896
|
+
|
|
25759
25897
|
interface PaypalInternalExecution {
|
|
25760
25898
|
readonly id: string;
|
|
25761
25899
|
readonly currency: string;
|
|
@@ -26838,6 +26976,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26838
26976
|
readonly from?: string;
|
|
26839
26977
|
readonly to?: string;
|
|
26840
26978
|
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
26979
|
+
readonly organizations?: io.flow.internal.v0.models.ReportOrganizationReference[];
|
|
26841
26980
|
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
26842
26981
|
readonly recipients?: string[];
|
|
26843
26982
|
}
|
|
@@ -26851,6 +26990,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26851
26990
|
readonly order_number: string;
|
|
26852
26991
|
}
|
|
26853
26992
|
|
|
26993
|
+
interface ReportOrganizationReference {
|
|
26994
|
+
readonly organization_id: string;
|
|
26995
|
+
}
|
|
26996
|
+
|
|
26854
26997
|
interface ReportOwner {
|
|
26855
26998
|
readonly name: string;
|
|
26856
26999
|
}
|
|
@@ -26884,7 +27027,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26884
27027
|
interface ReportingConversionRates {
|
|
26885
27028
|
readonly merchant: number;
|
|
26886
27029
|
readonly entity: number;
|
|
26887
|
-
readonly destination_country
|
|
27030
|
+
readonly destination_country?: number;
|
|
26888
27031
|
readonly usd: number;
|
|
26889
27032
|
readonly eur: number;
|
|
26890
27033
|
}
|
|
@@ -26928,10 +27071,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26928
27071
|
readonly refund_records?: any /*object*/[];
|
|
26929
27072
|
}
|
|
26930
27073
|
|
|
26931
|
-
interface ReportingEntity {
|
|
26932
|
-
readonly id: string;
|
|
26933
|
-
}
|
|
26934
|
-
|
|
26935
27074
|
interface ReportingFulfillment {
|
|
26936
27075
|
readonly id: string;
|
|
26937
27076
|
readonly sequence_number: number;
|
|
@@ -27014,13 +27153,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27014
27153
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27015
27154
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27016
27155
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27156
|
+
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27017
27157
|
}
|
|
27018
27158
|
|
|
27019
27159
|
interface ReportingMonetaryValue {
|
|
27020
27160
|
readonly transaction: number;
|
|
27021
27161
|
readonly merchant: number;
|
|
27022
27162
|
readonly entity: number;
|
|
27023
|
-
readonly destination_country
|
|
27163
|
+
readonly destination_country?: number;
|
|
27024
27164
|
readonly usd: number;
|
|
27025
27165
|
readonly eur: number;
|
|
27026
27166
|
}
|
|
@@ -27343,6 +27483,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27343
27483
|
readonly count: number;
|
|
27344
27484
|
}
|
|
27345
27485
|
|
|
27486
|
+
interface RestrictionsDailyops {
|
|
27487
|
+
readonly id: string;
|
|
27488
|
+
readonly report_date: string;
|
|
27489
|
+
readonly num_orgs_setup_complete_with_pvs: number;
|
|
27490
|
+
readonly num_products_setup_complete_with_pvs: number;
|
|
27491
|
+
readonly num_orgs_transacting_with_pvs: number;
|
|
27492
|
+
readonly num_products_transacting_with_pvs: number;
|
|
27493
|
+
readonly oldest_pv_product_date_setup_complete: string;
|
|
27494
|
+
readonly oldest_pv_product_date_transacting: string;
|
|
27495
|
+
readonly num_orgs_setup_complete_prs: number;
|
|
27496
|
+
readonly num_products_setup_complete_prs: number;
|
|
27497
|
+
readonly num_orgs_transacting_prs: number;
|
|
27498
|
+
readonly num_products_transacting_prs: number;
|
|
27499
|
+
readonly oldest_pr_product_date_setup_complete: string;
|
|
27500
|
+
readonly oldest_pr_date_transacting: string;
|
|
27501
|
+
readonly percent_products_reviewed_transacting: number;
|
|
27502
|
+
readonly num_pv_inflow_net_new: number;
|
|
27503
|
+
readonly num_pv_outflow_human_decisions: number;
|
|
27504
|
+
readonly num_pv_outflow_auto_review_decisions: number;
|
|
27505
|
+
readonly num_pv_outflow_side_effect_decisions: number;
|
|
27506
|
+
readonly num_pr_inflow_net_new: number;
|
|
27507
|
+
readonly num_pr_outflow_human_decisions: number;
|
|
27508
|
+
readonly num_pr_outflow_auto_review_decisions: number;
|
|
27509
|
+
readonly num_pr_outflow_side_effect_decisions: number;
|
|
27510
|
+
readonly num_pending_decisions_transacting: number;
|
|
27511
|
+
}
|
|
27512
|
+
|
|
27346
27513
|
interface ResyncByDestinations {
|
|
27347
27514
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
27348
27515
|
}
|
|
@@ -27440,7 +27607,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27440
27607
|
readonly parent?: io.flow.internal.v0.models.RecordReference;
|
|
27441
27608
|
readonly type: io.flow.internal.v0.enums.RevenueRecordType;
|
|
27442
27609
|
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
27443
|
-
readonly entity: io.flow.internal.v0.models.ReportingEntity;
|
|
27444
27610
|
readonly vendor: io.flow.internal.v0.models.ReportingVendor;
|
|
27445
27611
|
readonly currencies: io.flow.internal.v0.models.ReportingCurrencies;
|
|
27446
27612
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
@@ -27499,6 +27665,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27499
27665
|
readonly requested_by: string;
|
|
27500
27666
|
}
|
|
27501
27667
|
|
|
27668
|
+
interface SanjayItem {
|
|
27669
|
+
readonly id: string;
|
|
27670
|
+
readonly number: string;
|
|
27671
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
27672
|
+
readonly description?: string;
|
|
27673
|
+
readonly type: io.flow.internal.v0.enums.SanjayItemType;
|
|
27674
|
+
readonly added_on: string;
|
|
27675
|
+
}
|
|
27676
|
+
|
|
27677
|
+
interface SanjayItemDeleted {
|
|
27678
|
+
readonly discriminator: 'sanjay_item_deleted';
|
|
27679
|
+
readonly event_id: string;
|
|
27680
|
+
readonly timestamp: string;
|
|
27681
|
+
readonly id: string;
|
|
27682
|
+
}
|
|
27683
|
+
|
|
27684
|
+
interface SanjayItemForm {
|
|
27685
|
+
readonly number: string;
|
|
27686
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
27687
|
+
readonly description?: string;
|
|
27688
|
+
readonly type: io.flow.internal.v0.enums.SanjayItemType;
|
|
27689
|
+
readonly added_on: string;
|
|
27690
|
+
}
|
|
27691
|
+
|
|
27692
|
+
interface SanjayItemUpserted {
|
|
27693
|
+
readonly discriminator: 'sanjay_item_upserted';
|
|
27694
|
+
readonly event_id: string;
|
|
27695
|
+
readonly timestamp: string;
|
|
27696
|
+
readonly item: io.flow.internal.v0.models.SanjayItem;
|
|
27697
|
+
}
|
|
27698
|
+
|
|
27502
27699
|
interface ScheduledPayment {
|
|
27503
27700
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
27504
27701
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -28112,6 +28309,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28112
28309
|
readonly send_inventory_update: boolean;
|
|
28113
28310
|
}
|
|
28114
28311
|
|
|
28312
|
+
interface ShopifyPartnerWebhook {
|
|
28313
|
+
readonly placeholder?: boolean;
|
|
28314
|
+
}
|
|
28315
|
+
|
|
28316
|
+
interface ShopifyPartnerWebhookRaw {
|
|
28317
|
+
readonly placeholder?: boolean;
|
|
28318
|
+
}
|
|
28319
|
+
|
|
28115
28320
|
interface ShopifyPaymentSummary {
|
|
28116
28321
|
readonly description: string;
|
|
28117
28322
|
readonly address?: io.flow.common.v0.models.Address;
|
|
@@ -28623,6 +28828,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28623
28828
|
readonly capture: io.flow.internal.v0.models.StripeInternalCapture;
|
|
28624
28829
|
}
|
|
28625
28830
|
|
|
28831
|
+
interface StripeDisputeDeleted {
|
|
28832
|
+
readonly discriminator: 'stripe_dispute_deleted';
|
|
28833
|
+
readonly event_id: string;
|
|
28834
|
+
readonly timestamp: string;
|
|
28835
|
+
readonly id: string;
|
|
28836
|
+
}
|
|
28837
|
+
|
|
28838
|
+
interface StripeDisputeUpserted {
|
|
28839
|
+
readonly discriminator: 'stripe_dispute_upserted';
|
|
28840
|
+
readonly event_id: string;
|
|
28841
|
+
readonly timestamp: string;
|
|
28842
|
+
readonly dispute: io.flow.internal.v0.models.StripeInternalDispute;
|
|
28843
|
+
}
|
|
28844
|
+
|
|
28626
28845
|
interface StripeInternalAuthorization {
|
|
28627
28846
|
readonly id: string;
|
|
28628
28847
|
readonly flow_authorization_id: string;
|
|
@@ -28644,6 +28863,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28644
28863
|
readonly response: any /*object*/;
|
|
28645
28864
|
}
|
|
28646
28865
|
|
|
28866
|
+
interface StripeInternalDispute {
|
|
28867
|
+
readonly id: string;
|
|
28868
|
+
readonly stripe_id: string;
|
|
28869
|
+
readonly amount: number;
|
|
28870
|
+
readonly charge_id: string;
|
|
28871
|
+
readonly currency: string;
|
|
28872
|
+
readonly evidence: any /*object*/;
|
|
28873
|
+
readonly metadata: any /*object*/;
|
|
28874
|
+
readonly payment_intent_id?: string;
|
|
28875
|
+
readonly reason: string;
|
|
28876
|
+
readonly status: string;
|
|
28877
|
+
readonly connected_account?: string;
|
|
28878
|
+
readonly balance_transactions: any /*object*/[];
|
|
28879
|
+
readonly dispute_created_at: string;
|
|
28880
|
+
readonly dispute_expires_at?: string;
|
|
28881
|
+
readonly has_evidence?: boolean;
|
|
28882
|
+
readonly past_due?: boolean;
|
|
28883
|
+
readonly submission_count?: number;
|
|
28884
|
+
readonly is_charge_refundable: boolean;
|
|
28885
|
+
readonly live_mode: boolean;
|
|
28886
|
+
readonly payment_method_type?: string;
|
|
28887
|
+
readonly payment_method_reason_code?: string;
|
|
28888
|
+
readonly payment_method_card_brand?: string;
|
|
28889
|
+
readonly updated_by_user_id: string;
|
|
28890
|
+
readonly created_at: string;
|
|
28891
|
+
readonly updated_at: string;
|
|
28892
|
+
}
|
|
28893
|
+
|
|
28647
28894
|
interface StripeInternalRefund {
|
|
28648
28895
|
readonly id: string;
|
|
28649
28896
|
readonly flow_refund_id: string;
|
|
@@ -29348,6 +29595,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29348
29595
|
readonly tracking_response: io.flow.internal.v0.models.TrackingResponse;
|
|
29349
29596
|
}
|
|
29350
29597
|
|
|
29598
|
+
interface TrackingSubscription {
|
|
29599
|
+
readonly id: string;
|
|
29600
|
+
readonly organization_id: string;
|
|
29601
|
+
readonly carrier_tracking_number: string;
|
|
29602
|
+
readonly carrier_id: string;
|
|
29603
|
+
readonly label_id: string;
|
|
29604
|
+
readonly label_origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
29605
|
+
readonly label_destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
29606
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
29607
|
+
readonly events: io.flow.tracking.v0.models.TrackingEvent[];
|
|
29608
|
+
readonly external_reference_key?: string;
|
|
29609
|
+
readonly external_reference_source?: string;
|
|
29610
|
+
}
|
|
29611
|
+
|
|
29612
|
+
interface TrackingSubscriptionDeleted {
|
|
29613
|
+
readonly discriminator: 'tracking_subscription_deleted';
|
|
29614
|
+
readonly event_id: string;
|
|
29615
|
+
readonly timestamp: string;
|
|
29616
|
+
readonly id: string;
|
|
29617
|
+
}
|
|
29618
|
+
|
|
29619
|
+
interface TrackingSubscriptionUpserted {
|
|
29620
|
+
readonly discriminator: 'tracking_subscription_upserted';
|
|
29621
|
+
readonly event_id: string;
|
|
29622
|
+
readonly timestamp: string;
|
|
29623
|
+
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
29624
|
+
}
|
|
29625
|
+
|
|
29351
29626
|
interface TrackingUpserted {
|
|
29352
29627
|
readonly discriminator: 'tracking_upserted';
|
|
29353
29628
|
readonly event_id: string;
|
|
@@ -29999,6 +30274,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29999
30274
|
| io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted
|
|
30000
30275
|
| io.flow.internal.v0.models.UnassignedMerchantGuidUpserted
|
|
30001
30276
|
| io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
|
|
30277
|
+
| io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted
|
|
30278
|
+
| io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted
|
|
30002
30279
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
30003
30280
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
30004
30281
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -30025,6 +30302,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30025
30302
|
| io.flow.internal.v0.models.PaypalExecutionUpserted
|
|
30026
30303
|
| io.flow.internal.v0.models.PaypalRefundDeleted
|
|
30027
30304
|
| io.flow.internal.v0.models.PaypalRefundUpserted
|
|
30305
|
+
| io.flow.internal.v0.models.PaypalDisputeUpserted
|
|
30306
|
+
| io.flow.internal.v0.models.PaypalDisputeDeleted
|
|
30028
30307
|
| io.flow.internal.v0.models.PricingIndicator
|
|
30029
30308
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
|
|
30030
30309
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
|
|
@@ -30084,6 +30363,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30084
30363
|
| io.flow.internal.v0.models.StripeCaptureUpserted
|
|
30085
30364
|
| io.flow.internal.v0.models.StripeRefundDeleted
|
|
30086
30365
|
| io.flow.internal.v0.models.StripeRefundUpserted
|
|
30366
|
+
| io.flow.internal.v0.models.StripeDisputeUpserted
|
|
30367
|
+
| io.flow.internal.v0.models.StripeDisputeDeleted
|
|
30087
30368
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
30088
30369
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
30089
30370
|
| io.flow.internal.v0.models.SvitlanaItemUpserted
|
|
@@ -30102,6 +30383,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30102
30383
|
| io.flow.internal.v0.models.MichaelyanItemDeleted
|
|
30103
30384
|
| io.flow.internal.v0.models.MiljenkoItemUpserted
|
|
30104
30385
|
| io.flow.internal.v0.models.MiljenkoItemDeleted
|
|
30386
|
+
| io.flow.internal.v0.models.SanjayItemUpserted
|
|
30387
|
+
| io.flow.internal.v0.models.SanjayItemDeleted
|
|
30105
30388
|
| io.flow.internal.v0.models.ShrutiDemoItemUpserted
|
|
30106
30389
|
| io.flow.internal.v0.models.ShrutiDemoItemDeleted
|
|
30107
30390
|
| io.flow.internal.v0.models.TamItemUpserted
|
|
@@ -30120,6 +30403,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30120
30403
|
| io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted
|
|
30121
30404
|
| io.flow.internal.v0.models.TrackingAssuranceJobUpserted
|
|
30122
30405
|
| io.flow.internal.v0.models.TrackingAssuranceJobDeleted
|
|
30406
|
+
| io.flow.internal.v0.models.TrackingSubscriptionUpserted
|
|
30407
|
+
| io.flow.internal.v0.models.TrackingSubscriptionDeleted
|
|
30123
30408
|
| io.flow.internal.v0.models.TrackingLabelDimensionsUpserted
|
|
30124
30409
|
| io.flow.internal.v0.models.TrackingLabelDimensionsDeleted
|
|
30125
30410
|
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
@@ -30390,6 +30675,8 @@ export type AccountSettingsUpserted =
|
|
|
30390
30675
|
io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
30391
30676
|
export type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
30392
30677
|
export type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
30678
|
+
export type AccountStatisticsAdditionalBalances =
|
|
30679
|
+
io.flow.internal.v0.models.AccountStatisticsAdditionalBalances;
|
|
30393
30680
|
export type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
30394
30681
|
export type AccountTransactionsExportRequest =
|
|
30395
30682
|
io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
@@ -30714,6 +31001,7 @@ export type CalculatorOrganizationSettingsForm =
|
|
|
30714
31001
|
export type CalculatorOrganizationSettingsUpserted =
|
|
30715
31002
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
30716
31003
|
export type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
31004
|
+
export type CallRecord = io.flow.internal.v0.models.CallRecord;
|
|
30717
31005
|
export type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
30718
31006
|
export type CarrierAccountDeleted =
|
|
30719
31007
|
io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
@@ -31249,6 +31537,7 @@ export type DisputeOrganizationReference =
|
|
|
31249
31537
|
export type DisputeOverrideUpdateForm =
|
|
31250
31538
|
io.flow.internal.v0.models.DisputeOverrideUpdateForm;
|
|
31251
31539
|
export type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
|
|
31540
|
+
export type DisputeRecord = io.flow.internal.v0.models.DisputeRecord;
|
|
31252
31541
|
export type DisputeReportingCategory =
|
|
31253
31542
|
io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
31254
31543
|
export type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
|
|
@@ -31723,16 +32012,8 @@ export type InternalTransactionDetailsCard =
|
|
|
31723
32012
|
export type InvalidCheckoutData =
|
|
31724
32013
|
io.flow.internal.v0.models.InvalidCheckoutData;
|
|
31725
32014
|
export type Invariant = io.flow.internal.v0.models.Invariant;
|
|
31726
|
-
export type InventoryCheckService =
|
|
31727
|
-
io.flow.internal.v0.enums.InventoryCheckService;
|
|
31728
32015
|
export type InventoryItemWrapper =
|
|
31729
32016
|
io.flow.internal.v0.models.InventoryItemWrapper;
|
|
31730
|
-
export type InventoryOrganizationSettings =
|
|
31731
|
-
io.flow.internal.v0.models.InventoryOrganizationSettings;
|
|
31732
|
-
export type InventoryOrganizationSettingsForm =
|
|
31733
|
-
io.flow.internal.v0.models.InventoryOrganizationSettingsForm;
|
|
31734
|
-
export type InventoryReservation =
|
|
31735
|
-
io.flow.internal.v0.enums.InventoryReservation;
|
|
31736
32017
|
export type Invoice = io.flow.internal.v0.models.Invoice;
|
|
31737
32018
|
export type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
31738
32019
|
export type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
@@ -32479,7 +32760,10 @@ export type PartnerOrganizationSettingsForm =
|
|
|
32479
32760
|
io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
32480
32761
|
export type PartnerOrganizationSettingsUpserted =
|
|
32481
32762
|
io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
32482
|
-
export type
|
|
32763
|
+
export type PartnerTrackingSubscriptionDeleted =
|
|
32764
|
+
io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted;
|
|
32765
|
+
export type PartnerTrackingSubscriptionUpserted =
|
|
32766
|
+
io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted;
|
|
32483
32767
|
export type Party = io.flow.internal.v0.enums.Party;
|
|
32484
32768
|
export type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
32485
32769
|
export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
@@ -32523,10 +32807,16 @@ export type PaypalAuthenticationForm =
|
|
|
32523
32807
|
io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
32524
32808
|
export type PaypalAuthorizationPayload =
|
|
32525
32809
|
io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
32810
|
+
export type PaypalDisputeDeleted =
|
|
32811
|
+
io.flow.internal.v0.models.PaypalDisputeDeleted;
|
|
32812
|
+
export type PaypalDisputeUpserted =
|
|
32813
|
+
io.flow.internal.v0.models.PaypalDisputeUpserted;
|
|
32526
32814
|
export type PaypalExecutionDeleted =
|
|
32527
32815
|
io.flow.internal.v0.models.PaypalExecutionDeleted;
|
|
32528
32816
|
export type PaypalExecutionUpserted =
|
|
32529
32817
|
io.flow.internal.v0.models.PaypalExecutionUpserted;
|
|
32818
|
+
export type PaypalInternalDispute =
|
|
32819
|
+
io.flow.internal.v0.models.PaypalInternalDispute;
|
|
32530
32820
|
export type PaypalInternalExecution =
|
|
32531
32821
|
io.flow.internal.v0.models.PaypalInternalExecution;
|
|
32532
32822
|
export type PaypalInternalPayment =
|
|
@@ -32801,6 +33091,8 @@ export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
|
32801
33091
|
export type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
32802
33092
|
export type ReportOrderReference =
|
|
32803
33093
|
io.flow.internal.v0.models.ReportOrderReference;
|
|
33094
|
+
export type ReportOrganizationReference =
|
|
33095
|
+
io.flow.internal.v0.models.ReportOrganizationReference;
|
|
32804
33096
|
export type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
32805
33097
|
export type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
32806
33098
|
export type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
@@ -32822,7 +33114,6 @@ export type ReportingDebugMissingSubsidies =
|
|
|
32822
33114
|
export type ReportingDestination =
|
|
32823
33115
|
io.flow.internal.v0.models.ReportingDestination;
|
|
32824
33116
|
export type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
32825
|
-
export type ReportingEntity = io.flow.internal.v0.models.ReportingEntity;
|
|
32826
33117
|
export type ReportingFulfillment =
|
|
32827
33118
|
io.flow.internal.v0.models.ReportingFulfillment;
|
|
32828
33119
|
export type ReportingFulfillmentHas =
|
|
@@ -32918,6 +33209,8 @@ export type RestrictionRuleSummary =
|
|
|
32918
33209
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
32919
33210
|
export type RestrictionStatusMetadata =
|
|
32920
33211
|
io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
33212
|
+
export type RestrictionsDailyops =
|
|
33213
|
+
io.flow.internal.v0.models.RestrictionsDailyops;
|
|
32921
33214
|
export type ResyncByDestinations =
|
|
32922
33215
|
io.flow.internal.v0.models.ResyncByDestinations;
|
|
32923
33216
|
export type ResyncByHs6Destinations =
|
|
@@ -32957,6 +33250,11 @@ export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
|
32957
33250
|
export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
32958
33251
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
32959
33252
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
33253
|
+
export type SanjayItem = io.flow.internal.v0.models.SanjayItem;
|
|
33254
|
+
export type SanjayItemDeleted = io.flow.internal.v0.models.SanjayItemDeleted;
|
|
33255
|
+
export type SanjayItemForm = io.flow.internal.v0.models.SanjayItemForm;
|
|
33256
|
+
export type SanjayItemType = io.flow.internal.v0.enums.SanjayItemType;
|
|
33257
|
+
export type SanjayItemUpserted = io.flow.internal.v0.models.SanjayItemUpserted;
|
|
32960
33258
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
32961
33259
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
32962
33260
|
export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -32980,8 +33278,6 @@ export type SearchProviderExport =
|
|
|
32980
33278
|
io.flow.internal.v0.models.SearchProviderExport;
|
|
32981
33279
|
export type SearchTrackingSummary =
|
|
32982
33280
|
io.flow.internal.v0.models.SearchTrackingSummary;
|
|
32983
|
-
export type SerialReservationError =
|
|
32984
|
-
io.flow.internal.v0.enums.SerialReservationError;
|
|
32985
33281
|
export type ServiceName = io.flow.internal.v0.enums.ServiceName;
|
|
32986
33282
|
export type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
32987
33283
|
export type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
@@ -33141,6 +33437,10 @@ export type ShopifyOrganizationSettings =
|
|
|
33141
33437
|
io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
33142
33438
|
export type ShopifyOrganizationSettingsForm =
|
|
33143
33439
|
io.flow.internal.v0.models.ShopifyOrganizationSettingsForm;
|
|
33440
|
+
export type ShopifyPartnerWebhook =
|
|
33441
|
+
io.flow.internal.v0.models.ShopifyPartnerWebhook;
|
|
33442
|
+
export type ShopifyPartnerWebhookRaw =
|
|
33443
|
+
io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
|
|
33144
33444
|
export type ShopifyPaymentSummary =
|
|
33145
33445
|
io.flow.internal.v0.models.ShopifyPaymentSummary;
|
|
33146
33446
|
export type ShopifyProductBundle =
|
|
@@ -33291,10 +33591,16 @@ export type StripeCaptureDeleted =
|
|
|
33291
33591
|
io.flow.internal.v0.models.StripeCaptureDeleted;
|
|
33292
33592
|
export type StripeCaptureUpserted =
|
|
33293
33593
|
io.flow.internal.v0.models.StripeCaptureUpserted;
|
|
33594
|
+
export type StripeDisputeDeleted =
|
|
33595
|
+
io.flow.internal.v0.models.StripeDisputeDeleted;
|
|
33596
|
+
export type StripeDisputeUpserted =
|
|
33597
|
+
io.flow.internal.v0.models.StripeDisputeUpserted;
|
|
33294
33598
|
export type StripeInternalAuthorization =
|
|
33295
33599
|
io.flow.internal.v0.models.StripeInternalAuthorization;
|
|
33296
33600
|
export type StripeInternalCapture =
|
|
33297
33601
|
io.flow.internal.v0.models.StripeInternalCapture;
|
|
33602
|
+
export type StripeInternalDispute =
|
|
33603
|
+
io.flow.internal.v0.models.StripeInternalDispute;
|
|
33298
33604
|
export type StripeInternalRefund =
|
|
33299
33605
|
io.flow.internal.v0.models.StripeInternalRefund;
|
|
33300
33606
|
export type StripeInternalReversal =
|
|
@@ -33465,6 +33771,12 @@ export type TrackingRequestUpserted =
|
|
|
33465
33771
|
export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
33466
33772
|
export type TrackingResponseUpserted =
|
|
33467
33773
|
io.flow.internal.v0.models.TrackingResponseUpserted;
|
|
33774
|
+
export type TrackingSubscription =
|
|
33775
|
+
io.flow.internal.v0.models.TrackingSubscription;
|
|
33776
|
+
export type TrackingSubscriptionDeleted =
|
|
33777
|
+
io.flow.internal.v0.models.TrackingSubscriptionDeleted;
|
|
33778
|
+
export type TrackingSubscriptionUpserted =
|
|
33779
|
+
io.flow.internal.v0.models.TrackingSubscriptionUpserted;
|
|
33468
33780
|
export type TrackingUpserted = io.flow.internal.v0.models.TrackingUpserted;
|
|
33469
33781
|
export type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
33470
33782
|
export type TransactionAdjustment =
|