@flowio/api-internal-factories 0.0.111 → 0.0.112
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/cjs/api-internal.js +197 -38
- package/dist/esm/api-internal.js +145 -0
- package/dist/types/api-internal.d.ts +14 -0
- package/package.json +2 -2
- package/src/api-internal.ts +159 -0
package/src/api-internal.ts
CHANGED
|
@@ -1947,6 +1947,7 @@ const factories = {
|
|
|
1947
1947
|
},
|
|
1948
1948
|
|
|
1949
1949
|
'io.flow.channel.internal.v0.enums.channel_order_acceptance_error_action': (): io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceErrorAction => faker.helpers.arrayElement(['auto_reject', 'auto_accept']),
|
|
1950
|
+
'io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code': (): io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode => faker.helpers.arrayElement(['channel_order_mor_invalid', 'channel_order_does_not_exist']),
|
|
1950
1951
|
|
|
1951
1952
|
'io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from': (): io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom => faker.helpers.arrayElement([
|
|
1952
1953
|
'cx_team',
|
|
@@ -2033,6 +2034,15 @@ const factories = {
|
|
|
2033
2034
|
external_order: factories.object(),
|
|
2034
2035
|
}),
|
|
2035
2036
|
|
|
2037
|
+
'io.flow.channel.internal.v0.models.channel_order_acceptance_failure': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceFailure => ({
|
|
2038
|
+
id: factories.string(),
|
|
2039
|
+
organization_id: factories.string(),
|
|
2040
|
+
channel_id: factories.string(),
|
|
2041
|
+
payment_request_id: factories.string(),
|
|
2042
|
+
code: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'](),
|
|
2043
|
+
reason: factories.string(),
|
|
2044
|
+
}),
|
|
2045
|
+
|
|
2036
2046
|
'io.flow.channel.internal.v0.models.channel_order_acceptance_form': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceForm => ({
|
|
2037
2047
|
status: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'](),
|
|
2038
2048
|
}),
|
|
@@ -7279,6 +7289,7 @@ const factories = {
|
|
|
7279
7289
|
|
|
7280
7290
|
'io.flow.internal.v0.enums.channel_billed_transaction_type': (): io.flow.internal.v0.enums.ChannelBilledTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'channel_initiated']),
|
|
7281
7291
|
'io.flow.internal.v0.enums.channel_order_acceptance_error_action': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction => faker.helpers.arrayElement(['auto_reject', 'auto_accept']),
|
|
7292
|
+
'io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode => faker.helpers.arrayElement(['channel_order_mor_invalid', 'channel_order_does_not_exist']),
|
|
7282
7293
|
|
|
7283
7294
|
'io.flow.internal.v0.enums.channel_order_acceptance_next_action_from': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom => faker.helpers.arrayElement([
|
|
7284
7295
|
'cx_team',
|
|
@@ -7435,6 +7446,8 @@ const factories = {
|
|
|
7435
7446
|
'adyen_capture_upserted',
|
|
7436
7447
|
'adyen_refund_deleted',
|
|
7437
7448
|
'adyen_refund_upserted',
|
|
7449
|
+
'adyen_dispute_upserted',
|
|
7450
|
+
'adyen_dispute_deleted',
|
|
7438
7451
|
'index_assignment_upserted',
|
|
7439
7452
|
'index_assignment_deleted',
|
|
7440
7453
|
'fulfillment_upserted',
|
|
@@ -7508,6 +7521,7 @@ const factories = {
|
|
|
7508
7521
|
'catalog_settings_deleted',
|
|
7509
7522
|
'channel_order_acceptance_upserted',
|
|
7510
7523
|
'channel_order_acceptance_deleted',
|
|
7524
|
+
'channel_order_acceptance_failed',
|
|
7511
7525
|
'checkout_configuration_upserted',
|
|
7512
7526
|
'checkout_configuration_deleted',
|
|
7513
7527
|
'commercial_invoice_internal_upserted',
|
|
@@ -8173,6 +8187,8 @@ const factories = {
|
|
|
8173
8187
|
'account_quarterly_balances',
|
|
8174
8188
|
'invariants',
|
|
8175
8189
|
'payments',
|
|
8190
|
+
'reconcile_not_recorded',
|
|
8191
|
+
'products_record',
|
|
8176
8192
|
]),
|
|
8177
8193
|
|
|
8178
8194
|
'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
|
|
@@ -8755,6 +8771,20 @@ const factories = {
|
|
|
8755
8771
|
capture: factories['io.flow.internal.v0.models.adyen_internal_capture'](),
|
|
8756
8772
|
}),
|
|
8757
8773
|
|
|
8774
|
+
'io.flow.internal.v0.models.adyen_dispute_deleted': (): io.flow.internal.v0.models.AdyenDisputeDeleted => ({
|
|
8775
|
+
discriminator: 'adyen_dispute_deleted',
|
|
8776
|
+
event_id: factories.string(),
|
|
8777
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8778
|
+
id: factories.string(),
|
|
8779
|
+
}),
|
|
8780
|
+
|
|
8781
|
+
'io.flow.internal.v0.models.adyen_dispute_upserted': (): io.flow.internal.v0.models.AdyenDisputeUpserted => ({
|
|
8782
|
+
discriminator: 'adyen_dispute_upserted',
|
|
8783
|
+
event_id: factories.string(),
|
|
8784
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8785
|
+
dispute: factories['io.flow.internal.v0.models.adyen_internal_dispute'](),
|
|
8786
|
+
}),
|
|
8787
|
+
|
|
8758
8788
|
'io.flow.internal.v0.models.adyen_internal_authorization': (): io.flow.internal.v0.models.AdyenInternalAuthorization => ({
|
|
8759
8789
|
id: factories.string(),
|
|
8760
8790
|
flow_authorization_id: factories.string(),
|
|
@@ -8796,6 +8826,32 @@ const factories = {
|
|
|
8796
8826
|
response: factories.string(),
|
|
8797
8827
|
}),
|
|
8798
8828
|
|
|
8829
|
+
'io.flow.internal.v0.models.adyen_internal_dispute': (): io.flow.internal.v0.models.AdyenInternalDispute => ({
|
|
8830
|
+
id: factories.string(),
|
|
8831
|
+
amount: factories.long(),
|
|
8832
|
+
currency: factories.string(),
|
|
8833
|
+
psp_reference: factories.string(),
|
|
8834
|
+
original_reference: factories.string(),
|
|
8835
|
+
event_code: factories.string(),
|
|
8836
|
+
event_date: factories.date_time_iso_8601(),
|
|
8837
|
+
chargeback_reason_code: factories.string(),
|
|
8838
|
+
modification_merchant_references: factories.string(),
|
|
8839
|
+
chargeback_scheme_code: factories.string(),
|
|
8840
|
+
defense_period_ends_at: factories.date_time_iso_8601(),
|
|
8841
|
+
dispute_status: factories.string(),
|
|
8842
|
+
defendable: factories.string(),
|
|
8843
|
+
merchant_account_code: factories.string(),
|
|
8844
|
+
operations: arrayOf(() => factories.string()),
|
|
8845
|
+
merchant_reference: factories.string(),
|
|
8846
|
+
payment_method: factories.string(),
|
|
8847
|
+
reason: factories.string(),
|
|
8848
|
+
success: factories.string(),
|
|
8849
|
+
livemode: factories.boolean(),
|
|
8850
|
+
updated_by_user_id: factories.string(),
|
|
8851
|
+
created_at: factories.date_time_iso_8601(),
|
|
8852
|
+
updated_at: factories.date_time_iso_8601(),
|
|
8853
|
+
}),
|
|
8854
|
+
|
|
8799
8855
|
'io.flow.internal.v0.models.adyen_internal_refund': (): io.flow.internal.v0.models.AdyenInternalRefund => ({
|
|
8800
8856
|
id: factories.string(),
|
|
8801
8857
|
flow_refund_id: factories.string(),
|
|
@@ -10227,6 +10283,24 @@ const factories = {
|
|
|
10227
10283
|
external_order: factories.object(),
|
|
10228
10284
|
}),
|
|
10229
10285
|
|
|
10286
|
+
'io.flow.internal.v0.models.channel_order_acceptance_failed': (): io.flow.internal.v0.models.ChannelOrderAcceptanceFailed => ({
|
|
10287
|
+
discriminator: 'channel_order_acceptance_failed',
|
|
10288
|
+
event_id: factories.string(),
|
|
10289
|
+
timestamp: factories.date_time_iso_8601(),
|
|
10290
|
+
organization: factories.string(),
|
|
10291
|
+
channel_id: factories.string(),
|
|
10292
|
+
channel_order_acceptance_failure: factories['io.flow.internal.v0.models.channel_order_acceptance_failure'](),
|
|
10293
|
+
}),
|
|
10294
|
+
|
|
10295
|
+
'io.flow.internal.v0.models.channel_order_acceptance_failure': (): io.flow.internal.v0.models.ChannelOrderAcceptanceFailure => ({
|
|
10296
|
+
id: factories.string(),
|
|
10297
|
+
organization_id: factories.string(),
|
|
10298
|
+
channel_id: factories.string(),
|
|
10299
|
+
payment_request_id: factories.string(),
|
|
10300
|
+
code: factories['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code'](),
|
|
10301
|
+
reason: factories.string(),
|
|
10302
|
+
}),
|
|
10303
|
+
|
|
10230
10304
|
'io.flow.internal.v0.models.channel_order_acceptance_form': (): io.flow.internal.v0.models.ChannelOrderAcceptanceForm => ({
|
|
10231
10305
|
status: factories['io.flow.internal.v0.enums.channel_order_acceptance_status'](),
|
|
10232
10306
|
}),
|
|
@@ -11609,6 +11683,7 @@ const factories = {
|
|
|
11609
11683
|
issued_at: factories.date_time_iso_8601(),
|
|
11610
11684
|
expires_at: factories.date_time_iso_8601(),
|
|
11611
11685
|
created_at: factories.date_time_iso_8601(),
|
|
11686
|
+
updated_at: factories.date_time_iso_8601(),
|
|
11612
11687
|
}),
|
|
11613
11688
|
|
|
11614
11689
|
'io.flow.internal.v0.models.dispute_authorization_reference': (): io.flow.internal.v0.models.DisputeAuthorizationReference => ({
|
|
@@ -14231,6 +14306,8 @@ const factories = {
|
|
|
14231
14306
|
suggested_responsibility: factories['io.flow.internal.v0.enums.label_request_error_handling_responsibility'](),
|
|
14232
14307
|
origin_country: factories.string(),
|
|
14233
14308
|
destination_country: factories.string(),
|
|
14309
|
+
reference_id: factories.string(),
|
|
14310
|
+
logistics_integration_provider: factories.string(),
|
|
14234
14311
|
}),
|
|
14235
14312
|
|
|
14236
14313
|
'io.flow.internal.v0.models.label_summary': (): io.flow.internal.v0.models.LabelSummary => ({
|
|
@@ -15188,6 +15265,20 @@ const factories = {
|
|
|
15188
15265
|
merchant_guid_assignment: factories['io.flow.internal.v0.models.merchant_guid_assignment'](),
|
|
15189
15266
|
}),
|
|
15190
15267
|
|
|
15268
|
+
'io.flow.internal.v0.models.merchant_hub_override': (): io.flow.internal.v0.models.MerchantHubOverride => ({
|
|
15269
|
+
id: factories.string(),
|
|
15270
|
+
organization_id: factories.string(),
|
|
15271
|
+
code: factories.string(),
|
|
15272
|
+
contact: factories['io.flow.common.v0.models.contact'](),
|
|
15273
|
+
location: factories['io.flow.common.v0.models.address'](),
|
|
15274
|
+
}),
|
|
15275
|
+
|
|
15276
|
+
'io.flow.internal.v0.models.merchant_hub_override_form': (): io.flow.internal.v0.models.MerchantHubOverrideForm => ({
|
|
15277
|
+
code: factories.string(),
|
|
15278
|
+
contact: factories['io.flow.common.v0.models.contact'](),
|
|
15279
|
+
location: factories['io.flow.common.v0.models.address'](),
|
|
15280
|
+
}),
|
|
15281
|
+
|
|
15191
15282
|
'io.flow.internal.v0.models.merchant_of_record_entity_settings': (): io.flow.internal.v0.models.MerchantOfRecordEntitySettings => ({
|
|
15192
15283
|
id: factories.string(),
|
|
15193
15284
|
merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
@@ -16518,6 +16609,13 @@ const factories = {
|
|
|
16518
16609
|
partner_organization_settings: factories['io.flow.internal.v0.models.partner_organization_settings'](),
|
|
16519
16610
|
}),
|
|
16520
16611
|
|
|
16612
|
+
'io.flow.internal.v0.models.partner_request': (): io.flow.internal.v0.models.PartnerRequest => ({
|
|
16613
|
+
id: factories.string(),
|
|
16614
|
+
partner_id: factories.string(),
|
|
16615
|
+
organization_id: factories.string(),
|
|
16616
|
+
request_body: factories.json(),
|
|
16617
|
+
}),
|
|
16618
|
+
|
|
16521
16619
|
'io.flow.internal.v0.models.passphrase': (): io.flow.internal.v0.models.Passphrase => ({
|
|
16522
16620
|
id: factories.string(),
|
|
16523
16621
|
tribe: factories['io.flow.internal.v0.models.tribe'](),
|
|
@@ -17090,6 +17188,11 @@ const factories = {
|
|
|
17090
17188
|
next_product: factories['io.flow.internal.v0.models.classification_product_id'](),
|
|
17091
17189
|
}),
|
|
17092
17190
|
|
|
17191
|
+
'io.flow.internal.v0.models.product_currencies': (): io.flow.internal.v0.models.ProductCurrencies => ({
|
|
17192
|
+
transaction: factories.string(),
|
|
17193
|
+
destination: factories.string(),
|
|
17194
|
+
}),
|
|
17195
|
+
|
|
17093
17196
|
'io.flow.internal.v0.models.product_detail_settings_form': (): io.flow.internal.v0.models.ProductDetailSettingsForm => ({
|
|
17094
17197
|
keys: arrayOf(() => factories.string()),
|
|
17095
17198
|
}),
|
|
@@ -17119,6 +17222,14 @@ const factories = {
|
|
|
17119
17222
|
),
|
|
17120
17223
|
}),
|
|
17121
17224
|
|
|
17225
|
+
'io.flow.internal.v0.models.product_record': (): io.flow.internal.v0.models.ProductRecord => ({
|
|
17226
|
+
organization_id: factories.string(),
|
|
17227
|
+
order_number: factories.string(),
|
|
17228
|
+
fulfillment_id: factories.string(),
|
|
17229
|
+
currencies: factories['io.flow.internal.v0.models.product_currencies'](),
|
|
17230
|
+
products: arrayOf(() => factories['io.flow.internal.v0.models.product_transaction']()),
|
|
17231
|
+
}),
|
|
17232
|
+
|
|
17122
17233
|
'io.flow.internal.v0.models.product_restriction_result_validation_error': (): io.flow.internal.v0.models.ProductRestrictionResultValidationError => ({
|
|
17123
17234
|
message: factories.string(),
|
|
17124
17235
|
reason: factories.string(),
|
|
@@ -17167,6 +17278,12 @@ const factories = {
|
|
|
17167
17278
|
),
|
|
17168
17279
|
}),
|
|
17169
17280
|
|
|
17281
|
+
'io.flow.internal.v0.models.product_transaction': (): io.flow.internal.v0.models.ProductTransaction => ({
|
|
17282
|
+
transaction_amount: factories.decimal(),
|
|
17283
|
+
destination_amount: factories.decimal(),
|
|
17284
|
+
quantity: factories.long(),
|
|
17285
|
+
}),
|
|
17286
|
+
|
|
17170
17287
|
'io.flow.internal.v0.models.profit': (): io.flow.internal.v0.models.Profit => ({
|
|
17171
17288
|
key: factories['io.flow.internal.v0.enums.profit_stream_key'](),
|
|
17172
17289
|
principal: factories['io.flow.internal.v0.models.principal'](),
|
|
@@ -17241,6 +17358,21 @@ const factories = {
|
|
|
17241
17358
|
created_at: factories.date_time_iso_8601(),
|
|
17242
17359
|
}),
|
|
17243
17360
|
|
|
17361
|
+
'io.flow.internal.v0.models.public_hub': (): io.flow.internal.v0.models.PublicHub => ({
|
|
17362
|
+
id: factories.string(),
|
|
17363
|
+
code: factories.string(),
|
|
17364
|
+
third_party_logistics_reference: factories.string(),
|
|
17365
|
+
contact: factories['io.flow.common.v0.models.contact'](),
|
|
17366
|
+
location: factories['io.flow.common.v0.models.address'](),
|
|
17367
|
+
}),
|
|
17368
|
+
|
|
17369
|
+
'io.flow.internal.v0.models.public_hub_form': (): io.flow.internal.v0.models.PublicHubForm => ({
|
|
17370
|
+
code: factories.string(),
|
|
17371
|
+
third_party_logistics_reference: factories.string(),
|
|
17372
|
+
contact: factories['io.flow.common.v0.models.contact'](),
|
|
17373
|
+
location: factories['io.flow.common.v0.models.address'](),
|
|
17374
|
+
}),
|
|
17375
|
+
|
|
17244
17376
|
'io.flow.internal.v0.models.quote': (): io.flow.internal.v0.models.Quote => ({
|
|
17245
17377
|
id: factories.string(),
|
|
17246
17378
|
base: factories.string(),
|
|
@@ -17808,6 +17940,7 @@ const factories = {
|
|
|
17808
17940
|
'io.flow.internal.v0.models.reporting_conversion_rates': (): io.flow.internal.v0.models.ReportingConversionRates => ({
|
|
17809
17941
|
merchant: factories.decimal(),
|
|
17810
17942
|
entity: factories.decimal(),
|
|
17943
|
+
destination_country: factories.decimal(),
|
|
17811
17944
|
usd: factories.decimal(),
|
|
17812
17945
|
eur: factories.decimal(),
|
|
17813
17946
|
}),
|
|
@@ -17821,6 +17954,7 @@ const factories = {
|
|
|
17821
17954
|
transaction: factories.string(),
|
|
17822
17955
|
merchant: factories.string(),
|
|
17823
17956
|
entity: factories.string(),
|
|
17957
|
+
destination_country: factories.string(),
|
|
17824
17958
|
}),
|
|
17825
17959
|
|
|
17826
17960
|
'io.flow.internal.v0.models.reporting_debug': (): io.flow.internal.v0.models.ReportingDebug => ({
|
|
@@ -17942,6 +18076,7 @@ const factories = {
|
|
|
17942
18076
|
transaction: factories.decimal(),
|
|
17943
18077
|
merchant: factories.decimal(),
|
|
17944
18078
|
entity: factories.decimal(),
|
|
18079
|
+
destination_country: factories.decimal(),
|
|
17945
18080
|
usd: factories.decimal(),
|
|
17946
18081
|
eur: factories.decimal(),
|
|
17947
18082
|
}),
|
|
@@ -20886,6 +21021,8 @@ const factories = {
|
|
|
20886
21021
|
() => factories['io.flow.internal.v0.models.adyen_capture_upserted'](),
|
|
20887
21022
|
() => factories['io.flow.internal.v0.models.adyen_refund_deleted'](),
|
|
20888
21023
|
() => factories['io.flow.internal.v0.models.adyen_refund_upserted'](),
|
|
21024
|
+
() => factories['io.flow.internal.v0.models.adyen_dispute_upserted'](),
|
|
21025
|
+
() => factories['io.flow.internal.v0.models.adyen_dispute_deleted'](),
|
|
20889
21026
|
() => factories['io.flow.internal.v0.models.index_assignment_upserted'](),
|
|
20890
21027
|
() => factories['io.flow.internal.v0.models.index_assignment_deleted'](),
|
|
20891
21028
|
() => factories['io.flow.internal.v0.models.fulfillment_upserted'](),
|
|
@@ -20959,6 +21096,7 @@ const factories = {
|
|
|
20959
21096
|
() => factories['io.flow.internal.v0.models.catalog_settings_deleted'](),
|
|
20960
21097
|
() => factories['io.flow.internal.v0.models.channel_order_acceptance_upserted'](),
|
|
20961
21098
|
() => factories['io.flow.internal.v0.models.channel_order_acceptance_deleted'](),
|
|
21099
|
+
() => factories['io.flow.internal.v0.models.channel_order_acceptance_failed'](),
|
|
20962
21100
|
() => factories['io.flow.internal.v0.models.checkout_configuration_upserted'](),
|
|
20963
21101
|
() => factories['io.flow.internal.v0.models.checkout_configuration_deleted'](),
|
|
20964
21102
|
() => factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted'](),
|
|
@@ -22114,6 +22252,8 @@ const factories = {
|
|
|
22114
22252
|
'package': factories['io.flow.label.v0.models.shipping_label_package'](),
|
|
22115
22253
|
origin: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
22116
22254
|
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
22255
|
+
reference_id: factories.string(),
|
|
22256
|
+
hub_code: factories.string(),
|
|
22117
22257
|
}),
|
|
22118
22258
|
|
|
22119
22259
|
'io.flow.label.v0.models.crossdock_shipment': (): io.flow.label.v0.models.CrossdockShipment => ({
|
|
@@ -22136,6 +22276,7 @@ const factories = {
|
|
|
22136
22276
|
service: factories.string(),
|
|
22137
22277
|
shipment_recipient: factories['io.flow.label.v0.enums.shipment_recipient'](),
|
|
22138
22278
|
package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
|
|
22279
|
+
reference_id: factories.string(),
|
|
22139
22280
|
}),
|
|
22140
22281
|
|
|
22141
22282
|
'io.flow.label.v0.models.detailed_shipping_notification_form': (): io.flow.label.v0.models.DetailedShippingNotificationForm => ({
|
|
@@ -22314,6 +22455,7 @@ const factories = {
|
|
|
22314
22455
|
items: arrayOf(() => factories['io.flow.common.v0.models.line_item_form']()),
|
|
22315
22456
|
center_key: factories.string(),
|
|
22316
22457
|
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
22458
|
+
reference_id: factories.string(),
|
|
22317
22459
|
}),
|
|
22318
22460
|
|
|
22319
22461
|
'io.flow.label.v0.models.summary_shipping_notification_form': (): io.flow.label.v0.models.SummaryShippingNotificationForm => ({
|
|
@@ -31604,6 +31746,9 @@ const factories = {
|
|
|
31604
31746
|
delivered: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
31605
31747
|
rejected: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
31606
31748
|
returned: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
31749
|
+
crossed_border: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
31750
|
+
destroyed: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
31751
|
+
return_reversal: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
31607
31752
|
}),
|
|
31608
31753
|
|
|
31609
31754
|
'io.flow.tracking.v0.models.label_tracking_summary_update': (): io.flow.tracking.v0.models.LabelTrackingSummaryUpdate => ({
|
|
@@ -31853,10 +31998,13 @@ export const makeAdyenCancelDeleted = () => factories['io.flow.internal.v0.model
|
|
|
31853
31998
|
export const makeAdyenCancelUpserted = () => factories['io.flow.internal.v0.models.adyen_cancel_upserted']();
|
|
31854
31999
|
export const makeAdyenCaptureDeleted = () => factories['io.flow.internal.v0.models.adyen_capture_deleted']();
|
|
31855
32000
|
export const makeAdyenCaptureUpserted = () => factories['io.flow.internal.v0.models.adyen_capture_upserted']();
|
|
32001
|
+
export const makeAdyenDisputeDeleted = () => factories['io.flow.internal.v0.models.adyen_dispute_deleted']();
|
|
32002
|
+
export const makeAdyenDisputeUpserted = () => factories['io.flow.internal.v0.models.adyen_dispute_upserted']();
|
|
31856
32003
|
export const makeAdyenIntegrationType = () => factories['io.flow.internal.v0.enums.adyen_integration_type']();
|
|
31857
32004
|
export const makeAdyenInternalAuthorization = () => factories['io.flow.internal.v0.models.adyen_internal_authorization']();
|
|
31858
32005
|
export const makeAdyenInternalCancel = () => factories['io.flow.internal.v0.models.adyen_internal_cancel']();
|
|
31859
32006
|
export const makeAdyenInternalCapture = () => factories['io.flow.internal.v0.models.adyen_internal_capture']();
|
|
32007
|
+
export const makeAdyenInternalDispute = () => factories['io.flow.internal.v0.models.adyen_internal_dispute']();
|
|
31860
32008
|
export const makeAdyenInternalRefund = () => factories['io.flow.internal.v0.models.adyen_internal_refund']();
|
|
31861
32009
|
export const makeAdyenMerchant = () => factories['io.flow.internal.v0.models.adyen_merchant']();
|
|
31862
32010
|
export const makeAdyenMerchantAccount = () => factories['io.flow.internal.v0.models.adyen_merchant_account']();
|
|
@@ -32069,6 +32217,9 @@ export const makeChannelOrderAcceptance = () => factories['io.flow.internal.v0.m
|
|
|
32069
32217
|
export const makeChannelOrderAcceptanceDeleted = () => factories['io.flow.internal.v0.models.channel_order_acceptance_deleted']();
|
|
32070
32218
|
export const makeChannelOrderAcceptanceDetails = () => factories['io.flow.internal.v0.models.channel_order_acceptance_details']();
|
|
32071
32219
|
export const makeChannelOrderAcceptanceErrorAction = () => factories['io.flow.internal.v0.enums.channel_order_acceptance_error_action']();
|
|
32220
|
+
export const makeChannelOrderAcceptanceFailed = () => factories['io.flow.internal.v0.models.channel_order_acceptance_failed']();
|
|
32221
|
+
export const makeChannelOrderAcceptanceFailure = () => factories['io.flow.internal.v0.models.channel_order_acceptance_failure']();
|
|
32222
|
+
export const makeChannelOrderAcceptanceFailureReasonCode = () => factories['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code']();
|
|
32072
32223
|
export const makeChannelOrderAcceptanceForm = () => factories['io.flow.internal.v0.models.channel_order_acceptance_form']();
|
|
32073
32224
|
export const makeChannelOrderAcceptanceNextActionFrom = () => factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from']();
|
|
32074
32225
|
export const makeChannelOrderAcceptanceReason = () => factories['io.flow.internal.v0.models.channel_order_acceptance_reason']();
|
|
@@ -32859,6 +33010,8 @@ export const makeMerchantFees = () => factories['io.flow.internal.v0.models.merc
|
|
|
32859
33010
|
export const makeMerchantGuidAssignment = () => factories['io.flow.internal.v0.models.merchant_guid_assignment']();
|
|
32860
33011
|
export const makeMerchantGuidAssignmentDeleted = () => factories['io.flow.internal.v0.models.merchant_guid_assignment_deleted']();
|
|
32861
33012
|
export const makeMerchantGuidAssignmentUpserted = () => factories['io.flow.internal.v0.models.merchant_guid_assignment_upserted']();
|
|
33013
|
+
export const makeMerchantHubOverride = () => factories['io.flow.internal.v0.models.merchant_hub_override']();
|
|
33014
|
+
export const makeMerchantHubOverrideForm = () => factories['io.flow.internal.v0.models.merchant_hub_override_form']();
|
|
32862
33015
|
export const makeMerchantOfRecordEntitySettings = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings']();
|
|
32863
33016
|
export const makeMerchantOfRecordEntitySettingsForm = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings_form']();
|
|
32864
33017
|
export const makeMerchantSearchResult = () => factories['io.flow.internal.v0.models.merchant_search_result']();
|
|
@@ -33064,6 +33217,7 @@ export const makePartnerOrganizationSettings = () => factories['io.flow.internal
|
|
|
33064
33217
|
export const makePartnerOrganizationSettingsDeleted = () => factories['io.flow.internal.v0.models.partner_organization_settings_deleted']();
|
|
33065
33218
|
export const makePartnerOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.partner_organization_settings_form']();
|
|
33066
33219
|
export const makePartnerOrganizationSettingsUpserted = () => factories['io.flow.internal.v0.models.partner_organization_settings_upserted']();
|
|
33220
|
+
export const makePartnerRequest = () => factories['io.flow.internal.v0.models.partner_request']();
|
|
33067
33221
|
export const makeParty = () => factories['io.flow.internal.v0.enums.party']();
|
|
33068
33222
|
export const makePassphrase = () => factories['io.flow.internal.v0.models.passphrase']();
|
|
33069
33223
|
export const makePassphraseForm = () => factories['io.flow.internal.v0.models.passphrase_form']();
|
|
@@ -33151,17 +33305,20 @@ export const makeProductClassification = () => factories['io.flow.internal.v0.mo
|
|
|
33151
33305
|
export const makeProductClassificationForm = () => factories['io.flow.internal.v0.models.product_classification_form']();
|
|
33152
33306
|
export const makeProductClassificationJudgementForm = () => factories['io.flow.internal.v0.models.product_classification_judgement_form']();
|
|
33153
33307
|
export const makeProductClassificationResult = () => factories['io.flow.internal.v0.models.product_classification_result']();
|
|
33308
|
+
export const makeProductCurrencies = () => factories['io.flow.internal.v0.models.product_currencies']();
|
|
33154
33309
|
export const makeProductDetailSettingsForm = () => factories['io.flow.internal.v0.models.product_detail_settings_form']();
|
|
33155
33310
|
export const makeProductHarmonization = () => factories['io.flow.internal.v0.models.product_harmonization']();
|
|
33156
33311
|
export const makeProductHarmonizationForm = () => factories['io.flow.internal.v0.models.product_harmonization_form']();
|
|
33157
33312
|
export const makeProductLabels = () => factories['io.flow.internal.v0.models.product_labels']();
|
|
33158
33313
|
export const makeProductListSettingsForm = () => factories['io.flow.internal.v0.models.product_list_settings_form']();
|
|
33314
|
+
export const makeProductRecord = () => factories['io.flow.internal.v0.models.product_record']();
|
|
33159
33315
|
export const makeProductRestrictionResultValidationError = () => factories['io.flow.internal.v0.models.product_restriction_result_validation_error']();
|
|
33160
33316
|
export const makeProductRestrictionRuleDecision = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision']();
|
|
33161
33317
|
export const makeProductRestrictionRuleDecisionDeleted = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted']();
|
|
33162
33318
|
export const makeProductRestrictionRuleDecisionUpserted = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted']();
|
|
33163
33319
|
export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
|
|
33164
33320
|
export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
|
|
33321
|
+
export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
|
|
33165
33322
|
export const makeProfit = () => factories['io.flow.internal.v0.models.profit']();
|
|
33166
33323
|
export const makeProfitShare = () => factories['io.flow.internal.v0.models.profit_share']();
|
|
33167
33324
|
export const makeProfitShareOrderReference = () => factories['io.flow.internal.v0.models.profit_share_order_reference']();
|
|
@@ -33181,6 +33338,8 @@ export const makeProofOfPostingOrderCancellation = () => factories['io.flow.inte
|
|
|
33181
33338
|
export const makeProofOfPostingOrderCombinedShipment = () => factories['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment']();
|
|
33182
33339
|
export const makeProofOfPostingShippingNotification = () => factories['io.flow.internal.v0.models.proof_of_posting_shipping_notification']();
|
|
33183
33340
|
export const makeProofOfPostingTimeElapsed = () => factories['io.flow.internal.v0.models.proof_of_posting_time_elapsed']();
|
|
33341
|
+
export const makePublicHub = () => factories['io.flow.internal.v0.models.public_hub']();
|
|
33342
|
+
export const makePublicHubForm = () => factories['io.flow.internal.v0.models.public_hub_form']();
|
|
33184
33343
|
export const makeQuote = () => factories['io.flow.internal.v0.models.quote']();
|
|
33185
33344
|
export const makeQuoteDeleted = () => factories['io.flow.internal.v0.models.quote_deleted']();
|
|
33186
33345
|
export const makeQuoteRequest = () => factories['io.flow.internal.v0.models.quote_request']();
|