@flowio/api-factories 0.0.101 → 0.0.103
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.js +295 -262
- package/dist/esm/api.js +249 -200
- package/dist/types/api.d.ts +14 -30
- package/package.json +2 -2
- package/src/api.ts +277 -226
package/dist/esm/api.js
CHANGED
|
@@ -2716,6 +2716,17 @@ var factories = {
|
|
|
2716
2716
|
weight: factories['io.flow.shopify.external.v0.models.graphql_weight'](),
|
|
2717
2717
|
}); },
|
|
2718
2718
|
'io.flow.shopify.external.v0.models.graphql_metafield': function () { return ({
|
|
2719
|
+
id: factories.string(),
|
|
2720
|
+
key: factories.string(),
|
|
2721
|
+
value: factories.string(),
|
|
2722
|
+
type: factories.string(),
|
|
2723
|
+
}); },
|
|
2724
|
+
'io.flow.shopify.external.v0.models.graphql_metaobject': function () { return ({
|
|
2725
|
+
id: factories.string(),
|
|
2726
|
+
displayName: factories.string(),
|
|
2727
|
+
fields: arrayOf(function () { return factories['io.flow.shopify.external.v0.models.graphql_metaobject_field'](); }),
|
|
2728
|
+
}); },
|
|
2729
|
+
'io.flow.shopify.external.v0.models.graphql_metaobject_field': function () { return ({
|
|
2719
2730
|
key: factories.string(),
|
|
2720
2731
|
value: factories.string(),
|
|
2721
2732
|
}); },
|
|
@@ -2875,6 +2886,7 @@ var factories = {
|
|
|
2875
2886
|
updated_at: factories.date_time_iso_8601(),
|
|
2876
2887
|
has_variants_that_requires_components: factories.boolean(),
|
|
2877
2888
|
category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
2889
|
+
metafields: arrayOf(function () { return factories['io.flow.shopify.external.v0.models.product_metafield'](); }),
|
|
2878
2890
|
}); },
|
|
2879
2891
|
'io.flow.shopify.external.v0.models.product_delete': function () { return ({
|
|
2880
2892
|
id: factories.long(),
|
|
@@ -2889,6 +2901,16 @@ var factories = {
|
|
|
2889
2901
|
updated_at: factories.date_time_iso_8601(),
|
|
2890
2902
|
alt: factories.string(),
|
|
2891
2903
|
}); },
|
|
2904
|
+
'io.flow.shopify.external.v0.models.product_metafield': function () { return ({
|
|
2905
|
+
id: factories.long(),
|
|
2906
|
+
namespace: factories.string(),
|
|
2907
|
+
key: factories.string(),
|
|
2908
|
+
value: factories.string(),
|
|
2909
|
+
created_at: factories.date_time_iso_8601(),
|
|
2910
|
+
updated_at: factories.date_time_iso_8601(),
|
|
2911
|
+
type: factories.string(),
|
|
2912
|
+
admin_graphql_api_id: factories.string(),
|
|
2913
|
+
}); },
|
|
2892
2914
|
'io.flow.shopify.external.v0.models.product_variant': function () { return ({
|
|
2893
2915
|
id: factories.long(),
|
|
2894
2916
|
sku: factories.string(),
|
|
@@ -3948,9 +3970,57 @@ var factories = {
|
|
|
3948
3970
|
]); },
|
|
3949
3971
|
'io.flow.stripe.v0.enums.refund_reason': function () { return faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']); },
|
|
3950
3972
|
'io.flow.stripe.v0.enums.refund_status': function () { return faker.helpers.arrayElement(['succeeded', 'failed', 'pending', 'canceled']); },
|
|
3973
|
+
'io.flow.stripe.v0.enums.reporting_report_run_status': function () { return faker.helpers.arrayElement(['pending', 'succeeded', 'failed']); },
|
|
3974
|
+
'io.flow.stripe.v0.enums.reporting_report_type': function () { return faker.helpers.arrayElement([
|
|
3975
|
+
'ending_balance_reconciliation.itemized.1',
|
|
3976
|
+
'ending_balance_reconciliation.itemized.2',
|
|
3977
|
+
'ending_balance_reconciliation.itemized.3',
|
|
3978
|
+
'ending_balance_reconciliation.itemized.4',
|
|
3979
|
+
'payout_reconciliation.itemized.5',
|
|
3980
|
+
'payout_reconciliation.by_id.itemized.1',
|
|
3981
|
+
'payout_reconciliation.by_id.itemized.2',
|
|
3982
|
+
'payout_reconciliation.by_id.itemized.3',
|
|
3983
|
+
'payout_reconciliation.by_id.itemized.4',
|
|
3984
|
+
'payout_reconciliation.by_id.summary.1',
|
|
3985
|
+
'ending_balance_reconciliation.summary.1',
|
|
3986
|
+
'payout_reconciliation.itemized.1',
|
|
3987
|
+
'payout_reconciliation.itemized.2',
|
|
3988
|
+
'payout_reconciliation.itemized.3',
|
|
3989
|
+
'payout_reconciliation.itemized.4',
|
|
3990
|
+
'payout_reconciliation.summary.1',
|
|
3991
|
+
]); },
|
|
3951
3992
|
'io.flow.stripe.v0.enums.request_three_d_secure_type': function () { return faker.helpers.arrayElement(['automatic', 'any']); },
|
|
3952
3993
|
'io.flow.stripe.v0.enums.requested_capabilities': function () { return faker.helpers.arrayElement(['card_payments', 'legacy_payments', 'transfers']); },
|
|
3953
3994
|
'io.flow.stripe.v0.enums.setup_future_usage': function () { return faker.helpers.arrayElement(['on_session', 'off_session']); },
|
|
3995
|
+
'io.flow.stripe.v0.enums.shopify_payment_stripe_event_type': function () { return faker.helpers.arrayElement([
|
|
3996
|
+
'charge.captured',
|
|
3997
|
+
'charge.dispute.created',
|
|
3998
|
+
'charge.dispute.closed',
|
|
3999
|
+
'charge.dispute.funds_reinstated',
|
|
4000
|
+
'charge.dispute.funds_withdrawn',
|
|
4001
|
+
'charge.dispute.updated',
|
|
4002
|
+
'charge.expired',
|
|
4003
|
+
'charge.failed',
|
|
4004
|
+
'charge.pending',
|
|
4005
|
+
'charge.refund.updated',
|
|
4006
|
+
'charge.refunded',
|
|
4007
|
+
'charge.succeeded',
|
|
4008
|
+
'charge.updated',
|
|
4009
|
+
'payment_intent.amount_capturable_updated',
|
|
4010
|
+
'payment_intent.canceled',
|
|
4011
|
+
'payment_intent.created',
|
|
4012
|
+
'payment_intent.partially_funded',
|
|
4013
|
+
'payment_intent.payment_failed',
|
|
4014
|
+
'payment_intent.processing',
|
|
4015
|
+
'payment_intent.requires_action',
|
|
4016
|
+
'payment_intent.succeeded',
|
|
4017
|
+
'transfer.created',
|
|
4018
|
+
'transfer.reversed',
|
|
4019
|
+
'transfer.updated',
|
|
4020
|
+
'reporting.report_run.succeeded',
|
|
4021
|
+
'reporting.report_type.updated',
|
|
4022
|
+
'reporting.report_type.failed',
|
|
4023
|
+
]); },
|
|
3954
4024
|
'io.flow.stripe.v0.enums.source_flow': function () { return faker.helpers.arrayElement(['redirect', 'receiver', 'code_verification', 'none']); },
|
|
3955
4025
|
'io.flow.stripe.v0.enums.source_status': function () { return faker.helpers.arrayElement(['canceled', 'chargeable', 'consumed', 'failed', 'pending']); },
|
|
3956
4026
|
'io.flow.stripe.v0.enums.source_type': function () { return faker.helpers.arrayElement([
|
|
@@ -4783,11 +4853,68 @@ var factories = {
|
|
|
4783
4853
|
total_count: factories.long(),
|
|
4784
4854
|
url: factories.string(),
|
|
4785
4855
|
}); },
|
|
4856
|
+
'io.flow.stripe.v0.models.report_run_parameters': function () { return ({
|
|
4857
|
+
interval_start: factories.long(),
|
|
4858
|
+
interval_end: factories.long(),
|
|
4859
|
+
columns: arrayOf(function () { return factories.string(); }),
|
|
4860
|
+
payout: factories.string(),
|
|
4861
|
+
connected_account: factories.string(),
|
|
4862
|
+
reporting_category: factories.string(),
|
|
4863
|
+
}); },
|
|
4864
|
+
'io.flow.stripe.v0.models.reporting_report_run': function () { return ({
|
|
4865
|
+
id: factories.string(),
|
|
4866
|
+
object: factories.string(),
|
|
4867
|
+
created: factories.long(),
|
|
4868
|
+
error: factories.string(),
|
|
4869
|
+
livemode: factories.boolean(),
|
|
4870
|
+
status: factories['io.flow.stripe.v0.enums.reporting_report_run_status'](),
|
|
4871
|
+
result: factories['io.flow.stripe.v0.models.reporting_report_run_result'](),
|
|
4872
|
+
succeeded_at: factories.long(),
|
|
4873
|
+
}); },
|
|
4874
|
+
'io.flow.stripe.v0.models.reporting_report_run_form': function () { return ({
|
|
4875
|
+
report_type: factories['io.flow.stripe.v0.enums.reporting_report_type'](),
|
|
4876
|
+
parameters: factories['io.flow.stripe.v0.models.report_run_parameters'](),
|
|
4877
|
+
}); },
|
|
4878
|
+
'io.flow.stripe.v0.models.reporting_report_run_result': function () { return ({
|
|
4879
|
+
id: factories.string(),
|
|
4880
|
+
object: factories.string(),
|
|
4881
|
+
created: factories.long(),
|
|
4882
|
+
expires_at: factories.long(),
|
|
4883
|
+
filename: factories.string(),
|
|
4884
|
+
links: factories.object(),
|
|
4885
|
+
purpose: factories.string(),
|
|
4886
|
+
size: factories.long(),
|
|
4887
|
+
title: factories.string(),
|
|
4888
|
+
type: factories.string(),
|
|
4889
|
+
url: factories.string(),
|
|
4890
|
+
}); },
|
|
4891
|
+
'io.flow.stripe.v0.models.reporting_report_runs': function () { return ({
|
|
4892
|
+
object: factories.string(),
|
|
4893
|
+
data: arrayOf(function () { return factories['io.flow.stripe.v0.models.reporting_report_run'](); }),
|
|
4894
|
+
has_more: factories.boolean(),
|
|
4895
|
+
url: factories.string(),
|
|
4896
|
+
}); },
|
|
4786
4897
|
'io.flow.stripe.v0.models.shipping': function () { return ({
|
|
4787
4898
|
address: factories['io.flow.stripe.v0.models.address'](),
|
|
4788
4899
|
name: factories.string(),
|
|
4789
4900
|
phone: factories.string(),
|
|
4790
4901
|
}); },
|
|
4902
|
+
'io.flow.stripe.v0.models.shopify_payment_stripe_event': function () { return ({
|
|
4903
|
+
id: factories.string(),
|
|
4904
|
+
api_version: factories.string(),
|
|
4905
|
+
data: factories['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'](),
|
|
4906
|
+
request: factories.object(),
|
|
4907
|
+
type: factories['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'](),
|
|
4908
|
+
object: factories.string(),
|
|
4909
|
+
account: factories.string(),
|
|
4910
|
+
created: factories.long(),
|
|
4911
|
+
livemode: factories.boolean(),
|
|
4912
|
+
pending_webhooks: factories.integer(),
|
|
4913
|
+
}); },
|
|
4914
|
+
'io.flow.stripe.v0.models.shopify_payment_stripe_event_data': function () { return ({
|
|
4915
|
+
object: factories.object(),
|
|
4916
|
+
previous_attributes: factories.object(),
|
|
4917
|
+
}); },
|
|
4791
4918
|
'io.flow.stripe.v0.models.source': function () { return ({
|
|
4792
4919
|
id: factories.string(),
|
|
4793
4920
|
object: factories.string(),
|
|
@@ -5082,12 +5209,6 @@ var factories = {
|
|
|
5082
5209
|
id: factories.string(),
|
|
5083
5210
|
name: factories.string(),
|
|
5084
5211
|
}); },
|
|
5085
|
-
'io.flow.tech.onboarding.playground.v0.models.shawn_roundtable_workshop_rate': function () { return ({
|
|
5086
|
-
origin_country: factories.string(),
|
|
5087
|
-
destination_country: factories.string(),
|
|
5088
|
-
weight: factories.double(),
|
|
5089
|
-
amount: factories.double(),
|
|
5090
|
-
}); },
|
|
5091
5212
|
'io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description': function () { return ({
|
|
5092
5213
|
description: factories.string(),
|
|
5093
5214
|
}); },
|
|
@@ -5394,11 +5515,15 @@ var factories = {
|
|
|
5394
5515
|
'io.flow.v0.enums.economic_title_location': function () { return faker.helpers.arrayElement(['high_seas', 'origination', 'destination']); },
|
|
5395
5516
|
'io.flow.v0.enums.entity_identifier_type': function () { return faker.helpers.arrayElement(['ioss', 'voec', 'zaz']); },
|
|
5396
5517
|
'io.flow.v0.enums.environment': function () { return faker.helpers.arrayElement(['sandbox', 'production']); },
|
|
5518
|
+
'io.flow.v0.enums.estimate_origin': function () { return faker.helpers.arrayElement(['Shopify', 'GlobalE', 'Aftership', 'Carrier']); },
|
|
5519
|
+
'io.flow.v0.enums.estimate_type': function () { return faker.helpers.arrayElement(['Estimated', 'Final']); },
|
|
5397
5520
|
'io.flow.v0.enums.event_type': function () { return faker.helpers.arrayElement([
|
|
5398
5521
|
'test_upserted',
|
|
5399
5522
|
'generate_load',
|
|
5400
5523
|
'aldo_item_upserted',
|
|
5401
5524
|
'aldo_item_deleted',
|
|
5525
|
+
'ansh_item_upserted',
|
|
5526
|
+
'ansh_item_deleted',
|
|
5402
5527
|
'transaction_upserted',
|
|
5403
5528
|
'organization_transaction_upserted',
|
|
5404
5529
|
'organization_transaction_deleted',
|
|
@@ -5508,6 +5633,11 @@ var factories = {
|
|
|
5508
5633
|
'shipping_configuration_item_availability_deleted',
|
|
5509
5634
|
'shipping_configuration_item_shipping_pricing_upserted',
|
|
5510
5635
|
'shipping_configuration_item_shipping_pricing_deleted',
|
|
5636
|
+
'ge_item_inserted',
|
|
5637
|
+
'ge_item_updated',
|
|
5638
|
+
'ge_item_deleted',
|
|
5639
|
+
'ge_product_restriction_result_upserted',
|
|
5640
|
+
'ge_product_restriction_result_deleted',
|
|
5511
5641
|
'hs6_code_upserted',
|
|
5512
5642
|
'hs6_code_deleted',
|
|
5513
5643
|
'hs10_code_upserted',
|
|
@@ -5527,14 +5657,8 @@ var factories = {
|
|
|
5527
5657
|
'manifested_label_deleted',
|
|
5528
5658
|
'label_processing_modification_upserted',
|
|
5529
5659
|
'label_processing_modification_deleted',
|
|
5530
|
-
'local_item_upserted',
|
|
5531
|
-
'local_item_deleted',
|
|
5532
5660
|
'merchant_application_upserted',
|
|
5533
5661
|
'merchant_application_deleted',
|
|
5534
|
-
'checkout_optin_responses_upserted',
|
|
5535
|
-
'checkout_optin_responses_deleted',
|
|
5536
|
-
'browse_optin_responses_upserted',
|
|
5537
|
-
'browse_optin_responses_deleted',
|
|
5538
5662
|
'order_placed',
|
|
5539
5663
|
'order_placed_v2',
|
|
5540
5664
|
'ready_to_fulfill',
|
|
@@ -5576,6 +5700,8 @@ var factories = {
|
|
|
5576
5700
|
'virtual_card_capture_deleted',
|
|
5577
5701
|
'virtual_card_refund_upserted',
|
|
5578
5702
|
'virtual_card_refund_deleted',
|
|
5703
|
+
'authorization_retry_upserted',
|
|
5704
|
+
'authorization_retry_deleted',
|
|
5579
5705
|
'payment_request_upserted',
|
|
5580
5706
|
'payment_request_deleted',
|
|
5581
5707
|
'price_book_upserted',
|
|
@@ -5759,7 +5885,6 @@ var factories = {
|
|
|
5759
5885
|
'vehicles_and_parts',
|
|
5760
5886
|
'other',
|
|
5761
5887
|
]); },
|
|
5762
|
-
'io.flow.v0.enums.optin_response_type': function () { return faker.helpers.arrayElement(['not_shown', 'opted_in', 'opted_out']); },
|
|
5763
5888
|
'io.flow.v0.enums.order_change_source': function () { return faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']); },
|
|
5764
5889
|
'io.flow.v0.enums.order_error_code': function () { return faker.helpers.arrayElement([
|
|
5765
5890
|
'generic_error',
|
|
@@ -5778,6 +5903,7 @@ var factories = {
|
|
|
5778
5903
|
'total_changed',
|
|
5779
5904
|
]); },
|
|
5780
5905
|
'io.flow.v0.enums.order_merchant_of_record': function () { return faker.helpers.arrayElement(['flow', 'organization', 'mixed']); },
|
|
5906
|
+
'io.flow.v0.enums.order_payment_source_type': function () { return faker.helpers.arrayElement(['globale', 'third_party']); },
|
|
5781
5907
|
'io.flow.v0.enums.order_payment_type': function () { return faker.helpers.arrayElement([
|
|
5782
5908
|
'card',
|
|
5783
5909
|
'online',
|
|
@@ -6094,7 +6220,6 @@ var factories = {
|
|
|
6094
6220
|
'io.flow.v0.enums.role': function () { return faker.helpers.arrayElement(['admin', 'member']); },
|
|
6095
6221
|
'io.flow.v0.enums.rounding_method': function () { return faker.helpers.arrayElement(['up', 'down', 'nearest']); },
|
|
6096
6222
|
'io.flow.v0.enums.rounding_type': function () { return faker.helpers.arrayElement(['pattern', 'multiple']); },
|
|
6097
|
-
'io.flow.v0.enums.rule_effect_type': function () { return faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']); },
|
|
6098
6223
|
'io.flow.v0.enums.schedule_exception_status': function () { return faker.helpers.arrayElement(['Open', 'Closed']); },
|
|
6099
6224
|
'io.flow.v0.enums.shipment_integration_type': function () { return faker.helpers.arrayElement(['direct', 'information', 'preadvice']); },
|
|
6100
6225
|
'io.flow.v0.enums.shipment_recipient': function () { return faker.helpers.arrayElement(['customer', 'return', 'crossdock']); },
|
|
@@ -6165,9 +6290,6 @@ var factories = {
|
|
|
6165
6290
|
'Expired_001',
|
|
6166
6291
|
]); },
|
|
6167
6292
|
'io.flow.v0.enums.surcharge_responsible_party': function () { return faker.helpers.arrayElement(['organization', 'customer']); },
|
|
6168
|
-
'io.flow.v0.enums.sync_record_failure_reason': function () { return faker.helpers.arrayElement(['inventory', 'address', 'promotion', 'other']); },
|
|
6169
|
-
'io.flow.v0.enums.sync_stream_type': function () { return faker.helpers.arrayElement(['submitted_order', 'placed_order']); },
|
|
6170
|
-
'io.flow.v0.enums.sync_unit_of_time': function () { return faker.helpers.arrayElement(['day', 'hour', 'minute', 'second']); },
|
|
6171
6293
|
'io.flow.v0.enums.tax_applicability': function () { return faker.helpers.arrayElement(['none', 'all']); },
|
|
6172
6294
|
'io.flow.v0.enums.tax_report_type': function () { return faker.helpers.arrayElement(['consumer', 'b2b']); },
|
|
6173
6295
|
'io.flow.v0.enums.tax_verification_result': function () { return faker.helpers.arrayElement(['valid', 'invalid', 'unable_to_validate']); },
|
|
@@ -6192,6 +6314,8 @@ var factories = {
|
|
|
6192
6314
|
'exception',
|
|
6193
6315
|
'returned',
|
|
6194
6316
|
'expired',
|
|
6317
|
+
'unknown',
|
|
6318
|
+
'unmapped',
|
|
6195
6319
|
]); },
|
|
6196
6320
|
'io.flow.v0.enums.trade_agreement_name': function () { return faker.helpers.arrayElement(['USMCA', 'T-MEC', 'CUSMA', 'TCA']); },
|
|
6197
6321
|
'io.flow.v0.enums.trade_agreement_status': function () { return faker.helpers.arrayElement(['supported', 'not_supported']); },
|
|
@@ -6222,7 +6346,7 @@ var factories = {
|
|
|
6222
6346
|
'virtual_card_refund',
|
|
6223
6347
|
'failed_payout',
|
|
6224
6348
|
'tax_refund',
|
|
6225
|
-
'
|
|
6349
|
+
'non_l4l_tax_duty_fx',
|
|
6226
6350
|
'ge_revenue_share',
|
|
6227
6351
|
'tax_duty_delta',
|
|
6228
6352
|
]); },
|
|
@@ -6660,6 +6784,18 @@ var factories = {
|
|
|
6660
6784
|
region: factories.string(),
|
|
6661
6785
|
interval: factories['io.flow.v0.enums.unit_of_time'](),
|
|
6662
6786
|
}); },
|
|
6787
|
+
'io.flow.v0.models.ansh_item_deleted': function () { return ({
|
|
6788
|
+
discriminator: 'ansh_item_deleted',
|
|
6789
|
+
event_id: factories.string(),
|
|
6790
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6791
|
+
id: factories.string(),
|
|
6792
|
+
}); },
|
|
6793
|
+
'io.flow.v0.models.ansh_item_upserted': function () { return ({
|
|
6794
|
+
discriminator: 'ansh_item_upserted',
|
|
6795
|
+
event_id: factories.string(),
|
|
6796
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6797
|
+
item: factories['io.flow.tech.onboarding.playground.v0.models.ansh_item'](),
|
|
6798
|
+
}); },
|
|
6663
6799
|
'io.flow.v0.models.apple_pay_merchant_validation_payload': function () { return ({
|
|
6664
6800
|
discriminator: 'apple_pay_merchant_validation_payload',
|
|
6665
6801
|
validation_url: factories.string(),
|
|
@@ -6819,6 +6955,30 @@ var factories = {
|
|
|
6819
6955
|
'io.flow.v0.models.authorization_result_description': function () { return ({
|
|
6820
6956
|
display: factories.string(),
|
|
6821
6957
|
}); },
|
|
6958
|
+
'io.flow.v0.models.authorization_retry': function () { return ({
|
|
6959
|
+
id: factories.string(),
|
|
6960
|
+
authorization_request_id: factories.string(),
|
|
6961
|
+
authorization_id: factories.string(),
|
|
6962
|
+
organization_id: factories.string(),
|
|
6963
|
+
attempt: factories.integer(),
|
|
6964
|
+
last_failure_code: factories.string(),
|
|
6965
|
+
created_at: factories.date_time_iso_8601(),
|
|
6966
|
+
updated_at: factories.date_time_iso_8601(),
|
|
6967
|
+
}); },
|
|
6968
|
+
'io.flow.v0.models.authorization_retry_deleted': function () { return ({
|
|
6969
|
+
discriminator: 'authorization_retry_deleted',
|
|
6970
|
+
event_id: factories.string(),
|
|
6971
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6972
|
+
organization: factories.string(),
|
|
6973
|
+
id: factories.string(),
|
|
6974
|
+
}); },
|
|
6975
|
+
'io.flow.v0.models.authorization_retry_upserted': function () { return ({
|
|
6976
|
+
discriminator: 'authorization_retry_upserted',
|
|
6977
|
+
event_id: factories.string(),
|
|
6978
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6979
|
+
organization: factories.string(),
|
|
6980
|
+
authorization_retry: factories['io.flow.v0.models.authorization_retry'](),
|
|
6981
|
+
}); },
|
|
6822
6982
|
'io.flow.v0.models.authorization_status_changed': function () { return ({
|
|
6823
6983
|
discriminator: 'authorization_status_changed',
|
|
6824
6984
|
event_id: factories.string(),
|
|
@@ -7061,25 +7221,6 @@ var factories = {
|
|
|
7061
7221
|
origin_location_source: factories['io.flow.v0.enums.origin_location_source'](),
|
|
7062
7222
|
hub_code: factories.string(),
|
|
7063
7223
|
}); },
|
|
7064
|
-
'io.flow.v0.models.browse_optin_responses': function () { return ({
|
|
7065
|
-
id: factories.string(),
|
|
7066
|
-
session_id: factories.string(),
|
|
7067
|
-
optin_responses: arrayOf(function () { return factories['io.flow.v0.models.optin_response'](); }),
|
|
7068
|
-
}); },
|
|
7069
|
-
'io.flow.v0.models.browse_optin_responses_deleted': function () { return ({
|
|
7070
|
-
discriminator: 'browse_optin_responses_deleted',
|
|
7071
|
-
event_id: factories.string(),
|
|
7072
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7073
|
-
organization: factories.string(),
|
|
7074
|
-
id: factories.string(),
|
|
7075
|
-
}); },
|
|
7076
|
-
'io.flow.v0.models.browse_optin_responses_upserted': function () { return ({
|
|
7077
|
-
discriminator: 'browse_optin_responses_upserted',
|
|
7078
|
-
event_id: factories.string(),
|
|
7079
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7080
|
-
organization: factories.string(),
|
|
7081
|
-
browse_optin_responses: factories['io.flow.v0.models.browse_optin_responses'](),
|
|
7082
|
-
}); },
|
|
7083
7224
|
'io.flow.v0.models.browser_info': function () { return ({
|
|
7084
7225
|
origin: factories.string(),
|
|
7085
7226
|
language: factories.string(),
|
|
@@ -7202,6 +7343,7 @@ var factories = {
|
|
|
7202
7343
|
processor: factories['io.flow.v0.unions.expandable_payment_processor'](),
|
|
7203
7344
|
stored_method_usage_step: factories['io.flow.v0.enums.stored_method_usage_step'](),
|
|
7204
7345
|
authorized_at: factories.date_time_iso_8601(),
|
|
7346
|
+
authorization_request_id: factories.string(),
|
|
7205
7347
|
}); },
|
|
7206
7348
|
'io.flow.v0.models.card_authorization_deleted_v2': function () { return ({
|
|
7207
7349
|
discriminator: 'card_authorization_deleted_v2',
|
|
@@ -7796,26 +7938,6 @@ var factories = {
|
|
|
7796
7938
|
name: factories.string(),
|
|
7797
7939
|
value: factories.string(),
|
|
7798
7940
|
}); },
|
|
7799
|
-
'io.flow.v0.models.checkout_optin_responses': function () { return ({
|
|
7800
|
-
id: factories.string(),
|
|
7801
|
-
order_number: factories.string(),
|
|
7802
|
-
session_id: factories.string(),
|
|
7803
|
-
optin_responses: arrayOf(function () { return factories['io.flow.v0.models.optin_response'](); }),
|
|
7804
|
-
}); },
|
|
7805
|
-
'io.flow.v0.models.checkout_optin_responses_deleted': function () { return ({
|
|
7806
|
-
discriminator: 'checkout_optin_responses_deleted',
|
|
7807
|
-
event_id: factories.string(),
|
|
7808
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7809
|
-
organization: factories.string(),
|
|
7810
|
-
id: factories.string(),
|
|
7811
|
-
}); },
|
|
7812
|
-
'io.flow.v0.models.checkout_optin_responses_upserted': function () { return ({
|
|
7813
|
-
discriminator: 'checkout_optin_responses_upserted',
|
|
7814
|
-
event_id: factories.string(),
|
|
7815
|
-
timestamp: factories.date_time_iso_8601(),
|
|
7816
|
-
organization: factories.string(),
|
|
7817
|
-
checkout_optin_responses: factories['io.flow.v0.models.checkout_optin_responses'](),
|
|
7818
|
-
}); },
|
|
7819
7941
|
'io.flow.v0.models.checkout_reference': function () { return ({
|
|
7820
7942
|
id: factories.string(),
|
|
7821
7943
|
}); },
|
|
@@ -8776,6 +8898,14 @@ var factories = {
|
|
|
8776
8898
|
number: factories.string(),
|
|
8777
8899
|
issuing_country: factories.string(),
|
|
8778
8900
|
}); },
|
|
8901
|
+
'io.flow.v0.models.estimate': function () { return ({
|
|
8902
|
+
id: factories.string(),
|
|
8903
|
+
organization_id: factories.string(),
|
|
8904
|
+
label_id: factories.string(),
|
|
8905
|
+
estimate: factories['io.flow.v0.models.shipping_label_hop_summary'](),
|
|
8906
|
+
type: factories['io.flow.v0.enums.estimate_type'](),
|
|
8907
|
+
origin: factories['io.flow.v0.enums.estimate_origin'](),
|
|
8908
|
+
}); },
|
|
8779
8909
|
'io.flow.v0.models.estimated_dimensions': function () { return ({
|
|
8780
8910
|
depth: factories['io.flow.v0.models.measurement'](),
|
|
8781
8911
|
length: factories['io.flow.v0.models.measurement'](),
|
|
@@ -9361,6 +9491,41 @@ var factories = {
|
|
|
9361
9491
|
hs6_code: factories.string(),
|
|
9362
9492
|
landed_costs: arrayOf(function () { return factories['io.flow.v0.models.lane_landed_cost'](); }),
|
|
9363
9493
|
}); },
|
|
9494
|
+
'io.flow.v0.models.ge_item_deleted': function () { return ({
|
|
9495
|
+
discriminator: 'ge_item_deleted',
|
|
9496
|
+
event_id: factories.string(),
|
|
9497
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9498
|
+
organization: factories.string(),
|
|
9499
|
+
item: factories['io.flow.v0.models.item'](),
|
|
9500
|
+
}); },
|
|
9501
|
+
'io.flow.v0.models.ge_item_inserted': function () { return ({
|
|
9502
|
+
discriminator: 'ge_item_inserted',
|
|
9503
|
+
event_id: factories.string(),
|
|
9504
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9505
|
+
organization: factories.string(),
|
|
9506
|
+
item: factories['io.flow.v0.models.item'](),
|
|
9507
|
+
}); },
|
|
9508
|
+
'io.flow.v0.models.ge_item_updated': function () { return ({
|
|
9509
|
+
discriminator: 'ge_item_updated',
|
|
9510
|
+
event_id: factories.string(),
|
|
9511
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9512
|
+
organization: factories.string(),
|
|
9513
|
+
item: factories['io.flow.v0.models.item'](),
|
|
9514
|
+
}); },
|
|
9515
|
+
'io.flow.v0.models.ge_product_restriction_result_deleted': function () { return ({
|
|
9516
|
+
discriminator: 'ge_product_restriction_result_deleted',
|
|
9517
|
+
event_id: factories.string(),
|
|
9518
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9519
|
+
organization: factories.string(),
|
|
9520
|
+
id: factories.string(),
|
|
9521
|
+
}); },
|
|
9522
|
+
'io.flow.v0.models.ge_product_restriction_result_upserted': function () { return ({
|
|
9523
|
+
discriminator: 'ge_product_restriction_result_upserted',
|
|
9524
|
+
event_id: factories.string(),
|
|
9525
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9526
|
+
organization: factories.string(),
|
|
9527
|
+
ge_product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
9528
|
+
}); },
|
|
9364
9529
|
'io.flow.v0.models.generate_load': function () { return ({
|
|
9365
9530
|
discriminator: 'generate_load',
|
|
9366
9531
|
event_id: factories.string(),
|
|
@@ -10237,13 +10402,6 @@ var factories = {
|
|
|
10237
10402
|
duty: factories['io.flow.v0.models.localized_item_duty'](),
|
|
10238
10403
|
price: factories['io.flow.v0.models.localized_item_price'](),
|
|
10239
10404
|
}); },
|
|
10240
|
-
'io.flow.v0.models.local_item_deleted': function () { return ({
|
|
10241
|
-
discriminator: 'local_item_deleted',
|
|
10242
|
-
event_id: factories.string(),
|
|
10243
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10244
|
-
organization: factories.string(),
|
|
10245
|
-
local_item: factories['io.flow.v0.models.local_item'](),
|
|
10246
|
-
}); },
|
|
10247
10405
|
'io.flow.v0.models.local_item_pricing': function () { return ({
|
|
10248
10406
|
price: factories['io.flow.v0.models.localized_item_price'](),
|
|
10249
10407
|
vat: factories['io.flow.v0.models.localized_item_vat'](),
|
|
@@ -10252,13 +10410,6 @@ var factories = {
|
|
|
10252
10410
|
attributes: objectOf(function () { return factories['io.flow.v0.models.price_with_base'](); }),
|
|
10253
10411
|
price_attributes: objectOf(function () { return factories['io.flow.v0.models.local_item_attribute_pricing'](); }),
|
|
10254
10412
|
}); },
|
|
10255
|
-
'io.flow.v0.models.local_item_upserted': function () { return ({
|
|
10256
|
-
discriminator: 'local_item_upserted',
|
|
10257
|
-
event_id: factories.string(),
|
|
10258
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10259
|
-
organization: factories.string(),
|
|
10260
|
-
local_item: factories['io.flow.v0.models.local_item'](),
|
|
10261
|
-
}); },
|
|
10262
10413
|
'io.flow.v0.models.local_price_details': function () { return ({
|
|
10263
10414
|
base: factories['io.flow.v0.models.price_details'](),
|
|
10264
10415
|
local: factories['io.flow.v0.models.price_details'](),
|
|
@@ -10668,6 +10819,7 @@ var factories = {
|
|
|
10668
10819
|
processor: factories['io.flow.v0.unions.expandable_payment_processor'](),
|
|
10669
10820
|
confirmation_details: factories['io.flow.v0.unions.confirmation_details'](),
|
|
10670
10821
|
authorized_at: factories.date_time_iso_8601(),
|
|
10822
|
+
authorization_request_id: factories.string(),
|
|
10671
10823
|
}); },
|
|
10672
10824
|
'io.flow.v0.models.online_authorization_deleted_v2': function () { return ({
|
|
10673
10825
|
discriminator: 'online_authorization_deleted_v2',
|
|
@@ -10694,10 +10846,6 @@ var factories = {
|
|
|
10694
10846
|
email: factories.string(),
|
|
10695
10847
|
phone: factories.string(),
|
|
10696
10848
|
}); },
|
|
10697
|
-
'io.flow.v0.models.optin_response': function () { return ({
|
|
10698
|
-
key: factories.string(),
|
|
10699
|
-
value: factories['io.flow.v0.enums.optin_response_type'](),
|
|
10700
|
-
}); },
|
|
10701
10849
|
'io.flow.v0.models.option_weight_estimates': function () { return ({
|
|
10702
10850
|
gravitational: factories['io.flow.v0.models.measurement'](),
|
|
10703
10851
|
dimensional: factories['io.flow.v0.models.measurement'](),
|
|
@@ -10736,6 +10884,7 @@ var factories = {
|
|
|
10736
10884
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
10737
10885
|
destination_contact_details: arrayOf(function () { return factories['io.flow.v0.models.destination_contact_detail'](); }),
|
|
10738
10886
|
incoterm_summary: factories['io.flow.v0.models.incoterm_summary'](),
|
|
10887
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
10739
10888
|
}); },
|
|
10740
10889
|
'io.flow.v0.models.order_address': function () { return ({
|
|
10741
10890
|
text: factories.string(),
|
|
@@ -10859,6 +11008,7 @@ var factories = {
|
|
|
10859
11008
|
authorization_keys: arrayOf(function () { return factories.string(); }),
|
|
10860
11009
|
options: factories['io.flow.v0.models.order_options'](),
|
|
10861
11010
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
11011
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
10862
11012
|
}); },
|
|
10863
11013
|
'io.flow.v0.models.order_fraud_status': function () { return ({
|
|
10864
11014
|
order: factories['io.flow.v0.models.order_reference'](),
|
|
@@ -11049,6 +11199,7 @@ var factories = {
|
|
|
11049
11199
|
authorization_keys: arrayOf(function () { return factories.string(); }),
|
|
11050
11200
|
options: factories['io.flow.v0.models.order_options'](),
|
|
11051
11201
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
11202
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
11052
11203
|
}); },
|
|
11053
11204
|
'io.flow.v0.models.order_reference': function () { return ({
|
|
11054
11205
|
discriminator: 'order_reference',
|
|
@@ -12378,9 +12529,6 @@ var factories = {
|
|
|
12378
12529
|
organization: factories.string(),
|
|
12379
12530
|
id: factories.string(),
|
|
12380
12531
|
}); },
|
|
12381
|
-
'io.flow.v0.models.price_book_item_export_options': function () { return ({
|
|
12382
|
-
available_identifiers: arrayOf(function () { return factories['io.flow.v0.enums.item_identifier'](); }),
|
|
12383
|
-
}); },
|
|
12384
12532
|
'io.flow.v0.models.price_book_item_export_type': function () { return ({
|
|
12385
12533
|
discriminator: 'price_book_item_export_type',
|
|
12386
12534
|
price_book_key: factories.string(),
|
|
@@ -12593,26 +12741,6 @@ var factories = {
|
|
|
12593
12741
|
organization: factories.string(),
|
|
12594
12742
|
product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
12595
12743
|
}); },
|
|
12596
|
-
'io.flow.v0.models.product_sellability': function () { return ({
|
|
12597
|
-
organization_id: factories.string(),
|
|
12598
|
-
product_id: factories.string(),
|
|
12599
|
-
product_correlation_id: factories.string(),
|
|
12600
|
-
restricted_regions: arrayOf(function () { return factories['io.flow.v0.models.sellablility_region_result'](); }),
|
|
12601
|
-
in_review_regions: arrayOf(function () { return factories['io.flow.v0.models.sellablility_region_result'](); }),
|
|
12602
|
-
}); },
|
|
12603
|
-
'io.flow.v0.models.product_sellability_form': function () { return ({
|
|
12604
|
-
organization_id: factories.string(),
|
|
12605
|
-
product_id: factories.string(),
|
|
12606
|
-
product_correlation_id: factories.string(),
|
|
12607
|
-
name: factories.string(),
|
|
12608
|
-
price: factories['io.flow.v0.models.product_sellability_price'](),
|
|
12609
|
-
description: factories.string(),
|
|
12610
|
-
taxonomy_category: factories['io.flow.v0.models.product_taxonomy_category'](),
|
|
12611
|
-
}); },
|
|
12612
|
-
'io.flow.v0.models.product_sellability_price': function () { return ({
|
|
12613
|
-
currency: factories.string(),
|
|
12614
|
-
amount: factories.decimal(),
|
|
12615
|
-
}); },
|
|
12616
12744
|
'io.flow.v0.models.product_taxonomy_category': function () { return ({
|
|
12617
12745
|
name: factories.string(),
|
|
12618
12746
|
full_name: factories.string(),
|
|
@@ -13449,10 +13577,6 @@ var factories = {
|
|
|
13449
13577
|
discriminator: 'select_issuer_option_action_details',
|
|
13450
13578
|
issuer_options: arrayOf(function () { return factories['io.flow.v0.models.issuer_reference'](); }),
|
|
13451
13579
|
}); },
|
|
13452
|
-
'io.flow.v0.models.sellablility_region_result': function () { return ({
|
|
13453
|
-
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
13454
|
-
regions: arrayOf(function () { return factories.string(); }),
|
|
13455
|
-
}); },
|
|
13456
13580
|
'io.flow.v0.models.service_reference': function () { return ({
|
|
13457
13581
|
id: factories.string(),
|
|
13458
13582
|
}); },
|
|
@@ -14275,68 +14399,6 @@ var factories = {
|
|
|
14275
14399
|
key: factories['io.flow.v0.enums.delivery_option_cost_detail_component_key'](),
|
|
14276
14400
|
available: arrayOf(function () { return factories['io.flow.v0.models.surcharge_responsible_party_display'](); }),
|
|
14277
14401
|
}); },
|
|
14278
|
-
'io.flow.v0.models.sync_duration': function () { return ({
|
|
14279
|
-
unit: factories['io.flow.v0.enums.sync_unit_of_time'](),
|
|
14280
|
-
value: factories.long(),
|
|
14281
|
-
}); },
|
|
14282
|
-
'io.flow.v0.models.sync_pending_record': function () { return ({
|
|
14283
|
-
id: factories.string(),
|
|
14284
|
-
stream: factories['io.flow.v0.models.sync_stream_reference'](),
|
|
14285
|
-
value: factories.string(),
|
|
14286
|
-
system: factories.string(),
|
|
14287
|
-
}); },
|
|
14288
|
-
'io.flow.v0.models.sync_record': function () { return ({
|
|
14289
|
-
id: factories.string(),
|
|
14290
|
-
system: factories.string(),
|
|
14291
|
-
value: factories.string(),
|
|
14292
|
-
stream: factories['io.flow.v0.models.sync_stream_reference'](),
|
|
14293
|
-
}); },
|
|
14294
|
-
'io.flow.v0.models.sync_record_failure': function () { return ({
|
|
14295
|
-
id: factories.string(),
|
|
14296
|
-
stream: factories['io.flow.v0.models.sync_stream_reference'](),
|
|
14297
|
-
value: factories.string(),
|
|
14298
|
-
system: factories.string(),
|
|
14299
|
-
reason: factories['io.flow.v0.enums.sync_record_failure_reason'](),
|
|
14300
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
14301
|
-
}); },
|
|
14302
|
-
'io.flow.v0.models.sync_record_failure_form': function () { return ({
|
|
14303
|
-
stream_key: factories.string(),
|
|
14304
|
-
value: factories.string(),
|
|
14305
|
-
system: factories.string(),
|
|
14306
|
-
reason: factories['io.flow.v0.enums.sync_record_failure_reason'](),
|
|
14307
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
14308
|
-
}); },
|
|
14309
|
-
'io.flow.v0.models.sync_record_form': function () { return ({
|
|
14310
|
-
stream_key: factories.string(),
|
|
14311
|
-
system: factories.string(),
|
|
14312
|
-
value: factories.string(),
|
|
14313
|
-
}); },
|
|
14314
|
-
'io.flow.v0.models.sync_stream': function () { return ({
|
|
14315
|
-
id: factories.string(),
|
|
14316
|
-
key: factories.string(),
|
|
14317
|
-
type: factories['io.flow.v0.enums.sync_stream_type'](),
|
|
14318
|
-
systems: arrayOf(function () { return factories.string(); }),
|
|
14319
|
-
settings: factories['io.flow.v0.models.sync_stream_settings'](),
|
|
14320
|
-
}); },
|
|
14321
|
-
'io.flow.v0.models.sync_stream_form': function () { return ({
|
|
14322
|
-
type: factories['io.flow.v0.enums.sync_stream_type'](),
|
|
14323
|
-
systems: arrayOf(function () { return factories.string(); }),
|
|
14324
|
-
settings: factories['io.flow.v0.models.sync_stream_settings_form'](),
|
|
14325
|
-
}); },
|
|
14326
|
-
'io.flow.v0.models.sync_stream_reference': function () { return ({
|
|
14327
|
-
id: factories.string(),
|
|
14328
|
-
key: factories.string(),
|
|
14329
|
-
}); },
|
|
14330
|
-
'io.flow.v0.models.sync_stream_settings': function () { return ({
|
|
14331
|
-
pending_record_after: factories['io.flow.v0.models.sync_duration'](),
|
|
14332
|
-
warn_after: factories['io.flow.v0.models.sync_duration'](),
|
|
14333
|
-
error_after: factories['io.flow.v0.models.sync_duration'](),
|
|
14334
|
-
}); },
|
|
14335
|
-
'io.flow.v0.models.sync_stream_settings_form': function () { return ({
|
|
14336
|
-
pending_record_after: factories['io.flow.v0.models.sync_duration'](),
|
|
14337
|
-
warn_after: factories['io.flow.v0.models.sync_duration'](),
|
|
14338
|
-
error_after: factories['io.flow.v0.models.sync_duration'](),
|
|
14339
|
-
}); },
|
|
14340
14402
|
'io.flow.v0.models.tax': function () { return ({
|
|
14341
14403
|
name: factories.string(),
|
|
14342
14404
|
rate: factories.decimal(),
|
|
@@ -15251,6 +15313,8 @@ var factories = {
|
|
|
15251
15313
|
function () { return factories['io.flow.v0.models.generate_load'](); },
|
|
15252
15314
|
function () { return factories['io.flow.v0.models.aldo_item_upserted'](); },
|
|
15253
15315
|
function () { return factories['io.flow.v0.models.aldo_item_deleted'](); },
|
|
15316
|
+
function () { return factories['io.flow.v0.models.ansh_item_upserted'](); },
|
|
15317
|
+
function () { return factories['io.flow.v0.models.ansh_item_deleted'](); },
|
|
15254
15318
|
function () { return factories['io.flow.v0.models.transaction_upserted'](); },
|
|
15255
15319
|
function () { return factories['io.flow.v0.models.organization_transaction_upserted'](); },
|
|
15256
15320
|
function () { return factories['io.flow.v0.models.organization_transaction_deleted'](); },
|
|
@@ -15360,6 +15424,11 @@ var factories = {
|
|
|
15360
15424
|
function () { return factories['io.flow.v0.models.shipping_configuration_item_availability_deleted'](); },
|
|
15361
15425
|
function () { return factories['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'](); },
|
|
15362
15426
|
function () { return factories['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'](); },
|
|
15427
|
+
function () { return factories['io.flow.v0.models.ge_item_inserted'](); },
|
|
15428
|
+
function () { return factories['io.flow.v0.models.ge_item_updated'](); },
|
|
15429
|
+
function () { return factories['io.flow.v0.models.ge_item_deleted'](); },
|
|
15430
|
+
function () { return factories['io.flow.v0.models.ge_product_restriction_result_upserted'](); },
|
|
15431
|
+
function () { return factories['io.flow.v0.models.ge_product_restriction_result_deleted'](); },
|
|
15363
15432
|
function () { return factories['io.flow.v0.models.hs6_code_upserted'](); },
|
|
15364
15433
|
function () { return factories['io.flow.v0.models.hs6_code_deleted'](); },
|
|
15365
15434
|
function () { return factories['io.flow.v0.models.hs10_code_upserted'](); },
|
|
@@ -15379,14 +15448,8 @@ var factories = {
|
|
|
15379
15448
|
function () { return factories['io.flow.v0.models.manifested_label_deleted'](); },
|
|
15380
15449
|
function () { return factories['io.flow.v0.models.label_processing_modification_upserted'](); },
|
|
15381
15450
|
function () { return factories['io.flow.v0.models.label_processing_modification_deleted'](); },
|
|
15382
|
-
function () { return factories['io.flow.v0.models.local_item_upserted'](); },
|
|
15383
|
-
function () { return factories['io.flow.v0.models.local_item_deleted'](); },
|
|
15384
15451
|
function () { return factories['io.flow.v0.models.merchant_application_upserted'](); },
|
|
15385
15452
|
function () { return factories['io.flow.v0.models.merchant_application_deleted'](); },
|
|
15386
|
-
function () { return factories['io.flow.v0.models.checkout_optin_responses_upserted'](); },
|
|
15387
|
-
function () { return factories['io.flow.v0.models.checkout_optin_responses_deleted'](); },
|
|
15388
|
-
function () { return factories['io.flow.v0.models.browse_optin_responses_upserted'](); },
|
|
15389
|
-
function () { return factories['io.flow.v0.models.browse_optin_responses_deleted'](); },
|
|
15390
15453
|
function () { return factories['io.flow.v0.models.order_placed'](); },
|
|
15391
15454
|
function () { return factories['io.flow.v0.models.order_placed_v2'](); },
|
|
15392
15455
|
function () { return factories['io.flow.v0.models.ready_to_fulfill'](); },
|
|
@@ -15428,6 +15491,8 @@ var factories = {
|
|
|
15428
15491
|
function () { return factories['io.flow.v0.models.virtual_card_capture_deleted'](); },
|
|
15429
15492
|
function () { return factories['io.flow.v0.models.virtual_card_refund_upserted'](); },
|
|
15430
15493
|
function () { return factories['io.flow.v0.models.virtual_card_refund_deleted'](); },
|
|
15494
|
+
function () { return factories['io.flow.v0.models.authorization_retry_upserted'](); },
|
|
15495
|
+
function () { return factories['io.flow.v0.models.authorization_retry_deleted'](); },
|
|
15431
15496
|
function () { return factories['io.flow.v0.models.payment_request_upserted'](); },
|
|
15432
15497
|
function () { return factories['io.flow.v0.models.payment_request_deleted'](); },
|
|
15433
15498
|
function () { return factories['io.flow.v0.models.price_book_upserted'](); },
|
|
@@ -16127,6 +16192,8 @@ export var makeAllocationV2 = function () { return factories['io.flow.v0.models.
|
|
|
16127
16192
|
export var makeAmountMargin = function () { return factories['io.flow.v0.models.amount_margin'](); };
|
|
16128
16193
|
export var makeAmountMarginForm = function () { return factories['io.flow.v0.models.amount_margin_form'](); };
|
|
16129
16194
|
export var makeAnalyticsExportType = function () { return factories['io.flow.v0.models.analytics_export_type'](); };
|
|
16195
|
+
export var makeAnshItemDeleted = function () { return factories['io.flow.v0.models.ansh_item_deleted'](); };
|
|
16196
|
+
export var makeAnshItemUpserted = function () { return factories['io.flow.v0.models.ansh_item_upserted'](); };
|
|
16130
16197
|
export var makeApplePayMerchantValidationPayload = function () { return factories['io.flow.v0.models.apple_pay_merchant_validation_payload'](); };
|
|
16131
16198
|
export var makeApplepaySdkCreateResultActionDetails = function () { return factories['io.flow.v0.models.applepay_sdk_create_result_action_details'](); };
|
|
16132
16199
|
export var makeApplepaySdkValidateResultActionDetails = function () { return factories['io.flow.v0.models.applepay_sdk_validate_result_action_details'](); };
|
|
@@ -16166,6 +16233,9 @@ export var makeAuthorizationResultActionPost = function () { return factories['i
|
|
|
16166
16233
|
export var makeAuthorizationResultActionType = function () { return factories['io.flow.v0.enums.authorization_result_action_type'](); };
|
|
16167
16234
|
export var makeAuthorizationResultActionWait = function () { return factories['io.flow.v0.models.authorization_result_action_wait'](); };
|
|
16168
16235
|
export var makeAuthorizationResultDescription = function () { return factories['io.flow.v0.models.authorization_result_description'](); };
|
|
16236
|
+
export var makeAuthorizationRetry = function () { return factories['io.flow.v0.models.authorization_retry'](); };
|
|
16237
|
+
export var makeAuthorizationRetryDeleted = function () { return factories['io.flow.v0.models.authorization_retry_deleted'](); };
|
|
16238
|
+
export var makeAuthorizationRetryUpserted = function () { return factories['io.flow.v0.models.authorization_retry_upserted'](); };
|
|
16169
16239
|
export var makeAuthorizationStatus = function () { return factories['io.flow.v0.enums.authorization_status'](); };
|
|
16170
16240
|
export var makeAuthorizationStatusChanged = function () { return factories['io.flow.v0.models.authorization_status_changed'](); };
|
|
16171
16241
|
export var makeAuthorizationVersion = function () { return factories['io.flow.v0.models.authorization_version'](); };
|
|
@@ -16213,9 +16283,6 @@ export var makeBillingDiscount = function () { return factories['io.flow.v0.mode
|
|
|
16213
16283
|
export var makeBridgeManifest = function () { return factories['io.flow.v0.models.bridge_manifest'](); };
|
|
16214
16284
|
export var makeBridgeManifestForm = function () { return factories['io.flow.v0.models.bridge_manifest_form'](); };
|
|
16215
16285
|
export var makeBridgeShippingLabelForm = function () { return factories['io.flow.v0.models.bridge_shipping_label_form'](); };
|
|
16216
|
-
export var makeBrowseOptinResponses = function () { return factories['io.flow.v0.models.browse_optin_responses'](); };
|
|
16217
|
-
export var makeBrowseOptinResponsesDeleted = function () { return factories['io.flow.v0.models.browse_optin_responses_deleted'](); };
|
|
16218
|
-
export var makeBrowseOptinResponsesUpserted = function () { return factories['io.flow.v0.models.browse_optin_responses_upserted'](); };
|
|
16219
16286
|
export var makeBrowserActionConfiguration = function () { return factories['io.flow.v0.unions.browser_action_configuration'](); };
|
|
16220
16287
|
export var makeBrowserInfo = function () { return factories['io.flow.v0.models.browser_info'](); };
|
|
16221
16288
|
export var makeBrowserInlineActionConfiguration = function () { return factories['io.flow.v0.models.browser_inline_action_configuration'](); };
|
|
@@ -16340,9 +16407,6 @@ export var makeCheckoutAttribute = function () { return factories['io.flow.v0.mo
|
|
|
16340
16407
|
export var makeCheckoutAttributeForm = function () { return factories['io.flow.v0.models.checkout_attribute_form'](); };
|
|
16341
16408
|
export var makeCheckoutItemContent = function () { return factories['io.flow.v0.models.checkout_item_content'](); };
|
|
16342
16409
|
export var makeCheckoutItemContentAttribute = function () { return factories['io.flow.v0.models.checkout_item_content_attribute'](); };
|
|
16343
|
-
export var makeCheckoutOptinResponses = function () { return factories['io.flow.v0.models.checkout_optin_responses'](); };
|
|
16344
|
-
export var makeCheckoutOptinResponsesDeleted = function () { return factories['io.flow.v0.models.checkout_optin_responses_deleted'](); };
|
|
16345
|
-
export var makeCheckoutOptinResponsesUpserted = function () { return factories['io.flow.v0.models.checkout_optin_responses_upserted'](); };
|
|
16346
16410
|
export var makeCheckoutReference = function () { return factories['io.flow.v0.models.checkout_reference'](); };
|
|
16347
16411
|
export var makeCheckoutToken = function () { return factories['io.flow.v0.models.checkout_token'](); };
|
|
16348
16412
|
export var makeCheckoutTokenForm = function () { return factories['io.flow.v0.unions.checkout_token_form'](); };
|
|
@@ -16542,6 +16606,9 @@ export var makeEntity = function () { return factories['io.flow.v0.unions.entity
|
|
|
16542
16606
|
export var makeEntityIdentifier = function () { return factories['io.flow.v0.models.entity_identifier'](); };
|
|
16543
16607
|
export var makeEntityIdentifierType = function () { return factories['io.flow.v0.enums.entity_identifier_type'](); };
|
|
16544
16608
|
export var makeEnvironment = function () { return factories['io.flow.v0.enums.environment'](); };
|
|
16609
|
+
export var makeEstimate = function () { return factories['io.flow.v0.models.estimate'](); };
|
|
16610
|
+
export var makeEstimateOrigin = function () { return factories['io.flow.v0.enums.estimate_origin'](); };
|
|
16611
|
+
export var makeEstimateType = function () { return factories['io.flow.v0.enums.estimate_type'](); };
|
|
16545
16612
|
export var makeEstimatedDimensions = function () { return factories['io.flow.v0.models.estimated_dimensions'](); };
|
|
16546
16613
|
export var makeEstimatedWindow = function () { return factories['io.flow.v0.models.estimated_window'](); };
|
|
16547
16614
|
export var makeEvent = function () { return factories['io.flow.v0.unions.event'](); };
|
|
@@ -16685,6 +16752,11 @@ export var makeFulfillmentRouting = function () { return factories['io.flow.v0.e
|
|
|
16685
16752
|
export var makeFullyHarmonizedItemUpserted = function () { return factories['io.flow.v0.models.fully_harmonized_item_upserted'](); };
|
|
16686
16753
|
export var makeGatewayAuthenticationData = function () { return factories['io.flow.v0.unions.gateway_authentication_data'](); };
|
|
16687
16754
|
export var makeGatewayAuthenticationDataForm = function () { return factories['io.flow.v0.unions.gateway_authentication_data_form'](); };
|
|
16755
|
+
export var makeGeItemDeleted = function () { return factories['io.flow.v0.models.ge_item_deleted'](); };
|
|
16756
|
+
export var makeGeItemInserted = function () { return factories['io.flow.v0.models.ge_item_inserted'](); };
|
|
16757
|
+
export var makeGeItemUpdated = function () { return factories['io.flow.v0.models.ge_item_updated'](); };
|
|
16758
|
+
export var makeGeProductRestrictionResultDeleted = function () { return factories['io.flow.v0.models.ge_product_restriction_result_deleted'](); };
|
|
16759
|
+
export var makeGeProductRestrictionResultUpserted = function () { return factories['io.flow.v0.models.ge_product_restriction_result_upserted'](); };
|
|
16688
16760
|
export var makeGenerateLoad = function () { return factories['io.flow.v0.models.generate_load'](); };
|
|
16689
16761
|
export var makeGenericError = function () { return factories['io.flow.v0.models.generic_error'](); };
|
|
16690
16762
|
export var makeGenericErrorCode = function () { return factories['io.flow.v0.enums.generic_error_code'](); };
|
|
@@ -16846,9 +16918,7 @@ export var makeLink = function () { return factories['io.flow.v0.models.link']()
|
|
|
16846
16918
|
export var makeLocal = function () { return factories['io.flow.v0.models.local'](); };
|
|
16847
16919
|
export var makeLocalItem = function () { return factories['io.flow.v0.models.local_item'](); };
|
|
16848
16920
|
export var makeLocalItemAttributePricing = function () { return factories['io.flow.v0.models.local_item_attribute_pricing'](); };
|
|
16849
|
-
export var makeLocalItemDeleted = function () { return factories['io.flow.v0.models.local_item_deleted'](); };
|
|
16850
16921
|
export var makeLocalItemPricing = function () { return factories['io.flow.v0.models.local_item_pricing'](); };
|
|
16851
|
-
export var makeLocalItemUpserted = function () { return factories['io.flow.v0.models.local_item_upserted'](); };
|
|
16852
16922
|
export var makeLocalPriceDetails = function () { return factories['io.flow.v0.models.local_price_details'](); };
|
|
16853
16923
|
export var makeLocalSession = function () { return factories['io.flow.v0.models.local_session'](); };
|
|
16854
16924
|
export var makeLocale = function () { return factories['io.flow.v0.models.locale'](); };
|
|
@@ -16940,8 +17010,6 @@ export var makeOnlineAuthorizationDetails = function () { return factories['io.f
|
|
|
16940
17010
|
export var makeOnlineAuthorizationUpsertedV2 = function () { return factories['io.flow.v0.models.online_authorization_upserted_v2'](); };
|
|
16941
17011
|
export var makeOnlinePaymentAuthorizationForm = function () { return factories['io.flow.v0.models.online_payment_authorization_form'](); };
|
|
16942
17012
|
export var makeOperationsContact = function () { return factories['io.flow.v0.models.operations_contact'](); };
|
|
16943
|
-
export var makeOptinResponse = function () { return factories['io.flow.v0.models.optin_response'](); };
|
|
16944
|
-
export var makeOptinResponseType = function () { return factories['io.flow.v0.enums.optin_response_type'](); };
|
|
16945
17013
|
export var makeOptionWeightEstimates = function () { return factories['io.flow.v0.models.option_weight_estimates'](); };
|
|
16946
17014
|
export var makeOptions = function () { return factories['io.flow.v0.models.options'](); };
|
|
16947
17015
|
export var makeOrder = function () { return factories['io.flow.v0.models.order'](); };
|
|
@@ -16992,6 +17060,7 @@ export var makeOrderNumberGeneratorUuid = function () { return factories['io.flo
|
|
|
16992
17060
|
export var makeOrderNumberReference = function () { return factories['io.flow.v0.models.order_number_reference'](); };
|
|
16993
17061
|
export var makeOrderOptions = function () { return factories['io.flow.v0.models.order_options'](); };
|
|
16994
17062
|
export var makeOrderPayment = function () { return factories['io.flow.v0.models.order_payment'](); };
|
|
17063
|
+
export var makeOrderPaymentSourceType = function () { return factories['io.flow.v0.enums.order_payment_source_type'](); };
|
|
16995
17064
|
export var makeOrderPaymentType = function () { return factories['io.flow.v0.enums.order_payment_type'](); };
|
|
16996
17065
|
export var makeOrderPlaced = function () { return factories['io.flow.v0.models.order_placed'](); };
|
|
16997
17066
|
export var makeOrderPlacedDetails = function () { return factories['io.flow.v0.models.order_placed_details'](); };
|
|
@@ -17278,7 +17347,6 @@ export var makePriceBookDeleted = function () { return factories['io.flow.v0.mod
|
|
|
17278
17347
|
export var makePriceBookForm = function () { return factories['io.flow.v0.models.price_book_form'](); };
|
|
17279
17348
|
export var makePriceBookItem = function () { return factories['io.flow.v0.models.price_book_item'](); };
|
|
17280
17349
|
export var makePriceBookItemDeleted = function () { return factories['io.flow.v0.models.price_book_item_deleted'](); };
|
|
17281
|
-
export var makePriceBookItemExportOptions = function () { return factories['io.flow.v0.models.price_book_item_export_options'](); };
|
|
17282
17350
|
export var makePriceBookItemExportType = function () { return factories['io.flow.v0.models.price_book_item_export_type'](); };
|
|
17283
17351
|
export var makePriceBookItemForm = function () { return factories['io.flow.v0.models.price_book_item_form'](); };
|
|
17284
17352
|
export var makePriceBookItemQueryForm = function () { return factories['io.flow.v0.models.price_book_item_query_form'](); };
|
|
@@ -17317,9 +17385,6 @@ export var makeProductRestrictionResult = function () { return factories['io.flo
|
|
|
17317
17385
|
export var makeProductRestrictionResultDeleted = function () { return factories['io.flow.v0.models.product_restriction_result_deleted'](); };
|
|
17318
17386
|
export var makeProductRestrictionResultUpserted = function () { return factories['io.flow.v0.models.product_restriction_result_upserted'](); };
|
|
17319
17387
|
export var makeProductRestrictionRule = function () { return factories['io.flow.v0.enums.product_restriction_rule'](); };
|
|
17320
|
-
export var makeProductSellability = function () { return factories['io.flow.v0.models.product_sellability'](); };
|
|
17321
|
-
export var makeProductSellabilityForm = function () { return factories['io.flow.v0.models.product_sellability_form'](); };
|
|
17322
|
-
export var makeProductSellabilityPrice = function () { return factories['io.flow.v0.models.product_sellability_price'](); };
|
|
17323
17388
|
export var makeProductTaxonomyCategory = function () { return factories['io.flow.v0.models.product_taxonomy_category'](); };
|
|
17324
17389
|
export var makeProductTaxonomyData = function () { return factories['io.flow.v0.models.product_taxonomy_data'](); };
|
|
17325
17390
|
export var makeProductUpdated = function () { return factories['io.flow.v0.models.product_updated'](); };
|
|
@@ -17467,7 +17532,6 @@ export var makeRounding = function () { return factories['io.flow.v0.models.roun
|
|
|
17467
17532
|
export var makeRoundingMethod = function () { return factories['io.flow.v0.enums.rounding_method'](); };
|
|
17468
17533
|
export var makeRoundingType = function () { return factories['io.flow.v0.enums.rounding_type'](); };
|
|
17469
17534
|
export var makeRouteAudit = function () { return factories['io.flow.v0.models.route_audit'](); };
|
|
17470
|
-
export var makeRuleEffectType = function () { return factories['io.flow.v0.enums.rule_effect_type'](); };
|
|
17471
17535
|
export var makeSchedule = function () { return factories['io.flow.v0.models.schedule'](); };
|
|
17472
17536
|
export var makeScheduleExceptionStatus = function () { return factories['io.flow.v0.enums.schedule_exception_status'](); };
|
|
17473
17537
|
export var makeScheduledExport = function () { return factories['io.flow.v0.models.scheduled_export'](); };
|
|
@@ -17477,7 +17541,6 @@ export var makeSdkAdyenV3AuthenticationToken = function () { return factories['i
|
|
|
17477
17541
|
export var makeSecurityRatecardFee = function () { return factories['io.flow.v0.models.security_ratecard_fee'](); };
|
|
17478
17542
|
export var makeSecurityServiceFee = function () { return factories['io.flow.v0.models.security_service_fee'](); };
|
|
17479
17543
|
export var makeSelectIssuerOptionActionDetails = function () { return factories['io.flow.v0.models.select_issuer_option_action_details'](); };
|
|
17480
|
-
export var makeSellablilityRegionResult = function () { return factories['io.flow.v0.models.sellablility_region_result'](); };
|
|
17481
17544
|
export var makeServiceDescription = function () { return factories['io.flow.v0.unions.service_description'](); };
|
|
17482
17545
|
export var makeServiceFee = function () { return factories['io.flow.v0.unions.service_fee'](); };
|
|
17483
17546
|
export var makeServiceReference = function () { return factories['io.flow.v0.models.service_reference'](); };
|
|
@@ -17627,20 +17690,6 @@ export var makeSurchargeResponsibleParty = function () { return factories['io.fl
|
|
|
17627
17690
|
export var makeSurchargeResponsiblePartyDisplay = function () { return factories['io.flow.v0.models.surcharge_responsible_party_display'](); };
|
|
17628
17691
|
export var makeSurchargeSetting = function () { return factories['io.flow.v0.models.surcharge_setting'](); };
|
|
17629
17692
|
export var makeSurchargeSettingDisplay = function () { return factories['io.flow.v0.models.surcharge_setting_display'](); };
|
|
17630
|
-
export var makeSyncDuration = function () { return factories['io.flow.v0.models.sync_duration'](); };
|
|
17631
|
-
export var makeSyncPendingRecord = function () { return factories['io.flow.v0.models.sync_pending_record'](); };
|
|
17632
|
-
export var makeSyncRecord = function () { return factories['io.flow.v0.models.sync_record'](); };
|
|
17633
|
-
export var makeSyncRecordFailure = function () { return factories['io.flow.v0.models.sync_record_failure'](); };
|
|
17634
|
-
export var makeSyncRecordFailureForm = function () { return factories['io.flow.v0.models.sync_record_failure_form'](); };
|
|
17635
|
-
export var makeSyncRecordFailureReason = function () { return factories['io.flow.v0.enums.sync_record_failure_reason'](); };
|
|
17636
|
-
export var makeSyncRecordForm = function () { return factories['io.flow.v0.models.sync_record_form'](); };
|
|
17637
|
-
export var makeSyncStream = function () { return factories['io.flow.v0.models.sync_stream'](); };
|
|
17638
|
-
export var makeSyncStreamForm = function () { return factories['io.flow.v0.models.sync_stream_form'](); };
|
|
17639
|
-
export var makeSyncStreamReference = function () { return factories['io.flow.v0.models.sync_stream_reference'](); };
|
|
17640
|
-
export var makeSyncStreamSettings = function () { return factories['io.flow.v0.models.sync_stream_settings'](); };
|
|
17641
|
-
export var makeSyncStreamSettingsForm = function () { return factories['io.flow.v0.models.sync_stream_settings_form'](); };
|
|
17642
|
-
export var makeSyncStreamType = function () { return factories['io.flow.v0.enums.sync_stream_type'](); };
|
|
17643
|
-
export var makeSyncUnitOfTime = function () { return factories['io.flow.v0.enums.sync_unit_of_time'](); };
|
|
17644
17693
|
export var makeTax = function () { return factories['io.flow.v0.models.tax'](); };
|
|
17645
17694
|
export var makeTaxApplicability = function () { return factories['io.flow.v0.enums.tax_applicability'](); };
|
|
17646
17695
|
export var makeTaxRegistration = function () { return factories['io.flow.v0.models.tax_registration'](); };
|