@flowio/api-internal-prop-types 9.24.46 → 9.24.47

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.
@@ -96,51 +96,12 @@ T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] =
96
96
  'business_street_address_is_po_box',
97
97
  ]);
98
98
 
99
- T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
100
- discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
101
- placeholder: PropTypes.bool,
102
- });
103
-
104
- T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
105
- discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
106
- placeholder: PropTypes.bool,
107
- });
108
-
109
- T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
110
- discriminator: PropTypes.oneOf(['setup_blocked']).isRequired,
111
-
112
- reasons: PropTypes.arrayOf(
113
- T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'],
114
- ).isRequired,
115
- });
116
-
117
- T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'] = PropTypes.exact({
118
- discriminator: PropTypes.oneOf(['setup_in_progress']).isRequired,
119
- placeholder: PropTypes.bool,
120
- });
121
-
122
- T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'] = PropTypes.exact({
123
- discriminator: PropTypes.oneOf(['in_compliance_review']).isRequired,
124
- placeholder: PropTypes.bool,
125
- });
126
-
127
- T['io.flow.organization.onboarding.state.v0.models.application_received'] = PropTypes.exact({
128
- discriminator: PropTypes.oneOf(['application_received']).isRequired,
129
- placeholder: PropTypes.bool,
130
- });
131
-
132
99
  T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
133
100
  'merchant_ubo_is_pep',
134
101
  'merchant_catalog_is_unsupportable',
135
102
  'merchant_failed_kyb_review',
136
103
  ]);
137
104
 
138
- T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'] = PropTypes.exact({
139
- discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
140
- reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'].isRequired,
141
- description: PropTypes.string,
142
- });
143
-
144
105
  T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
145
106
  continue_shopping: PropTypes.string,
146
107
  confirmation: PropTypes.string,
@@ -2731,7 +2692,6 @@ T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
2731
2692
  product_id: PropTypes.number.isRequired,
2732
2693
  name: PropTypes.string.isRequired,
2733
2694
  position: PropTypes.number.isRequired,
2734
- values: PropTypes.arrayOf(PropTypes.string),
2735
2695
  });
2736
2696
 
2737
2697
  T['io.flow.shopify.external.v0.models.product_image'] = PropTypes.exact({
@@ -6633,6 +6593,11 @@ T['io.flow.internal.v0.unions.spot_rate_metadata'] = PropTypes.oneOfType([
6633
6593
  T['io.flow.internal.v0.models.spot_rate_metadata_rate'],
6634
6594
  ]);
6635
6595
 
6596
+ T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'] = PropTypes.exact({
6597
+ discriminator: PropTypes.oneOf(['order_cancellation']).isRequired,
6598
+ order_cancellation_id: PropTypes.string.isRequired,
6599
+ });
6600
+
6636
6601
  T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'] = PropTypes.exact({
6637
6602
  discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
6638
6603
  shipping_notification_id: PropTypes.string.isRequired,
@@ -6659,6 +6624,7 @@ T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
6659
6624
  T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
6660
6625
  T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'],
6661
6626
  T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
6627
+ T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
6662
6628
  ]);
6663
6629
 
6664
6630
  T['io.flow.internal.v0.models.online_authorization_completed'] = PropTypes.exact({
@@ -7846,6 +7812,13 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
7846
7812
  id: PropTypes.string.isRequired,
7847
7813
  });
7848
7814
 
7815
+ T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
7816
+ discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
7817
+ event_id: PropTypes.string.isRequired,
7818
+ timestamp: PropTypes.string.isRequired,
7819
+ id: PropTypes.string.isRequired,
7820
+ });
7821
+
7849
7822
  T['io.flow.internal.v0.models.tax_transaction_deleted'] = PropTypes.exact({
7850
7823
  discriminator: PropTypes.oneOf(['tax_transaction_deleted']).isRequired,
7851
7824
  event_id: PropTypes.string.isRequired,
@@ -9704,6 +9677,25 @@ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
9704
9677
  sort: PropTypes.string,
9705
9678
  });
9706
9679
 
9680
+ T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'] = PropTypes.exact({
9681
+ discriminator: PropTypes.oneOf(['fully_refunded_not_fulfilled']).isRequired,
9682
+ placeholder: PropTypes.string,
9683
+ });
9684
+
9685
+ T['io.flow.internal.v0.models.order_cancellation_evidence_manual'] = PropTypes.exact({
9686
+ discriminator: PropTypes.oneOf(['manual']).isRequired,
9687
+ description: PropTypes.string.isRequired,
9688
+ });
9689
+
9690
+ T['io.flow.internal.v0.models.order_cancellation_form'] = PropTypes.exact({
9691
+ evidence: T['io.flow.internal.v0.models.order_cancellation_evidence_manual'].isRequired,
9692
+ });
9693
+
9694
+ T['io.flow.internal.v0.unions.order_cancellation_evidence'] = PropTypes.oneOfType([
9695
+ T['io.flow.internal.v0.models.order_cancellation_evidence_manual'],
9696
+ T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'],
9697
+ ]);
9698
+
9707
9699
  T['io.flow.internal.v0.enums.order_attribute_intent'] = PropTypes.oneOf(['discount_code']);
9708
9700
  T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
9709
9701
 
@@ -9769,8 +9761,41 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
9769
9761
 
9770
9762
  T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
9771
9763
 
9764
+ T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
9765
+ discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
9766
+ placeholder: PropTypes.bool,
9767
+ });
9768
+
9769
+ T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
9770
+ discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
9771
+ placeholder: PropTypes.bool,
9772
+ });
9773
+
9774
+ T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
9775
+ discriminator: PropTypes.oneOf(['setup_blocked']).isRequired,
9776
+
9777
+ reasons: PropTypes.arrayOf(
9778
+ T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'],
9779
+ ).isRequired,
9780
+ });
9781
+
9782
+ T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'] = PropTypes.exact({
9783
+ discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
9784
+ reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'].isRequired,
9785
+ description: PropTypes.string,
9786
+ });
9787
+
9788
+ T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'] = PropTypes.exact({
9789
+ discriminator: PropTypes.oneOf(['setup_in_progress']).isRequired,
9790
+ placeholder: PropTypes.bool,
9791
+ });
9792
+
9793
+ T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'] = PropTypes.exact({
9794
+ discriminator: PropTypes.oneOf(['in_compliance_review']).isRequired,
9795
+ placeholder: PropTypes.bool,
9796
+ });
9797
+
9772
9798
  T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropTypes.oneOfType([
9773
- T['io.flow.organization.onboarding.state.v0.models.application_received'],
9774
9799
  T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'],
9775
9800
  T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'],
9776
9801
  T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'],
@@ -11234,6 +11259,7 @@ T['io.flow.internal.v0.models.heap_card_error'] = PropTypes.exact({
11234
11259
  T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact({
11235
11260
  id: PropTypes.string,
11236
11261
  customs_description: PropTypes.string,
11262
+ score: PropTypes.number,
11237
11263
  });
11238
11264
 
11239
11265
  T['io.flow.internal.v0.models.google_linker'] = PropTypes.exact({
@@ -12248,6 +12274,27 @@ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
12248
12274
  timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
12249
12275
  });
12250
12276
 
12277
+ T['io.flow.internal.v0.enums.erp_file_type'] = PropTypes.oneOf(['vendor']);
12278
+
12279
+ T['io.flow.internal.v0.models.erp_priority_file_form'] = PropTypes.exact({
12280
+ type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
12281
+ url: PropTypes.string.isRequired,
12282
+ });
12283
+
12284
+ T['io.flow.internal.v0.models.erp_priority_file'] = PropTypes.exact({
12285
+ id: PropTypes.string.isRequired,
12286
+ type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
12287
+ url: PropTypes.string.isRequired,
12288
+ created_at: PropTypes.string.isRequired,
12289
+ });
12290
+
12291
+ T['io.flow.internal.v0.models.erp_flow_file'] = PropTypes.exact({
12292
+ id: PropTypes.string.isRequired,
12293
+ type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
12294
+ url: PropTypes.string.isRequired,
12295
+ created_at: PropTypes.string.isRequired,
12296
+ });
12297
+
12251
12298
  T['io.flow.internal.v0.models.key_reference'] = PropTypes.exact({
12252
12299
  id: PropTypes.string.isRequired,
12253
12300
  });
@@ -17666,6 +17713,8 @@ T['io.flow.internal.v0.models.harmonization_item_classification'] = PropTypes.ex
17666
17713
  created_at: PropTypes.string.isRequired,
17667
17714
  updated_at: PropTypes.string.isRequired,
17668
17715
  updated_by_user_id: PropTypes.string.isRequired,
17716
+ hs6_code: PropTypes.string,
17717
+ hs6_description: PropTypes.string,
17669
17718
  });
17670
17719
 
17671
17720
  T['io.flow.internal.v0.models.harmonization_item_classification_upserted'] = PropTypes.exact({
@@ -18518,6 +18567,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
18518
18567
  shop_name: PropTypes.string.isRequired,
18519
18568
  organization_id: PropTypes.string.isRequired,
18520
18569
  onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'].isRequired,
18570
+ onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
18521
18571
  gmv: PropTypes.number.isRequired,
18522
18572
  });
18523
18573
 
@@ -18602,6 +18652,12 @@ T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = Prop
18602
18652
  number: PropTypes.string.isRequired,
18603
18653
  });
18604
18654
 
18655
+ T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
18656
+ id: PropTypes.string.isRequired,
18657
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
18658
+ evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
18659
+ });
18660
+
18605
18661
  T['io.flow.internal.v0.models.billing_order_destination'] = PropTypes.exact({
18606
18662
  city: PropTypes.string,
18607
18663
  province: PropTypes.string,
@@ -22260,6 +22316,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
22260
22316
  'order',
22261
22317
  'channel_billed',
22262
22318
  'tax',
22319
+ 'duty',
22263
22320
  ]);
22264
22321
 
22265
22322
  T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact({
@@ -22350,6 +22407,7 @@ T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.ex
22350
22407
 
22351
22408
  T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
22352
22409
  source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
22410
+ ratecard_id: PropTypes.string,
22353
22411
  currency: PropTypes.string.isRequired,
22354
22412
  amount: PropTypes.number.isRequired,
22355
22413
  label: PropTypes.string.isRequired,
@@ -23152,6 +23210,26 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
23152
23210
  transfer: T['io.flow.internal.v0.models.fee'],
23153
23211
  });
23154
23212
 
23213
+ T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
23214
+ discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
23215
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
23216
+ id: PropTypes.string.isRequired,
23217
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23218
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
23219
+ posted_at: PropTypes.string,
23220
+ value: T['io.flow.common.v0.models.price'].isRequired,
23221
+ description: PropTypes.string.isRequired,
23222
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
23223
+ created_at: PropTypes.string.isRequired,
23224
+ });
23225
+
23226
+ T['io.flow.internal.v0.models.duty_transaction_upserted'] = PropTypes.exact({
23227
+ discriminator: PropTypes.oneOf(['duty_transaction_upserted']).isRequired,
23228
+ event_id: PropTypes.string.isRequired,
23229
+ timestamp: PropTypes.string.isRequired,
23230
+ duty_transaction: T['io.flow.internal.v0.models.duty_transaction'].isRequired,
23231
+ });
23232
+
23155
23233
  T['io.flow.internal.v0.models.dispute_transaction'] = PropTypes.exact({
23156
23234
  discriminator: PropTypes.oneOf(['dispute_transaction']).isRequired,
23157
23235
  authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
@@ -23940,6 +24018,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
23940
24018
  T['io.flow.internal.v0.models.order_transaction'],
23941
24019
  T['io.flow.internal.v0.models.channel_billed_transaction'],
23942
24020
  T['io.flow.internal.v0.models.tax_transaction'],
24021
+ T['io.flow.internal.v0.models.duty_transaction'],
23943
24022
  ]);
23944
24023
 
23945
24024
  T['io.flow.internal.v0.models.processing_transaction_upserted'] = PropTypes.exact({
@@ -24651,6 +24730,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
24651
24730
  T['io.flow.internal.v0.models.channel_billed_transaction_deleted'],
24652
24731
  T['io.flow.internal.v0.models.tax_transaction_upserted'],
24653
24732
  T['io.flow.internal.v0.models.tax_transaction_deleted'],
24733
+ T['io.flow.internal.v0.models.duty_transaction_upserted'],
24734
+ T['io.flow.internal.v0.models.duty_transaction_deleted'],
24654
24735
  T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
24655
24736
  T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
24656
24737
  T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
@@ -25079,7 +25160,15 @@ T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
25079
25160
  ]);
25080
25161
 
25081
25162
  T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['archive', 'summary']);
25082
- T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf(['flow_rate_and_rule', 'dtce', 'dtce_two_calls', 'dtce_with_deminimis']);
25163
+
25164
+ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
25165
+ 'flow_rate_and_rule',
25166
+ 'dtce',
25167
+ 'dtce_two_calls',
25168
+ 'dtce_with_deminimis',
25169
+ 'dtce_merged_with_tax',
25170
+ ]);
25171
+
25083
25172
  T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
25084
25173
  T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'channel_initiated']);
25085
25174
  T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'processing']);
@@ -25089,6 +25178,7 @@ T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['not
25089
25178
  T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
25090
25179
  T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
25091
25180
  T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
25181
+ T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'duty']);
25092
25182
 
25093
25183
  T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25094
25184
  'adyen_authorization_deleted',
@@ -25138,6 +25228,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25138
25228
  'channel_billed_transaction_deleted',
25139
25229
  'tax_transaction_upserted',
25140
25230
  'tax_transaction_deleted',
25231
+ 'duty_transaction_upserted',
25232
+ 'duty_transaction_deleted',
25141
25233
  'calculator_organization_settings_upserted',
25142
25234
  'calculator_organization_settings_deleted',
25143
25235
  'carrier_account_upserted_v2',
@@ -28160,11 +28252,19 @@ export const dutyRawUpserted = T['io.flow.internal.v0.models.duty_raw_upserted']
28160
28252
  export const dutySelectionRule = T['io.flow.internal.v0.enums.duty_selection_rule'];
28161
28253
  export const dutySimpleExpression = T['io.flow.internal.v0.models.duty_simple_expression'];
28162
28254
  export const dutySimpleExpressionType = T['io.flow.internal.v0.enums.duty_simple_expression_type'];
28255
+ export const dutyTransaction = T['io.flow.internal.v0.models.duty_transaction'];
28256
+ export const dutyTransactionDeleted = T['io.flow.internal.v0.models.duty_transaction_deleted'];
28257
+ export const dutyTransactionType = T['io.flow.internal.v0.enums.duty_transaction_type'];
28258
+ export const dutyTransactionUpserted = T['io.flow.internal.v0.models.duty_transaction_upserted'];
28163
28259
  export const emailForm = T['io.flow.internal.v0.models.email_form'];
28164
28260
  export const emailModificationForm = T['io.flow.internal.v0.models.email_modification_form'];
28165
28261
  export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
28166
28262
  export const emptyClassificationForm = T['io.flow.internal.v0.models.empty_classification_form'];
28167
28263
  export const encryption = T['io.flow.internal.v0.models.encryption'];
28264
+ export const erpFileType = T['io.flow.internal.v0.enums.erp_file_type'];
28265
+ export const erpFlowFile = T['io.flow.internal.v0.models.erp_flow_file'];
28266
+ export const erpPriorityFile = T['io.flow.internal.v0.models.erp_priority_file'];
28267
+ export const erpPriorityFileForm = T['io.flow.internal.v0.models.erp_priority_file_form'];
28168
28268
  export const event = T['io.flow.internal.v0.unions.event'];
28169
28269
  export const eventType = T['io.flow.internal.v0.enums.event_type'];
28170
28270
  export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
@@ -28657,6 +28757,11 @@ export const orderAttribute = T['io.flow.internal.v0.models.order_attribute'];
28657
28757
  export const orderAttributeDeleted = T['io.flow.internal.v0.models.order_attribute_deleted'];
28658
28758
  export const orderAttributeIntent = T['io.flow.internal.v0.enums.order_attribute_intent'];
28659
28759
  export const orderAttributeUpserted = T['io.flow.internal.v0.models.order_attribute_upserted'];
28760
+ export const orderCancellation = T['io.flow.internal.v0.models.order_cancellation'];
28761
+ export const orderCancellationEvidence = T['io.flow.internal.v0.unions.order_cancellation_evidence'];
28762
+ export const orderCancellationEvidenceFullyRefundedNotFulfilled = T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'];
28763
+ export const orderCancellationEvidenceManual = T['io.flow.internal.v0.models.order_cancellation_evidence_manual'];
28764
+ export const orderCancellationForm = T['io.flow.internal.v0.models.order_cancellation_form'];
28660
28765
  export const orderChargeTrigger = T['io.flow.internal.v0.enums.order_charge_trigger'];
28661
28766
  export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
28662
28767
  export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
@@ -28832,6 +28937,7 @@ export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
28832
28937
  export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'];
28833
28938
  export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
28834
28939
  export const proofOfPostingFullyRefunded = T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'];
28940
+ export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
28835
28941
  export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
28836
28942
  export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
28837
28943
  export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];