@flowio/types 11.24.105 → 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 +218 -32
- package/dist/api.d.ts +1944 -268
- package/package.json +2 -2
- package/src/api-internal.ts +294 -41
- package/src/api.ts +2557 -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 {
|
|
@@ -6221,6 +6226,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6221
6226
|
readonly inventory_item_id: number;
|
|
6222
6227
|
readonly shopify_shop_id: number;
|
|
6223
6228
|
readonly shopify_inventory_item: io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
6229
|
+
readonly deleted_at?: string;
|
|
6224
6230
|
}
|
|
6225
6231
|
|
|
6226
6232
|
interface MarketsOrder {
|
|
@@ -6456,6 +6462,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6456
6462
|
| 'DISPUTE_DEFENSE_PERIOD_ENDED'
|
|
6457
6463
|
| 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
6458
6464
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
6465
|
+
type LifecycleStage = 'INQUIRY' | 'CHARGEBACK';
|
|
6459
6466
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
6460
6467
|
type PaymentMethod =
|
|
6461
6468
|
| 'ach'
|
|
@@ -6704,6 +6711,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6704
6711
|
readonly paymentMethod?: io.flow.adyen.v0.enums.PaymentMethod;
|
|
6705
6712
|
readonly reason?: string;
|
|
6706
6713
|
readonly success: string;
|
|
6714
|
+
readonly lifecycleStage?: io.flow.adyen.v0.enums.LifecycleStage;
|
|
6707
6715
|
}
|
|
6708
6716
|
|
|
6709
6717
|
interface ModificationRequest {
|
|
@@ -9331,6 +9339,15 @@ declare namespace io.flow.partner.v0.models {
|
|
|
9331
9339
|
readonly id: string;
|
|
9332
9340
|
}
|
|
9333
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
|
+
|
|
9334
9351
|
interface SummaryLabelForm {
|
|
9335
9352
|
readonly discriminator: 'summary_label_form';
|
|
9336
9353
|
readonly organization: string;
|
|
@@ -9374,7 +9391,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
9374
9391
|
| 'saturday';
|
|
9375
9392
|
type DeliveredDuty = 'paid' | 'unpaid';
|
|
9376
9393
|
type DiscountTarget = 'item' | 'shipping';
|
|
9377
|
-
type EntityIdentifierType = 'ioss' | 'voec';
|
|
9394
|
+
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
9378
9395
|
type Environment = 'sandbox' | 'production';
|
|
9379
9396
|
type ExceptionType = 'open' | 'closed';
|
|
9380
9397
|
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
@@ -16307,10 +16324,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16307
16324
|
| 'negative_balance_number_accounts'
|
|
16308
16325
|
| 'negative_balance_number_accounts_with_order_in_past_30_days'
|
|
16309
16326
|
| 'negative_balance_number_accounts_without_order_in_past_30_days'
|
|
16327
|
+
| 'negative_balance_number_offboarded_accounts'
|
|
16310
16328
|
| 'negative_balance_number_active_accounts_with_balance_over_1000'
|
|
16311
16329
|
| 'negative_balance_total'
|
|
16312
16330
|
| 'negative_balance_total_with_order_in_past_30_days'
|
|
16313
16331
|
| 'negative_balance_total_without_order_in_past_30_days'
|
|
16332
|
+
| 'negative_balance_total_offboarded_accounts'
|
|
16314
16333
|
| 'negative_balance_single_account_max'
|
|
16315
16334
|
| 'negative_balance_single_active_account_max'
|
|
16316
16335
|
| 'negative_balance_fee_total'
|
|
@@ -16328,7 +16347,32 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16328
16347
|
| 'negative_balance_sent_total'
|
|
16329
16348
|
| 'negative_balance_failed_count'
|
|
16330
16349
|
| 'negative_balance_failed_total'
|
|
16331
|
-
| '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';
|
|
16332
16376
|
type BillingStatementAttachmentKey =
|
|
16333
16377
|
| 'invoice'
|
|
16334
16378
|
| 'statement'
|
|
@@ -16371,7 +16415,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16371
16415
|
| 'duty'
|
|
16372
16416
|
| 'trueup'
|
|
16373
16417
|
| 'carrier_charge'
|
|
16374
|
-
| 'tax_refund'
|
|
16418
|
+
| 'tax_refund'
|
|
16419
|
+
| 'duty_refund';
|
|
16375
16420
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16376
16421
|
type CalculatorEngine =
|
|
16377
16422
|
| 'flow_rate_and_rule'
|
|
@@ -16814,6 +16859,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16814
16859
|
| 'partner_organization_settings_deleted'
|
|
16815
16860
|
| 'unassigned_merchant_guid_upserted'
|
|
16816
16861
|
| 'unassigned_merchant_guid_deleted'
|
|
16862
|
+
| 'partner_tracking_subscription_upserted'
|
|
16863
|
+
| 'partner_tracking_subscription_deleted'
|
|
16817
16864
|
| 'internal_authorization_upserted'
|
|
16818
16865
|
| 'internal_authorization_deleted'
|
|
16819
16866
|
| 'afterpay_authorization_upserted'
|
|
@@ -16840,6 +16887,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16840
16887
|
| 'paypal_execution_upserted'
|
|
16841
16888
|
| 'paypal_refund_deleted'
|
|
16842
16889
|
| 'paypal_refund_upserted'
|
|
16890
|
+
| 'paypal_dispute_upserted'
|
|
16891
|
+
| 'paypal_dispute_deleted'
|
|
16843
16892
|
| 'pricing_indicator'
|
|
16844
16893
|
| 'product_restriction_rule_decision_upserted'
|
|
16845
16894
|
| 'product_restriction_rule_decision_deleted'
|
|
@@ -16919,6 +16968,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16919
16968
|
| 'michaelyan_item_deleted'
|
|
16920
16969
|
| 'miljenko_item_upserted'
|
|
16921
16970
|
| 'miljenko_item_deleted'
|
|
16971
|
+
| 'sanjay_item_upserted'
|
|
16972
|
+
| 'sanjay_item_deleted'
|
|
16922
16973
|
| 'shruti_demo_item_upserted'
|
|
16923
16974
|
| 'shruti_demo_item_deleted'
|
|
16924
16975
|
| 'tam_item_upserted'
|
|
@@ -16937,6 +16988,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16937
16988
|
| 'tracking_assurance_analysis_deleted'
|
|
16938
16989
|
| 'tracking_assurance_job_upserted'
|
|
16939
16990
|
| 'tracking_assurance_job_deleted'
|
|
16991
|
+
| 'tracking_subscription_upserted'
|
|
16992
|
+
| 'tracking_subscription_deleted'
|
|
16940
16993
|
| 'tracking_label_dimensions_upserted'
|
|
16941
16994
|
| 'tracking_label_dimensions_deleted'
|
|
16942
16995
|
| 'tracking_request_upserted'
|
|
@@ -16988,8 +17041,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16988
17041
|
| 'legacy_model'
|
|
16989
17042
|
| 'enterprise_model';
|
|
16990
17043
|
type HttpMethod = 'get' | 'post';
|
|
16991
|
-
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
16992
|
-
type InventoryReservation = 'synchronous-on-submit';
|
|
16993
17044
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
16994
17045
|
type ItemClassificationStatus =
|
|
16995
17046
|
| 'unknown'
|
|
@@ -17053,7 +17104,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17053
17104
|
| 'tax_credit'
|
|
17054
17105
|
| 'carrier_credit'
|
|
17055
17106
|
| 'negative_balance_guarantee'
|
|
17056
|
-
| 'bank_payment_failure'
|
|
17107
|
+
| 'bank_payment_failure'
|
|
17108
|
+
| 'non_fraud_chargeback';
|
|
17057
17109
|
type MarketingGatewayAccountConnectionStatus =
|
|
17058
17110
|
| 'not_connected'
|
|
17059
17111
|
| 'connecting'
|
|
@@ -17311,7 +17363,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17311
17363
|
| 'invariants'
|
|
17312
17364
|
| 'payments'
|
|
17313
17365
|
| 'reconcile_not_recorded'
|
|
17314
|
-
| 'products_record'
|
|
17366
|
+
| 'products_record'
|
|
17367
|
+
| 'disputes';
|
|
17315
17368
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
17316
17369
|
type ReportingScheme =
|
|
17317
17370
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -17336,10 +17389,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17336
17389
|
| 'Low-Risk'
|
|
17337
17390
|
| 'Restricted-Party'
|
|
17338
17391
|
| 'none';
|
|
17339
|
-
type
|
|
17340
|
-
| 'duration_too_long'
|
|
17341
|
-
| 'items_not_found'
|
|
17342
|
-
| 'reservation_expired';
|
|
17392
|
+
type SanjayItemType = 'digital' | 'physical';
|
|
17343
17393
|
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
17344
17394
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
17345
17395
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
@@ -17654,6 +17704,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17654
17704
|
readonly transfers: io.flow.common.v0.models.Price;
|
|
17655
17705
|
readonly balance: io.flow.common.v0.models.Price;
|
|
17656
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;
|
|
17657
17712
|
}
|
|
17658
17713
|
|
|
17659
17714
|
interface AccountSummary {
|
|
@@ -18876,7 +18931,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18876
18931
|
|
|
18877
18932
|
interface CallRecord {
|
|
18878
18933
|
readonly id: string;
|
|
18879
|
-
readonly request_body?:
|
|
18934
|
+
readonly request_body?: string;
|
|
18880
18935
|
}
|
|
18881
18936
|
|
|
18882
18937
|
interface CarrierAccount {
|
|
@@ -20817,6 +20872,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20817
20872
|
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
20818
20873
|
}
|
|
20819
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
|
+
|
|
20820
20886
|
interface DisputeStatusForm {
|
|
20821
20887
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20822
20888
|
}
|
|
@@ -21910,6 +21976,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21910
21976
|
readonly payment_authorization_id?: string;
|
|
21911
21977
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
21912
21978
|
readonly created_at?: string;
|
|
21979
|
+
readonly has_provider_link?: boolean;
|
|
21913
21980
|
}
|
|
21914
21981
|
|
|
21915
21982
|
interface FraudReviewAuthorization {
|
|
@@ -21928,6 +21995,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21928
21995
|
readonly payment_authorization_id?: string;
|
|
21929
21996
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
21930
21997
|
readonly created_at?: string;
|
|
21998
|
+
readonly has_provider_link?: boolean;
|
|
21931
21999
|
}
|
|
21932
22000
|
|
|
21933
22001
|
interface FraudReviewAuthorizationDecision {
|
|
@@ -22755,19 +22823,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22755
22823
|
readonly inventory_item_id: number;
|
|
22756
22824
|
readonly shopify_shop_id: number;
|
|
22757
22825
|
readonly shopify_inventory_item: io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
22758
|
-
|
|
22759
|
-
|
|
22760
|
-
interface InventoryOrganizationSettings {
|
|
22761
|
-
readonly id: string;
|
|
22762
|
-
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
22763
|
-
readonly inventory_check_service: io.flow.internal.v0.enums.InventoryCheckService;
|
|
22764
|
-
readonly inventory_check_service_root_url?: string;
|
|
22765
|
-
}
|
|
22766
|
-
|
|
22767
|
-
interface InventoryOrganizationSettingsForm {
|
|
22768
|
-
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
22769
|
-
readonly inventory_check_service: io.flow.internal.v0.enums.InventoryCheckService;
|
|
22770
|
-
readonly inventory_check_service_root_url?: string;
|
|
22826
|
+
readonly deleted_at?: string;
|
|
22771
22827
|
}
|
|
22772
22828
|
|
|
22773
22829
|
interface Invoice {
|
|
@@ -24442,8 +24498,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24442
24498
|
|
|
24443
24499
|
interface NegativeDebitMetrics {
|
|
24444
24500
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24501
|
+
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24445
24502
|
readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24446
24503
|
readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24504
|
+
readonly forth_plus_attempts: io.flow.internal.v0.models.AttemptStatistics;
|
|
24447
24505
|
}
|
|
24448
24506
|
|
|
24449
24507
|
interface NextBillingStatement {
|
|
@@ -25186,6 +25244,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25186
25244
|
readonly product_count: number;
|
|
25187
25245
|
readonly restricted_product_count: number;
|
|
25188
25246
|
readonly last_order_submitted_at?: string;
|
|
25247
|
+
readonly matching_positive_keywords: string[];
|
|
25248
|
+
readonly product_categories: string[];
|
|
25189
25249
|
}
|
|
25190
25250
|
|
|
25191
25251
|
interface OrganizationMetadataDeleted {
|
|
@@ -25589,6 +25649,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25589
25649
|
readonly partner_organization_settings: io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
25590
25650
|
}
|
|
25591
25651
|
|
|
25652
|
+
interface PartnerTrackingSubscriptionDeleted {
|
|
25653
|
+
readonly discriminator: 'partner_tracking_subscription_deleted';
|
|
25654
|
+
readonly event_id: string;
|
|
25655
|
+
readonly timestamp: string;
|
|
25656
|
+
readonly id: string;
|
|
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;
|
|
25664
|
+
}
|
|
25665
|
+
|
|
25592
25666
|
interface Passphrase {
|
|
25593
25667
|
readonly id: string;
|
|
25594
25668
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
@@ -25751,6 +25825,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25751
25825
|
readonly payer_id: string;
|
|
25752
25826
|
}
|
|
25753
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
|
+
|
|
25754
25842
|
interface PaypalExecutionDeleted {
|
|
25755
25843
|
readonly discriminator: 'paypal_execution_deleted';
|
|
25756
25844
|
readonly event_id: string;
|
|
@@ -25765,6 +25853,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25765
25853
|
readonly execution: io.flow.internal.v0.models.PaypalInternalExecution;
|
|
25766
25854
|
}
|
|
25767
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
|
+
|
|
25768
25897
|
interface PaypalInternalExecution {
|
|
25769
25898
|
readonly id: string;
|
|
25770
25899
|
readonly currency: string;
|
|
@@ -26847,6 +26976,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26847
26976
|
readonly from?: string;
|
|
26848
26977
|
readonly to?: string;
|
|
26849
26978
|
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
26979
|
+
readonly organizations?: io.flow.internal.v0.models.ReportOrganizationReference[];
|
|
26850
26980
|
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
26851
26981
|
readonly recipients?: string[];
|
|
26852
26982
|
}
|
|
@@ -26860,6 +26990,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26860
26990
|
readonly order_number: string;
|
|
26861
26991
|
}
|
|
26862
26992
|
|
|
26993
|
+
interface ReportOrganizationReference {
|
|
26994
|
+
readonly organization_id: string;
|
|
26995
|
+
}
|
|
26996
|
+
|
|
26863
26997
|
interface ReportOwner {
|
|
26864
26998
|
readonly name: string;
|
|
26865
26999
|
}
|
|
@@ -26937,10 +27071,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26937
27071
|
readonly refund_records?: any /*object*/[];
|
|
26938
27072
|
}
|
|
26939
27073
|
|
|
26940
|
-
interface ReportingEntity {
|
|
26941
|
-
readonly id: string;
|
|
26942
|
-
}
|
|
26943
|
-
|
|
26944
27074
|
interface ReportingFulfillment {
|
|
26945
27075
|
readonly id: string;
|
|
26946
27076
|
readonly sequence_number: number;
|
|
@@ -27023,6 +27153,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27023
27153
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27024
27154
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27025
27155
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27156
|
+
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27026
27157
|
}
|
|
27027
27158
|
|
|
27028
27159
|
interface ReportingMonetaryValue {
|
|
@@ -27352,6 +27483,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27352
27483
|
readonly count: number;
|
|
27353
27484
|
}
|
|
27354
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
|
+
|
|
27355
27513
|
interface ResyncByDestinations {
|
|
27356
27514
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
27357
27515
|
}
|
|
@@ -27449,7 +27607,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27449
27607
|
readonly parent?: io.flow.internal.v0.models.RecordReference;
|
|
27450
27608
|
readonly type: io.flow.internal.v0.enums.RevenueRecordType;
|
|
27451
27609
|
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
27452
|
-
readonly entity: io.flow.internal.v0.models.ReportingEntity;
|
|
27453
27610
|
readonly vendor: io.flow.internal.v0.models.ReportingVendor;
|
|
27454
27611
|
readonly currencies: io.flow.internal.v0.models.ReportingCurrencies;
|
|
27455
27612
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
@@ -27508,6 +27665,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27508
27665
|
readonly requested_by: string;
|
|
27509
27666
|
}
|
|
27510
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
|
+
|
|
27511
27699
|
interface ScheduledPayment {
|
|
27512
27700
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
27513
27701
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -28121,6 +28309,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28121
28309
|
readonly send_inventory_update: boolean;
|
|
28122
28310
|
}
|
|
28123
28311
|
|
|
28312
|
+
interface ShopifyPartnerWebhook {
|
|
28313
|
+
readonly placeholder?: boolean;
|
|
28314
|
+
}
|
|
28315
|
+
|
|
28316
|
+
interface ShopifyPartnerWebhookRaw {
|
|
28317
|
+
readonly placeholder?: boolean;
|
|
28318
|
+
}
|
|
28319
|
+
|
|
28124
28320
|
interface ShopifyPaymentSummary {
|
|
28125
28321
|
readonly description: string;
|
|
28126
28322
|
readonly address?: io.flow.common.v0.models.Address;
|
|
@@ -29399,6 +29595,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29399
29595
|
readonly tracking_response: io.flow.internal.v0.models.TrackingResponse;
|
|
29400
29596
|
}
|
|
29401
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
|
+
|
|
29402
29626
|
interface TrackingUpserted {
|
|
29403
29627
|
readonly discriminator: 'tracking_upserted';
|
|
29404
29628
|
readonly event_id: string;
|
|
@@ -30050,6 +30274,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30050
30274
|
| io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted
|
|
30051
30275
|
| io.flow.internal.v0.models.UnassignedMerchantGuidUpserted
|
|
30052
30276
|
| io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
|
|
30277
|
+
| io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted
|
|
30278
|
+
| io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted
|
|
30053
30279
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
30054
30280
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
30055
30281
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -30076,6 +30302,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30076
30302
|
| io.flow.internal.v0.models.PaypalExecutionUpserted
|
|
30077
30303
|
| io.flow.internal.v0.models.PaypalRefundDeleted
|
|
30078
30304
|
| io.flow.internal.v0.models.PaypalRefundUpserted
|
|
30305
|
+
| io.flow.internal.v0.models.PaypalDisputeUpserted
|
|
30306
|
+
| io.flow.internal.v0.models.PaypalDisputeDeleted
|
|
30079
30307
|
| io.flow.internal.v0.models.PricingIndicator
|
|
30080
30308
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
|
|
30081
30309
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
|
|
@@ -30155,6 +30383,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30155
30383
|
| io.flow.internal.v0.models.MichaelyanItemDeleted
|
|
30156
30384
|
| io.flow.internal.v0.models.MiljenkoItemUpserted
|
|
30157
30385
|
| io.flow.internal.v0.models.MiljenkoItemDeleted
|
|
30386
|
+
| io.flow.internal.v0.models.SanjayItemUpserted
|
|
30387
|
+
| io.flow.internal.v0.models.SanjayItemDeleted
|
|
30158
30388
|
| io.flow.internal.v0.models.ShrutiDemoItemUpserted
|
|
30159
30389
|
| io.flow.internal.v0.models.ShrutiDemoItemDeleted
|
|
30160
30390
|
| io.flow.internal.v0.models.TamItemUpserted
|
|
@@ -30173,6 +30403,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30173
30403
|
| io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted
|
|
30174
30404
|
| io.flow.internal.v0.models.TrackingAssuranceJobUpserted
|
|
30175
30405
|
| io.flow.internal.v0.models.TrackingAssuranceJobDeleted
|
|
30406
|
+
| io.flow.internal.v0.models.TrackingSubscriptionUpserted
|
|
30407
|
+
| io.flow.internal.v0.models.TrackingSubscriptionDeleted
|
|
30176
30408
|
| io.flow.internal.v0.models.TrackingLabelDimensionsUpserted
|
|
30177
30409
|
| io.flow.internal.v0.models.TrackingLabelDimensionsDeleted
|
|
30178
30410
|
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
@@ -30443,6 +30675,8 @@ export type AccountSettingsUpserted =
|
|
|
30443
30675
|
io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
30444
30676
|
export type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
30445
30677
|
export type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
30678
|
+
export type AccountStatisticsAdditionalBalances =
|
|
30679
|
+
io.flow.internal.v0.models.AccountStatisticsAdditionalBalances;
|
|
30446
30680
|
export type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
30447
30681
|
export type AccountTransactionsExportRequest =
|
|
30448
30682
|
io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
@@ -31303,6 +31537,7 @@ export type DisputeOrganizationReference =
|
|
|
31303
31537
|
export type DisputeOverrideUpdateForm =
|
|
31304
31538
|
io.flow.internal.v0.models.DisputeOverrideUpdateForm;
|
|
31305
31539
|
export type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
|
|
31540
|
+
export type DisputeRecord = io.flow.internal.v0.models.DisputeRecord;
|
|
31306
31541
|
export type DisputeReportingCategory =
|
|
31307
31542
|
io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
31308
31543
|
export type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
|
|
@@ -31777,16 +32012,8 @@ export type InternalTransactionDetailsCard =
|
|
|
31777
32012
|
export type InvalidCheckoutData =
|
|
31778
32013
|
io.flow.internal.v0.models.InvalidCheckoutData;
|
|
31779
32014
|
export type Invariant = io.flow.internal.v0.models.Invariant;
|
|
31780
|
-
export type InventoryCheckService =
|
|
31781
|
-
io.flow.internal.v0.enums.InventoryCheckService;
|
|
31782
32015
|
export type InventoryItemWrapper =
|
|
31783
32016
|
io.flow.internal.v0.models.InventoryItemWrapper;
|
|
31784
|
-
export type InventoryOrganizationSettings =
|
|
31785
|
-
io.flow.internal.v0.models.InventoryOrganizationSettings;
|
|
31786
|
-
export type InventoryOrganizationSettingsForm =
|
|
31787
|
-
io.flow.internal.v0.models.InventoryOrganizationSettingsForm;
|
|
31788
|
-
export type InventoryReservation =
|
|
31789
|
-
io.flow.internal.v0.enums.InventoryReservation;
|
|
31790
32017
|
export type Invoice = io.flow.internal.v0.models.Invoice;
|
|
31791
32018
|
export type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
31792
32019
|
export type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
@@ -32533,6 +32760,10 @@ export type PartnerOrganizationSettingsForm =
|
|
|
32533
32760
|
io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
32534
32761
|
export type PartnerOrganizationSettingsUpserted =
|
|
32535
32762
|
io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
32763
|
+
export type PartnerTrackingSubscriptionDeleted =
|
|
32764
|
+
io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted;
|
|
32765
|
+
export type PartnerTrackingSubscriptionUpserted =
|
|
32766
|
+
io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted;
|
|
32536
32767
|
export type Party = io.flow.internal.v0.enums.Party;
|
|
32537
32768
|
export type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
32538
32769
|
export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
@@ -32576,10 +32807,16 @@ export type PaypalAuthenticationForm =
|
|
|
32576
32807
|
io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
32577
32808
|
export type PaypalAuthorizationPayload =
|
|
32578
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;
|
|
32579
32814
|
export type PaypalExecutionDeleted =
|
|
32580
32815
|
io.flow.internal.v0.models.PaypalExecutionDeleted;
|
|
32581
32816
|
export type PaypalExecutionUpserted =
|
|
32582
32817
|
io.flow.internal.v0.models.PaypalExecutionUpserted;
|
|
32818
|
+
export type PaypalInternalDispute =
|
|
32819
|
+
io.flow.internal.v0.models.PaypalInternalDispute;
|
|
32583
32820
|
export type PaypalInternalExecution =
|
|
32584
32821
|
io.flow.internal.v0.models.PaypalInternalExecution;
|
|
32585
32822
|
export type PaypalInternalPayment =
|
|
@@ -32854,6 +33091,8 @@ export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
|
32854
33091
|
export type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
32855
33092
|
export type ReportOrderReference =
|
|
32856
33093
|
io.flow.internal.v0.models.ReportOrderReference;
|
|
33094
|
+
export type ReportOrganizationReference =
|
|
33095
|
+
io.flow.internal.v0.models.ReportOrganizationReference;
|
|
32857
33096
|
export type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
32858
33097
|
export type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
32859
33098
|
export type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
@@ -32875,7 +33114,6 @@ export type ReportingDebugMissingSubsidies =
|
|
|
32875
33114
|
export type ReportingDestination =
|
|
32876
33115
|
io.flow.internal.v0.models.ReportingDestination;
|
|
32877
33116
|
export type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
32878
|
-
export type ReportingEntity = io.flow.internal.v0.models.ReportingEntity;
|
|
32879
33117
|
export type ReportingFulfillment =
|
|
32880
33118
|
io.flow.internal.v0.models.ReportingFulfillment;
|
|
32881
33119
|
export type ReportingFulfillmentHas =
|
|
@@ -32971,6 +33209,8 @@ export type RestrictionRuleSummary =
|
|
|
32971
33209
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
32972
33210
|
export type RestrictionStatusMetadata =
|
|
32973
33211
|
io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
33212
|
+
export type RestrictionsDailyops =
|
|
33213
|
+
io.flow.internal.v0.models.RestrictionsDailyops;
|
|
32974
33214
|
export type ResyncByDestinations =
|
|
32975
33215
|
io.flow.internal.v0.models.ResyncByDestinations;
|
|
32976
33216
|
export type ResyncByHs6Destinations =
|
|
@@ -33010,6 +33250,11 @@ export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
|
33010
33250
|
export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
33011
33251
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
33012
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;
|
|
33013
33258
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
33014
33259
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
33015
33260
|
export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -33033,8 +33278,6 @@ export type SearchProviderExport =
|
|
|
33033
33278
|
io.flow.internal.v0.models.SearchProviderExport;
|
|
33034
33279
|
export type SearchTrackingSummary =
|
|
33035
33280
|
io.flow.internal.v0.models.SearchTrackingSummary;
|
|
33036
|
-
export type SerialReservationError =
|
|
33037
|
-
io.flow.internal.v0.enums.SerialReservationError;
|
|
33038
33281
|
export type ServiceName = io.flow.internal.v0.enums.ServiceName;
|
|
33039
33282
|
export type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
33040
33283
|
export type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
@@ -33194,6 +33437,10 @@ export type ShopifyOrganizationSettings =
|
|
|
33194
33437
|
io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
33195
33438
|
export type ShopifyOrganizationSettingsForm =
|
|
33196
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;
|
|
33197
33444
|
export type ShopifyPaymentSummary =
|
|
33198
33445
|
io.flow.internal.v0.models.ShopifyPaymentSummary;
|
|
33199
33446
|
export type ShopifyProductBundle =
|
|
@@ -33524,6 +33771,12 @@ export type TrackingRequestUpserted =
|
|
|
33524
33771
|
export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
33525
33772
|
export type TrackingResponseUpserted =
|
|
33526
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;
|
|
33527
33780
|
export type TrackingUpserted = io.flow.internal.v0.models.TrackingUpserted;
|
|
33528
33781
|
export type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
33529
33782
|
export type TransactionAdjustment =
|