@flowio/types 11.24.93 → 11.24.95
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 +6266 -6095
- package/dist/api.d.ts +125 -26
- package/package.json +2 -2
- package/src/api-internal.ts +7846 -7579
- package/src/api.ts +187 -27
package/src/api.ts
CHANGED
|
@@ -1461,6 +1461,27 @@ declare namespace io.flow.shopify.external.v0.enums {
|
|
|
1461
1461
|
type ShopifyCustomerState = 'disabled' | 'invited' | 'enabled';
|
|
1462
1462
|
type ShopifyDiscountPaginationDirection = 'next' | 'prev';
|
|
1463
1463
|
type ShopifyGiftCardStatus = 'any' | 'enabled' | 'disabled';
|
|
1464
|
+
type ShopifyPlanName =
|
|
1465
|
+
| 'basic'
|
|
1466
|
+
| 'business'
|
|
1467
|
+
| 'cancelled'
|
|
1468
|
+
| 'dormant'
|
|
1469
|
+
| 'enterprise'
|
|
1470
|
+
| 'fraudulent'
|
|
1471
|
+
| 'frozen'
|
|
1472
|
+
| 'npo_full'
|
|
1473
|
+
| 'npo_lite'
|
|
1474
|
+
| 'open_learning'
|
|
1475
|
+
| 'paid_trial'
|
|
1476
|
+
| 'professional'
|
|
1477
|
+
| 'retail'
|
|
1478
|
+
| 'shopify_alumni'
|
|
1479
|
+
| 'shopify_plus'
|
|
1480
|
+
| 'staff'
|
|
1481
|
+
| 'staff_business'
|
|
1482
|
+
| 'starter'
|
|
1483
|
+
| 'starter_2022'
|
|
1484
|
+
| 'unlimited';
|
|
1464
1485
|
type ShopifyProcessingMethodType =
|
|
1465
1486
|
| 'checkout'
|
|
1466
1487
|
| 'direct'
|
|
@@ -1677,7 +1698,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1677
1698
|
readonly id: number;
|
|
1678
1699
|
readonly product_id: number;
|
|
1679
1700
|
readonly variant_ids: number[];
|
|
1680
|
-
readonly src
|
|
1701
|
+
readonly src?: string;
|
|
1681
1702
|
readonly position: number;
|
|
1682
1703
|
readonly created_at: string;
|
|
1683
1704
|
readonly updated_at: string;
|
|
@@ -2289,6 +2310,12 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2289
2310
|
readonly carrier_identifier?: string;
|
|
2290
2311
|
}
|
|
2291
2312
|
|
|
2313
|
+
interface ShopifyShopUpdate {
|
|
2314
|
+
readonly id: number;
|
|
2315
|
+
readonly plan_display_name: string;
|
|
2316
|
+
readonly plan_name: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2292
2319
|
interface ShopifyTaxLine {
|
|
2293
2320
|
readonly price: string;
|
|
2294
2321
|
readonly rate: number;
|
|
@@ -2886,6 +2913,8 @@ declare namespace io.flow.v0.enums {
|
|
|
2886
2913
|
| 'notification_deleted_v2'
|
|
2887
2914
|
| 'manifested_label_upserted'
|
|
2888
2915
|
| 'manifested_label_deleted'
|
|
2916
|
+
| 'label_processing_modification_upserted'
|
|
2917
|
+
| 'label_processing_modification_deleted'
|
|
2889
2918
|
| 'local_item_upserted'
|
|
2890
2919
|
| 'local_item_deleted'
|
|
2891
2920
|
| 'merchant_application_upserted'
|
|
@@ -3533,6 +3562,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3533
3562
|
| 'shipping_label_service'
|
|
3534
3563
|
| 'shipping_label_revenue_share'
|
|
3535
3564
|
| 'trueup'
|
|
3565
|
+
| 'trueup_base'
|
|
3566
|
+
| 'trueup_surcharge'
|
|
3536
3567
|
| 'carrier_charge'
|
|
3537
3568
|
| 'carrier_charge_revenue_share'
|
|
3538
3569
|
| 'platform_fee'
|
|
@@ -3545,8 +3576,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3545
3576
|
| 'channel_billed'
|
|
3546
3577
|
| 'order_service'
|
|
3547
3578
|
| 'virtual_card_capture'
|
|
3548
|
-
| 'virtual_card_refund'
|
|
3549
|
-
|
|
3579
|
+
| 'virtual_card_refund'
|
|
3580
|
+
| 'failed_payout';
|
|
3581
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
3550
3582
|
type TrueupSurchargeType =
|
|
3551
3583
|
| 'fuel'
|
|
3552
3584
|
| 'remote_area'
|
|
@@ -3558,7 +3590,13 @@ declare namespace io.flow.v0.enums {
|
|
|
3558
3590
|
| 'security'
|
|
3559
3591
|
| 'eei_filing'
|
|
3560
3592
|
| 'fixed_ddp'
|
|
3561
|
-
| 'fixed_currency_conversion'
|
|
3593
|
+
| 'fixed_currency_conversion'
|
|
3594
|
+
| 'prohibited_item'
|
|
3595
|
+
| 'undeliverable_shipment'
|
|
3596
|
+
| 'signature_required'
|
|
3597
|
+
| 'direct_delivery'
|
|
3598
|
+
| 'saturday_stop'
|
|
3599
|
+
| 'residential_extended_area_pickup';
|
|
3562
3600
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3563
3601
|
type UnitOfMeasurement =
|
|
3564
3602
|
| 'millimeter'
|
|
@@ -5965,6 +6003,7 @@ declare namespace io.flow.v0.models {
|
|
|
5965
6003
|
|
|
5966
6004
|
interface DeactivationPutForm {
|
|
5967
6005
|
readonly reason: string;
|
|
6006
|
+
readonly deactivate_at?: string;
|
|
5968
6007
|
}
|
|
5969
6008
|
|
|
5970
6009
|
interface DeadWeight {
|
|
@@ -8082,6 +8121,29 @@ declare namespace io.flow.v0.models {
|
|
|
8082
8121
|
readonly number: string;
|
|
8083
8122
|
}
|
|
8084
8123
|
|
|
8124
|
+
interface LabelProcessingModification {
|
|
8125
|
+
readonly id: string;
|
|
8126
|
+
readonly modifications: string[];
|
|
8127
|
+
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
8128
|
+
readonly destination_provided_to_carrier?: io.flow.v0.models.ShippingAddress;
|
|
8129
|
+
}
|
|
8130
|
+
|
|
8131
|
+
interface LabelProcessingModificationDeleted {
|
|
8132
|
+
readonly discriminator: 'label_processing_modification_deleted';
|
|
8133
|
+
readonly event_id: string;
|
|
8134
|
+
readonly timestamp: string;
|
|
8135
|
+
readonly organization: string;
|
|
8136
|
+
readonly id: string;
|
|
8137
|
+
}
|
|
8138
|
+
|
|
8139
|
+
interface LabelProcessingModificationUpserted {
|
|
8140
|
+
readonly discriminator: 'label_processing_modification_upserted';
|
|
8141
|
+
readonly event_id: string;
|
|
8142
|
+
readonly timestamp: string;
|
|
8143
|
+
readonly organization: string;
|
|
8144
|
+
readonly label_processing_modification: io.flow.v0.models.LabelProcessingModification;
|
|
8145
|
+
}
|
|
8146
|
+
|
|
8085
8147
|
interface LabelReference {
|
|
8086
8148
|
readonly id: string;
|
|
8087
8149
|
}
|
|
@@ -8553,6 +8615,7 @@ declare namespace io.flow.v0.models {
|
|
|
8553
8615
|
interface MerchantDeactivated {
|
|
8554
8616
|
readonly discriminator: 'merchant_deactivated';
|
|
8555
8617
|
readonly reason: string;
|
|
8618
|
+
readonly deactivate_at?: string;
|
|
8556
8619
|
}
|
|
8557
8620
|
|
|
8558
8621
|
interface MerchantDisabled {
|
|
@@ -9896,6 +9959,7 @@ declare namespace io.flow.v0.models {
|
|
|
9896
9959
|
readonly currency: string;
|
|
9897
9960
|
readonly base_amount?: number;
|
|
9898
9961
|
readonly base_currency?: string;
|
|
9962
|
+
readonly reference?: string;
|
|
9899
9963
|
}
|
|
9900
9964
|
|
|
9901
9965
|
interface PaymentAuthorizationStatus {
|
|
@@ -9909,6 +9973,7 @@ declare namespace io.flow.v0.models {
|
|
|
9909
9973
|
readonly currency: string;
|
|
9910
9974
|
readonly base_amount?: number;
|
|
9911
9975
|
readonly base_currency?: string;
|
|
9976
|
+
readonly reference?: string;
|
|
9912
9977
|
readonly created_at: string;
|
|
9913
9978
|
readonly updated_at: string;
|
|
9914
9979
|
readonly status: io.flow.v0.models.PaymentCaptureStatus;
|
|
@@ -9917,6 +9982,7 @@ declare namespace io.flow.v0.models {
|
|
|
9917
9982
|
interface PaymentCaptureForm {
|
|
9918
9983
|
readonly amount?: number;
|
|
9919
9984
|
readonly currency?: string;
|
|
9985
|
+
readonly reference?: string;
|
|
9920
9986
|
readonly attributes?: Record<string, string>;
|
|
9921
9987
|
}
|
|
9922
9988
|
|
|
@@ -10065,6 +10131,7 @@ declare namespace io.flow.v0.models {
|
|
|
10065
10131
|
readonly device_fingerprint_details: io.flow.v0.unions.DeviceFingerprintDetails;
|
|
10066
10132
|
readonly cvv?: string;
|
|
10067
10133
|
readonly stored_details_card?: io.flow.v0.unions.PaymentMethodStoredDetailsCard;
|
|
10134
|
+
readonly reference?: string;
|
|
10068
10135
|
}
|
|
10069
10136
|
|
|
10070
10137
|
interface PaymentMethodDataAuthorizeGooglepay {
|
|
@@ -10100,42 +10167,43 @@ declare namespace io.flow.v0.models {
|
|
|
10100
10167
|
|
|
10101
10168
|
interface PaymentMethodDataInitAfterpay {
|
|
10102
10169
|
readonly type: 'init_afterpay';
|
|
10103
|
-
readonly
|
|
10170
|
+
readonly reference?: string;
|
|
10104
10171
|
}
|
|
10105
10172
|
|
|
10106
10173
|
interface PaymentMethodDataInitApplepay {
|
|
10107
10174
|
readonly type: 'init_applepay';
|
|
10108
|
-
readonly
|
|
10175
|
+
readonly reference?: string;
|
|
10109
10176
|
}
|
|
10110
10177
|
|
|
10111
10178
|
interface PaymentMethodDataInitBancontact {
|
|
10112
10179
|
readonly type: 'init_bancontact';
|
|
10113
|
-
readonly
|
|
10180
|
+
readonly reference?: string;
|
|
10114
10181
|
}
|
|
10115
10182
|
|
|
10116
10183
|
interface PaymentMethodDataInitGooglepay {
|
|
10117
10184
|
readonly type: 'init_googlepay';
|
|
10118
|
-
readonly
|
|
10185
|
+
readonly reference?: string;
|
|
10119
10186
|
}
|
|
10120
10187
|
|
|
10121
10188
|
interface PaymentMethodDataInitIdeal {
|
|
10122
10189
|
readonly type: 'init_ideal';
|
|
10123
10190
|
readonly issuer?: string;
|
|
10191
|
+
readonly reference?: string;
|
|
10124
10192
|
}
|
|
10125
10193
|
|
|
10126
10194
|
interface PaymentMethodDataInitKlarna {
|
|
10127
10195
|
readonly type: 'init_klarna';
|
|
10128
|
-
readonly
|
|
10196
|
+
readonly reference?: string;
|
|
10129
10197
|
}
|
|
10130
10198
|
|
|
10131
10199
|
interface PaymentMethodDataInitPaypal {
|
|
10132
10200
|
readonly type: 'init_paypal';
|
|
10133
|
-
readonly
|
|
10201
|
+
readonly reference?: string;
|
|
10134
10202
|
}
|
|
10135
10203
|
|
|
10136
10204
|
interface PaymentMethodDataInitSofort {
|
|
10137
10205
|
readonly type: 'init_sofort';
|
|
10138
|
-
readonly
|
|
10206
|
+
readonly reference?: string;
|
|
10139
10207
|
}
|
|
10140
10208
|
|
|
10141
10209
|
interface PaymentMethodDataOptionLogoSvg {
|
|
@@ -10255,7 +10323,7 @@ declare namespace io.flow.v0.models {
|
|
|
10255
10323
|
}
|
|
10256
10324
|
|
|
10257
10325
|
interface PaymentOrderDetailsLineItem {
|
|
10258
|
-
readonly id
|
|
10326
|
+
readonly id?: string;
|
|
10259
10327
|
readonly description: string;
|
|
10260
10328
|
readonly quantity: number;
|
|
10261
10329
|
readonly amount: number;
|
|
@@ -10343,6 +10411,7 @@ declare namespace io.flow.v0.models {
|
|
|
10343
10411
|
readonly currency: string;
|
|
10344
10412
|
readonly base_amount?: number;
|
|
10345
10413
|
readonly base_currency?: string;
|
|
10414
|
+
readonly reference?: string;
|
|
10346
10415
|
readonly created_at: string;
|
|
10347
10416
|
readonly updated_at: string;
|
|
10348
10417
|
readonly status: io.flow.v0.models.PaymentRefundStatus;
|
|
@@ -10351,6 +10420,7 @@ declare namespace io.flow.v0.models {
|
|
|
10351
10420
|
interface PaymentRefundForm {
|
|
10352
10421
|
readonly amount?: number;
|
|
10353
10422
|
readonly currency?: string;
|
|
10423
|
+
readonly reference?: string;
|
|
10354
10424
|
}
|
|
10355
10425
|
|
|
10356
10426
|
interface PaymentRefundStatus {
|
|
@@ -10458,6 +10528,7 @@ declare namespace io.flow.v0.models {
|
|
|
10458
10528
|
readonly currency: string;
|
|
10459
10529
|
readonly base_amount?: number;
|
|
10460
10530
|
readonly base_currency?: string;
|
|
10531
|
+
readonly reference?: string;
|
|
10461
10532
|
readonly created_at: string;
|
|
10462
10533
|
readonly updated_at: string;
|
|
10463
10534
|
readonly status: io.flow.v0.models.PaymentReversalStatus;
|
|
@@ -10466,6 +10537,7 @@ declare namespace io.flow.v0.models {
|
|
|
10466
10537
|
interface PaymentReversalForm {
|
|
10467
10538
|
readonly amount?: number;
|
|
10468
10539
|
readonly currency?: string;
|
|
10540
|
+
readonly reference?: string;
|
|
10469
10541
|
}
|
|
10470
10542
|
|
|
10471
10543
|
interface PaymentReversalStatus {
|
|
@@ -10917,7 +10989,7 @@ declare namespace io.flow.v0.models {
|
|
|
10917
10989
|
readonly event_id: string;
|
|
10918
10990
|
readonly timestamp: string;
|
|
10919
10991
|
readonly organization: string;
|
|
10920
|
-
readonly
|
|
10992
|
+
readonly id: string;
|
|
10921
10993
|
}
|
|
10922
10994
|
|
|
10923
10995
|
interface ProductRestrictionResultUpserted {
|
|
@@ -13456,17 +13528,14 @@ declare namespace io.flow.v0.models {
|
|
|
13456
13528
|
readonly carrier_id: string;
|
|
13457
13529
|
readonly carrier_tracking_number: string;
|
|
13458
13530
|
readonly revenue_share_percentage: number;
|
|
13459
|
-
readonly outbound?: io.flow.v0.models.
|
|
13460
|
-
}
|
|
13461
|
-
|
|
13462
|
-
interface TransactionMetadataCarrierChargeOutbound {
|
|
13463
|
-
readonly transaction_id: string;
|
|
13531
|
+
readonly outbound?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
13464
13532
|
}
|
|
13465
13533
|
|
|
13466
13534
|
interface TransactionMetadataChannel {
|
|
13467
13535
|
readonly discriminator: 'channel';
|
|
13468
13536
|
readonly method: string;
|
|
13469
13537
|
readonly card?: io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
13538
|
+
readonly organization_transaction: io.flow.v0.models.TransactionReference;
|
|
13470
13539
|
}
|
|
13471
13540
|
|
|
13472
13541
|
interface TransactionMetadataChannelCardMetadata {
|
|
@@ -13479,6 +13548,15 @@ declare namespace io.flow.v0.models {
|
|
|
13479
13548
|
readonly country: string;
|
|
13480
13549
|
}
|
|
13481
13550
|
|
|
13551
|
+
interface TransactionMetadataFailedPayout {
|
|
13552
|
+
readonly discriminator: 'failed_payout';
|
|
13553
|
+
readonly failed_payout: io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
13554
|
+
}
|
|
13555
|
+
|
|
13556
|
+
interface TransactionMetadataFailedPayoutReference {
|
|
13557
|
+
readonly id: string;
|
|
13558
|
+
}
|
|
13559
|
+
|
|
13482
13560
|
interface TransactionMetadataManual {
|
|
13483
13561
|
readonly discriminator: 'manual';
|
|
13484
13562
|
readonly description: string;
|
|
@@ -13490,6 +13568,16 @@ declare namespace io.flow.v0.models {
|
|
|
13490
13568
|
readonly id: string;
|
|
13491
13569
|
}
|
|
13492
13570
|
|
|
13571
|
+
interface TransactionMetadataOutboundTransaction {
|
|
13572
|
+
readonly transaction_id: string;
|
|
13573
|
+
}
|
|
13574
|
+
|
|
13575
|
+
interface TransactionMetadataPaymentTransaction {
|
|
13576
|
+
readonly discriminator: 'payment_transaction';
|
|
13577
|
+
readonly id?: string;
|
|
13578
|
+
readonly key?: string;
|
|
13579
|
+
}
|
|
13580
|
+
|
|
13493
13581
|
interface TransactionMetadataShippingLabel {
|
|
13494
13582
|
readonly discriminator: 'shipping_label';
|
|
13495
13583
|
readonly request_method?: io.flow.v0.enums.LabelRequestMethod;
|
|
@@ -13509,6 +13597,22 @@ declare namespace io.flow.v0.models {
|
|
|
13509
13597
|
readonly actual: io.flow.v0.models.TransactionMetadataTrueupData;
|
|
13510
13598
|
}
|
|
13511
13599
|
|
|
13600
|
+
interface TransactionMetadataTrueupBase {
|
|
13601
|
+
readonly discriminator: 'trueup_base';
|
|
13602
|
+
readonly original: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13603
|
+
readonly estimate: io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
13604
|
+
readonly actual: io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
13605
|
+
}
|
|
13606
|
+
|
|
13607
|
+
interface TransactionMetadataTrueupBaseData {
|
|
13608
|
+
readonly source: io.flow.v0.enums.TrueupSource;
|
|
13609
|
+
readonly weights: io.flow.v0.models.TrueupLabelWeights;
|
|
13610
|
+
readonly units: io.flow.v0.models.TrueupLabelUnits;
|
|
13611
|
+
readonly base: io.flow.v0.models.TrueupLabelBaseV2;
|
|
13612
|
+
readonly fuel?: io.flow.v0.models.TrueupLabelFuel;
|
|
13613
|
+
readonly total: number;
|
|
13614
|
+
}
|
|
13615
|
+
|
|
13512
13616
|
interface TransactionMetadataTrueupData {
|
|
13513
13617
|
readonly source: io.flow.v0.enums.TrueupSource;
|
|
13514
13618
|
readonly units: io.flow.v0.models.TrueupLabelUnits;
|
|
@@ -13519,6 +13623,18 @@ declare namespace io.flow.v0.models {
|
|
|
13519
13623
|
readonly dimensional?: io.flow.v0.models.DimensionalWeight;
|
|
13520
13624
|
}
|
|
13521
13625
|
|
|
13626
|
+
interface TransactionMetadataTrueupSurcharge {
|
|
13627
|
+
readonly discriminator: 'trueup_surcharge';
|
|
13628
|
+
readonly original: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13629
|
+
readonly estimate: io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
13630
|
+
readonly actual: io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
13631
|
+
}
|
|
13632
|
+
|
|
13633
|
+
interface TransactionMetadataTrueupSurchargeData {
|
|
13634
|
+
readonly source: io.flow.v0.enums.TrueupSource;
|
|
13635
|
+
readonly surcharge: io.flow.v0.models.TrueupLabelSurcharge;
|
|
13636
|
+
}
|
|
13637
|
+
|
|
13522
13638
|
interface TransactionNetworkDetailsCard {
|
|
13523
13639
|
readonly network_transaction_id?: string;
|
|
13524
13640
|
readonly network?: io.flow.v0.enums.CardType;
|
|
@@ -13556,6 +13672,20 @@ declare namespace io.flow.v0.models {
|
|
|
13556
13672
|
readonly weight: number;
|
|
13557
13673
|
}
|
|
13558
13674
|
|
|
13675
|
+
interface TrueupLabelBaseV2 {
|
|
13676
|
+
readonly amount: number;
|
|
13677
|
+
}
|
|
13678
|
+
|
|
13679
|
+
interface TrueupLabelBaseWeight {
|
|
13680
|
+
readonly weight: number;
|
|
13681
|
+
}
|
|
13682
|
+
|
|
13683
|
+
interface TrueupLabelFuel {
|
|
13684
|
+
readonly amount: number;
|
|
13685
|
+
readonly percentage?: number;
|
|
13686
|
+
readonly per_weight_unit?: number;
|
|
13687
|
+
}
|
|
13688
|
+
|
|
13559
13689
|
interface TrueupLabelSurcharge {
|
|
13560
13690
|
readonly amount: number;
|
|
13561
13691
|
readonly type: io.flow.v0.enums.TrueupSurchargeType;
|
|
@@ -13568,6 +13698,12 @@ declare namespace io.flow.v0.models {
|
|
|
13568
13698
|
readonly length?: io.flow.v0.enums.UnitOfLength;
|
|
13569
13699
|
}
|
|
13570
13700
|
|
|
13701
|
+
interface TrueupLabelWeights {
|
|
13702
|
+
readonly base: io.flow.v0.models.TrueupLabelBaseWeight;
|
|
13703
|
+
readonly dead?: io.flow.v0.models.DeadWeight;
|
|
13704
|
+
readonly dimensional?: io.flow.v0.models.DimensionalWeight;
|
|
13705
|
+
}
|
|
13706
|
+
|
|
13571
13707
|
interface UltimateBeneficiaryOwner {
|
|
13572
13708
|
readonly name: string;
|
|
13573
13709
|
readonly dob: string;
|
|
@@ -13669,11 +13805,6 @@ declare namespace io.flow.v0.models {
|
|
|
13669
13805
|
readonly virtual_card_capture: io.flow.v0.models.VirtualCardCapture;
|
|
13670
13806
|
}
|
|
13671
13807
|
|
|
13672
|
-
interface VirtualCardForm {
|
|
13673
|
-
readonly limit: io.flow.v0.models.Money;
|
|
13674
|
-
readonly attributes?: Record<string, string>;
|
|
13675
|
-
}
|
|
13676
|
-
|
|
13677
13808
|
interface VirtualCardReference {
|
|
13678
13809
|
readonly id: string;
|
|
13679
13810
|
}
|
|
@@ -14034,6 +14165,8 @@ declare namespace io.flow.v0.unions {
|
|
|
14034
14165
|
| io.flow.v0.models.NotificationDeletedV2
|
|
14035
14166
|
| io.flow.v0.models.ManifestedLabelUpserted
|
|
14036
14167
|
| io.flow.v0.models.ManifestedLabelDeleted
|
|
14168
|
+
| io.flow.v0.models.LabelProcessingModificationUpserted
|
|
14169
|
+
| io.flow.v0.models.LabelProcessingModificationDeleted
|
|
14037
14170
|
| io.flow.v0.models.LocalItemUpserted
|
|
14038
14171
|
| io.flow.v0.models.LocalItemDeleted
|
|
14039
14172
|
| io.flow.v0.models.MerchantApplicationUpserted
|
|
@@ -14408,8 +14541,12 @@ declare namespace io.flow.v0.unions {
|
|
|
14408
14541
|
| io.flow.v0.models.TransactionMetadataShippingLabel
|
|
14409
14542
|
| io.flow.v0.models.TransactionMetadataChannel
|
|
14410
14543
|
| io.flow.v0.models.TransactionMetadataTrueup
|
|
14544
|
+
| io.flow.v0.models.TransactionMetadataTrueupBase
|
|
14545
|
+
| io.flow.v0.models.TransactionMetadataTrueupSurcharge
|
|
14411
14546
|
| io.flow.v0.models.TransactionMetadataCarrierCharge
|
|
14412
|
-
| io.flow.v0.models.TransactionMetadataManual
|
|
14547
|
+
| io.flow.v0.models.TransactionMetadataManual
|
|
14548
|
+
| io.flow.v0.models.TransactionMetadataFailedPayout
|
|
14549
|
+
| io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
14413
14550
|
}
|
|
14414
14551
|
|
|
14415
14552
|
export type AbandonedOrderEmailSettings =
|
|
@@ -15392,6 +15529,12 @@ export type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
|
15392
15529
|
export type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
15393
15530
|
export type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|
|
15394
15531
|
export type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
|
|
15532
|
+
export type LabelProcessingModification =
|
|
15533
|
+
io.flow.v0.models.LabelProcessingModification;
|
|
15534
|
+
export type LabelProcessingModificationDeleted =
|
|
15535
|
+
io.flow.v0.models.LabelProcessingModificationDeleted;
|
|
15536
|
+
export type LabelProcessingModificationUpserted =
|
|
15537
|
+
io.flow.v0.models.LabelProcessingModificationUpserted;
|
|
15395
15538
|
export type LabelReference = io.flow.v0.models.LabelReference;
|
|
15396
15539
|
export type LabelRequestMethod = io.flow.v0.enums.LabelRequestMethod;
|
|
15397
15540
|
export type LabelSurcharge = io.flow.v0.models.LabelSurcharge;
|
|
@@ -16558,26 +16701,40 @@ export type TransactionDetailsCard = io.flow.v0.models.TransactionDetailsCard;
|
|
|
16558
16701
|
export type TransactionMetadata = io.flow.v0.unions.TransactionMetadata;
|
|
16559
16702
|
export type TransactionMetadataCarrierCharge =
|
|
16560
16703
|
io.flow.v0.models.TransactionMetadataCarrierCharge;
|
|
16561
|
-
export type TransactionMetadataCarrierChargeOutbound =
|
|
16562
|
-
io.flow.v0.models.TransactionMetadataCarrierChargeOutbound;
|
|
16563
16704
|
export type TransactionMetadataChannel =
|
|
16564
16705
|
io.flow.v0.models.TransactionMetadataChannel;
|
|
16565
16706
|
export type TransactionMetadataChannelCardMetadata =
|
|
16566
16707
|
io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
16567
16708
|
export type TransactionMetadataChannelCardMetadataIssuerSummary =
|
|
16568
16709
|
io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary;
|
|
16710
|
+
export type TransactionMetadataFailedPayout =
|
|
16711
|
+
io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
16712
|
+
export type TransactionMetadataFailedPayoutReference =
|
|
16713
|
+
io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
16569
16714
|
export type TransactionMetadataManual =
|
|
16570
16715
|
io.flow.v0.models.TransactionMetadataManual;
|
|
16571
16716
|
export type TransactionMetadataOriginalTransaction =
|
|
16572
16717
|
io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
16718
|
+
export type TransactionMetadataOutboundTransaction =
|
|
16719
|
+
io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
16720
|
+
export type TransactionMetadataPaymentTransaction =
|
|
16721
|
+
io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
16573
16722
|
export type TransactionMetadataShippingLabel =
|
|
16574
16723
|
io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
16575
16724
|
export type TransactionMetadataShippingLabelCarrier =
|
|
16576
16725
|
io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
16577
16726
|
export type TransactionMetadataTrueup =
|
|
16578
16727
|
io.flow.v0.models.TransactionMetadataTrueup;
|
|
16728
|
+
export type TransactionMetadataTrueupBase =
|
|
16729
|
+
io.flow.v0.models.TransactionMetadataTrueupBase;
|
|
16730
|
+
export type TransactionMetadataTrueupBaseData =
|
|
16731
|
+
io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
16579
16732
|
export type TransactionMetadataTrueupData =
|
|
16580
16733
|
io.flow.v0.models.TransactionMetadataTrueupData;
|
|
16734
|
+
export type TransactionMetadataTrueupSurcharge =
|
|
16735
|
+
io.flow.v0.models.TransactionMetadataTrueupSurcharge;
|
|
16736
|
+
export type TransactionMetadataTrueupSurchargeData =
|
|
16737
|
+
io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
16581
16738
|
export type TransactionNetworkDetailsCard =
|
|
16582
16739
|
io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
16583
16740
|
export type TransactionReference = io.flow.v0.models.TransactionReference;
|
|
@@ -16586,8 +16743,12 @@ export type TransactionUpserted = io.flow.v0.models.TransactionUpserted;
|
|
|
16586
16743
|
export type TransitEstimate = io.flow.v0.models.TransitEstimate;
|
|
16587
16744
|
export type TransitWindow = io.flow.v0.models.TransitWindow;
|
|
16588
16745
|
export type TrueupLabelBase = io.flow.v0.models.TrueupLabelBase;
|
|
16746
|
+
export type TrueupLabelBaseV2 = io.flow.v0.models.TrueupLabelBaseV2;
|
|
16747
|
+
export type TrueupLabelBaseWeight = io.flow.v0.models.TrueupLabelBaseWeight;
|
|
16748
|
+
export type TrueupLabelFuel = io.flow.v0.models.TrueupLabelFuel;
|
|
16589
16749
|
export type TrueupLabelSurcharge = io.flow.v0.models.TrueupLabelSurcharge;
|
|
16590
16750
|
export type TrueupLabelUnits = io.flow.v0.models.TrueupLabelUnits;
|
|
16751
|
+
export type TrueupLabelWeights = io.flow.v0.models.TrueupLabelWeights;
|
|
16591
16752
|
export type TrueupSource = io.flow.v0.enums.TrueupSource;
|
|
16592
16753
|
export type TrueupSurchargeType = io.flow.v0.enums.TrueupSurchargeType;
|
|
16593
16754
|
export type UltimateBeneficiaryOwner =
|
|
@@ -16619,7 +16780,6 @@ export type VirtualCardCaptureUpserted =
|
|
|
16619
16780
|
io.flow.v0.models.VirtualCardCaptureUpserted;
|
|
16620
16781
|
export type VirtualCardCaptureVersion =
|
|
16621
16782
|
io.flow.v0.models.VirtualCardCaptureVersion;
|
|
16622
|
-
export type VirtualCardForm = io.flow.v0.models.VirtualCardForm;
|
|
16623
16783
|
export type VirtualCardReference = io.flow.v0.models.VirtualCardReference;
|
|
16624
16784
|
export type VirtualCardRefund = io.flow.v0.models.VirtualCardRefund;
|
|
16625
16785
|
export type VirtualCardRefundDeleted =
|