@flowio/types 11.24.107 → 11.24.108
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 +143 -283
- package/dist/api.d.ts +16 -164
- package/package.json +2 -2
- package/src/api-internal.ts +222 -345
- package/src/api.ts +28 -230
package/src/api.ts
CHANGED
|
@@ -1184,6 +1184,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1184
1184
|
readonly transfer_group?: string;
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
1187
|
+
interface PaymentIntents {
|
|
1188
|
+
readonly object: string;
|
|
1189
|
+
readonly data: io.flow.stripe.v0.models.PaymentIntent[];
|
|
1190
|
+
readonly has_more: boolean;
|
|
1191
|
+
readonly url?: string;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1187
1194
|
interface PaymentMethod {
|
|
1188
1195
|
readonly id: string;
|
|
1189
1196
|
readonly object: string;
|
|
@@ -5726,8 +5733,6 @@ declare namespace io.flow.v0.enums {
|
|
|
5726
5733
|
| 'customer_deleted'
|
|
5727
5734
|
| 'customer_address_book_contact_upserted'
|
|
5728
5735
|
| 'customer_address_book_contact_deleted'
|
|
5729
|
-
| 'email_notification_upserted'
|
|
5730
|
-
| 'email_notification_deleted'
|
|
5731
5736
|
| 'available_promotions_upserted'
|
|
5732
5737
|
| 'available_promotions_deleted'
|
|
5733
5738
|
| 'available_promotions_upserted_v2'
|
|
@@ -5966,7 +5971,6 @@ declare namespace io.flow.v0.enums {
|
|
|
5966
5971
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
5967
5972
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
5968
5973
|
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
5969
|
-
type LevyInclusion = 'tax' | 'duty';
|
|
5970
5974
|
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
5971
5975
|
type LocationErrorCode =
|
|
5972
5976
|
| 'address_required'
|
|
@@ -6390,6 +6394,19 @@ declare namespace io.flow.v0.enums {
|
|
|
6390
6394
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
6391
6395
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
6392
6396
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
6397
|
+
type ShippingLabelErrorCode =
|
|
6398
|
+
| 'generic_error'
|
|
6399
|
+
| 'cancelled_order'
|
|
6400
|
+
| 'carrier_outage'
|
|
6401
|
+
| 'catalog_issue'
|
|
6402
|
+
| 'invalid_destination'
|
|
6403
|
+
| 'invalid_origin'
|
|
6404
|
+
| 'invalid_shipping_parameters'
|
|
6405
|
+
| 'merchant_error'
|
|
6406
|
+
| 'order_not_found'
|
|
6407
|
+
| 'order_processing'
|
|
6408
|
+
| 'restricted_item'
|
|
6409
|
+
| 'unsupported_lane';
|
|
6393
6410
|
type ShopifyGrant =
|
|
6394
6411
|
| 'customer'
|
|
6395
6412
|
| 'discount'
|
|
@@ -6412,28 +6429,6 @@ declare namespace io.flow.v0.enums {
|
|
|
6412
6429
|
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
6413
6430
|
type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
|
|
6414
6431
|
type TaxApplicability = 'none' | 'all';
|
|
6415
|
-
type TaxDutyCalculatorValidationErrorCode =
|
|
6416
|
-
| 'generic_error'
|
|
6417
|
-
| 'destination_country_not_defined'
|
|
6418
|
-
| 'destination_address_iso3166_unrecognized'
|
|
6419
|
-
| 'line_item_shipfrom_shipto_country_invalid'
|
|
6420
|
-
| 'line_item_ship_from_invalid'
|
|
6421
|
-
| 'line_item_currency_iso4217_unrecognized'
|
|
6422
|
-
| 'line_quantity_invalid'
|
|
6423
|
-
| 'line_item_quantity_invalid'
|
|
6424
|
-
| 'line_item_unit_price_precision_invalid'
|
|
6425
|
-
| 'line_item_unit_price_negative'
|
|
6426
|
-
| 'line_item_discount_amount_precision_invalid'
|
|
6427
|
-
| 'line_item_discount_amount_positive'
|
|
6428
|
-
| 'line_item_country_of_origin_iso3166_unrecognized'
|
|
6429
|
-
| 'line_item_hs_code_invalid'
|
|
6430
|
-
| 'line_item_duty_provider_invalid'
|
|
6431
|
-
| 'shipping_unit_price_precision_invalid'
|
|
6432
|
-
| 'shipping_unit_price_negative'
|
|
6433
|
-
| 'shipping_discount_amount_precision_invalid'
|
|
6434
|
-
| 'shipping_discount_amount_invalid'
|
|
6435
|
-
| 'merchant_of_record_invalid'
|
|
6436
|
-
| 'wrong_unit_specified';
|
|
6437
6432
|
type TaxReportType = 'consumer' | 'b2b';
|
|
6438
6433
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
6439
6434
|
type TaxabilityType = 'tax_rule';
|
|
@@ -6534,17 +6529,6 @@ declare namespace io.flow.v0.enums {
|
|
|
6534
6529
|
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
6535
6530
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
6536
6531
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
6537
|
-
type ZeroLevyReasonCode =
|
|
6538
|
-
| 'zero_basis'
|
|
6539
|
-
| 'zero_rate_on_goods'
|
|
6540
|
-
| 'value_rounds_to_zero'
|
|
6541
|
-
| 'order_below_de_minimis_threshold'
|
|
6542
|
-
| 'amount_below_de_minimis_threshold'
|
|
6543
|
-
| 'delivered_unpaid'
|
|
6544
|
-
| 'duty_free_domestic'
|
|
6545
|
-
| 'duty_free_intra_community'
|
|
6546
|
-
| 'duty_free_reimport'
|
|
6547
|
-
| 'duty_free_by_trade_agreement';
|
|
6548
6532
|
}
|
|
6549
6533
|
|
|
6550
6534
|
declare namespace io.flow.v0.models {
|
|
@@ -8527,19 +8511,6 @@ declare namespace io.flow.v0.models {
|
|
|
8527
8511
|
readonly phone?: string;
|
|
8528
8512
|
}
|
|
8529
8513
|
|
|
8530
|
-
interface Context {
|
|
8531
|
-
readonly id: string;
|
|
8532
|
-
readonly experiments: io.flow.v0.models.SessionContextExperiment[];
|
|
8533
|
-
}
|
|
8534
|
-
|
|
8535
|
-
interface ContextForm {
|
|
8536
|
-
readonly experiments: io.flow.v0.models.SessionContextExperiment[];
|
|
8537
|
-
}
|
|
8538
|
-
|
|
8539
|
-
interface ContextReference {
|
|
8540
|
-
readonly id: string;
|
|
8541
|
-
}
|
|
8542
|
-
|
|
8543
8514
|
interface Country {
|
|
8544
8515
|
readonly name: string;
|
|
8545
8516
|
readonly iso_3166_2: string;
|
|
@@ -9416,28 +9387,12 @@ declare namespace io.flow.v0.models {
|
|
|
9416
9387
|
readonly payment: io.flow.v0.models.EmailPaymentSummary;
|
|
9417
9388
|
}
|
|
9418
9389
|
|
|
9419
|
-
interface EmailNotificationDeleted {
|
|
9420
|
-
readonly discriminator: 'email_notification_deleted';
|
|
9421
|
-
readonly event_id: string;
|
|
9422
|
-
readonly timestamp: string;
|
|
9423
|
-
readonly organization: string;
|
|
9424
|
-
readonly notification: io.flow.v0.models.EmailNotification;
|
|
9425
|
-
}
|
|
9426
|
-
|
|
9427
9390
|
interface EmailNotificationForm {
|
|
9428
9391
|
readonly to: io.flow.v0.models.EmailRecipient;
|
|
9429
9392
|
readonly created_at: string;
|
|
9430
9393
|
readonly data: io.flow.v0.unions.EmailNotificationData;
|
|
9431
9394
|
}
|
|
9432
9395
|
|
|
9433
|
-
interface EmailNotificationUpserted {
|
|
9434
|
-
readonly discriminator: 'email_notification_upserted';
|
|
9435
|
-
readonly event_id: string;
|
|
9436
|
-
readonly timestamp: string;
|
|
9437
|
-
readonly organization: string;
|
|
9438
|
-
readonly notification: io.flow.v0.models.EmailNotification;
|
|
9439
|
-
}
|
|
9440
|
-
|
|
9441
9396
|
interface EmailPaymentSummary {
|
|
9442
9397
|
readonly refund: io.flow.v0.models.Refund;
|
|
9443
9398
|
}
|
|
@@ -9811,10 +9766,6 @@ declare namespace io.flow.v0.models {
|
|
|
9811
9766
|
readonly experience: io.flow.v0.models.Experience;
|
|
9812
9767
|
}
|
|
9813
9768
|
|
|
9814
|
-
interface ExperimentVariant {
|
|
9815
|
-
readonly key: string;
|
|
9816
|
-
}
|
|
9817
|
-
|
|
9818
9769
|
interface Expiration {
|
|
9819
9770
|
readonly month: number;
|
|
9820
9771
|
readonly year: number;
|
|
@@ -11218,7 +11169,6 @@ declare namespace io.flow.v0.models {
|
|
|
11218
11169
|
readonly language: io.flow.v0.models.Language;
|
|
11219
11170
|
readonly locale: io.flow.v0.models.Locale;
|
|
11220
11171
|
readonly experience: io.flow.v0.models.ExperienceGeo;
|
|
11221
|
-
readonly experiment?: io.flow.v0.models.SessionExperiment;
|
|
11222
11172
|
}
|
|
11223
11173
|
|
|
11224
11174
|
interface Locale {
|
|
@@ -12555,8 +12505,6 @@ declare namespace io.flow.v0.models {
|
|
|
12555
12505
|
readonly geo?: io.flow.v0.models.SessionGeo;
|
|
12556
12506
|
readonly experience?: io.flow.v0.models.ExperienceGeo;
|
|
12557
12507
|
readonly format?: io.flow.v0.models.SessionFormat;
|
|
12558
|
-
readonly experiment?: io.flow.v0.models.SessionExperiment;
|
|
12559
|
-
readonly context?: io.flow.v0.models.ContextReference;
|
|
12560
12508
|
}
|
|
12561
12509
|
|
|
12562
12510
|
interface OrganizationSessionAuthorization {
|
|
@@ -14862,35 +14810,11 @@ declare namespace io.flow.v0.models {
|
|
|
14862
14810
|
readonly session: string;
|
|
14863
14811
|
}
|
|
14864
14812
|
|
|
14865
|
-
interface SessionContextExperiment {
|
|
14866
|
-
readonly key: string;
|
|
14867
|
-
readonly variant?: io.flow.v0.models.ExperimentVariant;
|
|
14868
|
-
}
|
|
14869
|
-
|
|
14870
14813
|
interface SessionCurrencyFormat {
|
|
14871
14814
|
readonly symbol: io.flow.v0.enums.CurrencySymbolFormat;
|
|
14872
14815
|
readonly label_formatters: io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
14873
14816
|
}
|
|
14874
14817
|
|
|
14875
|
-
interface SessionExperiment {
|
|
14876
|
-
readonly key: string;
|
|
14877
|
-
readonly variant?: io.flow.v0.models.SessionExperimentVariant;
|
|
14878
|
-
}
|
|
14879
|
-
|
|
14880
|
-
interface SessionExperimentForm {
|
|
14881
|
-
readonly key: string;
|
|
14882
|
-
readonly variant?: io.flow.v0.models.SessionExperimentVariantForm;
|
|
14883
|
-
}
|
|
14884
|
-
|
|
14885
|
-
interface SessionExperimentVariant {
|
|
14886
|
-
readonly key: string;
|
|
14887
|
-
readonly name: string;
|
|
14888
|
-
}
|
|
14889
|
-
|
|
14890
|
-
interface SessionExperimentVariantForm {
|
|
14891
|
-
readonly key: string;
|
|
14892
|
-
}
|
|
14893
|
-
|
|
14894
14818
|
interface SessionExpirationConfig {
|
|
14895
14819
|
readonly unit: io.flow.v0.enums.UnitOfTime;
|
|
14896
14820
|
readonly value: number;
|
|
@@ -15134,6 +15058,11 @@ declare namespace io.flow.v0.models {
|
|
|
15134
15058
|
readonly required: boolean;
|
|
15135
15059
|
}
|
|
15136
15060
|
|
|
15061
|
+
interface ShippingLabelError {
|
|
15062
|
+
readonly code: io.flow.v0.enums.ShippingLabelErrorCode;
|
|
15063
|
+
readonly messages: string[];
|
|
15064
|
+
}
|
|
15065
|
+
|
|
15137
15066
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
15138
15067
|
readonly units: io.flow.v0.models.LabelUnits;
|
|
15139
15068
|
readonly base: io.flow.v0.models.LabelBase;
|
|
@@ -15661,14 +15590,6 @@ declare namespace io.flow.v0.models {
|
|
|
15661
15590
|
readonly statement: io.flow.v0.models.Statement;
|
|
15662
15591
|
}
|
|
15663
15592
|
|
|
15664
|
-
interface StreetAddress {
|
|
15665
|
-
readonly streets?: string[];
|
|
15666
|
-
readonly city?: string;
|
|
15667
|
-
readonly province?: string;
|
|
15668
|
-
readonly postal?: string;
|
|
15669
|
-
readonly country?: string;
|
|
15670
|
-
}
|
|
15671
|
-
|
|
15672
15593
|
interface StripeAuthenticationData {
|
|
15673
15594
|
readonly discriminator: 'stripe_authentication_data';
|
|
15674
15595
|
readonly secret_key_reference: string;
|
|
@@ -15896,92 +15817,6 @@ declare namespace io.flow.v0.models {
|
|
|
15896
15817
|
readonly deminimis?: io.flow.v0.unions.Deminimis;
|
|
15897
15818
|
}
|
|
15898
15819
|
|
|
15899
|
-
interface TaxDutyCalculatorValidationError {
|
|
15900
|
-
readonly code: io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
15901
|
-
readonly messages: string[];
|
|
15902
|
-
}
|
|
15903
|
-
|
|
15904
|
-
interface TaxDutyQuote {
|
|
15905
|
-
readonly id: string;
|
|
15906
|
-
readonly primary_identifier: string;
|
|
15907
|
-
readonly attributes?: Record<string, string>;
|
|
15908
|
-
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
15909
|
-
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
15910
|
-
readonly destination: io.flow.v0.models.StreetAddress;
|
|
15911
|
-
readonly quote_date: string;
|
|
15912
|
-
readonly currency: string;
|
|
15913
|
-
readonly lines: io.flow.v0.models.TaxDutyQuoteLineItem[];
|
|
15914
|
-
readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShipping[];
|
|
15915
|
-
readonly total_values: io.flow.v0.models.TaxDutyQuoteValues;
|
|
15916
|
-
}
|
|
15917
|
-
|
|
15918
|
-
interface TaxDutyQuoteFeeValue {
|
|
15919
|
-
readonly amount: number;
|
|
15920
|
-
readonly description: string;
|
|
15921
|
-
readonly amount_refundable_on_return: number;
|
|
15922
|
-
}
|
|
15923
|
-
|
|
15924
|
-
interface TaxDutyQuoteForm {
|
|
15925
|
-
readonly primary_identifier: string;
|
|
15926
|
-
readonly attributes?: Record<string, string>;
|
|
15927
|
-
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
15928
|
-
readonly destination: io.flow.v0.models.StreetAddress;
|
|
15929
|
-
readonly currency: string;
|
|
15930
|
-
readonly lines: io.flow.v0.models.TaxDutyQuoteLineItemForm[];
|
|
15931
|
-
readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
|
|
15932
|
-
readonly includes?: io.flow.v0.enums.LevyInclusion[];
|
|
15933
|
-
}
|
|
15934
|
-
|
|
15935
|
-
interface TaxDutyQuoteLineItem {
|
|
15936
|
-
readonly primary_identifier: string;
|
|
15937
|
-
readonly attributes?: Record<string, string>;
|
|
15938
|
-
readonly ship_from: io.flow.v0.models.StreetAddress;
|
|
15939
|
-
readonly quantity: number;
|
|
15940
|
-
readonly unit_values: io.flow.v0.models.TaxDutyQuoteValues;
|
|
15941
|
-
readonly country_of_origin: string;
|
|
15942
|
-
readonly hs_code: string;
|
|
15943
|
-
}
|
|
15944
|
-
|
|
15945
|
-
interface TaxDutyQuoteLineItemForm {
|
|
15946
|
-
readonly primary_identifier: string;
|
|
15947
|
-
readonly attributes?: Record<string, string>;
|
|
15948
|
-
readonly ship_from: io.flow.v0.models.StreetAddress;
|
|
15949
|
-
readonly quantity: number;
|
|
15950
|
-
readonly unit_price: number;
|
|
15951
|
-
readonly unit_weight?: io.flow.v0.models.Measurement;
|
|
15952
|
-
readonly country_of_origin?: string;
|
|
15953
|
-
readonly hs_code?: string;
|
|
15954
|
-
readonly includes: io.flow.v0.enums.LevyInclusion[];
|
|
15955
|
-
}
|
|
15956
|
-
|
|
15957
|
-
interface TaxDutyQuoteSimpleLevyValue {
|
|
15958
|
-
readonly discriminator: 'tax_duty_quote_simple_levy_value';
|
|
15959
|
-
readonly amount: number;
|
|
15960
|
-
readonly rate: number;
|
|
15961
|
-
readonly description: string;
|
|
15962
|
-
readonly zero_levy_reason?: io.flow.v0.enums.ZeroLevyReasonCode[];
|
|
15963
|
-
readonly amount_refundable_on_return: number;
|
|
15964
|
-
}
|
|
15965
|
-
|
|
15966
|
-
interface TaxDutyQuoteSimpleShipping {
|
|
15967
|
-
readonly values: io.flow.v0.models.TaxDutyQuoteValues;
|
|
15968
|
-
readonly ship_from: io.flow.v0.models.StreetAddress;
|
|
15969
|
-
}
|
|
15970
|
-
|
|
15971
|
-
interface TaxDutyQuoteSimpleShippingForm {
|
|
15972
|
-
readonly price: number;
|
|
15973
|
-
readonly includes: io.flow.v0.enums.LevyInclusion[];
|
|
15974
|
-
readonly ship_from?: io.flow.v0.models.StreetAddress;
|
|
15975
|
-
}
|
|
15976
|
-
|
|
15977
|
-
interface TaxDutyQuoteValues {
|
|
15978
|
-
readonly price: number;
|
|
15979
|
-
readonly duty: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
15980
|
-
readonly tax: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
15981
|
-
readonly fees: io.flow.v0.models.TaxDutyQuoteFeeValue;
|
|
15982
|
-
readonly total: number;
|
|
15983
|
-
}
|
|
15984
|
-
|
|
15985
15820
|
interface TaxRegistration {
|
|
15986
15821
|
readonly id: string;
|
|
15987
15822
|
readonly key: string;
|
|
@@ -16219,6 +16054,7 @@ declare namespace io.flow.v0.models {
|
|
|
16219
16054
|
readonly timestamp: string;
|
|
16220
16055
|
readonly description?: string;
|
|
16221
16056
|
readonly aggregator_status_code?: string;
|
|
16057
|
+
readonly created_at?: string;
|
|
16222
16058
|
}
|
|
16223
16059
|
|
|
16224
16060
|
interface TrackingEventForm {
|
|
@@ -16946,8 +16782,6 @@ declare namespace io.flow.v0.unions {
|
|
|
16946
16782
|
| io.flow.v0.models.CustomerDeleted
|
|
16947
16783
|
| io.flow.v0.models.CustomerAddressBookContactUpserted
|
|
16948
16784
|
| io.flow.v0.models.CustomerAddressBookContactDeleted
|
|
16949
|
-
| io.flow.v0.models.EmailNotificationUpserted
|
|
16950
|
-
| io.flow.v0.models.EmailNotificationDeleted
|
|
16951
16785
|
| io.flow.v0.models.AvailablePromotionsUpserted
|
|
16952
16786
|
| io.flow.v0.models.AvailablePromotionsDeleted
|
|
16953
16787
|
| io.flow.v0.models.AvailablePromotionsUpsertedV2
|
|
@@ -17367,7 +17201,6 @@ declare namespace io.flow.v0.unions {
|
|
|
17367
17201
|
| io.flow.v0.models.ShopifyCartAddSingleForm
|
|
17368
17202
|
| io.flow.v0.models.ShopifyCartAddMultipleForm;
|
|
17369
17203
|
type ShopifyEventBucket = io.flow.v0.models.ShopifyItemEventBucket;
|
|
17370
|
-
type TaxDutyQuoteLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
17371
17204
|
type TaxSetting =
|
|
17372
17205
|
| io.flow.v0.models.AvalaraTaxSetting
|
|
17373
17206
|
| io.flow.v0.models.AvalaraTaxCsvSetting;
|
|
@@ -17822,9 +17655,6 @@ export type ConsumerInvoiceReference =
|
|
|
17822
17655
|
export type ConsumerInvoiceStatus = io.flow.v0.enums.ConsumerInvoiceStatus;
|
|
17823
17656
|
export type ConsumerInvoiceUpserted = io.flow.v0.models.ConsumerInvoiceUpserted;
|
|
17824
17657
|
export type Contact = io.flow.v0.models.Contact;
|
|
17825
|
-
export type Context = io.flow.v0.models.Context;
|
|
17826
|
-
export type ContextForm = io.flow.v0.models.ContextForm;
|
|
17827
|
-
export type ContextReference = io.flow.v0.models.ContextReference;
|
|
17828
17658
|
export type CostEstimateSource = io.flow.v0.enums.CostEstimateSource;
|
|
17829
17659
|
export type Country = io.flow.v0.models.Country;
|
|
17830
17660
|
export type CountryAvailability = io.flow.v0.models.CountryAvailability;
|
|
@@ -18013,11 +17843,7 @@ export type EmailNotificationAbandonedOrder =
|
|
|
18013
17843
|
export type EmailNotificationData = io.flow.v0.unions.EmailNotificationData;
|
|
18014
17844
|
export type EmailNotificationDataRefund =
|
|
18015
17845
|
io.flow.v0.models.EmailNotificationDataRefund;
|
|
18016
|
-
export type EmailNotificationDeleted =
|
|
18017
|
-
io.flow.v0.models.EmailNotificationDeleted;
|
|
18018
17846
|
export type EmailNotificationForm = io.flow.v0.models.EmailNotificationForm;
|
|
18019
|
-
export type EmailNotificationUpserted =
|
|
18020
|
-
io.flow.v0.models.EmailNotificationUpserted;
|
|
18021
17847
|
export type EmailPaymentSummary = io.flow.v0.models.EmailPaymentSummary;
|
|
18022
17848
|
export type EmailRecipient = io.flow.v0.models.EmailRecipient;
|
|
18023
17849
|
export type EmailVerification = io.flow.v0.models.EmailVerification;
|
|
@@ -18125,7 +17951,6 @@ export type ExperienceSummary = io.flow.v0.models.ExperienceSummary;
|
|
|
18125
17951
|
export type ExperienceUpserted = io.flow.v0.models.ExperienceUpserted;
|
|
18126
17952
|
export type ExperienceUpsertedV2 = io.flow.v0.models.ExperienceUpsertedV2;
|
|
18127
17953
|
export type ExperienceVersion = io.flow.v0.models.ExperienceVersion;
|
|
18128
|
-
export type ExperimentVariant = io.flow.v0.models.ExperimentVariant;
|
|
18129
17954
|
export type Expiration = io.flow.v0.models.Expiration;
|
|
18130
17955
|
export type Export = io.flow.v0.models.Export;
|
|
18131
17956
|
export type ExportDelivery = io.flow.v0.unions.ExportDelivery;
|
|
@@ -18398,7 +18223,6 @@ export type LaneSummary = io.flow.v0.models.LaneSummary;
|
|
|
18398
18223
|
export type Language = io.flow.v0.models.Language;
|
|
18399
18224
|
export type LargePackageServiceFee = io.flow.v0.models.LargePackageServiceFee;
|
|
18400
18225
|
export type LevyComponent = io.flow.v0.enums.LevyComponent;
|
|
18401
|
-
export type LevyInclusion = io.flow.v0.enums.LevyInclusion;
|
|
18402
18226
|
export type LevyStrategy = io.flow.v0.enums.LevyStrategy;
|
|
18403
18227
|
export type Line = io.flow.v0.models.Line;
|
|
18404
18228
|
export type LineItem = io.flow.v0.models.LineItem;
|
|
@@ -19227,15 +19051,7 @@ export type Session = io.flow.v0.unions.Session;
|
|
|
19227
19051
|
export type SessionAuthorization = io.flow.v0.unions.SessionAuthorization;
|
|
19228
19052
|
export type SessionAuthorizationForm =
|
|
19229
19053
|
io.flow.v0.models.SessionAuthorizationForm;
|
|
19230
|
-
export type SessionContextExperiment =
|
|
19231
|
-
io.flow.v0.models.SessionContextExperiment;
|
|
19232
19054
|
export type SessionCurrencyFormat = io.flow.v0.models.SessionCurrencyFormat;
|
|
19233
|
-
export type SessionExperiment = io.flow.v0.models.SessionExperiment;
|
|
19234
|
-
export type SessionExperimentForm = io.flow.v0.models.SessionExperimentForm;
|
|
19235
|
-
export type SessionExperimentVariant =
|
|
19236
|
-
io.flow.v0.models.SessionExperimentVariant;
|
|
19237
|
-
export type SessionExperimentVariantForm =
|
|
19238
|
-
io.flow.v0.models.SessionExperimentVariantForm;
|
|
19239
19055
|
export type SessionExpirationConfig = io.flow.v0.models.SessionExpirationConfig;
|
|
19240
19056
|
export type SessionForm = io.flow.v0.models.SessionForm;
|
|
19241
19057
|
export type SessionFormat = io.flow.v0.models.SessionFormat;
|
|
@@ -19288,6 +19104,8 @@ export type ShippingConfigurationVersion =
|
|
|
19288
19104
|
io.flow.v0.models.ShippingConfigurationVersion;
|
|
19289
19105
|
export type ShippingLabel = io.flow.v0.models.ShippingLabel;
|
|
19290
19106
|
export type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
|
|
19107
|
+
export type ShippingLabelError = io.flow.v0.models.ShippingLabelError;
|
|
19108
|
+
export type ShippingLabelErrorCode = io.flow.v0.enums.ShippingLabelErrorCode;
|
|
19291
19109
|
export type ShippingLabelForm = io.flow.v0.unions.ShippingLabelForm;
|
|
19292
19110
|
export type ShippingLabelHopCostItemizedEstimate =
|
|
19293
19111
|
io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
@@ -19401,7 +19219,6 @@ export type StatementDeleted = io.flow.v0.models.StatementDeleted;
|
|
|
19401
19219
|
export type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
19402
19220
|
export type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
19403
19221
|
export type Strategy = io.flow.v0.enums.Strategy;
|
|
19404
|
-
export type StreetAddress = io.flow.v0.models.StreetAddress;
|
|
19405
19222
|
export type StripeAuthenticationData =
|
|
19406
19223
|
io.flow.v0.models.StripeAuthenticationData;
|
|
19407
19224
|
export type StripeAuthenticationDataForm =
|
|
@@ -19449,24 +19266,6 @@ export type SyncStreamType = io.flow.v0.enums.SyncStreamType;
|
|
|
19449
19266
|
export type SyncUnitOfTime = io.flow.v0.enums.SyncUnitOfTime;
|
|
19450
19267
|
export type Tax = io.flow.v0.models.Tax;
|
|
19451
19268
|
export type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
19452
|
-
export type TaxDutyCalculatorValidationError =
|
|
19453
|
-
io.flow.v0.models.TaxDutyCalculatorValidationError;
|
|
19454
|
-
export type TaxDutyCalculatorValidationErrorCode =
|
|
19455
|
-
io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
19456
|
-
export type TaxDutyQuote = io.flow.v0.models.TaxDutyQuote;
|
|
19457
|
-
export type TaxDutyQuoteFeeValue = io.flow.v0.models.TaxDutyQuoteFeeValue;
|
|
19458
|
-
export type TaxDutyQuoteForm = io.flow.v0.models.TaxDutyQuoteForm;
|
|
19459
|
-
export type TaxDutyQuoteLevyValue = io.flow.v0.unions.TaxDutyQuoteLevyValue;
|
|
19460
|
-
export type TaxDutyQuoteLineItem = io.flow.v0.models.TaxDutyQuoteLineItem;
|
|
19461
|
-
export type TaxDutyQuoteLineItemForm =
|
|
19462
|
-
io.flow.v0.models.TaxDutyQuoteLineItemForm;
|
|
19463
|
-
export type TaxDutyQuoteSimpleLevyValue =
|
|
19464
|
-
io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
19465
|
-
export type TaxDutyQuoteSimpleShipping =
|
|
19466
|
-
io.flow.v0.models.TaxDutyQuoteSimpleShipping;
|
|
19467
|
-
export type TaxDutyQuoteSimpleShippingForm =
|
|
19468
|
-
io.flow.v0.models.TaxDutyQuoteSimpleShippingForm;
|
|
19469
|
-
export type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
|
|
19470
19269
|
export type TaxRegistration = io.flow.v0.models.TaxRegistration;
|
|
19471
19270
|
export type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
|
|
19472
19271
|
export type TaxReport = io.flow.v0.models.TaxReport;
|
|
@@ -19650,5 +19449,4 @@ export type WithholdingDeduction = io.flow.v0.models.WithholdingDeduction;
|
|
|
19650
19449
|
export type WithholdingDeductionType =
|
|
19651
19450
|
io.flow.v0.enums.WithholdingDeductionType;
|
|
19652
19451
|
export type ZeroAmountIndicator = io.flow.v0.enums.ZeroAmountIndicator;
|
|
19653
|
-
export type ZeroLevyReasonCode = io.flow.v0.enums.ZeroLevyReasonCode;
|
|
19654
19452
|
export type Zone = io.flow.v0.models.Zone;
|