@flowio/api-internal-factories 0.0.109 → 0.0.111
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-internal.js +422 -58
- package/dist/esm/api-internal.js +354 -19
- package/dist/types/api-internal.d.ts +29 -0
- package/package.json +2 -2
- package/src/api-internal.ts +398 -19
package/dist/esm/api-internal.js
CHANGED
|
@@ -28,6 +28,16 @@ var factories = {
|
|
|
28
28
|
'io.flow.adyen.v0.enums.channel': function () { return faker.helpers.arrayElement(['web']); },
|
|
29
29
|
'io.flow.adyen.v0.enums.contract': function () { return faker.helpers.arrayElement(['RECURRING']); },
|
|
30
30
|
'io.flow.adyen.v0.enums.device_channel': function () { return faker.helpers.arrayElement(['app', 'browser']); },
|
|
31
|
+
'io.flow.adyen.v0.enums.dispute_status': function () { return faker.helpers.arrayElement([
|
|
32
|
+
'Accepted',
|
|
33
|
+
'Expired',
|
|
34
|
+
'Lost',
|
|
35
|
+
'Pending',
|
|
36
|
+
'Responded',
|
|
37
|
+
'Undefended',
|
|
38
|
+
'Unresponded',
|
|
39
|
+
'Won',
|
|
40
|
+
]); },
|
|
31
41
|
'io.flow.adyen.v0.enums.event_code': function () { return faker.helpers.arrayElement([
|
|
32
42
|
'AUTHORISATION',
|
|
33
43
|
'CANCELLATION',
|
|
@@ -92,6 +102,9 @@ var factories = {
|
|
|
92
102
|
'ebanking_FI',
|
|
93
103
|
'gcash',
|
|
94
104
|
'giropay',
|
|
105
|
+
'grabpay_MY',
|
|
106
|
+
'grabpay_PH',
|
|
107
|
+
'grabpay_SG',
|
|
95
108
|
'ideal',
|
|
96
109
|
'interac',
|
|
97
110
|
'jcb',
|
|
@@ -113,6 +126,7 @@ var factories = {
|
|
|
113
126
|
'trustpay',
|
|
114
127
|
'twint',
|
|
115
128
|
'unionpay',
|
|
129
|
+
'vipps',
|
|
116
130
|
'visa',
|
|
117
131
|
'wechatpay',
|
|
118
132
|
'unknowncard',
|
|
@@ -261,6 +275,8 @@ var factories = {
|
|
|
261
275
|
modificationMerchantReferences: factories.string(),
|
|
262
276
|
chargebackSchemeCode: factories.string(),
|
|
263
277
|
defensePeriodEndsAt: factories.date_time_iso_8601(),
|
|
278
|
+
disputeStatus: factories['io.flow.adyen.v0.enums.dispute_status'](),
|
|
279
|
+
defendable: factories.string(),
|
|
264
280
|
}); },
|
|
265
281
|
'io.flow.adyen.v0.models.error': function () { return ({
|
|
266
282
|
status: factories.integer(),
|
|
@@ -607,6 +623,8 @@ var factories = {
|
|
|
607
623
|
'waiting_for_next_payout_date',
|
|
608
624
|
'waiting_for_tracking_info',
|
|
609
625
|
'waiting_for_positive_account_balance',
|
|
626
|
+
'unfulfilled_amount_greater_than_negative_balance',
|
|
627
|
+
'account_payment_hold',
|
|
610
628
|
]); },
|
|
611
629
|
'io.flow.billing.v0.enums.statement_attachment_type': function () { return faker.helpers.arrayElement(['csv']); },
|
|
612
630
|
'io.flow.billing.v0.enums.transaction_source': function () { return faker.helpers.arrayElement([
|
|
@@ -635,6 +653,7 @@ var factories = {
|
|
|
635
653
|
'virtual_card_capture',
|
|
636
654
|
'virtual_card_refund',
|
|
637
655
|
'failed_payout',
|
|
656
|
+
'tax_refund',
|
|
638
657
|
]); },
|
|
639
658
|
'io.flow.billing.v0.enums.trueup_source': function () { return faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']); },
|
|
640
659
|
'io.flow.billing.v0.enums.withholding_deduction_type': function () { return faker.helpers.arrayElement(['tax', 'duty', 'freight', 'insurance']); },
|
|
@@ -1488,6 +1507,7 @@ var factories = {
|
|
|
1488
1507
|
local: factories['io.flow.catalog.v0.models.local'](),
|
|
1489
1508
|
created_at: factories.date_time_iso_8601(),
|
|
1490
1509
|
updated_at: factories.date_time_iso_8601(),
|
|
1510
|
+
deleted_at: factories.date_time_iso_8601(),
|
|
1491
1511
|
}); },
|
|
1492
1512
|
'io.flow.catalog.v0.models.item_attributes_patch_form': function () { return ({
|
|
1493
1513
|
attributes: objectOf(function () { return factories.string(); }),
|
|
@@ -1503,6 +1523,7 @@ var factories = {
|
|
|
1503
1523
|
attributes: objectOf(function () { return factories.string(); }),
|
|
1504
1524
|
dimensions: factories['io.flow.common.v0.models.dimensions'](),
|
|
1505
1525
|
images: arrayOf(function () { return factories['io.flow.catalog.v0.models.image_form'](); }),
|
|
1526
|
+
deleted_at: factories.date_time_iso_8601(),
|
|
1506
1527
|
}); },
|
|
1507
1528
|
'io.flow.catalog.v0.models.item_form_overlay': function () { return ({
|
|
1508
1529
|
id: factories.string(),
|
|
@@ -1515,6 +1536,7 @@ var factories = {
|
|
|
1515
1536
|
attributes: objectOf(function () { return factories.string(); }),
|
|
1516
1537
|
dimensions: factories['io.flow.common.v0.models.dimensions'](),
|
|
1517
1538
|
images: arrayOf(function () { return factories['io.flow.catalog.v0.models.image_form'](); }),
|
|
1539
|
+
deleted_at: factories.date_time_iso_8601(),
|
|
1518
1540
|
}); },
|
|
1519
1541
|
'io.flow.catalog.v0.models.item_form_overlay_form': function () { return ({
|
|
1520
1542
|
number: factories.string(),
|
|
@@ -1526,6 +1548,7 @@ var factories = {
|
|
|
1526
1548
|
attributes: objectOf(function () { return factories.string(); }),
|
|
1527
1549
|
dimensions: factories['io.flow.common.v0.models.dimensions'](),
|
|
1528
1550
|
images: arrayOf(function () { return factories['io.flow.catalog.v0.models.image_form'](); }),
|
|
1551
|
+
deleted_at: factories.date_time_iso_8601(),
|
|
1529
1552
|
}); },
|
|
1530
1553
|
'io.flow.catalog.v0.models.item_price_update_form': function () { return ({
|
|
1531
1554
|
number: factories.string(),
|
|
@@ -2732,6 +2755,11 @@ var factories = {
|
|
|
2732
2755
|
available: arrayOf(function () { return factories['io.flow.common.v0.enums.delivered_duty'](); }),
|
|
2733
2756
|
display: factories['io.flow.experience.v0.enums.delivered_duty_display_type'](),
|
|
2734
2757
|
}); },
|
|
2758
|
+
'io.flow.experience.v0.models.destination_contact_detail': function () { return ({
|
|
2759
|
+
title: factories.string(),
|
|
2760
|
+
country: factories.string(),
|
|
2761
|
+
import_identifier: factories.string(),
|
|
2762
|
+
}); },
|
|
2735
2763
|
'io.flow.experience.v0.models.discount': function () { return ({
|
|
2736
2764
|
discriminator: 'discount',
|
|
2737
2765
|
id: factories.string(),
|
|
@@ -3044,6 +3072,7 @@ var factories = {
|
|
|
3044
3072
|
tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
|
|
3045
3073
|
geo: factories['io.flow.experience.v0.models.order_geo'](),
|
|
3046
3074
|
device_details: factories['io.flow.payment.v0.unions.device_details'](),
|
|
3075
|
+
destination_contact_details: arrayOf(function () { return factories['io.flow.experience.v0.models.destination_contact_detail'](); }),
|
|
3047
3076
|
}); },
|
|
3048
3077
|
'io.flow.experience.v0.models.order_address': function () { return ({
|
|
3049
3078
|
text: factories.string(),
|
|
@@ -4278,7 +4307,7 @@ var factories = {
|
|
|
4278
4307
|
name: factories.string(),
|
|
4279
4308
|
}); },
|
|
4280
4309
|
'io.flow.external.paypal.v1.models.canceled_recurring_billing': function () { return ({
|
|
4281
|
-
expected_refund: factories['io.flow.external.paypal.v1.models.
|
|
4310
|
+
expected_refund: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4282
4311
|
cancellation_details: factories['io.flow.external.paypal.v1.models.cancellation_details'](),
|
|
4283
4312
|
}); },
|
|
4284
4313
|
'io.flow.external.paypal.v1.models.cancellation_details': function () { return ({
|
|
@@ -4294,7 +4323,7 @@ var factories = {
|
|
|
4294
4323
|
}); },
|
|
4295
4324
|
'io.flow.external.paypal.v1.models.credit_not_processed': function () { return ({
|
|
4296
4325
|
issue_type: factories['io.flow.external.paypal.v1.enums.issue_type'](),
|
|
4297
|
-
expected_refund: factories['io.flow.external.paypal.v1.models.
|
|
4326
|
+
expected_refund: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4298
4327
|
cancellation_details: factories['io.flow.external.paypal.v1.models.cancellation_details'](),
|
|
4299
4328
|
product_details: factories['io.flow.external.paypal.v1.models.product_details'](),
|
|
4300
4329
|
service_details: factories['io.flow.external.paypal.v1.models.service_details'](),
|
|
@@ -4307,7 +4336,7 @@ var factories = {
|
|
|
4307
4336
|
disputed_transactions: arrayOf(function () { return factories['io.flow.external.paypal.v1.models.transaction_info'](); }),
|
|
4308
4337
|
reason: factories['io.flow.external.paypal.v1.enums.dispute_reason'](),
|
|
4309
4338
|
status: factories['io.flow.external.paypal.v1.enums.dispute_status'](),
|
|
4310
|
-
dispute_amount: factories['io.flow.external.paypal.v1.models.
|
|
4339
|
+
dispute_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4311
4340
|
fee_policy: factories.object(),
|
|
4312
4341
|
external_reason_code: factories.string(),
|
|
4313
4342
|
dispute_outcome: factories['io.flow.external.paypal.v1.models.dispute_outcome'](),
|
|
@@ -4326,6 +4355,7 @@ var factories = {
|
|
|
4326
4355
|
supporting_info: factories['io.flow.external.paypal.v1.models.supporting_info'](),
|
|
4327
4356
|
allowed_response_options: factories['io.flow.external.paypal.v1.models.allowed_response_options'](),
|
|
4328
4357
|
links: arrayOf(function () { return factories['io.flow.external.paypal.v1.models.link'](); }),
|
|
4358
|
+
previous_status: factories['io.flow.external.paypal.v1.enums.dispute_status'](),
|
|
4329
4359
|
}); },
|
|
4330
4360
|
'io.flow.external.paypal.v1.models.dispute_extension': function () { return ({
|
|
4331
4361
|
merchant_contacted: factories.boolean(),
|
|
@@ -4341,9 +4371,13 @@ var factories = {
|
|
|
4341
4371
|
items: arrayOf(function () { return factories['io.flow.external.paypal.v1.models.dispute_summary'](); }),
|
|
4342
4372
|
links: arrayOf(function () { return factories['io.flow.external.paypal.v1.models.link'](); }),
|
|
4343
4373
|
}); },
|
|
4374
|
+
'io.flow.external.paypal.v1.models.dispute_money': function () { return ({
|
|
4375
|
+
currency_code: factories.string(),
|
|
4376
|
+
value: factories.string(),
|
|
4377
|
+
}); },
|
|
4344
4378
|
'io.flow.external.paypal.v1.models.dispute_outcome': function () { return ({
|
|
4345
4379
|
outcome_code: factories['io.flow.external.paypal.v1.enums.dispute_outcome_code'](),
|
|
4346
|
-
amount_refunded: factories['io.flow.external.paypal.v1.models.
|
|
4380
|
+
amount_refunded: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4347
4381
|
}); },
|
|
4348
4382
|
'io.flow.external.paypal.v1.models.dispute_summary': function () { return ({
|
|
4349
4383
|
dispute_id: factories.string(),
|
|
@@ -4351,7 +4385,7 @@ var factories = {
|
|
|
4351
4385
|
update_time: factories.date_time_iso_8601(),
|
|
4352
4386
|
reason: factories['io.flow.external.paypal.v1.enums.dispute_reason'](),
|
|
4353
4387
|
status: factories['io.flow.external.paypal.v1.enums.dispute_status'](),
|
|
4354
|
-
dispute_amount: factories['io.flow.external.paypal.v1.models.
|
|
4388
|
+
dispute_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4355
4389
|
dispute_life_cycle_stage: factories['io.flow.external.paypal.v1.enums.dispute_life_cycle_stage'](),
|
|
4356
4390
|
links: arrayOf(function () { return factories['io.flow.external.paypal.v1.models.link'](); }),
|
|
4357
4391
|
}); },
|
|
@@ -4389,7 +4423,7 @@ var factories = {
|
|
|
4389
4423
|
transactions: arrayOf(function () { return factories['io.flow.external.paypal.v1.models.transaction'](); }),
|
|
4390
4424
|
}); },
|
|
4391
4425
|
'io.flow.external.paypal.v1.models.incorrect_transaction_amount': function () { return ({
|
|
4392
|
-
correct_transaction_amount: factories['io.flow.external.paypal.v1.models.
|
|
4426
|
+
correct_transaction_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4393
4427
|
correct_transaction_time: factories.date_time_iso_8601(),
|
|
4394
4428
|
}); },
|
|
4395
4429
|
'io.flow.external.paypal.v1.models.item': function () { return ({
|
|
@@ -4407,7 +4441,7 @@ var factories = {
|
|
|
4407
4441
|
item_quantity: factories.string(),
|
|
4408
4442
|
partner_transaction_id: factories.string(),
|
|
4409
4443
|
reason: factories['io.flow.external.paypal.v1.enums.dispute_reason'](),
|
|
4410
|
-
dispute_amount: factories['io.flow.external.paypal.v1.models.
|
|
4444
|
+
dispute_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4411
4445
|
notes: factories.string(),
|
|
4412
4446
|
}); },
|
|
4413
4447
|
'io.flow.external.paypal.v1.models.item_list': function () { return ({
|
|
@@ -4439,14 +4473,14 @@ var factories = {
|
|
|
4439
4473
|
}); },
|
|
4440
4474
|
'io.flow.external.paypal.v1.models.money_movement': function () { return ({
|
|
4441
4475
|
affected_party: factories['io.flow.external.paypal.v1.enums.affected_party'](),
|
|
4442
|
-
amount: factories['io.flow.external.paypal.v1.models.
|
|
4476
|
+
amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4443
4477
|
initiated_time: factories.date_time_iso_8601(),
|
|
4444
4478
|
type: factories['io.flow.external.paypal.v1.enums.money_movement_type'](),
|
|
4445
4479
|
reason: factories['io.flow.external.paypal.v1.enums.money_movement_reason'](),
|
|
4446
4480
|
}); },
|
|
4447
4481
|
'io.flow.external.paypal.v1.models.offer': function () { return ({
|
|
4448
|
-
buyer_requested_amount: factories['io.flow.external.paypal.v1.models.
|
|
4449
|
-
seller_offered_amount: factories['io.flow.external.paypal.v1.models.
|
|
4482
|
+
buyer_requested_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4483
|
+
seller_offered_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4450
4484
|
offer_type: factories['io.flow.external.paypal.v1.enums.offer_type'](),
|
|
4451
4485
|
}); },
|
|
4452
4486
|
'io.flow.external.paypal.v1.models.payer': function () { return ({
|
|
@@ -4538,7 +4572,7 @@ var factories = {
|
|
|
4538
4572
|
update_time: factories.date_time_iso_8601(),
|
|
4539
4573
|
}); },
|
|
4540
4574
|
'io.flow.external.paypal.v1.models.refund_details': function () { return ({
|
|
4541
|
-
allowed_refund_amount: factories['io.flow.external.paypal.v1.models.
|
|
4575
|
+
allowed_refund_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4542
4576
|
}); },
|
|
4543
4577
|
'io.flow.external.paypal.v1.models.refund_id': function () { return ({
|
|
4544
4578
|
refund_id: factories.string(),
|
|
@@ -4656,7 +4690,7 @@ var factories = {
|
|
|
4656
4690
|
reference_id: factories.string(),
|
|
4657
4691
|
create_time: factories.date_time_iso_8601(),
|
|
4658
4692
|
transaction_status: factories['io.flow.external.paypal.v1.enums.transaction_status'](),
|
|
4659
|
-
gross_amount: factories['io.flow.external.paypal.v1.models.
|
|
4693
|
+
gross_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
|
|
4660
4694
|
invoice_number: factories.string(),
|
|
4661
4695
|
custom: factories.string(),
|
|
4662
4696
|
buyer: factories['io.flow.external.paypal.v1.models.buyer'](),
|
|
@@ -6048,11 +6082,12 @@ var factories = {
|
|
|
6048
6082
|
'accounts_with_final_statements_pending_transaction_total',
|
|
6049
6083
|
'edited_order_tax_amount_exceeding_transaction',
|
|
6050
6084
|
'edited_order_duty_amount_exceeding_transaction',
|
|
6085
|
+
'negative_balance_scheduled_count',
|
|
6051
6086
|
'negative_balance_scheduled_total',
|
|
6052
|
-
'
|
|
6053
|
-
'
|
|
6054
|
-
'
|
|
6055
|
-
'
|
|
6087
|
+
'negative_balance_sent_count',
|
|
6088
|
+
'negative_balance_sent_total',
|
|
6089
|
+
'negative_balance_failed_count',
|
|
6090
|
+
'negative_balance_failed_total',
|
|
6056
6091
|
'negative_debit_success_rate',
|
|
6057
6092
|
]); },
|
|
6058
6093
|
'io.flow.internal.v0.enums.billing_statement_attachment_key': function () { return faker.helpers.arrayElement([
|
|
@@ -6098,6 +6133,7 @@ var factories = {
|
|
|
6098
6133
|
'duty',
|
|
6099
6134
|
'trueup',
|
|
6100
6135
|
'carrier_charge',
|
|
6136
|
+
'tax_refund',
|
|
6101
6137
|
]); },
|
|
6102
6138
|
'io.flow.internal.v0.enums.browser_bundle_error_code': function () { return faker.helpers.arrayElement(['generic_error', 'country_invalid']); },
|
|
6103
6139
|
'io.flow.internal.v0.enums.calculator_engine': function () { return faker.helpers.arrayElement([
|
|
@@ -6222,11 +6258,12 @@ var factories = {
|
|
|
6222
6258
|
'io.flow.internal.v0.enums.discount_request_order_entitlement_key': function () { return faker.helpers.arrayElement(['subtotal']); },
|
|
6223
6259
|
'io.flow.internal.v0.enums.dispute_billable': function () { return faker.helpers.arrayElement(['flow', 'organization']); },
|
|
6224
6260
|
'io.flow.internal.v0.enums.dispute_category': function () { return faker.helpers.arrayElement(['friendly_fraud', 'true_fraud', 'processing_error']); },
|
|
6261
|
+
'io.flow.internal.v0.enums.dispute_defense_outcome': function () { return faker.helpers.arrayElement(['defended', 'undefended', 'undefendable']); },
|
|
6225
6262
|
'io.flow.internal.v0.enums.dispute_evidence': function () { return faker.helpers.arrayElement(['proof_of_delivery', 'proof_of_fulfillment', 'other']); },
|
|
6226
6263
|
'io.flow.internal.v0.enums.dispute_import_status': function () { return faker.helpers.arrayElement(['new', 'processing', 'completed', 'failed']); },
|
|
6227
6264
|
'io.flow.internal.v0.enums.dispute_import_type': function () { return faker.helpers.arrayElement(['adyen_dispute', 'paypal_dispute']); },
|
|
6228
6265
|
'io.flow.internal.v0.enums.dispute_liability': function () { return faker.helpers.arrayElement(['flow', 'organization']); },
|
|
6229
|
-
'io.flow.internal.v0.enums.dispute_processor': function () { return faker.helpers.arrayElement(['adyen', 'paypal']); },
|
|
6266
|
+
'io.flow.internal.v0.enums.dispute_processor': function () { return faker.helpers.arrayElement(['adyen', 'paypal', 'stripe']); },
|
|
6230
6267
|
'io.flow.internal.v0.enums.dispute_reporting_category': function () { return faker.helpers.arrayElement(['charge_issues', 'delivery', 'fraud', 'general', 'product', 'returns']); },
|
|
6231
6268
|
'io.flow.internal.v0.enums.dispute_status': function () { return faker.helpers.arrayElement(['pending', 'won', 'lost', 'expired']); },
|
|
6232
6269
|
'io.flow.internal.v0.enums.dispute_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'dispute']); },
|
|
@@ -6247,9 +6284,12 @@ var factories = {
|
|
|
6247
6284
|
]); },
|
|
6248
6285
|
'io.flow.internal.v0.enums.duty_simple_expression_type': function () { return faker.helpers.arrayElement(['free', 'percent', 'per_uom', 'flat']); },
|
|
6249
6286
|
'io.flow.internal.v0.enums.duty_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'duty']); },
|
|
6287
|
+
'io.flow.internal.v0.enums.eldar_item_type': function () { return faker.helpers.arrayElement(['digital', 'physical']); },
|
|
6250
6288
|
'io.flow.internal.v0.enums.empty_attribute': function () { return faker.helpers.arrayElement(['irrelevant']); },
|
|
6251
6289
|
'io.flow.internal.v0.enums.erp_file_type': function () { return faker.helpers.arrayElement(['vendor']); },
|
|
6252
6290
|
'io.flow.internal.v0.enums.event_type': function () { return faker.helpers.arrayElement([
|
|
6291
|
+
'adjusted_estimates_upserted',
|
|
6292
|
+
'adjusted_estimates_deleted',
|
|
6253
6293
|
'adyen_authorization_deleted',
|
|
6254
6294
|
'adyen_authorization_upserted',
|
|
6255
6295
|
'adyen_cancel_deleted',
|
|
@@ -6423,6 +6463,8 @@ var factories = {
|
|
|
6423
6463
|
'ftp_file_to_process_uploaded',
|
|
6424
6464
|
'center_defaults_upserted',
|
|
6425
6465
|
'center_defaults_deleted',
|
|
6466
|
+
'fulfillment_fallbacks_upserted',
|
|
6467
|
+
'fulfillment_fallbacks_deleted',
|
|
6426
6468
|
'pregenerated_request_event',
|
|
6427
6469
|
'quote_upserted',
|
|
6428
6470
|
'quote_deleted',
|
|
@@ -6590,6 +6632,8 @@ var factories = {
|
|
|
6590
6632
|
'svitlana_item_deleted',
|
|
6591
6633
|
'colm_item_upserted',
|
|
6592
6634
|
'colm_item_deleted',
|
|
6635
|
+
'eldar_item_upserted',
|
|
6636
|
+
'eldar_item_deleted',
|
|
6593
6637
|
'harinath_item_upserted',
|
|
6594
6638
|
'harinath_item_deleted',
|
|
6595
6639
|
'konstantin_item_upserted',
|
|
@@ -6616,6 +6660,10 @@ var factories = {
|
|
|
6616
6660
|
'tracking_deleted',
|
|
6617
6661
|
'tracking_assurance_analysis_upserted',
|
|
6618
6662
|
'tracking_assurance_analysis_deleted',
|
|
6663
|
+
'tracking_assurance_job_upserted',
|
|
6664
|
+
'tracking_assurance_job_deleted',
|
|
6665
|
+
'tracking_label_dimensions_upserted',
|
|
6666
|
+
'tracking_label_dimensions_deleted',
|
|
6619
6667
|
'tracking_request_upserted',
|
|
6620
6668
|
'tracking_response_upserted',
|
|
6621
6669
|
'user_upserted_v2',
|
|
@@ -6691,6 +6739,8 @@ var factories = {
|
|
|
6691
6739
|
'merchant_operations',
|
|
6692
6740
|
'globale_system',
|
|
6693
6741
|
]); },
|
|
6742
|
+
'io.flow.internal.v0.enums.label_request_result_organization_type': function () { return faker.helpers.arrayElement(['all', 'legacy_production', 'managed_markets_production', 'sandbox']); },
|
|
6743
|
+
'io.flow.internal.v0.enums.label_request_result_state': function () { return faker.helpers.arrayElement(['success', 'failure']); },
|
|
6694
6744
|
'io.flow.internal.v0.enums.label_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']); },
|
|
6695
6745
|
'io.flow.internal.v0.enums.liability_type': function () { return faker.helpers.arrayElement(['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties']); },
|
|
6696
6746
|
'io.flow.internal.v0.enums.logistics_capability': function () { return faker.helpers.arrayElement(['logistics_address_correction']); },
|
|
@@ -6993,6 +7043,7 @@ var factories = {
|
|
|
6993
7043
|
'webhook_registrations',
|
|
6994
7044
|
'channel_organization_identifier',
|
|
6995
7045
|
'bulk_product_ingestion',
|
|
7046
|
+
'bulk_duty_update',
|
|
6996
7047
|
]); },
|
|
6997
7048
|
'io.flow.internal.v0.enums.shopify_markets_trade_sector': function () { return faker.helpers.arrayElement([
|
|
6998
7049
|
'apparel_and_accessories',
|
|
@@ -7053,9 +7104,10 @@ var factories = {
|
|
|
7053
7104
|
]); },
|
|
7054
7105
|
'io.flow.internal.v0.enums.tax_calculation_error_code': function () { return faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']); },
|
|
7055
7106
|
'io.flow.internal.v0.enums.tax_party': function () { return faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']); },
|
|
7056
|
-
'io.flow.internal.v0.enums.tax_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'tax']); },
|
|
7107
|
+
'io.flow.internal.v0.enums.tax_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']); },
|
|
7057
7108
|
'io.flow.internal.v0.enums.thiago_item_type': function () { return faker.helpers.arrayElement(['digital', 'physical']); },
|
|
7058
7109
|
'io.flow.internal.v0.enums.tracking_integration_type': function () { return faker.helpers.arrayElement(['api', 'bulk', 'aftership']); },
|
|
7110
|
+
'io.flow.internal.v0.enums.tracking_label_dimensions_source': function () { return faker.helpers.arrayElement(['aftership', 'carrier_api']); },
|
|
7059
7111
|
'io.flow.internal.v0.enums.tracking_processing_failure_classification': function () { return faker.helpers.arrayElement([
|
|
7060
7112
|
'tracking_expired',
|
|
7061
7113
|
'expired_tracking_number_new_event',
|
|
@@ -7297,6 +7349,26 @@ var factories = {
|
|
|
7297
7349
|
'io.flow.internal.v0.models.address_configuration_setting_form': function () { return ({
|
|
7298
7350
|
province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
|
|
7299
7351
|
}); },
|
|
7352
|
+
'io.flow.internal.v0.models.adjusted_estimates': function () { return ({
|
|
7353
|
+
id: factories.string(),
|
|
7354
|
+
organization_id: factories.string(),
|
|
7355
|
+
label_id: factories.string(),
|
|
7356
|
+
estimates: arrayOf(function () { return factories['io.flow.label.v0.models.shipping_label_hop_summary'](); }),
|
|
7357
|
+
}); },
|
|
7358
|
+
'io.flow.internal.v0.models.adjusted_estimates_deleted': function () { return ({
|
|
7359
|
+
discriminator: 'adjusted_estimates_deleted',
|
|
7360
|
+
event_id: factories.string(),
|
|
7361
|
+
timestamp: factories.date_time_iso_8601(),
|
|
7362
|
+
organization: factories.string(),
|
|
7363
|
+
id: factories.string(),
|
|
7364
|
+
}); },
|
|
7365
|
+
'io.flow.internal.v0.models.adjusted_estimates_upserted': function () { return ({
|
|
7366
|
+
discriminator: 'adjusted_estimates_upserted',
|
|
7367
|
+
event_id: factories.string(),
|
|
7368
|
+
timestamp: factories.date_time_iso_8601(),
|
|
7369
|
+
organization: factories.string(),
|
|
7370
|
+
adjusted_estimates: factories['io.flow.internal.v0.models.adjusted_estimates'](),
|
|
7371
|
+
}); },
|
|
7300
7372
|
'io.flow.internal.v0.models.adjustment_amount_fixed': function () { return ({
|
|
7301
7373
|
discriminator: 'fixed',
|
|
7302
7374
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -7689,6 +7761,13 @@ var factories = {
|
|
|
7689
7761
|
'io.flow.internal.v0.models.apply_at_value_form': function () { return ({
|
|
7690
7762
|
value: factories.date_time_iso_8601(),
|
|
7691
7763
|
}); },
|
|
7764
|
+
'io.flow.internal.v0.models.attempt_statistics': function () { return ({
|
|
7765
|
+
merchant_count: factories.long(),
|
|
7766
|
+
amount: factories.decimal(),
|
|
7767
|
+
failed_merchant_count: factories.long(),
|
|
7768
|
+
failed_amount: factories.decimal(),
|
|
7769
|
+
success_ratio: factories.double(),
|
|
7770
|
+
}); },
|
|
7692
7771
|
'io.flow.internal.v0.models.attribute_label': function () { return ({
|
|
7693
7772
|
value: factories.string(),
|
|
7694
7773
|
unverified: factories.boolean(),
|
|
@@ -7992,6 +8071,7 @@ var factories = {
|
|
|
7992
8071
|
trueup: factories['io.flow.common.v0.models.price'](),
|
|
7993
8072
|
carrier_charge: factories['io.flow.common.v0.models.price'](),
|
|
7994
8073
|
ending_balance: factories['io.flow.common.v0.models.price'](),
|
|
8074
|
+
tax_refund: factories['io.flow.common.v0.models.price'](),
|
|
7995
8075
|
}); },
|
|
7996
8076
|
'io.flow.internal.v0.models.billing_statement_upserted': function () { return ({
|
|
7997
8077
|
discriminator: 'billing_statement_upserted',
|
|
@@ -8124,6 +8204,11 @@ var factories = {
|
|
|
8124
8204
|
discriminator: 'bulk',
|
|
8125
8205
|
actions: arrayOf(function () { return factories['io.flow.internal.v0.models.single_classification_action'](); }),
|
|
8126
8206
|
}); },
|
|
8207
|
+
'io.flow.internal.v0.models.bulk_duty_update_validation_error': function () { return ({
|
|
8208
|
+
message: factories.string(),
|
|
8209
|
+
reason: factories.string(),
|
|
8210
|
+
next_action_from: factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'](),
|
|
8211
|
+
}); },
|
|
8127
8212
|
'io.flow.internal.v0.models.calculated_tax_amount': function () { return ({
|
|
8128
8213
|
discriminator: 'calculated_tax_amount',
|
|
8129
8214
|
amount: factories.decimal(),
|
|
@@ -9079,6 +9164,17 @@ var factories = {
|
|
|
9079
9164
|
status: factories['io.flow.internal.v0.enums.unclassified_product_status'](),
|
|
9080
9165
|
customs_description_suggestions: arrayOf(function () { return factories['io.flow.internal.v0.models.customs_description_suggestion'](); }),
|
|
9081
9166
|
}); },
|
|
9167
|
+
'io.flow.internal.v0.models.classification_merchant': function () { return ({
|
|
9168
|
+
MerchantId: factories.string(),
|
|
9169
|
+
PlatformId: factories['io.flow.internal.v0.enums.classification_platform'](),
|
|
9170
|
+
Name: factories.string(),
|
|
9171
|
+
DateLastUpdated: factories.date_time_iso_8601(),
|
|
9172
|
+
Order: factories.integer(),
|
|
9173
|
+
}); },
|
|
9174
|
+
'io.flow.internal.v0.models.classification_merchant_envelope': function () { return ({
|
|
9175
|
+
messageType: arrayOf(function () { return factories.string(); }),
|
|
9176
|
+
message: factories['io.flow.internal.v0.models.classification_merchant'](),
|
|
9177
|
+
}); },
|
|
9082
9178
|
'io.flow.internal.v0.models.classification_product': function () { return ({
|
|
9083
9179
|
organization_id: factories.string(),
|
|
9084
9180
|
product_id: factories.string(),
|
|
@@ -9230,11 +9326,13 @@ var factories = {
|
|
|
9230
9326
|
transaction_date: factories.string(),
|
|
9231
9327
|
origin: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
9232
9328
|
destination: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
9329
|
+
billing_address: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
9233
9330
|
service: factories.string(),
|
|
9234
9331
|
flow_tracking_number: factories.string(),
|
|
9235
9332
|
rex_number: factories.string(),
|
|
9236
9333
|
wee_number: factories.string(),
|
|
9237
9334
|
business_gst_numbers: arrayOf(function () { return factories.string(); }),
|
|
9335
|
+
destination_gst_numbers: arrayOf(function () { return factories.string(); }),
|
|
9238
9336
|
vat_name: factories.string(),
|
|
9239
9337
|
shipping_price: factories.string(),
|
|
9240
9338
|
shipment_recipient: factories.string(),
|
|
@@ -9257,6 +9355,7 @@ var factories = {
|
|
|
9257
9355
|
show_us_outbound_signature: factories.boolean(),
|
|
9258
9356
|
show_us_outbound_stamp: factories.boolean(),
|
|
9259
9357
|
invoice_url: factories.string(),
|
|
9358
|
+
invoice_number: factories.string(),
|
|
9260
9359
|
}); },
|
|
9261
9360
|
'io.flow.internal.v0.models.commercial_invoice_internal_deleted': function () { return ({
|
|
9262
9361
|
discriminator: 'commercial_invoice_internal_deleted',
|
|
@@ -9780,9 +9879,11 @@ var factories = {
|
|
|
9780
9879
|
category: factories['io.flow.internal.v0.enums.dispute_category'](),
|
|
9781
9880
|
reporting_category: factories['io.flow.internal.v0.enums.dispute_reporting_category'](),
|
|
9782
9881
|
reason: factories.string(),
|
|
9882
|
+
code: factories.string(),
|
|
9783
9883
|
status: factories['io.flow.internal.v0.enums.dispute_status'](),
|
|
9784
9884
|
liability: factories['io.flow.internal.v0.enums.dispute_liability'](),
|
|
9785
9885
|
billable: factories['io.flow.internal.v0.enums.dispute_billable'](),
|
|
9886
|
+
defense_outcome: factories['io.flow.internal.v0.enums.dispute_defense_outcome'](),
|
|
9786
9887
|
details: factories['io.flow.internal.v0.unions.dispute_details'](),
|
|
9787
9888
|
issued_at: factories.date_time_iso_8601(),
|
|
9788
9889
|
expires_at: factories.date_time_iso_8601(),
|
|
@@ -9799,6 +9900,10 @@ var factories = {
|
|
|
9799
9900
|
organization: factories.string(),
|
|
9800
9901
|
id: factories.string(),
|
|
9801
9902
|
}); },
|
|
9903
|
+
'io.flow.internal.v0.models.dispute_detail': function () { return ({
|
|
9904
|
+
authorization: factories['io.flow.internal.v0.models.search_authorization'](),
|
|
9905
|
+
dispute: factories['io.flow.internal.v0.models.dispute'](),
|
|
9906
|
+
}); },
|
|
9802
9907
|
'io.flow.internal.v0.models.dispute_details_adyen': function () { return ({
|
|
9803
9908
|
discriminator: 'adyen',
|
|
9804
9909
|
psp_reference: factories.string(),
|
|
@@ -9809,6 +9914,7 @@ var factories = {
|
|
|
9809
9914
|
original_transaction_id: factories.string(),
|
|
9810
9915
|
transaction_invoice_id: factories.string(),
|
|
9811
9916
|
case_id: factories.string(),
|
|
9917
|
+
dispute_channel: factories.string(),
|
|
9812
9918
|
}); },
|
|
9813
9919
|
'io.flow.internal.v0.models.dispute_details_stripe': function () { return ({
|
|
9814
9920
|
discriminator: 'stripe',
|
|
@@ -9840,6 +9946,12 @@ var factories = {
|
|
|
9840
9946
|
'io.flow.internal.v0.models.dispute_organization_reference': function () { return ({
|
|
9841
9947
|
id: factories.string(),
|
|
9842
9948
|
}); },
|
|
9949
|
+
'io.flow.internal.v0.models.dispute_override_update_form': function () { return ({
|
|
9950
|
+
billable: factories['io.flow.internal.v0.enums.dispute_billable'](),
|
|
9951
|
+
reporting_category: factories['io.flow.internal.v0.enums.dispute_reporting_category'](),
|
|
9952
|
+
category: factories['io.flow.internal.v0.enums.dispute_category'](),
|
|
9953
|
+
status: factories['io.flow.internal.v0.enums.dispute_status'](),
|
|
9954
|
+
}); },
|
|
9843
9955
|
'io.flow.internal.v0.models.dispute_status_form': function () { return ({
|
|
9844
9956
|
status: factories['io.flow.internal.v0.enums.dispute_status'](),
|
|
9845
9957
|
}); },
|
|
@@ -10023,6 +10135,33 @@ var factories = {
|
|
|
10023
10135
|
timestamp: factories.date_time_iso_8601(),
|
|
10024
10136
|
duty_transaction: factories['io.flow.internal.v0.models.duty_transaction'](),
|
|
10025
10137
|
}); },
|
|
10138
|
+
'io.flow.internal.v0.models.eldar_item': function () { return ({
|
|
10139
|
+
id: factories.string(),
|
|
10140
|
+
number: factories.string(),
|
|
10141
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
10142
|
+
description: factories.string(),
|
|
10143
|
+
type: factories['io.flow.internal.v0.enums.eldar_item_type'](),
|
|
10144
|
+
added_on: factories.date_time_iso_8601(),
|
|
10145
|
+
}); },
|
|
10146
|
+
'io.flow.internal.v0.models.eldar_item_deleted': function () { return ({
|
|
10147
|
+
discriminator: 'eldar_item_deleted',
|
|
10148
|
+
event_id: factories.string(),
|
|
10149
|
+
timestamp: factories.date_time_iso_8601(),
|
|
10150
|
+
id: factories.string(),
|
|
10151
|
+
}); },
|
|
10152
|
+
'io.flow.internal.v0.models.eldar_item_form': function () { return ({
|
|
10153
|
+
number: factories.string(),
|
|
10154
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
10155
|
+
description: factories.string(),
|
|
10156
|
+
type: factories['io.flow.internal.v0.enums.eldar_item_type'](),
|
|
10157
|
+
added_on: factories.date_time_iso_8601(),
|
|
10158
|
+
}); },
|
|
10159
|
+
'io.flow.internal.v0.models.eldar_item_upserted': function () { return ({
|
|
10160
|
+
discriminator: 'eldar_item_upserted',
|
|
10161
|
+
event_id: factories.string(),
|
|
10162
|
+
timestamp: factories.date_time_iso_8601(),
|
|
10163
|
+
item: factories['io.flow.internal.v0.models.eldar_item'](),
|
|
10164
|
+
}); },
|
|
10026
10165
|
'io.flow.internal.v0.models.email_form': function () { return ({
|
|
10027
10166
|
to: arrayOf(function () { return factories.string(); }),
|
|
10028
10167
|
cc: arrayOf(function () { return factories.string(); }),
|
|
@@ -10335,6 +10474,7 @@ var factories = {
|
|
|
10335
10474
|
description: factories.string(),
|
|
10336
10475
|
order_number: factories.string(),
|
|
10337
10476
|
raw_carrier_event_code: factories.string(),
|
|
10477
|
+
aggregator_status_code: factories.string(),
|
|
10338
10478
|
created_at: factories.date_time_iso_8601(),
|
|
10339
10479
|
}); },
|
|
10340
10480
|
'io.flow.internal.v0.models.external_fulfillment_proof': function () { return ({
|
|
@@ -10995,6 +11135,26 @@ var factories = {
|
|
|
10995
11135
|
organization: factories.string(),
|
|
10996
11136
|
id: factories.string(),
|
|
10997
11137
|
}); },
|
|
11138
|
+
'io.flow.internal.v0.models.fulfillment_fallbacks': function () { return ({
|
|
11139
|
+
id: factories.string(),
|
|
11140
|
+
packaging: arrayOf(function () { return factories['io.flow.fulfillment.v0.models.packaging'](); }),
|
|
11141
|
+
contact: factories['io.flow.common.v0.models.contact'](),
|
|
11142
|
+
location: factories['io.flow.common.v0.models.address'](),
|
|
11143
|
+
}); },
|
|
11144
|
+
'io.flow.internal.v0.models.fulfillment_fallbacks_deleted': function () { return ({
|
|
11145
|
+
discriminator: 'fulfillment_fallbacks_deleted',
|
|
11146
|
+
event_id: factories.string(),
|
|
11147
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11148
|
+
organization: factories.string(),
|
|
11149
|
+
id: factories.string(),
|
|
11150
|
+
}); },
|
|
11151
|
+
'io.flow.internal.v0.models.fulfillment_fallbacks_upserted': function () { return ({
|
|
11152
|
+
discriminator: 'fulfillment_fallbacks_upserted',
|
|
11153
|
+
event_id: factories.string(),
|
|
11154
|
+
timestamp: factories.date_time_iso_8601(),
|
|
11155
|
+
organization: factories.string(),
|
|
11156
|
+
fulfillment_fallbacks: factories['io.flow.internal.v0.models.fulfillment_fallbacks'](),
|
|
11157
|
+
}); },
|
|
10998
11158
|
'io.flow.internal.v0.models.fulfillment_internal_experience_reference': function () { return ({
|
|
10999
11159
|
id: factories.string(),
|
|
11000
11160
|
key: factories.string(),
|
|
@@ -11981,6 +12141,21 @@ var factories = {
|
|
|
11981
12141
|
organization: factories.string(),
|
|
11982
12142
|
label_request_error: factories['io.flow.internal.v0.models.label_request_error'](),
|
|
11983
12143
|
}); },
|
|
12144
|
+
'io.flow.internal.v0.models.label_request_result': function () { return ({
|
|
12145
|
+
id: factories.string(),
|
|
12146
|
+
created_at: factories.date_time_iso_8601(),
|
|
12147
|
+
state: factories['io.flow.internal.v0.enums.label_request_result_state'](),
|
|
12148
|
+
organization_id: factories.string(),
|
|
12149
|
+
order_number: factories.string(),
|
|
12150
|
+
label_request_method: factories['io.flow.label.v0.enums.label_request_method'](),
|
|
12151
|
+
carrier_id: factories.string(),
|
|
12152
|
+
carrier_tracking_number: factories.string(),
|
|
12153
|
+
url: factories.string(),
|
|
12154
|
+
error: factories.string(),
|
|
12155
|
+
suggested_responsibility: factories['io.flow.internal.v0.enums.label_request_error_handling_responsibility'](),
|
|
12156
|
+
origin_country: factories.string(),
|
|
12157
|
+
destination_country: factories.string(),
|
|
12158
|
+
}); },
|
|
11984
12159
|
'io.flow.internal.v0.models.label_summary': function () { return ({
|
|
11985
12160
|
id: factories.string(),
|
|
11986
12161
|
commercial_invoice: factories.string(),
|
|
@@ -12838,6 +13013,7 @@ var factories = {
|
|
|
12838
13013
|
duty: factories.decimal(),
|
|
12839
13014
|
freight: factories.decimal(),
|
|
12840
13015
|
total: factories.decimal(),
|
|
13016
|
+
tax_refund: factories.decimal(),
|
|
12841
13017
|
}); },
|
|
12842
13018
|
'io.flow.internal.v0.models.merchant_upserted': function () { return ({
|
|
12843
13019
|
discriminator: 'merchant_upserted',
|
|
@@ -12915,6 +13091,11 @@ var factories = {
|
|
|
12915
13091
|
discriminator: 'percentage',
|
|
12916
13092
|
percent: factories.decimal(),
|
|
12917
13093
|
}); },
|
|
13094
|
+
'io.flow.internal.v0.models.negative_debit_metrics': function () { return ({
|
|
13095
|
+
current_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
|
|
13096
|
+
second_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
|
|
13097
|
+
third_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
|
|
13098
|
+
}); },
|
|
12918
13099
|
'io.flow.internal.v0.models.next_billing_statement': function () { return ({
|
|
12919
13100
|
date: factories.date_time_iso_8601(),
|
|
12920
13101
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
@@ -13154,6 +13335,7 @@ var factories = {
|
|
|
13154
13335
|
created_at: factories.date_time_iso_8601(),
|
|
13155
13336
|
updated_at: factories.date_time_iso_8601(),
|
|
13156
13337
|
shopify_order_id: factories.string(),
|
|
13338
|
+
disputes: arrayOf(function () { return factories['io.flow.internal.v0.models.dispute_detail'](); }),
|
|
13157
13339
|
}); },
|
|
13158
13340
|
'io.flow.internal.v0.models.order_fulfillment_deleted': function () { return ({
|
|
13159
13341
|
discriminator: 'order_fulfillment_deleted',
|
|
@@ -13322,6 +13504,8 @@ var factories = {
|
|
|
13322
13504
|
resolved_at: factories.date_time_iso_8601(),
|
|
13323
13505
|
last_failure: factories['io.flow.internal.v0.models.last_failure_summary'](),
|
|
13324
13506
|
sla_breach_at: factories.date_time_iso_8601(),
|
|
13507
|
+
capabilities_at_creation: arrayOf(function () { return factories['io.flow.internal.v0.enums.logistics_capability'](); }),
|
|
13508
|
+
first_globale_address_repair_failure_at: factories.date_time_iso_8601(),
|
|
13325
13509
|
}); },
|
|
13326
13510
|
'io.flow.internal.v0.models.order_validation_deleted': function () { return ({
|
|
13327
13511
|
discriminator: 'order_validation_deleted',
|
|
@@ -15076,6 +15260,8 @@ var factories = {
|
|
|
15076
15260
|
tax_inclusive: factories.boolean(),
|
|
15077
15261
|
duty_inclusive: factories.boolean(),
|
|
15078
15262
|
manual_payment: factories.boolean(),
|
|
15263
|
+
partial_fulfillment: factories.boolean(),
|
|
15264
|
+
partial_refund: factories.boolean(),
|
|
15079
15265
|
}); },
|
|
15080
15266
|
'io.flow.internal.v0.models.reporting_fx': function () { return ({
|
|
15081
15267
|
shipping: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
@@ -15116,6 +15302,7 @@ var factories = {
|
|
|
15116
15302
|
freight: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15117
15303
|
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15118
15304
|
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15305
|
+
tax_refund: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15119
15306
|
}); },
|
|
15120
15307
|
'io.flow.internal.v0.models.reporting_monetary_value': function () { return ({
|
|
15121
15308
|
transaction: factories.decimal(),
|
|
@@ -16982,6 +17169,22 @@ var factories = {
|
|
|
16982
17169
|
organization: factories.string(),
|
|
16983
17170
|
analysis: factories['io.flow.internal.v0.models.tracking_assurance_analysis'](),
|
|
16984
17171
|
}); },
|
|
17172
|
+
'io.flow.internal.v0.models.tracking_assurance_job': function () { return ({
|
|
17173
|
+
id: factories.string(),
|
|
17174
|
+
created_at: factories.date_time_iso_8601(),
|
|
17175
|
+
}); },
|
|
17176
|
+
'io.flow.internal.v0.models.tracking_assurance_job_deleted': function () { return ({
|
|
17177
|
+
discriminator: 'tracking_assurance_job_deleted',
|
|
17178
|
+
event_id: factories.string(),
|
|
17179
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17180
|
+
id: factories.string(),
|
|
17181
|
+
}); },
|
|
17182
|
+
'io.flow.internal.v0.models.tracking_assurance_job_upserted': function () { return ({
|
|
17183
|
+
discriminator: 'tracking_assurance_job_upserted',
|
|
17184
|
+
event_id: factories.string(),
|
|
17185
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17186
|
+
job: factories['io.flow.internal.v0.models.tracking_assurance_job'](),
|
|
17187
|
+
}); },
|
|
16985
17188
|
'io.flow.internal.v0.models.tracking_debug_force_transit_form': function () { return ({
|
|
16986
17189
|
description: factories.string(),
|
|
16987
17190
|
}); },
|
|
@@ -17018,6 +17221,28 @@ var factories = {
|
|
|
17018
17221
|
organization: factories.string(),
|
|
17019
17222
|
tracking_label: factories['io.flow.internal.v0.models.export_tracking_label'](),
|
|
17020
17223
|
}); },
|
|
17224
|
+
'io.flow.internal.v0.models.tracking_label_dimensions': function () { return ({
|
|
17225
|
+
id: factories.string(),
|
|
17226
|
+
organization_id: factories.string(),
|
|
17227
|
+
tracking_label_id: factories.string(),
|
|
17228
|
+
source: factories['io.flow.internal.v0.enums.tracking_label_dimensions_source'](),
|
|
17229
|
+
created_at: factories.date_time_iso_8601(),
|
|
17230
|
+
dimensions: factories['io.flow.common.v0.models.dimensions'](),
|
|
17231
|
+
}); },
|
|
17232
|
+
'io.flow.internal.v0.models.tracking_label_dimensions_deleted': function () { return ({
|
|
17233
|
+
discriminator: 'tracking_label_dimensions_deleted',
|
|
17234
|
+
event_id: factories.string(),
|
|
17235
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17236
|
+
organization: factories.string(),
|
|
17237
|
+
id: factories.string(),
|
|
17238
|
+
}); },
|
|
17239
|
+
'io.flow.internal.v0.models.tracking_label_dimensions_upserted': function () { return ({
|
|
17240
|
+
discriminator: 'tracking_label_dimensions_upserted',
|
|
17241
|
+
event_id: factories.string(),
|
|
17242
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17243
|
+
organization: factories.string(),
|
|
17244
|
+
tracking_label_dimensions: factories['io.flow.internal.v0.models.tracking_label_dimensions'](),
|
|
17245
|
+
}); },
|
|
17021
17246
|
'io.flow.internal.v0.models.tracking_label_event_deleted_v2': function () { return ({
|
|
17022
17247
|
discriminator: 'tracking_label_event_deleted_v2',
|
|
17023
17248
|
event_id: factories.string(),
|
|
@@ -17533,6 +17758,8 @@ var factories = {
|
|
|
17533
17758
|
},
|
|
17534
17759
|
'io.flow.internal.v0.unions.event': function () {
|
|
17535
17760
|
var f = faker.helpers.arrayElement([
|
|
17761
|
+
function () { return factories['io.flow.internal.v0.models.adjusted_estimates_upserted'](); },
|
|
17762
|
+
function () { return factories['io.flow.internal.v0.models.adjusted_estimates_deleted'](); },
|
|
17536
17763
|
function () { return factories['io.flow.internal.v0.models.adyen_authorization_deleted'](); },
|
|
17537
17764
|
function () { return factories['io.flow.internal.v0.models.adyen_authorization_upserted'](); },
|
|
17538
17765
|
function () { return factories['io.flow.internal.v0.models.adyen_cancel_deleted'](); },
|
|
@@ -17706,6 +17933,8 @@ var factories = {
|
|
|
17706
17933
|
function () { return factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded'](); },
|
|
17707
17934
|
function () { return factories['io.flow.internal.v0.models.center_defaults_upserted'](); },
|
|
17708
17935
|
function () { return factories['io.flow.internal.v0.models.center_defaults_deleted'](); },
|
|
17936
|
+
function () { return factories['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'](); },
|
|
17937
|
+
function () { return factories['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'](); },
|
|
17709
17938
|
function () { return factories['io.flow.internal.v0.models.pregenerated_request_event'](); },
|
|
17710
17939
|
function () { return factories['io.flow.internal.v0.models.quote_upserted'](); },
|
|
17711
17940
|
function () { return factories['io.flow.internal.v0.models.quote_deleted'](); },
|
|
@@ -17873,6 +18102,8 @@ var factories = {
|
|
|
17873
18102
|
function () { return factories['io.flow.internal.v0.models.svitlana_item_deleted'](); },
|
|
17874
18103
|
function () { return factories['io.flow.internal.v0.models.colm_item_upserted'](); },
|
|
17875
18104
|
function () { return factories['io.flow.internal.v0.models.colm_item_deleted'](); },
|
|
18105
|
+
function () { return factories['io.flow.internal.v0.models.eldar_item_upserted'](); },
|
|
18106
|
+
function () { return factories['io.flow.internal.v0.models.eldar_item_deleted'](); },
|
|
17876
18107
|
function () { return factories['io.flow.internal.v0.models.harinath_item_upserted'](); },
|
|
17877
18108
|
function () { return factories['io.flow.internal.v0.models.harinath_item_deleted'](); },
|
|
17878
18109
|
function () { return factories['io.flow.internal.v0.models.konstantin_item_upserted'](); },
|
|
@@ -17899,6 +18130,10 @@ var factories = {
|
|
|
17899
18130
|
function () { return factories['io.flow.internal.v0.models.tracking_deleted'](); },
|
|
17900
18131
|
function () { return factories['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'](); },
|
|
17901
18132
|
function () { return factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'](); },
|
|
18133
|
+
function () { return factories['io.flow.internal.v0.models.tracking_assurance_job_upserted'](); },
|
|
18134
|
+
function () { return factories['io.flow.internal.v0.models.tracking_assurance_job_deleted'](); },
|
|
18135
|
+
function () { return factories['io.flow.internal.v0.models.tracking_label_dimensions_upserted'](); },
|
|
18136
|
+
function () { return factories['io.flow.internal.v0.models.tracking_label_dimensions_deleted'](); },
|
|
17902
18137
|
function () { return factories['io.flow.internal.v0.models.tracking_request_upserted'](); },
|
|
17903
18138
|
function () { return factories['io.flow.internal.v0.models.tracking_response_upserted'](); },
|
|
17904
18139
|
function () { return factories['io.flow.internal.v0.models.user_upserted_v2'](); },
|
|
@@ -19565,6 +19800,9 @@ var factories = {
|
|
|
19565
19800
|
'twint',
|
|
19566
19801
|
'przelewy24',
|
|
19567
19802
|
'mobilepay',
|
|
19803
|
+
'grabpay',
|
|
19804
|
+
'vipps',
|
|
19805
|
+
'kcp_creditcard',
|
|
19568
19806
|
]); },
|
|
19569
19807
|
'io.flow.payment.gateway.v0.models.action_display_inline_window': function () { return ({
|
|
19570
19808
|
type: 'display_inline_window',
|
|
@@ -19879,11 +20117,19 @@ var factories = {
|
|
|
19879
20117
|
type: 'init_googlepay',
|
|
19880
20118
|
reference: factories.string(),
|
|
19881
20119
|
}); },
|
|
20120
|
+
'io.flow.payment.gateway.v0.models.payment_method_data_init_grabpay': function () { return ({
|
|
20121
|
+
type: 'init_grabpay',
|
|
20122
|
+
reference: factories.string(),
|
|
20123
|
+
}); },
|
|
19882
20124
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_ideal': function () { return ({
|
|
19883
20125
|
type: 'init_ideal',
|
|
19884
20126
|
issuer: factories.string(),
|
|
19885
20127
|
reference: factories.string(),
|
|
19886
20128
|
}); },
|
|
20129
|
+
'io.flow.payment.gateway.v0.models.payment_method_data_init_kcp_creditcard': function () { return ({
|
|
20130
|
+
type: 'init_kcp_creditcard',
|
|
20131
|
+
reference: factories.string(),
|
|
20132
|
+
}); },
|
|
19887
20133
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_klarna': function () { return ({
|
|
19888
20134
|
type: 'init_klarna',
|
|
19889
20135
|
reference: factories.string(),
|
|
@@ -19908,6 +20154,10 @@ var factories = {
|
|
|
19908
20154
|
type: 'init_twint',
|
|
19909
20155
|
reference: factories.string(),
|
|
19910
20156
|
}); },
|
|
20157
|
+
'io.flow.payment.gateway.v0.models.payment_method_data_init_vipps': function () { return ({
|
|
20158
|
+
type: 'init_vipps',
|
|
20159
|
+
reference: factories.string(),
|
|
20160
|
+
}); },
|
|
19911
20161
|
'io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg': function () { return ({
|
|
19912
20162
|
type: 'svg',
|
|
19913
20163
|
url: factories.string(),
|
|
@@ -19959,11 +20209,19 @@ var factories = {
|
|
|
19959
20209
|
type: 'googlepay',
|
|
19960
20210
|
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
19961
20211
|
}); },
|
|
20212
|
+
'io.flow.payment.gateway.v0.models.payment_method_summary_grabpay': function () { return ({
|
|
20213
|
+
type: 'grabpay',
|
|
20214
|
+
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
20215
|
+
}); },
|
|
19962
20216
|
'io.flow.payment.gateway.v0.models.payment_method_summary_ideal': function () { return ({
|
|
19963
20217
|
type: 'ideal',
|
|
19964
20218
|
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
19965
20219
|
issuer: factories.string(),
|
|
19966
20220
|
}); },
|
|
20221
|
+
'io.flow.payment.gateway.v0.models.payment_method_summary_kcp_creditcard': function () { return ({
|
|
20222
|
+
type: 'kcp_creditcard',
|
|
20223
|
+
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
20224
|
+
}); },
|
|
19967
20225
|
'io.flow.payment.gateway.v0.models.payment_method_summary_klarna': function () { return ({
|
|
19968
20226
|
type: 'klarna',
|
|
19969
20227
|
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
@@ -19988,6 +20246,10 @@ var factories = {
|
|
|
19988
20246
|
type: 'twint',
|
|
19989
20247
|
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
19990
20248
|
}); },
|
|
20249
|
+
'io.flow.payment.gateway.v0.models.payment_method_summary_vipps': function () { return ({
|
|
20250
|
+
type: 'vipps',
|
|
20251
|
+
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
20252
|
+
}); },
|
|
19991
20253
|
'io.flow.payment.gateway.v0.models.payment_order_details_line_item': function () { return ({
|
|
19992
20254
|
id: factories.string(),
|
|
19993
20255
|
description: factories.string(),
|
|
@@ -20183,7 +20445,10 @@ var factories = {
|
|
|
20183
20445
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_init_twint'](); },
|
|
20184
20446
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_init_przelewy24'](); },
|
|
20185
20447
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay'](); },
|
|
20448
|
+
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_init_kcp_creditcard'](); },
|
|
20186
20449
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'](); },
|
|
20450
|
+
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_init_grabpay'](); },
|
|
20451
|
+
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_init_vipps'](); },
|
|
20187
20452
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'](); },
|
|
20188
20453
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_authorize_card'](); },
|
|
20189
20454
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay'](); },
|
|
@@ -20232,10 +20497,13 @@ var factories = {
|
|
|
20232
20497
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_paypal'](); },
|
|
20233
20498
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'](); },
|
|
20234
20499
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_twint'](); },
|
|
20500
|
+
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_vipps'](); },
|
|
20235
20501
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_przelewy24'](); },
|
|
20236
20502
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_mobilepay'](); },
|
|
20503
|
+
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_kcp_creditcard'](); },
|
|
20237
20504
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_sofort'](); },
|
|
20238
20505
|
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_bancontact'](); },
|
|
20506
|
+
function () { return factories['io.flow.payment.gateway.v0.models.payment_method_summary_grabpay'](); },
|
|
20239
20507
|
]);
|
|
20240
20508
|
return f();
|
|
20241
20509
|
},
|
|
@@ -20342,6 +20610,20 @@ var factories = {
|
|
|
20342
20610
|
]); },
|
|
20343
20611
|
'io.flow.payment.v0.enums.payment_source_confirmation_action_type': function () { return faker.helpers.arrayElement(['cvv', 'billing_address', 'number']); },
|
|
20344
20612
|
'io.flow.payment.v0.enums.refund_decline_code': function () { return faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']); },
|
|
20613
|
+
'io.flow.payment.v0.enums.refund_failure_category': function () { return faker.helpers.arrayElement([
|
|
20614
|
+
'amount_too_high',
|
|
20615
|
+
'amount_too_low',
|
|
20616
|
+
'not_enough_balance',
|
|
20617
|
+
'insufficient_funds',
|
|
20618
|
+
'refund_period_expired',
|
|
20619
|
+
'dispute',
|
|
20620
|
+
'not_captured',
|
|
20621
|
+
'unsupported_payment_method',
|
|
20622
|
+
'unsupported_partial_refund',
|
|
20623
|
+
'invalid_currency',
|
|
20624
|
+
'card_no_longer_valid',
|
|
20625
|
+
'general',
|
|
20626
|
+
]); },
|
|
20345
20627
|
'io.flow.payment.v0.enums.refund_status': function () { return faker.helpers.arrayElement(['pending', 'succeeded', 'failed', 'canceled']); },
|
|
20346
20628
|
'io.flow.payment.v0.enums.reversal_error_code': function () { return faker.helpers.arrayElement([
|
|
20347
20629
|
'amount_exceeds_balance',
|
|
@@ -20967,6 +21249,8 @@ var factories = {
|
|
|
20967
21249
|
attributes: objectOf(function () { return factories.string(); }),
|
|
20968
21250
|
status: factories['io.flow.payment.v0.enums.refund_status'](),
|
|
20969
21251
|
base: factories['io.flow.common.v0.models.money'](),
|
|
21252
|
+
failure_category: factories['io.flow.payment.v0.enums.refund_failure_category'](),
|
|
21253
|
+
failure_psp_reason: factories.string(),
|
|
20970
21254
|
}); },
|
|
20971
21255
|
'io.flow.payment.v0.models.refund_capture': function () { return ({
|
|
20972
21256
|
id: factories.string(),
|
|
@@ -23650,6 +23934,11 @@ var factories = {
|
|
|
23650
23934
|
'duty_exclusive_tax_inclusive',
|
|
23651
23935
|
'duty_inclusive_tax_inclusive',
|
|
23652
23936
|
]); },
|
|
23937
|
+
'io.flow.shopify.markets.internal.v0.models.bulk_duty_update_validation_error': function () { return ({
|
|
23938
|
+
message: factories.string(),
|
|
23939
|
+
reason: factories.string(),
|
|
23940
|
+
next_action_from: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'](),
|
|
23941
|
+
}); },
|
|
23653
23942
|
'io.flow.shopify.markets.internal.v0.models.catalog_publication_sync_validation_error': function () { return ({
|
|
23654
23943
|
message: factories.string(),
|
|
23655
23944
|
reason: factories.string(),
|
|
@@ -24376,6 +24665,7 @@ var factories = {
|
|
|
24376
24665
|
id: factories.long(),
|
|
24377
24666
|
}); },
|
|
24378
24667
|
'io.flow.shopify.markets.v0.models.shopify_order_line_item': function () { return ({
|
|
24668
|
+
current_quantity: factories.long(),
|
|
24379
24669
|
fulfillable_quantity: factories.long(),
|
|
24380
24670
|
fulfillment_status: factories['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type'](),
|
|
24381
24671
|
grams: factories.double(),
|
|
@@ -24470,6 +24760,7 @@ var factories = {
|
|
|
24470
24760
|
location_id: factories.long(),
|
|
24471
24761
|
subtotal: factories.decimal(),
|
|
24472
24762
|
total_tax: factories.decimal(),
|
|
24763
|
+
total_tax_set: factories['io.flow.shopify.markets.v0.models.shopify_order_money_set'](),
|
|
24473
24764
|
}); },
|
|
24474
24765
|
'io.flow.shopify.markets.v0.models.shopify_order_shipping_line': function () { return ({
|
|
24475
24766
|
code: factories.string(),
|
|
@@ -24532,6 +24823,12 @@ var factories = {
|
|
|
24532
24823
|
due_in_days: factories.long(),
|
|
24533
24824
|
payment_schedules: factories['io.flow.shopify.markets.v0.models.shopify_payment_schedules'](),
|
|
24534
24825
|
}); },
|
|
24826
|
+
'io.flow.shopify.markets.v0.models.shopify_product_variant_inventory_item_wrapper': function () { return ({
|
|
24827
|
+
product_id: factories.long(),
|
|
24828
|
+
variant_id: factories.long(),
|
|
24829
|
+
harmonized_system_code: factories.string(),
|
|
24830
|
+
country_harmonized_system_codes: arrayOf(function () { return factories['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'](); }),
|
|
24831
|
+
}); },
|
|
24535
24832
|
'io.flow.shopify.markets.v0.models.shopify_refund': function () { return ({
|
|
24536
24833
|
notify_x: factories.boolean(),
|
|
24537
24834
|
note: factories.string(),
|
|
@@ -25302,7 +25599,15 @@ var factories = {
|
|
|
25302
25599
|
'it-CH',
|
|
25303
25600
|
'en-CH',
|
|
25304
25601
|
]); },
|
|
25305
|
-
'io.flow.stripe.v0.enums.refund_failure_reason': function () { return faker.helpers.arrayElement([
|
|
25602
|
+
'io.flow.stripe.v0.enums.refund_failure_reason': function () { return faker.helpers.arrayElement([
|
|
25603
|
+
'charge_for_pending_refund_disputed',
|
|
25604
|
+
'declined',
|
|
25605
|
+
'expired_or_canceled_card',
|
|
25606
|
+
'insufficient_funds',
|
|
25607
|
+
'lost_or_stolen_card',
|
|
25608
|
+
'merchant_request',
|
|
25609
|
+
'unknown',
|
|
25610
|
+
]); },
|
|
25306
25611
|
'io.flow.stripe.v0.enums.refund_reason': function () { return faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']); },
|
|
25307
25612
|
'io.flow.stripe.v0.enums.refund_status': function () { return faker.helpers.arrayElement(['succeeded', 'failed', 'pending', 'canceled']); },
|
|
25308
25613
|
'io.flow.stripe.v0.enums.request_three_d_secure_type': function () { return faker.helpers.arrayElement(['automatic', 'any']); },
|
|
@@ -26533,6 +26838,7 @@ var factories = {
|
|
|
26533
26838
|
in_transit: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
26534
26839
|
delivered: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
26535
26840
|
rejected: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
26841
|
+
returned: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
|
|
26536
26842
|
}); },
|
|
26537
26843
|
'io.flow.tracking.v0.models.label_tracking_summary_update': function () { return ({
|
|
26538
26844
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -26730,6 +27036,9 @@ export var makeAddressConfigurationProvinceSetting = function () { return factor
|
|
|
26730
27036
|
export var makeAddressConfigurationSetting = function () { return factories['io.flow.internal.v0.models.address_configuration_setting'](); };
|
|
26731
27037
|
export var makeAddressConfigurationSettingForm = function () { return factories['io.flow.internal.v0.models.address_configuration_setting_form'](); };
|
|
26732
27038
|
export var makeAddressConfigurationSettingProvinceCode = function () { return factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](); };
|
|
27039
|
+
export var makeAdjustedEstimates = function () { return factories['io.flow.internal.v0.models.adjusted_estimates'](); };
|
|
27040
|
+
export var makeAdjustedEstimatesDeleted = function () { return factories['io.flow.internal.v0.models.adjusted_estimates_deleted'](); };
|
|
27041
|
+
export var makeAdjustedEstimatesUpserted = function () { return factories['io.flow.internal.v0.models.adjusted_estimates_upserted'](); };
|
|
26733
27042
|
export var makeAdjustmentAmount = function () { return factories['io.flow.internal.v0.unions.adjustment_amount'](); };
|
|
26734
27043
|
export var makeAdjustmentAmountFixed = function () { return factories['io.flow.internal.v0.models.adjustment_amount_fixed'](); };
|
|
26735
27044
|
export var makeAdjustmentAmountPercentage = function () { return factories['io.flow.internal.v0.models.adjustment_amount_percentage'](); };
|
|
@@ -26797,6 +27106,7 @@ export var makeApiCallReferenceId = function () { return factories['io.flow.inte
|
|
|
26797
27106
|
export var makeApmContent = function () { return factories['io.flow.internal.v0.models.apm_content'](); };
|
|
26798
27107
|
export var makeApplePayAuthorizationPayload = function () { return factories['io.flow.internal.v0.models.apple_pay_authorization_payload'](); };
|
|
26799
27108
|
export var makeApplyAtValueForm = function () { return factories['io.flow.internal.v0.models.apply_at_value_form'](); };
|
|
27109
|
+
export var makeAttemptStatistics = function () { return factories['io.flow.internal.v0.models.attempt_statistics'](); };
|
|
26800
27110
|
export var makeAttributeLabel = function () { return factories['io.flow.internal.v0.models.attribute_label'](); };
|
|
26801
27111
|
export var makeAuthenticationForm = function () { return factories['io.flow.internal.v0.models.authentication_form'](); };
|
|
26802
27112
|
export var makeAuthorizationBundle = function () { return factories['io.flow.internal.v0.models.authorization_bundle'](); };
|
|
@@ -26881,6 +27191,7 @@ export var makeBrowserBundlePaymentMethod = function () { return factories['io.f
|
|
|
26881
27191
|
export var makeBrowserBundlePaymentMethodForm = function () { return factories['io.flow.internal.v0.models.browser_bundle_payment_method_form'](); };
|
|
26882
27192
|
export var makeBrowserBundlePaymentMethods = function () { return factories['io.flow.internal.v0.models.browser_bundle_payment_methods'](); };
|
|
26883
27193
|
export var makeBulkClassificationAction = function () { return factories['io.flow.internal.v0.models.bulk_classification_action'](); };
|
|
27194
|
+
export var makeBulkDutyUpdateValidationError = function () { return factories['io.flow.internal.v0.models.bulk_duty_update_validation_error'](); };
|
|
26884
27195
|
export var makeCalculatedTaxAmount = function () { return factories['io.flow.internal.v0.models.calculated_tax_amount'](); };
|
|
26885
27196
|
export var makeCalculationStampingLineItem = function () { return factories['io.flow.internal.v0.models.calculation_stamping_line_item'](); };
|
|
26886
27197
|
export var makeCalculationStampingShippingLine = function () { return factories['io.flow.internal.v0.models.calculation_stamping_shipping_line'](); };
|
|
@@ -27061,6 +27372,8 @@ export var makeClassificationFormWrapper = function () { return factories['io.fl
|
|
|
27061
27372
|
export var makeClassificationItem = function () { return factories['io.flow.internal.v0.models.classification_item'](); };
|
|
27062
27373
|
export var makeClassificationJudgementForm = function () { return factories['io.flow.internal.v0.unions.classification_judgement_form'](); };
|
|
27063
27374
|
export var makeClassificationLabelAttribute = function () { return factories['io.flow.internal.v0.unions.classification_label_attribute'](); };
|
|
27375
|
+
export var makeClassificationMerchant = function () { return factories['io.flow.internal.v0.models.classification_merchant'](); };
|
|
27376
|
+
export var makeClassificationMerchantEnvelope = function () { return factories['io.flow.internal.v0.models.classification_merchant_envelope'](); };
|
|
27064
27377
|
export var makeClassificationPlatform = function () { return factories['io.flow.internal.v0.enums.classification_platform'](); };
|
|
27065
27378
|
export var makeClassificationProduct = function () { return factories['io.flow.internal.v0.models.classification_product'](); };
|
|
27066
27379
|
export var makeClassificationProductHarmonization = function () { return factories['io.flow.internal.v0.models.classification_product_harmonization'](); };
|
|
@@ -27198,7 +27511,9 @@ export var makeDispute = function () { return factories['io.flow.internal.v0.mod
|
|
|
27198
27511
|
export var makeDisputeAuthorizationReference = function () { return factories['io.flow.internal.v0.models.dispute_authorization_reference'](); };
|
|
27199
27512
|
export var makeDisputeBillable = function () { return factories['io.flow.internal.v0.enums.dispute_billable'](); };
|
|
27200
27513
|
export var makeDisputeCategory = function () { return factories['io.flow.internal.v0.enums.dispute_category'](); };
|
|
27514
|
+
export var makeDisputeDefenseOutcome = function () { return factories['io.flow.internal.v0.enums.dispute_defense_outcome'](); };
|
|
27201
27515
|
export var makeDisputeDeleted = function () { return factories['io.flow.internal.v0.models.dispute_deleted'](); };
|
|
27516
|
+
export var makeDisputeDetail = function () { return factories['io.flow.internal.v0.models.dispute_detail'](); };
|
|
27202
27517
|
export var makeDisputeDetails = function () { return factories['io.flow.internal.v0.unions.dispute_details'](); };
|
|
27203
27518
|
export var makeDisputeDetailsAdyen = function () { return factories['io.flow.internal.v0.models.dispute_details_adyen'](); };
|
|
27204
27519
|
export var makeDisputeDetailsPaypal = function () { return factories['io.flow.internal.v0.models.dispute_details_paypal'](); };
|
|
@@ -27213,6 +27528,7 @@ export var makeDisputeImportType = function () { return factories['io.flow.inter
|
|
|
27213
27528
|
export var makeDisputeLiability = function () { return factories['io.flow.internal.v0.enums.dispute_liability'](); };
|
|
27214
27529
|
export var makeDisputeOrderReference = function () { return factories['io.flow.internal.v0.models.dispute_order_reference'](); };
|
|
27215
27530
|
export var makeDisputeOrganizationReference = function () { return factories['io.flow.internal.v0.models.dispute_organization_reference'](); };
|
|
27531
|
+
export var makeDisputeOverrideUpdateForm = function () { return factories['io.flow.internal.v0.models.dispute_override_update_form'](); };
|
|
27216
27532
|
export var makeDisputeProcessor = function () { return factories['io.flow.internal.v0.enums.dispute_processor'](); };
|
|
27217
27533
|
export var makeDisputeReportingCategory = function () { return factories['io.flow.internal.v0.enums.dispute_reporting_category'](); };
|
|
27218
27534
|
export var makeDisputeStatus = function () { return factories['io.flow.internal.v0.enums.dispute_status'](); };
|
|
@@ -27251,6 +27567,11 @@ export var makeDutyTransaction = function () { return factories['io.flow.interna
|
|
|
27251
27567
|
export var makeDutyTransactionDeleted = function () { return factories['io.flow.internal.v0.models.duty_transaction_deleted'](); };
|
|
27252
27568
|
export var makeDutyTransactionType = function () { return factories['io.flow.internal.v0.enums.duty_transaction_type'](); };
|
|
27253
27569
|
export var makeDutyTransactionUpserted = function () { return factories['io.flow.internal.v0.models.duty_transaction_upserted'](); };
|
|
27570
|
+
export var makeEldarItem = function () { return factories['io.flow.internal.v0.models.eldar_item'](); };
|
|
27571
|
+
export var makeEldarItemDeleted = function () { return factories['io.flow.internal.v0.models.eldar_item_deleted'](); };
|
|
27572
|
+
export var makeEldarItemForm = function () { return factories['io.flow.internal.v0.models.eldar_item_form'](); };
|
|
27573
|
+
export var makeEldarItemType = function () { return factories['io.flow.internal.v0.enums.eldar_item_type'](); };
|
|
27574
|
+
export var makeEldarItemUpserted = function () { return factories['io.flow.internal.v0.models.eldar_item_upserted'](); };
|
|
27254
27575
|
export var makeEmailForm = function () { return factories['io.flow.internal.v0.models.email_form'](); };
|
|
27255
27576
|
export var makeEmailModificationForm = function () { return factories['io.flow.internal.v0.models.email_modification_form'](); };
|
|
27256
27577
|
export var makeEmptyAttribute = function () { return factories['io.flow.internal.v0.enums.empty_attribute'](); };
|
|
@@ -27408,6 +27729,9 @@ export var makeFulfillmentBusiness = function () { return factories['io.flow.int
|
|
|
27408
27729
|
export var makeFulfillmentCancel = function () { return factories['io.flow.internal.v0.models.fulfillment_cancel'](); };
|
|
27409
27730
|
export var makeFulfillmentCarrier = function () { return factories['io.flow.internal.v0.models.fulfillment_carrier'](); };
|
|
27410
27731
|
export var makeFulfillmentDeleted = function () { return factories['io.flow.internal.v0.models.fulfillment_deleted'](); };
|
|
27732
|
+
export var makeFulfillmentFallbacks = function () { return factories['io.flow.internal.v0.models.fulfillment_fallbacks'](); };
|
|
27733
|
+
export var makeFulfillmentFallbacksDeleted = function () { return factories['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'](); };
|
|
27734
|
+
export var makeFulfillmentFallbacksUpserted = function () { return factories['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'](); };
|
|
27411
27735
|
export var makeFulfillmentInternalExperienceReference = function () { return factories['io.flow.internal.v0.models.fulfillment_internal_experience_reference'](); };
|
|
27412
27736
|
export var makeFulfillmentOrigin = function () { return factories['io.flow.internal.v0.models.fulfillment_origin'](); };
|
|
27413
27737
|
export var makeFulfillmentProof = function () { return factories['io.flow.internal.v0.unions.fulfillment_proof'](); };
|
|
@@ -27593,6 +27917,9 @@ export var makeLabelRequestError = function () { return factories['io.flow.inter
|
|
|
27593
27917
|
export var makeLabelRequestErrorDeleted = function () { return factories['io.flow.internal.v0.models.label_request_error_deleted'](); };
|
|
27594
27918
|
export var makeLabelRequestErrorHandlingResponsibility = function () { return factories['io.flow.internal.v0.enums.label_request_error_handling_responsibility'](); };
|
|
27595
27919
|
export var makeLabelRequestErrorUpserted = function () { return factories['io.flow.internal.v0.models.label_request_error_upserted'](); };
|
|
27920
|
+
export var makeLabelRequestResult = function () { return factories['io.flow.internal.v0.models.label_request_result'](); };
|
|
27921
|
+
export var makeLabelRequestResultOrganizationType = function () { return factories['io.flow.internal.v0.enums.label_request_result_organization_type'](); };
|
|
27922
|
+
export var makeLabelRequestResultState = function () { return factories['io.flow.internal.v0.enums.label_request_result_state'](); };
|
|
27596
27923
|
export var makeLabelSummary = function () { return factories['io.flow.internal.v0.models.label_summary'](); };
|
|
27597
27924
|
export var makeLabelSurchargeForm = function () { return factories['io.flow.internal.v0.models.label_surcharge_form'](); };
|
|
27598
27925
|
export var makeLabelSurchargeSingleForm = function () { return factories['io.flow.internal.v0.models.label_surcharge_single_form'](); };
|
|
@@ -27764,6 +28091,7 @@ export var makeMixedBagWeight = function () { return factories['io.flow.internal
|
|
|
27764
28091
|
export var makeMoneyPercentage = function () { return factories['io.flow.internal.v0.models.money_percentage'](); };
|
|
27765
28092
|
export var makeMoneyRule = function () { return factories['io.flow.internal.v0.unions.money_rule'](); };
|
|
27766
28093
|
export var makeNatureOfSale = function () { return factories['io.flow.internal.v0.enums.nature_of_sale'](); };
|
|
28094
|
+
export var makeNegativeDebitMetrics = function () { return factories['io.flow.internal.v0.models.negative_debit_metrics'](); };
|
|
27767
28095
|
export var makeNextBillingStatement = function () { return factories['io.flow.internal.v0.models.next_billing_statement'](); };
|
|
27768
28096
|
export var makeNoCalculatedTaxAmount = function () { return factories['io.flow.internal.v0.models.no_calculated_tax_amount'](); };
|
|
27769
28097
|
export var makeNoClassificationForm = function () { return factories['io.flow.internal.v0.models.no_classification_form'](); };
|
|
@@ -28524,6 +28852,9 @@ export var makeTracker = function () { return factories['io.flow.internal.v0.uni
|
|
|
28524
28852
|
export var makeTrackingAssuranceAnalysis = function () { return factories['io.flow.internal.v0.models.tracking_assurance_analysis'](); };
|
|
28525
28853
|
export var makeTrackingAssuranceAnalysisDeleted = function () { return factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'](); };
|
|
28526
28854
|
export var makeTrackingAssuranceAnalysisUpserted = function () { return factories['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'](); };
|
|
28855
|
+
export var makeTrackingAssuranceJob = function () { return factories['io.flow.internal.v0.models.tracking_assurance_job'](); };
|
|
28856
|
+
export var makeTrackingAssuranceJobDeleted = function () { return factories['io.flow.internal.v0.models.tracking_assurance_job_deleted'](); };
|
|
28857
|
+
export var makeTrackingAssuranceJobUpserted = function () { return factories['io.flow.internal.v0.models.tracking_assurance_job_upserted'](); };
|
|
28527
28858
|
export var makeTrackingDebugForceTransitForm = function () { return factories['io.flow.internal.v0.models.tracking_debug_force_transit_form'](); };
|
|
28528
28859
|
export var makeTrackingDebugLabel = function () { return factories['io.flow.internal.v0.models.tracking_debug_label'](); };
|
|
28529
28860
|
export var makeTrackingDebugLabelEvent = function () { return factories['io.flow.internal.v0.models.tracking_debug_label_event'](); };
|
|
@@ -28532,6 +28863,10 @@ export var makeTrackingDeleted = function () { return factories['io.flow.interna
|
|
|
28532
28863
|
export var makeTrackingEvent = function () { return factories['io.flow.internal.v0.models.tracking_event'](); };
|
|
28533
28864
|
export var makeTrackingIntegrationType = function () { return factories['io.flow.internal.v0.enums.tracking_integration_type'](); };
|
|
28534
28865
|
export var makeTrackingLabelDeleted = function () { return factories['io.flow.internal.v0.models.tracking_label_deleted'](); };
|
|
28866
|
+
export var makeTrackingLabelDimensions = function () { return factories['io.flow.internal.v0.models.tracking_label_dimensions'](); };
|
|
28867
|
+
export var makeTrackingLabelDimensionsDeleted = function () { return factories['io.flow.internal.v0.models.tracking_label_dimensions_deleted'](); };
|
|
28868
|
+
export var makeTrackingLabelDimensionsSource = function () { return factories['io.flow.internal.v0.enums.tracking_label_dimensions_source'](); };
|
|
28869
|
+
export var makeTrackingLabelDimensionsUpserted = function () { return factories['io.flow.internal.v0.models.tracking_label_dimensions_upserted'](); };
|
|
28535
28870
|
export var makeTrackingLabelEventDeletedV2 = function () { return factories['io.flow.internal.v0.models.tracking_label_event_deleted_v2'](); };
|
|
28536
28871
|
export var makeTrackingLabelEventUpsertedV2 = function () { return factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2'](); };
|
|
28537
28872
|
export var makeTrackingLabelUpserted = function () { return factories['io.flow.internal.v0.models.tracking_label_upserted'](); };
|