@flowio/api-internal-factories 0.0.103 → 0.0.104
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 +396 -189
- package/dist/esm/api-internal.js +336 -142
- package/dist/types/api-internal.d.ts +23 -10
- package/package.json +2 -2
- package/src/api-internal.ts +380 -155
package/dist/esm/api-internal.js
CHANGED
|
@@ -554,6 +554,7 @@ var factories = {
|
|
|
554
554
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
555
555
|
trigger: factories['io.flow.billing.accounting.v0.unions.fulfillment_trigger'](),
|
|
556
556
|
fulfilled_at: factories.date_time_iso_8601(),
|
|
557
|
+
carrier: factories['io.flow.billing.accounting.v0.models.fulfillment_carrier'](),
|
|
557
558
|
owner: factories['io.flow.billing.internal.v0.enums.responsible_party'](),
|
|
558
559
|
origin: factories['io.flow.billing.accounting.v0.models.fulfillment_origin'](),
|
|
559
560
|
business: factories['io.flow.billing.accounting.v0.models.fulfillment_business'](),
|
|
@@ -562,6 +563,11 @@ var factories = {
|
|
|
562
563
|
'io.flow.billing.accounting.v0.models.fulfillment_business': function () { return ({
|
|
563
564
|
vat_registration_number: factories.string(),
|
|
564
565
|
}); },
|
|
566
|
+
'io.flow.billing.accounting.v0.models.fulfillment_carrier': function () { return ({
|
|
567
|
+
id: factories.string(),
|
|
568
|
+
service_id: factories.string(),
|
|
569
|
+
tracking_number: factories.string(),
|
|
570
|
+
}); },
|
|
565
571
|
'io.flow.billing.accounting.v0.models.fulfillment_origin': function () { return ({
|
|
566
572
|
country: factories.string(),
|
|
567
573
|
province_code: factories.string(),
|
|
@@ -955,6 +961,9 @@ var factories = {
|
|
|
955
961
|
currency: factories.string(),
|
|
956
962
|
source: factories['io.flow.label.v0.enums.cost_estimate_source'](),
|
|
957
963
|
}); },
|
|
964
|
+
'io.flow.billing.csv.v0.models.billing_csv_merchant_reference': function () { return ({
|
|
965
|
+
id: factories.string(),
|
|
966
|
+
}); },
|
|
958
967
|
'io.flow.billing.csv.v0.models.billing_csv_order': function () { return ({
|
|
959
968
|
number: factories.string(),
|
|
960
969
|
primary_identifier: factories.string(),
|
|
@@ -1089,6 +1098,7 @@ var factories = {
|
|
|
1089
1098
|
}); },
|
|
1090
1099
|
'io.flow.billing.csv.v0.models.billing_csv_transaction_account': function () { return ({
|
|
1091
1100
|
id: factories.string(),
|
|
1101
|
+
merchant: factories['io.flow.billing.csv.v0.models.billing_csv_merchant_reference'](),
|
|
1092
1102
|
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
1093
1103
|
source: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'](),
|
|
1094
1104
|
}); },
|
|
@@ -1119,8 +1129,8 @@ var factories = {
|
|
|
1119
1129
|
shipping_label_revenue_share: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'](),
|
|
1120
1130
|
trueup: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'](),
|
|
1121
1131
|
carrier_charge: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge'](),
|
|
1122
|
-
carrier_fee: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_fee'](),
|
|
1123
1132
|
manual: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'](),
|
|
1133
|
+
failed_payout: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_failed_payout'](),
|
|
1124
1134
|
}); },
|
|
1125
1135
|
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge': function () { return ({
|
|
1126
1136
|
reason: factories['io.flow.trueup.v0.enums.carrier_charge_reason'](),
|
|
@@ -1130,19 +1140,17 @@ var factories = {
|
|
|
1130
1140
|
revenue_share_percentage: factories.decimal(),
|
|
1131
1141
|
outbound_transaction_id: factories.string(),
|
|
1132
1142
|
}); },
|
|
1133
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_fee': function () { return ({
|
|
1134
|
-
outbound_transaction_id: factories.string(),
|
|
1135
|
-
estimate_fixed_ddp: factories.decimal(),
|
|
1136
|
-
estimate_fixed_currency_conversion: factories.decimal(),
|
|
1137
|
-
actual_fixed_ddp: factories.decimal(),
|
|
1138
|
-
actual_fixed_currency_conversion: factories.decimal(),
|
|
1139
|
-
}); },
|
|
1140
1143
|
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel': function () { return ({
|
|
1141
1144
|
method: factories.string(),
|
|
1142
1145
|
card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
1143
1146
|
}); },
|
|
1147
|
+
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_failed_payout': function () { return ({
|
|
1148
|
+
failed_payment: factories['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
1149
|
+
}); },
|
|
1144
1150
|
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual': function () { return ({
|
|
1151
|
+
description: factories.string(),
|
|
1145
1152
|
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
1153
|
+
category: factories['io.flow.billing.internal.v0.enums.manual_transaction_category'](),
|
|
1146
1154
|
url: factories.string(),
|
|
1147
1155
|
}); },
|
|
1148
1156
|
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label': function () { return ({
|
|
@@ -1243,7 +1251,6 @@ var factories = {
|
|
|
1243
1251
|
'duty',
|
|
1244
1252
|
'trueup',
|
|
1245
1253
|
'carrier_charge',
|
|
1246
|
-
'carrier_fee',
|
|
1247
1254
|
'all',
|
|
1248
1255
|
]); },
|
|
1249
1256
|
'io.flow.billing.internal.v0.enums.billing_transaction_status': function () { return faker.helpers.arrayElement(['pending_proof', 'posted']); },
|
|
@@ -1270,10 +1277,8 @@ var factories = {
|
|
|
1270
1277
|
'duty',
|
|
1271
1278
|
'trueup',
|
|
1272
1279
|
'carrier_charge',
|
|
1273
|
-
'carrier_fee',
|
|
1274
1280
|
]); },
|
|
1275
1281
|
'io.flow.billing.internal.v0.enums.carrier_charge_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']); },
|
|
1276
|
-
'io.flow.billing.internal.v0.enums.carrier_fee_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'fee']); },
|
|
1277
1282
|
'io.flow.billing.internal.v0.enums.channel_billed_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'channel_initiated']); },
|
|
1278
1283
|
'io.flow.billing.internal.v0.enums.channel_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'processing']); },
|
|
1279
1284
|
'io.flow.billing.internal.v0.enums.dispute_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'dispute']); },
|
|
@@ -1282,10 +1287,8 @@ var factories = {
|
|
|
1282
1287
|
'io.flow.billing.internal.v0.enums.label_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']); },
|
|
1283
1288
|
'io.flow.billing.internal.v0.enums.manual_transaction_category': function () { return faker.helpers.arrayElement([
|
|
1284
1289
|
'cancelled_order_refund',
|
|
1285
|
-
'channel_partner_initiated',
|
|
1286
1290
|
'client_accepted_chargeback',
|
|
1287
1291
|
'fee_reimbursement',
|
|
1288
|
-
'partial_refund',
|
|
1289
1292
|
'platform_fee',
|
|
1290
1293
|
'shipping_true_up',
|
|
1291
1294
|
'tax_credit',
|
|
@@ -1391,6 +1394,7 @@ var factories = {
|
|
|
1391
1394
|
liabilities_method: factories['io.flow.billing.internal.v0.enums.account_setting_liabilities_method'](),
|
|
1392
1395
|
enable_fee_reversals: factories.boolean(),
|
|
1393
1396
|
record_reason_for_transactions_pending_payout: factories.boolean(),
|
|
1397
|
+
enable_negative_debits: factories.boolean(),
|
|
1394
1398
|
}); },
|
|
1395
1399
|
'io.flow.billing.internal.v0.models.account_source': function () { return ({
|
|
1396
1400
|
id: factories.string(),
|
|
@@ -1457,6 +1461,14 @@ var factories = {
|
|
|
1457
1461
|
transfer_transaction_ids: arrayOf(function () { return factories.string(); }),
|
|
1458
1462
|
attributes: objectOf(function () { return factories.string(); }),
|
|
1459
1463
|
}); },
|
|
1464
|
+
'io.flow.billing.internal.v0.models.bank_payment_order': function () { return ({
|
|
1465
|
+
id: factories.string(),
|
|
1466
|
+
payment: factories['io.flow.billing.internal.v0.models.bank_payment_reference'](),
|
|
1467
|
+
order: factories['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
1468
|
+
}); },
|
|
1469
|
+
'io.flow.billing.internal.v0.models.bank_payment_reference': function () { return ({
|
|
1470
|
+
id: factories.string(),
|
|
1471
|
+
}); },
|
|
1460
1472
|
'io.flow.billing.internal.v0.models.bank_payment_status_form': function () { return ({
|
|
1461
1473
|
code: factories['io.flow.billing.internal.v0.enums.bank_payment_status_code'](),
|
|
1462
1474
|
failure_reason: factories['io.flow.billing.v0.enums.payout_status_failure_code'](),
|
|
@@ -1582,7 +1594,6 @@ var factories = {
|
|
|
1582
1594
|
duty: factories['io.flow.common.v0.models.price'](),
|
|
1583
1595
|
trueup: factories['io.flow.common.v0.models.price'](),
|
|
1584
1596
|
carrier_charge: factories['io.flow.common.v0.models.price'](),
|
|
1585
|
-
carrier_fee: factories['io.flow.common.v0.models.price'](),
|
|
1586
1597
|
ending_balance: factories['io.flow.common.v0.models.price'](),
|
|
1587
1598
|
}); },
|
|
1588
1599
|
'io.flow.billing.internal.v0.models.billing_transaction': function () { return ({
|
|
@@ -1612,21 +1623,6 @@ var factories = {
|
|
|
1612
1623
|
statement: factories['io.flow.billing.internal.v0.models.billing_statement_reference'](),
|
|
1613
1624
|
created_at: factories.date_time_iso_8601(),
|
|
1614
1625
|
}); },
|
|
1615
|
-
'io.flow.billing.internal.v0.models.carrier_fee_transaction': function () { return ({
|
|
1616
|
-
discriminator: 'carrier_fee_transaction',
|
|
1617
|
-
label_reference: factories['io.flow.billing.internal.v0.models.carrier_fee_transaction_label_reference'](),
|
|
1618
|
-
id: factories.string(),
|
|
1619
|
-
type: factories['io.flow.billing.internal.v0.enums.billing_transaction_type'](),
|
|
1620
|
-
status: factories['io.flow.billing.internal.v0.enums.billing_transaction_status'](),
|
|
1621
|
-
posted_at: factories.date_time_iso_8601(),
|
|
1622
|
-
value: factories['io.flow.common.v0.models.price'](),
|
|
1623
|
-
description: factories.string(),
|
|
1624
|
-
statement: factories['io.flow.billing.internal.v0.models.billing_statement_reference'](),
|
|
1625
|
-
created_at: factories.date_time_iso_8601(),
|
|
1626
|
-
}); },
|
|
1627
|
-
'io.flow.billing.internal.v0.models.carrier_fee_transaction_label_reference': function () { return ({
|
|
1628
|
-
id: factories.string(),
|
|
1629
|
-
}); },
|
|
1630
1626
|
'io.flow.billing.internal.v0.models.channel_account': function () { return ({
|
|
1631
1627
|
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
1632
1628
|
id: factories.string(),
|
|
@@ -1717,6 +1713,15 @@ var factories = {
|
|
|
1717
1713
|
value: factories.decimal(),
|
|
1718
1714
|
timestamp: factories.date_time_iso_8601(),
|
|
1719
1715
|
}); },
|
|
1716
|
+
'io.flow.billing.internal.v0.models.cli_log_entry': function () { return ({
|
|
1717
|
+
id: factories.string(),
|
|
1718
|
+
user: factories['io.flow.common.v0.models.user_reference'](),
|
|
1719
|
+
task: factories.string(),
|
|
1720
|
+
}); },
|
|
1721
|
+
'io.flow.billing.internal.v0.models.cli_log_entry_form': function () { return ({
|
|
1722
|
+
user_id: factories.string(),
|
|
1723
|
+
task: factories.string(),
|
|
1724
|
+
}); },
|
|
1720
1725
|
'io.flow.billing.internal.v0.models.components': function () { return ({
|
|
1721
1726
|
vat: factories['io.flow.common.v0.models.price'](),
|
|
1722
1727
|
duty: factories['io.flow.common.v0.models.price'](),
|
|
@@ -2344,7 +2349,6 @@ var factories = {
|
|
|
2344
2349
|
function () { return factories['io.flow.billing.internal.v0.models.duty_transaction'](); },
|
|
2345
2350
|
function () { return factories['io.flow.billing.internal.v0.models.trueup_transaction'](); },
|
|
2346
2351
|
function () { return factories['io.flow.billing.internal.v0.models.carrier_charge_transaction'](); },
|
|
2347
|
-
function () { return factories['io.flow.billing.internal.v0.models.carrier_fee_transaction'](); },
|
|
2348
2352
|
]);
|
|
2349
2353
|
return f();
|
|
2350
2354
|
},
|
|
@@ -2381,6 +2385,7 @@ var factories = {
|
|
|
2381
2385
|
vat_remittance: factories['io.flow.billing.reporting.v0.models.reporting_vat_remittance'](),
|
|
2382
2386
|
marked_as_final: factories['io.flow.billing.reporting.v0.models.marked_as_final'](),
|
|
2383
2387
|
}); },
|
|
2388
|
+
'io.flow.billing.reporting.v0.enums.report_payment_type': function () { return faker.helpers.arrayElement(['credit', 'debit']); },
|
|
2384
2389
|
'io.flow.billing.reporting.v0.enums.report_status': function () { return faker.helpers.arrayElement(['created', 'completed', 'completed_no_records', 'failed']); },
|
|
2385
2390
|
'io.flow.billing.reporting.v0.enums.report_type': function () { return faker.helpers.arrayElement([
|
|
2386
2391
|
'sales_record',
|
|
@@ -2388,6 +2393,7 @@ var factories = {
|
|
|
2388
2393
|
'non_channel_payment_bank_account',
|
|
2389
2394
|
'scheduled_payment',
|
|
2390
2395
|
'account_quarterly_balances',
|
|
2396
|
+
'invariants',
|
|
2391
2397
|
]); },
|
|
2392
2398
|
'io.flow.billing.reporting.v0.enums.reporting_fulfillment_is_virtual': function () { return faker.helpers.arrayElement(['all', 'mixed', 'none']); },
|
|
2393
2399
|
'io.flow.billing.reporting.v0.enums.revenue_record_type': function () { return faker.helpers.arrayElement(['pending', 'sales', 'refund']); },
|
|
@@ -2419,6 +2425,7 @@ var factories = {
|
|
|
2419
2425
|
type: factories['io.flow.billing.reporting.v0.enums.report_type'](),
|
|
2420
2426
|
from: factories.date_time_iso_8601(),
|
|
2421
2427
|
to: factories.date_time_iso_8601(),
|
|
2428
|
+
payment_type: factories['io.flow.billing.reporting.v0.enums.report_payment_type'](),
|
|
2422
2429
|
url: factories.string(),
|
|
2423
2430
|
processed_at: factories.date_time_iso_8601(),
|
|
2424
2431
|
}); },
|
|
@@ -2437,9 +2444,18 @@ var factories = {
|
|
|
2437
2444
|
account_number: factories.string(),
|
|
2438
2445
|
}); },
|
|
2439
2446
|
'io.flow.billing.reporting.v0.models.report_form': function () { return ({
|
|
2447
|
+
type: factories['io.flow.billing.reporting.v0.enums.report_type'](),
|
|
2440
2448
|
from: factories.date_time_iso_8601(),
|
|
2441
2449
|
to: factories.date_time_iso_8601(),
|
|
2442
|
-
|
|
2450
|
+
payment_type: factories['io.flow.billing.reporting.v0.enums.report_payment_type'](),
|
|
2451
|
+
orders: arrayOf(function () { return factories['io.flow.billing.reporting.v0.models.report_order_reference'](); }),
|
|
2452
|
+
}); },
|
|
2453
|
+
'io.flow.billing.reporting.v0.models.report_merchant': function () { return ({
|
|
2454
|
+
id: factories.string(),
|
|
2455
|
+
}); },
|
|
2456
|
+
'io.flow.billing.reporting.v0.models.report_order_reference': function () { return ({
|
|
2457
|
+
organization_id: factories.string(),
|
|
2458
|
+
order_number: factories.string(),
|
|
2443
2459
|
}); },
|
|
2444
2460
|
'io.flow.billing.reporting.v0.models.report_owner': function () { return ({
|
|
2445
2461
|
name: factories.string(),
|
|
@@ -2551,7 +2567,6 @@ var factories = {
|
|
|
2551
2567
|
tax: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2552
2568
|
duty: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2553
2569
|
freight: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2554
|
-
refund: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2555
2570
|
}); },
|
|
2556
2571
|
'io.flow.billing.reporting.v0.models.reporting_monetary_value': function () { return ({
|
|
2557
2572
|
transaction: factories.decimal(),
|
|
@@ -2645,6 +2660,7 @@ var factories = {
|
|
|
2645
2660
|
payment: factories['io.flow.billing.reporting.v0.models.report_payment'](),
|
|
2646
2661
|
bank_account: factories['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'](),
|
|
2647
2662
|
account: factories['io.flow.billing.reporting.v0.models.report_account'](),
|
|
2663
|
+
merchant: factories['io.flow.billing.reporting.v0.models.report_merchant'](),
|
|
2648
2664
|
owner: factories['io.flow.billing.reporting.v0.models.report_owner'](),
|
|
2649
2665
|
description: factories.string(),
|
|
2650
2666
|
}); },
|
|
@@ -2679,9 +2695,10 @@ var factories = {
|
|
|
2679
2695
|
'shipping_label_service',
|
|
2680
2696
|
'shipping_label_revenue_share',
|
|
2681
2697
|
'trueup',
|
|
2698
|
+
'trueup_base',
|
|
2699
|
+
'trueup_surcharge',
|
|
2682
2700
|
'carrier_charge',
|
|
2683
2701
|
'carrier_charge_revenue_share',
|
|
2684
|
-
'carrier_fee',
|
|
2685
2702
|
'platform_fee',
|
|
2686
2703
|
'tax',
|
|
2687
2704
|
'duty',
|
|
@@ -2693,8 +2710,9 @@ var factories = {
|
|
|
2693
2710
|
'order_service',
|
|
2694
2711
|
'virtual_card_capture',
|
|
2695
2712
|
'virtual_card_refund',
|
|
2713
|
+
'failed_payout',
|
|
2696
2714
|
]); },
|
|
2697
|
-
'io.flow.billing.v0.enums.trueup_source': function () { return faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl']); },
|
|
2715
|
+
'io.flow.billing.v0.enums.trueup_source': function () { return faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']); },
|
|
2698
2716
|
'io.flow.billing.v0.enums.withholding_deduction_type': function () { return faker.helpers.arrayElement(['tax', 'duty', 'freight', 'insurance']); },
|
|
2699
2717
|
'io.flow.billing.v0.models.account_id_reference': function () { return ({
|
|
2700
2718
|
id: factories.string(),
|
|
@@ -2944,19 +2962,11 @@ var factories = {
|
|
|
2944
2962
|
revenue_share_percentage: factories.decimal(),
|
|
2945
2963
|
outbound: factories['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'](),
|
|
2946
2964
|
}); },
|
|
2947
|
-
'io.flow.billing.v0.models.transaction_metadata_carrier_fee': function () { return ({
|
|
2948
|
-
discriminator: 'carrier_fee',
|
|
2949
|
-
outbound: factories['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'](),
|
|
2950
|
-
estimate: factories['io.flow.billing.v0.models.transaction_metadata_carrier_fee_data'](),
|
|
2951
|
-
actual: factories['io.flow.billing.v0.models.transaction_metadata_carrier_fee_data'](),
|
|
2952
|
-
}); },
|
|
2953
|
-
'io.flow.billing.v0.models.transaction_metadata_carrier_fee_data': function () { return ({
|
|
2954
|
-
surcharges: arrayOf(function () { return factories['io.flow.billing.v0.models.trueup_label_surcharge'](); }),
|
|
2955
|
-
}); },
|
|
2956
2965
|
'io.flow.billing.v0.models.transaction_metadata_channel': function () { return ({
|
|
2957
2966
|
discriminator: 'channel',
|
|
2958
2967
|
method: factories.string(),
|
|
2959
2968
|
card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
2969
|
+
organization_transaction: factories['io.flow.billing.v0.models.transaction_reference'](),
|
|
2960
2970
|
}); },
|
|
2961
2971
|
'io.flow.billing.v0.models.transaction_metadata_channel_card_metadata': function () { return ({
|
|
2962
2972
|
type: factories['io.flow.payment.v0.enums.card_type'](),
|
|
@@ -2966,6 +2976,13 @@ var factories = {
|
|
|
2966
2976
|
iin: factories.string(),
|
|
2967
2977
|
country: factories.string(),
|
|
2968
2978
|
}); },
|
|
2979
|
+
'io.flow.billing.v0.models.transaction_metadata_failed_payout': function () { return ({
|
|
2980
|
+
discriminator: 'failed_payout',
|
|
2981
|
+
failed_payout: factories['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
2982
|
+
}); },
|
|
2983
|
+
'io.flow.billing.v0.models.transaction_metadata_failed_payout_reference': function () { return ({
|
|
2984
|
+
id: factories.string(),
|
|
2985
|
+
}); },
|
|
2969
2986
|
'io.flow.billing.v0.models.transaction_metadata_manual': function () { return ({
|
|
2970
2987
|
discriminator: 'manual',
|
|
2971
2988
|
description: factories.string(),
|
|
@@ -2980,6 +2997,7 @@ var factories = {
|
|
|
2980
2997
|
}); },
|
|
2981
2998
|
'io.flow.billing.v0.models.transaction_metadata_payment_transaction': function () { return ({
|
|
2982
2999
|
discriminator: 'payment_transaction',
|
|
3000
|
+
id: factories.string(),
|
|
2983
3001
|
key: factories.string(),
|
|
2984
3002
|
}); },
|
|
2985
3003
|
'io.flow.billing.v0.models.transaction_metadata_shipping_label': function () { return ({
|
|
@@ -2998,6 +3016,20 @@ var factories = {
|
|
|
2998
3016
|
estimate: factories['io.flow.billing.v0.models.transaction_metadata_trueup_data'](),
|
|
2999
3017
|
actual: factories['io.flow.billing.v0.models.transaction_metadata_trueup_data'](),
|
|
3000
3018
|
}); },
|
|
3019
|
+
'io.flow.billing.v0.models.transaction_metadata_trueup_base': function () { return ({
|
|
3020
|
+
discriminator: 'trueup_base',
|
|
3021
|
+
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
3022
|
+
estimate: factories['io.flow.billing.v0.models.transaction_metadata_trueup_base_data'](),
|
|
3023
|
+
actual: factories['io.flow.billing.v0.models.transaction_metadata_trueup_base_data'](),
|
|
3024
|
+
}); },
|
|
3025
|
+
'io.flow.billing.v0.models.transaction_metadata_trueup_base_data': function () { return ({
|
|
3026
|
+
source: factories['io.flow.billing.v0.enums.trueup_source'](),
|
|
3027
|
+
weights: factories['io.flow.billing.v0.models.trueup_label_weights'](),
|
|
3028
|
+
units: factories['io.flow.billing.v0.models.trueup_label_units'](),
|
|
3029
|
+
base: factories['io.flow.billing.v0.models.trueup_label_base_v2'](),
|
|
3030
|
+
fuel: factories['io.flow.billing.v0.models.trueup_label_fuel'](),
|
|
3031
|
+
total: factories.decimal(),
|
|
3032
|
+
}); },
|
|
3001
3033
|
'io.flow.billing.v0.models.transaction_metadata_trueup_data': function () { return ({
|
|
3002
3034
|
source: factories['io.flow.billing.v0.enums.trueup_source'](),
|
|
3003
3035
|
units: factories['io.flow.billing.v0.models.trueup_label_units'](),
|
|
@@ -3007,6 +3039,16 @@ var factories = {
|
|
|
3007
3039
|
dead: factories['io.flow.trueup.v0.models.dead_weight'](),
|
|
3008
3040
|
dimensional: factories['io.flow.trueup.v0.models.dimensional_weight'](),
|
|
3009
3041
|
}); },
|
|
3042
|
+
'io.flow.billing.v0.models.transaction_metadata_trueup_surcharge': function () { return ({
|
|
3043
|
+
discriminator: 'trueup_surcharge',
|
|
3044
|
+
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
3045
|
+
estimate: factories['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data'](),
|
|
3046
|
+
actual: factories['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data'](),
|
|
3047
|
+
}); },
|
|
3048
|
+
'io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data': function () { return ({
|
|
3049
|
+
source: factories['io.flow.billing.v0.enums.trueup_source'](),
|
|
3050
|
+
surcharge: factories['io.flow.billing.v0.models.trueup_label_surcharge'](),
|
|
3051
|
+
}); },
|
|
3010
3052
|
'io.flow.billing.v0.models.transaction_reference': function () { return ({
|
|
3011
3053
|
id: factories.string(),
|
|
3012
3054
|
}); },
|
|
@@ -3014,6 +3056,17 @@ var factories = {
|
|
|
3014
3056
|
amount: factories.decimal(),
|
|
3015
3057
|
weight: factories.decimal(),
|
|
3016
3058
|
}); },
|
|
3059
|
+
'io.flow.billing.v0.models.trueup_label_base_v2': function () { return ({
|
|
3060
|
+
amount: factories.decimal(),
|
|
3061
|
+
}); },
|
|
3062
|
+
'io.flow.billing.v0.models.trueup_label_base_weight': function () { return ({
|
|
3063
|
+
weight: factories.decimal(),
|
|
3064
|
+
}); },
|
|
3065
|
+
'io.flow.billing.v0.models.trueup_label_fuel': function () { return ({
|
|
3066
|
+
amount: factories.decimal(),
|
|
3067
|
+
percentage: factories.decimal(),
|
|
3068
|
+
per_weight_unit: factories.decimal(),
|
|
3069
|
+
}); },
|
|
3017
3070
|
'io.flow.billing.v0.models.trueup_label_surcharge': function () { return ({
|
|
3018
3071
|
amount: factories.decimal(),
|
|
3019
3072
|
type: factories['io.flow.trueup.v0.enums.trueup_surcharge_type'](),
|
|
@@ -3024,6 +3077,11 @@ var factories = {
|
|
|
3024
3077
|
weight: factories['io.flow.units.v0.enums.unit_of_weight'](),
|
|
3025
3078
|
length: factories['io.flow.units.v0.enums.unit_of_length'](),
|
|
3026
3079
|
}); },
|
|
3080
|
+
'io.flow.billing.v0.models.trueup_label_weights': function () { return ({
|
|
3081
|
+
base: factories['io.flow.billing.v0.models.trueup_label_base_weight'](),
|
|
3082
|
+
dead: factories['io.flow.trueup.v0.models.dead_weight'](),
|
|
3083
|
+
dimensional: factories['io.flow.trueup.v0.models.dimensional_weight'](),
|
|
3084
|
+
}); },
|
|
3027
3085
|
'io.flow.billing.v0.models.withholding_deduction': function () { return ({
|
|
3028
3086
|
type: factories['io.flow.billing.v0.enums.withholding_deduction_type'](),
|
|
3029
3087
|
amount: factories.decimal(),
|
|
@@ -3056,9 +3114,11 @@ var factories = {
|
|
|
3056
3114
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_shipping_label'](); },
|
|
3057
3115
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_channel'](); },
|
|
3058
3116
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_trueup'](); },
|
|
3117
|
+
function () { return factories['io.flow.billing.v0.models.transaction_metadata_trueup_base'](); },
|
|
3118
|
+
function () { return factories['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge'](); },
|
|
3059
3119
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_carrier_charge'](); },
|
|
3060
|
-
function () { return factories['io.flow.billing.v0.models.transaction_metadata_carrier_fee'](); },
|
|
3061
3120
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_manual'](); },
|
|
3121
|
+
function () { return factories['io.flow.billing.v0.models.transaction_metadata_failed_payout'](); },
|
|
3062
3122
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](); },
|
|
3063
3123
|
]);
|
|
3064
3124
|
return f();
|
|
@@ -7942,16 +8002,19 @@ var factories = {
|
|
|
7942
8002
|
'adjustment_transactions_count',
|
|
7943
8003
|
'adjustment_transactions_total',
|
|
7944
8004
|
'capture_transactions_count',
|
|
8005
|
+
'capture_transactions_reconcile_payments_count',
|
|
7945
8006
|
'capture_transactions_ignored_fraud_count',
|
|
7946
8007
|
'capture_transactions_ignored_fully_refunded_count',
|
|
7947
8008
|
'capture_transactions_ignored_other_count',
|
|
7948
8009
|
'capture_transactions_ignored_previously_processed_count',
|
|
8010
|
+
'capture_transactions_succeeded_then_failed_count',
|
|
8011
|
+
'capture_transactions_succeeded_then_failed_total',
|
|
8012
|
+
'capture_transactions_succeeded_then_failed_same_day_count',
|
|
8013
|
+
'capture_transactions_succeeded_then_failed_same_day_total',
|
|
7949
8014
|
'capture_queued_count',
|
|
7950
8015
|
'capture_transactions_total',
|
|
7951
8016
|
'carrier_charge_transactions_count',
|
|
7952
8017
|
'carrier_charge_transactions_total',
|
|
7953
|
-
'carrier_fee_transactions_count',
|
|
7954
|
-
'carrier_fee_transactions_total',
|
|
7955
8018
|
'channel_transactions_processing_count',
|
|
7956
8019
|
'channel_transactions_processing_total',
|
|
7957
8020
|
'channel_transactions_adjustment_count',
|
|
@@ -7962,6 +8025,7 @@ var factories = {
|
|
|
7962
8025
|
'channel_billed_transactions_total',
|
|
7963
8026
|
'credit_payment_transactions_count',
|
|
7964
8027
|
'credit_payment_transactions_total',
|
|
8028
|
+
'duty_to_labels_ratio',
|
|
7965
8029
|
'duty_transactions_count',
|
|
7966
8030
|
'duty_transactions_total',
|
|
7967
8031
|
'fully_subsidized_order_transactions_count',
|
|
@@ -7979,6 +8043,7 @@ var factories = {
|
|
|
7979
8043
|
'order_transactions_count',
|
|
7980
8044
|
'order_transactions_total',
|
|
7981
8045
|
'refund_transactions_count',
|
|
8046
|
+
'refund_transactions_reconcile_payments_count',
|
|
7982
8047
|
'refund_transactions_ignored_fraud_count',
|
|
7983
8048
|
'refund_transactions_ignored_fully_refunded_count',
|
|
7984
8049
|
'refund_transactions_ignored_other_count',
|
|
@@ -7987,6 +8052,8 @@ var factories = {
|
|
|
7987
8052
|
'refund_transactions_total',
|
|
7988
8053
|
'refund_transactions_succeeded_then_failed_count',
|
|
7989
8054
|
'refund_transactions_succeeded_then_failed_total',
|
|
8055
|
+
'refund_transactions_succeeded_then_failed_same_day_count',
|
|
8056
|
+
'refund_transactions_succeeded_then_failed_same_day_total',
|
|
7990
8057
|
'reversal_order_cancellations_transactions_count',
|
|
7991
8058
|
'reversal_order_cancellations_transactions_total',
|
|
7992
8059
|
'reversal_external_fulfillment_transactions_count',
|
|
@@ -7995,6 +8062,7 @@ var factories = {
|
|
|
7995
8062
|
'reversal_other_transactions_total',
|
|
7996
8063
|
'reversal_all_transactions_count',
|
|
7997
8064
|
'reversal_all_transactions_total',
|
|
8065
|
+
'tax_to_labels_ratio',
|
|
7998
8066
|
'tax_transactions_count',
|
|
7999
8067
|
'tax_transactions_total',
|
|
8000
8068
|
'transfer_transactions_count',
|
|
@@ -8046,9 +8114,8 @@ var factories = {
|
|
|
8046
8114
|
'accounts_with_final_statements_count',
|
|
8047
8115
|
'accounts_with_final_statements_pending_transaction_count',
|
|
8048
8116
|
'accounts_with_final_statements_pending_transaction_total',
|
|
8049
|
-
'
|
|
8050
|
-
'
|
|
8051
|
-
'orders_wyol_then_label_duty_subsidized_total',
|
|
8117
|
+
'edited_order_tax_amount_exceeding_transaction',
|
|
8118
|
+
'edited_order_duty_amount_exceeding_transaction',
|
|
8052
8119
|
]); },
|
|
8053
8120
|
'io.flow.internal.v0.enums.billing_statement_attachment_key': function () { return faker.helpers.arrayElement([
|
|
8054
8121
|
'invoice',
|
|
@@ -8067,7 +8134,6 @@ var factories = {
|
|
|
8067
8134
|
'duty',
|
|
8068
8135
|
'trueup',
|
|
8069
8136
|
'carrier_charge',
|
|
8070
|
-
'carrier_fee',
|
|
8071
8137
|
'all',
|
|
8072
8138
|
]); },
|
|
8073
8139
|
'io.flow.internal.v0.enums.billing_transaction_status': function () { return faker.helpers.arrayElement(['pending_proof', 'posted']); },
|
|
@@ -8094,7 +8160,6 @@ var factories = {
|
|
|
8094
8160
|
'duty',
|
|
8095
8161
|
'trueup',
|
|
8096
8162
|
'carrier_charge',
|
|
8097
|
-
'carrier_fee',
|
|
8098
8163
|
]); },
|
|
8099
8164
|
'io.flow.internal.v0.enums.browser_bundle_error_code': function () { return faker.helpers.arrayElement(['generic_error', 'country_invalid']); },
|
|
8100
8165
|
'io.flow.internal.v0.enums.calculator_engine': function () { return faker.helpers.arrayElement([
|
|
@@ -8106,9 +8171,8 @@ var factories = {
|
|
|
8106
8171
|
'dtce_with_inclusive_pricing',
|
|
8107
8172
|
]); },
|
|
8108
8173
|
'io.flow.internal.v0.enums.carrier_charge_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']); },
|
|
8109
|
-
'io.flow.internal.v0.enums.carrier_charge_type': function () { return faker.helpers.arrayElement(['label', 'other']); },
|
|
8110
|
-
'io.flow.internal.v0.enums.
|
|
8111
|
-
'io.flow.internal.v0.enums.carrier_file_type': function () { return faker.helpers.arrayElement(['charge', 'fee']); },
|
|
8174
|
+
'io.flow.internal.v0.enums.carrier_charge_type': function () { return faker.helpers.arrayElement(['label', 'tax', 'other']); },
|
|
8175
|
+
'io.flow.internal.v0.enums.carrier_file_type': function () { return faker.helpers.arrayElement(['freight', 'tax']); },
|
|
8112
8176
|
'io.flow.internal.v0.enums.carrier_label_generation_method': function () { return faker.helpers.arrayElement(['direct', 'easypost']); },
|
|
8113
8177
|
'io.flow.internal.v0.enums.carrier_validation_status': function () { return faker.helpers.arrayElement(['success', 'error']); },
|
|
8114
8178
|
'io.flow.internal.v0.enums.catalog_import_type': function () { return faker.helpers.arrayElement([
|
|
@@ -8167,6 +8231,8 @@ var factories = {
|
|
|
8167
8231
|
'security_surcharge',
|
|
8168
8232
|
'duties_fx_surcharge',
|
|
8169
8233
|
'electronic_export_information_surcharge',
|
|
8234
|
+
'additional_handling',
|
|
8235
|
+
'large_package_surcharge',
|
|
8170
8236
|
]); },
|
|
8171
8237
|
'io.flow.internal.v0.enums.chargeback_payment_status': function () { return faker.helpers.arrayElement(['captured', 'refunded']); },
|
|
8172
8238
|
'io.flow.internal.v0.enums.chargeback_process_status': function () { return faker.helpers.arrayElement(['inquiry', 'open', 'closed']); },
|
|
@@ -8188,7 +8254,11 @@ var factories = {
|
|
|
8188
8254
|
'io.flow.internal.v0.enums.checkout_redirect_method': function () { return faker.helpers.arrayElement(['get', 'post']); },
|
|
8189
8255
|
'io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior': function () { return faker.helpers.arrayElement(['always', 'multiple']); },
|
|
8190
8256
|
'io.flow.internal.v0.enums.checkout_url_type': function () { return faker.helpers.arrayElement(['continue_shopping', 'confirmation', 'invalid_checkout']); },
|
|
8257
|
+
'io.flow.internal.v0.enums.classification_decision': function () { return faker.helpers.arrayElement(['Accept', 'Reject']); },
|
|
8191
8258
|
'io.flow.internal.v0.enums.classification_error_code': function () { return faker.helpers.arrayElement(['generic_error']); },
|
|
8259
|
+
'io.flow.internal.v0.enums.classification_platform': function () { return faker.helpers.arrayElement(['GlobalE', 'Flow', 'Borderfree']); },
|
|
8260
|
+
'io.flow.internal.v0.enums.classification_type': function () { return faker.helpers.arrayElement(['None', 'Manual', 'ML']); },
|
|
8261
|
+
'io.flow.internal.v0.enums.clothing_age_classification': function () { return faker.helpers.arrayElement(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']); },
|
|
8192
8262
|
'io.flow.internal.v0.enums.colm_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
|
|
8193
8263
|
'io.flow.internal.v0.enums.compliance_type': function () { return faker.helpers.arrayElement(['weee']); },
|
|
8194
8264
|
'io.flow.internal.v0.enums.content_element_type': function () { return faker.helpers.arrayElement(['markdown', 'html', 'plain_text', 'href']); },
|
|
@@ -8387,8 +8457,8 @@ var factories = {
|
|
|
8387
8457
|
'label_invoice_request_deleted',
|
|
8388
8458
|
'carrier_charge_upserted',
|
|
8389
8459
|
'carrier_charge_deleted',
|
|
8390
|
-
'
|
|
8391
|
-
'
|
|
8460
|
+
'bank_payment_order_upserted',
|
|
8461
|
+
'bank_payment_order_deleted',
|
|
8392
8462
|
'fraud_review_upserted',
|
|
8393
8463
|
'fraud_review_deleted',
|
|
8394
8464
|
'fraud_pending_review_upserted',
|
|
@@ -8545,6 +8615,8 @@ var factories = {
|
|
|
8545
8615
|
'shopify_markets_metrics_deleted',
|
|
8546
8616
|
'channel_order_summary_upserted',
|
|
8547
8617
|
'channel_order_summary_deleted',
|
|
8618
|
+
'channel_organization_identifier_upserted',
|
|
8619
|
+
'channel_organization_identifier_deleted',
|
|
8548
8620
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
8549
8621
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
8550
8622
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -8635,6 +8707,7 @@ var factories = {
|
|
|
8635
8707
|
'merchant_integration',
|
|
8636
8708
|
'shopify_integration',
|
|
8637
8709
|
'globale_cx',
|
|
8710
|
+
'merchant_operations',
|
|
8638
8711
|
'globale_system',
|
|
8639
8712
|
]); },
|
|
8640
8713
|
'io.flow.internal.v0.enums.label_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']); },
|
|
@@ -8643,10 +8716,8 @@ var factories = {
|
|
|
8643
8716
|
'io.flow.internal.v0.enums.manual_review_rule_status': function () { return faker.helpers.arrayElement(['active', 'archived']); },
|
|
8644
8717
|
'io.flow.internal.v0.enums.manual_transaction_category': function () { return faker.helpers.arrayElement([
|
|
8645
8718
|
'cancelled_order_refund',
|
|
8646
|
-
'channel_partner_initiated',
|
|
8647
8719
|
'client_accepted_chargeback',
|
|
8648
8720
|
'fee_reimbursement',
|
|
8649
|
-
'partial_refund',
|
|
8650
8721
|
'platform_fee',
|
|
8651
8722
|
'shipping_true_up',
|
|
8652
8723
|
'tax_credit',
|
|
@@ -8838,6 +8909,7 @@ var factories = {
|
|
|
8838
8909
|
'suspicious_past_activity',
|
|
8839
8910
|
]); },
|
|
8840
8911
|
'io.flow.internal.v0.enums.report_interval': function () { return faker.helpers.arrayElement(['hourly', 'daily', 'weekly', 'monthly']); },
|
|
8912
|
+
'io.flow.internal.v0.enums.report_payment_type': function () { return faker.helpers.arrayElement(['credit', 'debit']); },
|
|
8841
8913
|
'io.flow.internal.v0.enums.report_status': function () { return faker.helpers.arrayElement(['created', 'completed', 'completed_no_records', 'failed']); },
|
|
8842
8914
|
'io.flow.internal.v0.enums.report_type': function () { return faker.helpers.arrayElement([
|
|
8843
8915
|
'sales_record',
|
|
@@ -8845,6 +8917,7 @@ var factories = {
|
|
|
8845
8917
|
'non_channel_payment_bank_account',
|
|
8846
8918
|
'scheduled_payment',
|
|
8847
8919
|
'account_quarterly_balances',
|
|
8920
|
+
'invariants',
|
|
8848
8921
|
]); },
|
|
8849
8922
|
'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': function () { return faker.helpers.arrayElement(['all', 'mixed', 'none']); },
|
|
8850
8923
|
'io.flow.internal.v0.enums.reporting_scheme': function () { return faker.helpers.arrayElement([
|
|
@@ -8902,6 +8975,7 @@ var factories = {
|
|
|
8902
8975
|
'product_restriction_result',
|
|
8903
8976
|
'product_sync',
|
|
8904
8977
|
'webhook_registrations',
|
|
8978
|
+
'channel_organization_identifier',
|
|
8905
8979
|
]); },
|
|
8906
8980
|
'io.flow.internal.v0.enums.shopify_markets_trade_sector': function () { return faker.helpers.arrayElement([
|
|
8907
8981
|
'apparel_and_accessories',
|
|
@@ -9113,6 +9187,7 @@ var factories = {
|
|
|
9113
9187
|
liabilities_method: factories['io.flow.internal.v0.enums.account_setting_liabilities_method'](),
|
|
9114
9188
|
enable_fee_reversals: factories.boolean(),
|
|
9115
9189
|
record_reason_for_transactions_pending_payout: factories.boolean(),
|
|
9190
|
+
enable_negative_debits: factories.boolean(),
|
|
9116
9191
|
}); },
|
|
9117
9192
|
'io.flow.internal.v0.models.account_settings_deleted': function () { return ({
|
|
9118
9193
|
discriminator: 'account_settings_deleted',
|
|
@@ -9175,12 +9250,6 @@ var factories = {
|
|
|
9175
9250
|
timestamp: factories.date_time_iso_8601(),
|
|
9176
9251
|
account: factories['io.flow.internal.v0.models.flow_account'](),
|
|
9177
9252
|
}); },
|
|
9178
|
-
'io.flow.internal.v0.models.accounting_fulfillment_metadata': function () { return ({
|
|
9179
|
-
discriminator: 'accounting_fulfillment_metadata',
|
|
9180
|
-
order: factories['io.flow.internal.v0.models.order_reference'](),
|
|
9181
|
-
proof: factories['io.flow.internal.v0.unions.fulfillment_proof'](),
|
|
9182
|
-
posting_cutoff: factories.date_time_iso_8601(),
|
|
9183
|
-
}); },
|
|
9184
9253
|
'io.flow.internal.v0.models.accounting_pending_order_metadata': function () { return ({
|
|
9185
9254
|
discriminator: 'accounting_pending_order_metadata',
|
|
9186
9255
|
order: factories['io.flow.internal.v0.models.order_reference'](),
|
|
@@ -9709,6 +9778,18 @@ var factories = {
|
|
|
9709
9778
|
payment: factories['io.flow.internal.v0.models.bank_payment_reference'](),
|
|
9710
9779
|
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
9711
9780
|
}); },
|
|
9781
|
+
'io.flow.internal.v0.models.bank_payment_order_deleted': function () { return ({
|
|
9782
|
+
discriminator: 'bank_payment_order_deleted',
|
|
9783
|
+
event_id: factories.string(),
|
|
9784
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9785
|
+
id: factories.string(),
|
|
9786
|
+
}); },
|
|
9787
|
+
'io.flow.internal.v0.models.bank_payment_order_upserted': function () { return ({
|
|
9788
|
+
discriminator: 'bank_payment_order_upserted',
|
|
9789
|
+
event_id: factories.string(),
|
|
9790
|
+
timestamp: factories.date_time_iso_8601(),
|
|
9791
|
+
bank_payment_order: factories['io.flow.internal.v0.models.bank_payment_order'](),
|
|
9792
|
+
}); },
|
|
9712
9793
|
'io.flow.internal.v0.models.bank_payment_reference': function () { return ({
|
|
9713
9794
|
id: factories.string(),
|
|
9714
9795
|
}); },
|
|
@@ -9896,7 +9977,6 @@ var factories = {
|
|
|
9896
9977
|
duty: factories['io.flow.common.v0.models.price'](),
|
|
9897
9978
|
trueup: factories['io.flow.common.v0.models.price'](),
|
|
9898
9979
|
carrier_charge: factories['io.flow.common.v0.models.price'](),
|
|
9899
|
-
carrier_fee: factories['io.flow.common.v0.models.price'](),
|
|
9900
9980
|
ending_balance: factories['io.flow.common.v0.models.price'](),
|
|
9901
9981
|
}); },
|
|
9902
9982
|
'io.flow.internal.v0.models.billing_statement_upserted': function () { return ({
|
|
@@ -10248,54 +10328,6 @@ var factories = {
|
|
|
10248
10328
|
organization: factories.string(),
|
|
10249
10329
|
carrier_charge: factories['io.flow.internal.v0.models.carrier_charge'](),
|
|
10250
10330
|
}); },
|
|
10251
|
-
'io.flow.internal.v0.models.carrier_fee': function () { return ({
|
|
10252
|
-
id: factories.string(),
|
|
10253
|
-
label_invoice_request_id: factories.string(),
|
|
10254
|
-
units: factories['io.flow.internal.v0.models.carrier_fee_units'](),
|
|
10255
|
-
surcharges: factories['io.flow.internal.v0.models.label_surcharge_form'](),
|
|
10256
|
-
total: factories.decimal(),
|
|
10257
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
10258
|
-
}); },
|
|
10259
|
-
'io.flow.internal.v0.models.carrier_fee_deleted': function () { return ({
|
|
10260
|
-
discriminator: 'carrier_fee_deleted',
|
|
10261
|
-
event_id: factories.string(),
|
|
10262
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10263
|
-
organization: factories.string(),
|
|
10264
|
-
id: factories.string(),
|
|
10265
|
-
}); },
|
|
10266
|
-
'io.flow.internal.v0.models.carrier_fee_form': function () { return ({
|
|
10267
|
-
id: factories.string(),
|
|
10268
|
-
label_invoice_request_id: factories.string(),
|
|
10269
|
-
units: factories['io.flow.internal.v0.models.carrier_fee_units'](),
|
|
10270
|
-
surcharges: factories['io.flow.internal.v0.models.label_surcharge_form'](),
|
|
10271
|
-
total: factories.decimal(),
|
|
10272
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
10273
|
-
}); },
|
|
10274
|
-
'io.flow.internal.v0.models.carrier_fee_transaction': function () { return ({
|
|
10275
|
-
discriminator: 'carrier_fee_transaction',
|
|
10276
|
-
label_reference: factories['io.flow.internal.v0.models.carrier_fee_transaction_label_reference'](),
|
|
10277
|
-
id: factories.string(),
|
|
10278
|
-
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
10279
|
-
status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
|
|
10280
|
-
posted_at: factories.date_time_iso_8601(),
|
|
10281
|
-
value: factories['io.flow.common.v0.models.price'](),
|
|
10282
|
-
description: factories.string(),
|
|
10283
|
-
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
10284
|
-
created_at: factories.date_time_iso_8601(),
|
|
10285
|
-
}); },
|
|
10286
|
-
'io.flow.internal.v0.models.carrier_fee_transaction_label_reference': function () { return ({
|
|
10287
|
-
id: factories.string(),
|
|
10288
|
-
}); },
|
|
10289
|
-
'io.flow.internal.v0.models.carrier_fee_units': function () { return ({
|
|
10290
|
-
currency: factories.string(),
|
|
10291
|
-
}); },
|
|
10292
|
-
'io.flow.internal.v0.models.carrier_fee_upserted': function () { return ({
|
|
10293
|
-
discriminator: 'carrier_fee_upserted',
|
|
10294
|
-
event_id: factories.string(),
|
|
10295
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10296
|
-
organization: factories.string(),
|
|
10297
|
-
carrier_fee: factories['io.flow.internal.v0.models.carrier_fee'](),
|
|
10298
|
-
}); },
|
|
10299
10331
|
'io.flow.internal.v0.models.carrier_file': function () { return ({
|
|
10300
10332
|
id: factories.string(),
|
|
10301
10333
|
type: factories['io.flow.internal.v0.enums.carrier_file_type'](),
|
|
@@ -10319,6 +10351,17 @@ var factories = {
|
|
|
10319
10351
|
number: factories.string(),
|
|
10320
10352
|
timestamp: factories.date_time_iso_8601(),
|
|
10321
10353
|
}); },
|
|
10354
|
+
'io.flow.internal.v0.models.carrier_tax_form': function () { return ({
|
|
10355
|
+
id: factories.string(),
|
|
10356
|
+
label_invoice_request_id: factories.string(),
|
|
10357
|
+
units: factories['io.flow.internal.v0.models.carrier_tax_units'](),
|
|
10358
|
+
surcharges: factories['io.flow.internal.v0.models.label_surcharge_form'](),
|
|
10359
|
+
total: factories.decimal(),
|
|
10360
|
+
attributes: objectOf(function () { return factories.string(); }),
|
|
10361
|
+
}); },
|
|
10362
|
+
'io.flow.internal.v0.models.carrier_tax_units': function () { return ({
|
|
10363
|
+
currency: factories.string(),
|
|
10364
|
+
}); },
|
|
10322
10365
|
'io.flow.internal.v0.models.catalog_import_request': function () { return ({
|
|
10323
10366
|
discriminator: 'catalog_import_request',
|
|
10324
10367
|
event_id: factories.string(),
|
|
@@ -10637,6 +10680,25 @@ var factories = {
|
|
|
10637
10680
|
channel_id: factories.string(),
|
|
10638
10681
|
channel_order_summary: factories['io.flow.internal.v0.models.channel_order_summary'](),
|
|
10639
10682
|
}); },
|
|
10683
|
+
'io.flow.internal.v0.models.channel_organization_identifier': function () { return ({
|
|
10684
|
+
id: factories.string(),
|
|
10685
|
+
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
10686
|
+
identifier: factories.string(),
|
|
10687
|
+
}); },
|
|
10688
|
+
'io.flow.internal.v0.models.channel_organization_identifier_deleted': function () { return ({
|
|
10689
|
+
discriminator: 'channel_organization_identifier_deleted',
|
|
10690
|
+
event_id: factories.string(),
|
|
10691
|
+
timestamp: factories.date_time_iso_8601(),
|
|
10692
|
+
channel_id: factories.string(),
|
|
10693
|
+
id: factories.string(),
|
|
10694
|
+
}); },
|
|
10695
|
+
'io.flow.internal.v0.models.channel_organization_identifier_upserted': function () { return ({
|
|
10696
|
+
discriminator: 'channel_organization_identifier_upserted',
|
|
10697
|
+
event_id: factories.string(),
|
|
10698
|
+
timestamp: factories.date_time_iso_8601(),
|
|
10699
|
+
channel_id: factories.string(),
|
|
10700
|
+
channel_organization_identifier: factories['io.flow.internal.v0.models.channel_organization_identifier'](),
|
|
10701
|
+
}); },
|
|
10640
10702
|
'io.flow.internal.v0.models.channel_organization_shopify': function () { return ({
|
|
10641
10703
|
organization: factories['io.flow.channel.v0.models.channel_organization'](),
|
|
10642
10704
|
tokens: arrayOf(function () { return factories['io.flow.internal.v0.models.shopify_channel_organization_tokens'](); }),
|
|
@@ -11030,6 +11092,29 @@ var factories = {
|
|
|
11030
11092
|
organization_id: factories.string(),
|
|
11031
11093
|
product_id: factories.string(),
|
|
11032
11094
|
}); },
|
|
11095
|
+
'io.flow.internal.v0.models.classification_product_request': function () { return ({
|
|
11096
|
+
merchant_id: factories.string(),
|
|
11097
|
+
product_name: factories.string(),
|
|
11098
|
+
product_description: factories.string(),
|
|
11099
|
+
product_id_internal: factories.string(),
|
|
11100
|
+
product_id_external: factories.string(),
|
|
11101
|
+
product_group_code: factories.string(),
|
|
11102
|
+
product_url: factories.string(),
|
|
11103
|
+
product_image: factories.string(),
|
|
11104
|
+
product_attributes: objectOf(function () { return factories.string(); }),
|
|
11105
|
+
categories: arrayOf(function () { return factories.string(); }),
|
|
11106
|
+
platform_id: factories['io.flow.internal.v0.enums.classification_platform'](),
|
|
11107
|
+
}); },
|
|
11108
|
+
'io.flow.internal.v0.models.classification_product_result': function () { return ({
|
|
11109
|
+
product_id: factories.string(),
|
|
11110
|
+
merchant_id: factories.string(),
|
|
11111
|
+
platform_id: factories['io.flow.internal.v0.enums.classification_platform'](),
|
|
11112
|
+
hs_code: factories.string(),
|
|
11113
|
+
probability: factories.integer(),
|
|
11114
|
+
classification_decision: factories['io.flow.internal.v0.enums.classification_decision'](),
|
|
11115
|
+
classification_type: factories['io.flow.internal.v0.enums.classification_type'](),
|
|
11116
|
+
clothing_age_classification: factories['io.flow.internal.v0.enums.clothing_age_classification'](),
|
|
11117
|
+
}); },
|
|
11033
11118
|
'io.flow.internal.v0.models.classification_product_summary': function () { return ({
|
|
11034
11119
|
product_id: factories.string(),
|
|
11035
11120
|
organization_id: factories.string(),
|
|
@@ -11075,6 +11160,15 @@ var factories = {
|
|
|
11075
11160
|
status: factories['io.flow.internal.v0.enums.item_classification_status'](),
|
|
11076
11161
|
classified_by: factories.string(),
|
|
11077
11162
|
}); },
|
|
11163
|
+
'io.flow.internal.v0.models.cli_log_entry': function () { return ({
|
|
11164
|
+
id: factories.string(),
|
|
11165
|
+
user: factories['io.flow.common.v0.models.user_reference'](),
|
|
11166
|
+
task: factories.string(),
|
|
11167
|
+
}); },
|
|
11168
|
+
'io.flow.internal.v0.models.cli_log_entry_form': function () { return ({
|
|
11169
|
+
user_id: factories.string(),
|
|
11170
|
+
task: factories.string(),
|
|
11171
|
+
}); },
|
|
11078
11172
|
'io.flow.internal.v0.models.colm_item': function () { return ({
|
|
11079
11173
|
id: factories.string(),
|
|
11080
11174
|
number: factories.string(),
|
|
@@ -11465,6 +11559,7 @@ var factories = {
|
|
|
11465
11559
|
labels: arrayOf(function () { return factories['io.flow.internal.v0.models.debug_label'](); }),
|
|
11466
11560
|
captures: arrayOf(function () { return factories['io.flow.internal.v0.models.debug_payment_transaction_summary'](); }),
|
|
11467
11561
|
refunds: arrayOf(function () { return factories['io.flow.internal.v0.models.debug_payment_transaction_summary'](); }),
|
|
11562
|
+
allocation: factories['io.flow.experience.v0.models.allocation_v2'](),
|
|
11468
11563
|
}); },
|
|
11469
11564
|
'io.flow.internal.v0.models.debug_fulfillment_delta': function () { return ({
|
|
11470
11565
|
posted_transactions_net: factories.decimal(),
|
|
@@ -11486,6 +11581,8 @@ var factories = {
|
|
|
11486
11581
|
'io.flow.internal.v0.models.debug_order': function () { return ({
|
|
11487
11582
|
organization_id: factories.string(),
|
|
11488
11583
|
number: factories.string(),
|
|
11584
|
+
prices: arrayOf(function () { return factories['io.flow.order.price.v0.models.order_price_detail'](); }),
|
|
11585
|
+
total: factories['io.flow.common.v0.models.money_with_base'](),
|
|
11489
11586
|
identifiers: objectOf(function () { return factories.string(); }),
|
|
11490
11587
|
submitted_at: factories.date_time_iso_8601(),
|
|
11491
11588
|
}); },
|
|
@@ -11640,14 +11737,14 @@ var factories = {
|
|
|
11640
11737
|
}); },
|
|
11641
11738
|
'io.flow.internal.v0.models.dimension_estimate_ops_input': function () { return ({
|
|
11642
11739
|
organization_id: factories.string(),
|
|
11643
|
-
|
|
11644
|
-
|
|
11645
|
-
|
|
11646
|
-
|
|
11647
|
-
|
|
11648
|
-
|
|
11649
|
-
|
|
11650
|
-
|
|
11740
|
+
length_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
11741
|
+
length_value: factories.string(),
|
|
11742
|
+
width_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
11743
|
+
width_value: factories.string(),
|
|
11744
|
+
depth_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
11745
|
+
depth_value: factories.string(),
|
|
11746
|
+
weight_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
11747
|
+
weight_value: factories.string(),
|
|
11651
11748
|
}); },
|
|
11652
11749
|
'io.flow.internal.v0.models.discount': function () { return ({
|
|
11653
11750
|
amount: factories.decimal(),
|
|
@@ -12408,6 +12505,18 @@ var factories = {
|
|
|
12408
12505
|
name: factories.string(),
|
|
12409
12506
|
tracker_id: factories.string(),
|
|
12410
12507
|
}); },
|
|
12508
|
+
'io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason': function () { return ({
|
|
12509
|
+
organization_id: factories.string(),
|
|
12510
|
+
length_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
12511
|
+
length_value: factories.string(),
|
|
12512
|
+
width_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
12513
|
+
width_value: factories.string(),
|
|
12514
|
+
depth_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
12515
|
+
depth_value: factories.string(),
|
|
12516
|
+
weight_units: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
12517
|
+
weight_value: factories.string(),
|
|
12518
|
+
reason: factories.string(),
|
|
12519
|
+
}); },
|
|
12411
12520
|
'io.flow.internal.v0.models.feature': function () { return ({
|
|
12412
12521
|
id: factories.string(),
|
|
12413
12522
|
key: factories.string(),
|
|
@@ -12738,6 +12847,9 @@ var factories = {
|
|
|
12738
12847
|
reason: factories.string(),
|
|
12739
12848
|
next_action_from: factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'](),
|
|
12740
12849
|
}); },
|
|
12850
|
+
'io.flow.internal.v0.models.force_transit_form': function () { return ({
|
|
12851
|
+
description: factories.string(),
|
|
12852
|
+
}); },
|
|
12741
12853
|
'io.flow.internal.v0.models.fraud_pending_review': function () { return ({
|
|
12742
12854
|
id: factories.string(),
|
|
12743
12855
|
fraud_review_id: factories.string(),
|
|
@@ -12939,6 +13051,7 @@ var factories = {
|
|
|
12939
13051
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
12940
13052
|
trigger: factories['io.flow.internal.v0.unions.fulfillment_trigger'](),
|
|
12941
13053
|
fulfilled_at: factories.date_time_iso_8601(),
|
|
13054
|
+
carrier: factories['io.flow.internal.v0.models.fulfillment_carrier'](),
|
|
12942
13055
|
owner: factories['io.flow.internal.v0.enums.responsible_party'](),
|
|
12943
13056
|
origin: factories['io.flow.internal.v0.models.fulfillment_origin'](),
|
|
12944
13057
|
business: factories['io.flow.internal.v0.models.fulfillment_business'](),
|
|
@@ -12964,6 +13077,11 @@ var factories = {
|
|
|
12964
13077
|
reason: factories['io.flow.order.management.v0.enums.cancel_reason'](),
|
|
12965
13078
|
cancelled_lines: arrayOf(function () { return factories['io.flow.order.management.v0.models.fulfillment_line_cancel_form'](); }),
|
|
12966
13079
|
}); },
|
|
13080
|
+
'io.flow.internal.v0.models.fulfillment_carrier': function () { return ({
|
|
13081
|
+
id: factories.string(),
|
|
13082
|
+
service_id: factories.string(),
|
|
13083
|
+
tracking_number: factories.string(),
|
|
13084
|
+
}); },
|
|
12967
13085
|
'io.flow.internal.v0.models.fulfillment_deleted': function () { return ({
|
|
12968
13086
|
discriminator: 'fulfillment_deleted',
|
|
12969
13087
|
event_id: factories.string(),
|
|
@@ -13424,6 +13542,12 @@ var factories = {
|
|
|
13424
13542
|
'io.flow.internal.v0.models.invalid_checkout_data': function () { return ({
|
|
13425
13543
|
order: factories['io.flow.experience.v0.models.order_put_form'](),
|
|
13426
13544
|
}); },
|
|
13545
|
+
'io.flow.internal.v0.models.invariant': function () { return ({
|
|
13546
|
+
name: factories.string(),
|
|
13547
|
+
count: factories.long(),
|
|
13548
|
+
fired_at: factories.date_time_iso_8601(),
|
|
13549
|
+
sql: factories.string(),
|
|
13550
|
+
}); },
|
|
13427
13551
|
'io.flow.internal.v0.models.inventory_organization_settings': function () { return ({
|
|
13428
13552
|
id: factories.string(),
|
|
13429
13553
|
inventory_reservation: factories['io.flow.internal.v0.enums.inventory_reservation'](),
|
|
@@ -13549,6 +13673,9 @@ var factories = {
|
|
|
13549
13673
|
}); },
|
|
13550
13674
|
'io.flow.internal.v0.models.item_customs_details': function () { return ({
|
|
13551
13675
|
item_number: factories.string(),
|
|
13676
|
+
product_title: factories.string(),
|
|
13677
|
+
sanitized_product_title: factories.string(),
|
|
13678
|
+
sanitized_rule_ids: arrayOf(function () { return factories.string(); }),
|
|
13552
13679
|
sub_item_number: factories.string(),
|
|
13553
13680
|
customs_description: factories.string(),
|
|
13554
13681
|
origin: factories.string(),
|
|
@@ -13900,6 +14027,8 @@ var factories = {
|
|
|
13900
14027
|
service: factories['io.flow.reference.v0.models.carrier_service'](),
|
|
13901
14028
|
}); },
|
|
13902
14029
|
'io.flow.internal.v0.models.label_surcharge_form': function () { return ({
|
|
14030
|
+
all: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14031
|
+
base_and_fuel: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
13903
14032
|
fuel: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
13904
14033
|
remote_area: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
13905
14034
|
oversize: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
@@ -13911,6 +14040,12 @@ var factories = {
|
|
|
13911
14040
|
eei_filing: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
13912
14041
|
fixed_ddp: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
13913
14042
|
fixed_currency_conversion: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14043
|
+
prohibited_item: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14044
|
+
undeliverable_shipment: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14045
|
+
signature_required: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14046
|
+
direct_delivery: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14047
|
+
saturday_stop: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14048
|
+
residential_extended_area_pickup: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
13914
14049
|
}); },
|
|
13915
14050
|
'io.flow.internal.v0.models.label_surcharge_single_form': function () { return ({
|
|
13916
14051
|
amount: factories.decimal(),
|
|
@@ -16078,6 +16213,7 @@ var factories = {
|
|
|
16078
16213
|
auto_review_status: factories['io.flow.internal.v0.enums.restriction_status'](),
|
|
16079
16214
|
manually_reviewed_at: factories.date_time_iso_8601(),
|
|
16080
16215
|
manually_reviewed_by: factories.string(),
|
|
16216
|
+
cause_rule_id: factories.string(),
|
|
16081
16217
|
}); },
|
|
16082
16218
|
'io.flow.internal.v0.models.product_restriction_rule_decision_deleted': function () { return ({
|
|
16083
16219
|
discriminator: 'product_restriction_rule_decision_deleted',
|
|
@@ -16542,6 +16678,7 @@ var factories = {
|
|
|
16542
16678
|
type: factories['io.flow.internal.v0.enums.report_type'](),
|
|
16543
16679
|
from: factories.date_time_iso_8601(),
|
|
16544
16680
|
to: factories.date_time_iso_8601(),
|
|
16681
|
+
payment_type: factories['io.flow.internal.v0.enums.report_payment_type'](),
|
|
16545
16682
|
url: factories.string(),
|
|
16546
16683
|
processed_at: factories.date_time_iso_8601(),
|
|
16547
16684
|
}); },
|
|
@@ -16560,9 +16697,18 @@ var factories = {
|
|
|
16560
16697
|
account_number: factories.string(),
|
|
16561
16698
|
}); },
|
|
16562
16699
|
'io.flow.internal.v0.models.report_form': function () { return ({
|
|
16700
|
+
type: factories['io.flow.internal.v0.enums.report_type'](),
|
|
16563
16701
|
from: factories.date_time_iso_8601(),
|
|
16564
16702
|
to: factories.date_time_iso_8601(),
|
|
16565
|
-
|
|
16703
|
+
payment_type: factories['io.flow.internal.v0.enums.report_payment_type'](),
|
|
16704
|
+
orders: arrayOf(function () { return factories['io.flow.internal.v0.models.report_order_reference'](); }),
|
|
16705
|
+
}); },
|
|
16706
|
+
'io.flow.internal.v0.models.report_merchant': function () { return ({
|
|
16707
|
+
id: factories.string(),
|
|
16708
|
+
}); },
|
|
16709
|
+
'io.flow.internal.v0.models.report_order_reference': function () { return ({
|
|
16710
|
+
organization_id: factories.string(),
|
|
16711
|
+
order_number: factories.string(),
|
|
16566
16712
|
}); },
|
|
16567
16713
|
'io.flow.internal.v0.models.report_owner': function () { return ({
|
|
16568
16714
|
name: factories.string(),
|
|
@@ -16690,7 +16836,6 @@ var factories = {
|
|
|
16690
16836
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16691
16837
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16692
16838
|
freight: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16693
|
-
refund: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
16694
16839
|
}); },
|
|
16695
16840
|
'io.flow.internal.v0.models.reporting_monetary_value': function () { return ({
|
|
16696
16841
|
transaction: factories.decimal(),
|
|
@@ -17124,6 +17269,7 @@ var factories = {
|
|
|
17124
17269
|
payment: factories['io.flow.internal.v0.models.report_payment'](),
|
|
17125
17270
|
bank_account: factories['io.flow.internal.v0.models.report_bank_account_cleartext'](),
|
|
17126
17271
|
account: factories['io.flow.internal.v0.models.report_account'](),
|
|
17272
|
+
merchant: factories['io.flow.internal.v0.models.report_merchant'](),
|
|
17127
17273
|
owner: factories['io.flow.internal.v0.models.report_owner'](),
|
|
17128
17274
|
description: factories.string(),
|
|
17129
17275
|
}); },
|
|
@@ -17729,6 +17875,7 @@ var factories = {
|
|
|
17729
17875
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
17730
17876
|
catalog_sync_duration: factories.long(),
|
|
17731
17877
|
catalog_products_count: factories.long(),
|
|
17878
|
+
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
17732
17879
|
}); },
|
|
17733
17880
|
'io.flow.internal.v0.models.shopify_shop_upserted': function () { return ({
|
|
17734
17881
|
discriminator: 'shopify_shop_upserted',
|
|
@@ -17736,9 +17883,9 @@ var factories = {
|
|
|
17736
17883
|
timestamp: factories.date_time_iso_8601(),
|
|
17737
17884
|
shop: factories['io.flow.internal.v0.models.shop'](),
|
|
17738
17885
|
}); },
|
|
17739
|
-
'io.flow.internal.v0.models.
|
|
17740
|
-
|
|
17741
|
-
|
|
17886
|
+
'io.flow.internal.v0.models.shopify_store_detail': function () { return ({
|
|
17887
|
+
shopify_domain: factories.string(),
|
|
17888
|
+
shop_id: factories.string(),
|
|
17742
17889
|
}); },
|
|
17743
17890
|
'io.flow.internal.v0.models.shopify_webhook': function () { return ({
|
|
17744
17891
|
id: factories.string(),
|
|
@@ -18262,7 +18409,7 @@ var factories = {
|
|
|
18262
18409
|
type_id: factories.string(),
|
|
18263
18410
|
source_type: factories.string(),
|
|
18264
18411
|
source_id: factories.string(),
|
|
18265
|
-
environment: factories.
|
|
18412
|
+
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
18266
18413
|
created_at: factories.date_time_iso_8601(),
|
|
18267
18414
|
num_attempts: factories.integer(),
|
|
18268
18415
|
next_attempt_at: factories.date_time_iso_8601(),
|
|
@@ -19181,8 +19328,8 @@ var factories = {
|
|
|
19181
19328
|
function () { return factories['io.flow.internal.v0.models.label_invoice_request_deleted'](); },
|
|
19182
19329
|
function () { return factories['io.flow.internal.v0.models.carrier_charge_upserted'](); },
|
|
19183
19330
|
function () { return factories['io.flow.internal.v0.models.carrier_charge_deleted'](); },
|
|
19184
|
-
function () { return factories['io.flow.internal.v0.models.
|
|
19185
|
-
function () { return factories['io.flow.internal.v0.models.
|
|
19331
|
+
function () { return factories['io.flow.internal.v0.models.bank_payment_order_upserted'](); },
|
|
19332
|
+
function () { return factories['io.flow.internal.v0.models.bank_payment_order_deleted'](); },
|
|
19186
19333
|
function () { return factories['io.flow.internal.v0.models.fraud_review_upserted'](); },
|
|
19187
19334
|
function () { return factories['io.flow.internal.v0.models.fraud_review_deleted'](); },
|
|
19188
19335
|
function () { return factories['io.flow.internal.v0.models.fraud_pending_review_upserted'](); },
|
|
@@ -19339,6 +19486,8 @@ var factories = {
|
|
|
19339
19486
|
function () { return factories['io.flow.internal.v0.models.shopify_markets_metrics_deleted'](); },
|
|
19340
19487
|
function () { return factories['io.flow.internal.v0.models.channel_order_summary_upserted'](); },
|
|
19341
19488
|
function () { return factories['io.flow.internal.v0.models.channel_order_summary_deleted'](); },
|
|
19489
|
+
function () { return factories['io.flow.internal.v0.models.channel_organization_identifier_upserted'](); },
|
|
19490
|
+
function () { return factories['io.flow.internal.v0.models.channel_organization_identifier_deleted'](); },
|
|
19342
19491
|
function () { return factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'](); },
|
|
19343
19492
|
function () { return factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'](); },
|
|
19344
19493
|
function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](); },
|
|
@@ -19779,7 +19928,6 @@ var factories = {
|
|
|
19779
19928
|
'io.flow.internal.v0.unions.task_metadata': function () {
|
|
19780
19929
|
var f = faker.helpers.arrayElement([
|
|
19781
19930
|
function () { return factories['io.flow.internal.v0.models.statement_creation_metadata'](); },
|
|
19782
|
-
function () { return factories['io.flow.internal.v0.models.accounting_fulfillment_metadata'](); },
|
|
19783
19931
|
function () { return factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](); },
|
|
19784
19932
|
]);
|
|
19785
19933
|
return f();
|
|
@@ -19819,7 +19967,6 @@ var factories = {
|
|
|
19819
19967
|
function () { return factories['io.flow.internal.v0.models.duty_transaction'](); },
|
|
19820
19968
|
function () { return factories['io.flow.internal.v0.models.trueup_transaction'](); },
|
|
19821
19969
|
function () { return factories['io.flow.internal.v0.models.carrier_charge_transaction'](); },
|
|
19822
|
-
function () { return factories['io.flow.internal.v0.models.carrier_fee_transaction'](); },
|
|
19823
19970
|
]);
|
|
19824
19971
|
return f();
|
|
19825
19972
|
},
|
|
@@ -20133,6 +20280,12 @@ var factories = {
|
|
|
20133
20280
|
id: factories.string(),
|
|
20134
20281
|
number: factories.string(),
|
|
20135
20282
|
}); },
|
|
20283
|
+
'io.flow.label.v0.models.label_processing_modification': function () { return ({
|
|
20284
|
+
id: factories.string(),
|
|
20285
|
+
modifications: arrayOf(function () { return factories.string(); }),
|
|
20286
|
+
destination: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
20287
|
+
destination_provided_to_carrier: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
20288
|
+
}); },
|
|
20136
20289
|
'io.flow.label.v0.models.label_reference': function () { return ({
|
|
20137
20290
|
id: factories.string(),
|
|
20138
20291
|
}); },
|
|
@@ -25674,6 +25827,20 @@ var factories = {
|
|
|
25674
25827
|
channel_id: factories.string(),
|
|
25675
25828
|
channel_order_summary: factories['io.flow.shopify.markets.internal.v0.models.channel_order_summary'](),
|
|
25676
25829
|
}); },
|
|
25830
|
+
'io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_deleted': function () { return ({
|
|
25831
|
+
discriminator: 'channel_organization_identifier_deleted',
|
|
25832
|
+
event_id: factories.string(),
|
|
25833
|
+
timestamp: factories.date_time_iso_8601(),
|
|
25834
|
+
channel_id: factories.string(),
|
|
25835
|
+
id: factories.string(),
|
|
25836
|
+
}); },
|
|
25837
|
+
'io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_upserted': function () { return ({
|
|
25838
|
+
discriminator: 'channel_organization_identifier_upserted',
|
|
25839
|
+
event_id: factories.string(),
|
|
25840
|
+
timestamp: factories.date_time_iso_8601(),
|
|
25841
|
+
channel_id: factories.string(),
|
|
25842
|
+
channel_organization_identifier: factories['io.flow.shopify.markets.internal.v0.models.channel_organization_identifier'](),
|
|
25843
|
+
}); },
|
|
25677
25844
|
'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted': function () { return ({
|
|
25678
25845
|
discriminator: 'shopify_markets_metrics_deleted',
|
|
25679
25846
|
event_id: factories.string(),
|
|
@@ -25760,6 +25927,8 @@ var factories = {
|
|
|
25760
25927
|
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted'](); },
|
|
25761
25928
|
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_upserted'](); },
|
|
25762
25929
|
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted'](); },
|
|
25930
|
+
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_upserted'](); },
|
|
25931
|
+
function () { return factories['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_deleted'](); },
|
|
25763
25932
|
]);
|
|
25764
25933
|
return f();
|
|
25765
25934
|
},
|
|
@@ -25820,6 +25989,11 @@ var factories = {
|
|
|
25820
25989
|
fulfillment_status: factories['io.flow.shopify.markets.internal.v0.enums.channel_order_fulfillment_status_code'](),
|
|
25821
25990
|
timestamp: factories.date_time_iso_8601(),
|
|
25822
25991
|
}); },
|
|
25992
|
+
'io.flow.shopify.markets.internal.v0.models.channel_organization_identifier': function () { return ({
|
|
25993
|
+
id: factories.string(),
|
|
25994
|
+
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
25995
|
+
identifier: factories.string(),
|
|
25996
|
+
}); },
|
|
25823
25997
|
'io.flow.shopify.markets.internal.v0.models.flow_shop_validation_error': function () { return ({
|
|
25824
25998
|
message: factories.string(),
|
|
25825
25999
|
reason: factories.string(),
|
|
@@ -25947,6 +26121,7 @@ var factories = {
|
|
|
25947
26121
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
25948
26122
|
catalog_sync_duration: factories.long(),
|
|
25949
26123
|
catalog_products_count: factories.long(),
|
|
26124
|
+
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
25950
26125
|
}); },
|
|
25951
26126
|
'io.flow.shopify.markets.internal.v0.models.third_party_logistics_partner': function () { return ({
|
|
25952
26127
|
warehouse_address: factories['io.flow.common.v0.models.billing_address'](),
|
|
@@ -26037,7 +26212,7 @@ var factories = {
|
|
|
26037
26212
|
'io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type': function () { return faker.helpers.arrayElement(['fulfilled', 'null', 'partial']); },
|
|
26038
26213
|
'io.flow.shopify.markets.v0.enums.shopify_order_inventory_behaviour': function () { return faker.helpers.arrayElement(['bypass', 'decrement_ignoring_policy', 'decrement_obeying_policy']); },
|
|
26039
26214
|
'io.flow.shopify.markets.v0.enums.shopify_order_kind_type': function () { return faker.helpers.arrayElement(['authorization', 'capture', 'sale', 'void', 'refund']); },
|
|
26040
|
-
'io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names': function () { return faker.helpers.arrayElement(['flow_commerce', 'gift_card', 'manual', 'shopify_payments']); },
|
|
26215
|
+
'io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names': function () { return faker.helpers.arrayElement(['flow_commerce', 'gift_card', 'manual', 'shopify_payments', 'shop_cash']); },
|
|
26041
26216
|
'io.flow.shopify.markets.v0.enums.shopify_order_processing_method_type': function () { return faker.helpers.arrayElement(['checkout', 'direct', 'manual', 'offsite', 'express', 'deferred_payment']); },
|
|
26042
26217
|
'io.flow.shopify.markets.v0.enums.shopify_order_restock_type': function () { return faker.helpers.arrayElement(['no_restock', 'cancel', 'return']); },
|
|
26043
26218
|
'io.flow.shopify.markets.v0.enums.shopify_order_status_type': function () { return faker.helpers.arrayElement(['open', 'closed', 'cancelled', 'any']); },
|
|
@@ -28446,6 +28621,12 @@ var factories = {
|
|
|
28446
28621
|
'eei_filing',
|
|
28447
28622
|
'fixed_ddp',
|
|
28448
28623
|
'fixed_currency_conversion',
|
|
28624
|
+
'prohibited_item',
|
|
28625
|
+
'undeliverable_shipment',
|
|
28626
|
+
'signature_required',
|
|
28627
|
+
'direct_delivery',
|
|
28628
|
+
'saturday_stop',
|
|
28629
|
+
'residential_extended_area_pickup',
|
|
28449
28630
|
]); },
|
|
28450
28631
|
'io.flow.trueup.v0.models.dead_weight': function () { return ({
|
|
28451
28632
|
weight: factories.decimal(),
|
|
@@ -28525,7 +28706,6 @@ export var makeAccountTransactionsExportRequest = function () { return factories
|
|
|
28525
28706
|
export var makeAccountType = function () { return factories['io.flow.internal.v0.enums.account_type'](); };
|
|
28526
28707
|
export var makeAccountUpserted = function () { return factories['io.flow.internal.v0.models.account_upserted'](); };
|
|
28527
28708
|
export var makeAccountUpsertedV2 = function () { return factories['io.flow.internal.v0.models.account_upserted_v2'](); };
|
|
28528
|
-
export var makeAccountingFulfillmentMetadata = function () { return factories['io.flow.internal.v0.models.accounting_fulfillment_metadata'](); };
|
|
28529
28709
|
export var makeAccountingPendingOrderMetadata = function () { return factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](); };
|
|
28530
28710
|
export var makeActionQuantity = function () { return factories['io.flow.internal.v0.models.action_quantity'](); };
|
|
28531
28711
|
export var makeAdditionalImportTax = function () { return factories['io.flow.internal.v0.models.additional_import_tax'](); };
|
|
@@ -28622,6 +28802,8 @@ export var makeBankPayment = function () { return factories['io.flow.internal.v0
|
|
|
28622
28802
|
export var makeBankPaymentDeletedV2 = function () { return factories['io.flow.internal.v0.models.bank_payment_deleted_v2'](); };
|
|
28623
28803
|
export var makeBankPaymentForm = function () { return factories['io.flow.internal.v0.models.bank_payment_form'](); };
|
|
28624
28804
|
export var makeBankPaymentOrder = function () { return factories['io.flow.internal.v0.models.bank_payment_order'](); };
|
|
28805
|
+
export var makeBankPaymentOrderDeleted = function () { return factories['io.flow.internal.v0.models.bank_payment_order_deleted'](); };
|
|
28806
|
+
export var makeBankPaymentOrderUpserted = function () { return factories['io.flow.internal.v0.models.bank_payment_order_upserted'](); };
|
|
28625
28807
|
export var makeBankPaymentPromiseCompletedMethod = function () { return factories['io.flow.internal.v0.enums.bank_payment_promise_completed_method'](); };
|
|
28626
28808
|
export var makeBankPaymentReference = function () { return factories['io.flow.internal.v0.models.bank_payment_reference'](); };
|
|
28627
28809
|
export var makeBankPaymentStatusCode = function () { return factories['io.flow.internal.v0.enums.bank_payment_status_code'](); };
|
|
@@ -28715,20 +28897,14 @@ export var makeCarrierChargeType = function () { return factories['io.flow.inter
|
|
|
28715
28897
|
export var makeCarrierChargeUnits = function () { return factories['io.flow.internal.v0.models.carrier_charge_units'](); };
|
|
28716
28898
|
export var makeCarrierChargeUpserted = function () { return factories['io.flow.internal.v0.models.carrier_charge_upserted'](); };
|
|
28717
28899
|
export var makeCarrierCredentials = function () { return factories['io.flow.internal.v0.unions.carrier_credentials'](); };
|
|
28718
|
-
export var makeCarrierFee = function () { return factories['io.flow.internal.v0.models.carrier_fee'](); };
|
|
28719
|
-
export var makeCarrierFeeDeleted = function () { return factories['io.flow.internal.v0.models.carrier_fee_deleted'](); };
|
|
28720
|
-
export var makeCarrierFeeForm = function () { return factories['io.flow.internal.v0.models.carrier_fee_form'](); };
|
|
28721
|
-
export var makeCarrierFeeTransaction = function () { return factories['io.flow.internal.v0.models.carrier_fee_transaction'](); };
|
|
28722
|
-
export var makeCarrierFeeTransactionLabelReference = function () { return factories['io.flow.internal.v0.models.carrier_fee_transaction_label_reference'](); };
|
|
28723
|
-
export var makeCarrierFeeTransactionType = function () { return factories['io.flow.internal.v0.enums.carrier_fee_transaction_type'](); };
|
|
28724
|
-
export var makeCarrierFeeUnits = function () { return factories['io.flow.internal.v0.models.carrier_fee_units'](); };
|
|
28725
|
-
export var makeCarrierFeeUpserted = function () { return factories['io.flow.internal.v0.models.carrier_fee_upserted'](); };
|
|
28726
28900
|
export var makeCarrierFile = function () { return factories['io.flow.internal.v0.models.carrier_file'](); };
|
|
28727
28901
|
export var makeCarrierFileForm = function () { return factories['io.flow.internal.v0.models.carrier_file_form'](); };
|
|
28728
28902
|
export var makeCarrierFileResult = function () { return factories['io.flow.internal.v0.models.carrier_file_result'](); };
|
|
28729
28903
|
export var makeCarrierFileType = function () { return factories['io.flow.internal.v0.enums.carrier_file_type'](); };
|
|
28730
28904
|
export var makeCarrierInvoice = function () { return factories['io.flow.internal.v0.models.carrier_invoice'](); };
|
|
28731
28905
|
export var makeCarrierLabelGenerationMethod = function () { return factories['io.flow.internal.v0.enums.carrier_label_generation_method'](); };
|
|
28906
|
+
export var makeCarrierTaxForm = function () { return factories['io.flow.internal.v0.models.carrier_tax_form'](); };
|
|
28907
|
+
export var makeCarrierTaxUnits = function () { return factories['io.flow.internal.v0.models.carrier_tax_units'](); };
|
|
28732
28908
|
export var makeCarrierValidationStatus = function () { return factories['io.flow.internal.v0.enums.carrier_validation_status'](); };
|
|
28733
28909
|
export var makeCatalogImportRequest = function () { return factories['io.flow.internal.v0.models.catalog_import_request'](); };
|
|
28734
28910
|
export var makeCatalogImportType = function () { return factories['io.flow.internal.v0.enums.catalog_import_type'](); };
|
|
@@ -28787,6 +28963,9 @@ export var makeChannelOrderSummary = function () { return factories['io.flow.int
|
|
|
28787
28963
|
export var makeChannelOrderSummaryDeleted = function () { return factories['io.flow.internal.v0.models.channel_order_summary_deleted'](); };
|
|
28788
28964
|
export var makeChannelOrderSummaryFulfillmentDetails = function () { return factories['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'](); };
|
|
28789
28965
|
export var makeChannelOrderSummaryUpserted = function () { return factories['io.flow.internal.v0.models.channel_order_summary_upserted'](); };
|
|
28966
|
+
export var makeChannelOrganizationIdentifier = function () { return factories['io.flow.internal.v0.models.channel_organization_identifier'](); };
|
|
28967
|
+
export var makeChannelOrganizationIdentifierDeleted = function () { return factories['io.flow.internal.v0.models.channel_organization_identifier_deleted'](); };
|
|
28968
|
+
export var makeChannelOrganizationIdentifierUpserted = function () { return factories['io.flow.internal.v0.models.channel_organization_identifier_upserted'](); };
|
|
28790
28969
|
export var makeChannelOrganizationShopify = function () { return factories['io.flow.internal.v0.models.channel_organization_shopify'](); };
|
|
28791
28970
|
export var makeChannelOrganizationShopifyForm = function () { return factories['io.flow.internal.v0.models.channel_organization_shopify_form'](); };
|
|
28792
28971
|
export var makeChannelOrganizationShopifyPostForm = function () { return factories['io.flow.internal.v0.models.channel_organization_shopify_post_form'](); };
|
|
@@ -28859,6 +29038,7 @@ export var makeClassification = function () { return factories['io.flow.internal
|
|
|
28859
29038
|
export var makeClassificationAction = function () { return factories['io.flow.internal.v0.unions.classification_action'](); };
|
|
28860
29039
|
export var makeClassificationActionForm = function () { return factories['io.flow.internal.v0.unions.classification_action_form'](); };
|
|
28861
29040
|
export var makeClassificationActionFormUndo = function () { return factories['io.flow.internal.v0.models.classification_action_form_undo'](); };
|
|
29041
|
+
export var makeClassificationDecision = function () { return factories['io.flow.internal.v0.enums.classification_decision'](); };
|
|
28862
29042
|
export var makeClassificationDetails = function () { return factories['io.flow.internal.v0.models.classification_details'](); };
|
|
28863
29043
|
export var makeClassificationError = function () { return factories['io.flow.internal.v0.models.classification_error'](); };
|
|
28864
29044
|
export var makeClassificationErrorCode = function () { return factories['io.flow.internal.v0.enums.classification_error_code'](); };
|
|
@@ -28867,9 +29047,12 @@ export var makeClassificationFormWrapper = function () { return factories['io.fl
|
|
|
28867
29047
|
export var makeClassificationItem = function () { return factories['io.flow.internal.v0.models.classification_item'](); };
|
|
28868
29048
|
export var makeClassificationJudgementForm = function () { return factories['io.flow.internal.v0.unions.classification_judgement_form'](); };
|
|
28869
29049
|
export var makeClassificationLabelAttribute = function () { return factories['io.flow.internal.v0.unions.classification_label_attribute'](); };
|
|
29050
|
+
export var makeClassificationPlatform = function () { return factories['io.flow.internal.v0.enums.classification_platform'](); };
|
|
28870
29051
|
export var makeClassificationProduct = function () { return factories['io.flow.internal.v0.models.classification_product'](); };
|
|
28871
29052
|
export var makeClassificationProductHarmonization = function () { return factories['io.flow.internal.v0.models.classification_product_harmonization'](); };
|
|
28872
29053
|
export var makeClassificationProductId = function () { return factories['io.flow.internal.v0.models.classification_product_id'](); };
|
|
29054
|
+
export var makeClassificationProductRequest = function () { return factories['io.flow.internal.v0.models.classification_product_request'](); };
|
|
29055
|
+
export var makeClassificationProductResult = function () { return factories['io.flow.internal.v0.models.classification_product_result'](); };
|
|
28873
29056
|
export var makeClassificationProductSummary = function () { return factories['io.flow.internal.v0.models.classification_product_summary'](); };
|
|
28874
29057
|
export var makeClassificationProductSummaryPage = function () { return factories['io.flow.internal.v0.models.classification_product_summary_page'](); };
|
|
28875
29058
|
export var makeClassificationRequeueRequest = function () { return factories['io.flow.internal.v0.models.classification_requeue_request'](); };
|
|
@@ -28877,9 +29060,13 @@ export var makeClassificationResponse = function () { return factories['io.flow.
|
|
|
28877
29060
|
export var makeClassificationStatistics = function () { return factories['io.flow.internal.v0.models.classification_statistics'](); };
|
|
28878
29061
|
export var makeClassificationSummaryReportPayload = function () { return factories['io.flow.internal.v0.models.classification_summary_report_payload'](); };
|
|
28879
29062
|
export var makeClassificationTaxonomy = function () { return factories['io.flow.internal.v0.unions.classification_taxonomy'](); };
|
|
29063
|
+
export var makeClassificationType = function () { return factories['io.flow.internal.v0.enums.classification_type'](); };
|
|
28880
29064
|
export var makeClassificationWrapper = function () { return factories['io.flow.internal.v0.models.classification_wrapper'](); };
|
|
28881
29065
|
export var makeClassifiedProduct = function () { return factories['io.flow.internal.v0.models.classified_product'](); };
|
|
28882
29066
|
export var makeClassifiedProductDetail = function () { return factories['io.flow.internal.v0.models.classified_product_detail'](); };
|
|
29067
|
+
export var makeCliLogEntry = function () { return factories['io.flow.internal.v0.models.cli_log_entry'](); };
|
|
29068
|
+
export var makeCliLogEntryForm = function () { return factories['io.flow.internal.v0.models.cli_log_entry_form'](); };
|
|
29069
|
+
export var makeClothingAgeClassification = function () { return factories['io.flow.internal.v0.enums.clothing_age_classification'](); };
|
|
28883
29070
|
export var makeColmItem = function () { return factories['io.flow.internal.v0.models.colm_item'](); };
|
|
28884
29071
|
export var makeColmItemDeleted = function () { return factories['io.flow.internal.v0.models.colm_item_deleted'](); };
|
|
28885
29072
|
export var makeColmItemForm = function () { return factories['io.flow.internal.v0.models.colm_item_form'](); };
|
|
@@ -29119,6 +29306,7 @@ export var makeExternalFulfillmentProofForm = function () { return factories['io
|
|
|
29119
29306
|
export var makeExternalFulfillmentProofTracking = function () { return factories['io.flow.internal.v0.models.external_fulfillment_proof_tracking'](); };
|
|
29120
29307
|
export var makeExternalFulfillmentProofTrackingForm = function () { return factories['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form'](); };
|
|
29121
29308
|
export var makeFacebookPixel = function () { return factories['io.flow.internal.v0.models.facebook_pixel'](); };
|
|
29309
|
+
export var makeFailedDimensionEstimateOpsInputWithReason = function () { return factories['io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason'](); };
|
|
29122
29310
|
export var makeFeature = function () { return factories['io.flow.internal.v0.models.feature'](); };
|
|
29123
29311
|
export var makeFeatureContextForm = function () { return factories['io.flow.internal.v0.models.feature_context_form'](); };
|
|
29124
29312
|
export var makeFeatureDefaultValue = function () { return factories['io.flow.internal.v0.unions.feature_default_value'](); };
|
|
@@ -29180,6 +29368,7 @@ export var makeFlowLabProjectPutForm = function () { return factories['io.flow.i
|
|
|
29180
29368
|
export var makeFlowLabelSetting = function () { return factories['io.flow.internal.v0.models.flow_label_setting'](); };
|
|
29181
29369
|
export var makeFlowLabelSettingForm = function () { return factories['io.flow.internal.v0.models.flow_label_setting_form'](); };
|
|
29182
29370
|
export var makeFlowShopValidationError = function () { return factories['io.flow.internal.v0.models.flow_shop_validation_error'](); };
|
|
29371
|
+
export var makeForceTransitForm = function () { return factories['io.flow.internal.v0.models.force_transit_form'](); };
|
|
29183
29372
|
export var makeFormat = function () { return factories['io.flow.internal.v0.enums.format'](); };
|
|
29184
29373
|
export var makeFraudPendingReview = function () { return factories['io.flow.internal.v0.models.fraud_pending_review'](); };
|
|
29185
29374
|
export var makeFraudPendingReviewDeleted = function () { return factories['io.flow.internal.v0.models.fraud_pending_review_deleted'](); };
|
|
@@ -29219,6 +29408,7 @@ export var makeFulfillment = function () { return factories['io.flow.internal.v0
|
|
|
29219
29408
|
export var makeFulfillmentActionForm = function () { return factories['io.flow.internal.v0.models.fulfillment_action_form'](); };
|
|
29220
29409
|
export var makeFulfillmentBusiness = function () { return factories['io.flow.internal.v0.models.fulfillment_business'](); };
|
|
29221
29410
|
export var makeFulfillmentCancel = function () { return factories['io.flow.internal.v0.models.fulfillment_cancel'](); };
|
|
29411
|
+
export var makeFulfillmentCarrier = function () { return factories['io.flow.internal.v0.models.fulfillment_carrier'](); };
|
|
29222
29412
|
export var makeFulfillmentDeleted = function () { return factories['io.flow.internal.v0.models.fulfillment_deleted'](); };
|
|
29223
29413
|
export var makeFulfillmentInternalExperienceReference = function () { return factories['io.flow.internal.v0.models.fulfillment_internal_experience_reference'](); };
|
|
29224
29414
|
export var makeFulfillmentOrigin = function () { return factories['io.flow.internal.v0.models.fulfillment_origin'](); };
|
|
@@ -29312,6 +29502,7 @@ export var makeInternalStripeAuthorizationDetails = function () { return factori
|
|
|
29312
29502
|
export var makeInternalTransactionDetails = function () { return factories['io.flow.internal.v0.unions.internal_transaction_details'](); };
|
|
29313
29503
|
export var makeInternalTransactionDetailsCard = function () { return factories['io.flow.internal.v0.models.internal_transaction_details_card'](); };
|
|
29314
29504
|
export var makeInvalidCheckoutData = function () { return factories['io.flow.internal.v0.models.invalid_checkout_data'](); };
|
|
29505
|
+
export var makeInvariant = function () { return factories['io.flow.internal.v0.models.invariant'](); };
|
|
29315
29506
|
export var makeInventoryCheckService = function () { return factories['io.flow.internal.v0.enums.inventory_check_service'](); };
|
|
29316
29507
|
export var makeInventoryOrganizationSettings = function () { return factories['io.flow.internal.v0.models.inventory_organization_settings'](); };
|
|
29317
29508
|
export var makeInventoryOrganizationSettingsForm = function () { return factories['io.flow.internal.v0.models.inventory_organization_settings_form'](); };
|
|
@@ -29881,8 +30072,11 @@ export var makeReportBankAccount = function () { return factories['io.flow.inter
|
|
|
29881
30072
|
export var makeReportBankAccountCleartext = function () { return factories['io.flow.internal.v0.models.report_bank_account_cleartext'](); };
|
|
29882
30073
|
export var makeReportForm = function () { return factories['io.flow.internal.v0.models.report_form'](); };
|
|
29883
30074
|
export var makeReportInterval = function () { return factories['io.flow.internal.v0.enums.report_interval'](); };
|
|
30075
|
+
export var makeReportMerchant = function () { return factories['io.flow.internal.v0.models.report_merchant'](); };
|
|
30076
|
+
export var makeReportOrderReference = function () { return factories['io.flow.internal.v0.models.report_order_reference'](); };
|
|
29884
30077
|
export var makeReportOwner = function () { return factories['io.flow.internal.v0.models.report_owner'](); };
|
|
29885
30078
|
export var makeReportPayment = function () { return factories['io.flow.internal.v0.models.report_payment'](); };
|
|
30079
|
+
export var makeReportPaymentType = function () { return factories['io.flow.internal.v0.enums.report_payment_type'](); };
|
|
29886
30080
|
export var makeReportRuleDecision = function () { return factories['io.flow.internal.v0.models.report_rule_decision'](); };
|
|
29887
30081
|
export var makeReportStatus = function () { return factories['io.flow.internal.v0.enums.report_status'](); };
|
|
29888
30082
|
export var makeReportSummary = function () { return factories['io.flow.internal.v0.models.report_summary'](); };
|
|
@@ -30115,7 +30309,7 @@ export var makeShopifyService = function () { return factories['io.flow.internal
|
|
|
30115
30309
|
export var makeShopifyShopDeleted = function () { return factories['io.flow.internal.v0.models.shopify_shop_deleted'](); };
|
|
30116
30310
|
export var makeShopifyShopStatistics = function () { return factories['io.flow.internal.v0.models.shopify_shop_statistics'](); };
|
|
30117
30311
|
export var makeShopifyShopUpserted = function () { return factories['io.flow.internal.v0.models.shopify_shop_upserted'](); };
|
|
30118
|
-
export var
|
|
30312
|
+
export var makeShopifyStoreDetail = function () { return factories['io.flow.internal.v0.models.shopify_store_detail'](); };
|
|
30119
30313
|
export var makeShopifyWebhook = function () { return factories['io.flow.internal.v0.models.shopify_webhook'](); };
|
|
30120
30314
|
export var makeShopifyWebhookEvent = function () { return factories['io.flow.internal.v0.models.shopify_webhook_event'](); };
|
|
30121
30315
|
export var makeShopifyWebhookForm = function () { return factories['io.flow.internal.v0.models.shopify_webhook_form'](); };
|