@flowio/api-factories 0.0.107 → 0.0.109
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 +114 -240
- package/dist/esm/api.js +81 -204
- package/dist/types/api.d.ts +5 -8
- package/package.json +2 -2
- package/src/api.ts +91 -232
package/dist/esm/api.js
CHANGED
|
@@ -430,6 +430,7 @@ var factories = {
|
|
|
430
430
|
'order_missing',
|
|
431
431
|
]); },
|
|
432
432
|
'io.flow.channel.internal.v0.enums.channel_order_acceptance_status': function () { return faker.helpers.arrayElement(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']); },
|
|
433
|
+
'io.flow.channel.internal.v0.enums.order_payment_source_type': function () { return faker.helpers.arrayElement(['globale', 'third_party']); },
|
|
433
434
|
'io.flow.channel.internal.v0.models.channel_currency_form': function () { return ({
|
|
434
435
|
currency: factories.string(),
|
|
435
436
|
channel_id: factories.string(),
|
|
@@ -468,6 +469,7 @@ var factories = {
|
|
|
468
469
|
order_created_at: factories.date_time_iso_8601(),
|
|
469
470
|
order_updated_at: factories.date_time_iso_8601(),
|
|
470
471
|
order_edit_summary: factories['io.flow.channel.internal.v0.models.order_edit_summary'](),
|
|
472
|
+
payment_source: factories['io.flow.channel.internal.v0.enums.order_payment_source_type'](),
|
|
471
473
|
}); },
|
|
472
474
|
'io.flow.channel.internal.v0.models.channel_order_acceptance_details': function () { return ({
|
|
473
475
|
order_acceptance: factories['io.flow.channel.internal.v0.models.channel_order_acceptance'](),
|
|
@@ -2546,9 +2548,15 @@ var factories = {
|
|
|
2546
2548
|
offset: factories.integer(),
|
|
2547
2549
|
}); },
|
|
2548
2550
|
'io.flow.sellability.v0.enums.rule_effect_type': function () { return faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']); },
|
|
2549
|
-
'io.flow.sellability.v0.enums.sellability_error_code': function () { return faker.helpers.arrayElement([
|
|
2551
|
+
'io.flow.sellability.v0.enums.sellability_error_code': function () { return faker.helpers.arrayElement([
|
|
2552
|
+
'insufficient_details',
|
|
2553
|
+
'ineligible_category',
|
|
2554
|
+
'wait_for_high_fidelity',
|
|
2555
|
+
'external_service_unavailable',
|
|
2556
|
+
]); },
|
|
2550
2557
|
'io.flow.sellability.v0.enums.sellability_request_status': function () { return faker.helpers.arrayElement(['commit']); },
|
|
2551
2558
|
'io.flow.sellability.v0.models.product_sellability': function () { return ({
|
|
2559
|
+
discriminator: 'product_sellability',
|
|
2552
2560
|
shop_id: factories.string(),
|
|
2553
2561
|
product_id: factories.string(),
|
|
2554
2562
|
request_id: factories.string(),
|
|
@@ -2563,12 +2571,14 @@ var factories = {
|
|
|
2563
2571
|
description: factories.string(),
|
|
2564
2572
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
2565
2573
|
status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
|
|
2574
|
+
dry_run: factories.boolean(),
|
|
2566
2575
|
}); },
|
|
2567
2576
|
'io.flow.sellability.v0.models.product_sellability_price': function () { return ({
|
|
2568
2577
|
currency: factories.string(),
|
|
2569
2578
|
amount: factories.decimal(),
|
|
2570
2579
|
}); },
|
|
2571
2580
|
'io.flow.sellability.v0.models.sellability_error': function () { return ({
|
|
2581
|
+
discriminator: 'sellability_error',
|
|
2572
2582
|
code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
|
|
2573
2583
|
messages: arrayOf(function () { return factories.string(); }),
|
|
2574
2584
|
}); },
|
|
@@ -2576,6 +2586,13 @@ var factories = {
|
|
|
2576
2586
|
type: factories['io.flow.sellability.v0.enums.rule_effect_type'](),
|
|
2577
2587
|
regions: arrayOf(function () { return factories.string(); }),
|
|
2578
2588
|
}); },
|
|
2589
|
+
'io.flow.sellability.v0.unions.sellability_response': function () {
|
|
2590
|
+
var f = faker.helpers.arrayElement([
|
|
2591
|
+
function () { return factories['io.flow.sellability.v0.models.product_sellability'](); },
|
|
2592
|
+
function () { return factories['io.flow.sellability.v0.models.sellability_error'](); },
|
|
2593
|
+
]);
|
|
2594
|
+
return f();
|
|
2595
|
+
},
|
|
2579
2596
|
'io.flow.shopify.external.v0.enums.cancel_reason': function () { return faker.helpers.arrayElement(['customer', 'fraud', 'inventory', 'declined', 'other']); },
|
|
2580
2597
|
'io.flow.shopify.external.v0.enums.discount_status': function () { return faker.helpers.arrayElement(['enabled', 'disabled', 'depleted']); },
|
|
2581
2598
|
'io.flow.shopify.external.v0.enums.discount_type': function () { return faker.helpers.arrayElement(['fixed_amount', 'percentage', 'shipping']); },
|
|
@@ -5289,6 +5306,7 @@ var factories = {
|
|
|
5289
5306
|
'io.flow.tech.onboarding.playground.v0.enums.ansh_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5290
5307
|
'io.flow.tech.onboarding.playground.v0.enums.niall_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5291
5308
|
'io.flow.tech.onboarding.playground.v0.enums.prateek_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5309
|
+
'io.flow.tech.onboarding.playground.v0.enums.rohan_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
5292
5310
|
'io.flow.tech.onboarding.playground.v0.models.aldo_item': function () { return ({
|
|
5293
5311
|
id: factories.string(),
|
|
5294
5312
|
number: factories.string(),
|
|
@@ -5353,129 +5371,24 @@ var factories = {
|
|
|
5353
5371
|
type: factories['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'](),
|
|
5354
5372
|
added_on: factories.date_iso_8601(),
|
|
5355
5373
|
}); },
|
|
5356
|
-
'io.flow.tech.onboarding.playground.v0.models.
|
|
5357
|
-
description: factories.string(),
|
|
5358
|
-
}); },
|
|
5359
|
-
'io.flow.token.v0.models.channel_token': function () { return ({
|
|
5360
|
-
discriminator: 'channel_token',
|
|
5374
|
+
'io.flow.tech.onboarding.playground.v0.models.rohan_item': function () { return ({
|
|
5361
5375
|
id: factories.string(),
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
partial: factories.string(),
|
|
5365
|
-
cleartext: factories.string(),
|
|
5366
|
-
created_at: factories.date_time_iso_8601(),
|
|
5367
|
-
description: factories.string(),
|
|
5368
|
-
}); },
|
|
5369
|
-
'io.flow.token.v0.models.channel_token_form': function () { return ({
|
|
5370
|
-
channel_id: factories.string(),
|
|
5371
|
-
description: factories.string(),
|
|
5372
|
-
}); },
|
|
5373
|
-
'io.flow.token.v0.models.channel_token_reference': function () { return ({
|
|
5374
|
-
discriminator: 'channel_token_reference',
|
|
5375
|
-
id: factories.string(),
|
|
5376
|
-
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
5377
|
-
user: factories['io.flow.common.v0.models.user_reference'](),
|
|
5378
|
-
}); },
|
|
5379
|
-
'io.flow.token.v0.models.cleartext': function () { return ({
|
|
5380
|
-
value: factories.string(),
|
|
5381
|
-
}); },
|
|
5382
|
-
'io.flow.token.v0.models.organization_token': function () { return ({
|
|
5383
|
-
discriminator: 'organization_token',
|
|
5384
|
-
id: factories.string(),
|
|
5385
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
5386
|
-
user: factories['io.flow.common.v0.models.user_reference'](),
|
|
5387
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
5388
|
-
partial: factories.string(),
|
|
5389
|
-
created_at: factories.date_time_iso_8601(),
|
|
5390
|
-
description: factories.string(),
|
|
5391
|
-
}); },
|
|
5392
|
-
'io.flow.token.v0.models.organization_token_form': function () { return ({
|
|
5393
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
5394
|
-
description: factories.string(),
|
|
5395
|
-
}); },
|
|
5396
|
-
'io.flow.token.v0.models.organization_token_form_v2': function () { return ({
|
|
5397
|
-
organization_id: factories.string(),
|
|
5398
|
-
description: factories.string(),
|
|
5399
|
-
}); },
|
|
5400
|
-
'io.flow.token.v0.models.organization_token_reference': function () { return ({
|
|
5401
|
-
discriminator: 'organization_token_reference',
|
|
5402
|
-
id: factories.string(),
|
|
5403
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
5404
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
5405
|
-
user: factories['io.flow.common.v0.models.user_reference'](),
|
|
5406
|
-
}); },
|
|
5407
|
-
'io.flow.token.v0.models.organization_token_v2': function () { return ({
|
|
5408
|
-
discriminator: 'organization_token_v2',
|
|
5409
|
-
id: factories.string(),
|
|
5410
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
5411
|
-
user: factories['io.flow.common.v0.models.user_reference'](),
|
|
5412
|
-
partial: factories.string(),
|
|
5413
|
-
cleartext: factories.string(),
|
|
5414
|
-
created_at: factories.date_time_iso_8601(),
|
|
5376
|
+
number: factories.string(),
|
|
5377
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
5415
5378
|
description: factories.string(),
|
|
5379
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'](),
|
|
5380
|
+
added_on: factories.date_iso_8601(),
|
|
5416
5381
|
}); },
|
|
5417
|
-
'io.flow.
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
5421
|
-
}); },
|
|
5422
|
-
'io.flow.token.v0.models.partner_token': function () { return ({
|
|
5423
|
-
discriminator: 'partner_token',
|
|
5424
|
-
id: factories.string(),
|
|
5425
|
-
partner: factories['io.flow.token.v0.models.token_partner_reference'](),
|
|
5426
|
-
user: factories['io.flow.common.v0.models.user_reference'](),
|
|
5427
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
5428
|
-
partial: factories.string(),
|
|
5429
|
-
created_at: factories.date_time_iso_8601(),
|
|
5382
|
+
'io.flow.tech.onboarding.playground.v0.models.rohan_item_form': function () { return ({
|
|
5383
|
+
number: factories.string(),
|
|
5384
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
5430
5385
|
description: factories.string(),
|
|
5386
|
+
type: factories['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'](),
|
|
5387
|
+
added_on: factories.date_iso_8601(),
|
|
5431
5388
|
}); },
|
|
5432
|
-
'io.flow.
|
|
5433
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
5389
|
+
'io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description': function () { return ({
|
|
5434
5390
|
description: factories.string(),
|
|
5435
5391
|
}); },
|
|
5436
|
-
'io.flow.token.v0.models.partner_token_reference': function () { return ({
|
|
5437
|
-
discriminator: 'partner_token_reference',
|
|
5438
|
-
id: factories.string(),
|
|
5439
|
-
partner: factories['io.flow.token.v0.models.token_partner_reference'](),
|
|
5440
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
5441
|
-
user: factories['io.flow.common.v0.models.user_reference'](),
|
|
5442
|
-
}); },
|
|
5443
|
-
'io.flow.token.v0.models.token_authentication_form': function () { return ({
|
|
5444
|
-
token: factories.string(),
|
|
5445
|
-
}); },
|
|
5446
|
-
'io.flow.token.v0.models.token_partner_reference': function () { return ({
|
|
5447
|
-
id: factories.string(),
|
|
5448
|
-
}); },
|
|
5449
|
-
'io.flow.token.v0.models.token_rbac_authentication_form': function () { return ({
|
|
5450
|
-
token: factories.string(),
|
|
5451
|
-
method: factories.string(),
|
|
5452
|
-
path_pattern: factories.string(),
|
|
5453
|
-
path: factories.string(),
|
|
5454
|
-
}); },
|
|
5455
|
-
'io.flow.token.v0.models.token_validation': function () { return ({
|
|
5456
|
-
status: factories.string(),
|
|
5457
|
-
}); },
|
|
5458
|
-
'io.flow.token.v0.models.token_validation_form': function () { return ({
|
|
5459
|
-
token: factories.string(),
|
|
5460
|
-
}); },
|
|
5461
|
-
'io.flow.token.v0.unions.token': function () {
|
|
5462
|
-
var f = faker.helpers.arrayElement([
|
|
5463
|
-
function () { return factories['io.flow.token.v0.models.channel_token'](); },
|
|
5464
|
-
function () { return factories['io.flow.token.v0.models.organization_token'](); },
|
|
5465
|
-
function () { return factories['io.flow.token.v0.models.organization_token_v2'](); },
|
|
5466
|
-
function () { return factories['io.flow.token.v0.models.partner_token'](); },
|
|
5467
|
-
]);
|
|
5468
|
-
return f();
|
|
5469
|
-
},
|
|
5470
|
-
'io.flow.token.v0.unions.token_reference': function () {
|
|
5471
|
-
var f = faker.helpers.arrayElement([
|
|
5472
|
-
function () { return factories['io.flow.token.v0.models.channel_token_reference'](); },
|
|
5473
|
-
function () { return factories['io.flow.token.v0.models.organization_token_reference'](); },
|
|
5474
|
-
function () { return factories['io.flow.token.v0.models.organization_token_v2_reference'](); },
|
|
5475
|
-
function () { return factories['io.flow.token.v0.models.partner_token_reference'](); },
|
|
5476
|
-
]);
|
|
5477
|
-
return f();
|
|
5478
|
-
},
|
|
5479
5392
|
'io.flow.v0.enums.abandoned_order_promotion_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
|
|
5480
5393
|
'io.flow.v0.enums.abandoned_order_setting_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
|
|
5481
5394
|
'io.flow.v0.enums.address_field_name': function () { return faker.helpers.arrayElement([
|
|
@@ -5664,6 +5577,8 @@ var factories = {
|
|
|
5664
5577
|
'generate_load',
|
|
5665
5578
|
'niall_item_upserted',
|
|
5666
5579
|
'niall_item_deleted',
|
|
5580
|
+
'rohan_item_upserted',
|
|
5581
|
+
'rohan_item_deleted',
|
|
5667
5582
|
'aldo_item_upserted',
|
|
5668
5583
|
'aldo_item_deleted',
|
|
5669
5584
|
'ansh_item_upserted',
|
|
@@ -5722,10 +5637,6 @@ var factories = {
|
|
|
5722
5637
|
'rate_upserted',
|
|
5723
5638
|
'rate_deleted_v3',
|
|
5724
5639
|
'rate_upserted_v3',
|
|
5725
|
-
'customer_upserted',
|
|
5726
|
-
'customer_deleted',
|
|
5727
|
-
'customer_address_book_contact_upserted',
|
|
5728
|
-
'customer_address_book_contact_deleted',
|
|
5729
5640
|
'available_promotions_upserted',
|
|
5730
5641
|
'available_promotions_deleted',
|
|
5731
5642
|
'available_promotions_upserted_v2',
|
|
@@ -5860,10 +5771,6 @@ var factories = {
|
|
|
5860
5771
|
'ratecard_deleted',
|
|
5861
5772
|
'product_restriction_result_upserted',
|
|
5862
5773
|
'product_restriction_result_deleted',
|
|
5863
|
-
'return_upserted',
|
|
5864
|
-
'return_deleted',
|
|
5865
|
-
'return_upserted_v2',
|
|
5866
|
-
'return_deleted_v2',
|
|
5867
5774
|
'shopify_localization_setting_upserted',
|
|
5868
5775
|
'shopify_localization_setting_deleted',
|
|
5869
5776
|
'tracking_label_event_upserted',
|
|
@@ -5885,6 +5792,7 @@ var factories = {
|
|
|
5885
5792
|
'rate_lock',
|
|
5886
5793
|
'transfer',
|
|
5887
5794
|
'negative_balance_guarantee',
|
|
5795
|
+
'sp',
|
|
5888
5796
|
]); },
|
|
5889
5797
|
'io.flow.v0.enums.flow_behavior': function () { return faker.helpers.arrayElement(['view_consumer_data']); },
|
|
5890
5798
|
'io.flow.v0.enums.flow_entity': function () { return faker.helpers.arrayElement(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa']); },
|
|
@@ -6155,7 +6063,7 @@ var factories = {
|
|
|
6155
6063
|
'error',
|
|
6156
6064
|
'payment_checks_declined',
|
|
6157
6065
|
]); },
|
|
6158
|
-
'io.flow.v0.enums.payment_fee_type': function () { return faker.helpers.arrayElement(['fx', 'mor']); },
|
|
6066
|
+
'io.flow.v0.enums.payment_fee_type': function () { return faker.helpers.arrayElement(['fx', 'mor', 'sp']); },
|
|
6159
6067
|
'io.flow.v0.enums.payment_method_capability': function () { return faker.helpers.arrayElement(['credit', 'debit']); },
|
|
6160
6068
|
'io.flow.v0.enums.payment_method_data_option_type': function () { return faker.helpers.arrayElement(['ideal_issuer_option']); },
|
|
6161
6069
|
'io.flow.v0.enums.payment_method_rule_content_key': function () { return faker.helpers.arrayElement(['description']); },
|
|
@@ -6436,6 +6344,18 @@ var factories = {
|
|
|
6436
6344
|
]); },
|
|
6437
6345
|
'io.flow.v0.enums.surcharge_responsible_party': function () { return faker.helpers.arrayElement(['organization', 'customer']); },
|
|
6438
6346
|
'io.flow.v0.enums.tax_applicability': function () { return faker.helpers.arrayElement(['none', 'all']); },
|
|
6347
|
+
'io.flow.v0.enums.tax_duty_transaction_reason_code': function () { return faker.helpers.arrayElement([
|
|
6348
|
+
'post_capture',
|
|
6349
|
+
'post_fulfilment',
|
|
6350
|
+
'manual_payment_or_gift_card',
|
|
6351
|
+
'order_edit',
|
|
6352
|
+
'mixed_fulfilment_non_lvg',
|
|
6353
|
+
'lvg_refund',
|
|
6354
|
+
'order_cancellation_above_de_min',
|
|
6355
|
+
'wyol_shipment_above_de_min',
|
|
6356
|
+
'full_refund_without_shipment',
|
|
6357
|
+
'unfulfilled_order_above_de_min',
|
|
6358
|
+
]); },
|
|
6439
6359
|
'io.flow.v0.enums.tax_report_type': function () { return faker.helpers.arrayElement(['consumer', 'b2b']); },
|
|
6440
6360
|
'io.flow.v0.enums.tax_verification_result': function () { return faker.helpers.arrayElement(['valid', 'invalid', 'unable_to_validate']); },
|
|
6441
6361
|
'io.flow.v0.enums.taxability_type': function () { return faker.helpers.arrayElement(['tax_rule']); },
|
|
@@ -8488,25 +8408,11 @@ var factories = {
|
|
|
8488
8408
|
contact: factories['io.flow.v0.models.contact'](),
|
|
8489
8409
|
address_preferences: arrayOf(function () { return factories['io.flow.v0.models.customer_address_preference'](); }),
|
|
8490
8410
|
}); },
|
|
8491
|
-
'io.flow.v0.models.customer_address_book_contact_deleted': function () { return ({
|
|
8492
|
-
discriminator: 'customer_address_book_contact_deleted',
|
|
8493
|
-
event_id: factories.string(),
|
|
8494
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8495
|
-
organization: factories.string(),
|
|
8496
|
-
customer_address_book_contact: factories['io.flow.v0.models.customer_address_book_contact'](),
|
|
8497
|
-
}); },
|
|
8498
8411
|
'io.flow.v0.models.customer_address_book_contact_form': function () { return ({
|
|
8499
8412
|
address: factories['io.flow.v0.models.address'](),
|
|
8500
8413
|
contact: factories['io.flow.v0.models.contact'](),
|
|
8501
8414
|
address_preferences: arrayOf(function () { return factories['io.flow.v0.models.customer_address_preference'](); }),
|
|
8502
8415
|
}); },
|
|
8503
|
-
'io.flow.v0.models.customer_address_book_contact_upserted': function () { return ({
|
|
8504
|
-
discriminator: 'customer_address_book_contact_upserted',
|
|
8505
|
-
event_id: factories.string(),
|
|
8506
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8507
|
-
organization: factories.string(),
|
|
8508
|
-
customer_address_book_contact: factories['io.flow.v0.models.customer_address_book_contact'](),
|
|
8509
|
-
}); },
|
|
8510
8416
|
'io.flow.v0.models.customer_address_book_form': function () { return ({
|
|
8511
8417
|
contacts: arrayOf(function () { return factories['io.flow.v0.models.customer_address_book_contact_form'](); }),
|
|
8512
8418
|
}); },
|
|
@@ -8520,13 +8426,6 @@ var factories = {
|
|
|
8520
8426
|
'io.flow.v0.models.customer_client_token': function () { return ({
|
|
8521
8427
|
token: factories.string(),
|
|
8522
8428
|
}); },
|
|
8523
|
-
'io.flow.v0.models.customer_deleted': function () { return ({
|
|
8524
|
-
discriminator: 'customer_deleted',
|
|
8525
|
-
event_id: factories.string(),
|
|
8526
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8527
|
-
organization: factories.string(),
|
|
8528
|
-
customer: factories['io.flow.v0.models.customer'](),
|
|
8529
|
-
}); },
|
|
8530
8429
|
'io.flow.v0.models.customer_form': function () { return ({
|
|
8531
8430
|
number: factories.string(),
|
|
8532
8431
|
email: factories.string(),
|
|
@@ -8571,13 +8470,6 @@ var factories = {
|
|
|
8571
8470
|
customer: factories['io.flow.v0.models.customer_reference'](),
|
|
8572
8471
|
token: factories.string(),
|
|
8573
8472
|
}); },
|
|
8574
|
-
'io.flow.v0.models.customer_upserted': function () { return ({
|
|
8575
|
-
discriminator: 'customer_upserted',
|
|
8576
|
-
event_id: factories.string(),
|
|
8577
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8578
|
-
organization: factories.string(),
|
|
8579
|
-
customer: factories['io.flow.v0.models.customer'](),
|
|
8580
|
-
}); },
|
|
8581
8473
|
'io.flow.v0.models.cvv': function () { return ({
|
|
8582
8474
|
code: factories['io.flow.v0.enums.cvv_code'](),
|
|
8583
8475
|
description: factories.string(),
|
|
@@ -9693,7 +9585,7 @@ var factories = {
|
|
|
9693
9585
|
ge_hs6_code: factories.string(),
|
|
9694
9586
|
product_id: factories.string(),
|
|
9695
9587
|
ge_organization_name: factories.string(),
|
|
9696
|
-
|
|
9588
|
+
ge_shipping_origin_country: factories.string(),
|
|
9697
9589
|
}); },
|
|
9698
9590
|
'io.flow.v0.models.ge_input_price': function () { return ({
|
|
9699
9591
|
amount: factories.double(),
|
|
@@ -9729,6 +9621,7 @@ var factories = {
|
|
|
9729
9621
|
environment: factories['io.flow.v0.enums.environment'](),
|
|
9730
9622
|
timestamp: factories.date_time_iso_8601(),
|
|
9731
9623
|
id: factories.string(),
|
|
9624
|
+
operation: factories['io.flow.v0.enums.change_type'](),
|
|
9732
9625
|
}); },
|
|
9733
9626
|
'io.flow.v0.models.ge_product_restriction_result_upsert': function () { return ({
|
|
9734
9627
|
discriminator: 'ge_product_restriction_result_upsert',
|
|
@@ -9737,6 +9630,7 @@ var factories = {
|
|
|
9737
9630
|
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
9738
9631
|
environment: factories['io.flow.v0.enums.environment'](),
|
|
9739
9632
|
timestamp: factories.date_time_iso_8601(),
|
|
9633
|
+
operation: factories['io.flow.v0.enums.change_type'](),
|
|
9740
9634
|
ge_product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
9741
9635
|
}); },
|
|
9742
9636
|
'io.flow.v0.models.generate_load': function () { return ({
|
|
@@ -12648,6 +12542,8 @@ var factories = {
|
|
|
12648
12542
|
amount: factories['io.flow.v0.models.money'](),
|
|
12649
12543
|
starts_at: factories.date_time_iso_8601(),
|
|
12650
12544
|
ends_at: factories.date_time_iso_8601(),
|
|
12545
|
+
regions: arrayOf(function () { return factories.string(); }),
|
|
12546
|
+
dependent_service_fees: arrayOf(function () { return factories.string(); }),
|
|
12651
12547
|
}); },
|
|
12652
12548
|
'io.flow.v0.models.pending_payout_transaction_reason': function () { return ({
|
|
12653
12549
|
code: factories['io.flow.v0.enums.pending_payout_transaction_reason_code'](),
|
|
@@ -12932,6 +12828,7 @@ var factories = {
|
|
|
12932
12828
|
product_id: factories.string(),
|
|
12933
12829
|
item_numbers: arrayOf(function () { return factories.string(); }),
|
|
12934
12830
|
prohibited_regions: arrayOf(function () { return factories.string(); }),
|
|
12831
|
+
sellability_restricted_regions: arrayOf(function () { return factories.string(); }),
|
|
12935
12832
|
reasons_per_region: arrayOf(function () { return factories['io.flow.v0.models.reasons_per_region'](); }),
|
|
12936
12833
|
review_status: factories['io.flow.v0.enums.review_status'](),
|
|
12937
12834
|
rules: arrayOf(function () { return factories['io.flow.v0.enums.product_restriction_rule'](); }),
|
|
@@ -13212,6 +13109,10 @@ var factories = {
|
|
|
13212
13109
|
rate_level_key: factories.string(),
|
|
13213
13110
|
line_items: arrayOf(function () { return factories['io.flow.v0.models.line_item_form'](); }),
|
|
13214
13111
|
}); },
|
|
13112
|
+
'io.flow.v0.models.ratecard_fee_summary': function () { return ({
|
|
13113
|
+
ratecard_fee: factories['io.flow.v0.unions.ratecard_fee'](),
|
|
13114
|
+
source_service_fees: arrayOf(function () { return factories.string(); }),
|
|
13115
|
+
}); },
|
|
13215
13116
|
'io.flow.v0.models.ratecard_form': function () { return ({
|
|
13216
13117
|
direction: factories['io.flow.v0.enums.direction'](),
|
|
13217
13118
|
effective_at: factories.date_time_iso_8601(),
|
|
@@ -13563,19 +13464,6 @@ var factories = {
|
|
|
13563
13464
|
tracking_status_timestamp: factories.date_time_iso_8601(),
|
|
13564
13465
|
carrier_tracking_number: factories.string(),
|
|
13565
13466
|
}); },
|
|
13566
|
-
'io.flow.v0.models.return_deleted': function () { return ({
|
|
13567
|
-
discriminator: 'return_deleted',
|
|
13568
|
-
event_id: factories.string(),
|
|
13569
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13570
|
-
id: factories.string(),
|
|
13571
|
-
}); },
|
|
13572
|
-
'io.flow.v0.models.return_deleted_v2': function () { return ({
|
|
13573
|
-
discriminator: 'return_deleted_v2',
|
|
13574
|
-
event_id: factories.string(),
|
|
13575
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13576
|
-
organization: factories.string(),
|
|
13577
|
-
'return': factories['io.flow.v0.models.return'](),
|
|
13578
|
-
}); },
|
|
13579
13467
|
'io.flow.v0.models.return_form': function () { return ({
|
|
13580
13468
|
items: arrayOf(function () { return factories['io.flow.v0.models.return_line_item'](); }),
|
|
13581
13469
|
tier_id: factories.string(),
|
|
@@ -13654,26 +13542,6 @@ var factories = {
|
|
|
13654
13542
|
discriminator: 'return_source_flow',
|
|
13655
13543
|
attributes: objectOf(function () { return factories.string(); }),
|
|
13656
13544
|
}); },
|
|
13657
|
-
'io.flow.v0.models.return_upserted': function () { return ({
|
|
13658
|
-
discriminator: 'return_upserted',
|
|
13659
|
-
event_id: factories.string(),
|
|
13660
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13661
|
-
id: factories.string(),
|
|
13662
|
-
organization: factories.string(),
|
|
13663
|
-
destination: factories['io.flow.v0.models.shipping_address'](),
|
|
13664
|
-
items: arrayOf(function () { return factories['io.flow.v0.models.return_line_item'](); }),
|
|
13665
|
-
key: factories.string(),
|
|
13666
|
-
labels: arrayOf(function () { return factories['io.flow.v0.models.shipping_label'](); }),
|
|
13667
|
-
service: factories.string(),
|
|
13668
|
-
origin: factories['io.flow.v0.models.shipping_address'](),
|
|
13669
|
-
}); },
|
|
13670
|
-
'io.flow.v0.models.return_upserted_v2': function () { return ({
|
|
13671
|
-
discriminator: 'return_upserted_v2',
|
|
13672
|
-
event_id: factories.string(),
|
|
13673
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13674
|
-
organization: factories.string(),
|
|
13675
|
-
'return': factories['io.flow.v0.models.return'](),
|
|
13676
|
-
}); },
|
|
13677
13545
|
'io.flow.v0.models.return_version': function () { return ({
|
|
13678
13546
|
id: factories.string(),
|
|
13679
13547
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -13731,6 +13599,18 @@ var factories = {
|
|
|
13731
13599
|
type: factories['io.flow.v0.enums.change_type'](),
|
|
13732
13600
|
reversal: factories['io.flow.v0.models.reversal'](),
|
|
13733
13601
|
}); },
|
|
13602
|
+
'io.flow.v0.models.rohan_item_deleted': function () { return ({
|
|
13603
|
+
discriminator: 'rohan_item_deleted',
|
|
13604
|
+
event_id: factories.string(),
|
|
13605
|
+
timestamp: factories.date_time_iso_8601(),
|
|
13606
|
+
id: factories.string(),
|
|
13607
|
+
}); },
|
|
13608
|
+
'io.flow.v0.models.rohan_item_upserted': function () { return ({
|
|
13609
|
+
discriminator: 'rohan_item_upserted',
|
|
13610
|
+
event_id: factories.string(),
|
|
13611
|
+
timestamp: factories.date_time_iso_8601(),
|
|
13612
|
+
item: factories['io.flow.tech.onboarding.playground.v0.models.rohan_item'](),
|
|
13613
|
+
}); },
|
|
13734
13614
|
'io.flow.v0.models.romanization': function () { return ({
|
|
13735
13615
|
address: factories['io.flow.v0.models.address'](),
|
|
13736
13616
|
contact: factories['io.flow.v0.models.contact'](),
|
|
@@ -15020,8 +14900,13 @@ var factories = {
|
|
|
15020
14900
|
}); },
|
|
15021
14901
|
'io.flow.v0.models.transaction_metadata_shipping_label_carrier': function () { return ({
|
|
15022
14902
|
id: factories.string(),
|
|
14903
|
+
service_id: factories.string(),
|
|
15023
14904
|
tracking_number: factories.string(),
|
|
15024
14905
|
}); },
|
|
14906
|
+
'io.flow.v0.models.transaction_metadata_tax_duty': function () { return ({
|
|
14907
|
+
discriminator: 'transaction_tax_duty',
|
|
14908
|
+
reason_code: factories['io.flow.v0.enums.tax_duty_transaction_reason_code'](),
|
|
14909
|
+
}); },
|
|
15025
14910
|
'io.flow.v0.models.transaction_metadata_trueup': function () { return ({
|
|
15026
14911
|
discriminator: 'trueup',
|
|
15027
14912
|
original: factories['io.flow.v0.models.transaction_metadata_original_transaction'](),
|
|
@@ -15553,6 +15438,8 @@ var factories = {
|
|
|
15553
15438
|
function () { return factories['io.flow.v0.models.generate_load'](); },
|
|
15554
15439
|
function () { return factories['io.flow.v0.models.niall_item_upserted'](); },
|
|
15555
15440
|
function () { return factories['io.flow.v0.models.niall_item_deleted'](); },
|
|
15441
|
+
function () { return factories['io.flow.v0.models.rohan_item_upserted'](); },
|
|
15442
|
+
function () { return factories['io.flow.v0.models.rohan_item_deleted'](); },
|
|
15556
15443
|
function () { return factories['io.flow.v0.models.aldo_item_upserted'](); },
|
|
15557
15444
|
function () { return factories['io.flow.v0.models.aldo_item_deleted'](); },
|
|
15558
15445
|
function () { return factories['io.flow.v0.models.ansh_item_upserted'](); },
|
|
@@ -15611,10 +15498,6 @@ var factories = {
|
|
|
15611
15498
|
function () { return factories['io.flow.v0.models.rate_upserted'](); },
|
|
15612
15499
|
function () { return factories['io.flow.v0.models.rate_deleted_v3'](); },
|
|
15613
15500
|
function () { return factories['io.flow.v0.models.rate_upserted_v3'](); },
|
|
15614
|
-
function () { return factories['io.flow.v0.models.customer_upserted'](); },
|
|
15615
|
-
function () { return factories['io.flow.v0.models.customer_deleted'](); },
|
|
15616
|
-
function () { return factories['io.flow.v0.models.customer_address_book_contact_upserted'](); },
|
|
15617
|
-
function () { return factories['io.flow.v0.models.customer_address_book_contact_deleted'](); },
|
|
15618
15501
|
function () { return factories['io.flow.v0.models.available_promotions_upserted'](); },
|
|
15619
15502
|
function () { return factories['io.flow.v0.models.available_promotions_deleted'](); },
|
|
15620
15503
|
function () { return factories['io.flow.v0.models.available_promotions_upserted_v2'](); },
|
|
@@ -15749,10 +15632,6 @@ var factories = {
|
|
|
15749
15632
|
function () { return factories['io.flow.v0.models.ratecard_deleted'](); },
|
|
15750
15633
|
function () { return factories['io.flow.v0.models.product_restriction_result_upserted'](); },
|
|
15751
15634
|
function () { return factories['io.flow.v0.models.product_restriction_result_deleted'](); },
|
|
15752
|
-
function () { return factories['io.flow.v0.models.return_upserted'](); },
|
|
15753
|
-
function () { return factories['io.flow.v0.models.return_deleted'](); },
|
|
15754
|
-
function () { return factories['io.flow.v0.models.return_upserted_v2'](); },
|
|
15755
|
-
function () { return factories['io.flow.v0.models.return_deleted_v2'](); },
|
|
15756
15635
|
function () { return factories['io.flow.v0.models.shopify_localization_setting_upserted'](); },
|
|
15757
15636
|
function () { return factories['io.flow.v0.models.shopify_localization_setting_deleted'](); },
|
|
15758
15637
|
function () { return factories['io.flow.v0.models.tracking_label_event_upserted'](); },
|
|
@@ -16368,6 +16247,7 @@ var factories = {
|
|
|
16368
16247
|
function () { return factories['io.flow.v0.models.transaction_metadata_manual'](); },
|
|
16369
16248
|
function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout'](); },
|
|
16370
16249
|
function () { return factories['io.flow.v0.models.transaction_metadata_payment_transaction'](); },
|
|
16250
|
+
function () { return factories['io.flow.v0.models.transaction_metadata_tax_duty'](); },
|
|
16371
16251
|
]);
|
|
16372
16252
|
return f();
|
|
16373
16253
|
},
|
|
@@ -16739,15 +16619,12 @@ export var makeCurrencySymbols = function () { return factories['io.flow.v0.mode
|
|
|
16739
16619
|
export var makeCustomer = function () { return factories['io.flow.v0.models.customer'](); };
|
|
16740
16620
|
export var makeCustomerAddressBook = function () { return factories['io.flow.v0.models.customer_address_book'](); };
|
|
16741
16621
|
export var makeCustomerAddressBookContact = function () { return factories['io.flow.v0.models.customer_address_book_contact'](); };
|
|
16742
|
-
export var makeCustomerAddressBookContactDeleted = function () { return factories['io.flow.v0.models.customer_address_book_contact_deleted'](); };
|
|
16743
16622
|
export var makeCustomerAddressBookContactForm = function () { return factories['io.flow.v0.models.customer_address_book_contact_form'](); };
|
|
16744
|
-
export var makeCustomerAddressBookContactUpserted = function () { return factories['io.flow.v0.models.customer_address_book_contact_upserted'](); };
|
|
16745
16623
|
export var makeCustomerAddressBookForm = function () { return factories['io.flow.v0.models.customer_address_book_form'](); };
|
|
16746
16624
|
export var makeCustomerAddressPreference = function () { return factories['io.flow.v0.models.customer_address_preference'](); };
|
|
16747
16625
|
export var makeCustomerAddressType = function () { return factories['io.flow.v0.enums.customer_address_type'](); };
|
|
16748
16626
|
export var makeCustomerBundle = function () { return factories['io.flow.v0.models.customer_bundle'](); };
|
|
16749
16627
|
export var makeCustomerClientToken = function () { return factories['io.flow.v0.models.customer_client_token'](); };
|
|
16750
|
-
export var makeCustomerDeleted = function () { return factories['io.flow.v0.models.customer_deleted'](); };
|
|
16751
16628
|
export var makeCustomerForm = function () { return factories['io.flow.v0.models.customer_form'](); };
|
|
16752
16629
|
export var makeCustomerInvoice = function () { return factories['io.flow.v0.models.customer_invoice'](); };
|
|
16753
16630
|
export var makeCustomerLastUsed = function () { return factories['io.flow.v0.models.customer_last_used'](); };
|
|
@@ -16758,7 +16635,6 @@ export var makeCustomerPurgeSettingsForm = function () { return factories['io.fl
|
|
|
16758
16635
|
export var makeCustomerPutForm = function () { return factories['io.flow.v0.models.customer_put_form'](); };
|
|
16759
16636
|
export var makeCustomerReference = function () { return factories['io.flow.v0.models.customer_reference'](); };
|
|
16760
16637
|
export var makeCustomerToken = function () { return factories['io.flow.v0.models.customer_token'](); };
|
|
16761
|
-
export var makeCustomerUpserted = function () { return factories['io.flow.v0.models.customer_upserted'](); };
|
|
16762
16638
|
export var makeCvv = function () { return factories['io.flow.v0.models.cvv'](); };
|
|
16763
16639
|
export var makeCvvCode = function () { return factories['io.flow.v0.enums.cvv_code'](); };
|
|
16764
16640
|
export var makeCvvResult = function () { return factories['io.flow.v0.models.cvv_result'](); };
|
|
@@ -17697,6 +17573,7 @@ export var makeRatecardEstimateV2 = function () { return factories['io.flow.v0.m
|
|
|
17697
17573
|
export var makeRatecardEstimateV3 = function () { return factories['io.flow.v0.models.ratecard_estimate_v3'](); };
|
|
17698
17574
|
export var makeRatecardEstimateV4 = function () { return factories['io.flow.v0.models.ratecard_estimate_v4'](); };
|
|
17699
17575
|
export var makeRatecardFee = function () { return factories['io.flow.v0.unions.ratecard_fee'](); };
|
|
17576
|
+
export var makeRatecardFeeSummary = function () { return factories['io.flow.v0.models.ratecard_fee_summary'](); };
|
|
17700
17577
|
export var makeRatecardForm = function () { return factories['io.flow.v0.models.ratecard_form'](); };
|
|
17701
17578
|
export var makeRatecardLane = function () { return factories['io.flow.v0.models.ratecard_lane'](); };
|
|
17702
17579
|
export var makeRatecardLaneDeleted = function () { return factories['io.flow.v0.models.ratecard_lane_deleted'](); };
|
|
@@ -17755,8 +17632,6 @@ export var makeRepeatSchedule = function () { return factories['io.flow.v0.union
|
|
|
17755
17632
|
export var makeRepeatWeekly = function () { return factories['io.flow.v0.models.repeat_weekly'](); };
|
|
17756
17633
|
export var makeRestrictedReviewStatus = function () { return factories['io.flow.v0.enums.restricted_review_status'](); };
|
|
17757
17634
|
export var makeReturn = function () { return factories['io.flow.v0.models.return'](); };
|
|
17758
|
-
export var makeReturnDeleted = function () { return factories['io.flow.v0.models.return_deleted'](); };
|
|
17759
|
-
export var makeReturnDeletedV2 = function () { return factories['io.flow.v0.models.return_deleted_v2'](); };
|
|
17760
17635
|
export var makeReturnForm = function () { return factories['io.flow.v0.models.return_form'](); };
|
|
17761
17636
|
export var makeReturnItemReference = function () { return factories['io.flow.v0.models.return_item_reference'](); };
|
|
17762
17637
|
export var makeReturnItemStatus = function () { return factories['io.flow.v0.enums.return_item_status'](); };
|
|
@@ -17777,8 +17652,6 @@ export var makeReturnSourceExternalVendor = function () { return factories['io.f
|
|
|
17777
17652
|
export var makeReturnSourceFlow = function () { return factories['io.flow.v0.models.return_source_flow'](); };
|
|
17778
17653
|
export var makeReturnStatus = function () { return factories['io.flow.v0.enums.return_status'](); };
|
|
17779
17654
|
export var makeReturnTrackingStatus = function () { return factories['io.flow.v0.enums.return_tracking_status'](); };
|
|
17780
|
-
export var makeReturnUpserted = function () { return factories['io.flow.v0.models.return_upserted'](); };
|
|
17781
|
-
export var makeReturnUpsertedV2 = function () { return factories['io.flow.v0.models.return_upserted_v2'](); };
|
|
17782
17655
|
export var makeReturnVersion = function () { return factories['io.flow.v0.models.return_version'](); };
|
|
17783
17656
|
export var makeReversal = function () { return factories['io.flow.v0.models.reversal'](); };
|
|
17784
17657
|
export var makeReversalDeleted = function () { return factories['io.flow.v0.models.reversal_deleted'](); };
|
|
@@ -17790,6 +17663,8 @@ export var makeReversalStatus = function () { return factories['io.flow.v0.enums
|
|
|
17790
17663
|
export var makeReversalUpserted = function () { return factories['io.flow.v0.models.reversal_upserted'](); };
|
|
17791
17664
|
export var makeReversalVersion = function () { return factories['io.flow.v0.models.reversal_version'](); };
|
|
17792
17665
|
export var makeReviewStatus = function () { return factories['io.flow.v0.enums.review_status'](); };
|
|
17666
|
+
export var makeRohanItemDeleted = function () { return factories['io.flow.v0.models.rohan_item_deleted'](); };
|
|
17667
|
+
export var makeRohanItemUpserted = function () { return factories['io.flow.v0.models.rohan_item_upserted'](); };
|
|
17793
17668
|
export var makeRole = function () { return factories['io.flow.v0.enums.role'](); };
|
|
17794
17669
|
export var makeRomanization = function () { return factories['io.flow.v0.models.romanization'](); };
|
|
17795
17670
|
export var makeRomanizationForm = function () { return factories['io.flow.v0.models.romanization_form'](); };
|
|
@@ -17957,6 +17832,7 @@ export var makeSurchargeSetting = function () { return factories['io.flow.v0.mod
|
|
|
17957
17832
|
export var makeSurchargeSettingDisplay = function () { return factories['io.flow.v0.models.surcharge_setting_display'](); };
|
|
17958
17833
|
export var makeTax = function () { return factories['io.flow.v0.models.tax'](); };
|
|
17959
17834
|
export var makeTaxApplicability = function () { return factories['io.flow.v0.enums.tax_applicability'](); };
|
|
17835
|
+
export var makeTaxDutyTransactionReasonCode = function () { return factories['io.flow.v0.enums.tax_duty_transaction_reason_code'](); };
|
|
17960
17836
|
export var makeTaxRegistration = function () { return factories['io.flow.v0.models.tax_registration'](); };
|
|
17961
17837
|
export var makeTaxRegistrationForm = function () { return factories['io.flow.v0.models.tax_registration_form'](); };
|
|
17962
17838
|
export var makeTaxReport = function () { return factories['io.flow.v0.models.tax_report'](); };
|
|
@@ -18041,6 +17917,7 @@ export var makeTransactionMetadataOutboundTransaction = function () { return fac
|
|
|
18041
17917
|
export var makeTransactionMetadataPaymentTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_payment_transaction'](); };
|
|
18042
17918
|
export var makeTransactionMetadataShippingLabel = function () { return factories['io.flow.v0.models.transaction_metadata_shipping_label'](); };
|
|
18043
17919
|
export var makeTransactionMetadataShippingLabelCarrier = function () { return factories['io.flow.v0.models.transaction_metadata_shipping_label_carrier'](); };
|
|
17920
|
+
export var makeTransactionMetadataTaxDuty = function () { return factories['io.flow.v0.models.transaction_metadata_tax_duty'](); };
|
|
18044
17921
|
export var makeTransactionMetadataTrueup = function () { return factories['io.flow.v0.models.transaction_metadata_trueup'](); };
|
|
18045
17922
|
export var makeTransactionMetadataTrueupBase = function () { return factories['io.flow.v0.models.transaction_metadata_trueup_base'](); };
|
|
18046
17923
|
export var makeTransactionMetadataTrueupBaseData = function () { return factories['io.flow.v0.models.transaction_metadata_trueup_base_data'](); };
|
package/dist/types/api.d.ts
CHANGED
|
@@ -358,15 +358,12 @@ export declare const makeCurrencySymbols: () => io.flow.v0.models.CurrencySymbol
|
|
|
358
358
|
export declare const makeCustomer: () => io.flow.v0.models.Customer;
|
|
359
359
|
export declare const makeCustomerAddressBook: () => io.flow.v0.models.CustomerAddressBook;
|
|
360
360
|
export declare const makeCustomerAddressBookContact: () => io.flow.v0.models.CustomerAddressBookContact;
|
|
361
|
-
export declare const makeCustomerAddressBookContactDeleted: () => io.flow.v0.models.CustomerAddressBookContactDeleted;
|
|
362
361
|
export declare const makeCustomerAddressBookContactForm: () => io.flow.v0.models.CustomerAddressBookContactForm;
|
|
363
|
-
export declare const makeCustomerAddressBookContactUpserted: () => io.flow.v0.models.CustomerAddressBookContactUpserted;
|
|
364
362
|
export declare const makeCustomerAddressBookForm: () => io.flow.v0.models.CustomerAddressBookForm;
|
|
365
363
|
export declare const makeCustomerAddressPreference: () => io.flow.v0.models.CustomerAddressPreference;
|
|
366
364
|
export declare const makeCustomerAddressType: () => io.flow.v0.enums.CustomerAddressType;
|
|
367
365
|
export declare const makeCustomerBundle: () => io.flow.v0.models.CustomerBundle;
|
|
368
366
|
export declare const makeCustomerClientToken: () => io.flow.v0.models.CustomerClientToken;
|
|
369
|
-
export declare const makeCustomerDeleted: () => io.flow.v0.models.CustomerDeleted;
|
|
370
367
|
export declare const makeCustomerForm: () => io.flow.v0.models.CustomerForm;
|
|
371
368
|
export declare const makeCustomerInvoice: () => io.flow.v0.models.CustomerInvoice;
|
|
372
369
|
export declare const makeCustomerLastUsed: () => io.flow.v0.models.CustomerLastUsed;
|
|
@@ -377,7 +374,6 @@ export declare const makeCustomerPurgeSettingsForm: () => io.flow.v0.models.Cust
|
|
|
377
374
|
export declare const makeCustomerPutForm: () => io.flow.v0.models.CustomerPutForm;
|
|
378
375
|
export declare const makeCustomerReference: () => io.flow.v0.models.CustomerReference;
|
|
379
376
|
export declare const makeCustomerToken: () => io.flow.v0.models.CustomerToken;
|
|
380
|
-
export declare const makeCustomerUpserted: () => io.flow.v0.models.CustomerUpserted;
|
|
381
377
|
export declare const makeCvv: () => io.flow.v0.models.Cvv;
|
|
382
378
|
export declare const makeCvvCode: () => io.flow.v0.enums.CvvCode;
|
|
383
379
|
export declare const makeCvvResult: () => io.flow.v0.models.CvvResult;
|
|
@@ -1316,6 +1312,7 @@ export declare const makeRatecardEstimateV2: () => io.flow.v0.models.RatecardEst
|
|
|
1316
1312
|
export declare const makeRatecardEstimateV3: () => io.flow.v0.models.RatecardEstimateV3;
|
|
1317
1313
|
export declare const makeRatecardEstimateV4: () => io.flow.v0.models.RatecardEstimateV4;
|
|
1318
1314
|
export declare const makeRatecardFee: () => io.flow.v0.unions.RatecardFee;
|
|
1315
|
+
export declare const makeRatecardFeeSummary: () => io.flow.v0.models.RatecardFeeSummary;
|
|
1319
1316
|
export declare const makeRatecardForm: () => io.flow.v0.models.RatecardForm;
|
|
1320
1317
|
export declare const makeRatecardLane: () => io.flow.v0.models.RatecardLane;
|
|
1321
1318
|
export declare const makeRatecardLaneDeleted: () => io.flow.v0.models.RatecardLaneDeleted;
|
|
@@ -1374,8 +1371,6 @@ export declare const makeRepeatSchedule: () => io.flow.v0.unions.RepeatSchedule;
|
|
|
1374
1371
|
export declare const makeRepeatWeekly: () => io.flow.v0.models.RepeatWeekly;
|
|
1375
1372
|
export declare const makeRestrictedReviewStatus: () => io.flow.v0.enums.RestrictedReviewStatus;
|
|
1376
1373
|
export declare const makeReturn: () => io.flow.v0.models.Return;
|
|
1377
|
-
export declare const makeReturnDeleted: () => io.flow.v0.models.ReturnDeleted;
|
|
1378
|
-
export declare const makeReturnDeletedV2: () => io.flow.v0.models.ReturnDeletedV2;
|
|
1379
1374
|
export declare const makeReturnForm: () => io.flow.v0.models.ReturnForm;
|
|
1380
1375
|
export declare const makeReturnItemReference: () => io.flow.v0.models.ReturnItemReference;
|
|
1381
1376
|
export declare const makeReturnItemStatus: () => io.flow.v0.enums.ReturnItemStatus;
|
|
@@ -1396,8 +1391,6 @@ export declare const makeReturnSourceExternalVendor: () => io.flow.v0.models.Ret
|
|
|
1396
1391
|
export declare const makeReturnSourceFlow: () => io.flow.v0.models.ReturnSourceFlow;
|
|
1397
1392
|
export declare const makeReturnStatus: () => io.flow.v0.enums.ReturnStatus;
|
|
1398
1393
|
export declare const makeReturnTrackingStatus: () => io.flow.v0.enums.ReturnTrackingStatus;
|
|
1399
|
-
export declare const makeReturnUpserted: () => io.flow.v0.models.ReturnUpserted;
|
|
1400
|
-
export declare const makeReturnUpsertedV2: () => io.flow.v0.models.ReturnUpsertedV2;
|
|
1401
1394
|
export declare const makeReturnVersion: () => io.flow.v0.models.ReturnVersion;
|
|
1402
1395
|
export declare const makeReversal: () => io.flow.v0.models.Reversal;
|
|
1403
1396
|
export declare const makeReversalDeleted: () => io.flow.v0.models.ReversalDeleted;
|
|
@@ -1409,6 +1402,8 @@ export declare const makeReversalStatus: () => io.flow.v0.enums.ReversalStatus;
|
|
|
1409
1402
|
export declare const makeReversalUpserted: () => io.flow.v0.models.ReversalUpserted;
|
|
1410
1403
|
export declare const makeReversalVersion: () => io.flow.v0.models.ReversalVersion;
|
|
1411
1404
|
export declare const makeReviewStatus: () => io.flow.v0.enums.ReviewStatus;
|
|
1405
|
+
export declare const makeRohanItemDeleted: () => io.flow.v0.models.RohanItemDeleted;
|
|
1406
|
+
export declare const makeRohanItemUpserted: () => io.flow.v0.models.RohanItemUpserted;
|
|
1412
1407
|
export declare const makeRole: () => io.flow.v0.enums.Role;
|
|
1413
1408
|
export declare const makeRomanization: () => io.flow.v0.models.Romanization;
|
|
1414
1409
|
export declare const makeRomanizationForm: () => io.flow.v0.models.RomanizationForm;
|
|
@@ -1576,6 +1571,7 @@ export declare const makeSurchargeSetting: () => io.flow.v0.models.SurchargeSett
|
|
|
1576
1571
|
export declare const makeSurchargeSettingDisplay: () => io.flow.v0.models.SurchargeSettingDisplay;
|
|
1577
1572
|
export declare const makeTax: () => io.flow.v0.models.Tax;
|
|
1578
1573
|
export declare const makeTaxApplicability: () => io.flow.v0.enums.TaxApplicability;
|
|
1574
|
+
export declare const makeTaxDutyTransactionReasonCode: () => io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
1579
1575
|
export declare const makeTaxRegistration: () => io.flow.v0.models.TaxRegistration;
|
|
1580
1576
|
export declare const makeTaxRegistrationForm: () => io.flow.v0.models.TaxRegistrationForm;
|
|
1581
1577
|
export declare const makeTaxReport: () => io.flow.v0.models.TaxReport;
|
|
@@ -1660,6 +1656,7 @@ export declare const makeTransactionMetadataOutboundTransaction: () => io.flow.v
|
|
|
1660
1656
|
export declare const makeTransactionMetadataPaymentTransaction: () => io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
1661
1657
|
export declare const makeTransactionMetadataShippingLabel: () => io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
1662
1658
|
export declare const makeTransactionMetadataShippingLabelCarrier: () => io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
1659
|
+
export declare const makeTransactionMetadataTaxDuty: () => io.flow.v0.models.TransactionMetadataTaxDuty;
|
|
1663
1660
|
export declare const makeTransactionMetadataTrueup: () => io.flow.v0.models.TransactionMetadataTrueup;
|
|
1664
1661
|
export declare const makeTransactionMetadataTrueupBase: () => io.flow.v0.models.TransactionMetadataTrueupBase;
|
|
1665
1662
|
export declare const makeTransactionMetadataTrueupBaseData: () => io.flow.v0.models.TransactionMetadataTrueupBaseData;
|