@flowio/api-factories 0.0.101 → 0.0.102
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 +276 -196
- package/dist/esm/api.js +231 -140
- package/dist/types/api.d.ts +11 -22
- package/package.json +2 -2
- package/src/api.ts +254 -159
package/dist/esm/api.js
CHANGED
|
@@ -2716,8 +2716,14 @@ 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(),
|
|
2719
2720
|
key: factories.string(),
|
|
2720
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(),
|
|
2721
2727
|
}); },
|
|
2722
2728
|
'io.flow.shopify.external.v0.models.graphql_option': function () { return ({
|
|
2723
2729
|
id: factories.string(),
|
|
@@ -2875,6 +2881,7 @@ var factories = {
|
|
|
2875
2881
|
updated_at: factories.date_time_iso_8601(),
|
|
2876
2882
|
has_variants_that_requires_components: factories.boolean(),
|
|
2877
2883
|
category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
2884
|
+
metafields: arrayOf(function () { return factories['io.flow.shopify.external.v0.models.product_metafield'](); }),
|
|
2878
2885
|
}); },
|
|
2879
2886
|
'io.flow.shopify.external.v0.models.product_delete': function () { return ({
|
|
2880
2887
|
id: factories.long(),
|
|
@@ -2889,6 +2896,16 @@ var factories = {
|
|
|
2889
2896
|
updated_at: factories.date_time_iso_8601(),
|
|
2890
2897
|
alt: factories.string(),
|
|
2891
2898
|
}); },
|
|
2899
|
+
'io.flow.shopify.external.v0.models.product_metafield': function () { return ({
|
|
2900
|
+
id: factories.long(),
|
|
2901
|
+
namespace: factories.string(),
|
|
2902
|
+
key: factories.string(),
|
|
2903
|
+
value: factories.string(),
|
|
2904
|
+
created_at: factories.date_time_iso_8601(),
|
|
2905
|
+
updated_at: factories.date_time_iso_8601(),
|
|
2906
|
+
type: factories.string(),
|
|
2907
|
+
admin_graphql_api_id: factories.string(),
|
|
2908
|
+
}); },
|
|
2892
2909
|
'io.flow.shopify.external.v0.models.product_variant': function () { return ({
|
|
2893
2910
|
id: factories.long(),
|
|
2894
2911
|
sku: factories.string(),
|
|
@@ -3948,9 +3965,57 @@ var factories = {
|
|
|
3948
3965
|
]); },
|
|
3949
3966
|
'io.flow.stripe.v0.enums.refund_reason': function () { return faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']); },
|
|
3950
3967
|
'io.flow.stripe.v0.enums.refund_status': function () { return faker.helpers.arrayElement(['succeeded', 'failed', 'pending', 'canceled']); },
|
|
3968
|
+
'io.flow.stripe.v0.enums.reporting_report_run_status': function () { return faker.helpers.arrayElement(['pending', 'succeeded', 'failed']); },
|
|
3969
|
+
'io.flow.stripe.v0.enums.reporting_report_type': function () { return faker.helpers.arrayElement([
|
|
3970
|
+
'ending_balance_reconciliation.itemized.1',
|
|
3971
|
+
'ending_balance_reconciliation.itemized.2',
|
|
3972
|
+
'ending_balance_reconciliation.itemized.3',
|
|
3973
|
+
'ending_balance_reconciliation.itemized.4',
|
|
3974
|
+
'payout_reconciliation.itemized.5',
|
|
3975
|
+
'payout_reconciliation.by_id.itemized.1',
|
|
3976
|
+
'payout_reconciliation.by_id.itemized.2',
|
|
3977
|
+
'payout_reconciliation.by_id.itemized.3',
|
|
3978
|
+
'payout_reconciliation.by_id.itemized.4',
|
|
3979
|
+
'payout_reconciliation.by_id.summary.1',
|
|
3980
|
+
'ending_balance_reconciliation.summary.1',
|
|
3981
|
+
'payout_reconciliation.itemized.1',
|
|
3982
|
+
'payout_reconciliation.itemized.2',
|
|
3983
|
+
'payout_reconciliation.itemized.3',
|
|
3984
|
+
'payout_reconciliation.itemized.4',
|
|
3985
|
+
'payout_reconciliation.summary.1',
|
|
3986
|
+
]); },
|
|
3951
3987
|
'io.flow.stripe.v0.enums.request_three_d_secure_type': function () { return faker.helpers.arrayElement(['automatic', 'any']); },
|
|
3952
3988
|
'io.flow.stripe.v0.enums.requested_capabilities': function () { return faker.helpers.arrayElement(['card_payments', 'legacy_payments', 'transfers']); },
|
|
3953
3989
|
'io.flow.stripe.v0.enums.setup_future_usage': function () { return faker.helpers.arrayElement(['on_session', 'off_session']); },
|
|
3990
|
+
'io.flow.stripe.v0.enums.shopify_payment_stripe_event_type': function () { return faker.helpers.arrayElement([
|
|
3991
|
+
'charge.captured',
|
|
3992
|
+
'charge.dispute.created',
|
|
3993
|
+
'charge.dispute.closed',
|
|
3994
|
+
'charge.dispute.funds_reinstated',
|
|
3995
|
+
'charge.dispute.funds_withdrawn',
|
|
3996
|
+
'charge.dispute.updated',
|
|
3997
|
+
'charge.expired',
|
|
3998
|
+
'charge.failed',
|
|
3999
|
+
'charge.pending',
|
|
4000
|
+
'charge.refund.updated',
|
|
4001
|
+
'charge.refunded',
|
|
4002
|
+
'charge.succeeded',
|
|
4003
|
+
'charge.updated',
|
|
4004
|
+
'payment_intent.amount_capturable_updated',
|
|
4005
|
+
'payment_intent.canceled',
|
|
4006
|
+
'payment_intent.created',
|
|
4007
|
+
'payment_intent.partially_funded',
|
|
4008
|
+
'payment_intent.payment_failed',
|
|
4009
|
+
'payment_intent.processing',
|
|
4010
|
+
'payment_intent.requires_action',
|
|
4011
|
+
'payment_intent.succeeded',
|
|
4012
|
+
'transfer.created',
|
|
4013
|
+
'transfer.reversed',
|
|
4014
|
+
'transfer.updated',
|
|
4015
|
+
'reporting.report_run.succeeded',
|
|
4016
|
+
'reporting.report_type.updated',
|
|
4017
|
+
'reporting.report_type.failed',
|
|
4018
|
+
]); },
|
|
3954
4019
|
'io.flow.stripe.v0.enums.source_flow': function () { return faker.helpers.arrayElement(['redirect', 'receiver', 'code_verification', 'none']); },
|
|
3955
4020
|
'io.flow.stripe.v0.enums.source_status': function () { return faker.helpers.arrayElement(['canceled', 'chargeable', 'consumed', 'failed', 'pending']); },
|
|
3956
4021
|
'io.flow.stripe.v0.enums.source_type': function () { return faker.helpers.arrayElement([
|
|
@@ -4783,11 +4848,68 @@ var factories = {
|
|
|
4783
4848
|
total_count: factories.long(),
|
|
4784
4849
|
url: factories.string(),
|
|
4785
4850
|
}); },
|
|
4851
|
+
'io.flow.stripe.v0.models.report_run_parameters': function () { return ({
|
|
4852
|
+
interval_start: factories.long(),
|
|
4853
|
+
interval_end: factories.long(),
|
|
4854
|
+
columns: arrayOf(function () { return factories.string(); }),
|
|
4855
|
+
payout: factories.string(),
|
|
4856
|
+
connected_account: factories.string(),
|
|
4857
|
+
reporting_category: factories.string(),
|
|
4858
|
+
}); },
|
|
4859
|
+
'io.flow.stripe.v0.models.reporting_report_run': function () { return ({
|
|
4860
|
+
id: factories.string(),
|
|
4861
|
+
object: factories.string(),
|
|
4862
|
+
created: factories.long(),
|
|
4863
|
+
error: factories.string(),
|
|
4864
|
+
livemode: factories.boolean(),
|
|
4865
|
+
status: factories['io.flow.stripe.v0.enums.reporting_report_run_status'](),
|
|
4866
|
+
result: factories['io.flow.stripe.v0.models.reporting_report_run_result'](),
|
|
4867
|
+
succeeded_at: factories.long(),
|
|
4868
|
+
}); },
|
|
4869
|
+
'io.flow.stripe.v0.models.reporting_report_run_form': function () { return ({
|
|
4870
|
+
report_type: factories['io.flow.stripe.v0.enums.reporting_report_type'](),
|
|
4871
|
+
parameters: factories['io.flow.stripe.v0.models.report_run_parameters'](),
|
|
4872
|
+
}); },
|
|
4873
|
+
'io.flow.stripe.v0.models.reporting_report_run_result': function () { return ({
|
|
4874
|
+
id: factories.string(),
|
|
4875
|
+
object: factories.string(),
|
|
4876
|
+
created: factories.long(),
|
|
4877
|
+
expires_at: factories.long(),
|
|
4878
|
+
filename: factories.string(),
|
|
4879
|
+
links: factories.object(),
|
|
4880
|
+
purpose: factories.string(),
|
|
4881
|
+
size: factories.long(),
|
|
4882
|
+
title: factories.string(),
|
|
4883
|
+
type: factories.string(),
|
|
4884
|
+
url: factories.string(),
|
|
4885
|
+
}); },
|
|
4886
|
+
'io.flow.stripe.v0.models.reporting_report_runs': function () { return ({
|
|
4887
|
+
object: factories.string(),
|
|
4888
|
+
data: arrayOf(function () { return factories['io.flow.stripe.v0.models.reporting_report_run'](); }),
|
|
4889
|
+
has_more: factories.boolean(),
|
|
4890
|
+
url: factories.string(),
|
|
4891
|
+
}); },
|
|
4786
4892
|
'io.flow.stripe.v0.models.shipping': function () { return ({
|
|
4787
4893
|
address: factories['io.flow.stripe.v0.models.address'](),
|
|
4788
4894
|
name: factories.string(),
|
|
4789
4895
|
phone: factories.string(),
|
|
4790
4896
|
}); },
|
|
4897
|
+
'io.flow.stripe.v0.models.shopify_payment_stripe_event': function () { return ({
|
|
4898
|
+
id: factories.string(),
|
|
4899
|
+
api_version: factories.string(),
|
|
4900
|
+
data: factories['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'](),
|
|
4901
|
+
request: factories.object(),
|
|
4902
|
+
type: factories['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'](),
|
|
4903
|
+
object: factories.string(),
|
|
4904
|
+
account: factories.string(),
|
|
4905
|
+
created: factories.long(),
|
|
4906
|
+
livemode: factories.boolean(),
|
|
4907
|
+
pending_webhooks: factories.integer(),
|
|
4908
|
+
}); },
|
|
4909
|
+
'io.flow.stripe.v0.models.shopify_payment_stripe_event_data': function () { return ({
|
|
4910
|
+
object: factories.object(),
|
|
4911
|
+
previous_attributes: factories.object(),
|
|
4912
|
+
}); },
|
|
4791
4913
|
'io.flow.stripe.v0.models.source': function () { return ({
|
|
4792
4914
|
id: factories.string(),
|
|
4793
4915
|
object: factories.string(),
|
|
@@ -5082,12 +5204,6 @@ var factories = {
|
|
|
5082
5204
|
id: factories.string(),
|
|
5083
5205
|
name: factories.string(),
|
|
5084
5206
|
}); },
|
|
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
5207
|
'io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description': function () { return ({
|
|
5092
5208
|
description: factories.string(),
|
|
5093
5209
|
}); },
|
|
@@ -5395,10 +5511,14 @@ var factories = {
|
|
|
5395
5511
|
'io.flow.v0.enums.entity_identifier_type': function () { return faker.helpers.arrayElement(['ioss', 'voec', 'zaz']); },
|
|
5396
5512
|
'io.flow.v0.enums.environment': function () { return faker.helpers.arrayElement(['sandbox', 'production']); },
|
|
5397
5513
|
'io.flow.v0.enums.event_type': function () { return faker.helpers.arrayElement([
|
|
5514
|
+
'authorization_retry_upserted',
|
|
5515
|
+
'authorization_retry_deleted',
|
|
5398
5516
|
'test_upserted',
|
|
5399
5517
|
'generate_load',
|
|
5400
5518
|
'aldo_item_upserted',
|
|
5401
5519
|
'aldo_item_deleted',
|
|
5520
|
+
'ansh_item_upserted',
|
|
5521
|
+
'ansh_item_deleted',
|
|
5402
5522
|
'transaction_upserted',
|
|
5403
5523
|
'organization_transaction_upserted',
|
|
5404
5524
|
'organization_transaction_deleted',
|
|
@@ -5508,6 +5628,11 @@ var factories = {
|
|
|
5508
5628
|
'shipping_configuration_item_availability_deleted',
|
|
5509
5629
|
'shipping_configuration_item_shipping_pricing_upserted',
|
|
5510
5630
|
'shipping_configuration_item_shipping_pricing_deleted',
|
|
5631
|
+
'ge_item_inserted',
|
|
5632
|
+
'ge_item_updated',
|
|
5633
|
+
'ge_item_deleted',
|
|
5634
|
+
'ge_product_restriction_result_upserted',
|
|
5635
|
+
'ge_product_restriction_result_deleted',
|
|
5511
5636
|
'hs6_code_upserted',
|
|
5512
5637
|
'hs6_code_deleted',
|
|
5513
5638
|
'hs10_code_upserted',
|
|
@@ -5527,8 +5652,6 @@ var factories = {
|
|
|
5527
5652
|
'manifested_label_deleted',
|
|
5528
5653
|
'label_processing_modification_upserted',
|
|
5529
5654
|
'label_processing_modification_deleted',
|
|
5530
|
-
'local_item_upserted',
|
|
5531
|
-
'local_item_deleted',
|
|
5532
5655
|
'merchant_application_upserted',
|
|
5533
5656
|
'merchant_application_deleted',
|
|
5534
5657
|
'checkout_optin_responses_upserted',
|
|
@@ -5778,6 +5901,7 @@ var factories = {
|
|
|
5778
5901
|
'total_changed',
|
|
5779
5902
|
]); },
|
|
5780
5903
|
'io.flow.v0.enums.order_merchant_of_record': function () { return faker.helpers.arrayElement(['flow', 'organization', 'mixed']); },
|
|
5904
|
+
'io.flow.v0.enums.order_payment_source_type': function () { return faker.helpers.arrayElement(['globale', 'third_party']); },
|
|
5781
5905
|
'io.flow.v0.enums.order_payment_type': function () { return faker.helpers.arrayElement([
|
|
5782
5906
|
'card',
|
|
5783
5907
|
'online',
|
|
@@ -6094,7 +6218,6 @@ var factories = {
|
|
|
6094
6218
|
'io.flow.v0.enums.role': function () { return faker.helpers.arrayElement(['admin', 'member']); },
|
|
6095
6219
|
'io.flow.v0.enums.rounding_method': function () { return faker.helpers.arrayElement(['up', 'down', 'nearest']); },
|
|
6096
6220
|
'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
6221
|
'io.flow.v0.enums.schedule_exception_status': function () { return faker.helpers.arrayElement(['Open', 'Closed']); },
|
|
6099
6222
|
'io.flow.v0.enums.shipment_integration_type': function () { return faker.helpers.arrayElement(['direct', 'information', 'preadvice']); },
|
|
6100
6223
|
'io.flow.v0.enums.shipment_recipient': function () { return faker.helpers.arrayElement(['customer', 'return', 'crossdock']); },
|
|
@@ -6165,9 +6288,6 @@ var factories = {
|
|
|
6165
6288
|
'Expired_001',
|
|
6166
6289
|
]); },
|
|
6167
6290
|
'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
6291
|
'io.flow.v0.enums.tax_applicability': function () { return faker.helpers.arrayElement(['none', 'all']); },
|
|
6172
6292
|
'io.flow.v0.enums.tax_report_type': function () { return faker.helpers.arrayElement(['consumer', 'b2b']); },
|
|
6173
6293
|
'io.flow.v0.enums.tax_verification_result': function () { return faker.helpers.arrayElement(['valid', 'invalid', 'unable_to_validate']); },
|
|
@@ -6192,6 +6312,8 @@ var factories = {
|
|
|
6192
6312
|
'exception',
|
|
6193
6313
|
'returned',
|
|
6194
6314
|
'expired',
|
|
6315
|
+
'unknown',
|
|
6316
|
+
'unmapped',
|
|
6195
6317
|
]); },
|
|
6196
6318
|
'io.flow.v0.enums.trade_agreement_name': function () { return faker.helpers.arrayElement(['USMCA', 'T-MEC', 'CUSMA', 'TCA']); },
|
|
6197
6319
|
'io.flow.v0.enums.trade_agreement_status': function () { return faker.helpers.arrayElement(['supported', 'not_supported']); },
|
|
@@ -6222,7 +6344,7 @@ var factories = {
|
|
|
6222
6344
|
'virtual_card_refund',
|
|
6223
6345
|
'failed_payout',
|
|
6224
6346
|
'tax_refund',
|
|
6225
|
-
'
|
|
6347
|
+
'non_l4l_tax_duty_fx',
|
|
6226
6348
|
'ge_revenue_share',
|
|
6227
6349
|
'tax_duty_delta',
|
|
6228
6350
|
]); },
|
|
@@ -6660,6 +6782,18 @@ var factories = {
|
|
|
6660
6782
|
region: factories.string(),
|
|
6661
6783
|
interval: factories['io.flow.v0.enums.unit_of_time'](),
|
|
6662
6784
|
}); },
|
|
6785
|
+
'io.flow.v0.models.ansh_item_deleted': function () { return ({
|
|
6786
|
+
discriminator: 'ansh_item_deleted',
|
|
6787
|
+
event_id: factories.string(),
|
|
6788
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6789
|
+
id: factories.string(),
|
|
6790
|
+
}); },
|
|
6791
|
+
'io.flow.v0.models.ansh_item_upserted': function () { return ({
|
|
6792
|
+
discriminator: 'ansh_item_upserted',
|
|
6793
|
+
event_id: factories.string(),
|
|
6794
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6795
|
+
item: factories['io.flow.tech.onboarding.playground.v0.models.ansh_item'](),
|
|
6796
|
+
}); },
|
|
6663
6797
|
'io.flow.v0.models.apple_pay_merchant_validation_payload': function () { return ({
|
|
6664
6798
|
discriminator: 'apple_pay_merchant_validation_payload',
|
|
6665
6799
|
validation_url: factories.string(),
|
|
@@ -6819,6 +6953,30 @@ var factories = {
|
|
|
6819
6953
|
'io.flow.v0.models.authorization_result_description': function () { return ({
|
|
6820
6954
|
display: factories.string(),
|
|
6821
6955
|
}); },
|
|
6956
|
+
'io.flow.v0.models.authorization_retry': function () { return ({
|
|
6957
|
+
id: factories.string(),
|
|
6958
|
+
authorization_request_id: factories.string(),
|
|
6959
|
+
authorization_id: factories.string(),
|
|
6960
|
+
organization_id: factories.string(),
|
|
6961
|
+
attempt: factories.integer(),
|
|
6962
|
+
last_failure_code: factories.string(),
|
|
6963
|
+
created_at: factories.date_time_iso_8601(),
|
|
6964
|
+
updated_at: factories.date_time_iso_8601(),
|
|
6965
|
+
}); },
|
|
6966
|
+
'io.flow.v0.models.authorization_retry_deleted': function () { return ({
|
|
6967
|
+
discriminator: 'authorization_retry_deleted',
|
|
6968
|
+
event_id: factories.string(),
|
|
6969
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6970
|
+
organization: factories.string(),
|
|
6971
|
+
id: factories.string(),
|
|
6972
|
+
}); },
|
|
6973
|
+
'io.flow.v0.models.authorization_retry_upserted': function () { return ({
|
|
6974
|
+
discriminator: 'authorization_retry_upserted',
|
|
6975
|
+
event_id: factories.string(),
|
|
6976
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6977
|
+
organization: factories.string(),
|
|
6978
|
+
authorization_retry: factories['io.flow.v0.models.authorization_retry'](),
|
|
6979
|
+
}); },
|
|
6822
6980
|
'io.flow.v0.models.authorization_status_changed': function () { return ({
|
|
6823
6981
|
discriminator: 'authorization_status_changed',
|
|
6824
6982
|
event_id: factories.string(),
|
|
@@ -7202,6 +7360,7 @@ var factories = {
|
|
|
7202
7360
|
processor: factories['io.flow.v0.unions.expandable_payment_processor'](),
|
|
7203
7361
|
stored_method_usage_step: factories['io.flow.v0.enums.stored_method_usage_step'](),
|
|
7204
7362
|
authorized_at: factories.date_time_iso_8601(),
|
|
7363
|
+
authorization_request_id: factories.string(),
|
|
7205
7364
|
}); },
|
|
7206
7365
|
'io.flow.v0.models.card_authorization_deleted_v2': function () { return ({
|
|
7207
7366
|
discriminator: 'card_authorization_deleted_v2',
|
|
@@ -9361,6 +9520,41 @@ var factories = {
|
|
|
9361
9520
|
hs6_code: factories.string(),
|
|
9362
9521
|
landed_costs: arrayOf(function () { return factories['io.flow.v0.models.lane_landed_cost'](); }),
|
|
9363
9522
|
}); },
|
|
9523
|
+
'io.flow.v0.models.ge_item_deleted': function () { return ({
|
|
9524
|
+
discriminator: 'ge_item_deleted',
|
|
9525
|
+
event_id: factories.string(),
|
|
9526
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9527
|
+
organization: factories.string(),
|
|
9528
|
+
item: factories['io.flow.v0.models.item'](),
|
|
9529
|
+
}); },
|
|
9530
|
+
'io.flow.v0.models.ge_item_inserted': function () { return ({
|
|
9531
|
+
discriminator: 'ge_item_inserted',
|
|
9532
|
+
event_id: factories.string(),
|
|
9533
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9534
|
+
organization: factories.string(),
|
|
9535
|
+
item: factories['io.flow.v0.models.item'](),
|
|
9536
|
+
}); },
|
|
9537
|
+
'io.flow.v0.models.ge_item_updated': function () { return ({
|
|
9538
|
+
discriminator: 'ge_item_updated',
|
|
9539
|
+
event_id: factories.string(),
|
|
9540
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9541
|
+
organization: factories.string(),
|
|
9542
|
+
item: factories['io.flow.v0.models.item'](),
|
|
9543
|
+
}); },
|
|
9544
|
+
'io.flow.v0.models.ge_product_restriction_result_deleted': function () { return ({
|
|
9545
|
+
discriminator: 'ge_product_restriction_result_deleted',
|
|
9546
|
+
event_id: factories.string(),
|
|
9547
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9548
|
+
organization: factories.string(),
|
|
9549
|
+
id: factories.string(),
|
|
9550
|
+
}); },
|
|
9551
|
+
'io.flow.v0.models.ge_product_restriction_result_upserted': function () { return ({
|
|
9552
|
+
discriminator: 'ge_product_restriction_result_upserted',
|
|
9553
|
+
event_id: factories.string(),
|
|
9554
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9555
|
+
organization: factories.string(),
|
|
9556
|
+
ge_product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
9557
|
+
}); },
|
|
9364
9558
|
'io.flow.v0.models.generate_load': function () { return ({
|
|
9365
9559
|
discriminator: 'generate_load',
|
|
9366
9560
|
event_id: factories.string(),
|
|
@@ -10237,13 +10431,6 @@ var factories = {
|
|
|
10237
10431
|
duty: factories['io.flow.v0.models.localized_item_duty'](),
|
|
10238
10432
|
price: factories['io.flow.v0.models.localized_item_price'](),
|
|
10239
10433
|
}); },
|
|
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
10434
|
'io.flow.v0.models.local_item_pricing': function () { return ({
|
|
10248
10435
|
price: factories['io.flow.v0.models.localized_item_price'](),
|
|
10249
10436
|
vat: factories['io.flow.v0.models.localized_item_vat'](),
|
|
@@ -10252,13 +10439,6 @@ var factories = {
|
|
|
10252
10439
|
attributes: objectOf(function () { return factories['io.flow.v0.models.price_with_base'](); }),
|
|
10253
10440
|
price_attributes: objectOf(function () { return factories['io.flow.v0.models.local_item_attribute_pricing'](); }),
|
|
10254
10441
|
}); },
|
|
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
10442
|
'io.flow.v0.models.local_price_details': function () { return ({
|
|
10263
10443
|
base: factories['io.flow.v0.models.price_details'](),
|
|
10264
10444
|
local: factories['io.flow.v0.models.price_details'](),
|
|
@@ -10668,6 +10848,7 @@ var factories = {
|
|
|
10668
10848
|
processor: factories['io.flow.v0.unions.expandable_payment_processor'](),
|
|
10669
10849
|
confirmation_details: factories['io.flow.v0.unions.confirmation_details'](),
|
|
10670
10850
|
authorized_at: factories.date_time_iso_8601(),
|
|
10851
|
+
authorization_request_id: factories.string(),
|
|
10671
10852
|
}); },
|
|
10672
10853
|
'io.flow.v0.models.online_authorization_deleted_v2': function () { return ({
|
|
10673
10854
|
discriminator: 'online_authorization_deleted_v2',
|
|
@@ -10736,6 +10917,7 @@ var factories = {
|
|
|
10736
10917
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
10737
10918
|
destination_contact_details: arrayOf(function () { return factories['io.flow.v0.models.destination_contact_detail'](); }),
|
|
10738
10919
|
incoterm_summary: factories['io.flow.v0.models.incoterm_summary'](),
|
|
10920
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
10739
10921
|
}); },
|
|
10740
10922
|
'io.flow.v0.models.order_address': function () { return ({
|
|
10741
10923
|
text: factories.string(),
|
|
@@ -10859,6 +11041,7 @@ var factories = {
|
|
|
10859
11041
|
authorization_keys: arrayOf(function () { return factories.string(); }),
|
|
10860
11042
|
options: factories['io.flow.v0.models.order_options'](),
|
|
10861
11043
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
11044
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
10862
11045
|
}); },
|
|
10863
11046
|
'io.flow.v0.models.order_fraud_status': function () { return ({
|
|
10864
11047
|
order: factories['io.flow.v0.models.order_reference'](),
|
|
@@ -11049,6 +11232,7 @@ var factories = {
|
|
|
11049
11232
|
authorization_keys: arrayOf(function () { return factories.string(); }),
|
|
11050
11233
|
options: factories['io.flow.v0.models.order_options'](),
|
|
11051
11234
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
11235
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
11052
11236
|
}); },
|
|
11053
11237
|
'io.flow.v0.models.order_reference': function () { return ({
|
|
11054
11238
|
discriminator: 'order_reference',
|
|
@@ -12378,9 +12562,6 @@ var factories = {
|
|
|
12378
12562
|
organization: factories.string(),
|
|
12379
12563
|
id: factories.string(),
|
|
12380
12564
|
}); },
|
|
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
12565
|
'io.flow.v0.models.price_book_item_export_type': function () { return ({
|
|
12385
12566
|
discriminator: 'price_book_item_export_type',
|
|
12386
12567
|
price_book_key: factories.string(),
|
|
@@ -12593,26 +12774,6 @@ var factories = {
|
|
|
12593
12774
|
organization: factories.string(),
|
|
12594
12775
|
product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
12595
12776
|
}); },
|
|
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
12777
|
'io.flow.v0.models.product_taxonomy_category': function () { return ({
|
|
12617
12778
|
name: factories.string(),
|
|
12618
12779
|
full_name: factories.string(),
|
|
@@ -13449,10 +13610,6 @@ var factories = {
|
|
|
13449
13610
|
discriminator: 'select_issuer_option_action_details',
|
|
13450
13611
|
issuer_options: arrayOf(function () { return factories['io.flow.v0.models.issuer_reference'](); }),
|
|
13451
13612
|
}); },
|
|
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
13613
|
'io.flow.v0.models.service_reference': function () { return ({
|
|
13457
13614
|
id: factories.string(),
|
|
13458
13615
|
}); },
|
|
@@ -14275,68 +14432,6 @@ var factories = {
|
|
|
14275
14432
|
key: factories['io.flow.v0.enums.delivery_option_cost_detail_component_key'](),
|
|
14276
14433
|
available: arrayOf(function () { return factories['io.flow.v0.models.surcharge_responsible_party_display'](); }),
|
|
14277
14434
|
}); },
|
|
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
14435
|
'io.flow.v0.models.tax': function () { return ({
|
|
14341
14436
|
name: factories.string(),
|
|
14342
14437
|
rate: factories.decimal(),
|
|
@@ -15247,10 +15342,14 @@ var factories = {
|
|
|
15247
15342
|
},
|
|
15248
15343
|
'io.flow.v0.unions.event': function () {
|
|
15249
15344
|
var f = faker.helpers.arrayElement([
|
|
15345
|
+
function () { return factories['io.flow.v0.models.authorization_retry_upserted'](); },
|
|
15346
|
+
function () { return factories['io.flow.v0.models.authorization_retry_deleted'](); },
|
|
15250
15347
|
function () { return factories['io.flow.v0.models.test_upserted'](); },
|
|
15251
15348
|
function () { return factories['io.flow.v0.models.generate_load'](); },
|
|
15252
15349
|
function () { return factories['io.flow.v0.models.aldo_item_upserted'](); },
|
|
15253
15350
|
function () { return factories['io.flow.v0.models.aldo_item_deleted'](); },
|
|
15351
|
+
function () { return factories['io.flow.v0.models.ansh_item_upserted'](); },
|
|
15352
|
+
function () { return factories['io.flow.v0.models.ansh_item_deleted'](); },
|
|
15254
15353
|
function () { return factories['io.flow.v0.models.transaction_upserted'](); },
|
|
15255
15354
|
function () { return factories['io.flow.v0.models.organization_transaction_upserted'](); },
|
|
15256
15355
|
function () { return factories['io.flow.v0.models.organization_transaction_deleted'](); },
|
|
@@ -15360,6 +15459,11 @@ var factories = {
|
|
|
15360
15459
|
function () { return factories['io.flow.v0.models.shipping_configuration_item_availability_deleted'](); },
|
|
15361
15460
|
function () { return factories['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'](); },
|
|
15362
15461
|
function () { return factories['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'](); },
|
|
15462
|
+
function () { return factories['io.flow.v0.models.ge_item_inserted'](); },
|
|
15463
|
+
function () { return factories['io.flow.v0.models.ge_item_updated'](); },
|
|
15464
|
+
function () { return factories['io.flow.v0.models.ge_item_deleted'](); },
|
|
15465
|
+
function () { return factories['io.flow.v0.models.ge_product_restriction_result_upserted'](); },
|
|
15466
|
+
function () { return factories['io.flow.v0.models.ge_product_restriction_result_deleted'](); },
|
|
15363
15467
|
function () { return factories['io.flow.v0.models.hs6_code_upserted'](); },
|
|
15364
15468
|
function () { return factories['io.flow.v0.models.hs6_code_deleted'](); },
|
|
15365
15469
|
function () { return factories['io.flow.v0.models.hs10_code_upserted'](); },
|
|
@@ -15379,8 +15483,6 @@ var factories = {
|
|
|
15379
15483
|
function () { return factories['io.flow.v0.models.manifested_label_deleted'](); },
|
|
15380
15484
|
function () { return factories['io.flow.v0.models.label_processing_modification_upserted'](); },
|
|
15381
15485
|
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
15486
|
function () { return factories['io.flow.v0.models.merchant_application_upserted'](); },
|
|
15385
15487
|
function () { return factories['io.flow.v0.models.merchant_application_deleted'](); },
|
|
15386
15488
|
function () { return factories['io.flow.v0.models.checkout_optin_responses_upserted'](); },
|
|
@@ -16127,6 +16229,8 @@ export var makeAllocationV2 = function () { return factories['io.flow.v0.models.
|
|
|
16127
16229
|
export var makeAmountMargin = function () { return factories['io.flow.v0.models.amount_margin'](); };
|
|
16128
16230
|
export var makeAmountMarginForm = function () { return factories['io.flow.v0.models.amount_margin_form'](); };
|
|
16129
16231
|
export var makeAnalyticsExportType = function () { return factories['io.flow.v0.models.analytics_export_type'](); };
|
|
16232
|
+
export var makeAnshItemDeleted = function () { return factories['io.flow.v0.models.ansh_item_deleted'](); };
|
|
16233
|
+
export var makeAnshItemUpserted = function () { return factories['io.flow.v0.models.ansh_item_upserted'](); };
|
|
16130
16234
|
export var makeApplePayMerchantValidationPayload = function () { return factories['io.flow.v0.models.apple_pay_merchant_validation_payload'](); };
|
|
16131
16235
|
export var makeApplepaySdkCreateResultActionDetails = function () { return factories['io.flow.v0.models.applepay_sdk_create_result_action_details'](); };
|
|
16132
16236
|
export var makeApplepaySdkValidateResultActionDetails = function () { return factories['io.flow.v0.models.applepay_sdk_validate_result_action_details'](); };
|
|
@@ -16166,6 +16270,9 @@ export var makeAuthorizationResultActionPost = function () { return factories['i
|
|
|
16166
16270
|
export var makeAuthorizationResultActionType = function () { return factories['io.flow.v0.enums.authorization_result_action_type'](); };
|
|
16167
16271
|
export var makeAuthorizationResultActionWait = function () { return factories['io.flow.v0.models.authorization_result_action_wait'](); };
|
|
16168
16272
|
export var makeAuthorizationResultDescription = function () { return factories['io.flow.v0.models.authorization_result_description'](); };
|
|
16273
|
+
export var makeAuthorizationRetry = function () { return factories['io.flow.v0.models.authorization_retry'](); };
|
|
16274
|
+
export var makeAuthorizationRetryDeleted = function () { return factories['io.flow.v0.models.authorization_retry_deleted'](); };
|
|
16275
|
+
export var makeAuthorizationRetryUpserted = function () { return factories['io.flow.v0.models.authorization_retry_upserted'](); };
|
|
16169
16276
|
export var makeAuthorizationStatus = function () { return factories['io.flow.v0.enums.authorization_status'](); };
|
|
16170
16277
|
export var makeAuthorizationStatusChanged = function () { return factories['io.flow.v0.models.authorization_status_changed'](); };
|
|
16171
16278
|
export var makeAuthorizationVersion = function () { return factories['io.flow.v0.models.authorization_version'](); };
|
|
@@ -16685,6 +16792,11 @@ export var makeFulfillmentRouting = function () { return factories['io.flow.v0.e
|
|
|
16685
16792
|
export var makeFullyHarmonizedItemUpserted = function () { return factories['io.flow.v0.models.fully_harmonized_item_upserted'](); };
|
|
16686
16793
|
export var makeGatewayAuthenticationData = function () { return factories['io.flow.v0.unions.gateway_authentication_data'](); };
|
|
16687
16794
|
export var makeGatewayAuthenticationDataForm = function () { return factories['io.flow.v0.unions.gateway_authentication_data_form'](); };
|
|
16795
|
+
export var makeGeItemDeleted = function () { return factories['io.flow.v0.models.ge_item_deleted'](); };
|
|
16796
|
+
export var makeGeItemInserted = function () { return factories['io.flow.v0.models.ge_item_inserted'](); };
|
|
16797
|
+
export var makeGeItemUpdated = function () { return factories['io.flow.v0.models.ge_item_updated'](); };
|
|
16798
|
+
export var makeGeProductRestrictionResultDeleted = function () { return factories['io.flow.v0.models.ge_product_restriction_result_deleted'](); };
|
|
16799
|
+
export var makeGeProductRestrictionResultUpserted = function () { return factories['io.flow.v0.models.ge_product_restriction_result_upserted'](); };
|
|
16688
16800
|
export var makeGenerateLoad = function () { return factories['io.flow.v0.models.generate_load'](); };
|
|
16689
16801
|
export var makeGenericError = function () { return factories['io.flow.v0.models.generic_error'](); };
|
|
16690
16802
|
export var makeGenericErrorCode = function () { return factories['io.flow.v0.enums.generic_error_code'](); };
|
|
@@ -16846,9 +16958,7 @@ export var makeLink = function () { return factories['io.flow.v0.models.link']()
|
|
|
16846
16958
|
export var makeLocal = function () { return factories['io.flow.v0.models.local'](); };
|
|
16847
16959
|
export var makeLocalItem = function () { return factories['io.flow.v0.models.local_item'](); };
|
|
16848
16960
|
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
16961
|
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
16962
|
export var makeLocalPriceDetails = function () { return factories['io.flow.v0.models.local_price_details'](); };
|
|
16853
16963
|
export var makeLocalSession = function () { return factories['io.flow.v0.models.local_session'](); };
|
|
16854
16964
|
export var makeLocale = function () { return factories['io.flow.v0.models.locale'](); };
|
|
@@ -16992,6 +17102,7 @@ export var makeOrderNumberGeneratorUuid = function () { return factories['io.flo
|
|
|
16992
17102
|
export var makeOrderNumberReference = function () { return factories['io.flow.v0.models.order_number_reference'](); };
|
|
16993
17103
|
export var makeOrderOptions = function () { return factories['io.flow.v0.models.order_options'](); };
|
|
16994
17104
|
export var makeOrderPayment = function () { return factories['io.flow.v0.models.order_payment'](); };
|
|
17105
|
+
export var makeOrderPaymentSourceType = function () { return factories['io.flow.v0.enums.order_payment_source_type'](); };
|
|
16995
17106
|
export var makeOrderPaymentType = function () { return factories['io.flow.v0.enums.order_payment_type'](); };
|
|
16996
17107
|
export var makeOrderPlaced = function () { return factories['io.flow.v0.models.order_placed'](); };
|
|
16997
17108
|
export var makeOrderPlacedDetails = function () { return factories['io.flow.v0.models.order_placed_details'](); };
|
|
@@ -17278,7 +17389,6 @@ export var makePriceBookDeleted = function () { return factories['io.flow.v0.mod
|
|
|
17278
17389
|
export var makePriceBookForm = function () { return factories['io.flow.v0.models.price_book_form'](); };
|
|
17279
17390
|
export var makePriceBookItem = function () { return factories['io.flow.v0.models.price_book_item'](); };
|
|
17280
17391
|
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
17392
|
export var makePriceBookItemExportType = function () { return factories['io.flow.v0.models.price_book_item_export_type'](); };
|
|
17283
17393
|
export var makePriceBookItemForm = function () { return factories['io.flow.v0.models.price_book_item_form'](); };
|
|
17284
17394
|
export var makePriceBookItemQueryForm = function () { return factories['io.flow.v0.models.price_book_item_query_form'](); };
|
|
@@ -17317,9 +17427,6 @@ export var makeProductRestrictionResult = function () { return factories['io.flo
|
|
|
17317
17427
|
export var makeProductRestrictionResultDeleted = function () { return factories['io.flow.v0.models.product_restriction_result_deleted'](); };
|
|
17318
17428
|
export var makeProductRestrictionResultUpserted = function () { return factories['io.flow.v0.models.product_restriction_result_upserted'](); };
|
|
17319
17429
|
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
17430
|
export var makeProductTaxonomyCategory = function () { return factories['io.flow.v0.models.product_taxonomy_category'](); };
|
|
17324
17431
|
export var makeProductTaxonomyData = function () { return factories['io.flow.v0.models.product_taxonomy_data'](); };
|
|
17325
17432
|
export var makeProductUpdated = function () { return factories['io.flow.v0.models.product_updated'](); };
|
|
@@ -17467,7 +17574,6 @@ export var makeRounding = function () { return factories['io.flow.v0.models.roun
|
|
|
17467
17574
|
export var makeRoundingMethod = function () { return factories['io.flow.v0.enums.rounding_method'](); };
|
|
17468
17575
|
export var makeRoundingType = function () { return factories['io.flow.v0.enums.rounding_type'](); };
|
|
17469
17576
|
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
17577
|
export var makeSchedule = function () { return factories['io.flow.v0.models.schedule'](); };
|
|
17472
17578
|
export var makeScheduleExceptionStatus = function () { return factories['io.flow.v0.enums.schedule_exception_status'](); };
|
|
17473
17579
|
export var makeScheduledExport = function () { return factories['io.flow.v0.models.scheduled_export'](); };
|
|
@@ -17477,7 +17583,6 @@ export var makeSdkAdyenV3AuthenticationToken = function () { return factories['i
|
|
|
17477
17583
|
export var makeSecurityRatecardFee = function () { return factories['io.flow.v0.models.security_ratecard_fee'](); };
|
|
17478
17584
|
export var makeSecurityServiceFee = function () { return factories['io.flow.v0.models.security_service_fee'](); };
|
|
17479
17585
|
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
17586
|
export var makeServiceDescription = function () { return factories['io.flow.v0.unions.service_description'](); };
|
|
17482
17587
|
export var makeServiceFee = function () { return factories['io.flow.v0.unions.service_fee'](); };
|
|
17483
17588
|
export var makeServiceReference = function () { return factories['io.flow.v0.models.service_reference'](); };
|
|
@@ -17627,20 +17732,6 @@ export var makeSurchargeResponsibleParty = function () { return factories['io.fl
|
|
|
17627
17732
|
export var makeSurchargeResponsiblePartyDisplay = function () { return factories['io.flow.v0.models.surcharge_responsible_party_display'](); };
|
|
17628
17733
|
export var makeSurchargeSetting = function () { return factories['io.flow.v0.models.surcharge_setting'](); };
|
|
17629
17734
|
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
17735
|
export var makeTax = function () { return factories['io.flow.v0.models.tax'](); };
|
|
17645
17736
|
export var makeTaxApplicability = function () { return factories['io.flow.v0.enums.tax_applicability'](); };
|
|
17646
17737
|
export var makeTaxRegistration = function () { return factories['io.flow.v0.models.tax_registration'](); };
|