@flowio/api-internal-prop-types 9.24.69 → 9.24.71

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.
@@ -401,6 +401,11 @@ T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
401
401
 
402
402
  T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl']);
403
403
 
404
+ T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
405
+ iin: PropTypes.string.isRequired,
406
+ country: PropTypes.string.isRequired,
407
+ });
408
+
404
409
  T['io.flow.billing.v0.models.payout_reference'] = PropTypes.exact({
405
410
  id: PropTypes.string.isRequired,
406
411
  });
@@ -414,6 +419,12 @@ T['io.flow.billing.v0.enums.transaction_payout_pending_reason'] = PropTypes.oneO
414
419
  'waiting_for_positive_account_balance',
415
420
  ]);
416
421
 
422
+ T['io.flow.billing.v0.models.pending_transaction'] = PropTypes.exact({
423
+ id: PropTypes.string.isRequired,
424
+ reason: T['io.flow.billing.v0.enums.transaction_payout_pending_reason'].isRequired,
425
+ reason_set_at: PropTypes.string.isRequired,
426
+ });
427
+
417
428
  T['io.flow.billing.v0.models.transaction_reference'] = PropTypes.exact({
418
429
  id: PropTypes.string.isRequired,
419
430
  });
@@ -1801,7 +1812,7 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
1801
1812
  country_code: PropTypes.string,
1802
1813
  });
1803
1814
 
1804
- T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postalAddress', 'phoneticName']);
1815
+ T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postal_address', 'phonetic_name']);
1805
1816
 
1806
1817
  T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
1807
1818
  'amex',
@@ -1813,12 +1824,12 @@ T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
1813
1824
  'visa',
1814
1825
  ]);
1815
1826
 
1816
- T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', 'storePickup', 'servicePickup']);
1827
+ T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', 'store_pickup', 'service_pickup']);
1817
1828
 
1818
1829
  T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
1819
1830
  label: PropTypes.string.isRequired,
1820
1831
  detail: PropTypes.string.isRequired,
1821
- amount: PropTypes.string.isRequired,
1832
+ amount: PropTypes.number.isRequired,
1822
1833
  identifier: PropTypes.string.isRequired,
1823
1834
  });
1824
1835
 
@@ -1827,7 +1838,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(
1827
1838
  T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
1828
1839
  label: PropTypes.string.isRequired,
1829
1840
  type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
1830
- amount: PropTypes.string.isRequired,
1841
+ amount: PropTypes.number.isRequired,
1831
1842
  });
1832
1843
 
1833
1844
  T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
@@ -4822,6 +4833,13 @@ T['io.flow.stripe.v0.models.three_d_secure'] = PropTypes.exact({
4822
4833
  customer: PropTypes.string,
4823
4834
  });
4824
4835
 
4836
+ T['io.flow.stripe.v0.models.source_card_request'] = PropTypes.exact({
4837
+ exp_month: PropTypes.string.isRequired,
4838
+ exp_year: PropTypes.string.isRequired,
4839
+ number: PropTypes.string.isRequired,
4840
+ cvc: PropTypes.string,
4841
+ });
4842
+
4825
4843
  T['io.flow.stripe.v0.enums.klarna_product'] = PropTypes.oneOf(['payment']);
4826
4844
 
4827
4845
  T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
@@ -4835,19 +4853,21 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
4835
4853
  locale: PropTypes.string,
4836
4854
  });
4837
4855
 
4856
+ T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
4838
4857
  T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
4839
4858
  T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf(['lost_or_stolen_card', 'expired_or_canceled_card', 'unknown']);
4840
4859
  T['io.flow.stripe.v0.enums.refund_status'] = PropTypes.oneOf(['succeeded', 'failed', 'pending', 'canceled']);
4841
- T['io.flow.stripe.v0.enums.request_three_d_secure_type'] = PropTypes.oneOf(['automatic', 'any']);
4842
4860
 
4843
- T['io.flow.stripe.v0.models.source_card_request'] = PropTypes.exact({
4844
- exp_month: PropTypes.string.isRequired,
4845
- exp_year: PropTypes.string.isRequired,
4846
- number: PropTypes.string.isRequired,
4847
- cvc: PropTypes.string,
4848
- });
4861
+ T['io.flow.stripe.v0.enums.stored_credential_transaction_type'] = PropTypes.oneOf([
4862
+ 'setup_on_session',
4863
+ 'setup_off_session_recurring',
4864
+ 'setup_off_session_unscheduled',
4865
+ 'stored_on_session',
4866
+ 'stored_on_session_recurring',
4867
+ 'stored_on_session_unscheduled',
4868
+ ]);
4849
4869
 
4850
- T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
4870
+ T['io.flow.stripe.v0.enums.request_three_d_secure_type'] = PropTypes.oneOf(['automatic', 'any']);
4851
4871
 
4852
4872
  T['io.flow.stripe.v0.enums.preferred_locale_klarna'] = PropTypes.oneOf([
4853
4873
  'de-AT',
@@ -4957,10 +4977,26 @@ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
4957
4977
  type: PropTypes.string,
4958
4978
  });
4959
4979
 
4960
- T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
4980
+ T['io.flow.stripe.v0.models.payment_method_card_form'] = PropTypes.exact({
4981
+ exp_month: PropTypes.string.isRequired,
4982
+ exp_year: PropTypes.string.isRequired,
4983
+ number: PropTypes.string.isRequired,
4984
+ cvc: PropTypes.string,
4985
+ });
4986
+
4987
+ T['io.flow.stripe.v0.models.three_d_secure_usage'] = PropTypes.exact({
4988
+ supported: PropTypes.bool,
4989
+ });
4990
+
4991
+ T['io.flow.stripe.v0.models.card_networks'] = PropTypes.exact({
4992
+ available: PropTypes.arrayOf(PropTypes.string),
4993
+ preferred: PropTypes.string,
4994
+ });
4961
4995
 
4962
4996
  T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
4997
+ network: PropTypes.string,
4963
4998
  request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
4999
+ stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
4964
5000
  });
4965
5001
 
4966
5002
  T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
@@ -4979,16 +5015,6 @@ T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
4979
5015
  card: T['io.flow.stripe.v0.models.payment_method_options_card'],
4980
5016
  });
4981
5017
 
4982
- T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
4983
- off_session: PropTypes.bool,
4984
- payment_method: PropTypes.string,
4985
- payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
4986
- payment_method_types: PropTypes.arrayOf(PropTypes.string),
4987
- receipt_email: PropTypes.string,
4988
- save_payment_method: PropTypes.bool,
4989
- setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
4990
- });
4991
-
4992
5018
  T['io.flow.stripe.v0.enums.confirmation_method'] = PropTypes.oneOf(['automatic', 'manual']);
4993
5019
  T['io.flow.stripe.v0.enums.capture_method'] = PropTypes.oneOf(['automatic', 'manual']);
4994
5020
 
@@ -5111,10 +5137,33 @@ T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
5111
5137
  phone: PropTypes.string,
5112
5138
  });
5113
5139
 
5114
- T['io.flow.stripe.v0.models.payment_method_form'] = PropTypes.exact({
5115
- type: T['io.flow.stripe.v0.enums.payment_method_type'].isRequired,
5140
+ T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
5141
+ type: PropTypes.oneOf(['card']).isRequired,
5116
5142
  billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
5117
- card: T['io.flow.stripe.v0.models.source_card_request'],
5143
+ metadata: PropTypes.object,
5144
+ card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
5145
+ });
5146
+
5147
+ T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_form_card']]);
5148
+
5149
+ T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
5150
+ type: PropTypes.oneOf(['card']).isRequired,
5151
+ billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
5152
+ metadata: PropTypes.object,
5153
+ card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
5154
+ });
5155
+
5156
+ T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_data_card']]);
5157
+
5158
+ T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
5159
+ off_session: PropTypes.bool,
5160
+ payment_method: PropTypes.string,
5161
+ payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
5162
+ payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
5163
+ payment_method_types: PropTypes.arrayOf(PropTypes.string),
5164
+ receipt_email: PropTypes.string,
5165
+ save_payment_method: PropTypes.bool,
5166
+ setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
5118
5167
  });
5119
5168
 
5120
5169
  T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
@@ -5232,6 +5281,8 @@ T['io.flow.stripe.v0.models.metadata'] = PropTypes.exact({
5232
5281
  order_number: PropTypes.string,
5233
5282
  authorization_id: PropTypes.string,
5234
5283
  organization_id: PropTypes.string,
5284
+ payment_request_id: PropTypes.string,
5285
+ payment_request_order_reference: PropTypes.string,
5235
5286
  });
5236
5287
 
5237
5288
  T['io.flow.stripe.v0.models.refund_request'] = PropTypes.exact({
@@ -5257,6 +5308,7 @@ T['io.flow.stripe.v0.models.payment_intent_form'] = PropTypes.exact({
5257
5308
  metadata: T['io.flow.stripe.v0.models.metadata'],
5258
5309
  on_behalf_of: PropTypes.string,
5259
5310
  payment_method: PropTypes.string,
5311
+ payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
5260
5312
  payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
5261
5313
  payment_method_types: PropTypes.arrayOf(PropTypes.string),
5262
5314
  receipt_email: PropTypes.string,
@@ -5444,11 +5496,30 @@ T['io.flow.stripe.v0.models.source_card'] = PropTypes.exact({
5444
5496
  dynamic_last4: PropTypes.string,
5445
5497
  });
5446
5498
 
5499
+ T['io.flow.stripe.v0.models.card_checks'] = PropTypes.exact({
5500
+ address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
5501
+ address_postal_code_check: T['io.flow.stripe.v0.enums.check_outcome'],
5502
+ cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
5503
+ });
5504
+
5505
+ T['io.flow.stripe.v0.models.payment_method_card_details'] = PropTypes.exact({
5506
+ brand: T['io.flow.stripe.v0.enums.card_brand'],
5507
+ checks: T['io.flow.stripe.v0.models.card_checks'],
5508
+ country: PropTypes.string,
5509
+ exp_month: PropTypes.number,
5510
+ exp_year: PropTypes.number,
5511
+ fingerprint: PropTypes.string,
5512
+ funding: T['io.flow.stripe.v0.enums.card_funding_type'],
5513
+ last4: PropTypes.string,
5514
+ networks: T['io.flow.stripe.v0.models.card_networks'],
5515
+ three_d_secure_usage: T['io.flow.stripe.v0.models.three_d_secure_usage'],
5516
+ });
5517
+
5447
5518
  T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
5448
5519
  id: PropTypes.string.isRequired,
5449
5520
  object: PropTypes.string.isRequired,
5450
5521
  billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
5451
- card: T['io.flow.stripe.v0.models.source_card'],
5522
+ card: T['io.flow.stripe.v0.models.payment_method_card_details'],
5452
5523
  card_present: PropTypes.object,
5453
5524
  created: PropTypes.number.isRequired,
5454
5525
  customer: PropTypes.string,
@@ -5467,12 +5538,6 @@ T['io.flow.stripe.v0.models.last_payment_error'] = PropTypes.exact({
5467
5538
  type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
5468
5539
  });
5469
5540
 
5470
- T['io.flow.stripe.v0.models.card_checks'] = PropTypes.exact({
5471
- address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
5472
- address_postal_code_check: T['io.flow.stripe.v0.enums.check_outcome'],
5473
- cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
5474
- });
5475
-
5476
5541
  T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
5477
5542
 
5478
5543
  T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
@@ -10449,6 +10514,7 @@ T['io.flow.internal.v0.models.organization_deactivation'] = PropTypes.exact({
10449
10514
  id: PropTypes.string.isRequired,
10450
10515
  deactivate_at: PropTypes.string.isRequired,
10451
10516
  created_at: PropTypes.string.isRequired,
10517
+ reason: PropTypes.string,
10452
10518
  });
10453
10519
 
10454
10520
  T['io.flow.internal.v0.models.organization_deactivation_upserted'] = PropTypes.exact({
@@ -11879,36 +11945,6 @@ T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
11879
11945
  name: PropTypes.string.isRequired,
11880
11946
  });
11881
11947
 
11882
- T['io.flow.internal.v0.models.label_surcharge_single_form'] = PropTypes.exact({
11883
- amount: PropTypes.number.isRequired,
11884
- percentage: PropTypes.number,
11885
- fee_per_weight_unit: PropTypes.number,
11886
- });
11887
-
11888
- T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
11889
- fuel: T['io.flow.internal.v0.models.label_surcharge_single_form'],
11890
- remote_area: T['io.flow.internal.v0.models.label_surcharge_single_form'],
11891
- oversize: T['io.flow.internal.v0.models.label_surcharge_single_form'],
11892
- duties_paid: T['io.flow.internal.v0.models.label_surcharge_single_form'],
11893
- emergency: T['io.flow.internal.v0.models.label_surcharge_single_form'],
11894
- peak: T['io.flow.internal.v0.models.label_surcharge_single_form'],
11895
- address_correction: T['io.flow.internal.v0.models.label_surcharge_single_form'],
11896
- });
11897
-
11898
- T['io.flow.internal.v0.models.label_invoice_response_file_result'] = PropTypes.exact({
11899
- processed_at: PropTypes.string.isRequired,
11900
- number_lines_successful: PropTypes.number.isRequired,
11901
- number_lines_with_errors: PropTypes.number.isRequired,
11902
- errors_url: PropTypes.string,
11903
- });
11904
-
11905
- T['io.flow.internal.v0.models.label_invoice_response_file'] = PropTypes.exact({
11906
- id: PropTypes.string.isRequired,
11907
- url: PropTypes.string.isRequired,
11908
- created_at: PropTypes.string.isRequired,
11909
- result: T['io.flow.internal.v0.models.label_invoice_response_file_result'],
11910
- });
11911
-
11912
11948
  T['io.flow.internal.v0.models.metadata_weights'] = PropTypes.exact({
11913
11949
  dead: T['io.flow.internal.v0.models.weights_dead'],
11914
11950
  dimensional: T['io.flow.internal.v0.models.weights_dimensional'],
@@ -11935,72 +11971,6 @@ T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
11935
11971
  'address_correction',
11936
11972
  ]);
11937
11973
 
11938
- T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
11939
- T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
11940
-
11941
- T['io.flow.billing.v0.models.trueup_label_units'] = PropTypes.exact({
11942
- weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
11943
- length: T['io.flow.units.v0.enums.unit_of_length'],
11944
- });
11945
-
11946
- T['io.flow.billing.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
11947
- source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
11948
- units: T['io.flow.billing.v0.models.trueup_label_units'].isRequired,
11949
- base: T['io.flow.billing.v0.models.trueup_label_base'].isRequired,
11950
- surcharges: PropTypes.arrayOf(T['io.flow.billing.v0.models.trueup_label_surcharge']).isRequired,
11951
- total: PropTypes.number.isRequired,
11952
- });
11953
-
11954
- T['io.flow.billing.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
11955
- discriminator: PropTypes.oneOf(['trueup']).isRequired,
11956
- estimate: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
11957
- actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
11958
- });
11959
-
11960
- T['io.flow.billing.true.up.v0.models.label_response_units'] = PropTypes.exact({
11961
- currency: PropTypes.string.isRequired,
11962
- weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
11963
- length: T['io.flow.units.v0.enums.unit_of_length'],
11964
- });
11965
-
11966
- T['io.flow.billing.true.up.v0.models.label_invoice_response_form'] = PropTypes.exact({
11967
- id: PropTypes.string.isRequired,
11968
- label_invoice_request_id: PropTypes.string.isRequired,
11969
- units: T['io.flow.billing.true.up.v0.models.label_response_units'].isRequired,
11970
- base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
11971
- surcharges: T['io.flow.billing.true.up.v0.models.label_surcharge_form'].isRequired,
11972
- total: PropTypes.number.isRequired,
11973
- });
11974
-
11975
- T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
11976
- currency: PropTypes.string.isRequired,
11977
- weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
11978
- length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
11979
- });
11980
-
11981
- T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
11982
- id: PropTypes.string.isRequired,
11983
- label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
11984
- units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
11985
- base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
11986
- surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
11987
- total: PropTypes.number.isRequired,
11988
- destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
11989
- metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
11990
- });
11991
-
11992
- T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
11993
- units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
11994
- base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
11995
- surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
11996
- });
11997
-
11998
- T['io.flow.internal.v0.models.label_response_units'] = PropTypes.exact({
11999
- currency: PropTypes.string.isRequired,
12000
- weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
12001
- length: T['io.flow.units.v0.enums.unit_of_length'],
12002
- });
12003
-
12004
11974
  T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
12005
11975
  ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
12006
11976
  weights: T['io.flow.internal.v0.models.metadata_weights'].isRequired,
@@ -12016,26 +11986,6 @@ T['io.flow.internal.v0.models.label_surcharge'] = PropTypes.exact({
12016
11986
  detail: T['io.flow.internal.v0.unions.label_surcharge_detail'].isRequired,
12017
11987
  });
12018
11988
 
12019
- T['io.flow.internal.v0.models.label_base'] = PropTypes.exact({
12020
- amount: PropTypes.number.isRequired,
12021
- weight: PropTypes.number.isRequired,
12022
- });
12023
-
12024
- T['io.flow.internal.v0.models.label_invoice_response_form'] = PropTypes.exact({
12025
- id: PropTypes.string.isRequired,
12026
- label_invoice_request_id: PropTypes.string.isRequired,
12027
- units: T['io.flow.internal.v0.models.label_response_units'].isRequired,
12028
- base: T['io.flow.internal.v0.models.label_base'].isRequired,
12029
- surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
12030
- total: PropTypes.number.isRequired,
12031
- });
12032
-
12033
- T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
12034
- currency: PropTypes.string.isRequired,
12035
- weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
12036
- length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
12037
- });
12038
-
12039
11989
  T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
12040
11990
  id: PropTypes.string.isRequired,
12041
11991
  carrier_service_id: PropTypes.string.isRequired,
@@ -12044,25 +11994,6 @@ T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
12044
11994
  created_at: PropTypes.string.isRequired,
12045
11995
  });
12046
11996
 
12047
- T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
12048
- id: PropTypes.string.isRequired,
12049
- label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
12050
- units: T['io.flow.internal.v0.models.label_units'].isRequired,
12051
- base: T['io.flow.internal.v0.models.label_base'].isRequired,
12052
- surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
12053
- total: PropTypes.number.isRequired,
12054
- destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
12055
- metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
12056
- });
12057
-
12058
- T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
12059
- discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
12060
- event_id: PropTypes.string.isRequired,
12061
- timestamp: PropTypes.string.isRequired,
12062
- organization: PropTypes.string.isRequired,
12063
- label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
12064
- });
12065
-
12066
11997
  T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
12067
11998
  id: PropTypes.string.isRequired,
12068
11999
  item_identifier: PropTypes.string,
@@ -12259,6 +12190,17 @@ T['io.flow.payment.v0.enums.card_type'] = PropTypes.oneOf([
12259
12190
  'visa',
12260
12191
  ]);
12261
12192
 
12193
+ T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'] = PropTypes.exact({
12194
+ type: T['io.flow.payment.v0.enums.card_type'].isRequired,
12195
+ issuer: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'].isRequired,
12196
+ });
12197
+
12198
+ T['io.flow.billing.v0.models.transaction_metadata_channel'] = PropTypes.exact({
12199
+ discriminator: PropTypes.oneOf(['channel']).isRequired,
12200
+ method: PropTypes.string.isRequired,
12201
+ card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
12202
+ });
12203
+
12262
12204
  T['io.flow.payment.v0.models.card_confirmation_summary'] = PropTypes.exact({
12263
12205
  discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
12264
12206
  type: T['io.flow.payment.v0.enums.card_type'],
@@ -12836,19 +12778,35 @@ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropType
12836
12778
  T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
12837
12779
  discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
12838
12780
  id: PropTypes.string.isRequired,
12781
+ carrier_id: PropTypes.string,
12782
+ carrier_service_id: PropTypes.string,
12783
+ carrier_tracking_number: PropTypes.string,
12784
+ label_id: PropTypes.string,
12839
12785
  });
12840
12786
 
12841
12787
  T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
12842
12788
  discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
12843
12789
  id: PropTypes.string.isRequired,
12790
+ carrier_id: PropTypes.string,
12791
+ carrier_service_id: PropTypes.string,
12792
+ carrier_tracking_number: PropTypes.string,
12793
+ label_id: PropTypes.string,
12844
12794
  });
12845
12795
 
12846
12796
  T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
12847
12797
  discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
12848
12798
  id: PropTypes.string.isRequired,
12799
+ carrier_id: PropTypes.string,
12800
+ carrier_service_id: PropTypes.string,
12801
+ carrier_tracking_number: PropTypes.string,
12802
+ label_id: PropTypes.string,
12849
12803
  });
12850
12804
 
12851
12805
  T['io.flow.internal.v0.models.merchant_charges'] = PropTypes.exact({
12806
+ adjustment: PropTypes.number.isRequired,
12807
+ reversal: PropTypes.number.isRequired,
12808
+ tax: PropTypes.number.isRequired,
12809
+ duty: PropTypes.number.isRequired,
12852
12810
  labels: PropTypes.number.isRequired,
12853
12811
  total: PropTypes.number.isRequired,
12854
12812
  });
@@ -14275,11 +14233,6 @@ T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
14275
14233
  identifiers: PropTypes.objectOf(PropTypes.string),
14276
14234
  });
14277
14235
 
14278
- T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
14279
- T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
14280
- T['io.flow.billing.v0.models.transaction_metadata_trueup'],
14281
- ]);
14282
-
14283
14236
  T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
14284
14237
  id: PropTypes.string.isRequired,
14285
14238
  });
@@ -19361,6 +19314,166 @@ T['io.flow.internal.v0.models.catalog_import_request'] = PropTypes.exact({
19361
19314
  filename: PropTypes.string,
19362
19315
  });
19363
19316
 
19317
+ T['io.flow.internal.v0.models.label_surcharge_single_form'] = PropTypes.exact({
19318
+ amount: PropTypes.number.isRequired,
19319
+ percentage: PropTypes.number,
19320
+ fee_per_weight_unit: PropTypes.number,
19321
+ });
19322
+
19323
+ T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
19324
+ T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
19325
+
19326
+ T['io.flow.billing.v0.models.trueup_label_units'] = PropTypes.exact({
19327
+ weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
19328
+ length: T['io.flow.units.v0.enums.unit_of_length'],
19329
+ });
19330
+
19331
+ T['io.flow.billing.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
19332
+ source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
19333
+ units: T['io.flow.billing.v0.models.trueup_label_units'].isRequired,
19334
+ base: T['io.flow.billing.v0.models.trueup_label_base'].isRequired,
19335
+ surcharges: PropTypes.arrayOf(T['io.flow.billing.v0.models.trueup_label_surcharge']).isRequired,
19336
+ total: PropTypes.number.isRequired,
19337
+ });
19338
+
19339
+ T['io.flow.billing.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
19340
+ discriminator: PropTypes.oneOf(['trueup']).isRequired,
19341
+ estimate: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
19342
+ actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
19343
+ });
19344
+
19345
+ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
19346
+ T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
19347
+ T['io.flow.billing.v0.models.transaction_metadata_channel'],
19348
+ T['io.flow.billing.v0.models.transaction_metadata_trueup'],
19349
+ ]);
19350
+
19351
+ T['io.flow.billing.true.up.v0.models.label_response_units'] = PropTypes.exact({
19352
+ currency: PropTypes.string.isRequired,
19353
+ weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
19354
+ length: T['io.flow.units.v0.enums.unit_of_length'],
19355
+ });
19356
+
19357
+ T['io.flow.billing.true.up.v0.models.label_invoice_response_form'] = PropTypes.exact({
19358
+ id: PropTypes.string.isRequired,
19359
+ label_invoice_request_id: PropTypes.string.isRequired,
19360
+ units: T['io.flow.billing.true.up.v0.models.label_response_units'].isRequired,
19361
+ base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
19362
+ surcharges: T['io.flow.billing.true.up.v0.models.label_surcharge_form'].isRequired,
19363
+ total: PropTypes.number.isRequired,
19364
+ });
19365
+
19366
+ T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
19367
+ currency: PropTypes.string.isRequired,
19368
+ weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
19369
+ length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
19370
+ });
19371
+
19372
+ T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
19373
+ id: PropTypes.string.isRequired,
19374
+ label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
19375
+ units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
19376
+ base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
19377
+ surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
19378
+ total: PropTypes.number.isRequired,
19379
+ destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
19380
+ metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
19381
+ });
19382
+
19383
+ T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
19384
+ units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
19385
+ base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
19386
+ surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
19387
+ });
19388
+
19389
+ T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
19390
+ currency: PropTypes.string.isRequired,
19391
+ weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
19392
+ length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
19393
+ });
19394
+
19395
+ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
19396
+ fuel: T['io.flow.internal.v0.models.label_surcharge_single_form'],
19397
+ remote_area: T['io.flow.internal.v0.models.label_surcharge_single_form'],
19398
+ oversize: T['io.flow.internal.v0.models.label_surcharge_single_form'],
19399
+ duties_paid: T['io.flow.internal.v0.models.label_surcharge_single_form'],
19400
+ emergency: T['io.flow.internal.v0.models.label_surcharge_single_form'],
19401
+ peak: T['io.flow.internal.v0.models.label_surcharge_single_form'],
19402
+ address_correction: T['io.flow.internal.v0.models.label_surcharge_single_form'],
19403
+ });
19404
+
19405
+ T['io.flow.internal.v0.models.label_base'] = PropTypes.exact({
19406
+ amount: PropTypes.number.isRequired,
19407
+ weight: PropTypes.number.isRequired,
19408
+ });
19409
+
19410
+ T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
19411
+ id: PropTypes.string.isRequired,
19412
+ label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
19413
+ units: T['io.flow.internal.v0.models.label_units'].isRequired,
19414
+ base: T['io.flow.internal.v0.models.label_base'].isRequired,
19415
+ surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
19416
+ total: PropTypes.number.isRequired,
19417
+ destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
19418
+ metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
19419
+ });
19420
+
19421
+ T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
19422
+ discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
19423
+ event_id: PropTypes.string.isRequired,
19424
+ timestamp: PropTypes.string.isRequired,
19425
+ organization: PropTypes.string.isRequired,
19426
+ label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
19427
+ });
19428
+
19429
+ T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
19430
+ currency: PropTypes.string.isRequired,
19431
+ weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
19432
+ length: T['io.flow.units.v0.enums.unit_of_length'],
19433
+ });
19434
+
19435
+ T['io.flow.internal.v0.models.carrier_charge_form_return_to_origin'] = PropTypes.exact({
19436
+ discriminator: PropTypes.oneOf(['return_to_origin']).isRequired,
19437
+ id: PropTypes.string.isRequired,
19438
+ carrier_id: PropTypes.string.isRequired,
19439
+ carrier_tracking_number: PropTypes.string.isRequired,
19440
+ units: T['io.flow.internal.v0.models.carrier_charge_units'].isRequired,
19441
+ base: T['io.flow.internal.v0.models.label_base'].isRequired,
19442
+ surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
19443
+ total: PropTypes.number.isRequired,
19444
+ attributes: PropTypes.objectOf(PropTypes.string),
19445
+ });
19446
+
19447
+ T['io.flow.internal.v0.models.carrier_charge_form_label'] = PropTypes.exact({
19448
+ discriminator: PropTypes.oneOf(['label']).isRequired,
19449
+ id: PropTypes.string.isRequired,
19450
+ label_invoice_request_id: PropTypes.string.isRequired,
19451
+ units: T['io.flow.internal.v0.models.carrier_charge_units'].isRequired,
19452
+ base: T['io.flow.internal.v0.models.label_base'].isRequired,
19453
+ surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
19454
+ total: PropTypes.number.isRequired,
19455
+ attributes: PropTypes.objectOf(PropTypes.string),
19456
+ });
19457
+
19458
+ T['io.flow.internal.v0.unions.carrier_charge_form'] = PropTypes.oneOfType([
19459
+ T['io.flow.internal.v0.models.carrier_charge_form_label'],
19460
+ T['io.flow.internal.v0.models.carrier_charge_form_return_to_origin'],
19461
+ ]);
19462
+
19463
+ T['io.flow.internal.v0.models.carrier_charge_file_result'] = PropTypes.exact({
19464
+ processed_at: PropTypes.string.isRequired,
19465
+ number_lines_successful: PropTypes.number.isRequired,
19466
+ number_lines_with_errors: PropTypes.number.isRequired,
19467
+ errors_url: PropTypes.string,
19468
+ });
19469
+
19470
+ T['io.flow.internal.v0.models.carrier_charge_file'] = PropTypes.exact({
19471
+ id: PropTypes.string.isRequired,
19472
+ url: PropTypes.string.isRequired,
19473
+ created_at: PropTypes.string.isRequired,
19474
+ result: T['io.flow.internal.v0.models.carrier_charge_file_result'],
19475
+ });
19476
+
19364
19477
  T['io.flow.internal.v0.enums.carrier_validation_status'] = PropTypes.oneOf(['success', 'error']);
19365
19478
 
19366
19479
  T['io.flow.internal.v0.models.carrier_account_validation'] = PropTypes.exact({
@@ -27933,22 +28046,21 @@ T['io.flow.internal.v0.enums.prompt_action'] = PropTypes.oneOf(['prompt_displaye
27933
28046
 
27934
28047
  T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
27935
28048
  'capture',
27936
- 'capture_deletion',
27937
28049
  'channel_transaction',
27938
28050
  'consumer_invoice',
27939
28051
  'fulfillment_in_transit',
27940
28052
  'fulfillment_shipping_notification',
27941
28053
  'fulfillment_external',
28054
+ 'fulfillment_order_cancellation',
27942
28055
  'label_tracking_summary',
27943
28056
  'label_invoice_request',
27944
- 'label_invoice_response',
27945
- 'label_invoice_response_file',
28057
+ 'carrier_charge',
28058
+ 'carrier_charge_file',
27946
28059
  'label_origin',
27947
28060
  'order',
27948
28061
  'order_identifier',
27949
28062
  'organization_onboarding_state',
27950
28063
  'refund',
27951
- 'refund_deletion',
27952
28064
  'refund_over_capture',
27953
28065
  'sales_record',
27954
28066
  'statement_batch',
@@ -28127,6 +28239,10 @@ T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropType
28127
28239
  default_hs_code: PropTypes.string,
28128
28240
  });
28129
28241
 
28242
+ T['io.flow.internal.v0.models.carrier_charge_file_form'] = PropTypes.exact({
28243
+ url: PropTypes.string.isRequired,
28244
+ });
28245
+
28130
28246
  T['io.flow.internal.v0.models.carrier_invoice'] = PropTypes.exact({
28131
28247
  number: PropTypes.string.isRequired,
28132
28248
  timestamp: PropTypes.string.isRequired,
@@ -28569,10 +28685,6 @@ T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact
28569
28685
  commercial_invoice_only_query: PropTypes.string,
28570
28686
  });
28571
28687
 
28572
- T['io.flow.internal.v0.models.label_invoice_response_file_form'] = PropTypes.exact({
28573
- url: PropTypes.string.isRequired,
28574
- });
28575
-
28576
28688
  T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
28577
28689
  number: PropTypes.string.isRequired,
28578
28690
  origin: PropTypes.string.isRequired,
@@ -28662,6 +28774,7 @@ T['io.flow.internal.v0.models.order_service_change_csv_form'] = PropTypes.exact(
28662
28774
 
28663
28775
  T['io.flow.internal.v0.models.organization_deactivation_form'] = PropTypes.exact({
28664
28776
  deactivate_at: PropTypes.string.isRequired,
28777
+ reason: PropTypes.string,
28665
28778
  });
28666
28779
 
28667
28780
  T['io.flow.internal.v0.models.organization_invitation_accept_form'] = PropTypes.exact({
@@ -29165,12 +29278,17 @@ T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
29165
29278
  'charge.failed',
29166
29279
  'charge.pending',
29167
29280
  'charge.refunded',
29168
- 'charge.refund.updated',
29281
+ 'charge.expired',
29169
29282
  'charge.succeeded',
29170
29283
  'charge.updated',
29284
+ 'charge.refund.updated',
29285
+ 'payment_intent.created',
29171
29286
  'payment_intent.amount_capturable_updated',
29172
29287
  'payment_intent.payment_failed',
29173
29288
  'payment_intent.succeeded',
29289
+ 'payment_intent.requires_action',
29290
+ 'payment_intent.canceled',
29291
+ 'payment_intent.processing',
29174
29292
  'source.canceled',
29175
29293
  'source.chargeable',
29176
29294
  'source.failed',
@@ -29184,6 +29302,8 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
29184
29302
  'pay_over_time',
29185
29303
  ]);
29186
29304
 
29305
+ T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
29306
+
29187
29307
  T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
29188
29308
  object: PropTypes.string.isRequired,
29189
29309
  exp_month: PropTypes.string.isRequired,
@@ -29536,6 +29656,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_order_status'] = P
29536
29656
  'closed',
29537
29657
  ]);
29538
29658
 
29659
+ T['io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names'] = PropTypes.oneOf(['flow_commerce', 'gift_card', 'manual', 'shopify_payments']);
29539
29660
  T['io.flow.shopify.markets.v0.enums.shopify_order_status_type'] = PropTypes.oneOf(['open', 'closed', 'cancelled', 'any']);
29540
29661
 
29541
29662
  T['io.flow.shopify.markets.v0.models.shopify_draft_order_count'] = PropTypes.exact({
@@ -30270,6 +30391,13 @@ export const carrierAccountDeleted = T['io.flow.internal.v0.models.carrier_accou
30270
30391
  export const carrierAccountForm = T['io.flow.internal.v0.models.carrier_account_form'];
30271
30392
  export const carrierAccountUpsertedV2 = T['io.flow.internal.v0.models.carrier_account_upserted_v2'];
30272
30393
  export const carrierAccountValidation = T['io.flow.internal.v0.models.carrier_account_validation'];
30394
+ export const carrierChargeFile = T['io.flow.internal.v0.models.carrier_charge_file'];
30395
+ export const carrierChargeFileForm = T['io.flow.internal.v0.models.carrier_charge_file_form'];
30396
+ export const carrierChargeFileResult = T['io.flow.internal.v0.models.carrier_charge_file_result'];
30397
+ export const carrierChargeForm = T['io.flow.internal.v0.unions.carrier_charge_form'];
30398
+ export const carrierChargeFormLabel = T['io.flow.internal.v0.models.carrier_charge_form_label'];
30399
+ export const carrierChargeFormReturnToOrigin = T['io.flow.internal.v0.models.carrier_charge_form_return_to_origin'];
30400
+ export const carrierChargeUnits = T['io.flow.internal.v0.models.carrier_charge_units'];
30273
30401
  export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credentials'];
30274
30402
  export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
30275
30403
  export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
@@ -31436,16 +31564,11 @@ export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.lab
31436
31564
  export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
31437
31565
  export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
31438
31566
  export const labelInvoiceRequestUpserted = T['io.flow.internal.v0.models.label_invoice_request_upserted'];
31439
- export const labelInvoiceResponseFile = T['io.flow.internal.v0.models.label_invoice_response_file'];
31440
- export const labelInvoiceResponseFileForm = T['io.flow.internal.v0.models.label_invoice_response_file_form'];
31441
- export const labelInvoiceResponseFileResult = T['io.flow.internal.v0.models.label_invoice_response_file_result'];
31442
- export const labelInvoiceResponseForm = T['io.flow.internal.v0.models.label_invoice_response_form'];
31443
31567
  export const labelMetadata = T['io.flow.internal.v0.models.label_metadata'];
31444
31568
  export const labelRequestError = T['io.flow.internal.v0.models.label_request_error'];
31445
31569
  export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_request_error_deleted'];
31446
31570
  export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
31447
31571
  export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
31448
- export const labelResponseUnits = T['io.flow.internal.v0.models.label_response_units'];
31449
31572
  export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
31450
31573
  export const labelSurcharge = T['io.flow.internal.v0.models.label_surcharge'];
31451
31574
  export const labelSurchargeDetail = T['io.flow.internal.v0.unions.label_surcharge_detail'];