@flowio/types 11.24.70 → 11.24.72

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.
@@ -2341,12 +2341,17 @@ declare namespace io.flow.stripe.v0.enums {
2341
2341
  | 'charge.failed'
2342
2342
  | 'charge.pending'
2343
2343
  | 'charge.refunded'
2344
- | 'charge.refund.updated'
2344
+ | 'charge.expired'
2345
2345
  | 'charge.succeeded'
2346
2346
  | 'charge.updated'
2347
+ | 'charge.refund.updated'
2348
+ | 'payment_intent.created'
2347
2349
  | 'payment_intent.amount_capturable_updated'
2348
2350
  | 'payment_intent.payment_failed'
2349
2351
  | 'payment_intent.succeeded'
2352
+ | 'payment_intent.requires_action'
2353
+ | 'payment_intent.canceled'
2354
+ | 'payment_intent.processing'
2350
2355
  | 'source.canceled'
2351
2356
  | 'source.chargeable'
2352
2357
  | 'source.failed';
@@ -2466,6 +2471,13 @@ declare namespace io.flow.stripe.v0.enums {
2466
2471
  | 'sofort'
2467
2472
  | 'three_d_secure';
2468
2473
  type SourceUsageType = 'reusable' | 'single_use';
2474
+ type StoredCredentialTransactionType =
2475
+ | 'setup_on_session'
2476
+ | 'setup_off_session_recurring'
2477
+ | 'setup_off_session_unscheduled'
2478
+ | 'stored_on_session'
2479
+ | 'stored_on_session_recurring'
2480
+ | 'stored_on_session_unscheduled';
2469
2481
  type ThreeDSecureSupport =
2470
2482
  | 'required'
2471
2483
  | 'recommended'
@@ -2577,6 +2589,11 @@ declare namespace io.flow.stripe.v0.models {
2577
2589
  readonly cvc_check?: io.flow.stripe.v0.enums.CheckOutcome;
2578
2590
  }
2579
2591
 
2592
+ interface CardNetworks {
2593
+ readonly available?: string[];
2594
+ readonly preferred?: string;
2595
+ }
2596
+
2580
2597
  interface CardRequest {
2581
2598
  readonly object: string;
2582
2599
  readonly exp_month: string;
@@ -2746,6 +2763,8 @@ declare namespace io.flow.stripe.v0.models {
2746
2763
  readonly order_number?: string;
2747
2764
  readonly authorization_id?: string;
2748
2765
  readonly organization_id?: string;
2766
+ readonly payment_request_id?: string;
2767
+ readonly payment_request_order_reference?: string;
2749
2768
  }
2750
2769
 
2751
2770
  interface NetworkTokenUsed {
@@ -2866,6 +2885,7 @@ declare namespace io.flow.stripe.v0.models {
2866
2885
  interface PaymentIntentConfirmationForm {
2867
2886
  readonly off_session?: boolean;
2868
2887
  readonly payment_method?: string;
2888
+ readonly payment_method_data?: io.flow.stripe.v0.unions.PaymentMethodData;
2869
2889
  readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
2870
2890
  readonly payment_method_types?: string[];
2871
2891
  readonly receipt_email?: string;
@@ -2886,6 +2906,7 @@ declare namespace io.flow.stripe.v0.models {
2886
2906
  readonly metadata?: io.flow.stripe.v0.models.Metadata;
2887
2907
  readonly on_behalf_of?: string;
2888
2908
  readonly payment_method?: string;
2909
+ readonly payment_method_data?: io.flow.stripe.v0.unions.PaymentMethodData;
2889
2910
  readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
2890
2911
  readonly payment_method_types?: string[];
2891
2912
  readonly receipt_email?: string;
@@ -2918,7 +2939,7 @@ declare namespace io.flow.stripe.v0.models {
2918
2939
  readonly id: string;
2919
2940
  readonly object: string;
2920
2941
  readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
2921
- readonly card?: io.flow.stripe.v0.models.SourceCard;
2942
+ readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
2922
2943
  readonly card_present?: any /*object*/;
2923
2944
  readonly created: number;
2924
2945
  readonly customer?: string;
@@ -2933,6 +2954,33 @@ declare namespace io.flow.stripe.v0.models {
2933
2954
  readonly phone?: string;
2934
2955
  }
2935
2956
 
2957
+ interface PaymentMethodCardDetails {
2958
+ readonly brand?: io.flow.stripe.v0.enums.CardBrand;
2959
+ readonly checks?: io.flow.stripe.v0.models.CardChecks;
2960
+ readonly country?: string;
2961
+ readonly exp_month?: number;
2962
+ readonly exp_year?: number;
2963
+ readonly fingerprint?: string;
2964
+ readonly funding?: io.flow.stripe.v0.enums.CardFundingType;
2965
+ readonly last4?: string;
2966
+ readonly networks?: io.flow.stripe.v0.models.CardNetworks;
2967
+ readonly three_d_secure_usage?: io.flow.stripe.v0.models.ThreeDSecureUsage;
2968
+ }
2969
+
2970
+ interface PaymentMethodCardForm {
2971
+ readonly exp_month: string;
2972
+ readonly exp_year: string;
2973
+ readonly number: string;
2974
+ readonly cvc?: string;
2975
+ }
2976
+
2977
+ interface PaymentMethodDataCard {
2978
+ readonly type: 'card';
2979
+ readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
2980
+ readonly metadata?: any /*object*/;
2981
+ readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
2982
+ }
2983
+
2936
2984
  interface PaymentMethodDetailsCard {
2937
2985
  readonly type: 'card';
2938
2986
  readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
@@ -2970,10 +3018,11 @@ declare namespace io.flow.stripe.v0.models {
2970
3018
  readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
2971
3019
  }
2972
3020
 
2973
- interface PaymentMethodForm {
2974
- readonly type: io.flow.stripe.v0.enums.PaymentMethodType;
3021
+ interface PaymentMethodFormCard {
3022
+ readonly type: 'card';
2975
3023
  readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
2976
- readonly card?: io.flow.stripe.v0.models.SourceCardRequest;
3024
+ readonly metadata?: any /*object*/;
3025
+ readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
2977
3026
  }
2978
3027
 
2979
3028
  interface PaymentMethodOptions {
@@ -2981,7 +3030,9 @@ declare namespace io.flow.stripe.v0.models {
2981
3030
  }
2982
3031
 
2983
3032
  interface PaymentMethodOptionsCard {
3033
+ readonly network?: string;
2984
3034
  readonly request_three_d_secure?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
3035
+ readonly stored_credential_transaction_type?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
2985
3036
  }
2986
3037
 
2987
3038
  interface PaymentOutcome {
@@ -3233,6 +3284,10 @@ declare namespace io.flow.stripe.v0.models {
3233
3284
  readonly stripe_js: string;
3234
3285
  }
3235
3286
 
3287
+ interface ThreeDSecureUsage {
3288
+ readonly supported?: boolean;
3289
+ }
3290
+
3236
3291
  interface Token {
3237
3292
  readonly id: string;
3238
3293
  readonly object: string;
@@ -3274,9 +3329,11 @@ declare namespace io.flow.stripe.v0.unions {
3274
3329
  | io.flow.stripe.v0.models.Masterpass
3275
3330
  | io.flow.stripe.v0.models.ApplePay
3276
3331
  | io.flow.stripe.v0.models.VisaCheckout;
3332
+ type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard;
3277
3333
  type PaymentMethodDetails =
3278
3334
  | io.flow.stripe.v0.models.PaymentMethodDetailsCard
3279
3335
  | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
3336
+ type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard;
3280
3337
  }
3281
3338
 
3282
3339
  declare namespace io.flow.customer.v0.enums {
@@ -6411,6 +6468,11 @@ declare namespace io.flow.shopify.markets.v0.enums {
6411
6468
  | 'sale'
6412
6469
  | 'void'
6413
6470
  | 'refund';
6471
+ type ShopifyOrderPaymentGatewayNames =
6472
+ | 'flow_commerce'
6473
+ | 'gift_card'
6474
+ | 'manual'
6475
+ | 'shopify_payments';
6414
6476
  type ShopifyOrderProcessingMethodType =
6415
6477
  | 'checkout'
6416
6478
  | 'direct'
@@ -12489,6 +12551,12 @@ declare namespace io.flow.billing.v0.models {
12489
12551
  readonly updated_at: string;
12490
12552
  }
12491
12553
 
12554
+ interface PendingTransaction {
12555
+ readonly id: string;
12556
+ readonly reason: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
12557
+ readonly reason_set_at: string;
12558
+ }
12559
+
12492
12560
  interface SettlementNoPayout {
12493
12561
  readonly discriminator: 'no_payout';
12494
12562
  readonly placeholder?: string;
@@ -12529,6 +12597,22 @@ declare namespace io.flow.billing.v0.models {
12529
12597
  readonly updated_at: string;
12530
12598
  }
12531
12599
 
12600
+ interface TransactionMetadataChannel {
12601
+ readonly discriminator: 'channel';
12602
+ readonly method: string;
12603
+ readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
12604
+ }
12605
+
12606
+ interface TransactionMetadataChannelCardMetadata {
12607
+ readonly type: io.flow.payment.v0.enums.CardType;
12608
+ readonly issuer: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary;
12609
+ }
12610
+
12611
+ interface TransactionMetadataChannelCardMetadataIssuerSummary {
12612
+ readonly iin: string;
12613
+ readonly country: string;
12614
+ }
12615
+
12532
12616
  interface TransactionMetadataShippingLabel {
12533
12617
  readonly discriminator: 'shipping_label';
12534
12618
  readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
@@ -12589,6 +12673,7 @@ declare namespace io.flow.billing.v0.unions {
12589
12673
  | io.flow.billing.v0.models.SettlementPayout;
12590
12674
  type TransactionMetadata =
12591
12675
  | io.flow.billing.v0.models.TransactionMetadataShippingLabel
12676
+ | io.flow.billing.v0.models.TransactionMetadataChannel
12592
12677
  | io.flow.billing.v0.models.TransactionMetadataTrueup;
12593
12678
  }
12594
12679
 
@@ -13749,8 +13834,8 @@ declare namespace io.flow.apple.pay.v0.enums {
13749
13834
  | 'email'
13750
13835
  | 'name'
13751
13836
  | 'phone'
13752
- | 'postalAddress'
13753
- | 'phoneticName';
13837
+ | 'postal_address'
13838
+ | 'phonetic_name';
13754
13839
  type ApplePayLineItemType = 'final' | 'pending';
13755
13840
  type ApplePayMerchantCapability =
13756
13841
  | 'supports3DS'
@@ -13760,8 +13845,8 @@ declare namespace io.flow.apple.pay.v0.enums {
13760
13845
  type ApplePayShippingType =
13761
13846
  | 'shipping'
13762
13847
  | 'delivery'
13763
- | 'storePickup'
13764
- | 'servicePickup';
13848
+ | 'store_pickup'
13849
+ | 'service_pickup';
13765
13850
  type ApplePaySupportedNetworks =
13766
13851
  | 'amex'
13767
13852
  | 'chinaUnionPay'
@@ -13776,7 +13861,7 @@ declare namespace io.flow.apple.pay.v0.models {
13776
13861
  interface ApplePayLineItem {
13777
13862
  readonly label: string;
13778
13863
  readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
13779
- readonly amount: string;
13864
+ readonly amount: number;
13780
13865
  }
13781
13866
 
13782
13867
  interface ApplePayPaymentContact {
@@ -13827,7 +13912,7 @@ declare namespace io.flow.apple.pay.v0.models {
13827
13912
  interface ApplePayShippingMethod {
13828
13913
  readonly label: string;
13829
13914
  readonly detail: string;
13830
- readonly amount: string;
13915
+ readonly amount: number;
13831
13916
  readonly identifier: string;
13832
13917
  }
13833
13918
  }
@@ -15496,22 +15581,21 @@ declare namespace io.flow.internal.v0.enums {
15496
15581
  type PromptTarget = 'browse' | 'checkout';
15497
15582
  type QueuedRecordType =
15498
15583
  | 'capture'
15499
- | 'capture_deletion'
15500
15584
  | 'channel_transaction'
15501
15585
  | 'consumer_invoice'
15502
15586
  | 'fulfillment_in_transit'
15503
15587
  | 'fulfillment_shipping_notification'
15504
15588
  | 'fulfillment_external'
15589
+ | 'fulfillment_order_cancellation'
15505
15590
  | 'label_tracking_summary'
15506
15591
  | 'label_invoice_request'
15507
- | 'label_invoice_response'
15508
- | 'label_invoice_response_file'
15592
+ | 'carrier_charge'
15593
+ | 'carrier_charge_file'
15509
15594
  | 'label_origin'
15510
15595
  | 'order'
15511
15596
  | 'order_identifier'
15512
15597
  | 'organization_onboarding_state'
15513
15598
  | 'refund'
15514
- | 'refund_deletion'
15515
15599
  | 'refund_over_capture'
15516
15600
  | 'sales_record'
15517
15601
  | 'statement_batch'
@@ -17114,6 +17198,53 @@ declare namespace io.flow.internal.v0.models {
17114
17198
  readonly error_message?: string;
17115
17199
  }
17116
17200
 
17201
+ interface CarrierChargeFile {
17202
+ readonly id: string;
17203
+ readonly url: string;
17204
+ readonly created_at: string;
17205
+ readonly result?: io.flow.internal.v0.models.CarrierChargeFileResult;
17206
+ }
17207
+
17208
+ interface CarrierChargeFileForm {
17209
+ readonly url: string;
17210
+ }
17211
+
17212
+ interface CarrierChargeFileResult {
17213
+ readonly processed_at: string;
17214
+ readonly number_lines_successful: number;
17215
+ readonly number_lines_with_errors: number;
17216
+ readonly errors_url?: string;
17217
+ }
17218
+
17219
+ interface CarrierChargeFormLabel {
17220
+ readonly discriminator: 'label';
17221
+ readonly id: string;
17222
+ readonly label_invoice_request_id: string;
17223
+ readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
17224
+ readonly base: io.flow.internal.v0.models.LabelBase;
17225
+ readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
17226
+ readonly total: number;
17227
+ readonly attributes?: Record<string, string>;
17228
+ }
17229
+
17230
+ interface CarrierChargeFormReturnToOrigin {
17231
+ readonly discriminator: 'return_to_origin';
17232
+ readonly id: string;
17233
+ readonly carrier_id: string;
17234
+ readonly carrier_tracking_number: string;
17235
+ readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
17236
+ readonly base: io.flow.internal.v0.models.LabelBase;
17237
+ readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
17238
+ readonly total: number;
17239
+ readonly attributes?: Record<string, string>;
17240
+ }
17241
+
17242
+ interface CarrierChargeUnits {
17243
+ readonly currency: string;
17244
+ readonly weight: io.flow.units.v0.enums.UnitOfWeight;
17245
+ readonly length?: io.flow.units.v0.enums.UnitOfLength;
17246
+ }
17247
+
17117
17248
  interface CarrierInvoice {
17118
17249
  readonly number: string;
17119
17250
  readonly timestamp: string;
@@ -21847,16 +21978,28 @@ declare namespace io.flow.internal.v0.models {
21847
21978
  interface FulfillmentProofExternalFulfillmentProofReference {
21848
21979
  readonly discriminator: 'external_fulfillment';
21849
21980
  readonly id: string;
21981
+ readonly carrier_id?: string;
21982
+ readonly carrier_service_id?: string;
21983
+ readonly carrier_tracking_number?: string;
21984
+ readonly label_id?: string;
21850
21985
  }
21851
21986
 
21852
21987
  interface FulfillmentProofLabelTrackingReference {
21853
21988
  readonly discriminator: 'label_tracking';
21854
21989
  readonly id: string;
21990
+ readonly carrier_id?: string;
21991
+ readonly carrier_service_id?: string;
21992
+ readonly carrier_tracking_number?: string;
21993
+ readonly label_id?: string;
21855
21994
  }
21856
21995
 
21857
21996
  interface FulfillmentProofShippingNotificationReference {
21858
21997
  readonly discriminator: 'shipping_notification';
21859
21998
  readonly id: string;
21999
+ readonly carrier_id?: string;
22000
+ readonly carrier_service_id?: string;
22001
+ readonly carrier_tracking_number?: string;
22002
+ readonly label_id?: string;
21860
22003
  }
21861
22004
 
21862
22005
  interface FulfillmentReference {
@@ -23488,33 +23631,6 @@ declare namespace io.flow.internal.v0.models {
23488
23631
  readonly label_invoice_request: io.flow.internal.v0.models.LabelInvoiceRequest;
23489
23632
  }
23490
23633
 
23491
- interface LabelInvoiceResponseFile {
23492
- readonly id: string;
23493
- readonly url: string;
23494
- readonly created_at: string;
23495
- readonly result?: io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
23496
- }
23497
-
23498
- interface LabelInvoiceResponseFileForm {
23499
- readonly url: string;
23500
- }
23501
-
23502
- interface LabelInvoiceResponseFileResult {
23503
- readonly processed_at: string;
23504
- readonly number_lines_successful: number;
23505
- readonly number_lines_with_errors: number;
23506
- readonly errors_url?: string;
23507
- }
23508
-
23509
- interface LabelInvoiceResponseForm {
23510
- readonly id: string;
23511
- readonly label_invoice_request_id: string;
23512
- readonly units: io.flow.internal.v0.models.LabelResponseUnits;
23513
- readonly base: io.flow.internal.v0.models.LabelBase;
23514
- readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
23515
- readonly total: number;
23516
- }
23517
-
23518
23634
  interface LabelMetadata {
23519
23635
  readonly ratecard: io.flow.internal.v0.models.MetadataRatecard;
23520
23636
  readonly weights: io.flow.internal.v0.models.MetadataWeights;
@@ -23550,12 +23666,6 @@ declare namespace io.flow.internal.v0.models {
23550
23666
  readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
23551
23667
  }
23552
23668
 
23553
- interface LabelResponseUnits {
23554
- readonly currency: string;
23555
- readonly weight: io.flow.units.v0.enums.UnitOfWeight;
23556
- readonly length?: io.flow.units.v0.enums.UnitOfLength;
23557
- }
23558
-
23559
23669
  interface LabelSummary {
23560
23670
  readonly id: string;
23561
23671
  readonly commercial_invoice?: string;
@@ -24364,6 +24474,10 @@ declare namespace io.flow.internal.v0.models {
24364
24474
  }
24365
24475
 
24366
24476
  interface MerchantCharges {
24477
+ readonly adjustment: number;
24478
+ readonly reversal: number;
24479
+ readonly tax: number;
24480
+ readonly duty: number;
24367
24481
  readonly labels: number;
24368
24482
  readonly total: number;
24369
24483
  }
@@ -25018,6 +25132,7 @@ declare namespace io.flow.internal.v0.models {
25018
25132
  readonly id: string;
25019
25133
  readonly deactivate_at: string;
25020
25134
  readonly created_at: string;
25135
+ readonly reason?: string;
25021
25136
  }
25022
25137
 
25023
25138
  interface OrganizationDeactivationDeleted {
@@ -25030,6 +25145,7 @@ declare namespace io.flow.internal.v0.models {
25030
25145
 
25031
25146
  interface OrganizationDeactivationForm {
25032
25147
  readonly deactivate_at: string;
25148
+ readonly reason?: string;
25033
25149
  }
25034
25150
 
25035
25151
  interface OrganizationDeactivationUpserted {
@@ -28635,6 +28751,9 @@ declare namespace io.flow.internal.v0.unions {
28635
28751
  | io.flow.internal.v0.models.BlazeApplepayAvailabilityRequest
28636
28752
  | io.flow.internal.v0.models.BlazePaymentAuthStartMessage
28637
28753
  | io.flow.internal.v0.models.BlazePaymentAuthCompleteMessage;
28754
+ type CarrierChargeForm =
28755
+ | io.flow.internal.v0.models.CarrierChargeFormLabel
28756
+ | io.flow.internal.v0.models.CarrierChargeFormReturnToOrigin;
28638
28757
  type CarrierCredentials =
28639
28758
  | io.flow.internal.v0.models.SfExpress
28640
28759
  | io.flow.internal.v0.models.DhlEcommerce
@@ -30028,6 +30147,17 @@ export type CarrierAccountUpsertedV2 =
30028
30147
  io.flow.internal.v0.models.CarrierAccountUpsertedV2;
30029
30148
  export type CarrierAccountValidation =
30030
30149
  io.flow.internal.v0.models.CarrierAccountValidation;
30150
+ export type CarrierChargeFile = io.flow.internal.v0.models.CarrierChargeFile;
30151
+ export type CarrierChargeFileForm =
30152
+ io.flow.internal.v0.models.CarrierChargeFileForm;
30153
+ export type CarrierChargeFileResult =
30154
+ io.flow.internal.v0.models.CarrierChargeFileResult;
30155
+ export type CarrierChargeForm = io.flow.internal.v0.unions.CarrierChargeForm;
30156
+ export type CarrierChargeFormLabel =
30157
+ io.flow.internal.v0.models.CarrierChargeFormLabel;
30158
+ export type CarrierChargeFormReturnToOrigin =
30159
+ io.flow.internal.v0.models.CarrierChargeFormReturnToOrigin;
30160
+ export type CarrierChargeUnits = io.flow.internal.v0.models.CarrierChargeUnits;
30031
30161
  export type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
30032
30162
  export type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
30033
30163
  export type CarrierLabelGenerationMethod =
@@ -32069,14 +32199,6 @@ export type LabelInvoiceRequestDeleted =
32069
32199
  io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
32070
32200
  export type LabelInvoiceRequestUpserted =
32071
32201
  io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
32072
- export type LabelInvoiceResponseFile =
32073
- io.flow.internal.v0.models.LabelInvoiceResponseFile;
32074
- export type LabelInvoiceResponseFileForm =
32075
- io.flow.internal.v0.models.LabelInvoiceResponseFileForm;
32076
- export type LabelInvoiceResponseFileResult =
32077
- io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
32078
- export type LabelInvoiceResponseForm =
32079
- io.flow.internal.v0.models.LabelInvoiceResponseForm;
32080
32202
  export type LabelMetadata = io.flow.internal.v0.models.LabelMetadata;
32081
32203
  export type LabelRequestError = io.flow.internal.v0.models.LabelRequestError;
32082
32204
  export type LabelRequestErrorDeleted =
@@ -32085,7 +32207,6 @@ export type LabelRequestErrorHandlingResponsibility =
32085
32207
  io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
32086
32208
  export type LabelRequestErrorUpserted =
32087
32209
  io.flow.internal.v0.models.LabelRequestErrorUpserted;
32088
- export type LabelResponseUnits = io.flow.internal.v0.models.LabelResponseUnits;
32089
32210
  export type LabelSummary = io.flow.internal.v0.models.LabelSummary;
32090
32211
  export type LabelSurcharge = io.flow.internal.v0.models.LabelSurcharge;
32091
32212
  export type LabelSurchargeDetail =