@flowio/types 11.24.137 → 11.24.139
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 +424 -85
- package/dist/api.d.ts +98 -46
- package/package.json +1 -1
- package/src/api-internal.ts +544 -95
- package/src/api.ts +126 -51
package/src/api.ts
CHANGED
|
@@ -3148,6 +3148,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
3148
3148
|
| 'unsupported_order_edit'
|
|
3149
3149
|
| 'order_allocation_duties_mismatch'
|
|
3150
3150
|
| 'order_missing'
|
|
3151
|
+
| 'order_cancelled'
|
|
3151
3152
|
| 'organization_deactivated';
|
|
3152
3153
|
type ChannelOrderAcceptanceStatus =
|
|
3153
3154
|
| 'accepted'
|
|
@@ -3648,6 +3649,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
3648
3649
|
readonly created_at?: string;
|
|
3649
3650
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
3650
3651
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
3652
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
3651
3653
|
}
|
|
3652
3654
|
|
|
3653
3655
|
interface OrganizationDefaults {
|
|
@@ -3661,6 +3663,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
3661
3663
|
interface OrganizationReference {
|
|
3662
3664
|
readonly discriminator: 'organization_reference';
|
|
3663
3665
|
readonly id: string;
|
|
3666
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
3664
3667
|
}
|
|
3665
3668
|
|
|
3666
3669
|
interface OrganizationSummary {
|
|
@@ -3998,6 +4001,7 @@ declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
|
3998
4001
|
type BojanaItemType = 'physical' | 'digital';
|
|
3999
4002
|
type ChenglinItemType = 'physical' | 'digital';
|
|
4000
4003
|
type GabrielItemType = 'physical' | 'digital';
|
|
4004
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
4001
4005
|
type RaveenaItemType = 'physical' | 'digital';
|
|
4002
4006
|
}
|
|
4003
4007
|
|
|
@@ -4070,6 +4074,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4070
4074
|
readonly added_on: string;
|
|
4071
4075
|
}
|
|
4072
4076
|
|
|
4077
|
+
interface MaheshItem {
|
|
4078
|
+
readonly id: string;
|
|
4079
|
+
readonly number: string;
|
|
4080
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
4081
|
+
readonly description?: string;
|
|
4082
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
4083
|
+
readonly added_on: string;
|
|
4084
|
+
}
|
|
4085
|
+
|
|
4086
|
+
interface MaheshItemForm {
|
|
4087
|
+
readonly number: string;
|
|
4088
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
4089
|
+
readonly description?: string;
|
|
4090
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
4091
|
+
readonly added_on: string;
|
|
4092
|
+
}
|
|
4093
|
+
|
|
4073
4094
|
interface RaveenaItem {
|
|
4074
4095
|
readonly id: string;
|
|
4075
4096
|
readonly number: string;
|
|
@@ -4302,6 +4323,19 @@ declare namespace io.flow.v0.enums {
|
|
|
4302
4323
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
4303
4324
|
type CostEstimateSource = 'flow' | 'channel';
|
|
4304
4325
|
type CountryPickerSource = 'experience' | 'destination';
|
|
4326
|
+
type CpscAttribute =
|
|
4327
|
+
| 'certification_id'
|
|
4328
|
+
| 'citation_codes'
|
|
4329
|
+
| 'manufactured_date'
|
|
4330
|
+
| 'manufactured_location'
|
|
4331
|
+
| 'product_test_date'
|
|
4332
|
+
| 'test_lab_name'
|
|
4333
|
+
| 'point_of_contact'
|
|
4334
|
+
| 'certification_version'
|
|
4335
|
+
| 'certification_product_id'
|
|
4336
|
+
| 'certificate_type'
|
|
4337
|
+
| 'lab_type'
|
|
4338
|
+
| 'taxonomy_reference';
|
|
4305
4339
|
type CreditPaymentErrorCode =
|
|
4306
4340
|
| 'generic_error'
|
|
4307
4341
|
| 'invalid_order_number'
|
|
@@ -5028,6 +5062,8 @@ declare namespace io.flow.v0.enums {
|
|
|
5028
5062
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
5029
5063
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
5030
5064
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
5065
|
+
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
5066
|
+
type RestrictionDecisionReason = 'manual_dispute';
|
|
5031
5067
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
5032
5068
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
5033
5069
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
@@ -5111,7 +5147,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5111
5147
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
5112
5148
|
type SortDirection = 'ascending' | 'descending';
|
|
5113
5149
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
5114
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
5150
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
5115
5151
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
5116
5152
|
type Strategy = 'range' | 'from' | 'to';
|
|
5117
5153
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -5270,7 +5306,8 @@ declare namespace io.flow.v0.enums {
|
|
|
5270
5306
|
| 'b2b_tax_refund'
|
|
5271
5307
|
| 'b2b_fee_mor_tax'
|
|
5272
5308
|
| 'b2b_fee_shipping_tax'
|
|
5273
|
-
| 'flat_rate_label'
|
|
5309
|
+
| 'flat_rate_label'
|
|
5310
|
+
| 'flat_rate_label_subsidy';
|
|
5274
5311
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
5275
5312
|
type TransferType =
|
|
5276
5313
|
| 'payout_to_merchant'
|
|
@@ -6113,6 +6150,42 @@ declare namespace io.flow.v0.models {
|
|
|
6113
6150
|
readonly b2b_credit_memo: io.flow.v0.models.B2BCreditMemo;
|
|
6114
6151
|
}
|
|
6115
6152
|
|
|
6153
|
+
interface B2BCreditNote {
|
|
6154
|
+
readonly id: string;
|
|
6155
|
+
readonly number: string;
|
|
6156
|
+
readonly status: io.flow.v0.enums.ConsumerInvoiceStatus;
|
|
6157
|
+
readonly date: string;
|
|
6158
|
+
readonly key: string;
|
|
6159
|
+
readonly debit_note: io.flow.v0.models.B2BDebitNoteReference;
|
|
6160
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
6161
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
6162
|
+
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
6163
|
+
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
6164
|
+
readonly attributes: Record<string, string>;
|
|
6165
|
+
readonly voids_b2b_debit_note?: boolean;
|
|
6166
|
+
}
|
|
6167
|
+
|
|
6168
|
+
interface B2BDebitNote {
|
|
6169
|
+
readonly id: string;
|
|
6170
|
+
readonly number: string;
|
|
6171
|
+
readonly buyer: io.flow.v0.models.MerchantOfRecordEntity;
|
|
6172
|
+
readonly seller: io.flow.v0.models.MerchantOfRecordEntity;
|
|
6173
|
+
readonly status: io.flow.v0.enums.ConsumerInvoiceStatus;
|
|
6174
|
+
readonly date: string;
|
|
6175
|
+
readonly key: string;
|
|
6176
|
+
readonly order: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
6177
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
6178
|
+
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
6179
|
+
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
6180
|
+
readonly attributes: Record<string, string>;
|
|
6181
|
+
}
|
|
6182
|
+
|
|
6183
|
+
interface B2BDebitNoteReference {
|
|
6184
|
+
readonly id: string;
|
|
6185
|
+
readonly key: string;
|
|
6186
|
+
readonly number: string;
|
|
6187
|
+
}
|
|
6188
|
+
|
|
6116
6189
|
interface B2BInvoice {
|
|
6117
6190
|
readonly id: string;
|
|
6118
6191
|
readonly number: string;
|
|
@@ -6193,18 +6266,6 @@ declare namespace io.flow.v0.models {
|
|
|
6193
6266
|
|
|
6194
6267
|
interface BankAccountInfoKor {
|
|
6195
6268
|
readonly discriminator: 'kor';
|
|
6196
|
-
readonly name?: string;
|
|
6197
|
-
readonly address?: io.flow.v0.models.Address;
|
|
6198
|
-
readonly phone?: string;
|
|
6199
|
-
readonly email?: string;
|
|
6200
|
-
readonly bank_account_number: string;
|
|
6201
|
-
readonly bank_routing_number?: string;
|
|
6202
|
-
readonly bank_name?: string;
|
|
6203
|
-
readonly bank_address?: io.flow.v0.models.Address;
|
|
6204
|
-
}
|
|
6205
|
-
|
|
6206
|
-
interface BankAccountInfoKorV2 {
|
|
6207
|
-
readonly discriminator: 'kor_v2';
|
|
6208
6269
|
readonly name: string;
|
|
6209
6270
|
readonly bank_account_number: string;
|
|
6210
6271
|
readonly bank_routing_number: string;
|
|
@@ -9862,6 +9923,7 @@ declare namespace io.flow.v0.models {
|
|
|
9862
9923
|
interface LaneSummary {
|
|
9863
9924
|
readonly id: string;
|
|
9864
9925
|
readonly ratecard: io.flow.v0.models.RatecardSummary;
|
|
9926
|
+
readonly dim_factor: number;
|
|
9865
9927
|
}
|
|
9866
9928
|
|
|
9867
9929
|
interface Language {
|
|
@@ -10993,6 +11055,11 @@ declare namespace io.flow.v0.models {
|
|
|
10993
11055
|
readonly deactivated_at?: string;
|
|
10994
11056
|
}
|
|
10995
11057
|
|
|
11058
|
+
interface OrderStateRejectionReasonPaymentFraud {
|
|
11059
|
+
readonly discriminator: 'order_state_rejection_reason_payment_fraud';
|
|
11060
|
+
readonly payment_request_id: string;
|
|
11061
|
+
}
|
|
11062
|
+
|
|
10996
11063
|
interface OrderStateRejectionReasonRestrictedItem {
|
|
10997
11064
|
readonly discriminator: 'order_state_rejection_reason_restricted_item';
|
|
10998
11065
|
readonly item_numbers: string[];
|
|
@@ -11105,6 +11172,7 @@ declare namespace io.flow.v0.models {
|
|
|
11105
11172
|
readonly created_at?: string;
|
|
11106
11173
|
readonly status?: io.flow.v0.enums.OrganizationStatus;
|
|
11107
11174
|
readonly type?: io.flow.v0.enums.OrganizationType;
|
|
11175
|
+
readonly channel?: io.flow.v0.models.ChannelReference;
|
|
11108
11176
|
}
|
|
11109
11177
|
|
|
11110
11178
|
interface OrganizationAuthorization {
|
|
@@ -11265,6 +11333,7 @@ declare namespace io.flow.v0.models {
|
|
|
11265
11333
|
interface OrganizationReference {
|
|
11266
11334
|
readonly discriminator: 'organization_reference';
|
|
11267
11335
|
readonly id: string;
|
|
11336
|
+
readonly channel?: io.flow.v0.models.ChannelReference;
|
|
11268
11337
|
}
|
|
11269
11338
|
|
|
11270
11339
|
interface OrganizationSession {
|
|
@@ -11308,6 +11377,7 @@ declare namespace io.flow.v0.models {
|
|
|
11308
11377
|
readonly province?: string;
|
|
11309
11378
|
readonly self_billing_agreement_effective_at: string;
|
|
11310
11379
|
readonly self_billing_agreement_expires_at?: string;
|
|
11380
|
+
readonly legal_name?: string;
|
|
11311
11381
|
}
|
|
11312
11382
|
|
|
11313
11383
|
interface OrganizationToken {
|
|
@@ -12248,6 +12318,11 @@ declare namespace io.flow.v0.models {
|
|
|
12248
12318
|
readonly reason: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
12249
12319
|
}
|
|
12250
12320
|
|
|
12321
|
+
interface PayoutStatusPaid {
|
|
12322
|
+
readonly code: 'paid';
|
|
12323
|
+
readonly timestamp: string;
|
|
12324
|
+
}
|
|
12325
|
+
|
|
12251
12326
|
interface PayoutStatusScheduled {
|
|
12252
12327
|
readonly code: 'scheduled';
|
|
12253
12328
|
readonly placeholder?: string;
|
|
@@ -12933,6 +13008,7 @@ declare namespace io.flow.v0.models {
|
|
|
12933
13008
|
readonly glbe_shipping_method_id?: string;
|
|
12934
13009
|
readonly glbe_proposition_name?: string;
|
|
12935
13010
|
readonly channel_revenue_share_percentage?: number;
|
|
13011
|
+
readonly channel_id?: string;
|
|
12936
13012
|
}
|
|
12937
13013
|
|
|
12938
13014
|
interface RatecardCarrierSummary {
|
|
@@ -13043,6 +13119,7 @@ declare namespace io.flow.v0.models {
|
|
|
13043
13119
|
readonly glbe_shipping_method_id?: string;
|
|
13044
13120
|
readonly glbe_proposition_name?: string;
|
|
13045
13121
|
readonly channel_revenue_share_percentage?: number;
|
|
13122
|
+
readonly channel_id?: string;
|
|
13046
13123
|
readonly data?: io.flow.v0.models.RatecardData;
|
|
13047
13124
|
}
|
|
13048
13125
|
|
|
@@ -13086,20 +13163,6 @@ declare namespace io.flow.v0.models {
|
|
|
13086
13163
|
readonly distance_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
13087
13164
|
}
|
|
13088
13165
|
|
|
13089
|
-
interface RatecardLaneImportForm {
|
|
13090
|
-
readonly ratecard_owner: io.flow.v0.enums.RatecardOwner;
|
|
13091
|
-
readonly service: string;
|
|
13092
|
-
readonly currency: string;
|
|
13093
|
-
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
13094
|
-
readonly origin: io.flow.v0.models.Zone;
|
|
13095
|
-
readonly destination: io.flow.v0.models.Zone;
|
|
13096
|
-
readonly shipment_window: io.flow.v0.models.ShipmentWindow;
|
|
13097
|
-
readonly dim_factor: number;
|
|
13098
|
-
readonly weight_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
13099
|
-
readonly distance_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
13100
|
-
readonly rates: io.flow.v0.models.RatecardRateForm[];
|
|
13101
|
-
}
|
|
13102
|
-
|
|
13103
13166
|
interface RatecardLaneUpserted {
|
|
13104
13167
|
readonly discriminator: 'ratecard_lane_upserted';
|
|
13105
13168
|
readonly event_id: string;
|
|
@@ -13115,14 +13178,7 @@ declare namespace io.flow.v0.models {
|
|
|
13115
13178
|
readonly ratecard_lane: io.flow.v0.models.RatecardLane;
|
|
13116
13179
|
}
|
|
13117
13180
|
|
|
13118
|
-
interface RatecardLanesImportRequestData {
|
|
13119
|
-
readonly id: string;
|
|
13120
|
-
readonly source_url: string;
|
|
13121
|
-
readonly filename?: string;
|
|
13122
|
-
}
|
|
13123
|
-
|
|
13124
13181
|
interface RatecardRate {
|
|
13125
|
-
readonly id: string;
|
|
13126
13182
|
readonly amount: number;
|
|
13127
13183
|
readonly weight: number;
|
|
13128
13184
|
}
|
|
@@ -13132,13 +13188,6 @@ declare namespace io.flow.v0.models {
|
|
|
13132
13188
|
readonly weight: number;
|
|
13133
13189
|
}
|
|
13134
13190
|
|
|
13135
|
-
interface RatecardRateVersion {
|
|
13136
|
-
readonly id: string;
|
|
13137
|
-
readonly timestamp: string;
|
|
13138
|
-
readonly type: io.flow.v0.enums.ChangeType;
|
|
13139
|
-
readonly ratecard_rate: io.flow.v0.models.RatecardRate;
|
|
13140
|
-
}
|
|
13141
|
-
|
|
13142
13191
|
interface RatecardReference {
|
|
13143
13192
|
readonly id: string;
|
|
13144
13193
|
}
|
|
@@ -13418,6 +13467,18 @@ declare namespace io.flow.v0.models {
|
|
|
13418
13467
|
readonly days_of_week: io.flow.v0.enums.DayOfWeek[];
|
|
13419
13468
|
}
|
|
13420
13469
|
|
|
13470
|
+
interface RestrictionDecisionsForm {
|
|
13471
|
+
readonly organization_id: string;
|
|
13472
|
+
readonly rule_decisions: io.flow.v0.models.RestrictionRuleDecisionForm[];
|
|
13473
|
+
}
|
|
13474
|
+
|
|
13475
|
+
interface RestrictionRuleDecisionForm {
|
|
13476
|
+
readonly product_id: string;
|
|
13477
|
+
readonly reason_code: string;
|
|
13478
|
+
readonly decision: io.flow.v0.enums.RestrictionDecision;
|
|
13479
|
+
readonly decision_reason: io.flow.v0.enums.RestrictionDecisionReason;
|
|
13480
|
+
}
|
|
13481
|
+
|
|
13421
13482
|
interface Return {
|
|
13422
13483
|
readonly id: string;
|
|
13423
13484
|
readonly key: string;
|
|
@@ -13726,6 +13787,7 @@ declare namespace io.flow.v0.models {
|
|
|
13726
13787
|
readonly price: io.flow.v0.models.Money;
|
|
13727
13788
|
readonly description: string;
|
|
13728
13789
|
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
13790
|
+
readonly inferred_taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
13729
13791
|
readonly mode: io.flow.v0.enums.SellabilityScreeningMode;
|
|
13730
13792
|
readonly catalog_size?: number;
|
|
13731
13793
|
readonly relative_ranking?: number;
|
|
@@ -14028,6 +14090,7 @@ declare namespace io.flow.v0.models {
|
|
|
14028
14090
|
readonly id?: string;
|
|
14029
14091
|
readonly ratecard: io.flow.v0.models.ShippingLabelRatecardSummary;
|
|
14030
14092
|
readonly weight_break?: number;
|
|
14093
|
+
readonly dim_factor?: number;
|
|
14031
14094
|
}
|
|
14032
14095
|
|
|
14033
14096
|
interface ShippingLabelPackage {
|
|
@@ -14889,6 +14952,7 @@ declare namespace io.flow.v0.models {
|
|
|
14889
14952
|
readonly country: string;
|
|
14890
14953
|
readonly tax_code: string;
|
|
14891
14954
|
readonly province?: string;
|
|
14955
|
+
readonly legal_name?: string;
|
|
14892
14956
|
}
|
|
14893
14957
|
|
|
14894
14958
|
interface TaxRegistrationForm {
|
|
@@ -15385,6 +15449,7 @@ declare namespace io.flow.v0.models {
|
|
|
15385
15449
|
readonly request_method?: io.flow.v0.enums.LabelRequestMethod;
|
|
15386
15450
|
readonly carrier: io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
15387
15451
|
readonly revenue_share_percentage?: number;
|
|
15452
|
+
readonly actual?: io.flow.v0.models.TransactionMetadataTrueupData;
|
|
15388
15453
|
}
|
|
15389
15454
|
|
|
15390
15455
|
interface TransactionMetadataShippingLabelCarrier {
|
|
@@ -15841,8 +15906,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15841
15906
|
| io.flow.v0.models.BankAccountInfoGbr
|
|
15842
15907
|
| io.flow.v0.models.BankAccountInfoFra
|
|
15843
15908
|
| io.flow.v0.models.BankAccountInfoIta
|
|
15844
|
-
| io.flow.v0.models.BankAccountInfoKor
|
|
15845
|
-
| io.flow.v0.models.BankAccountInfoKorV2;
|
|
15909
|
+
| io.flow.v0.models.BankAccountInfoKor;
|
|
15846
15910
|
type BrowserActionConfiguration =
|
|
15847
15911
|
io.flow.v0.models.CardBrowserActionConfiguration;
|
|
15848
15912
|
type CardAuthorizationActionResult =
|
|
@@ -16184,7 +16248,8 @@ declare namespace io.flow.v0.unions {
|
|
|
16184
16248
|
| io.flow.v0.models.OrderStateRejectionReasonRestrictedItem
|
|
16185
16249
|
| io.flow.v0.models.OrderStateRejectionReasonDomesticOrder
|
|
16186
16250
|
| io.flow.v0.models.OrderStateRejectionReasonItemsEmpty
|
|
16187
|
-
| io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated
|
|
16251
|
+
| io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated
|
|
16252
|
+
| io.flow.v0.models.OrderStateRejectionReasonPaymentFraud;
|
|
16188
16253
|
type PartnerCenterFee =
|
|
16189
16254
|
| io.flow.v0.models.CommercialInvoiceFee
|
|
16190
16255
|
| io.flow.v0.models.InboundCartonFee
|
|
@@ -16273,7 +16338,8 @@ declare namespace io.flow.v0.unions {
|
|
|
16273
16338
|
type PayoutStatus =
|
|
16274
16339
|
| io.flow.v0.models.PayoutStatusScheduled
|
|
16275
16340
|
| io.flow.v0.models.PayoutStatusSent
|
|
16276
|
-
| io.flow.v0.models.PayoutStatusFailed
|
|
16341
|
+
| io.flow.v0.models.PayoutStatusFailed
|
|
16342
|
+
| io.flow.v0.models.PayoutStatusPaid;
|
|
16277
16343
|
type PriceSource =
|
|
16278
16344
|
| io.flow.v0.models.PriceSourcePriceBook
|
|
16279
16345
|
| io.flow.v0.models.PriceSourceCatalog
|
|
@@ -16585,6 +16651,9 @@ export type AvsCode = io.flow.v0.enums.AvsCode;
|
|
|
16585
16651
|
export type B2BCreditMemo = io.flow.v0.models.B2BCreditMemo;
|
|
16586
16652
|
export type B2BCreditMemoDeleted = io.flow.v0.models.B2BCreditMemoDeleted;
|
|
16587
16653
|
export type B2BCreditMemoUpserted = io.flow.v0.models.B2BCreditMemoUpserted;
|
|
16654
|
+
export type B2BCreditNote = io.flow.v0.models.B2BCreditNote;
|
|
16655
|
+
export type B2BDebitNote = io.flow.v0.models.B2BDebitNote;
|
|
16656
|
+
export type B2BDebitNoteReference = io.flow.v0.models.B2BDebitNoteReference;
|
|
16588
16657
|
export type B2BInvoice = io.flow.v0.models.B2BInvoice;
|
|
16589
16658
|
export type B2BInvoiceDeleted = io.flow.v0.models.B2BInvoiceDeleted;
|
|
16590
16659
|
export type B2BInvoiceReference = io.flow.v0.models.B2BInvoiceReference;
|
|
@@ -16599,7 +16668,6 @@ export type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
|
16599
16668
|
export type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
16600
16669
|
export type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
16601
16670
|
export type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
16602
|
-
export type BankAccountInfoKorV2 = io.flow.v0.models.BankAccountInfoKorV2;
|
|
16603
16671
|
export type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
16604
16672
|
export type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
16605
16673
|
export type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -16849,6 +16917,7 @@ export type CountryPickerSource = io.flow.v0.enums.CountryPickerSource;
|
|
|
16849
16917
|
export type CountryShippingPricing = io.flow.v0.models.CountryShippingPricing;
|
|
16850
16918
|
export type CountryStatus = io.flow.v0.models.CountryStatus;
|
|
16851
16919
|
export type CountryStatusForm = io.flow.v0.models.CountryStatusForm;
|
|
16920
|
+
export type CpscAttribute = io.flow.v0.enums.CpscAttribute;
|
|
16852
16921
|
export type CreditMemo = io.flow.v0.models.CreditMemo;
|
|
16853
16922
|
export type CreditMemoDeleted = io.flow.v0.models.CreditMemoDeleted;
|
|
16854
16923
|
export type CreditMemoForm = io.flow.v0.models.CreditMemoForm;
|
|
@@ -17650,6 +17719,8 @@ export type OrderStateRejectionReasonItemsEmpty =
|
|
|
17650
17719
|
io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
17651
17720
|
export type OrderStateRejectionReasonOrganizationDeactivated =
|
|
17652
17721
|
io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
|
|
17722
|
+
export type OrderStateRejectionReasonPaymentFraud =
|
|
17723
|
+
io.flow.v0.models.OrderStateRejectionReasonPaymentFraud;
|
|
17653
17724
|
export type OrderStateRejectionReasonRestrictedItem =
|
|
17654
17725
|
io.flow.v0.models.OrderStateRejectionReasonRestrictedItem;
|
|
17655
17726
|
export type OrderStateStatus = io.flow.v0.enums.OrderStateStatus;
|
|
@@ -17982,6 +18053,7 @@ export type PayoutReference = io.flow.v0.models.PayoutReference;
|
|
|
17982
18053
|
export type PayoutStatus = io.flow.v0.unions.PayoutStatus;
|
|
17983
18054
|
export type PayoutStatusFailed = io.flow.v0.models.PayoutStatusFailed;
|
|
17984
18055
|
export type PayoutStatusFailureCode = io.flow.v0.enums.PayoutStatusFailureCode;
|
|
18056
|
+
export type PayoutStatusPaid = io.flow.v0.models.PayoutStatusPaid;
|
|
17985
18057
|
export type PayoutStatusScheduled = io.flow.v0.models.PayoutStatusScheduled;
|
|
17986
18058
|
export type PayoutStatusSent = io.flow.v0.models.PayoutStatusSent;
|
|
17987
18059
|
export type PayoutTransaction = io.flow.v0.models.PayoutTransaction;
|
|
@@ -18128,15 +18200,11 @@ export type RatecardForm = io.flow.v0.models.RatecardForm;
|
|
|
18128
18200
|
export type RatecardLane = io.flow.v0.models.RatecardLane;
|
|
18129
18201
|
export type RatecardLaneDeleted = io.flow.v0.models.RatecardLaneDeleted;
|
|
18130
18202
|
export type RatecardLaneForm = io.flow.v0.models.RatecardLaneForm;
|
|
18131
|
-
export type RatecardLaneImportForm = io.flow.v0.models.RatecardLaneImportForm;
|
|
18132
18203
|
export type RatecardLaneUpserted = io.flow.v0.models.RatecardLaneUpserted;
|
|
18133
18204
|
export type RatecardLaneVersion = io.flow.v0.models.RatecardLaneVersion;
|
|
18134
|
-
export type RatecardLanesImportRequestData =
|
|
18135
|
-
io.flow.v0.models.RatecardLanesImportRequestData;
|
|
18136
18205
|
export type RatecardOwner = io.flow.v0.enums.RatecardOwner;
|
|
18137
18206
|
export type RatecardRate = io.flow.v0.models.RatecardRate;
|
|
18138
18207
|
export type RatecardRateForm = io.flow.v0.models.RatecardRateForm;
|
|
18139
|
-
export type RatecardRateVersion = io.flow.v0.models.RatecardRateVersion;
|
|
18140
18208
|
export type RatecardReference = io.flow.v0.models.RatecardReference;
|
|
18141
18209
|
export type RatecardRegionReference = io.flow.v0.models.RatecardRegionReference;
|
|
18142
18210
|
export type RatecardServiceSummary = io.flow.v0.models.RatecardServiceSummary;
|
|
@@ -18187,7 +18255,14 @@ export type RepeatMonthly = io.flow.v0.models.RepeatMonthly;
|
|
|
18187
18255
|
export type RepeatSchedule = io.flow.v0.unions.RepeatSchedule;
|
|
18188
18256
|
export type RepeatWeekly = io.flow.v0.models.RepeatWeekly;
|
|
18189
18257
|
export type RestrictedReviewStatus = io.flow.v0.enums.RestrictedReviewStatus;
|
|
18258
|
+
export type RestrictionDecision = io.flow.v0.enums.RestrictionDecision;
|
|
18259
|
+
export type RestrictionDecisionReason =
|
|
18260
|
+
io.flow.v0.enums.RestrictionDecisionReason;
|
|
18261
|
+
export type RestrictionDecisionsForm =
|
|
18262
|
+
io.flow.v0.models.RestrictionDecisionsForm;
|
|
18190
18263
|
export type RestrictionEnvironment = io.flow.v0.enums.RestrictionEnvironment;
|
|
18264
|
+
export type RestrictionRuleDecisionForm =
|
|
18265
|
+
io.flow.v0.models.RestrictionRuleDecisionForm;
|
|
18191
18266
|
export type Return = io.flow.v0.models.Return;
|
|
18192
18267
|
export type ReturnForm = io.flow.v0.models.ReturnForm;
|
|
18193
18268
|
export type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
|