@flowio/types 11.24.136 → 11.24.137
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 +242 -14
- package/dist/api.d.ts +41 -2
- package/package.json +1 -1
- package/src/api-internal.ts +316 -14
- package/src/api.ts +50 -2
package/src/api-internal.ts
CHANGED
|
@@ -5333,6 +5333,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
5333
5333
|
| 'dimensions_estimated'
|
|
5334
5334
|
| 'default_item_dimensions_estimated';
|
|
5335
5335
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5336
|
+
type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
|
|
5336
5337
|
type ShippingLabelErrorCode =
|
|
5337
5338
|
| 'generic_error'
|
|
5338
5339
|
| 'cancelled_order'
|
|
@@ -5478,6 +5479,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
5478
5479
|
readonly created_at?: string;
|
|
5479
5480
|
readonly updated_at?: string;
|
|
5480
5481
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
5482
|
+
readonly shipping_cost_guarantee?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
5481
5483
|
}
|
|
5482
5484
|
|
|
5483
5485
|
interface ShippingLabelDocument {
|
|
@@ -8314,6 +8316,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8314
8316
|
readonly count: number;
|
|
8315
8317
|
}
|
|
8316
8318
|
|
|
8319
|
+
interface GraphqlInferredProductCategory {
|
|
8320
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
8321
|
+
}
|
|
8322
|
+
|
|
8317
8323
|
interface GraphqlInventoryItem {
|
|
8318
8324
|
readonly id: string;
|
|
8319
8325
|
readonly tracked: boolean;
|
|
@@ -8370,6 +8376,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8370
8376
|
readonly updatedAt: string;
|
|
8371
8377
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
8372
8378
|
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
8379
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
8373
8380
|
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
8374
8381
|
}
|
|
8375
8382
|
|
|
@@ -10486,6 +10493,14 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10486
10493
|
readonly cleartext: string;
|
|
10487
10494
|
}
|
|
10488
10495
|
|
|
10496
|
+
interface ChannelShopStatistics {
|
|
10497
|
+
readonly id: string;
|
|
10498
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
10499
|
+
readonly initial_catalog_synced_at?: string;
|
|
10500
|
+
readonly catalog_sync_duration?: number;
|
|
10501
|
+
readonly catalog_products_count?: number;
|
|
10502
|
+
}
|
|
10503
|
+
|
|
10489
10504
|
interface FlowChannelOrganization {
|
|
10490
10505
|
readonly placeholder?: string;
|
|
10491
10506
|
}
|
|
@@ -12927,6 +12942,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12927
12942
|
readonly rate_level_key?: string;
|
|
12928
12943
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
12929
12944
|
readonly effective_at: string;
|
|
12945
|
+
readonly effective_until?: string;
|
|
12930
12946
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
12931
12947
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
12932
12948
|
readonly published_at?: string;
|
|
@@ -12947,6 +12963,10 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12947
12963
|
readonly pickupCenter?: string;
|
|
12948
12964
|
}
|
|
12949
12965
|
|
|
12966
|
+
interface RatecardEffectiveUntilForm {
|
|
12967
|
+
readonly effective_until?: string;
|
|
12968
|
+
}
|
|
12969
|
+
|
|
12950
12970
|
interface RatecardEstimateForm {
|
|
12951
12971
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
12952
12972
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
@@ -14025,6 +14045,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
14025
14045
|
readonly organization_id: string;
|
|
14026
14046
|
readonly number: string;
|
|
14027
14047
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
14048
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
14028
14049
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
14029
14050
|
readonly item_numbers: string[];
|
|
14030
14051
|
readonly highest_value_item_number?: string;
|
|
@@ -16638,6 +16659,18 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
16638
16659
|
|
|
16639
16660
|
interface BankAccountInfoKor {
|
|
16640
16661
|
readonly discriminator: 'kor';
|
|
16662
|
+
readonly name?: string;
|
|
16663
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
16664
|
+
readonly phone?: string;
|
|
16665
|
+
readonly email?: string;
|
|
16666
|
+
readonly bank_account_number: string;
|
|
16667
|
+
readonly bank_routing_number?: string;
|
|
16668
|
+
readonly bank_name?: string;
|
|
16669
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
16670
|
+
}
|
|
16671
|
+
|
|
16672
|
+
interface BankAccountInfoKorV2 {
|
|
16673
|
+
readonly discriminator: 'kor_v2';
|
|
16641
16674
|
readonly name: string;
|
|
16642
16675
|
readonly bank_account_number: string;
|
|
16643
16676
|
readonly bank_routing_number: string;
|
|
@@ -16658,17 +16691,19 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16658
16691
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
|
|
16659
16692
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoFra
|
|
16660
16693
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta
|
|
16661
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16694
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16695
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
16662
16696
|
}
|
|
16663
16697
|
|
|
16664
16698
|
declare namespace io.flow.internal.v0.enums {
|
|
16665
|
-
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
16699
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
16666
16700
|
type AccountPaymentHoldReason =
|
|
16667
16701
|
| 'fraudulent'
|
|
16668
16702
|
| 'frozen'
|
|
16669
16703
|
| 'invalid_bank_account';
|
|
16670
16704
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16671
16705
|
type AccountType = 'channel' | 'organization';
|
|
16706
|
+
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
16672
16707
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
16673
16708
|
type AdyenIntegrationType =
|
|
16674
16709
|
| 'hosted_payment_page'
|
|
@@ -16681,6 +16716,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16681
16716
|
| 'integration_test'
|
|
16682
16717
|
| 'unit_test';
|
|
16683
16718
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
16719
|
+
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
16684
16720
|
type AutoRestrictRule =
|
|
16685
16721
|
| 'prr-3ce7d556f2464314ab0a3e8eee33e0ce'
|
|
16686
16722
|
| 'prr-599c6246a1a24752aeb85e8f79030781'
|
|
@@ -17263,6 +17299,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17263
17299
|
| 'channel_order_acceptance_upserted'
|
|
17264
17300
|
| 'channel_order_acceptance_deleted'
|
|
17265
17301
|
| 'channel_order_acceptance_failed'
|
|
17302
|
+
| 'channel_shop_statistics_upserted'
|
|
17303
|
+
| 'channel_shop_statistics_deleted'
|
|
17266
17304
|
| 'commercial_invoice_internal_upserted'
|
|
17267
17305
|
| 'commercial_invoice_internal_deleted'
|
|
17268
17306
|
| 'internal_channel_rate_deleted'
|
|
@@ -17322,6 +17360,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17322
17360
|
| 'shipping_cost_deleted'
|
|
17323
17361
|
| 'mor_cost_upserted'
|
|
17324
17362
|
| 'mor_cost_deleted'
|
|
17363
|
+
| 'flat_rate_label_reversal_upserted'
|
|
17364
|
+
| 'flat_rate_label_reversal_deleted'
|
|
17325
17365
|
| 'fraud_review_upserted'
|
|
17326
17366
|
| 'fraud_review_deleted'
|
|
17327
17367
|
| 'fraud_pending_review_upserted'
|
|
@@ -17378,6 +17418,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17378
17418
|
| 'order_validation_deleted'
|
|
17379
17419
|
| 'label_creation_job_upserted'
|
|
17380
17420
|
| 'label_creation_job_deleted'
|
|
17421
|
+
| 'adaptive_shipping_order_guarantee_upserted'
|
|
17422
|
+
| 'adaptive_shipping_order_guarantee_deleted'
|
|
17381
17423
|
| 'label_tracking_summary_upserted'
|
|
17382
17424
|
| 'label_tracking_summary_deleted'
|
|
17383
17425
|
| 'logistics_capabilities_upserted'
|
|
@@ -17466,12 +17508,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17466
17508
|
| 'screening_status_change_deleted'
|
|
17467
17509
|
| 'restrictions_dailyops_upserted'
|
|
17468
17510
|
| 'restrictions_dailyops_deleted'
|
|
17511
|
+
| 'restrictions_athena_dailyops_pc_pv_upserted'
|
|
17512
|
+
| 'restrictions_athena_dailyops_pc_pv_deleted'
|
|
17513
|
+
| 'restrictions_athena_dailyops_fs_upserted'
|
|
17514
|
+
| 'restrictions_athena_dailyops_fs_deleted'
|
|
17469
17515
|
| 'restriction_rule_upserted'
|
|
17470
17516
|
| 'restriction_rule_deleted'
|
|
17471
17517
|
| 'restriction_rule_effect_upserted'
|
|
17472
17518
|
| 'restriction_rule_effect_deleted'
|
|
17473
17519
|
| 'taxonomy_category_hs6_ref_upserted'
|
|
17474
17520
|
| 'taxonomy_category_hs6_ref_deleted'
|
|
17521
|
+
| 'preonboarding_merchant_upserted'
|
|
17522
|
+
| 'preonboarding_merchant_deleted'
|
|
17475
17523
|
| 'shopify_hs10_codes_upserted'
|
|
17476
17524
|
| 'shopify_hs10_codes_deleted'
|
|
17477
17525
|
| 'shopify_markets_order_upserted'
|
|
@@ -17549,6 +17597,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17549
17597
|
| 'chenglin_item_deleted'
|
|
17550
17598
|
| 'bojana_item_upserted'
|
|
17551
17599
|
| 'bojana_item_deleted'
|
|
17600
|
+
| 'raveena_item_upserted'
|
|
17601
|
+
| 'raveena_item_deleted'
|
|
17552
17602
|
| 'tracking_processing_error_upserted'
|
|
17553
17603
|
| 'tracking_processing_error_deleted'
|
|
17554
17604
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -17642,7 +17692,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17642
17692
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
17643
17693
|
type KeywordType = 'positive' | 'negative';
|
|
17644
17694
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
17645
|
-
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
17646
17695
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
17647
17696
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
17648
17697
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
@@ -17681,6 +17730,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17681
17730
|
| 'order_combined_shipment'
|
|
17682
17731
|
| 'intransit_label_event'
|
|
17683
17732
|
| 'shipping_notification';
|
|
17733
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
17684
17734
|
type MailClass = 'standard' | 'express';
|
|
17685
17735
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
17686
17736
|
type ManualTransactionCategory =
|
|
@@ -17898,6 +17948,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17898
17948
|
| 'non_channel_payment_bank_account'
|
|
17899
17949
|
| 'scheduled_payment'
|
|
17900
17950
|
| 'scheduled_payment_citi'
|
|
17951
|
+
| 'scheduled_payment_citi_krw'
|
|
17952
|
+
| 'scheduled_payment_citi_krw_txt'
|
|
17901
17953
|
| 'account_quarterly_balances'
|
|
17902
17954
|
| 'invariants'
|
|
17903
17955
|
| 'payments'
|
|
@@ -18136,7 +18188,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18136
18188
|
| 'payment'
|
|
18137
18189
|
| 'rate_levels'
|
|
18138
18190
|
| 'center_defaults'
|
|
18139
|
-
| 'item_dimensions'
|
|
18191
|
+
| 'item_dimensions'
|
|
18192
|
+
| 'center';
|
|
18140
18193
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
18141
18194
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
18142
18195
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -18429,13 +18482,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18429
18482
|
readonly quantity: number;
|
|
18430
18483
|
}
|
|
18431
18484
|
|
|
18485
|
+
interface AdaptiveShippingOrderGuarantee {
|
|
18486
|
+
readonly id: string;
|
|
18487
|
+
readonly organization_id: string;
|
|
18488
|
+
readonly order_number: string;
|
|
18489
|
+
readonly guarantee_state: io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
18490
|
+
readonly label_id?: string;
|
|
18491
|
+
readonly notification_id?: string;
|
|
18492
|
+
}
|
|
18493
|
+
|
|
18494
|
+
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
18495
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_deleted';
|
|
18496
|
+
readonly event_id: string;
|
|
18497
|
+
readonly timestamp: string;
|
|
18498
|
+
readonly organization: string;
|
|
18499
|
+
readonly id: string;
|
|
18500
|
+
}
|
|
18501
|
+
|
|
18502
|
+
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
18503
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_upserted';
|
|
18504
|
+
readonly event_id: string;
|
|
18505
|
+
readonly timestamp: string;
|
|
18506
|
+
readonly organization: string;
|
|
18507
|
+
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
18508
|
+
}
|
|
18509
|
+
|
|
18432
18510
|
interface AdaptiveShippingRate {
|
|
18433
18511
|
readonly id: string;
|
|
18434
18512
|
readonly organization_id: string;
|
|
18435
18513
|
readonly destination_country: string;
|
|
18436
18514
|
readonly coefficient: number;
|
|
18437
18515
|
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
18438
|
-
readonly version_id?: string;
|
|
18439
18516
|
readonly effective_at: string;
|
|
18440
18517
|
readonly effective_until?: string;
|
|
18441
18518
|
}
|
|
@@ -19606,6 +19683,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19606
19683
|
readonly sales_tax_rate: number;
|
|
19607
19684
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
19608
19685
|
readonly additional_tax_rate?: number;
|
|
19686
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
19687
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
19609
19688
|
readonly total: io.flow.common.v0.models.Money;
|
|
19610
19689
|
}
|
|
19611
19690
|
|
|
@@ -19640,6 +19719,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19640
19719
|
readonly additional_tax_import_included: boolean;
|
|
19641
19720
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
19642
19721
|
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
19722
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
19723
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
19643
19724
|
}
|
|
19644
19725
|
|
|
19645
19726
|
interface CalculatorDtcePostBody {
|
|
@@ -20389,6 +20470,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20389
20470
|
readonly tokens: io.flow.internal.v0.models.Tokens;
|
|
20390
20471
|
}
|
|
20391
20472
|
|
|
20473
|
+
interface ChannelShopStatistics {
|
|
20474
|
+
readonly id: string;
|
|
20475
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
20476
|
+
readonly initial_catalog_synced_at?: string;
|
|
20477
|
+
readonly catalog_sync_duration?: number;
|
|
20478
|
+
readonly catalog_products_count?: number;
|
|
20479
|
+
}
|
|
20480
|
+
|
|
20481
|
+
interface ChannelShopStatisticsDeleted {
|
|
20482
|
+
readonly discriminator: 'channel_shop_statistics_deleted';
|
|
20483
|
+
readonly event_id: string;
|
|
20484
|
+
readonly timestamp: string;
|
|
20485
|
+
readonly organization: string;
|
|
20486
|
+
readonly id: string;
|
|
20487
|
+
}
|
|
20488
|
+
|
|
20489
|
+
interface ChannelShopStatisticsUpserted {
|
|
20490
|
+
readonly discriminator: 'channel_shop_statistics_upserted';
|
|
20491
|
+
readonly event_id: string;
|
|
20492
|
+
readonly timestamp: string;
|
|
20493
|
+
readonly organization: string;
|
|
20494
|
+
readonly channel_shop_statistics: io.flow.internal.v0.models.ChannelShopStatistics;
|
|
20495
|
+
}
|
|
20496
|
+
|
|
20392
20497
|
interface ChannelTransaction {
|
|
20393
20498
|
readonly discriminator: 'channel_transaction';
|
|
20394
20499
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
@@ -22328,6 +22433,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22328
22433
|
readonly max_delivery_days?: number;
|
|
22329
22434
|
}
|
|
22330
22435
|
|
|
22436
|
+
interface FlatRateLabelReversal {
|
|
22437
|
+
readonly id: string;
|
|
22438
|
+
readonly organization_id: string;
|
|
22439
|
+
readonly order_number: string;
|
|
22440
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
22441
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
22442
|
+
}
|
|
22443
|
+
|
|
22444
|
+
interface FlatRateLabelReversalDeleted {
|
|
22445
|
+
readonly discriminator: 'flat_rate_label_reversal_deleted';
|
|
22446
|
+
readonly event_id: string;
|
|
22447
|
+
readonly timestamp: string;
|
|
22448
|
+
readonly organization: string;
|
|
22449
|
+
readonly id: string;
|
|
22450
|
+
}
|
|
22451
|
+
|
|
22452
|
+
interface FlatRateLabelReversalUpserted {
|
|
22453
|
+
readonly discriminator: 'flat_rate_label_reversal_upserted';
|
|
22454
|
+
readonly event_id: string;
|
|
22455
|
+
readonly timestamp: string;
|
|
22456
|
+
readonly organization: string;
|
|
22457
|
+
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
22458
|
+
}
|
|
22459
|
+
|
|
22331
22460
|
interface FlatRateLabelTransaction {
|
|
22332
22461
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
22333
22462
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -23725,11 +23854,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23725
23854
|
readonly constructions: Record<string, string[]>;
|
|
23726
23855
|
}
|
|
23727
23856
|
|
|
23728
|
-
interface LabelCancellationError {
|
|
23729
|
-
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
23730
|
-
readonly messages: string[];
|
|
23731
|
-
}
|
|
23732
|
-
|
|
23733
23857
|
interface LabelCreationJob {
|
|
23734
23858
|
readonly id: string;
|
|
23735
23859
|
readonly reference_id: string;
|
|
@@ -24202,6 +24326,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24202
24326
|
readonly applied: io.flow.internal.v0.models.LoyaltyProgramReward[];
|
|
24203
24327
|
}
|
|
24204
24328
|
|
|
24329
|
+
interface MaheshItem {
|
|
24330
|
+
readonly id: string;
|
|
24331
|
+
readonly number: string;
|
|
24332
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24333
|
+
readonly description?: string;
|
|
24334
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
24335
|
+
readonly added_on: string;
|
|
24336
|
+
}
|
|
24337
|
+
|
|
24338
|
+
interface MaheshItemForm {
|
|
24339
|
+
readonly number: string;
|
|
24340
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24341
|
+
readonly description?: string;
|
|
24342
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
24343
|
+
readonly added_on: string;
|
|
24344
|
+
}
|
|
24345
|
+
|
|
24205
24346
|
interface MainTransaction {
|
|
24206
24347
|
readonly id: string;
|
|
24207
24348
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -24507,6 +24648,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24507
24648
|
readonly freight: number;
|
|
24508
24649
|
readonly base_amount?: number;
|
|
24509
24650
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
24651
|
+
readonly freight_guaranteed?: number;
|
|
24652
|
+
readonly freight_non_guaranteed?: number;
|
|
24510
24653
|
readonly total: number;
|
|
24511
24654
|
readonly tax_refund?: number;
|
|
24512
24655
|
readonly tax_reversal?: number;
|
|
@@ -26188,6 +26331,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26188
26331
|
readonly relative_ranking: number;
|
|
26189
26332
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26190
26333
|
readonly fingerprint: string;
|
|
26334
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26191
26335
|
}
|
|
26192
26336
|
|
|
26193
26337
|
interface PreonboardingClassificationResult {
|
|
@@ -26199,14 +26343,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26199
26343
|
readonly probability?: number;
|
|
26200
26344
|
readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
26201
26345
|
readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
26346
|
+
readonly model_id?: string;
|
|
26202
26347
|
}
|
|
26203
26348
|
|
|
26204
26349
|
interface PreonboardingMerchant {
|
|
26350
|
+
readonly id: string;
|
|
26205
26351
|
readonly merchant_id: string;
|
|
26206
26352
|
readonly channel: string;
|
|
26207
26353
|
readonly catalog_size: number;
|
|
26208
26354
|
readonly processed_product_count: number;
|
|
26209
26355
|
readonly last_request: string;
|
|
26356
|
+
readonly updated_by_user_id: string;
|
|
26357
|
+
}
|
|
26358
|
+
|
|
26359
|
+
interface PreonboardingMerchantDeleted {
|
|
26360
|
+
readonly discriminator: 'preonboarding_merchant_deleted';
|
|
26361
|
+
readonly event_id: string;
|
|
26362
|
+
readonly timestamp: string;
|
|
26363
|
+
readonly id: string;
|
|
26364
|
+
}
|
|
26365
|
+
|
|
26366
|
+
interface PreonboardingMerchantUpserted {
|
|
26367
|
+
readonly discriminator: 'preonboarding_merchant_upserted';
|
|
26368
|
+
readonly event_id: string;
|
|
26369
|
+
readonly timestamp: string;
|
|
26370
|
+
readonly preonboarding_merchant: io.flow.internal.v0.models.PreonboardingMerchant;
|
|
26210
26371
|
}
|
|
26211
26372
|
|
|
26212
26373
|
interface PreonboardingSellabilityResult {
|
|
@@ -26226,6 +26387,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26226
26387
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
26227
26388
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26228
26389
|
readonly fingerprint: string;
|
|
26390
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26229
26391
|
}
|
|
26230
26392
|
|
|
26231
26393
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -27002,6 +27164,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27002
27164
|
readonly added_on: string;
|
|
27003
27165
|
}
|
|
27004
27166
|
|
|
27167
|
+
interface RaveenaItemDeleted {
|
|
27168
|
+
readonly discriminator: 'raveena_item_deleted';
|
|
27169
|
+
readonly event_id: string;
|
|
27170
|
+
readonly timestamp: string;
|
|
27171
|
+
readonly id: string;
|
|
27172
|
+
}
|
|
27173
|
+
|
|
27005
27174
|
interface RaveenaItemForm {
|
|
27006
27175
|
readonly number: string;
|
|
27007
27176
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -27010,6 +27179,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27010
27179
|
readonly added_on: string;
|
|
27011
27180
|
}
|
|
27012
27181
|
|
|
27182
|
+
interface RaveenaItemUpserted {
|
|
27183
|
+
readonly discriminator: 'raveena_item_upserted';
|
|
27184
|
+
readonly event_id: string;
|
|
27185
|
+
readonly timestamp: string;
|
|
27186
|
+
readonly item: io.flow.internal.v0.models.RaveenaItem;
|
|
27187
|
+
}
|
|
27188
|
+
|
|
27013
27189
|
interface RecordReference {
|
|
27014
27190
|
readonly id: string;
|
|
27015
27191
|
}
|
|
@@ -27076,6 +27252,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27076
27252
|
readonly type: string;
|
|
27077
27253
|
readonly routing_number: string;
|
|
27078
27254
|
readonly account_number: string;
|
|
27255
|
+
readonly bank_name?: string;
|
|
27079
27256
|
}
|
|
27080
27257
|
|
|
27081
27258
|
interface ReportFile {
|
|
@@ -27322,6 +27499,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27322
27499
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27323
27500
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27324
27501
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
27502
|
+
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27503
|
+
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27325
27504
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27326
27505
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27327
27506
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -27799,6 +27978,75 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27799
27978
|
readonly pending_classification_count: number;
|
|
27800
27979
|
}
|
|
27801
27980
|
|
|
27981
|
+
interface RestrictionsAthenaDailyopsFs {
|
|
27982
|
+
readonly id: string;
|
|
27983
|
+
readonly report_date: string;
|
|
27984
|
+
readonly num_products_with_fs_result?: number;
|
|
27985
|
+
readonly num_products_sellable_somewhere_by_fs?: number;
|
|
27986
|
+
readonly num_products_restricted_somewhere_by_fs?: number;
|
|
27987
|
+
readonly num_products_with_false_allows_by_fs?: number;
|
|
27988
|
+
readonly num_products_with_false_restricts_by_fs?: number;
|
|
27989
|
+
readonly daily_num_products_with_fs_result?: number;
|
|
27990
|
+
readonly daily_num_products_sellable_somewhere_by_fs?: number;
|
|
27991
|
+
readonly daily_num_products_restricted_somewhere_by_fs?: number;
|
|
27992
|
+
readonly daily_num_products_with_false_allows_by_fs?: number;
|
|
27993
|
+
readonly daily_num_products_with_false_restricts_by_fs?: number;
|
|
27994
|
+
}
|
|
27995
|
+
|
|
27996
|
+
interface RestrictionsAthenaDailyopsFsDeleted {
|
|
27997
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_deleted';
|
|
27998
|
+
readonly event_id: string;
|
|
27999
|
+
readonly timestamp: string;
|
|
28000
|
+
readonly id: string;
|
|
28001
|
+
}
|
|
28002
|
+
|
|
28003
|
+
interface RestrictionsAthenaDailyopsFsUpserted {
|
|
28004
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_upserted';
|
|
28005
|
+
readonly event_id: string;
|
|
28006
|
+
readonly timestamp: string;
|
|
28007
|
+
readonly restrictions_athena_dailyops_fs: io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
28008
|
+
}
|
|
28009
|
+
|
|
28010
|
+
interface RestrictionsAthenaDailyopsPcPv {
|
|
28011
|
+
readonly id: string;
|
|
28012
|
+
readonly report_date: string;
|
|
28013
|
+
readonly intent_level: io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
28014
|
+
readonly num_orgs_setup_complete_with_pvs: number;
|
|
28015
|
+
readonly num_products_setup_complete_with_pvs: number;
|
|
28016
|
+
readonly num_orgs_transacting_with_pvs: number;
|
|
28017
|
+
readonly num_products_transacting_with_pvs: number;
|
|
28018
|
+
readonly num_orgs_setup_complete_with_pcs: number;
|
|
28019
|
+
readonly num_products_setup_complete_with_pcs: number;
|
|
28020
|
+
readonly num_orgs_transacting_with_pcs: number;
|
|
28021
|
+
readonly num_products_transacting_with_pcs: number;
|
|
28022
|
+
readonly oldest_pv_product_date_setup_complete?: string;
|
|
28023
|
+
readonly oldest_pv_product_date_transacting?: string;
|
|
28024
|
+
readonly oldest_pc_product_date_setup_complete?: string;
|
|
28025
|
+
readonly oldest_pc_product_date_transacting?: string;
|
|
28026
|
+
readonly oldest_insufficient_details_pv_active?: string;
|
|
28027
|
+
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
28028
|
+
readonly num_pv_inflow_net_new: number;
|
|
28029
|
+
readonly num_pv_outflow_human_decisions: number;
|
|
28030
|
+
readonly num_pv_outflow_auto_review_decisions: number;
|
|
28031
|
+
readonly num_pv_outflow_side_effect_decisions: number;
|
|
28032
|
+
readonly num_pending_decisions_transacting: number;
|
|
28033
|
+
readonly pv_decisions_setup_complete: number;
|
|
28034
|
+
}
|
|
28035
|
+
|
|
28036
|
+
interface RestrictionsAthenaDailyopsPcPvDeleted {
|
|
28037
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_deleted';
|
|
28038
|
+
readonly event_id: string;
|
|
28039
|
+
readonly timestamp: string;
|
|
28040
|
+
readonly id: string;
|
|
28041
|
+
}
|
|
28042
|
+
|
|
28043
|
+
interface RestrictionsAthenaDailyopsPcPvUpserted {
|
|
28044
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_upserted';
|
|
28045
|
+
readonly event_id: string;
|
|
28046
|
+
readonly timestamp: string;
|
|
28047
|
+
readonly restrictions_athena_dailyops_pc_pv: io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
28048
|
+
}
|
|
28049
|
+
|
|
27802
28050
|
interface RestrictionsDailyops {
|
|
27803
28051
|
readonly id: string;
|
|
27804
28052
|
readonly report_date: string;
|
|
@@ -30734,6 +30982,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30734
30982
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted
|
|
30735
30983
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted
|
|
30736
30984
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceFailed
|
|
30985
|
+
| io.flow.internal.v0.models.ChannelShopStatisticsUpserted
|
|
30986
|
+
| io.flow.internal.v0.models.ChannelShopStatisticsDeleted
|
|
30737
30987
|
| io.flow.internal.v0.models.CommercialInvoiceInternalUpserted
|
|
30738
30988
|
| io.flow.internal.v0.models.CommercialInvoiceInternalDeleted
|
|
30739
30989
|
| io.flow.internal.v0.models.InternalChannelRateDeleted
|
|
@@ -30793,6 +31043,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30793
31043
|
| io.flow.internal.v0.models.ShippingCostDeleted
|
|
30794
31044
|
| io.flow.internal.v0.models.MorCostUpserted
|
|
30795
31045
|
| io.flow.internal.v0.models.MorCostDeleted
|
|
31046
|
+
| io.flow.internal.v0.models.FlatRateLabelReversalUpserted
|
|
31047
|
+
| io.flow.internal.v0.models.FlatRateLabelReversalDeleted
|
|
30796
31048
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
30797
31049
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
30798
31050
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -30849,6 +31101,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30849
31101
|
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
30850
31102
|
| io.flow.internal.v0.models.LabelCreationJobUpserted
|
|
30851
31103
|
| io.flow.internal.v0.models.LabelCreationJobDeleted
|
|
31104
|
+
| io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted
|
|
31105
|
+
| io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted
|
|
30852
31106
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
30853
31107
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
30854
31108
|
| io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
|
|
@@ -30937,12 +31191,18 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30937
31191
|
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
30938
31192
|
| io.flow.internal.v0.models.RestrictionsDailyopsUpserted
|
|
30939
31193
|
| io.flow.internal.v0.models.RestrictionsDailyopsDeleted
|
|
31194
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted
|
|
31195
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted
|
|
31196
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted
|
|
31197
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted
|
|
30940
31198
|
| io.flow.internal.v0.models.RestrictionRuleUpserted
|
|
30941
31199
|
| io.flow.internal.v0.models.RestrictionRuleDeleted
|
|
30942
31200
|
| io.flow.internal.v0.models.RestrictionRuleEffectUpserted
|
|
30943
31201
|
| io.flow.internal.v0.models.RestrictionRuleEffectDeleted
|
|
30944
31202
|
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted
|
|
30945
31203
|
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted
|
|
31204
|
+
| io.flow.internal.v0.models.PreonboardingMerchantUpserted
|
|
31205
|
+
| io.flow.internal.v0.models.PreonboardingMerchantDeleted
|
|
30946
31206
|
| io.flow.internal.v0.models.ShopifyHs10CodesUpserted
|
|
30947
31207
|
| io.flow.internal.v0.models.ShopifyHs10CodesDeleted
|
|
30948
31208
|
| io.flow.internal.v0.models.ShopifyMarketsOrderUpserted
|
|
@@ -31020,6 +31280,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31020
31280
|
| io.flow.internal.v0.models.ChenglinItemDeleted
|
|
31021
31281
|
| io.flow.internal.v0.models.BojanaItemUpserted
|
|
31022
31282
|
| io.flow.internal.v0.models.BojanaItemDeleted
|
|
31283
|
+
| io.flow.internal.v0.models.RaveenaItemUpserted
|
|
31284
|
+
| io.flow.internal.v0.models.RaveenaItemDeleted
|
|
31023
31285
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
31024
31286
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
31025
31287
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -31299,6 +31561,14 @@ export type AccountingPendingOrderMetadata =
|
|
|
31299
31561
|
export type AccountingReturnMetadata =
|
|
31300
31562
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31301
31563
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
31564
|
+
export type AdaptiveShippingOrderGuarantee =
|
|
31565
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
31566
|
+
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
31567
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
31568
|
+
export type AdaptiveShippingOrderGuaranteeState =
|
|
31569
|
+
io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
31570
|
+
export type AdaptiveShippingOrderGuaranteeUpserted =
|
|
31571
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
31302
31572
|
export type AdaptiveShippingRate =
|
|
31303
31573
|
io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
31304
31574
|
export type AdaptiveShippingRateDeleted =
|
|
@@ -31422,6 +31692,8 @@ export type ApplePayAuthorizationPayload =
|
|
|
31422
31692
|
export type ApplicablePreferentialRate =
|
|
31423
31693
|
io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
31424
31694
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
31695
|
+
export type AthenaDailyopsIntentLevel =
|
|
31696
|
+
io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
31425
31697
|
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
31426
31698
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
31427
31699
|
export type AttributeRule = io.flow.internal.v0.models.AttributeRule;
|
|
@@ -31820,6 +32092,12 @@ export type ChannelRateMetadataRate =
|
|
|
31820
32092
|
export type ChannelService = io.flow.internal.v0.enums.ChannelService;
|
|
31821
32093
|
export type ChannelShop = io.flow.internal.v0.models.ChannelShop;
|
|
31822
32094
|
export type ChannelShopForm = io.flow.internal.v0.models.ChannelShopForm;
|
|
32095
|
+
export type ChannelShopStatistics =
|
|
32096
|
+
io.flow.internal.v0.models.ChannelShopStatistics;
|
|
32097
|
+
export type ChannelShopStatisticsDeleted =
|
|
32098
|
+
io.flow.internal.v0.models.ChannelShopStatisticsDeleted;
|
|
32099
|
+
export type ChannelShopStatisticsUpserted =
|
|
32100
|
+
io.flow.internal.v0.models.ChannelShopStatisticsUpserted;
|
|
31823
32101
|
export type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
31824
32102
|
export type ChannelTransactionDeleted =
|
|
31825
32103
|
io.flow.internal.v0.models.ChannelTransactionDeleted;
|
|
@@ -32328,6 +32606,12 @@ export type FiservMerchantModificationForm =
|
|
|
32328
32606
|
export type FiservMerchantPutForm =
|
|
32329
32607
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
32330
32608
|
export type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
32609
|
+
export type FlatRateLabelReversal =
|
|
32610
|
+
io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
32611
|
+
export type FlatRateLabelReversalDeleted =
|
|
32612
|
+
io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
32613
|
+
export type FlatRateLabelReversalUpserted =
|
|
32614
|
+
io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
32331
32615
|
export type FlatRateLabelTransaction =
|
|
32332
32616
|
io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
32333
32617
|
export type FlatRateLabelTransactionType =
|
|
@@ -32671,10 +32955,6 @@ export type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
|
32671
32955
|
export type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
32672
32956
|
export type LabelBillingStrategy =
|
|
32673
32957
|
io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
32674
|
-
export type LabelCancellationError =
|
|
32675
|
-
io.flow.internal.v0.models.LabelCancellationError;
|
|
32676
|
-
export type LabelCancellationErrorCode =
|
|
32677
|
-
io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
32678
32958
|
export type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
32679
32959
|
export type LabelCreationJobDeleted =
|
|
32680
32960
|
io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
@@ -32778,6 +33058,9 @@ export type LoyaltyProgramReward =
|
|
|
32778
33058
|
io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
32779
33059
|
export type LoyaltyProgramRewards =
|
|
32780
33060
|
io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
33061
|
+
export type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
33062
|
+
export type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
33063
|
+
export type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
32781
33064
|
export type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
32782
33065
|
export type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
32783
33066
|
export type MainTransactionDeleted =
|
|
@@ -33314,6 +33597,10 @@ export type PreonboardingClassificationType =
|
|
|
33314
33597
|
io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
33315
33598
|
export type PreonboardingMerchant =
|
|
33316
33599
|
io.flow.internal.v0.models.PreonboardingMerchant;
|
|
33600
|
+
export type PreonboardingMerchantDeleted =
|
|
33601
|
+
io.flow.internal.v0.models.PreonboardingMerchantDeleted;
|
|
33602
|
+
export type PreonboardingMerchantUpserted =
|
|
33603
|
+
io.flow.internal.v0.models.PreonboardingMerchantUpserted;
|
|
33317
33604
|
export type PreonboardingRequestStatus =
|
|
33318
33605
|
io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
33319
33606
|
export type PreonboardingSellabilityResult =
|
|
@@ -33516,8 +33803,11 @@ export type RatecardServiceFeesOverrideForm =
|
|
|
33516
33803
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
33517
33804
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
33518
33805
|
export type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
33806
|
+
export type RaveenaItemDeleted = io.flow.internal.v0.models.RaveenaItemDeleted;
|
|
33519
33807
|
export type RaveenaItemForm = io.flow.internal.v0.models.RaveenaItemForm;
|
|
33520
33808
|
export type RaveenaItemType = io.flow.internal.v0.enums.RaveenaItemType;
|
|
33809
|
+
export type RaveenaItemUpserted =
|
|
33810
|
+
io.flow.internal.v0.models.RaveenaItemUpserted;
|
|
33521
33811
|
export type RecordReference = io.flow.internal.v0.models.RecordReference;
|
|
33522
33812
|
export type Redirect = io.flow.internal.v0.models.Redirect;
|
|
33523
33813
|
export type RedirectActionCompleted =
|
|
@@ -33720,6 +34010,18 @@ export type RestrictionStateReviewStatus =
|
|
|
33720
34010
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
33721
34011
|
export type RestrictionSummaryCounts =
|
|
33722
34012
|
io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
34013
|
+
export type RestrictionsAthenaDailyopsFs =
|
|
34014
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
34015
|
+
export type RestrictionsAthenaDailyopsFsDeleted =
|
|
34016
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted;
|
|
34017
|
+
export type RestrictionsAthenaDailyopsFsUpserted =
|
|
34018
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted;
|
|
34019
|
+
export type RestrictionsAthenaDailyopsPcPv =
|
|
34020
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
34021
|
+
export type RestrictionsAthenaDailyopsPcPvDeleted =
|
|
34022
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted;
|
|
34023
|
+
export type RestrictionsAthenaDailyopsPcPvUpserted =
|
|
34024
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted;
|
|
33723
34025
|
export type RestrictionsDailyops =
|
|
33724
34026
|
io.flow.internal.v0.models.RestrictionsDailyops;
|
|
33725
34027
|
export type RestrictionsDailyopsDeleted =
|