@flowio/api-factories 0.0.124 → 0.0.126
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 +178 -100
- package/dist/esm/api.js +130 -62
- package/dist/types/api.d.ts +15 -5
- package/package.json +1 -1
- package/src/api.ts +143 -75
package/src/api.ts
CHANGED
|
@@ -237,7 +237,7 @@ const factories = {
|
|
|
237
237
|
order_updated_at: factories.date_time_iso_8601(),
|
|
238
238
|
order_edit_summary: factories['io.flow.channel.internal.v0.models.order_edit_summary'](),
|
|
239
239
|
payment_source: factories['io.flow.channel.internal.v0.enums.order_payment_source_type'](),
|
|
240
|
-
external_order_summary: factories['io.flow.channel.
|
|
240
|
+
external_order_summary: factories['io.flow.channel.internal.v0.models.external_order_summary'](),
|
|
241
241
|
}),
|
|
242
242
|
|
|
243
243
|
'io.flow.channel.internal.v0.models.channel_order_acceptance_details': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceDetails => ({
|
|
@@ -303,6 +303,12 @@ const factories = {
|
|
|
303
303
|
catalog_products_count: factories.long(),
|
|
304
304
|
}),
|
|
305
305
|
|
|
306
|
+
'io.flow.channel.internal.v0.models.external_order_summary': (): io.flow.channel.internal.v0.models.ExternalOrderSummary => ({
|
|
307
|
+
id: factories.string(),
|
|
308
|
+
edit_ids: arrayOf(() => factories.string()),
|
|
309
|
+
created_at: factories.date_time_iso_8601(),
|
|
310
|
+
}),
|
|
311
|
+
|
|
306
312
|
'io.flow.channel.internal.v0.models.flow_channel_organization': (): io.flow.channel.internal.v0.models.FlowChannelOrganization => ({
|
|
307
313
|
placeholder: factories.string(),
|
|
308
314
|
}),
|
|
@@ -311,35 +317,6 @@ const factories = {
|
|
|
311
317
|
edited_at: factories.date_time_iso_8601(),
|
|
312
318
|
}),
|
|
313
319
|
|
|
314
|
-
'io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code': (): io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode => faker.helpers.arrayElement(['placeholder_reason_code']),
|
|
315
|
-
|
|
316
|
-
'io.flow.channel.shopify.v0.models.channel_shopify_order_state': (): io.flow.channel.shopify.v0.models.ChannelShopifyOrderState => ({
|
|
317
|
-
id: factories.string(),
|
|
318
|
-
shopify_order_summary: factories['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'](),
|
|
319
|
-
status: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'](),
|
|
320
|
-
|
|
321
|
-
reasons: arrayOf(
|
|
322
|
-
() => factories['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason'](),
|
|
323
|
-
),
|
|
324
|
-
|
|
325
|
-
external_order_summary: factories['io.flow.channel.shopify.v0.models.external_order_summary'](),
|
|
326
|
-
}),
|
|
327
|
-
|
|
328
|
-
'io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason': (): io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason => ({
|
|
329
|
-
code: factories['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'](),
|
|
330
|
-
message: factories.string(),
|
|
331
|
-
}),
|
|
332
|
-
|
|
333
|
-
'io.flow.channel.shopify.v0.models.channel_shopify_order_summary': (): io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary => ({
|
|
334
|
-
order_id: factories.long(),
|
|
335
|
-
shop_id: factories.long(),
|
|
336
|
-
}),
|
|
337
|
-
|
|
338
|
-
'io.flow.channel.shopify.v0.models.external_order_summary': (): io.flow.channel.shopify.v0.models.ExternalOrderSummary => ({
|
|
339
|
-
id: factories.string(),
|
|
340
|
-
edit_ids: arrayOf(() => factories.string()),
|
|
341
|
-
}),
|
|
342
|
-
|
|
343
320
|
'io.flow.channel.v0.enums.channel_currency_capability': (): io.flow.channel.v0.enums.ChannelCurrencyCapability => faker.helpers.arrayElement(['payment_authorizations', 'settlement_currency']),
|
|
344
321
|
|
|
345
322
|
'io.flow.channel.v0.models.channel': (): io.flow.channel.v0.models.Channel => ({
|
|
@@ -762,6 +739,7 @@ const factories = {
|
|
|
762
739
|
created_at: factories.date_time_iso_8601(),
|
|
763
740
|
status: factories['io.flow.common.v0.enums.organization_status'](),
|
|
764
741
|
type: factories['io.flow.common.v0.enums.organization_type'](),
|
|
742
|
+
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
765
743
|
}),
|
|
766
744
|
|
|
767
745
|
'io.flow.common.v0.models.organization_defaults': (): io.flow.common.v0.models.OrganizationDefaults => ({
|
|
@@ -775,6 +753,7 @@ const factories = {
|
|
|
775
753
|
'io.flow.common.v0.models.organization_reference': (): io.flow.common.v0.models.OrganizationReference => ({
|
|
776
754
|
discriminator: 'organization_reference',
|
|
777
755
|
id: factories.string(),
|
|
756
|
+
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
778
757
|
}),
|
|
779
758
|
|
|
780
759
|
'io.flow.common.v0.models.organization_summary': (): io.flow.common.v0.models.OrganizationSummary => ({
|
|
@@ -1125,6 +1104,7 @@ const factories = {
|
|
|
1125
1104
|
'io.flow.product.v0.models.product_taxonomy_category': (): io.flow.product.v0.models.ProductTaxonomyCategory => ({
|
|
1126
1105
|
name: factories.string(),
|
|
1127
1106
|
full_name: factories.string(),
|
|
1107
|
+
id: factories.string(),
|
|
1128
1108
|
}),
|
|
1129
1109
|
|
|
1130
1110
|
'io.flow.product.v0.models.product_taxonomy_data': (): io.flow.product.v0.models.ProductTaxonomyData => ({
|
|
@@ -1413,6 +1393,7 @@ const factories = {
|
|
|
1413
1393
|
}),
|
|
1414
1394
|
|
|
1415
1395
|
'io.flow.shopify.external.v0.models.graphql_taxonomy_category': (): io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory => ({
|
|
1396
|
+
id: factories.string(),
|
|
1416
1397
|
name: factories.string(),
|
|
1417
1398
|
fullName: factories.string(),
|
|
1418
1399
|
}),
|
|
@@ -1534,7 +1515,7 @@ const factories = {
|
|
|
1534
1515
|
created_at: factories.date_time_iso_8601(),
|
|
1535
1516
|
updated_at: factories.date_time_iso_8601(),
|
|
1536
1517
|
has_variants_that_requires_components: factories.boolean(),
|
|
1537
|
-
category: factories['io.flow.
|
|
1518
|
+
category: factories['io.flow.shopify.external.v0.models.rest_taxonomy_category'](),
|
|
1538
1519
|
metafields: arrayOf(() => factories['io.flow.shopify.external.v0.models.product_metafield']()),
|
|
1539
1520
|
}),
|
|
1540
1521
|
|
|
@@ -1678,6 +1659,12 @@ const factories = {
|
|
|
1678
1659
|
variant: factories['io.flow.shopify.external.v0.models.product_variant'](),
|
|
1679
1660
|
}),
|
|
1680
1661
|
|
|
1662
|
+
'io.flow.shopify.external.v0.models.rest_taxonomy_category': (): io.flow.shopify.external.v0.models.RestTaxonomyCategory => ({
|
|
1663
|
+
name: factories.string(),
|
|
1664
|
+
full_name: factories.string(),
|
|
1665
|
+
admin_graphql_api_id: factories.string(),
|
|
1666
|
+
}),
|
|
1667
|
+
|
|
1681
1668
|
'io.flow.shopify.external.v0.models.shop': (): io.flow.shopify.external.v0.models.Shop => ({
|
|
1682
1669
|
id: factories.long(),
|
|
1683
1670
|
domain: factories.string(),
|
|
@@ -4499,6 +4486,21 @@ const factories = {
|
|
|
4499
4486
|
'io.flow.v0.enums.cost_estimate_source': (): io.flow.v0.enums.CostEstimateSource => faker.helpers.arrayElement(['flow', 'channel']),
|
|
4500
4487
|
'io.flow.v0.enums.country_picker_source': (): io.flow.v0.enums.CountryPickerSource => faker.helpers.arrayElement(['experience', 'destination']),
|
|
4501
4488
|
|
|
4489
|
+
'io.flow.v0.enums.cpsc_attribute': (): io.flow.v0.enums.CpscAttribute => faker.helpers.arrayElement([
|
|
4490
|
+
'certification_id',
|
|
4491
|
+
'citation_codes',
|
|
4492
|
+
'manufactured_date',
|
|
4493
|
+
'manufactured_location',
|
|
4494
|
+
'product_test_date',
|
|
4495
|
+
'test_lab_name',
|
|
4496
|
+
'point_of_contact',
|
|
4497
|
+
'certification_version',
|
|
4498
|
+
'certification_product_id',
|
|
4499
|
+
'certificate_type',
|
|
4500
|
+
'lab_type',
|
|
4501
|
+
'taxonomy_reference',
|
|
4502
|
+
]),
|
|
4503
|
+
|
|
4502
4504
|
'io.flow.v0.enums.credit_payment_error_code': (): io.flow.v0.enums.CreditPaymentErrorCode => faker.helpers.arrayElement([
|
|
4503
4505
|
'generic_error',
|
|
4504
4506
|
'invalid_order_number',
|
|
@@ -4972,6 +4974,8 @@ const factories = {
|
|
|
4972
4974
|
'cash_on_delivery',
|
|
4973
4975
|
]),
|
|
4974
4976
|
|
|
4977
|
+
'io.flow.v0.enums.order_price_coefficient_type': (): io.flow.v0.enums.OrderPriceCoefficientType => faker.helpers.arrayElement(['item_shipping']),
|
|
4978
|
+
|
|
4975
4979
|
'io.flow.v0.enums.order_price_detail_component_key': (): io.flow.v0.enums.OrderPriceDetailComponentKey => faker.helpers.arrayElement([
|
|
4976
4980
|
'adjustment',
|
|
4977
4981
|
'vat_deminimis',
|
|
@@ -5018,6 +5022,7 @@ const factories = {
|
|
|
5018
5022
|
]),
|
|
5019
5023
|
|
|
5020
5024
|
'io.flow.v0.enums.order_price_fee_type': (): io.flow.v0.enums.OrderPriceFeeType => faker.helpers.arrayElement(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product', 'mor_tax']),
|
|
5025
|
+
'io.flow.v0.enums.order_price_subsidy_type': (): io.flow.v0.enums.OrderPriceSubsidyType => faker.helpers.arrayElement(['shipping_subsidy']),
|
|
5021
5026
|
'io.flow.v0.enums.order_refund_summary_includes': (): io.flow.v0.enums.OrderRefundSummaryIncludes => faker.helpers.arrayElement(['duties', 'vat', 'shipping']),
|
|
5022
5027
|
'io.flow.v0.enums.order_refund_summary_partial_charged': (): io.flow.v0.enums.OrderRefundSummaryPartialCharged => faker.helpers.arrayElement(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']),
|
|
5023
5028
|
'io.flow.v0.enums.order_state_status': (): io.flow.v0.enums.OrderStateStatus => faker.helpers.arrayElement(['pending', 'accepted', 'rejected']),
|
|
@@ -5186,7 +5191,7 @@ const factories = {
|
|
|
5186
5191
|
'io.flow.v0.enums.price_detail_key': (): io.flow.v0.enums.PriceDetailKey => faker.helpers.arrayElement(['item_price', 'margins', 'vat', 'duty', 'rounding', 'adjustment']),
|
|
5187
5192
|
'io.flow.v0.enums.price_facet_boundary': (): io.flow.v0.enums.PriceFacetBoundary => faker.helpers.arrayElement(['min', 'max']),
|
|
5188
5193
|
'io.flow.v0.enums.pricing_levy_setting': (): io.flow.v0.enums.PricingLevySetting => faker.helpers.arrayElement(['included', 'displayed', 'ignored']),
|
|
5189
|
-
'io.flow.v0.enums.pricing_type': (): io.flow.v0.enums.PricingType => faker.helpers.arrayElement(['inclusive_pricing']),
|
|
5194
|
+
'io.flow.v0.enums.pricing_type': (): io.flow.v0.enums.PricingType => faker.helpers.arrayElement(['inclusive_pricing', 'inclusive_pricing_with_shipping']),
|
|
5190
5195
|
'io.flow.v0.enums.promotion_trigger_type': (): io.flow.v0.enums.PromotionTriggerType => faker.helpers.arrayElement(['automatic', 'order_subtotal']),
|
|
5191
5196
|
|
|
5192
5197
|
'io.flow.v0.enums.province_type': (): io.flow.v0.enums.ProvinceType => faker.helpers.arrayElement([
|
|
@@ -5233,6 +5238,8 @@ const factories = {
|
|
|
5233
5238
|
'io.flow.v0.enums.refund_status': (): io.flow.v0.enums.RefundStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed', 'canceled']),
|
|
5234
5239
|
'io.flow.v0.enums.region_type': (): io.flow.v0.enums.RegionType => faker.helpers.arrayElement(['state', 'province', 'jurisdiction']),
|
|
5235
5240
|
'io.flow.v0.enums.restricted_review_status': (): io.flow.v0.enums.RestrictedReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
|
|
5241
|
+
'io.flow.v0.enums.restriction_decision': (): io.flow.v0.enums.RestrictionDecision => faker.helpers.arrayElement(['accept', 'reject', 'escalate', 'review']),
|
|
5242
|
+
'io.flow.v0.enums.restriction_decision_reason': (): io.flow.v0.enums.RestrictionDecisionReason => faker.helpers.arrayElement(['manual_dispute', 'operations_decision']),
|
|
5236
5243
|
'io.flow.v0.enums.restriction_environment': (): io.flow.v0.enums.RestrictionEnvironment => faker.helpers.arrayElement(['sandbox', 'production', 'qa']),
|
|
5237
5244
|
'io.flow.v0.enums.return_item_status': (): io.flow.v0.enums.ReturnItemStatus => faker.helpers.arrayElement(['returnable', 'non-returnable']),
|
|
5238
5245
|
'io.flow.v0.enums.return_policy_state': (): io.flow.v0.enums.ReturnPolicyState => faker.helpers.arrayElement(['current', 'deleting', 'updating']),
|
|
@@ -5325,7 +5332,7 @@ const factories = {
|
|
|
5325
5332
|
'io.flow.v0.enums.shopify_sync_check': (): io.flow.v0.enums.ShopifySyncCheck => faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']),
|
|
5326
5333
|
'io.flow.v0.enums.sort_direction': (): io.flow.v0.enums.SortDirection => faker.helpers.arrayElement(['ascending', 'descending']),
|
|
5327
5334
|
'io.flow.v0.enums.statement_attachment_type': (): io.flow.v0.enums.StatementAttachmentType => faker.helpers.arrayElement(['csv', 'pdf']),
|
|
5328
|
-
'io.flow.v0.enums.statement_status_code': (): io.flow.v0.enums.StatementStatusCode => faker.helpers.arrayElement(['scheduled', 'sent', 'failed']),
|
|
5335
|
+
'io.flow.v0.enums.statement_status_code': (): io.flow.v0.enums.StatementStatusCode => faker.helpers.arrayElement(['scheduled', 'sent', 'failed', 'paid']),
|
|
5329
5336
|
'io.flow.v0.enums.stored_method_usage_step': (): io.flow.v0.enums.StoredMethodUsageStep => faker.helpers.arrayElement(['initial', 'subsequent']),
|
|
5330
5337
|
'io.flow.v0.enums.strategy': (): io.flow.v0.enums.Strategy => faker.helpers.arrayElement(['range', 'from', 'to']),
|
|
5331
5338
|
'io.flow.v0.enums.subcatalog_item_status': (): io.flow.v0.enums.SubcatalogItemStatus => faker.helpers.arrayElement(['excluded', 'included', 'restricted']),
|
|
@@ -5419,6 +5426,7 @@ const factories = {
|
|
|
5419
5426
|
'us_inbound_tax_refund',
|
|
5420
5427
|
'order_cancellation_above_de_min',
|
|
5421
5428
|
'wyol_shipment_above_de_min',
|
|
5429
|
+
'wyol_shipment_lvg',
|
|
5422
5430
|
'full_refund_without_shipment',
|
|
5423
5431
|
'unfulfilled_order_above_de_min',
|
|
5424
5432
|
'order_cancellation_without_capture',
|
|
@@ -5495,6 +5503,7 @@ const factories = {
|
|
|
5495
5503
|
'b2b_fee_mor_tax',
|
|
5496
5504
|
'b2b_fee_shipping_tax',
|
|
5497
5505
|
'flat_rate_label',
|
|
5506
|
+
'flat_rate_label_subsidy',
|
|
5498
5507
|
]),
|
|
5499
5508
|
|
|
5500
5509
|
'io.flow.v0.enums.transfer_status': (): io.flow.v0.enums.TransferStatus => faker.helpers.arrayElement(['succeeded', 'canceled']),
|
|
@@ -6350,6 +6359,42 @@ const factories = {
|
|
|
6350
6359
|
b2b_credit_memo: factories['io.flow.v0.models.b2b_credit_memo'](),
|
|
6351
6360
|
}),
|
|
6352
6361
|
|
|
6362
|
+
'io.flow.v0.models.b2b_credit_note': (): io.flow.v0.models.B2BCreditNote => ({
|
|
6363
|
+
id: factories.string(),
|
|
6364
|
+
number: factories.string(),
|
|
6365
|
+
status: factories['io.flow.v0.enums.consumer_invoice_status'](),
|
|
6366
|
+
date: factories.date_time_iso_8601(),
|
|
6367
|
+
key: factories.string(),
|
|
6368
|
+
debit_note: factories['io.flow.v0.models.b2b_debit_note_reference'](),
|
|
6369
|
+
order: factories['io.flow.v0.models.consumer_invoice_order_summary'](),
|
|
6370
|
+
center: factories['io.flow.v0.models.consumer_invoice_center_reference'](),
|
|
6371
|
+
lines: arrayOf(() => factories['io.flow.v0.unions.consumer_invoice_line']()),
|
|
6372
|
+
documents: arrayOf(() => factories['io.flow.v0.models.consumer_invoice_document']()),
|
|
6373
|
+
attributes: objectOf(() => factories.string()),
|
|
6374
|
+
voids_b2b_debit_note: factories.boolean(),
|
|
6375
|
+
}),
|
|
6376
|
+
|
|
6377
|
+
'io.flow.v0.models.b2b_debit_note': (): io.flow.v0.models.B2BDebitNote => ({
|
|
6378
|
+
id: factories.string(),
|
|
6379
|
+
number: factories.string(),
|
|
6380
|
+
buyer: factories['io.flow.v0.models.merchant_of_record_entity'](),
|
|
6381
|
+
seller: factories['io.flow.v0.models.merchant_of_record_entity'](),
|
|
6382
|
+
status: factories['io.flow.v0.enums.consumer_invoice_status'](),
|
|
6383
|
+
date: factories.date_time_iso_8601(),
|
|
6384
|
+
key: factories.string(),
|
|
6385
|
+
order: factories['io.flow.v0.models.consumer_invoice_order_summary'](),
|
|
6386
|
+
center: factories['io.flow.v0.models.consumer_invoice_center_reference'](),
|
|
6387
|
+
lines: arrayOf(() => factories['io.flow.v0.unions.consumer_invoice_line']()),
|
|
6388
|
+
documents: arrayOf(() => factories['io.flow.v0.models.consumer_invoice_document']()),
|
|
6389
|
+
attributes: objectOf(() => factories.string()),
|
|
6390
|
+
}),
|
|
6391
|
+
|
|
6392
|
+
'io.flow.v0.models.b2b_debit_note_reference': (): io.flow.v0.models.B2BDebitNoteReference => ({
|
|
6393
|
+
id: factories.string(),
|
|
6394
|
+
key: factories.string(),
|
|
6395
|
+
number: factories.string(),
|
|
6396
|
+
}),
|
|
6397
|
+
|
|
6353
6398
|
'io.flow.v0.models.b2b_invoice': (): io.flow.v0.models.B2BInvoice => ({
|
|
6354
6399
|
id: factories.string(),
|
|
6355
6400
|
number: factories.string(),
|
|
@@ -6431,13 +6476,9 @@ const factories = {
|
|
|
6431
6476
|
'io.flow.v0.models.bank_account_info_kor': (): io.flow.v0.models.BankAccountInfoKor => ({
|
|
6432
6477
|
discriminator: 'kor',
|
|
6433
6478
|
name: factories.string(),
|
|
6434
|
-
address: factories['io.flow.v0.models.address'](),
|
|
6435
|
-
phone: factories.string(),
|
|
6436
|
-
email: factories.string(),
|
|
6437
6479
|
bank_account_number: factories.string(),
|
|
6438
6480
|
bank_routing_number: factories.string(),
|
|
6439
6481
|
bank_name: factories.string(),
|
|
6440
|
-
bank_address: factories['io.flow.v0.models.address'](),
|
|
6441
6482
|
}),
|
|
6442
6483
|
|
|
6443
6484
|
'io.flow.v0.models.bank_account_info_kor_v2': (): io.flow.v0.models.BankAccountInfoKorV2 => ({
|
|
@@ -7178,7 +7219,7 @@ const factories = {
|
|
|
7178
7219
|
shopify_order_summary: factories['io.flow.v0.models.channel_shopify_order_summary'](),
|
|
7179
7220
|
status: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'](),
|
|
7180
7221
|
reasons: arrayOf(() => factories['io.flow.v0.models.channel_shopify_order_state_reason']()),
|
|
7181
|
-
external_order_summary: factories['io.flow.v0.models.external_order_summary'](),
|
|
7222
|
+
external_order_summary: factories['io.flow.channel.internal.v0.models.external_order_summary'](),
|
|
7182
7223
|
}),
|
|
7183
7224
|
|
|
7184
7225
|
'io.flow.v0.models.channel_shopify_order_state_deleted': (): io.flow.v0.models.ChannelShopifyOrderStateDeleted => ({
|
|
@@ -7214,6 +7255,7 @@ const factories = {
|
|
|
7214
7255
|
settlement: factories['io.flow.v0.unions.settlement'](),
|
|
7215
7256
|
attachments: arrayOf(() => factories['io.flow.v0.models.attachment']()),
|
|
7216
7257
|
created_at: factories.date_time_iso_8601(),
|
|
7258
|
+
period: factories['io.flow.v0.models.datetime_range'](),
|
|
7217
7259
|
}),
|
|
7218
7260
|
|
|
7219
7261
|
'io.flow.v0.models.channel_statement_deleted': (): io.flow.v0.models.ChannelStatementDeleted => ({
|
|
@@ -8837,11 +8879,6 @@ const factories = {
|
|
|
8837
8879
|
type: factories['io.flow.v0.enums.card_type'](),
|
|
8838
8880
|
}),
|
|
8839
8881
|
|
|
8840
|
-
'io.flow.v0.models.external_order_summary': (): io.flow.v0.models.ExternalOrderSummary => ({
|
|
8841
|
-
id: factories.string(),
|
|
8842
|
-
edit_ids: arrayOf(() => factories.string()),
|
|
8843
|
-
}),
|
|
8844
|
-
|
|
8845
8882
|
'io.flow.v0.models.fee_deduction': (): io.flow.v0.models.FeeDeduction => ({
|
|
8846
8883
|
type: factories['io.flow.v0.enums.fee_deduction_type'](),
|
|
8847
8884
|
amount: factories.decimal(),
|
|
@@ -10099,6 +10136,7 @@ const factories = {
|
|
|
10099
10136
|
'io.flow.v0.models.lane_summary': (): io.flow.v0.models.LaneSummary => ({
|
|
10100
10137
|
id: factories.string(),
|
|
10101
10138
|
ratecard: factories['io.flow.v0.models.ratecard_summary'](),
|
|
10139
|
+
dim_factor: factories.decimal(),
|
|
10102
10140
|
}),
|
|
10103
10141
|
|
|
10104
10142
|
'io.flow.v0.models.language': (): io.flow.v0.models.Language => ({
|
|
@@ -11054,6 +11092,12 @@ const factories = {
|
|
|
11054
11092
|
order_placed: factories['io.flow.v0.models.order_placed_details'](),
|
|
11055
11093
|
}),
|
|
11056
11094
|
|
|
11095
|
+
'io.flow.v0.models.order_price_coefficient': (): io.flow.v0.models.OrderPriceCoefficient => ({
|
|
11096
|
+
type: factories['io.flow.v0.enums.order_price_coefficient_type'](),
|
|
11097
|
+
value: factories.decimal(),
|
|
11098
|
+
price: factories['io.flow.v0.models.price_with_base'](),
|
|
11099
|
+
}),
|
|
11100
|
+
|
|
11057
11101
|
'io.flow.v0.models.order_price_detail': (): io.flow.v0.models.OrderPriceDetail => ({
|
|
11058
11102
|
key: factories['io.flow.v0.enums.order_price_detail_key'](),
|
|
11059
11103
|
currency: factories.string(),
|
|
@@ -11088,6 +11132,11 @@ const factories = {
|
|
|
11088
11132
|
type: factories['io.flow.v0.enums.order_price_fee_type'](),
|
|
11089
11133
|
}),
|
|
11090
11134
|
|
|
11135
|
+
'io.flow.v0.models.order_price_subsidy': (): io.flow.v0.models.OrderPriceSubsidy => ({
|
|
11136
|
+
type: factories['io.flow.v0.enums.order_price_subsidy_type'](),
|
|
11137
|
+
price: factories['io.flow.v0.models.price_with_base'](),
|
|
11138
|
+
}),
|
|
11139
|
+
|
|
11091
11140
|
'io.flow.v0.models.order_promotion_trigger': (): io.flow.v0.models.OrderPromotionTrigger => ({
|
|
11092
11141
|
type: factories['io.flow.v0.enums.promotion_trigger_type'](),
|
|
11093
11142
|
min: factories['io.flow.v0.models.price'](),
|
|
@@ -11231,6 +11280,11 @@ const factories = {
|
|
|
11231
11280
|
deactivated_at: factories.date_time_iso_8601(),
|
|
11232
11281
|
}),
|
|
11233
11282
|
|
|
11283
|
+
'io.flow.v0.models.order_state_rejection_reason_payment_fraud': (): io.flow.v0.models.OrderStateRejectionReasonPaymentFraud => ({
|
|
11284
|
+
discriminator: 'order_state_rejection_reason_payment_fraud',
|
|
11285
|
+
payment_request_id: factories.string(),
|
|
11286
|
+
}),
|
|
11287
|
+
|
|
11234
11288
|
'io.flow.v0.models.order_state_rejection_reason_restricted_item': (): io.flow.v0.models.OrderStateRejectionReasonRestrictedItem => ({
|
|
11235
11289
|
discriminator: 'order_state_rejection_reason_restricted_item',
|
|
11236
11290
|
item_numbers: arrayOf(() => factories.string()),
|
|
@@ -11343,6 +11397,7 @@ const factories = {
|
|
|
11343
11397
|
created_at: factories.date_time_iso_8601(),
|
|
11344
11398
|
status: factories['io.flow.v0.enums.organization_status'](),
|
|
11345
11399
|
type: factories['io.flow.v0.enums.organization_type'](),
|
|
11400
|
+
channel: factories['io.flow.v0.models.channel_reference'](),
|
|
11346
11401
|
}),
|
|
11347
11402
|
|
|
11348
11403
|
'io.flow.v0.models.organization_authorization': (): io.flow.v0.models.OrganizationAuthorization => ({
|
|
@@ -11503,6 +11558,7 @@ const factories = {
|
|
|
11503
11558
|
'io.flow.v0.models.organization_reference': (): io.flow.v0.models.OrganizationReference => ({
|
|
11504
11559
|
discriminator: 'organization_reference',
|
|
11505
11560
|
id: factories.string(),
|
|
11561
|
+
channel: factories['io.flow.v0.models.channel_reference'](),
|
|
11506
11562
|
}),
|
|
11507
11563
|
|
|
11508
11564
|
'io.flow.v0.models.organization_session': (): io.flow.v0.models.OrganizationSession => ({
|
|
@@ -11546,6 +11602,7 @@ const factories = {
|
|
|
11546
11602
|
province: factories.string(),
|
|
11547
11603
|
self_billing_agreement_effective_at: factories.date_time_iso_8601(),
|
|
11548
11604
|
self_billing_agreement_expires_at: factories.date_time_iso_8601(),
|
|
11605
|
+
legal_name: factories.string(),
|
|
11549
11606
|
}),
|
|
11550
11607
|
|
|
11551
11608
|
'io.flow.v0.models.organization_token': (): io.flow.v0.models.OrganizationToken => ({
|
|
@@ -12486,6 +12543,11 @@ const factories = {
|
|
|
12486
12543
|
reason: factories['io.flow.v0.enums.payout_status_failure_code'](),
|
|
12487
12544
|
}),
|
|
12488
12545
|
|
|
12546
|
+
'io.flow.v0.models.payout_status_paid': (): io.flow.v0.models.PayoutStatusPaid => ({
|
|
12547
|
+
code: 'paid',
|
|
12548
|
+
timestamp: factories.date_time_iso_8601(),
|
|
12549
|
+
}),
|
|
12550
|
+
|
|
12489
12551
|
'io.flow.v0.models.payout_status_scheduled': (): io.flow.v0.models.PayoutStatusScheduled => ({
|
|
12490
12552
|
code: 'scheduled',
|
|
12491
12553
|
placeholder: factories.string(),
|
|
@@ -12954,6 +13016,7 @@ const factories = {
|
|
|
12954
13016
|
'io.flow.v0.models.product_taxonomy_category': (): io.flow.v0.models.ProductTaxonomyCategory => ({
|
|
12955
13017
|
name: factories.string(),
|
|
12956
13018
|
full_name: factories.string(),
|
|
13019
|
+
id: factories.string(),
|
|
12957
13020
|
}),
|
|
12958
13021
|
|
|
12959
13022
|
'io.flow.v0.models.product_taxonomy_data': (): io.flow.v0.models.ProductTaxonomyData => ({
|
|
@@ -13008,6 +13071,8 @@ const factories = {
|
|
|
13008
13071
|
total_price: factories['io.flow.v0.models.price_with_base'](),
|
|
13009
13072
|
product_price: factories['io.flow.v0.models.price_with_base'](),
|
|
13010
13073
|
fees: arrayOf(() => factories['io.flow.v0.models.order_price_fee']()),
|
|
13074
|
+
coefficients: arrayOf(() => factories['io.flow.v0.models.order_price_coefficient']()),
|
|
13075
|
+
subsidies: arrayOf(() => factories['io.flow.v0.models.order_price_subsidy']()),
|
|
13011
13076
|
}),
|
|
13012
13077
|
|
|
13013
13078
|
'io.flow.v0.models.query': (): io.flow.v0.models.Query => ({
|
|
@@ -13171,6 +13236,7 @@ const factories = {
|
|
|
13171
13236
|
glbe_shipping_method_id: factories.string(),
|
|
13172
13237
|
glbe_proposition_name: factories.string(),
|
|
13173
13238
|
channel_revenue_share_percentage: factories.decimal(),
|
|
13239
|
+
channel_id: factories.string(),
|
|
13174
13240
|
}),
|
|
13175
13241
|
|
|
13176
13242
|
'io.flow.v0.models.ratecard_carrier_summary': (): io.flow.v0.models.RatecardCarrierSummary => ({
|
|
@@ -13281,6 +13347,7 @@ const factories = {
|
|
|
13281
13347
|
glbe_shipping_method_id: factories.string(),
|
|
13282
13348
|
glbe_proposition_name: factories.string(),
|
|
13283
13349
|
channel_revenue_share_percentage: factories.decimal(),
|
|
13350
|
+
channel_id: factories.string(),
|
|
13284
13351
|
data: factories['io.flow.v0.models.ratecard_data'](),
|
|
13285
13352
|
}),
|
|
13286
13353
|
|
|
@@ -13324,20 +13391,6 @@ const factories = {
|
|
|
13324
13391
|
distance_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
13325
13392
|
}),
|
|
13326
13393
|
|
|
13327
|
-
'io.flow.v0.models.ratecard_lane_import_form': (): io.flow.v0.models.RatecardLaneImportForm => ({
|
|
13328
|
-
ratecard_owner: factories['io.flow.v0.enums.ratecard_owner'](),
|
|
13329
|
-
service: factories.string(),
|
|
13330
|
-
currency: factories.string(),
|
|
13331
|
-
delivered_duty: factories['io.flow.v0.enums.delivered_duty'](),
|
|
13332
|
-
origin: factories['io.flow.v0.models.zone'](),
|
|
13333
|
-
destination: factories['io.flow.v0.models.zone'](),
|
|
13334
|
-
shipment_window: factories['io.flow.v0.models.shipment_window'](),
|
|
13335
|
-
dim_factor: factories.decimal(),
|
|
13336
|
-
weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
13337
|
-
distance_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
13338
|
-
rates: arrayOf(() => factories['io.flow.v0.models.ratecard_rate_form']()),
|
|
13339
|
-
}),
|
|
13340
|
-
|
|
13341
13394
|
'io.flow.v0.models.ratecard_lane_upserted': (): io.flow.v0.models.RatecardLaneUpserted => ({
|
|
13342
13395
|
discriminator: 'ratecard_lane_upserted',
|
|
13343
13396
|
event_id: factories.string(),
|
|
@@ -13353,14 +13406,7 @@ const factories = {
|
|
|
13353
13406
|
ratecard_lane: factories['io.flow.v0.models.ratecard_lane'](),
|
|
13354
13407
|
}),
|
|
13355
13408
|
|
|
13356
|
-
'io.flow.v0.models.ratecard_lanes_import_request_data': (): io.flow.v0.models.RatecardLanesImportRequestData => ({
|
|
13357
|
-
id: factories.string(),
|
|
13358
|
-
source_url: factories.string(),
|
|
13359
|
-
filename: factories.string(),
|
|
13360
|
-
}),
|
|
13361
|
-
|
|
13362
13409
|
'io.flow.v0.models.ratecard_rate': (): io.flow.v0.models.RatecardRate => ({
|
|
13363
|
-
id: factories.string(),
|
|
13364
13410
|
amount: factories.double(),
|
|
13365
13411
|
weight: factories.double(),
|
|
13366
13412
|
}),
|
|
@@ -13370,13 +13416,6 @@ const factories = {
|
|
|
13370
13416
|
weight: factories.double(),
|
|
13371
13417
|
}),
|
|
13372
13418
|
|
|
13373
|
-
'io.flow.v0.models.ratecard_rate_version': (): io.flow.v0.models.RatecardRateVersion => ({
|
|
13374
|
-
id: factories.string(),
|
|
13375
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13376
|
-
type: factories['io.flow.v0.enums.change_type'](),
|
|
13377
|
-
ratecard_rate: factories['io.flow.v0.models.ratecard_rate'](),
|
|
13378
|
-
}),
|
|
13379
|
-
|
|
13380
13419
|
'io.flow.v0.models.ratecard_reference': (): io.flow.v0.models.RatecardReference => ({
|
|
13381
13420
|
id: factories.string(),
|
|
13382
13421
|
}),
|
|
@@ -13656,6 +13695,18 @@ const factories = {
|
|
|
13656
13695
|
days_of_week: arrayOf(() => factories['io.flow.v0.enums.day_of_week']()),
|
|
13657
13696
|
}),
|
|
13658
13697
|
|
|
13698
|
+
'io.flow.v0.models.restriction_decisions_form': (): io.flow.v0.models.RestrictionDecisionsForm => ({
|
|
13699
|
+
organization_id: factories.string(),
|
|
13700
|
+
rule_decisions: arrayOf(() => factories['io.flow.v0.models.restriction_rule_decision_form']()),
|
|
13701
|
+
}),
|
|
13702
|
+
|
|
13703
|
+
'io.flow.v0.models.restriction_rule_decision_form': (): io.flow.v0.models.RestrictionRuleDecisionForm => ({
|
|
13704
|
+
product_id: factories.string(),
|
|
13705
|
+
reason_code: factories.string(),
|
|
13706
|
+
decision: factories['io.flow.v0.enums.restriction_decision'](),
|
|
13707
|
+
decision_reason: factories['io.flow.v0.enums.restriction_decision_reason'](),
|
|
13708
|
+
}),
|
|
13709
|
+
|
|
13659
13710
|
'io.flow.v0.models.return': (): io.flow.v0.models.Return => ({
|
|
13660
13711
|
id: factories.string(),
|
|
13661
13712
|
key: factories.string(),
|
|
@@ -13964,6 +14015,7 @@ const factories = {
|
|
|
13964
14015
|
price: factories['io.flow.v0.models.money'](),
|
|
13965
14016
|
description: factories.string(),
|
|
13966
14017
|
taxonomy_category: factories['io.flow.v0.models.product_taxonomy_category'](),
|
|
14018
|
+
inferred_taxonomy_category: factories['io.flow.v0.models.product_taxonomy_category'](),
|
|
13967
14019
|
mode: factories['io.flow.v0.enums.sellability_screening_mode'](),
|
|
13968
14020
|
catalog_size: factories.integer(),
|
|
13969
14021
|
relative_ranking: factories.decimal(),
|
|
@@ -14266,6 +14318,7 @@ const factories = {
|
|
|
14266
14318
|
id: factories.string(),
|
|
14267
14319
|
ratecard: factories['io.flow.v0.models.shipping_label_ratecard_summary'](),
|
|
14268
14320
|
weight_break: factories.decimal(),
|
|
14321
|
+
dim_factor: factories.decimal(),
|
|
14269
14322
|
}),
|
|
14270
14323
|
|
|
14271
14324
|
'io.flow.v0.models.shipping_label_package': (): io.flow.v0.models.ShippingLabelPackage => ({
|
|
@@ -14803,6 +14856,7 @@ const factories = {
|
|
|
14803
14856
|
settlement: factories['io.flow.v0.unions.settlement'](),
|
|
14804
14857
|
attachments: arrayOf(() => factories['io.flow.v0.models.attachment']()),
|
|
14805
14858
|
created_at: factories.date_time_iso_8601(),
|
|
14859
|
+
period: factories['io.flow.v0.models.datetime_range'](),
|
|
14806
14860
|
}),
|
|
14807
14861
|
|
|
14808
14862
|
'io.flow.v0.models.statement_deleted': (): io.flow.v0.models.StatementDeleted => ({
|
|
@@ -15131,6 +15185,7 @@ const factories = {
|
|
|
15131
15185
|
country: factories.string(),
|
|
15132
15186
|
tax_code: factories.string(),
|
|
15133
15187
|
province: factories.string(),
|
|
15188
|
+
legal_name: factories.string(),
|
|
15134
15189
|
}),
|
|
15135
15190
|
|
|
15136
15191
|
'io.flow.v0.models.tax_registration_form': (): io.flow.v0.models.TaxRegistrationForm => ({
|
|
@@ -15634,6 +15689,7 @@ const factories = {
|
|
|
15634
15689
|
request_method: factories['io.flow.v0.enums.label_request_method'](),
|
|
15635
15690
|
carrier: factories['io.flow.v0.models.transaction_metadata_shipping_label_carrier'](),
|
|
15636
15691
|
revenue_share_percentage: factories.decimal(),
|
|
15692
|
+
actual: factories['io.flow.v0.models.transaction_metadata_trueup_data'](),
|
|
15637
15693
|
}),
|
|
15638
15694
|
|
|
15639
15695
|
'io.flow.v0.models.transaction_metadata_shipping_label_carrier': (): io.flow.v0.models.TransactionMetadataShippingLabelCarrier => ({
|
|
@@ -16799,6 +16855,7 @@ const factories = {
|
|
|
16799
16855
|
() => factories['io.flow.v0.models.order_state_rejection_reason_domestic_order'](),
|
|
16800
16856
|
() => factories['io.flow.v0.models.order_state_rejection_reason_items_empty'](),
|
|
16801
16857
|
() => factories['io.flow.v0.models.order_state_rejection_reason_organization_deactivated'](),
|
|
16858
|
+
() => factories['io.flow.v0.models.order_state_rejection_reason_payment_fraud'](),
|
|
16802
16859
|
]);
|
|
16803
16860
|
|
|
16804
16861
|
return f();
|
|
@@ -16985,6 +17042,7 @@ const factories = {
|
|
|
16985
17042
|
() => factories['io.flow.v0.models.payout_status_scheduled'](),
|
|
16986
17043
|
() => factories['io.flow.v0.models.payout_status_sent'](),
|
|
16987
17044
|
() => factories['io.flow.v0.models.payout_status_failed'](),
|
|
17045
|
+
() => factories['io.flow.v0.models.payout_status_paid'](),
|
|
16988
17046
|
]);
|
|
16989
17047
|
|
|
16990
17048
|
return f();
|
|
@@ -17435,6 +17493,9 @@ export const makeAvsCode = () => factories['io.flow.v0.enums.avs_code']();
|
|
|
17435
17493
|
export const makeB2BCreditMemo = () => factories['io.flow.v0.models.b2b_credit_memo']();
|
|
17436
17494
|
export const makeB2BCreditMemoDeleted = () => factories['io.flow.v0.models.b2b_credit_memo_deleted']();
|
|
17437
17495
|
export const makeB2BCreditMemoUpserted = () => factories['io.flow.v0.models.b2b_credit_memo_upserted']();
|
|
17496
|
+
export const makeB2BCreditNote = () => factories['io.flow.v0.models.b2b_credit_note']();
|
|
17497
|
+
export const makeB2BDebitNote = () => factories['io.flow.v0.models.b2b_debit_note']();
|
|
17498
|
+
export const makeB2BDebitNoteReference = () => factories['io.flow.v0.models.b2b_debit_note_reference']();
|
|
17438
17499
|
export const makeB2BInvoice = () => factories['io.flow.v0.models.b2b_invoice']();
|
|
17439
17500
|
export const makeB2BInvoiceDeleted = () => factories['io.flow.v0.models.b2b_invoice_deleted']();
|
|
17440
17501
|
export const makeB2BInvoiceReference = () => factories['io.flow.v0.models.b2b_invoice_reference']();
|
|
@@ -17641,6 +17702,7 @@ export const makeCountryPickerSource = () => factories['io.flow.v0.enums.country
|
|
|
17641
17702
|
export const makeCountryShippingPricing = () => factories['io.flow.v0.models.country_shipping_pricing']();
|
|
17642
17703
|
export const makeCountryStatus = () => factories['io.flow.v0.models.country_status']();
|
|
17643
17704
|
export const makeCountryStatusForm = () => factories['io.flow.v0.models.country_status_form']();
|
|
17705
|
+
export const makeCpscAttribute = () => factories['io.flow.v0.enums.cpsc_attribute']();
|
|
17644
17706
|
export const makeCreditMemo = () => factories['io.flow.v0.models.credit_memo']();
|
|
17645
17707
|
export const makeCreditMemoDeleted = () => factories['io.flow.v0.models.credit_memo_deleted']();
|
|
17646
17708
|
export const makeCreditMemoForm = () => factories['io.flow.v0.models.credit_memo_form']();
|
|
@@ -17859,7 +17921,6 @@ export const makeExportType = () => factories['io.flow.v0.unions.export_type']()
|
|
|
17859
17921
|
export const makeExportVersion = () => factories['io.flow.v0.models.export_version']();
|
|
17860
17922
|
export const makeExporterOfRecord = () => factories['io.flow.v0.enums.exporter_of_record']();
|
|
17861
17923
|
export const makeExternalCard = () => factories['io.flow.v0.models.external_card']();
|
|
17862
|
-
export const makeExternalOrderSummary = () => factories['io.flow.v0.models.external_order_summary']();
|
|
17863
17924
|
export const makeFeeDeduction = () => factories['io.flow.v0.models.fee_deduction']();
|
|
17864
17925
|
export const makeFeeDeductionType = () => factories['io.flow.v0.enums.fee_deduction_type']();
|
|
17865
17926
|
export const makeFeeInvoice = () => factories['io.flow.v0.models.fee_invoice']();
|
|
@@ -18241,6 +18302,8 @@ export const makeOrderPaymentType = () => factories['io.flow.v0.enums.order_paym
|
|
|
18241
18302
|
export const makeOrderPlaced = () => factories['io.flow.v0.models.order_placed']();
|
|
18242
18303
|
export const makeOrderPlacedDetails = () => factories['io.flow.v0.models.order_placed_details']();
|
|
18243
18304
|
export const makeOrderPlacedV2 = () => factories['io.flow.v0.models.order_placed_v2']();
|
|
18305
|
+
export const makeOrderPriceCoefficient = () => factories['io.flow.v0.models.order_price_coefficient']();
|
|
18306
|
+
export const makeOrderPriceCoefficientType = () => factories['io.flow.v0.enums.order_price_coefficient_type']();
|
|
18244
18307
|
export const makeOrderPriceDetail = () => factories['io.flow.v0.models.order_price_detail']();
|
|
18245
18308
|
export const makeOrderPriceDetailBreakdown = () => factories['io.flow.v0.models.order_price_detail_breakdown']();
|
|
18246
18309
|
export const makeOrderPriceDetailComponent = () => factories['io.flow.v0.models.order_price_detail_component']();
|
|
@@ -18248,6 +18311,8 @@ export const makeOrderPriceDetailComponentKey = () => factories['io.flow.v0.enum
|
|
|
18248
18311
|
export const makeOrderPriceDetailKey = () => factories['io.flow.v0.enums.order_price_detail_key']();
|
|
18249
18312
|
export const makeOrderPriceFee = () => factories['io.flow.v0.models.order_price_fee']();
|
|
18250
18313
|
export const makeOrderPriceFeeType = () => factories['io.flow.v0.enums.order_price_fee_type']();
|
|
18314
|
+
export const makeOrderPriceSubsidy = () => factories['io.flow.v0.models.order_price_subsidy']();
|
|
18315
|
+
export const makeOrderPriceSubsidyType = () => factories['io.flow.v0.enums.order_price_subsidy_type']();
|
|
18251
18316
|
export const makeOrderPromotion = () => factories['io.flow.v0.unions.order_promotion']();
|
|
18252
18317
|
export const makeOrderPromotionForm = () => factories['io.flow.v0.unions.order_promotion_form']();
|
|
18253
18318
|
export const makeOrderPromotionTrigger = () => factories['io.flow.v0.models.order_promotion_trigger']();
|
|
@@ -18276,6 +18341,7 @@ export const makeOrderStateRejectionReason = () => factories['io.flow.v0.unions.
|
|
|
18276
18341
|
export const makeOrderStateRejectionReasonDomesticOrder = () => factories['io.flow.v0.models.order_state_rejection_reason_domestic_order']();
|
|
18277
18342
|
export const makeOrderStateRejectionReasonItemsEmpty = () => factories['io.flow.v0.models.order_state_rejection_reason_items_empty']();
|
|
18278
18343
|
export const makeOrderStateRejectionReasonOrganizationDeactivated = () => factories['io.flow.v0.models.order_state_rejection_reason_organization_deactivated']();
|
|
18344
|
+
export const makeOrderStateRejectionReasonPaymentFraud = () => factories['io.flow.v0.models.order_state_rejection_reason_payment_fraud']();
|
|
18279
18345
|
export const makeOrderStateRejectionReasonRestrictedItem = () => factories['io.flow.v0.models.order_state_rejection_reason_restricted_item']();
|
|
18280
18346
|
export const makeOrderStateStatus = () => factories['io.flow.v0.enums.order_state_status']();
|
|
18281
18347
|
export const makeOrderStateUpserted = () => factories['io.flow.v0.models.order_state_upserted']();
|
|
@@ -18503,6 +18569,7 @@ export const makePayoutReference = () => factories['io.flow.v0.models.payout_ref
|
|
|
18503
18569
|
export const makePayoutStatus = () => factories['io.flow.v0.unions.payout_status']();
|
|
18504
18570
|
export const makePayoutStatusFailed = () => factories['io.flow.v0.models.payout_status_failed']();
|
|
18505
18571
|
export const makePayoutStatusFailureCode = () => factories['io.flow.v0.enums.payout_status_failure_code']();
|
|
18572
|
+
export const makePayoutStatusPaid = () => factories['io.flow.v0.models.payout_status_paid']();
|
|
18506
18573
|
export const makePayoutStatusScheduled = () => factories['io.flow.v0.models.payout_status_scheduled']();
|
|
18507
18574
|
export const makePayoutStatusSent = () => factories['io.flow.v0.models.payout_status_sent']();
|
|
18508
18575
|
export const makePayoutTransaction = () => factories['io.flow.v0.models.payout_transaction']();
|
|
@@ -18629,14 +18696,11 @@ export const makeRatecardForm = () => factories['io.flow.v0.models.ratecard_form
|
|
|
18629
18696
|
export const makeRatecardLane = () => factories['io.flow.v0.models.ratecard_lane']();
|
|
18630
18697
|
export const makeRatecardLaneDeleted = () => factories['io.flow.v0.models.ratecard_lane_deleted']();
|
|
18631
18698
|
export const makeRatecardLaneForm = () => factories['io.flow.v0.models.ratecard_lane_form']();
|
|
18632
|
-
export const makeRatecardLaneImportForm = () => factories['io.flow.v0.models.ratecard_lane_import_form']();
|
|
18633
18699
|
export const makeRatecardLaneUpserted = () => factories['io.flow.v0.models.ratecard_lane_upserted']();
|
|
18634
18700
|
export const makeRatecardLaneVersion = () => factories['io.flow.v0.models.ratecard_lane_version']();
|
|
18635
|
-
export const makeRatecardLanesImportRequestData = () => factories['io.flow.v0.models.ratecard_lanes_import_request_data']();
|
|
18636
18701
|
export const makeRatecardOwner = () => factories['io.flow.v0.enums.ratecard_owner']();
|
|
18637
18702
|
export const makeRatecardRate = () => factories['io.flow.v0.models.ratecard_rate']();
|
|
18638
18703
|
export const makeRatecardRateForm = () => factories['io.flow.v0.models.ratecard_rate_form']();
|
|
18639
|
-
export const makeRatecardRateVersion = () => factories['io.flow.v0.models.ratecard_rate_version']();
|
|
18640
18704
|
export const makeRatecardReference = () => factories['io.flow.v0.models.ratecard_reference']();
|
|
18641
18705
|
export const makeRatecardRegionReference = () => factories['io.flow.v0.models.ratecard_region_reference']();
|
|
18642
18706
|
export const makeRatecardServiceSummary = () => factories['io.flow.v0.models.ratecard_service_summary']();
|
|
@@ -18682,7 +18746,11 @@ export const makeRepeatMonthly = () => factories['io.flow.v0.models.repeat_month
|
|
|
18682
18746
|
export const makeRepeatSchedule = () => factories['io.flow.v0.unions.repeat_schedule']();
|
|
18683
18747
|
export const makeRepeatWeekly = () => factories['io.flow.v0.models.repeat_weekly']();
|
|
18684
18748
|
export const makeRestrictedReviewStatus = () => factories['io.flow.v0.enums.restricted_review_status']();
|
|
18749
|
+
export const makeRestrictionDecision = () => factories['io.flow.v0.enums.restriction_decision']();
|
|
18750
|
+
export const makeRestrictionDecisionReason = () => factories['io.flow.v0.enums.restriction_decision_reason']();
|
|
18751
|
+
export const makeRestrictionDecisionsForm = () => factories['io.flow.v0.models.restriction_decisions_form']();
|
|
18685
18752
|
export const makeRestrictionEnvironment = () => factories['io.flow.v0.enums.restriction_environment']();
|
|
18753
|
+
export const makeRestrictionRuleDecisionForm = () => factories['io.flow.v0.models.restriction_rule_decision_form']();
|
|
18686
18754
|
export const makeReturn = () => factories['io.flow.v0.models.return']();
|
|
18687
18755
|
export const makeReturnForm = () => factories['io.flow.v0.models.return_form']();
|
|
18688
18756
|
export const makeReturnItemReference = () => factories['io.flow.v0.models.return_item_reference']();
|