@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/src/api.ts
CHANGED
|
@@ -3223,6 +3223,22 @@ const factories = {
|
|
|
3223
3223
|
}),
|
|
3224
3224
|
|
|
3225
3225
|
'io.flow.shopify.external.v0.models.graphql_metafield': (): io.flow.shopify.external.v0.models.GraphqlMetafield => ({
|
|
3226
|
+
id: factories.string(),
|
|
3227
|
+
key: factories.string(),
|
|
3228
|
+
value: factories.string(),
|
|
3229
|
+
type: factories.string(),
|
|
3230
|
+
}),
|
|
3231
|
+
|
|
3232
|
+
'io.flow.shopify.external.v0.models.graphql_metaobject': (): io.flow.shopify.external.v0.models.GraphqlMetaobject => ({
|
|
3233
|
+
id: factories.string(),
|
|
3234
|
+
displayName: factories.string(),
|
|
3235
|
+
|
|
3236
|
+
fields: arrayOf(
|
|
3237
|
+
() => factories['io.flow.shopify.external.v0.models.graphql_metaobject_field'](),
|
|
3238
|
+
),
|
|
3239
|
+
}),
|
|
3240
|
+
|
|
3241
|
+
'io.flow.shopify.external.v0.models.graphql_metaobject_field': (): io.flow.shopify.external.v0.models.GraphqlMetaobjectField => ({
|
|
3226
3242
|
key: factories.string(),
|
|
3227
3243
|
value: factories.string(),
|
|
3228
3244
|
}),
|
|
@@ -3407,6 +3423,7 @@ const factories = {
|
|
|
3407
3423
|
updated_at: factories.date_time_iso_8601(),
|
|
3408
3424
|
has_variants_that_requires_components: factories.boolean(),
|
|
3409
3425
|
category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
3426
|
+
metafields: arrayOf(() => factories['io.flow.shopify.external.v0.models.product_metafield']()),
|
|
3410
3427
|
}),
|
|
3411
3428
|
|
|
3412
3429
|
'io.flow.shopify.external.v0.models.product_delete': (): io.flow.shopify.external.v0.models.ProductDelete => ({
|
|
@@ -3424,6 +3441,17 @@ const factories = {
|
|
|
3424
3441
|
alt: factories.string(),
|
|
3425
3442
|
}),
|
|
3426
3443
|
|
|
3444
|
+
'io.flow.shopify.external.v0.models.product_metafield': (): io.flow.shopify.external.v0.models.ProductMetafield => ({
|
|
3445
|
+
id: factories.long(),
|
|
3446
|
+
namespace: factories.string(),
|
|
3447
|
+
key: factories.string(),
|
|
3448
|
+
value: factories.string(),
|
|
3449
|
+
created_at: factories.date_time_iso_8601(),
|
|
3450
|
+
updated_at: factories.date_time_iso_8601(),
|
|
3451
|
+
type: factories.string(),
|
|
3452
|
+
admin_graphql_api_id: factories.string(),
|
|
3453
|
+
}),
|
|
3454
|
+
|
|
3427
3455
|
'io.flow.shopify.external.v0.models.product_variant': (): io.flow.shopify.external.v0.models.ProductVariant => ({
|
|
3428
3456
|
id: factories.long(),
|
|
3429
3457
|
sku: factories.string(),
|
|
@@ -4666,9 +4694,61 @@ const factories = {
|
|
|
4666
4694
|
|
|
4667
4695
|
'io.flow.stripe.v0.enums.refund_reason': (): io.flow.stripe.v0.enums.RefundReason => faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']),
|
|
4668
4696
|
'io.flow.stripe.v0.enums.refund_status': (): io.flow.stripe.v0.enums.RefundStatus => faker.helpers.arrayElement(['succeeded', 'failed', 'pending', 'canceled']),
|
|
4697
|
+
'io.flow.stripe.v0.enums.reporting_report_run_status': (): io.flow.stripe.v0.enums.ReportingReportRunStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed']),
|
|
4698
|
+
|
|
4699
|
+
'io.flow.stripe.v0.enums.reporting_report_type': (): io.flow.stripe.v0.enums.ReportingReportType => faker.helpers.arrayElement([
|
|
4700
|
+
'ending_balance_reconciliation.itemized.1',
|
|
4701
|
+
'ending_balance_reconciliation.itemized.2',
|
|
4702
|
+
'ending_balance_reconciliation.itemized.3',
|
|
4703
|
+
'ending_balance_reconciliation.itemized.4',
|
|
4704
|
+
'payout_reconciliation.itemized.5',
|
|
4705
|
+
'payout_reconciliation.by_id.itemized.1',
|
|
4706
|
+
'payout_reconciliation.by_id.itemized.2',
|
|
4707
|
+
'payout_reconciliation.by_id.itemized.3',
|
|
4708
|
+
'payout_reconciliation.by_id.itemized.4',
|
|
4709
|
+
'payout_reconciliation.by_id.summary.1',
|
|
4710
|
+
'ending_balance_reconciliation.summary.1',
|
|
4711
|
+
'payout_reconciliation.itemized.1',
|
|
4712
|
+
'payout_reconciliation.itemized.2',
|
|
4713
|
+
'payout_reconciliation.itemized.3',
|
|
4714
|
+
'payout_reconciliation.itemized.4',
|
|
4715
|
+
'payout_reconciliation.summary.1',
|
|
4716
|
+
]),
|
|
4717
|
+
|
|
4669
4718
|
'io.flow.stripe.v0.enums.request_three_d_secure_type': (): io.flow.stripe.v0.enums.RequestThreeDSecureType => faker.helpers.arrayElement(['automatic', 'any']),
|
|
4670
4719
|
'io.flow.stripe.v0.enums.requested_capabilities': (): io.flow.stripe.v0.enums.RequestedCapabilities => faker.helpers.arrayElement(['card_payments', 'legacy_payments', 'transfers']),
|
|
4671
4720
|
'io.flow.stripe.v0.enums.setup_future_usage': (): io.flow.stripe.v0.enums.SetupFutureUsage => faker.helpers.arrayElement(['on_session', 'off_session']),
|
|
4721
|
+
|
|
4722
|
+
'io.flow.stripe.v0.enums.shopify_payment_stripe_event_type': (): io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType => faker.helpers.arrayElement([
|
|
4723
|
+
'charge.captured',
|
|
4724
|
+
'charge.dispute.created',
|
|
4725
|
+
'charge.dispute.closed',
|
|
4726
|
+
'charge.dispute.funds_reinstated',
|
|
4727
|
+
'charge.dispute.funds_withdrawn',
|
|
4728
|
+
'charge.dispute.updated',
|
|
4729
|
+
'charge.expired',
|
|
4730
|
+
'charge.failed',
|
|
4731
|
+
'charge.pending',
|
|
4732
|
+
'charge.refund.updated',
|
|
4733
|
+
'charge.refunded',
|
|
4734
|
+
'charge.succeeded',
|
|
4735
|
+
'charge.updated',
|
|
4736
|
+
'payment_intent.amount_capturable_updated',
|
|
4737
|
+
'payment_intent.canceled',
|
|
4738
|
+
'payment_intent.created',
|
|
4739
|
+
'payment_intent.partially_funded',
|
|
4740
|
+
'payment_intent.payment_failed',
|
|
4741
|
+
'payment_intent.processing',
|
|
4742
|
+
'payment_intent.requires_action',
|
|
4743
|
+
'payment_intent.succeeded',
|
|
4744
|
+
'transfer.created',
|
|
4745
|
+
'transfer.reversed',
|
|
4746
|
+
'transfer.updated',
|
|
4747
|
+
'reporting.report_run.succeeded',
|
|
4748
|
+
'reporting.report_type.updated',
|
|
4749
|
+
'reporting.report_type.failed',
|
|
4750
|
+
]),
|
|
4751
|
+
|
|
4672
4752
|
'io.flow.stripe.v0.enums.source_flow': (): io.flow.stripe.v0.enums.SourceFlow => faker.helpers.arrayElement(['redirect', 'receiver', 'code_verification', 'none']),
|
|
4673
4753
|
'io.flow.stripe.v0.enums.source_status': (): io.flow.stripe.v0.enums.SourceStatus => faker.helpers.arrayElement(['canceled', 'chargeable', 'consumed', 'failed', 'pending']),
|
|
4674
4754
|
|
|
@@ -5611,12 +5691,76 @@ const factories = {
|
|
|
5611
5691
|
url: factories.string(),
|
|
5612
5692
|
}),
|
|
5613
5693
|
|
|
5694
|
+
'io.flow.stripe.v0.models.report_run_parameters': (): io.flow.stripe.v0.models.ReportRunParameters => ({
|
|
5695
|
+
interval_start: factories.long(),
|
|
5696
|
+
interval_end: factories.long(),
|
|
5697
|
+
columns: arrayOf(() => factories.string()),
|
|
5698
|
+
payout: factories.string(),
|
|
5699
|
+
connected_account: factories.string(),
|
|
5700
|
+
reporting_category: factories.string(),
|
|
5701
|
+
}),
|
|
5702
|
+
|
|
5703
|
+
'io.flow.stripe.v0.models.reporting_report_run': (): io.flow.stripe.v0.models.ReportingReportRun => ({
|
|
5704
|
+
id: factories.string(),
|
|
5705
|
+
object: factories.string(),
|
|
5706
|
+
created: factories.long(),
|
|
5707
|
+
error: factories.string(),
|
|
5708
|
+
livemode: factories.boolean(),
|
|
5709
|
+
status: factories['io.flow.stripe.v0.enums.reporting_report_run_status'](),
|
|
5710
|
+
result: factories['io.flow.stripe.v0.models.reporting_report_run_result'](),
|
|
5711
|
+
succeeded_at: factories.long(),
|
|
5712
|
+
}),
|
|
5713
|
+
|
|
5714
|
+
'io.flow.stripe.v0.models.reporting_report_run_form': (): io.flow.stripe.v0.models.ReportingReportRunForm => ({
|
|
5715
|
+
report_type: factories['io.flow.stripe.v0.enums.reporting_report_type'](),
|
|
5716
|
+
parameters: factories['io.flow.stripe.v0.models.report_run_parameters'](),
|
|
5717
|
+
}),
|
|
5718
|
+
|
|
5719
|
+
'io.flow.stripe.v0.models.reporting_report_run_result': (): io.flow.stripe.v0.models.ReportingReportRunResult => ({
|
|
5720
|
+
id: factories.string(),
|
|
5721
|
+
object: factories.string(),
|
|
5722
|
+
created: factories.long(),
|
|
5723
|
+
expires_at: factories.long(),
|
|
5724
|
+
filename: factories.string(),
|
|
5725
|
+
links: factories.object(),
|
|
5726
|
+
purpose: factories.string(),
|
|
5727
|
+
size: factories.long(),
|
|
5728
|
+
title: factories.string(),
|
|
5729
|
+
type: factories.string(),
|
|
5730
|
+
url: factories.string(),
|
|
5731
|
+
}),
|
|
5732
|
+
|
|
5733
|
+
'io.flow.stripe.v0.models.reporting_report_runs': (): io.flow.stripe.v0.models.ReportingReportRuns => ({
|
|
5734
|
+
object: factories.string(),
|
|
5735
|
+
data: arrayOf(() => factories['io.flow.stripe.v0.models.reporting_report_run']()),
|
|
5736
|
+
has_more: factories.boolean(),
|
|
5737
|
+
url: factories.string(),
|
|
5738
|
+
}),
|
|
5739
|
+
|
|
5614
5740
|
'io.flow.stripe.v0.models.shipping': (): io.flow.stripe.v0.models.Shipping => ({
|
|
5615
5741
|
address: factories['io.flow.stripe.v0.models.address'](),
|
|
5616
5742
|
name: factories.string(),
|
|
5617
5743
|
phone: factories.string(),
|
|
5618
5744
|
}),
|
|
5619
5745
|
|
|
5746
|
+
'io.flow.stripe.v0.models.shopify_payment_stripe_event': (): io.flow.stripe.v0.models.ShopifyPaymentStripeEvent => ({
|
|
5747
|
+
id: factories.string(),
|
|
5748
|
+
api_version: factories.string(),
|
|
5749
|
+
data: factories['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'](),
|
|
5750
|
+
request: factories.object(),
|
|
5751
|
+
type: factories['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'](),
|
|
5752
|
+
object: factories.string(),
|
|
5753
|
+
account: factories.string(),
|
|
5754
|
+
created: factories.long(),
|
|
5755
|
+
livemode: factories.boolean(),
|
|
5756
|
+
pending_webhooks: factories.integer(),
|
|
5757
|
+
}),
|
|
5758
|
+
|
|
5759
|
+
'io.flow.stripe.v0.models.shopify_payment_stripe_event_data': (): io.flow.stripe.v0.models.ShopifyPaymentStripeEventData => ({
|
|
5760
|
+
object: factories.object(),
|
|
5761
|
+
previous_attributes: factories.object(),
|
|
5762
|
+
}),
|
|
5763
|
+
|
|
5620
5764
|
'io.flow.stripe.v0.models.source': (): io.flow.stripe.v0.models.Source => ({
|
|
5621
5765
|
id: factories.string(),
|
|
5622
5766
|
object: factories.string(),
|
|
@@ -5950,13 +6094,6 @@ const factories = {
|
|
|
5950
6094
|
name: factories.string(),
|
|
5951
6095
|
}),
|
|
5952
6096
|
|
|
5953
|
-
'io.flow.tech.onboarding.playground.v0.models.shawn_roundtable_workshop_rate': (): io.flow.tech.onboarding.playground.v0.models.ShawnRoundtableWorkshopRate => ({
|
|
5954
|
-
origin_country: factories.string(),
|
|
5955
|
-
destination_country: factories.string(),
|
|
5956
|
-
weight: factories.double(),
|
|
5957
|
-
amount: factories.double(),
|
|
5958
|
-
}),
|
|
5959
|
-
|
|
5960
6097
|
'io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description': (): io.flow.tech.onboarding.playground.v0.models.TechOnboardingDescription => ({
|
|
5961
6098
|
description: factories.string(),
|
|
5962
6099
|
}),
|
|
@@ -6307,12 +6444,16 @@ const factories = {
|
|
|
6307
6444
|
'io.flow.v0.enums.economic_title_location': (): io.flow.v0.enums.EconomicTitleLocation => faker.helpers.arrayElement(['high_seas', 'origination', 'destination']),
|
|
6308
6445
|
'io.flow.v0.enums.entity_identifier_type': (): io.flow.v0.enums.EntityIdentifierType => faker.helpers.arrayElement(['ioss', 'voec', 'zaz']),
|
|
6309
6446
|
'io.flow.v0.enums.environment': (): io.flow.v0.enums.Environment => faker.helpers.arrayElement(['sandbox', 'production']),
|
|
6447
|
+
'io.flow.v0.enums.estimate_origin': (): io.flow.v0.enums.EstimateOrigin => faker.helpers.arrayElement(['Shopify', 'GlobalE', 'Aftership', 'Carrier']),
|
|
6448
|
+
'io.flow.v0.enums.estimate_type': (): io.flow.v0.enums.EstimateType => faker.helpers.arrayElement(['Estimated', 'Final']),
|
|
6310
6449
|
|
|
6311
6450
|
'io.flow.v0.enums.event_type': (): io.flow.v0.enums.EventType => faker.helpers.arrayElement([
|
|
6312
6451
|
'test_upserted',
|
|
6313
6452
|
'generate_load',
|
|
6314
6453
|
'aldo_item_upserted',
|
|
6315
6454
|
'aldo_item_deleted',
|
|
6455
|
+
'ansh_item_upserted',
|
|
6456
|
+
'ansh_item_deleted',
|
|
6316
6457
|
'transaction_upserted',
|
|
6317
6458
|
'organization_transaction_upserted',
|
|
6318
6459
|
'organization_transaction_deleted',
|
|
@@ -6422,6 +6563,11 @@ const factories = {
|
|
|
6422
6563
|
'shipping_configuration_item_availability_deleted',
|
|
6423
6564
|
'shipping_configuration_item_shipping_pricing_upserted',
|
|
6424
6565
|
'shipping_configuration_item_shipping_pricing_deleted',
|
|
6566
|
+
'ge_item_inserted',
|
|
6567
|
+
'ge_item_updated',
|
|
6568
|
+
'ge_item_deleted',
|
|
6569
|
+
'ge_product_restriction_result_upserted',
|
|
6570
|
+
'ge_product_restriction_result_deleted',
|
|
6425
6571
|
'hs6_code_upserted',
|
|
6426
6572
|
'hs6_code_deleted',
|
|
6427
6573
|
'hs10_code_upserted',
|
|
@@ -6441,14 +6587,8 @@ const factories = {
|
|
|
6441
6587
|
'manifested_label_deleted',
|
|
6442
6588
|
'label_processing_modification_upserted',
|
|
6443
6589
|
'label_processing_modification_deleted',
|
|
6444
|
-
'local_item_upserted',
|
|
6445
|
-
'local_item_deleted',
|
|
6446
6590
|
'merchant_application_upserted',
|
|
6447
6591
|
'merchant_application_deleted',
|
|
6448
|
-
'checkout_optin_responses_upserted',
|
|
6449
|
-
'checkout_optin_responses_deleted',
|
|
6450
|
-
'browse_optin_responses_upserted',
|
|
6451
|
-
'browse_optin_responses_deleted',
|
|
6452
6592
|
'order_placed',
|
|
6453
6593
|
'order_placed_v2',
|
|
6454
6594
|
'ready_to_fulfill',
|
|
@@ -6490,6 +6630,8 @@ const factories = {
|
|
|
6490
6630
|
'virtual_card_capture_deleted',
|
|
6491
6631
|
'virtual_card_refund_upserted',
|
|
6492
6632
|
'virtual_card_refund_deleted',
|
|
6633
|
+
'authorization_retry_upserted',
|
|
6634
|
+
'authorization_retry_deleted',
|
|
6493
6635
|
'payment_request_upserted',
|
|
6494
6636
|
'payment_request_deleted',
|
|
6495
6637
|
'price_book_upserted',
|
|
@@ -6691,7 +6833,6 @@ const factories = {
|
|
|
6691
6833
|
'other',
|
|
6692
6834
|
]),
|
|
6693
6835
|
|
|
6694
|
-
'io.flow.v0.enums.optin_response_type': (): io.flow.v0.enums.OptinResponseType => faker.helpers.arrayElement(['not_shown', 'opted_in', 'opted_out']),
|
|
6695
6836
|
'io.flow.v0.enums.order_change_source': (): io.flow.v0.enums.OrderChangeSource => faker.helpers.arrayElement(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']),
|
|
6696
6837
|
|
|
6697
6838
|
'io.flow.v0.enums.order_error_code': (): io.flow.v0.enums.OrderErrorCode => faker.helpers.arrayElement([
|
|
@@ -6712,6 +6853,7 @@ const factories = {
|
|
|
6712
6853
|
]),
|
|
6713
6854
|
|
|
6714
6855
|
'io.flow.v0.enums.order_merchant_of_record': (): io.flow.v0.enums.OrderMerchantOfRecord => faker.helpers.arrayElement(['flow', 'organization', 'mixed']),
|
|
6856
|
+
'io.flow.v0.enums.order_payment_source_type': (): io.flow.v0.enums.OrderPaymentSourceType => faker.helpers.arrayElement(['globale', 'third_party']),
|
|
6715
6857
|
|
|
6716
6858
|
'io.flow.v0.enums.order_payment_type': (): io.flow.v0.enums.OrderPaymentType => faker.helpers.arrayElement([
|
|
6717
6859
|
'card',
|
|
@@ -7056,7 +7198,6 @@ const factories = {
|
|
|
7056
7198
|
'io.flow.v0.enums.role': (): io.flow.v0.enums.Role => faker.helpers.arrayElement(['admin', 'member']),
|
|
7057
7199
|
'io.flow.v0.enums.rounding_method': (): io.flow.v0.enums.RoundingMethod => faker.helpers.arrayElement(['up', 'down', 'nearest']),
|
|
7058
7200
|
'io.flow.v0.enums.rounding_type': (): io.flow.v0.enums.RoundingType => faker.helpers.arrayElement(['pattern', 'multiple']),
|
|
7059
|
-
'io.flow.v0.enums.rule_effect_type': (): io.flow.v0.enums.RuleEffectType => faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']),
|
|
7060
7201
|
'io.flow.v0.enums.schedule_exception_status': (): io.flow.v0.enums.ScheduleExceptionStatus => faker.helpers.arrayElement(['Open', 'Closed']),
|
|
7061
7202
|
'io.flow.v0.enums.shipment_integration_type': (): io.flow.v0.enums.ShipmentIntegrationType => faker.helpers.arrayElement(['direct', 'information', 'preadvice']),
|
|
7062
7203
|
'io.flow.v0.enums.shipment_recipient': (): io.flow.v0.enums.ShipmentRecipient => faker.helpers.arrayElement(['customer', 'return', 'crossdock']),
|
|
@@ -7131,9 +7272,6 @@ const factories = {
|
|
|
7131
7272
|
]),
|
|
7132
7273
|
|
|
7133
7274
|
'io.flow.v0.enums.surcharge_responsible_party': (): io.flow.v0.enums.SurchargeResponsibleParty => faker.helpers.arrayElement(['organization', 'customer']),
|
|
7134
|
-
'io.flow.v0.enums.sync_record_failure_reason': (): io.flow.v0.enums.SyncRecordFailureReason => faker.helpers.arrayElement(['inventory', 'address', 'promotion', 'other']),
|
|
7135
|
-
'io.flow.v0.enums.sync_stream_type': (): io.flow.v0.enums.SyncStreamType => faker.helpers.arrayElement(['submitted_order', 'placed_order']),
|
|
7136
|
-
'io.flow.v0.enums.sync_unit_of_time': (): io.flow.v0.enums.SyncUnitOfTime => faker.helpers.arrayElement(['day', 'hour', 'minute', 'second']),
|
|
7137
7275
|
'io.flow.v0.enums.tax_applicability': (): io.flow.v0.enums.TaxApplicability => faker.helpers.arrayElement(['none', 'all']),
|
|
7138
7276
|
'io.flow.v0.enums.tax_report_type': (): io.flow.v0.enums.TaxReportType => faker.helpers.arrayElement(['consumer', 'b2b']),
|
|
7139
7277
|
'io.flow.v0.enums.tax_verification_result': (): io.flow.v0.enums.TaxVerificationResult => faker.helpers.arrayElement(['valid', 'invalid', 'unable_to_validate']),
|
|
@@ -7159,6 +7297,8 @@ const factories = {
|
|
|
7159
7297
|
'exception',
|
|
7160
7298
|
'returned',
|
|
7161
7299
|
'expired',
|
|
7300
|
+
'unknown',
|
|
7301
|
+
'unmapped',
|
|
7162
7302
|
]),
|
|
7163
7303
|
|
|
7164
7304
|
'io.flow.v0.enums.trade_agreement_name': (): io.flow.v0.enums.TradeAgreementName => faker.helpers.arrayElement(['USMCA', 'T-MEC', 'CUSMA', 'TCA']),
|
|
@@ -7191,7 +7331,7 @@ const factories = {
|
|
|
7191
7331
|
'virtual_card_refund',
|
|
7192
7332
|
'failed_payout',
|
|
7193
7333
|
'tax_refund',
|
|
7194
|
-
'
|
|
7334
|
+
'non_l4l_tax_duty_fx',
|
|
7195
7335
|
'ge_revenue_share',
|
|
7196
7336
|
'tax_duty_delta',
|
|
7197
7337
|
]),
|
|
@@ -7700,6 +7840,20 @@ const factories = {
|
|
|
7700
7840
|
interval: factories['io.flow.v0.enums.unit_of_time'](),
|
|
7701
7841
|
}),
|
|
7702
7842
|
|
|
7843
|
+
'io.flow.v0.models.ansh_item_deleted': (): io.flow.v0.models.AnshItemDeleted => ({
|
|
7844
|
+
discriminator: 'ansh_item_deleted',
|
|
7845
|
+
event_id: factories.string(),
|
|
7846
|
+
timestamp: factories.date_time_iso_8601(),
|
|
7847
|
+
id: factories.string(),
|
|
7848
|
+
}),
|
|
7849
|
+
|
|
7850
|
+
'io.flow.v0.models.ansh_item_upserted': (): io.flow.v0.models.AnshItemUpserted => ({
|
|
7851
|
+
discriminator: 'ansh_item_upserted',
|
|
7852
|
+
event_id: factories.string(),
|
|
7853
|
+
timestamp: factories.date_time_iso_8601(),
|
|
7854
|
+
item: factories['io.flow.tech.onboarding.playground.v0.models.ansh_item'](),
|
|
7855
|
+
}),
|
|
7856
|
+
|
|
7703
7857
|
'io.flow.v0.models.apple_pay_merchant_validation_payload': (): io.flow.v0.models.ApplePayMerchantValidationPayload => ({
|
|
7704
7858
|
discriminator: 'apple_pay_merchant_validation_payload',
|
|
7705
7859
|
validation_url: factories.string(),
|
|
@@ -7887,6 +8041,33 @@ const factories = {
|
|
|
7887
8041
|
display: factories.string(),
|
|
7888
8042
|
}),
|
|
7889
8043
|
|
|
8044
|
+
'io.flow.v0.models.authorization_retry': (): io.flow.v0.models.AuthorizationRetry => ({
|
|
8045
|
+
id: factories.string(),
|
|
8046
|
+
authorization_request_id: factories.string(),
|
|
8047
|
+
authorization_id: factories.string(),
|
|
8048
|
+
organization_id: factories.string(),
|
|
8049
|
+
attempt: factories.integer(),
|
|
8050
|
+
last_failure_code: factories.string(),
|
|
8051
|
+
created_at: factories.date_time_iso_8601(),
|
|
8052
|
+
updated_at: factories.date_time_iso_8601(),
|
|
8053
|
+
}),
|
|
8054
|
+
|
|
8055
|
+
'io.flow.v0.models.authorization_retry_deleted': (): io.flow.v0.models.AuthorizationRetryDeleted => ({
|
|
8056
|
+
discriminator: 'authorization_retry_deleted',
|
|
8057
|
+
event_id: factories.string(),
|
|
8058
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8059
|
+
organization: factories.string(),
|
|
8060
|
+
id: factories.string(),
|
|
8061
|
+
}),
|
|
8062
|
+
|
|
8063
|
+
'io.flow.v0.models.authorization_retry_upserted': (): io.flow.v0.models.AuthorizationRetryUpserted => ({
|
|
8064
|
+
discriminator: 'authorization_retry_upserted',
|
|
8065
|
+
event_id: factories.string(),
|
|
8066
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8067
|
+
organization: factories.string(),
|
|
8068
|
+
authorization_retry: factories['io.flow.v0.models.authorization_retry'](),
|
|
8069
|
+
}),
|
|
8070
|
+
|
|
7890
8071
|
'io.flow.v0.models.authorization_status_changed': (): io.flow.v0.models.AuthorizationStatusChanged => ({
|
|
7891
8072
|
discriminator: 'authorization_status_changed',
|
|
7892
8073
|
event_id: factories.string(),
|
|
@@ -8168,28 +8349,6 @@ const factories = {
|
|
|
8168
8349
|
hub_code: factories.string(),
|
|
8169
8350
|
}),
|
|
8170
8351
|
|
|
8171
|
-
'io.flow.v0.models.browse_optin_responses': (): io.flow.v0.models.BrowseOptinResponses => ({
|
|
8172
|
-
id: factories.string(),
|
|
8173
|
-
session_id: factories.string(),
|
|
8174
|
-
optin_responses: arrayOf(() => factories['io.flow.v0.models.optin_response']()),
|
|
8175
|
-
}),
|
|
8176
|
-
|
|
8177
|
-
'io.flow.v0.models.browse_optin_responses_deleted': (): io.flow.v0.models.BrowseOptinResponsesDeleted => ({
|
|
8178
|
-
discriminator: 'browse_optin_responses_deleted',
|
|
8179
|
-
event_id: factories.string(),
|
|
8180
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8181
|
-
organization: factories.string(),
|
|
8182
|
-
id: factories.string(),
|
|
8183
|
-
}),
|
|
8184
|
-
|
|
8185
|
-
'io.flow.v0.models.browse_optin_responses_upserted': (): io.flow.v0.models.BrowseOptinResponsesUpserted => ({
|
|
8186
|
-
discriminator: 'browse_optin_responses_upserted',
|
|
8187
|
-
event_id: factories.string(),
|
|
8188
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8189
|
-
organization: factories.string(),
|
|
8190
|
-
browse_optin_responses: factories['io.flow.v0.models.browse_optin_responses'](),
|
|
8191
|
-
}),
|
|
8192
|
-
|
|
8193
8352
|
'io.flow.v0.models.browser_info': (): io.flow.v0.models.BrowserInfo => ({
|
|
8194
8353
|
origin: factories.string(),
|
|
8195
8354
|
language: factories.string(),
|
|
@@ -8325,6 +8484,7 @@ const factories = {
|
|
|
8325
8484
|
processor: factories['io.flow.v0.unions.expandable_payment_processor'](),
|
|
8326
8485
|
stored_method_usage_step: factories['io.flow.v0.enums.stored_method_usage_step'](),
|
|
8327
8486
|
authorized_at: factories.date_time_iso_8601(),
|
|
8487
|
+
authorization_request_id: factories.string(),
|
|
8328
8488
|
}),
|
|
8329
8489
|
|
|
8330
8490
|
'io.flow.v0.models.card_authorization_deleted_v2': (): io.flow.v0.models.CardAuthorizationDeletedV2 => ({
|
|
@@ -9015,29 +9175,6 @@ const factories = {
|
|
|
9015
9175
|
value: factories.string(),
|
|
9016
9176
|
}),
|
|
9017
9177
|
|
|
9018
|
-
'io.flow.v0.models.checkout_optin_responses': (): io.flow.v0.models.CheckoutOptinResponses => ({
|
|
9019
|
-
id: factories.string(),
|
|
9020
|
-
order_number: factories.string(),
|
|
9021
|
-
session_id: factories.string(),
|
|
9022
|
-
optin_responses: arrayOf(() => factories['io.flow.v0.models.optin_response']()),
|
|
9023
|
-
}),
|
|
9024
|
-
|
|
9025
|
-
'io.flow.v0.models.checkout_optin_responses_deleted': (): io.flow.v0.models.CheckoutOptinResponsesDeleted => ({
|
|
9026
|
-
discriminator: 'checkout_optin_responses_deleted',
|
|
9027
|
-
event_id: factories.string(),
|
|
9028
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9029
|
-
organization: factories.string(),
|
|
9030
|
-
id: factories.string(),
|
|
9031
|
-
}),
|
|
9032
|
-
|
|
9033
|
-
'io.flow.v0.models.checkout_optin_responses_upserted': (): io.flow.v0.models.CheckoutOptinResponsesUpserted => ({
|
|
9034
|
-
discriminator: 'checkout_optin_responses_upserted',
|
|
9035
|
-
event_id: factories.string(),
|
|
9036
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9037
|
-
organization: factories.string(),
|
|
9038
|
-
checkout_optin_responses: factories['io.flow.v0.models.checkout_optin_responses'](),
|
|
9039
|
-
}),
|
|
9040
|
-
|
|
9041
9178
|
'io.flow.v0.models.checkout_reference': (): io.flow.v0.models.CheckoutReference => ({
|
|
9042
9179
|
id: factories.string(),
|
|
9043
9180
|
}),
|
|
@@ -10157,6 +10294,15 @@ const factories = {
|
|
|
10157
10294
|
issuing_country: factories.string(),
|
|
10158
10295
|
}),
|
|
10159
10296
|
|
|
10297
|
+
'io.flow.v0.models.estimate': (): io.flow.v0.models.Estimate => ({
|
|
10298
|
+
id: factories.string(),
|
|
10299
|
+
organization_id: factories.string(),
|
|
10300
|
+
label_id: factories.string(),
|
|
10301
|
+
estimate: factories['io.flow.v0.models.shipping_label_hop_summary'](),
|
|
10302
|
+
type: factories['io.flow.v0.enums.estimate_type'](),
|
|
10303
|
+
origin: factories['io.flow.v0.enums.estimate_origin'](),
|
|
10304
|
+
}),
|
|
10305
|
+
|
|
10160
10306
|
'io.flow.v0.models.estimated_dimensions': (): io.flow.v0.models.EstimatedDimensions => ({
|
|
10161
10307
|
depth: factories['io.flow.v0.models.measurement'](),
|
|
10162
10308
|
length: factories['io.flow.v0.models.measurement'](),
|
|
@@ -10848,6 +10994,46 @@ const factories = {
|
|
|
10848
10994
|
landed_costs: arrayOf(() => factories['io.flow.v0.models.lane_landed_cost']()),
|
|
10849
10995
|
}),
|
|
10850
10996
|
|
|
10997
|
+
'io.flow.v0.models.ge_item_deleted': (): io.flow.v0.models.GeItemDeleted => ({
|
|
10998
|
+
discriminator: 'ge_item_deleted',
|
|
10999
|
+
event_id: factories.string(),
|
|
11000
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11001
|
+
organization: factories.string(),
|
|
11002
|
+
item: factories['io.flow.v0.models.item'](),
|
|
11003
|
+
}),
|
|
11004
|
+
|
|
11005
|
+
'io.flow.v0.models.ge_item_inserted': (): io.flow.v0.models.GeItemInserted => ({
|
|
11006
|
+
discriminator: 'ge_item_inserted',
|
|
11007
|
+
event_id: factories.string(),
|
|
11008
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11009
|
+
organization: factories.string(),
|
|
11010
|
+
item: factories['io.flow.v0.models.item'](),
|
|
11011
|
+
}),
|
|
11012
|
+
|
|
11013
|
+
'io.flow.v0.models.ge_item_updated': (): io.flow.v0.models.GeItemUpdated => ({
|
|
11014
|
+
discriminator: 'ge_item_updated',
|
|
11015
|
+
event_id: factories.string(),
|
|
11016
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11017
|
+
organization: factories.string(),
|
|
11018
|
+
item: factories['io.flow.v0.models.item'](),
|
|
11019
|
+
}),
|
|
11020
|
+
|
|
11021
|
+
'io.flow.v0.models.ge_product_restriction_result_deleted': (): io.flow.v0.models.GeProductRestrictionResultDeleted => ({
|
|
11022
|
+
discriminator: 'ge_product_restriction_result_deleted',
|
|
11023
|
+
event_id: factories.string(),
|
|
11024
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11025
|
+
organization: factories.string(),
|
|
11026
|
+
id: factories.string(),
|
|
11027
|
+
}),
|
|
11028
|
+
|
|
11029
|
+
'io.flow.v0.models.ge_product_restriction_result_upserted': (): io.flow.v0.models.GeProductRestrictionResultUpserted => ({
|
|
11030
|
+
discriminator: 'ge_product_restriction_result_upserted',
|
|
11031
|
+
event_id: factories.string(),
|
|
11032
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11033
|
+
organization: factories.string(),
|
|
11034
|
+
ge_product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
11035
|
+
}),
|
|
11036
|
+
|
|
10851
11037
|
'io.flow.v0.models.generate_load': (): io.flow.v0.models.GenerateLoad => ({
|
|
10852
11038
|
discriminator: 'generate_load',
|
|
10853
11039
|
event_id: factories.string(),
|
|
@@ -11860,14 +12046,6 @@ const factories = {
|
|
|
11860
12046
|
price: factories['io.flow.v0.models.localized_item_price'](),
|
|
11861
12047
|
}),
|
|
11862
12048
|
|
|
11863
|
-
'io.flow.v0.models.local_item_deleted': (): io.flow.v0.models.LocalItemDeleted => ({
|
|
11864
|
-
discriminator: 'local_item_deleted',
|
|
11865
|
-
event_id: factories.string(),
|
|
11866
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11867
|
-
organization: factories.string(),
|
|
11868
|
-
local_item: factories['io.flow.v0.models.local_item'](),
|
|
11869
|
-
}),
|
|
11870
|
-
|
|
11871
12049
|
'io.flow.v0.models.local_item_pricing': (): io.flow.v0.models.LocalItemPricing => ({
|
|
11872
12050
|
price: factories['io.flow.v0.models.localized_item_price'](),
|
|
11873
12051
|
vat: factories['io.flow.v0.models.localized_item_vat'](),
|
|
@@ -11877,14 +12055,6 @@ const factories = {
|
|
|
11877
12055
|
price_attributes: objectOf(() => factories['io.flow.v0.models.local_item_attribute_pricing']()),
|
|
11878
12056
|
}),
|
|
11879
12057
|
|
|
11880
|
-
'io.flow.v0.models.local_item_upserted': (): io.flow.v0.models.LocalItemUpserted => ({
|
|
11881
|
-
discriminator: 'local_item_upserted',
|
|
11882
|
-
event_id: factories.string(),
|
|
11883
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11884
|
-
organization: factories.string(),
|
|
11885
|
-
local_item: factories['io.flow.v0.models.local_item'](),
|
|
11886
|
-
}),
|
|
11887
|
-
|
|
11888
12058
|
'io.flow.v0.models.local_price_details': (): io.flow.v0.models.LocalPriceDetails => ({
|
|
11889
12059
|
base: factories['io.flow.v0.models.price_details'](),
|
|
11890
12060
|
local: factories['io.flow.v0.models.price_details'](),
|
|
@@ -12360,6 +12530,7 @@ const factories = {
|
|
|
12360
12530
|
processor: factories['io.flow.v0.unions.expandable_payment_processor'](),
|
|
12361
12531
|
confirmation_details: factories['io.flow.v0.unions.confirmation_details'](),
|
|
12362
12532
|
authorized_at: factories.date_time_iso_8601(),
|
|
12533
|
+
authorization_request_id: factories.string(),
|
|
12363
12534
|
}),
|
|
12364
12535
|
|
|
12365
12536
|
'io.flow.v0.models.online_authorization_deleted_v2': (): io.flow.v0.models.OnlineAuthorizationDeletedV2 => ({
|
|
@@ -12391,11 +12562,6 @@ const factories = {
|
|
|
12391
12562
|
phone: factories.string(),
|
|
12392
12563
|
}),
|
|
12393
12564
|
|
|
12394
|
-
'io.flow.v0.models.optin_response': (): io.flow.v0.models.OptinResponse => ({
|
|
12395
|
-
key: factories.string(),
|
|
12396
|
-
value: factories['io.flow.v0.enums.optin_response_type'](),
|
|
12397
|
-
}),
|
|
12398
|
-
|
|
12399
12565
|
'io.flow.v0.models.option_weight_estimates': (): io.flow.v0.models.OptionWeightEstimates => ({
|
|
12400
12566
|
gravitational: factories['io.flow.v0.models.measurement'](),
|
|
12401
12567
|
dimensional: factories['io.flow.v0.models.measurement'](),
|
|
@@ -12436,6 +12602,7 @@ const factories = {
|
|
|
12436
12602
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
12437
12603
|
destination_contact_details: arrayOf(() => factories['io.flow.v0.models.destination_contact_detail']()),
|
|
12438
12604
|
incoterm_summary: factories['io.flow.v0.models.incoterm_summary'](),
|
|
12605
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
12439
12606
|
}),
|
|
12440
12607
|
|
|
12441
12608
|
'io.flow.v0.models.order_address': (): io.flow.v0.models.OrderAddress => ({
|
|
@@ -12579,6 +12746,7 @@ const factories = {
|
|
|
12579
12746
|
authorization_keys: arrayOf(() => factories.string()),
|
|
12580
12747
|
options: factories['io.flow.v0.models.order_options'](),
|
|
12581
12748
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
12749
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
12582
12750
|
}),
|
|
12583
12751
|
|
|
12584
12752
|
'io.flow.v0.models.order_fraud_status': (): io.flow.v0.models.OrderFraudStatus => ({
|
|
@@ -12798,6 +12966,7 @@ const factories = {
|
|
|
12798
12966
|
authorization_keys: arrayOf(() => factories.string()),
|
|
12799
12967
|
options: factories['io.flow.v0.models.order_options'](),
|
|
12800
12968
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
12969
|
+
payment_source: factories['io.flow.v0.enums.order_payment_source_type'](),
|
|
12801
12970
|
}),
|
|
12802
12971
|
|
|
12803
12972
|
'io.flow.v0.models.order_reference': (): io.flow.v0.models.OrderReference => ({
|
|
@@ -14356,10 +14525,6 @@ const factories = {
|
|
|
14356
14525
|
id: factories.string(),
|
|
14357
14526
|
}),
|
|
14358
14527
|
|
|
14359
|
-
'io.flow.v0.models.price_book_item_export_options': (): io.flow.v0.models.PriceBookItemExportOptions => ({
|
|
14360
|
-
available_identifiers: arrayOf(() => factories['io.flow.v0.enums.item_identifier']()),
|
|
14361
|
-
}),
|
|
14362
|
-
|
|
14363
14528
|
'io.flow.v0.models.price_book_item_export_type': (): io.flow.v0.models.PriceBookItemExportType => ({
|
|
14364
14529
|
discriminator: 'price_book_item_export_type',
|
|
14365
14530
|
price_book_key: factories.string(),
|
|
@@ -14603,29 +14768,6 @@ const factories = {
|
|
|
14603
14768
|
product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
14604
14769
|
}),
|
|
14605
14770
|
|
|
14606
|
-
'io.flow.v0.models.product_sellability': (): io.flow.v0.models.ProductSellability => ({
|
|
14607
|
-
organization_id: factories.string(),
|
|
14608
|
-
product_id: factories.string(),
|
|
14609
|
-
product_correlation_id: factories.string(),
|
|
14610
|
-
restricted_regions: arrayOf(() => factories['io.flow.v0.models.sellablility_region_result']()),
|
|
14611
|
-
in_review_regions: arrayOf(() => factories['io.flow.v0.models.sellablility_region_result']()),
|
|
14612
|
-
}),
|
|
14613
|
-
|
|
14614
|
-
'io.flow.v0.models.product_sellability_form': (): io.flow.v0.models.ProductSellabilityForm => ({
|
|
14615
|
-
organization_id: factories.string(),
|
|
14616
|
-
product_id: factories.string(),
|
|
14617
|
-
product_correlation_id: factories.string(),
|
|
14618
|
-
name: factories.string(),
|
|
14619
|
-
price: factories['io.flow.v0.models.product_sellability_price'](),
|
|
14620
|
-
description: factories.string(),
|
|
14621
|
-
taxonomy_category: factories['io.flow.v0.models.product_taxonomy_category'](),
|
|
14622
|
-
}),
|
|
14623
|
-
|
|
14624
|
-
'io.flow.v0.models.product_sellability_price': (): io.flow.v0.models.ProductSellabilityPrice => ({
|
|
14625
|
-
currency: factories.string(),
|
|
14626
|
-
amount: factories.decimal(),
|
|
14627
|
-
}),
|
|
14628
|
-
|
|
14629
14771
|
'io.flow.v0.models.product_taxonomy_category': (): io.flow.v0.models.ProductTaxonomyCategory => ({
|
|
14630
14772
|
name: factories.string(),
|
|
14631
14773
|
full_name: factories.string(),
|
|
@@ -15589,11 +15731,6 @@ const factories = {
|
|
|
15589
15731
|
issuer_options: arrayOf(() => factories['io.flow.v0.models.issuer_reference']()),
|
|
15590
15732
|
}),
|
|
15591
15733
|
|
|
15592
|
-
'io.flow.v0.models.sellablility_region_result': (): io.flow.v0.models.SellablilityRegionResult => ({
|
|
15593
|
-
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
15594
|
-
regions: arrayOf(() => factories.string()),
|
|
15595
|
-
}),
|
|
15596
|
-
|
|
15597
15734
|
'io.flow.v0.models.service_reference': (): io.flow.v0.models.ServiceReference => ({
|
|
15598
15735
|
id: factories.string(),
|
|
15599
15736
|
}),
|
|
@@ -16546,79 +16683,6 @@ const factories = {
|
|
|
16546
16683
|
available: arrayOf(() => factories['io.flow.v0.models.surcharge_responsible_party_display']()),
|
|
16547
16684
|
}),
|
|
16548
16685
|
|
|
16549
|
-
'io.flow.v0.models.sync_duration': (): io.flow.v0.models.SyncDuration => ({
|
|
16550
|
-
unit: factories['io.flow.v0.enums.sync_unit_of_time'](),
|
|
16551
|
-
value: factories.long(),
|
|
16552
|
-
}),
|
|
16553
|
-
|
|
16554
|
-
'io.flow.v0.models.sync_pending_record': (): io.flow.v0.models.SyncPendingRecord => ({
|
|
16555
|
-
id: factories.string(),
|
|
16556
|
-
stream: factories['io.flow.v0.models.sync_stream_reference'](),
|
|
16557
|
-
value: factories.string(),
|
|
16558
|
-
system: factories.string(),
|
|
16559
|
-
}),
|
|
16560
|
-
|
|
16561
|
-
'io.flow.v0.models.sync_record': (): io.flow.v0.models.SyncRecord => ({
|
|
16562
|
-
id: factories.string(),
|
|
16563
|
-
system: factories.string(),
|
|
16564
|
-
value: factories.string(),
|
|
16565
|
-
stream: factories['io.flow.v0.models.sync_stream_reference'](),
|
|
16566
|
-
}),
|
|
16567
|
-
|
|
16568
|
-
'io.flow.v0.models.sync_record_failure': (): io.flow.v0.models.SyncRecordFailure => ({
|
|
16569
|
-
id: factories.string(),
|
|
16570
|
-
stream: factories['io.flow.v0.models.sync_stream_reference'](),
|
|
16571
|
-
value: factories.string(),
|
|
16572
|
-
system: factories.string(),
|
|
16573
|
-
reason: factories['io.flow.v0.enums.sync_record_failure_reason'](),
|
|
16574
|
-
attributes: objectOf(() => factories.string()),
|
|
16575
|
-
}),
|
|
16576
|
-
|
|
16577
|
-
'io.flow.v0.models.sync_record_failure_form': (): io.flow.v0.models.SyncRecordFailureForm => ({
|
|
16578
|
-
stream_key: factories.string(),
|
|
16579
|
-
value: factories.string(),
|
|
16580
|
-
system: factories.string(),
|
|
16581
|
-
reason: factories['io.flow.v0.enums.sync_record_failure_reason'](),
|
|
16582
|
-
attributes: objectOf(() => factories.string()),
|
|
16583
|
-
}),
|
|
16584
|
-
|
|
16585
|
-
'io.flow.v0.models.sync_record_form': (): io.flow.v0.models.SyncRecordForm => ({
|
|
16586
|
-
stream_key: factories.string(),
|
|
16587
|
-
system: factories.string(),
|
|
16588
|
-
value: factories.string(),
|
|
16589
|
-
}),
|
|
16590
|
-
|
|
16591
|
-
'io.flow.v0.models.sync_stream': (): io.flow.v0.models.SyncStream => ({
|
|
16592
|
-
id: factories.string(),
|
|
16593
|
-
key: factories.string(),
|
|
16594
|
-
type: factories['io.flow.v0.enums.sync_stream_type'](),
|
|
16595
|
-
systems: arrayOf(() => factories.string()),
|
|
16596
|
-
settings: factories['io.flow.v0.models.sync_stream_settings'](),
|
|
16597
|
-
}),
|
|
16598
|
-
|
|
16599
|
-
'io.flow.v0.models.sync_stream_form': (): io.flow.v0.models.SyncStreamForm => ({
|
|
16600
|
-
type: factories['io.flow.v0.enums.sync_stream_type'](),
|
|
16601
|
-
systems: arrayOf(() => factories.string()),
|
|
16602
|
-
settings: factories['io.flow.v0.models.sync_stream_settings_form'](),
|
|
16603
|
-
}),
|
|
16604
|
-
|
|
16605
|
-
'io.flow.v0.models.sync_stream_reference': (): io.flow.v0.models.SyncStreamReference => ({
|
|
16606
|
-
id: factories.string(),
|
|
16607
|
-
key: factories.string(),
|
|
16608
|
-
}),
|
|
16609
|
-
|
|
16610
|
-
'io.flow.v0.models.sync_stream_settings': (): io.flow.v0.models.SyncStreamSettings => ({
|
|
16611
|
-
pending_record_after: factories['io.flow.v0.models.sync_duration'](),
|
|
16612
|
-
warn_after: factories['io.flow.v0.models.sync_duration'](),
|
|
16613
|
-
error_after: factories['io.flow.v0.models.sync_duration'](),
|
|
16614
|
-
}),
|
|
16615
|
-
|
|
16616
|
-
'io.flow.v0.models.sync_stream_settings_form': (): io.flow.v0.models.SyncStreamSettingsForm => ({
|
|
16617
|
-
pending_record_after: factories['io.flow.v0.models.sync_duration'](),
|
|
16618
|
-
warn_after: factories['io.flow.v0.models.sync_duration'](),
|
|
16619
|
-
error_after: factories['io.flow.v0.models.sync_duration'](),
|
|
16620
|
-
}),
|
|
16621
|
-
|
|
16622
16686
|
'io.flow.v0.models.tax': (): io.flow.v0.models.Tax => ({
|
|
16623
16687
|
name: factories.string(),
|
|
16624
16688
|
rate: factories.decimal(),
|
|
@@ -17704,6 +17768,8 @@ const factories = {
|
|
|
17704
17768
|
() => factories['io.flow.v0.models.generate_load'](),
|
|
17705
17769
|
() => factories['io.flow.v0.models.aldo_item_upserted'](),
|
|
17706
17770
|
() => factories['io.flow.v0.models.aldo_item_deleted'](),
|
|
17771
|
+
() => factories['io.flow.v0.models.ansh_item_upserted'](),
|
|
17772
|
+
() => factories['io.flow.v0.models.ansh_item_deleted'](),
|
|
17707
17773
|
() => factories['io.flow.v0.models.transaction_upserted'](),
|
|
17708
17774
|
() => factories['io.flow.v0.models.organization_transaction_upserted'](),
|
|
17709
17775
|
() => factories['io.flow.v0.models.organization_transaction_deleted'](),
|
|
@@ -17813,6 +17879,11 @@ const factories = {
|
|
|
17813
17879
|
() => factories['io.flow.v0.models.shipping_configuration_item_availability_deleted'](),
|
|
17814
17880
|
() => factories['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'](),
|
|
17815
17881
|
() => factories['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'](),
|
|
17882
|
+
() => factories['io.flow.v0.models.ge_item_inserted'](),
|
|
17883
|
+
() => factories['io.flow.v0.models.ge_item_updated'](),
|
|
17884
|
+
() => factories['io.flow.v0.models.ge_item_deleted'](),
|
|
17885
|
+
() => factories['io.flow.v0.models.ge_product_restriction_result_upserted'](),
|
|
17886
|
+
() => factories['io.flow.v0.models.ge_product_restriction_result_deleted'](),
|
|
17816
17887
|
() => factories['io.flow.v0.models.hs6_code_upserted'](),
|
|
17817
17888
|
() => factories['io.flow.v0.models.hs6_code_deleted'](),
|
|
17818
17889
|
() => factories['io.flow.v0.models.hs10_code_upserted'](),
|
|
@@ -17832,14 +17903,8 @@ const factories = {
|
|
|
17832
17903
|
() => factories['io.flow.v0.models.manifested_label_deleted'](),
|
|
17833
17904
|
() => factories['io.flow.v0.models.label_processing_modification_upserted'](),
|
|
17834
17905
|
() => factories['io.flow.v0.models.label_processing_modification_deleted'](),
|
|
17835
|
-
() => factories['io.flow.v0.models.local_item_upserted'](),
|
|
17836
|
-
() => factories['io.flow.v0.models.local_item_deleted'](),
|
|
17837
17906
|
() => factories['io.flow.v0.models.merchant_application_upserted'](),
|
|
17838
17907
|
() => factories['io.flow.v0.models.merchant_application_deleted'](),
|
|
17839
|
-
() => factories['io.flow.v0.models.checkout_optin_responses_upserted'](),
|
|
17840
|
-
() => factories['io.flow.v0.models.checkout_optin_responses_deleted'](),
|
|
17841
|
-
() => factories['io.flow.v0.models.browse_optin_responses_upserted'](),
|
|
17842
|
-
() => factories['io.flow.v0.models.browse_optin_responses_deleted'](),
|
|
17843
17908
|
() => factories['io.flow.v0.models.order_placed'](),
|
|
17844
17909
|
() => factories['io.flow.v0.models.order_placed_v2'](),
|
|
17845
17910
|
() => factories['io.flow.v0.models.ready_to_fulfill'](),
|
|
@@ -17881,6 +17946,8 @@ const factories = {
|
|
|
17881
17946
|
() => factories['io.flow.v0.models.virtual_card_capture_deleted'](),
|
|
17882
17947
|
() => factories['io.flow.v0.models.virtual_card_refund_upserted'](),
|
|
17883
17948
|
() => factories['io.flow.v0.models.virtual_card_refund_deleted'](),
|
|
17949
|
+
() => factories['io.flow.v0.models.authorization_retry_upserted'](),
|
|
17950
|
+
() => factories['io.flow.v0.models.authorization_retry_deleted'](),
|
|
17884
17951
|
() => factories['io.flow.v0.models.payment_request_upserted'](),
|
|
17885
17952
|
() => factories['io.flow.v0.models.payment_request_deleted'](),
|
|
17886
17953
|
() => factories['io.flow.v0.models.price_book_upserted'](),
|
|
@@ -18734,6 +18801,8 @@ export const makeAllocationV2 = () => factories['io.flow.v0.models.allocation_v2
|
|
|
18734
18801
|
export const makeAmountMargin = () => factories['io.flow.v0.models.amount_margin']();
|
|
18735
18802
|
export const makeAmountMarginForm = () => factories['io.flow.v0.models.amount_margin_form']();
|
|
18736
18803
|
export const makeAnalyticsExportType = () => factories['io.flow.v0.models.analytics_export_type']();
|
|
18804
|
+
export const makeAnshItemDeleted = () => factories['io.flow.v0.models.ansh_item_deleted']();
|
|
18805
|
+
export const makeAnshItemUpserted = () => factories['io.flow.v0.models.ansh_item_upserted']();
|
|
18737
18806
|
export const makeApplePayMerchantValidationPayload = () => factories['io.flow.v0.models.apple_pay_merchant_validation_payload']();
|
|
18738
18807
|
export const makeApplepaySdkCreateResultActionDetails = () => factories['io.flow.v0.models.applepay_sdk_create_result_action_details']();
|
|
18739
18808
|
export const makeApplepaySdkValidateResultActionDetails = () => factories['io.flow.v0.models.applepay_sdk_validate_result_action_details']();
|
|
@@ -18773,6 +18842,9 @@ export const makeAuthorizationResultActionPost = () => factories['io.flow.v0.mod
|
|
|
18773
18842
|
export const makeAuthorizationResultActionType = () => factories['io.flow.v0.enums.authorization_result_action_type']();
|
|
18774
18843
|
export const makeAuthorizationResultActionWait = () => factories['io.flow.v0.models.authorization_result_action_wait']();
|
|
18775
18844
|
export const makeAuthorizationResultDescription = () => factories['io.flow.v0.models.authorization_result_description']();
|
|
18845
|
+
export const makeAuthorizationRetry = () => factories['io.flow.v0.models.authorization_retry']();
|
|
18846
|
+
export const makeAuthorizationRetryDeleted = () => factories['io.flow.v0.models.authorization_retry_deleted']();
|
|
18847
|
+
export const makeAuthorizationRetryUpserted = () => factories['io.flow.v0.models.authorization_retry_upserted']();
|
|
18776
18848
|
export const makeAuthorizationStatus = () => factories['io.flow.v0.enums.authorization_status']();
|
|
18777
18849
|
export const makeAuthorizationStatusChanged = () => factories['io.flow.v0.models.authorization_status_changed']();
|
|
18778
18850
|
export const makeAuthorizationVersion = () => factories['io.flow.v0.models.authorization_version']();
|
|
@@ -18820,9 +18892,6 @@ export const makeBillingDiscount = () => factories['io.flow.v0.models.billing_di
|
|
|
18820
18892
|
export const makeBridgeManifest = () => factories['io.flow.v0.models.bridge_manifest']();
|
|
18821
18893
|
export const makeBridgeManifestForm = () => factories['io.flow.v0.models.bridge_manifest_form']();
|
|
18822
18894
|
export const makeBridgeShippingLabelForm = () => factories['io.flow.v0.models.bridge_shipping_label_form']();
|
|
18823
|
-
export const makeBrowseOptinResponses = () => factories['io.flow.v0.models.browse_optin_responses']();
|
|
18824
|
-
export const makeBrowseOptinResponsesDeleted = () => factories['io.flow.v0.models.browse_optin_responses_deleted']();
|
|
18825
|
-
export const makeBrowseOptinResponsesUpserted = () => factories['io.flow.v0.models.browse_optin_responses_upserted']();
|
|
18826
18895
|
export const makeBrowserActionConfiguration = () => factories['io.flow.v0.unions.browser_action_configuration']();
|
|
18827
18896
|
export const makeBrowserInfo = () => factories['io.flow.v0.models.browser_info']();
|
|
18828
18897
|
export const makeBrowserInlineActionConfiguration = () => factories['io.flow.v0.models.browser_inline_action_configuration']();
|
|
@@ -18947,9 +19016,6 @@ export const makeCheckoutAttribute = () => factories['io.flow.v0.models.checkout
|
|
|
18947
19016
|
export const makeCheckoutAttributeForm = () => factories['io.flow.v0.models.checkout_attribute_form']();
|
|
18948
19017
|
export const makeCheckoutItemContent = () => factories['io.flow.v0.models.checkout_item_content']();
|
|
18949
19018
|
export const makeCheckoutItemContentAttribute = () => factories['io.flow.v0.models.checkout_item_content_attribute']();
|
|
18950
|
-
export const makeCheckoutOptinResponses = () => factories['io.flow.v0.models.checkout_optin_responses']();
|
|
18951
|
-
export const makeCheckoutOptinResponsesDeleted = () => factories['io.flow.v0.models.checkout_optin_responses_deleted']();
|
|
18952
|
-
export const makeCheckoutOptinResponsesUpserted = () => factories['io.flow.v0.models.checkout_optin_responses_upserted']();
|
|
18953
19019
|
export const makeCheckoutReference = () => factories['io.flow.v0.models.checkout_reference']();
|
|
18954
19020
|
export const makeCheckoutToken = () => factories['io.flow.v0.models.checkout_token']();
|
|
18955
19021
|
export const makeCheckoutTokenForm = () => factories['io.flow.v0.unions.checkout_token_form']();
|
|
@@ -19149,6 +19215,9 @@ export const makeEntity = () => factories['io.flow.v0.unions.entity']();
|
|
|
19149
19215
|
export const makeEntityIdentifier = () => factories['io.flow.v0.models.entity_identifier']();
|
|
19150
19216
|
export const makeEntityIdentifierType = () => factories['io.flow.v0.enums.entity_identifier_type']();
|
|
19151
19217
|
export const makeEnvironment = () => factories['io.flow.v0.enums.environment']();
|
|
19218
|
+
export const makeEstimate = () => factories['io.flow.v0.models.estimate']();
|
|
19219
|
+
export const makeEstimateOrigin = () => factories['io.flow.v0.enums.estimate_origin']();
|
|
19220
|
+
export const makeEstimateType = () => factories['io.flow.v0.enums.estimate_type']();
|
|
19152
19221
|
export const makeEstimatedDimensions = () => factories['io.flow.v0.models.estimated_dimensions']();
|
|
19153
19222
|
export const makeEstimatedWindow = () => factories['io.flow.v0.models.estimated_window']();
|
|
19154
19223
|
export const makeEvent = () => factories['io.flow.v0.unions.event']();
|
|
@@ -19292,6 +19361,11 @@ export const makeFulfillmentRouting = () => factories['io.flow.v0.enums.fulfillm
|
|
|
19292
19361
|
export const makeFullyHarmonizedItemUpserted = () => factories['io.flow.v0.models.fully_harmonized_item_upserted']();
|
|
19293
19362
|
export const makeGatewayAuthenticationData = () => factories['io.flow.v0.unions.gateway_authentication_data']();
|
|
19294
19363
|
export const makeGatewayAuthenticationDataForm = () => factories['io.flow.v0.unions.gateway_authentication_data_form']();
|
|
19364
|
+
export const makeGeItemDeleted = () => factories['io.flow.v0.models.ge_item_deleted']();
|
|
19365
|
+
export const makeGeItemInserted = () => factories['io.flow.v0.models.ge_item_inserted']();
|
|
19366
|
+
export const makeGeItemUpdated = () => factories['io.flow.v0.models.ge_item_updated']();
|
|
19367
|
+
export const makeGeProductRestrictionResultDeleted = () => factories['io.flow.v0.models.ge_product_restriction_result_deleted']();
|
|
19368
|
+
export const makeGeProductRestrictionResultUpserted = () => factories['io.flow.v0.models.ge_product_restriction_result_upserted']();
|
|
19295
19369
|
export const makeGenerateLoad = () => factories['io.flow.v0.models.generate_load']();
|
|
19296
19370
|
export const makeGenericError = () => factories['io.flow.v0.models.generic_error']();
|
|
19297
19371
|
export const makeGenericErrorCode = () => factories['io.flow.v0.enums.generic_error_code']();
|
|
@@ -19453,9 +19527,7 @@ export const makeLink = () => factories['io.flow.v0.models.link']();
|
|
|
19453
19527
|
export const makeLocal = () => factories['io.flow.v0.models.local']();
|
|
19454
19528
|
export const makeLocalItem = () => factories['io.flow.v0.models.local_item']();
|
|
19455
19529
|
export const makeLocalItemAttributePricing = () => factories['io.flow.v0.models.local_item_attribute_pricing']();
|
|
19456
|
-
export const makeLocalItemDeleted = () => factories['io.flow.v0.models.local_item_deleted']();
|
|
19457
19530
|
export const makeLocalItemPricing = () => factories['io.flow.v0.models.local_item_pricing']();
|
|
19458
|
-
export const makeLocalItemUpserted = () => factories['io.flow.v0.models.local_item_upserted']();
|
|
19459
19531
|
export const makeLocalPriceDetails = () => factories['io.flow.v0.models.local_price_details']();
|
|
19460
19532
|
export const makeLocalSession = () => factories['io.flow.v0.models.local_session']();
|
|
19461
19533
|
export const makeLocale = () => factories['io.flow.v0.models.locale']();
|
|
@@ -19547,8 +19619,6 @@ export const makeOnlineAuthorizationDetails = () => factories['io.flow.v0.unions
|
|
|
19547
19619
|
export const makeOnlineAuthorizationUpsertedV2 = () => factories['io.flow.v0.models.online_authorization_upserted_v2']();
|
|
19548
19620
|
export const makeOnlinePaymentAuthorizationForm = () => factories['io.flow.v0.models.online_payment_authorization_form']();
|
|
19549
19621
|
export const makeOperationsContact = () => factories['io.flow.v0.models.operations_contact']();
|
|
19550
|
-
export const makeOptinResponse = () => factories['io.flow.v0.models.optin_response']();
|
|
19551
|
-
export const makeOptinResponseType = () => factories['io.flow.v0.enums.optin_response_type']();
|
|
19552
19622
|
export const makeOptionWeightEstimates = () => factories['io.flow.v0.models.option_weight_estimates']();
|
|
19553
19623
|
export const makeOptions = () => factories['io.flow.v0.models.options']();
|
|
19554
19624
|
export const makeOrder = () => factories['io.flow.v0.models.order']();
|
|
@@ -19599,6 +19669,7 @@ export const makeOrderNumberGeneratorUuid = () => factories['io.flow.v0.models.o
|
|
|
19599
19669
|
export const makeOrderNumberReference = () => factories['io.flow.v0.models.order_number_reference']();
|
|
19600
19670
|
export const makeOrderOptions = () => factories['io.flow.v0.models.order_options']();
|
|
19601
19671
|
export const makeOrderPayment = () => factories['io.flow.v0.models.order_payment']();
|
|
19672
|
+
export const makeOrderPaymentSourceType = () => factories['io.flow.v0.enums.order_payment_source_type']();
|
|
19602
19673
|
export const makeOrderPaymentType = () => factories['io.flow.v0.enums.order_payment_type']();
|
|
19603
19674
|
export const makeOrderPlaced = () => factories['io.flow.v0.models.order_placed']();
|
|
19604
19675
|
export const makeOrderPlacedDetails = () => factories['io.flow.v0.models.order_placed_details']();
|
|
@@ -19885,7 +19956,6 @@ export const makePriceBookDeleted = () => factories['io.flow.v0.models.price_boo
|
|
|
19885
19956
|
export const makePriceBookForm = () => factories['io.flow.v0.models.price_book_form']();
|
|
19886
19957
|
export const makePriceBookItem = () => factories['io.flow.v0.models.price_book_item']();
|
|
19887
19958
|
export const makePriceBookItemDeleted = () => factories['io.flow.v0.models.price_book_item_deleted']();
|
|
19888
|
-
export const makePriceBookItemExportOptions = () => factories['io.flow.v0.models.price_book_item_export_options']();
|
|
19889
19959
|
export const makePriceBookItemExportType = () => factories['io.flow.v0.models.price_book_item_export_type']();
|
|
19890
19960
|
export const makePriceBookItemForm = () => factories['io.flow.v0.models.price_book_item_form']();
|
|
19891
19961
|
export const makePriceBookItemQueryForm = () => factories['io.flow.v0.models.price_book_item_query_form']();
|
|
@@ -19924,9 +19994,6 @@ export const makeProductRestrictionResult = () => factories['io.flow.v0.models.p
|
|
|
19924
19994
|
export const makeProductRestrictionResultDeleted = () => factories['io.flow.v0.models.product_restriction_result_deleted']();
|
|
19925
19995
|
export const makeProductRestrictionResultUpserted = () => factories['io.flow.v0.models.product_restriction_result_upserted']();
|
|
19926
19996
|
export const makeProductRestrictionRule = () => factories['io.flow.v0.enums.product_restriction_rule']();
|
|
19927
|
-
export const makeProductSellability = () => factories['io.flow.v0.models.product_sellability']();
|
|
19928
|
-
export const makeProductSellabilityForm = () => factories['io.flow.v0.models.product_sellability_form']();
|
|
19929
|
-
export const makeProductSellabilityPrice = () => factories['io.flow.v0.models.product_sellability_price']();
|
|
19930
19997
|
export const makeProductTaxonomyCategory = () => factories['io.flow.v0.models.product_taxonomy_category']();
|
|
19931
19998
|
export const makeProductTaxonomyData = () => factories['io.flow.v0.models.product_taxonomy_data']();
|
|
19932
19999
|
export const makeProductUpdated = () => factories['io.flow.v0.models.product_updated']();
|
|
@@ -20074,7 +20141,6 @@ export const makeRounding = () => factories['io.flow.v0.models.rounding']();
|
|
|
20074
20141
|
export const makeRoundingMethod = () => factories['io.flow.v0.enums.rounding_method']();
|
|
20075
20142
|
export const makeRoundingType = () => factories['io.flow.v0.enums.rounding_type']();
|
|
20076
20143
|
export const makeRouteAudit = () => factories['io.flow.v0.models.route_audit']();
|
|
20077
|
-
export const makeRuleEffectType = () => factories['io.flow.v0.enums.rule_effect_type']();
|
|
20078
20144
|
export const makeSchedule = () => factories['io.flow.v0.models.schedule']();
|
|
20079
20145
|
export const makeScheduleExceptionStatus = () => factories['io.flow.v0.enums.schedule_exception_status']();
|
|
20080
20146
|
export const makeScheduledExport = () => factories['io.flow.v0.models.scheduled_export']();
|
|
@@ -20084,7 +20150,6 @@ export const makeSdkAdyenV3AuthenticationToken = () => factories['io.flow.v0.uni
|
|
|
20084
20150
|
export const makeSecurityRatecardFee = () => factories['io.flow.v0.models.security_ratecard_fee']();
|
|
20085
20151
|
export const makeSecurityServiceFee = () => factories['io.flow.v0.models.security_service_fee']();
|
|
20086
20152
|
export const makeSelectIssuerOptionActionDetails = () => factories['io.flow.v0.models.select_issuer_option_action_details']();
|
|
20087
|
-
export const makeSellablilityRegionResult = () => factories['io.flow.v0.models.sellablility_region_result']();
|
|
20088
20153
|
export const makeServiceDescription = () => factories['io.flow.v0.unions.service_description']();
|
|
20089
20154
|
export const makeServiceFee = () => factories['io.flow.v0.unions.service_fee']();
|
|
20090
20155
|
export const makeServiceReference = () => factories['io.flow.v0.models.service_reference']();
|
|
@@ -20234,20 +20299,6 @@ export const makeSurchargeResponsibleParty = () => factories['io.flow.v0.enums.s
|
|
|
20234
20299
|
export const makeSurchargeResponsiblePartyDisplay = () => factories['io.flow.v0.models.surcharge_responsible_party_display']();
|
|
20235
20300
|
export const makeSurchargeSetting = () => factories['io.flow.v0.models.surcharge_setting']();
|
|
20236
20301
|
export const makeSurchargeSettingDisplay = () => factories['io.flow.v0.models.surcharge_setting_display']();
|
|
20237
|
-
export const makeSyncDuration = () => factories['io.flow.v0.models.sync_duration']();
|
|
20238
|
-
export const makeSyncPendingRecord = () => factories['io.flow.v0.models.sync_pending_record']();
|
|
20239
|
-
export const makeSyncRecord = () => factories['io.flow.v0.models.sync_record']();
|
|
20240
|
-
export const makeSyncRecordFailure = () => factories['io.flow.v0.models.sync_record_failure']();
|
|
20241
|
-
export const makeSyncRecordFailureForm = () => factories['io.flow.v0.models.sync_record_failure_form']();
|
|
20242
|
-
export const makeSyncRecordFailureReason = () => factories['io.flow.v0.enums.sync_record_failure_reason']();
|
|
20243
|
-
export const makeSyncRecordForm = () => factories['io.flow.v0.models.sync_record_form']();
|
|
20244
|
-
export const makeSyncStream = () => factories['io.flow.v0.models.sync_stream']();
|
|
20245
|
-
export const makeSyncStreamForm = () => factories['io.flow.v0.models.sync_stream_form']();
|
|
20246
|
-
export const makeSyncStreamReference = () => factories['io.flow.v0.models.sync_stream_reference']();
|
|
20247
|
-
export const makeSyncStreamSettings = () => factories['io.flow.v0.models.sync_stream_settings']();
|
|
20248
|
-
export const makeSyncStreamSettingsForm = () => factories['io.flow.v0.models.sync_stream_settings_form']();
|
|
20249
|
-
export const makeSyncStreamType = () => factories['io.flow.v0.enums.sync_stream_type']();
|
|
20250
|
-
export const makeSyncUnitOfTime = () => factories['io.flow.v0.enums.sync_unit_of_time']();
|
|
20251
20302
|
export const makeTax = () => factories['io.flow.v0.models.tax']();
|
|
20252
20303
|
export const makeTaxApplicability = () => factories['io.flow.v0.enums.tax_applicability']();
|
|
20253
20304
|
export const makeTaxRegistration = () => factories['io.flow.v0.models.tax_registration']();
|