@flowio/api-internal-factories 0.0.102 → 0.0.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-internal.js +377 -324
- package/dist/esm/api-internal.js +314 -277
- package/dist/types/api-internal.d.ts +28 -12
- package/package.json +2 -2
- package/src/api-internal.ts +353 -309
package/dist/esm/api-internal.js
CHANGED
|
@@ -1119,6 +1119,7 @@ var factories = {
|
|
|
1119
1119
|
shipping_label_revenue_share: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'](),
|
|
1120
1120
|
trueup: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'](),
|
|
1121
1121
|
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'](),
|
|
1122
1123
|
manual: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'](),
|
|
1123
1124
|
}); },
|
|
1124
1125
|
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge': function () { return ({
|
|
@@ -1129,6 +1130,13 @@ var factories = {
|
|
|
1129
1130
|
revenue_share_percentage: factories.decimal(),
|
|
1130
1131
|
outbound_transaction_id: factories.string(),
|
|
1131
1132
|
}); },
|
|
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
|
+
}); },
|
|
1132
1140
|
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel': function () { return ({
|
|
1133
1141
|
method: factories.string(),
|
|
1134
1142
|
card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
@@ -1235,9 +1243,10 @@ var factories = {
|
|
|
1235
1243
|
'duty',
|
|
1236
1244
|
'trueup',
|
|
1237
1245
|
'carrier_charge',
|
|
1246
|
+
'carrier_fee',
|
|
1238
1247
|
'all',
|
|
1239
1248
|
]); },
|
|
1240
|
-
'io.flow.billing.internal.v0.enums.billing_transaction_status': function () { return faker.helpers.arrayElement(['
|
|
1249
|
+
'io.flow.billing.internal.v0.enums.billing_transaction_status': function () { return faker.helpers.arrayElement(['pending_proof', 'posted']); },
|
|
1241
1250
|
'io.flow.billing.internal.v0.enums.billing_transaction_type': function () { return faker.helpers.arrayElement([
|
|
1242
1251
|
'manual',
|
|
1243
1252
|
'subscription',
|
|
@@ -1261,15 +1270,16 @@ var factories = {
|
|
|
1261
1270
|
'duty',
|
|
1262
1271
|
'trueup',
|
|
1263
1272
|
'carrier_charge',
|
|
1273
|
+
'carrier_fee',
|
|
1264
1274
|
]); },
|
|
1265
1275
|
'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']); },
|
|
1266
1277
|
'io.flow.billing.internal.v0.enums.channel_billed_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'channel_initiated']); },
|
|
1267
1278
|
'io.flow.billing.internal.v0.enums.channel_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'processing']); },
|
|
1268
1279
|
'io.flow.billing.internal.v0.enums.dispute_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'dispute']); },
|
|
1269
1280
|
'io.flow.billing.internal.v0.enums.duty_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'duty']); },
|
|
1270
1281
|
'io.flow.billing.internal.v0.enums.fees_source': function () { return faker.helpers.arrayElement(['settings', 'authorization_bundle']); },
|
|
1271
1282
|
'io.flow.billing.internal.v0.enums.label_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']); },
|
|
1272
|
-
'io.flow.billing.internal.v0.enums.main_transaction_status': function () { return faker.helpers.arrayElement(['scheduled', 'pending_proof']); },
|
|
1273
1283
|
'io.flow.billing.internal.v0.enums.manual_transaction_category': function () { return faker.helpers.arrayElement([
|
|
1274
1284
|
'cancelled_order_refund',
|
|
1275
1285
|
'channel_partner_initiated',
|
|
@@ -1572,6 +1582,7 @@ var factories = {
|
|
|
1572
1582
|
duty: factories['io.flow.common.v0.models.price'](),
|
|
1573
1583
|
trueup: factories['io.flow.common.v0.models.price'](),
|
|
1574
1584
|
carrier_charge: factories['io.flow.common.v0.models.price'](),
|
|
1585
|
+
carrier_fee: factories['io.flow.common.v0.models.price'](),
|
|
1575
1586
|
ending_balance: factories['io.flow.common.v0.models.price'](),
|
|
1576
1587
|
}); },
|
|
1577
1588
|
'io.flow.billing.internal.v0.models.billing_transaction': function () { return ({
|
|
@@ -1601,6 +1612,21 @@ var factories = {
|
|
|
1601
1612
|
statement: factories['io.flow.billing.internal.v0.models.billing_statement_reference'](),
|
|
1602
1613
|
created_at: factories.date_time_iso_8601(),
|
|
1603
1614
|
}); },
|
|
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
|
+
}); },
|
|
1604
1630
|
'io.flow.billing.internal.v0.models.channel_account': function () { return ({
|
|
1605
1631
|
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
1606
1632
|
id: factories.string(),
|
|
@@ -1735,7 +1761,13 @@ var factories = {
|
|
|
1735
1761
|
statement: factories['io.flow.billing.internal.v0.models.billing_statement_reference'](),
|
|
1736
1762
|
reason: factories.string(),
|
|
1737
1763
|
}); },
|
|
1738
|
-
'io.flow.billing.internal.v0.models.
|
|
1764
|
+
'io.flow.billing.internal.v0.models.explicit_statement_form_all_pending_posted_transactions': function () { return ({
|
|
1765
|
+
discriminator: 'all_pending_posted_transactions',
|
|
1766
|
+
account_id: factories.string(),
|
|
1767
|
+
reason: factories.string(),
|
|
1768
|
+
}); },
|
|
1769
|
+
'io.flow.billing.internal.v0.models.explicit_statement_form_transaction_ids': function () { return ({
|
|
1770
|
+
discriminator: 'transaction_ids',
|
|
1739
1771
|
account_id: factories.string(),
|
|
1740
1772
|
reason: factories.string(),
|
|
1741
1773
|
transaction_ids: arrayOf(function () { return factories.string(); }),
|
|
@@ -1884,6 +1916,10 @@ var factories = {
|
|
|
1884
1916
|
statement: factories['io.flow.billing.internal.v0.models.billing_statement_reference'](),
|
|
1885
1917
|
created_at: factories.date_time_iso_8601(),
|
|
1886
1918
|
}); },
|
|
1919
|
+
'io.flow.billing.internal.v0.models.lost_chargeback': function () { return ({
|
|
1920
|
+
id: factories.string(),
|
|
1921
|
+
order: factories['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
1922
|
+
}); },
|
|
1887
1923
|
'io.flow.billing.internal.v0.models.main_transaction': function () { return ({
|
|
1888
1924
|
id: factories.string(),
|
|
1889
1925
|
account: factories['io.flow.billing.v0.models.account_reference'](),
|
|
@@ -1915,7 +1951,6 @@ var factories = {
|
|
|
1915
1951
|
currency: factories.string(),
|
|
1916
1952
|
description: factories.string(),
|
|
1917
1953
|
category: factories['io.flow.billing.internal.v0.enums.manual_transaction_category'](),
|
|
1918
|
-
posted_at: factories.date_time_iso_8601(),
|
|
1919
1954
|
order: factories['io.flow.billing.internal.v0.models.manual_transaction_form_order'](),
|
|
1920
1955
|
original_transaction_id: factories.string(),
|
|
1921
1956
|
attributes: objectOf(function () { return factories.string(); }),
|
|
@@ -2086,6 +2121,11 @@ var factories = {
|
|
|
2086
2121
|
discriminator: 'shipping_notification',
|
|
2087
2122
|
shipping_notification_id: factories.string(),
|
|
2088
2123
|
}); },
|
|
2124
|
+
'io.flow.billing.internal.v0.models.proof_of_posting_time_elapsed': function () { return ({
|
|
2125
|
+
discriminator: 'time_elapsed',
|
|
2126
|
+
order: factories['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
2127
|
+
created_at: factories.date_time_iso_8601(),
|
|
2128
|
+
}); },
|
|
2089
2129
|
'io.flow.billing.internal.v0.models.simple_account_reference': function () { return ({
|
|
2090
2130
|
id: factories.string(),
|
|
2091
2131
|
}); },
|
|
@@ -2244,6 +2284,13 @@ var factories = {
|
|
|
2244
2284
|
]);
|
|
2245
2285
|
return f();
|
|
2246
2286
|
},
|
|
2287
|
+
'io.flow.billing.internal.v0.unions.explicit_statement_form': function () {
|
|
2288
|
+
var f = faker.helpers.arrayElement([
|
|
2289
|
+
function () { return factories['io.flow.billing.internal.v0.models.explicit_statement_form_transaction_ids'](); },
|
|
2290
|
+
function () { return factories['io.flow.billing.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'](); },
|
|
2291
|
+
]);
|
|
2292
|
+
return f();
|
|
2293
|
+
},
|
|
2247
2294
|
'io.flow.billing.internal.v0.unions.order_cancellation_evidence': function () {
|
|
2248
2295
|
var f = faker.helpers.arrayElement([
|
|
2249
2296
|
function () { return factories['io.flow.billing.internal.v0.models.order_cancellation_evidence_manual'](); },
|
|
@@ -2268,6 +2315,7 @@ var factories = {
|
|
|
2268
2315
|
function () { return factories['io.flow.billing.internal.v0.models.proof_of_posting_shipping_notification'](); },
|
|
2269
2316
|
function () { return factories['io.flow.billing.internal.v0.models.proof_of_posting_order_cancellation'](); },
|
|
2270
2317
|
function () { return factories['io.flow.billing.internal.v0.models.proof_of_posting_order_combined_shipment'](); },
|
|
2318
|
+
function () { return factories['io.flow.billing.internal.v0.models.proof_of_posting_time_elapsed'](); },
|
|
2271
2319
|
]);
|
|
2272
2320
|
return f();
|
|
2273
2321
|
},
|
|
@@ -2296,6 +2344,7 @@ var factories = {
|
|
|
2296
2344
|
function () { return factories['io.flow.billing.internal.v0.models.duty_transaction'](); },
|
|
2297
2345
|
function () { return factories['io.flow.billing.internal.v0.models.trueup_transaction'](); },
|
|
2298
2346
|
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'](); },
|
|
2299
2348
|
]);
|
|
2300
2349
|
return f();
|
|
2301
2350
|
},
|
|
@@ -2338,6 +2387,7 @@ var factories = {
|
|
|
2338
2387
|
'trueup_overview',
|
|
2339
2388
|
'non_channel_payment_bank_account',
|
|
2340
2389
|
'scheduled_payment',
|
|
2390
|
+
'account_quarterly_balances',
|
|
2341
2391
|
]); },
|
|
2342
2392
|
'io.flow.billing.reporting.v0.enums.reporting_fulfillment_is_virtual': function () { return faker.helpers.arrayElement(['all', 'mixed', 'none']); },
|
|
2343
2393
|
'io.flow.billing.reporting.v0.enums.revenue_record_type': function () { return faker.helpers.arrayElement(['pending', 'sales', 'refund']); },
|
|
@@ -2631,6 +2681,7 @@ var factories = {
|
|
|
2631
2681
|
'trueup',
|
|
2632
2682
|
'carrier_charge',
|
|
2633
2683
|
'carrier_charge_revenue_share',
|
|
2684
|
+
'carrier_fee',
|
|
2634
2685
|
'platform_fee',
|
|
2635
2686
|
'tax',
|
|
2636
2687
|
'duty',
|
|
@@ -2891,10 +2942,16 @@ var factories = {
|
|
|
2891
2942
|
carrier_id: factories.string(),
|
|
2892
2943
|
carrier_tracking_number: factories.string(),
|
|
2893
2944
|
revenue_share_percentage: factories.decimal(),
|
|
2894
|
-
outbound: factories['io.flow.billing.v0.models.
|
|
2945
|
+
outbound: factories['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'](),
|
|
2895
2946
|
}); },
|
|
2896
|
-
'io.flow.billing.v0.models.
|
|
2897
|
-
|
|
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'](); }),
|
|
2898
2955
|
}); },
|
|
2899
2956
|
'io.flow.billing.v0.models.transaction_metadata_channel': function () { return ({
|
|
2900
2957
|
discriminator: 'channel',
|
|
@@ -2918,6 +2975,13 @@ var factories = {
|
|
|
2918
2975
|
'io.flow.billing.v0.models.transaction_metadata_original_transaction': function () { return ({
|
|
2919
2976
|
id: factories.string(),
|
|
2920
2977
|
}); },
|
|
2978
|
+
'io.flow.billing.v0.models.transaction_metadata_outbound_transaction': function () { return ({
|
|
2979
|
+
transaction_id: factories.string(),
|
|
2980
|
+
}); },
|
|
2981
|
+
'io.flow.billing.v0.models.transaction_metadata_payment_transaction': function () { return ({
|
|
2982
|
+
discriminator: 'payment_transaction',
|
|
2983
|
+
key: factories.string(),
|
|
2984
|
+
}); },
|
|
2921
2985
|
'io.flow.billing.v0.models.transaction_metadata_shipping_label': function () { return ({
|
|
2922
2986
|
discriminator: 'shipping_label',
|
|
2923
2987
|
request_method: factories['io.flow.label.v0.enums.label_request_method'](),
|
|
@@ -2993,7 +3057,9 @@ var factories = {
|
|
|
2993
3057
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_channel'](); },
|
|
2994
3058
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_trueup'](); },
|
|
2995
3059
|
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'](); },
|
|
2996
3061
|
function () { return factories['io.flow.billing.v0.models.transaction_metadata_manual'](); },
|
|
3062
|
+
function () { return factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](); },
|
|
2997
3063
|
]);
|
|
2998
3064
|
return f();
|
|
2999
3065
|
},
|
|
@@ -7884,6 +7950,8 @@ var factories = {
|
|
|
7884
7950
|
'capture_transactions_total',
|
|
7885
7951
|
'carrier_charge_transactions_count',
|
|
7886
7952
|
'carrier_charge_transactions_total',
|
|
7953
|
+
'carrier_fee_transactions_count',
|
|
7954
|
+
'carrier_fee_transactions_total',
|
|
7887
7955
|
'channel_transactions_processing_count',
|
|
7888
7956
|
'channel_transactions_processing_total',
|
|
7889
7957
|
'channel_transactions_adjustment_count',
|
|
@@ -7900,6 +7968,8 @@ var factories = {
|
|
|
7900
7968
|
'fully_subsidized_order_transactions_total',
|
|
7901
7969
|
'billable_label_transactions_count',
|
|
7902
7970
|
'billable_label_transactions_count_for_unique_orders',
|
|
7971
|
+
'billable_label_transactions_count_with_revenue_share',
|
|
7972
|
+
'billable_label_transactions_count_without_revenue_share',
|
|
7903
7973
|
'billable_label_transactions_total',
|
|
7904
7974
|
'revenue_share_label_transactions_count',
|
|
7905
7975
|
'revenue_share_label_transactions_count_for_unique_orders',
|
|
@@ -7976,6 +8046,9 @@ var factories = {
|
|
|
7976
8046
|
'accounts_with_final_statements_count',
|
|
7977
8047
|
'accounts_with_final_statements_pending_transaction_count',
|
|
7978
8048
|
'accounts_with_final_statements_pending_transaction_total',
|
|
8049
|
+
'orders_wyol_then_label_count',
|
|
8050
|
+
'orders_wyol_then_label_tax_subsidized_total',
|
|
8051
|
+
'orders_wyol_then_label_duty_subsidized_total',
|
|
7979
8052
|
]); },
|
|
7980
8053
|
'io.flow.internal.v0.enums.billing_statement_attachment_key': function () { return faker.helpers.arrayElement([
|
|
7981
8054
|
'invoice',
|
|
@@ -7994,9 +8067,10 @@ var factories = {
|
|
|
7994
8067
|
'duty',
|
|
7995
8068
|
'trueup',
|
|
7996
8069
|
'carrier_charge',
|
|
8070
|
+
'carrier_fee',
|
|
7997
8071
|
'all',
|
|
7998
8072
|
]); },
|
|
7999
|
-
'io.flow.internal.v0.enums.billing_transaction_status': function () { return faker.helpers.arrayElement(['
|
|
8073
|
+
'io.flow.internal.v0.enums.billing_transaction_status': function () { return faker.helpers.arrayElement(['pending_proof', 'posted']); },
|
|
8000
8074
|
'io.flow.internal.v0.enums.billing_transaction_type': function () { return faker.helpers.arrayElement([
|
|
8001
8075
|
'manual',
|
|
8002
8076
|
'subscription',
|
|
@@ -8020,6 +8094,7 @@ var factories = {
|
|
|
8020
8094
|
'duty',
|
|
8021
8095
|
'trueup',
|
|
8022
8096
|
'carrier_charge',
|
|
8097
|
+
'carrier_fee',
|
|
8023
8098
|
]); },
|
|
8024
8099
|
'io.flow.internal.v0.enums.browser_bundle_error_code': function () { return faker.helpers.arrayElement(['generic_error', 'country_invalid']); },
|
|
8025
8100
|
'io.flow.internal.v0.enums.calculator_engine': function () { return faker.helpers.arrayElement([
|
|
@@ -8032,6 +8107,8 @@ var factories = {
|
|
|
8032
8107
|
]); },
|
|
8033
8108
|
'io.flow.internal.v0.enums.carrier_charge_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']); },
|
|
8034
8109
|
'io.flow.internal.v0.enums.carrier_charge_type': function () { return faker.helpers.arrayElement(['label', 'other']); },
|
|
8110
|
+
'io.flow.internal.v0.enums.carrier_fee_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'fee']); },
|
|
8111
|
+
'io.flow.internal.v0.enums.carrier_file_type': function () { return faker.helpers.arrayElement(['charge', 'fee']); },
|
|
8035
8112
|
'io.flow.internal.v0.enums.carrier_label_generation_method': function () { return faker.helpers.arrayElement(['direct', 'easypost']); },
|
|
8036
8113
|
'io.flow.internal.v0.enums.carrier_validation_status': function () { return faker.helpers.arrayElement(['success', 'error']); },
|
|
8037
8114
|
'io.flow.internal.v0.enums.catalog_import_type': function () { return faker.helpers.arrayElement([
|
|
@@ -8089,6 +8166,7 @@ var factories = {
|
|
|
8089
8166
|
'customs_clearance_surcharge',
|
|
8090
8167
|
'security_surcharge',
|
|
8091
8168
|
'duties_fx_surcharge',
|
|
8169
|
+
'electronic_export_information_surcharge',
|
|
8092
8170
|
]); },
|
|
8093
8171
|
'io.flow.internal.v0.enums.chargeback_payment_status': function () { return faker.helpers.arrayElement(['captured', 'refunded']); },
|
|
8094
8172
|
'io.flow.internal.v0.enums.chargeback_process_status': function () { return faker.helpers.arrayElement(['inquiry', 'open', 'closed']); },
|
|
@@ -8309,6 +8387,8 @@ var factories = {
|
|
|
8309
8387
|
'label_invoice_request_deleted',
|
|
8310
8388
|
'carrier_charge_upserted',
|
|
8311
8389
|
'carrier_charge_deleted',
|
|
8390
|
+
'carrier_fee_upserted',
|
|
8391
|
+
'carrier_fee_deleted',
|
|
8312
8392
|
'fraud_review_upserted',
|
|
8313
8393
|
'fraud_review_deleted',
|
|
8314
8394
|
'fraud_pending_review_upserted',
|
|
@@ -8412,8 +8492,6 @@ var factories = {
|
|
|
8412
8492
|
'payment_processor_account_deleted',
|
|
8413
8493
|
'payment_processor_merchant_upserted',
|
|
8414
8494
|
'payment_processor_merchant_deleted',
|
|
8415
|
-
'virtual_card_provider_upserted',
|
|
8416
|
-
'virtual_card_provider_deleted',
|
|
8417
8495
|
'authorization_bundle_upserted',
|
|
8418
8496
|
'authorization_bundle_deleted',
|
|
8419
8497
|
'organization_payment_setting_upserted',
|
|
@@ -8479,8 +8557,6 @@ var factories = {
|
|
|
8479
8557
|
'stripe_capture_upserted',
|
|
8480
8558
|
'stripe_refund_deleted',
|
|
8481
8559
|
'stripe_refund_upserted',
|
|
8482
|
-
'svb_virtual_card_clearing_upserted',
|
|
8483
|
-
'svb_virtual_card_clearing_deleted',
|
|
8484
8560
|
'liability_remittance_plan_upserted',
|
|
8485
8561
|
'liability_remittance_plan_deleted',
|
|
8486
8562
|
'svitlana_item_upserted',
|
|
@@ -8563,7 +8639,7 @@ var factories = {
|
|
|
8563
8639
|
]); },
|
|
8564
8640
|
'io.flow.internal.v0.enums.label_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']); },
|
|
8565
8641
|
'io.flow.internal.v0.enums.liability_type': function () { return faker.helpers.arrayElement(['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties']); },
|
|
8566
|
-
'io.flow.internal.v0.enums.
|
|
8642
|
+
'io.flow.internal.v0.enums.logistics_capability': function () { return faker.helpers.arrayElement(['logistics_address_correction']); },
|
|
8567
8643
|
'io.flow.internal.v0.enums.manual_review_rule_status': function () { return faker.helpers.arrayElement(['active', 'archived']); },
|
|
8568
8644
|
'io.flow.internal.v0.enums.manual_transaction_category': function () { return faker.helpers.arrayElement([
|
|
8569
8645
|
'cancelled_order_refund',
|
|
@@ -8768,6 +8844,7 @@ var factories = {
|
|
|
8768
8844
|
'trueup_overview',
|
|
8769
8845
|
'non_channel_payment_bank_account',
|
|
8770
8846
|
'scheduled_payment',
|
|
8847
|
+
'account_quarterly_balances',
|
|
8771
8848
|
]); },
|
|
8772
8849
|
'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': function () { return faker.helpers.arrayElement(['all', 'mixed', 'none']); },
|
|
8773
8850
|
'io.flow.internal.v0.enums.reporting_scheme': function () { return faker.helpers.arrayElement([
|
|
@@ -8848,7 +8925,7 @@ var factories = {
|
|
|
8848
8925
|
'io.flow.internal.v0.enums.significance_action': function () { return faker.helpers.arrayElement(['end_and_implement_winner', 'end_and_revert', 'do_nothing']); },
|
|
8849
8926
|
'io.flow.internal.v0.enums.simple_rounding_strategy': function () { return faker.helpers.arrayElement(['no_rounding', 'currency_precision']); },
|
|
8850
8927
|
'io.flow.internal.v0.enums.snooze_next_action_with': function () { return faker.helpers.arrayElement(['customer_service', 'engineering']); },
|
|
8851
|
-
'io.flow.internal.v0.enums.snooze_source_type': function () { return faker.helpers.arrayElement(['task']); },
|
|
8928
|
+
'io.flow.internal.v0.enums.snooze_source_type': function () { return faker.helpers.arrayElement(['task', 'invariant']); },
|
|
8852
8929
|
'io.flow.internal.v0.enums.statement_status': function () { return faker.helpers.arrayElement([
|
|
8853
8930
|
'created',
|
|
8854
8931
|
'no_transactions',
|
|
@@ -9104,6 +9181,11 @@ var factories = {
|
|
|
9104
9181
|
proof: factories['io.flow.internal.v0.unions.fulfillment_proof'](),
|
|
9105
9182
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
9106
9183
|
}); },
|
|
9184
|
+
'io.flow.internal.v0.models.accounting_pending_order_metadata': function () { return ({
|
|
9185
|
+
discriminator: 'accounting_pending_order_metadata',
|
|
9186
|
+
order: factories['io.flow.internal.v0.models.order_reference'](),
|
|
9187
|
+
fulfillment_id: factories.string(),
|
|
9188
|
+
}); },
|
|
9107
9189
|
'io.flow.internal.v0.models.action_quantity': function () { return ({
|
|
9108
9190
|
action: factories['io.flow.internal.v0.enums.item_quantity_action'](),
|
|
9109
9191
|
quantity: factories.long(),
|
|
@@ -9622,6 +9704,14 @@ var factories = {
|
|
|
9622
9704
|
transfer_transaction_ids: arrayOf(function () { return factories.string(); }),
|
|
9623
9705
|
attributes: objectOf(function () { return factories.string(); }),
|
|
9624
9706
|
}); },
|
|
9707
|
+
'io.flow.internal.v0.models.bank_payment_order': function () { return ({
|
|
9708
|
+
id: factories.string(),
|
|
9709
|
+
payment: factories['io.flow.internal.v0.models.bank_payment_reference'](),
|
|
9710
|
+
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
9711
|
+
}); },
|
|
9712
|
+
'io.flow.internal.v0.models.bank_payment_reference': function () { return ({
|
|
9713
|
+
id: factories.string(),
|
|
9714
|
+
}); },
|
|
9625
9715
|
'io.flow.internal.v0.models.bank_payment_status_form': function () { return ({
|
|
9626
9716
|
code: factories['io.flow.internal.v0.enums.bank_payment_status_code'](),
|
|
9627
9717
|
failure_reason: factories['io.flow.billing.v0.enums.payout_status_failure_code'](),
|
|
@@ -9806,6 +9896,7 @@ var factories = {
|
|
|
9806
9896
|
duty: factories['io.flow.common.v0.models.price'](),
|
|
9807
9897
|
trueup: factories['io.flow.common.v0.models.price'](),
|
|
9808
9898
|
carrier_charge: factories['io.flow.common.v0.models.price'](),
|
|
9899
|
+
carrier_fee: factories['io.flow.common.v0.models.price'](),
|
|
9809
9900
|
ending_balance: factories['io.flow.common.v0.models.price'](),
|
|
9810
9901
|
}); },
|
|
9811
9902
|
'io.flow.internal.v0.models.billing_statement_upserted': function () { return ({
|
|
@@ -10097,23 +10188,6 @@ var factories = {
|
|
|
10097
10188
|
organization: factories.string(),
|
|
10098
10189
|
id: factories.string(),
|
|
10099
10190
|
}); },
|
|
10100
|
-
'io.flow.internal.v0.models.carrier_charge_file': function () { return ({
|
|
10101
|
-
id: factories.string(),
|
|
10102
|
-
url: factories.string(),
|
|
10103
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
10104
|
-
created_at: factories.date_time_iso_8601(),
|
|
10105
|
-
result: factories['io.flow.internal.v0.models.carrier_charge_file_result'](),
|
|
10106
|
-
}); },
|
|
10107
|
-
'io.flow.internal.v0.models.carrier_charge_file_form': function () { return ({
|
|
10108
|
-
url: factories.string(),
|
|
10109
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
10110
|
-
}); },
|
|
10111
|
-
'io.flow.internal.v0.models.carrier_charge_file_result': function () { return ({
|
|
10112
|
-
processed_at: factories.date_time_iso_8601(),
|
|
10113
|
-
number_lines_successful: factories.long(),
|
|
10114
|
-
number_lines_with_errors: factories.long(),
|
|
10115
|
-
errors_url: factories.string(),
|
|
10116
|
-
}); },
|
|
10117
10191
|
'io.flow.internal.v0.models.carrier_charge_form_label': function () { return ({
|
|
10118
10192
|
discriminator: 'label',
|
|
10119
10193
|
id: factories.string(),
|
|
@@ -10174,6 +10248,73 @@ var factories = {
|
|
|
10174
10248
|
organization: factories.string(),
|
|
10175
10249
|
carrier_charge: factories['io.flow.internal.v0.models.carrier_charge'](),
|
|
10176
10250
|
}); },
|
|
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
|
+
'io.flow.internal.v0.models.carrier_file': function () { return ({
|
|
10300
|
+
id: factories.string(),
|
|
10301
|
+
type: factories['io.flow.internal.v0.enums.carrier_file_type'](),
|
|
10302
|
+
url: factories.string(),
|
|
10303
|
+
attributes: objectOf(function () { return factories.string(); }),
|
|
10304
|
+
created_at: factories.date_time_iso_8601(),
|
|
10305
|
+
result: factories['io.flow.internal.v0.models.carrier_file_result'](),
|
|
10306
|
+
}); },
|
|
10307
|
+
'io.flow.internal.v0.models.carrier_file_form': function () { return ({
|
|
10308
|
+
url: factories.string(),
|
|
10309
|
+
type: factories['io.flow.internal.v0.enums.carrier_file_type'](),
|
|
10310
|
+
attributes: objectOf(function () { return factories.string(); }),
|
|
10311
|
+
}); },
|
|
10312
|
+
'io.flow.internal.v0.models.carrier_file_result': function () { return ({
|
|
10313
|
+
processed_at: factories.date_time_iso_8601(),
|
|
10314
|
+
number_lines_successful: factories.long(),
|
|
10315
|
+
number_lines_with_errors: factories.long(),
|
|
10316
|
+
errors_url: factories.string(),
|
|
10317
|
+
}); },
|
|
10177
10318
|
'io.flow.internal.v0.models.carrier_invoice': function () { return ({
|
|
10178
10319
|
number: factories.string(),
|
|
10179
10320
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -11043,6 +11184,7 @@ var factories = {
|
|
|
11043
11184
|
order_number: factories.string(),
|
|
11044
11185
|
destination: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
11045
11186
|
service: factories.string(),
|
|
11187
|
+
bypass_house_number_validation: factories.boolean(),
|
|
11046
11188
|
}); },
|
|
11047
11189
|
'io.flow.internal.v0.models.console_mark_unresolvable_form': function () { return ({
|
|
11048
11190
|
discriminator: 'console_mark_unresolvable_form',
|
|
@@ -11386,7 +11528,7 @@ var factories = {
|
|
|
11386
11528
|
fx: factories['io.flow.internal.v0.models.debug_transaction_fx'](),
|
|
11387
11529
|
}); },
|
|
11388
11530
|
'io.flow.internal.v0.models.debug_transaction_details_status': function () { return ({
|
|
11389
|
-
status: factories['io.flow.internal.v0.enums.
|
|
11531
|
+
status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
|
|
11390
11532
|
description: factories.string(),
|
|
11391
11533
|
}); },
|
|
11392
11534
|
'io.flow.internal.v0.models.debug_transaction_fx': function () { return ({
|
|
@@ -11496,6 +11638,17 @@ var factories = {
|
|
|
11496
11638
|
label: factories['io.flow.internal.v0.models.content_label'](),
|
|
11497
11639
|
description: factories['io.flow.internal.v0.models.content_label'](),
|
|
11498
11640
|
}); },
|
|
11641
|
+
'io.flow.internal.v0.models.dimension_estimate_ops_input': function () { return ({
|
|
11642
|
+
organization_id: factories.string(),
|
|
11643
|
+
length_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
11644
|
+
length_val: factories.string(),
|
|
11645
|
+
width_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
11646
|
+
width_val: factories.string(),
|
|
11647
|
+
depth_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
11648
|
+
depth_val: factories.string(),
|
|
11649
|
+
weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
11650
|
+
weight_val: factories.string(),
|
|
11651
|
+
}); },
|
|
11499
11652
|
'io.flow.internal.v0.models.discount': function () { return ({
|
|
11500
11653
|
amount: factories.decimal(),
|
|
11501
11654
|
description: factories.string(),
|
|
@@ -12172,7 +12325,13 @@ var factories = {
|
|
|
12172
12325
|
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
12173
12326
|
reason: factories.string(),
|
|
12174
12327
|
}); },
|
|
12175
|
-
'io.flow.internal.v0.models.
|
|
12328
|
+
'io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions': function () { return ({
|
|
12329
|
+
discriminator: 'all_pending_posted_transactions',
|
|
12330
|
+
account_id: factories.string(),
|
|
12331
|
+
reason: factories.string(),
|
|
12332
|
+
}); },
|
|
12333
|
+
'io.flow.internal.v0.models.explicit_statement_form_transaction_ids': function () { return ({
|
|
12334
|
+
discriminator: 'transaction_ids',
|
|
12176
12335
|
account_id: factories.string(),
|
|
12177
12336
|
reason: factories.string(),
|
|
12178
12337
|
transaction_ids: arrayOf(function () { return factories.string(); }),
|
|
@@ -13434,6 +13593,9 @@ var factories = {
|
|
|
13434
13593
|
filter: factories.string(),
|
|
13435
13594
|
values: arrayOf(function () { return factories.string(); }),
|
|
13436
13595
|
}); },
|
|
13596
|
+
'io.flow.internal.v0.models.item_form': function () { return ({
|
|
13597
|
+
amount: factories.decimal(),
|
|
13598
|
+
}); },
|
|
13437
13599
|
'io.flow.internal.v0.models.item_form_import_request': function () { return ({
|
|
13438
13600
|
discriminator: 'item_form_import_request',
|
|
13439
13601
|
event_id: factories.string(),
|
|
@@ -14057,9 +14219,19 @@ var factories = {
|
|
|
14057
14219
|
type: factories['io.flow.internal.v0.enums.content_type'](),
|
|
14058
14220
|
url: factories.string(),
|
|
14059
14221
|
}); },
|
|
14222
|
+
'io.flow.internal.v0.models.logistics_capabilities': function () { return ({
|
|
14223
|
+
capabilities: arrayOf(function () { return factories['io.flow.internal.v0.enums.logistics_capability'](); }),
|
|
14224
|
+
}); },
|
|
14225
|
+
'io.flow.internal.v0.models.logistics_capabilities_form': function () { return ({
|
|
14226
|
+
capabilities: arrayOf(function () { return factories['io.flow.internal.v0.enums.logistics_capability'](); }),
|
|
14227
|
+
}); },
|
|
14060
14228
|
'io.flow.internal.v0.models.logo': function () { return ({
|
|
14061
14229
|
url: factories.string(),
|
|
14062
14230
|
}); },
|
|
14231
|
+
'io.flow.internal.v0.models.lost_chargeback': function () { return ({
|
|
14232
|
+
id: factories.string(),
|
|
14233
|
+
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
14234
|
+
}); },
|
|
14063
14235
|
'io.flow.internal.v0.models.loyalty_program': function () { return ({
|
|
14064
14236
|
title: factories.string(),
|
|
14065
14237
|
message: factories['io.flow.internal.v0.models.loyalty_program_message'](),
|
|
@@ -14162,7 +14334,6 @@ var factories = {
|
|
|
14162
14334
|
currency: factories.string(),
|
|
14163
14335
|
description: factories.string(),
|
|
14164
14336
|
category: factories['io.flow.internal.v0.enums.manual_transaction_category'](),
|
|
14165
|
-
posted_at: factories.date_time_iso_8601(),
|
|
14166
14337
|
order: factories['io.flow.internal.v0.models.manual_transaction_form_order'](),
|
|
14167
14338
|
original_transaction_id: factories.string(),
|
|
14168
14339
|
attributes: objectOf(function () { return factories.string(); }),
|
|
@@ -14397,6 +14568,9 @@ var factories = {
|
|
|
14397
14568
|
shopify_order: factories['io.flow.shopify.markets.v0.models.shopify_order'](),
|
|
14398
14569
|
flow_authorization: factories['io.flow.payment.v0.unions.authorization'](),
|
|
14399
14570
|
}); },
|
|
14571
|
+
'io.flow.internal.v0.models.markets_order_summary': function () { return ({
|
|
14572
|
+
id: factories.string(),
|
|
14573
|
+
}); },
|
|
14400
14574
|
'io.flow.internal.v0.models.matias_item': function () { return ({
|
|
14401
14575
|
id: factories.string(),
|
|
14402
14576
|
number: factories.string(),
|
|
@@ -14966,6 +15140,7 @@ var factories = {
|
|
|
14966
15140
|
destination: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
14967
15141
|
error: factories.string(),
|
|
14968
15142
|
created_at: factories.string(),
|
|
15143
|
+
cancelled_at: factories.date_time_iso_8601(),
|
|
14969
15144
|
}); },
|
|
14970
15145
|
'io.flow.internal.v0.models.order_validation_failure_upserted': function () { return ({
|
|
14971
15146
|
discriminator: 'order_validation_failure_upserted',
|
|
@@ -15899,6 +16074,8 @@ var factories = {
|
|
|
15899
16074
|
updated_by_user_id: factories.string(),
|
|
15900
16075
|
flagged_for_keywords_at: factories.date_time_iso_8601(),
|
|
15901
16076
|
automatically_restricted_at: factories.date_time_iso_8601(),
|
|
16077
|
+
auto_reviewed_at: factories.date_time_iso_8601(),
|
|
16078
|
+
auto_review_status: factories['io.flow.internal.v0.enums.restriction_status'](),
|
|
15902
16079
|
manually_reviewed_at: factories.date_time_iso_8601(),
|
|
15903
16080
|
manually_reviewed_by: factories.string(),
|
|
15904
16081
|
}); },
|
|
@@ -15940,6 +16117,11 @@ var factories = {
|
|
|
15940
16117
|
discriminator: 'shipping_notification',
|
|
15941
16118
|
shipping_notification_id: factories.string(),
|
|
15942
16119
|
}); },
|
|
16120
|
+
'io.flow.internal.v0.models.proof_of_posting_time_elapsed': function () { return ({
|
|
16121
|
+
discriminator: 'time_elapsed',
|
|
16122
|
+
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
16123
|
+
created_at: factories.date_time_iso_8601(),
|
|
16124
|
+
}); },
|
|
15943
16125
|
'io.flow.internal.v0.models.quote': function () { return ({
|
|
15944
16126
|
id: factories.string(),
|
|
15945
16127
|
base: factories.string(),
|
|
@@ -16785,6 +16967,12 @@ var factories = {
|
|
|
16785
16967
|
statuses: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_status_metadata'](); }),
|
|
16786
16968
|
count: factories.long(),
|
|
16787
16969
|
}); },
|
|
16970
|
+
'io.flow.internal.v0.models.restriction_rule_override': function () { return ({
|
|
16971
|
+
id: factories.string(),
|
|
16972
|
+
organization_id: factories.string(),
|
|
16973
|
+
rule_id: factories.string(),
|
|
16974
|
+
value_threshold_usd: factories.decimal(),
|
|
16975
|
+
}); },
|
|
16788
16976
|
'io.flow.internal.v0.models.restriction_rule_summary': function () { return ({
|
|
16789
16977
|
id: factories.string(),
|
|
16790
16978
|
name: factories.string(),
|
|
@@ -17241,6 +17429,7 @@ var factories = {
|
|
|
17241
17429
|
api_key_masked: factories.string(),
|
|
17242
17430
|
api_password_masked: factories.string(),
|
|
17243
17431
|
access_token_masked: factories.string(),
|
|
17432
|
+
shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
|
|
17244
17433
|
}); },
|
|
17245
17434
|
'io.flow.internal.v0.models.shopify_markets_shop_deleted': function () { return ({
|
|
17246
17435
|
discriminator: 'shopify_markets_shop_deleted',
|
|
@@ -17257,6 +17446,7 @@ var factories = {
|
|
|
17257
17446
|
api_key: factories.string(),
|
|
17258
17447
|
api_password: factories.string(),
|
|
17259
17448
|
access_token: factories.string(),
|
|
17449
|
+
shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
|
|
17260
17450
|
}); },
|
|
17261
17451
|
'io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted': function () { return ({
|
|
17262
17452
|
discriminator: 'shopify_markets_shop_statistics_deleted',
|
|
@@ -17997,35 +18187,6 @@ var factories = {
|
|
|
17997
18187
|
discriminator: 'supported_labels',
|
|
17998
18188
|
values: arrayOf(function () { return factories['io.flow.internal.v0.models.label_aliases'](); }),
|
|
17999
18189
|
}); },
|
|
18000
|
-
'io.flow.internal.v0.models.svb_virtual_card_clearing': function () { return ({
|
|
18001
|
-
id: factories.string(),
|
|
18002
|
-
virtual_card_id: factories.string(),
|
|
18003
|
-
number: factories.string(),
|
|
18004
|
-
amount: factories.integer(),
|
|
18005
|
-
currency: factories.string(),
|
|
18006
|
-
date: factories.date_time_iso_8601(),
|
|
18007
|
-
clearing_type: factories.string(),
|
|
18008
|
-
exchange_rate: factories.string(),
|
|
18009
|
-
mcc: factories.string(),
|
|
18010
|
-
mcc_description: factories.string(),
|
|
18011
|
-
merchant_amount: factories.integer(),
|
|
18012
|
-
merchant_currency: factories.string(),
|
|
18013
|
-
merchant_id: factories.string(),
|
|
18014
|
-
merchant_name: factories.string(),
|
|
18015
|
-
settlement_date: factories.date_time_iso_8601(),
|
|
18016
|
-
}); },
|
|
18017
|
-
'io.flow.internal.v0.models.svb_virtual_card_clearing_deleted': function () { return ({
|
|
18018
|
-
discriminator: 'svb_virtual_card_clearing_deleted',
|
|
18019
|
-
event_id: factories.string(),
|
|
18020
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18021
|
-
svb_virtual_card_clearing: factories['io.flow.internal.v0.models.svb_virtual_card_clearing'](),
|
|
18022
|
-
}); },
|
|
18023
|
-
'io.flow.internal.v0.models.svb_virtual_card_clearing_upserted': function () { return ({
|
|
18024
|
-
discriminator: 'svb_virtual_card_clearing_upserted',
|
|
18025
|
-
event_id: factories.string(),
|
|
18026
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18027
|
-
svb_virtual_card_clearing: factories['io.flow.internal.v0.models.svb_virtual_card_clearing'](),
|
|
18028
|
-
}); },
|
|
18029
18190
|
'io.flow.internal.v0.models.svitlana_item': function () { return ({
|
|
18030
18191
|
id: factories.string(),
|
|
18031
18192
|
number: factories.string(),
|
|
@@ -18649,28 +18810,6 @@ var factories = {
|
|
|
18649
18810
|
name: factories.string(),
|
|
18650
18811
|
address: factories.string(),
|
|
18651
18812
|
}); },
|
|
18652
|
-
'io.flow.internal.v0.models.virtual_card_provider': function () { return ({
|
|
18653
|
-
id: factories.string(),
|
|
18654
|
-
organization_id: factories.string(),
|
|
18655
|
-
provider: factories.string(),
|
|
18656
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
18657
|
-
created_at: factories.date_time_iso_8601(),
|
|
18658
|
-
updated_at: factories.date_time_iso_8601(),
|
|
18659
|
-
}); },
|
|
18660
|
-
'io.flow.internal.v0.models.virtual_card_provider_deleted': function () { return ({
|
|
18661
|
-
discriminator: 'virtual_card_provider_deleted',
|
|
18662
|
-
event_id: factories.string(),
|
|
18663
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18664
|
-
id: factories.string(),
|
|
18665
|
-
provider: factories['io.flow.internal.v0.models.virtual_card_provider'](),
|
|
18666
|
-
}); },
|
|
18667
|
-
'io.flow.internal.v0.models.virtual_card_provider_upserted': function () { return ({
|
|
18668
|
-
discriminator: 'virtual_card_provider_upserted',
|
|
18669
|
-
event_id: factories.string(),
|
|
18670
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18671
|
-
id: factories.string(),
|
|
18672
|
-
provider: factories['io.flow.internal.v0.models.virtual_card_provider'](),
|
|
18673
|
-
}); },
|
|
18674
18813
|
'io.flow.internal.v0.models.virtual_card_transaction': function () { return ({
|
|
18675
18814
|
discriminator: 'virtual_card_transaction',
|
|
18676
18815
|
virtual_card: factories['io.flow.payment.v0.models.virtual_card_reference'](),
|
|
@@ -19042,6 +19181,8 @@ var factories = {
|
|
|
19042
19181
|
function () { return factories['io.flow.internal.v0.models.label_invoice_request_deleted'](); },
|
|
19043
19182
|
function () { return factories['io.flow.internal.v0.models.carrier_charge_upserted'](); },
|
|
19044
19183
|
function () { return factories['io.flow.internal.v0.models.carrier_charge_deleted'](); },
|
|
19184
|
+
function () { return factories['io.flow.internal.v0.models.carrier_fee_upserted'](); },
|
|
19185
|
+
function () { return factories['io.flow.internal.v0.models.carrier_fee_deleted'](); },
|
|
19045
19186
|
function () { return factories['io.flow.internal.v0.models.fraud_review_upserted'](); },
|
|
19046
19187
|
function () { return factories['io.flow.internal.v0.models.fraud_review_deleted'](); },
|
|
19047
19188
|
function () { return factories['io.flow.internal.v0.models.fraud_pending_review_upserted'](); },
|
|
@@ -19145,8 +19286,6 @@ var factories = {
|
|
|
19145
19286
|
function () { return factories['io.flow.internal.v0.models.payment_processor_account_deleted'](); },
|
|
19146
19287
|
function () { return factories['io.flow.internal.v0.models.payment_processor_merchant_upserted'](); },
|
|
19147
19288
|
function () { return factories['io.flow.internal.v0.models.payment_processor_merchant_deleted'](); },
|
|
19148
|
-
function () { return factories['io.flow.internal.v0.models.virtual_card_provider_upserted'](); },
|
|
19149
|
-
function () { return factories['io.flow.internal.v0.models.virtual_card_provider_deleted'](); },
|
|
19150
19289
|
function () { return factories['io.flow.internal.v0.models.authorization_bundle_upserted'](); },
|
|
19151
19290
|
function () { return factories['io.flow.internal.v0.models.authorization_bundle_deleted'](); },
|
|
19152
19291
|
function () { return factories['io.flow.internal.v0.models.organization_payment_setting_upserted'](); },
|
|
@@ -19212,8 +19351,6 @@ var factories = {
|
|
|
19212
19351
|
function () { return factories['io.flow.internal.v0.models.stripe_capture_upserted'](); },
|
|
19213
19352
|
function () { return factories['io.flow.internal.v0.models.stripe_refund_deleted'](); },
|
|
19214
19353
|
function () { return factories['io.flow.internal.v0.models.stripe_refund_upserted'](); },
|
|
19215
|
-
function () { return factories['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'](); },
|
|
19216
|
-
function () { return factories['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'](); },
|
|
19217
19354
|
function () { return factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](); },
|
|
19218
19355
|
function () { return factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](); },
|
|
19219
19356
|
function () { return factories['io.flow.internal.v0.models.svitlana_item_upserted'](); },
|
|
@@ -19248,6 +19385,13 @@ var factories = {
|
|
|
19248
19385
|
]);
|
|
19249
19386
|
return f();
|
|
19250
19387
|
},
|
|
19388
|
+
'io.flow.internal.v0.unions.explicit_statement_form': function () {
|
|
19389
|
+
var f = faker.helpers.arrayElement([
|
|
19390
|
+
function () { return factories['io.flow.internal.v0.models.explicit_statement_form_transaction_ids'](); },
|
|
19391
|
+
function () { return factories['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'](); },
|
|
19392
|
+
]);
|
|
19393
|
+
return f();
|
|
19394
|
+
},
|
|
19251
19395
|
'io.flow.internal.v0.unions.export_schedule': function () {
|
|
19252
19396
|
var f = faker.helpers.arrayElement([
|
|
19253
19397
|
function () { return factories['io.flow.internal.v0.models.export_schedule_daily'](); },
|
|
@@ -19546,6 +19690,7 @@ var factories = {
|
|
|
19546
19690
|
function () { return factories['io.flow.internal.v0.models.proof_of_posting_shipping_notification'](); },
|
|
19547
19691
|
function () { return factories['io.flow.internal.v0.models.proof_of_posting_order_cancellation'](); },
|
|
19548
19692
|
function () { return factories['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'](); },
|
|
19693
|
+
function () { return factories['io.flow.internal.v0.models.proof_of_posting_time_elapsed'](); },
|
|
19549
19694
|
]);
|
|
19550
19695
|
return f();
|
|
19551
19696
|
},
|
|
@@ -19635,6 +19780,7 @@ var factories = {
|
|
|
19635
19780
|
var f = faker.helpers.arrayElement([
|
|
19636
19781
|
function () { return factories['io.flow.internal.v0.models.statement_creation_metadata'](); },
|
|
19637
19782
|
function () { return factories['io.flow.internal.v0.models.accounting_fulfillment_metadata'](); },
|
|
19783
|
+
function () { return factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](); },
|
|
19638
19784
|
]);
|
|
19639
19785
|
return f();
|
|
19640
19786
|
},
|
|
@@ -19673,6 +19819,7 @@ var factories = {
|
|
|
19673
19819
|
function () { return factories['io.flow.internal.v0.models.duty_transaction'](); },
|
|
19674
19820
|
function () { return factories['io.flow.internal.v0.models.trueup_transaction'](); },
|
|
19675
19821
|
function () { return factories['io.flow.internal.v0.models.carrier_charge_transaction'](); },
|
|
19822
|
+
function () { return factories['io.flow.internal.v0.models.carrier_fee_transaction'](); },
|
|
19676
19823
|
]);
|
|
19677
19824
|
return f();
|
|
19678
19825
|
},
|
|
@@ -20525,6 +20672,7 @@ var factories = {
|
|
|
20525
20672
|
}); },
|
|
20526
20673
|
'io.flow.organization.onboarding.state.v0.models.deactivation_put_form': function () { return ({
|
|
20527
20674
|
reason: factories.string(),
|
|
20675
|
+
deactivate_at: factories.date_time_iso_8601(),
|
|
20528
20676
|
}); },
|
|
20529
20677
|
'io.flow.organization.onboarding.state.v0.models.in_compliance_review': function () { return ({
|
|
20530
20678
|
discriminator: 'in_compliance_review',
|
|
@@ -20537,6 +20685,7 @@ var factories = {
|
|
|
20537
20685
|
'io.flow.organization.onboarding.state.v0.models.merchant_deactivated': function () { return ({
|
|
20538
20686
|
discriminator: 'merchant_deactivated',
|
|
20539
20687
|
reason: factories.string(),
|
|
20688
|
+
deactivate_at: factories.date_time_iso_8601(),
|
|
20540
20689
|
}); },
|
|
20541
20690
|
'io.flow.organization.onboarding.state.v0.models.merchant_disabled': function () { return ({
|
|
20542
20691
|
discriminator: 'merchant_disabled',
|
|
@@ -21058,6 +21207,7 @@ var factories = {
|
|
|
21058
21207
|
currency: factories.string(),
|
|
21059
21208
|
base_amount: factories.decimal(),
|
|
21060
21209
|
base_currency: factories.string(),
|
|
21210
|
+
reference: factories.string(),
|
|
21061
21211
|
}); },
|
|
21062
21212
|
'io.flow.payment.gateway.v0.models.payment_authorization_status': function () { return ({
|
|
21063
21213
|
status: factories['io.flow.payment.v0.enums.authorization_status'](),
|
|
@@ -21069,6 +21219,7 @@ var factories = {
|
|
|
21069
21219
|
currency: factories.string(),
|
|
21070
21220
|
base_amount: factories.decimal(),
|
|
21071
21221
|
base_currency: factories.string(),
|
|
21222
|
+
reference: factories.string(),
|
|
21072
21223
|
created_at: factories.date_time_iso_8601(),
|
|
21073
21224
|
updated_at: factories.date_time_iso_8601(),
|
|
21074
21225
|
status: factories['io.flow.payment.gateway.v0.models.payment_capture_status'](),
|
|
@@ -21076,6 +21227,7 @@ var factories = {
|
|
|
21076
21227
|
'io.flow.payment.gateway.v0.models.payment_capture_form': function () { return ({
|
|
21077
21228
|
amount: factories.decimal(),
|
|
21078
21229
|
currency: factories.string(),
|
|
21230
|
+
reference: factories.string(),
|
|
21079
21231
|
attributes: objectOf(function () { return factories.string(); }),
|
|
21080
21232
|
}); },
|
|
21081
21233
|
'io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate': function () { return ({
|
|
@@ -21172,6 +21324,7 @@ var factories = {
|
|
|
21172
21324
|
device_fingerprint_details: factories['io.flow.payment.gateway.v0.unions.device_fingerprint_details'](),
|
|
21173
21325
|
cvv: factories.string(),
|
|
21174
21326
|
stored_details_card: factories['io.flow.payment.gateway.v0.unions.payment_method_stored_details_card'](),
|
|
21327
|
+
reference: factories.string(),
|
|
21175
21328
|
}); },
|
|
21176
21329
|
'io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay': function () { return ({
|
|
21177
21330
|
type: 'authorize_googlepay',
|
|
@@ -21200,35 +21353,36 @@ var factories = {
|
|
|
21200
21353
|
}); },
|
|
21201
21354
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_afterpay': function () { return ({
|
|
21202
21355
|
type: 'init_afterpay',
|
|
21203
|
-
|
|
21356
|
+
reference: factories.string(),
|
|
21204
21357
|
}); },
|
|
21205
21358
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_applepay': function () { return ({
|
|
21206
21359
|
type: 'init_applepay',
|
|
21207
|
-
|
|
21360
|
+
reference: factories.string(),
|
|
21208
21361
|
}); },
|
|
21209
21362
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact': function () { return ({
|
|
21210
21363
|
type: 'init_bancontact',
|
|
21211
|
-
|
|
21364
|
+
reference: factories.string(),
|
|
21212
21365
|
}); },
|
|
21213
21366
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_googlepay': function () { return ({
|
|
21214
21367
|
type: 'init_googlepay',
|
|
21215
|
-
|
|
21368
|
+
reference: factories.string(),
|
|
21216
21369
|
}); },
|
|
21217
21370
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_ideal': function () { return ({
|
|
21218
21371
|
type: 'init_ideal',
|
|
21219
21372
|
issuer: factories.string(),
|
|
21373
|
+
reference: factories.string(),
|
|
21220
21374
|
}); },
|
|
21221
21375
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_klarna': function () { return ({
|
|
21222
21376
|
type: 'init_klarna',
|
|
21223
|
-
|
|
21377
|
+
reference: factories.string(),
|
|
21224
21378
|
}); },
|
|
21225
21379
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_paypal': function () { return ({
|
|
21226
21380
|
type: 'init_paypal',
|
|
21227
|
-
|
|
21381
|
+
reference: factories.string(),
|
|
21228
21382
|
}); },
|
|
21229
21383
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_sofort': function () { return ({
|
|
21230
21384
|
type: 'init_sofort',
|
|
21231
|
-
|
|
21385
|
+
reference: factories.string(),
|
|
21232
21386
|
}); },
|
|
21233
21387
|
'io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg': function () { return ({
|
|
21234
21388
|
type: 'svg',
|
|
@@ -21325,6 +21479,7 @@ var factories = {
|
|
|
21325
21479
|
currency: factories.string(),
|
|
21326
21480
|
base_amount: factories.decimal(),
|
|
21327
21481
|
base_currency: factories.string(),
|
|
21482
|
+
reference: factories.string(),
|
|
21328
21483
|
created_at: factories.date_time_iso_8601(),
|
|
21329
21484
|
updated_at: factories.date_time_iso_8601(),
|
|
21330
21485
|
status: factories['io.flow.payment.gateway.v0.models.payment_refund_status'](),
|
|
@@ -21332,6 +21487,7 @@ var factories = {
|
|
|
21332
21487
|
'io.flow.payment.gateway.v0.models.payment_refund_form': function () { return ({
|
|
21333
21488
|
amount: factories.decimal(),
|
|
21334
21489
|
currency: factories.string(),
|
|
21490
|
+
reference: factories.string(),
|
|
21335
21491
|
}); },
|
|
21336
21492
|
'io.flow.payment.gateway.v0.models.payment_refund_status': function () { return ({
|
|
21337
21493
|
status: factories['io.flow.payment.v0.enums.refund_status'](),
|
|
@@ -21391,6 +21547,7 @@ var factories = {
|
|
|
21391
21547
|
currency: factories.string(),
|
|
21392
21548
|
base_amount: factories.decimal(),
|
|
21393
21549
|
base_currency: factories.string(),
|
|
21550
|
+
reference: factories.string(),
|
|
21394
21551
|
created_at: factories.date_time_iso_8601(),
|
|
21395
21552
|
updated_at: factories.date_time_iso_8601(),
|
|
21396
21553
|
status: factories['io.flow.payment.gateway.v0.models.payment_reversal_status'](),
|
|
@@ -21398,6 +21555,7 @@ var factories = {
|
|
|
21398
21555
|
'io.flow.payment.gateway.v0.models.payment_reversal_form': function () { return ({
|
|
21399
21556
|
amount: factories.decimal(),
|
|
21400
21557
|
currency: factories.string(),
|
|
21558
|
+
reference: factories.string(),
|
|
21401
21559
|
}); },
|
|
21402
21560
|
'io.flow.payment.gateway.v0.models.payment_reversal_status': function () { return ({
|
|
21403
21561
|
status: factories['io.flow.payment.v0.enums.reversal_status'](),
|
|
@@ -22277,14 +22435,6 @@ var factories = {
|
|
|
22277
22435
|
id: factories.string(),
|
|
22278
22436
|
description: factories.string(),
|
|
22279
22437
|
}); },
|
|
22280
|
-
'io.flow.payment.internal.v0.models.virtual_card_provider': function () { return ({
|
|
22281
|
-
id: factories.string(),
|
|
22282
|
-
organization_id: factories.string(),
|
|
22283
|
-
provider: factories.string(),
|
|
22284
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
22285
|
-
created_at: factories.date_time_iso_8601(),
|
|
22286
|
-
updated_at: factories.date_time_iso_8601(),
|
|
22287
|
-
}); },
|
|
22288
22438
|
'io.flow.payment.internal.v0.unions.authorization_payload': function () {
|
|
22289
22439
|
var f = faker.helpers.arrayElement([
|
|
22290
22440
|
function () { return factories['io.flow.payment.internal.v0.models.apple_pay_authorization_payload'](); },
|
|
@@ -23288,10 +23438,6 @@ var factories = {
|
|
|
23288
23438
|
type: factories['io.flow.common.v0.enums.change_type'](),
|
|
23289
23439
|
virtual_card_capture: factories['io.flow.payment.v0.models.virtual_card_capture'](),
|
|
23290
23440
|
}); },
|
|
23291
|
-
'io.flow.payment.v0.models.virtual_card_form': function () { return ({
|
|
23292
|
-
limit: factories['io.flow.common.v0.models.money'](),
|
|
23293
|
-
attributes: objectOf(function () { return factories.string(); }),
|
|
23294
|
-
}); },
|
|
23295
23441
|
'io.flow.payment.v0.models.virtual_card_reference': function () { return ({
|
|
23296
23442
|
id: factories.string(),
|
|
23297
23443
|
}); },
|
|
@@ -24648,6 +24794,28 @@ var factories = {
|
|
|
24648
24794
|
'io.flow.shopify.external.v0.enums.shopify_customer_state': function () { return faker.helpers.arrayElement(['disabled', 'invited', 'enabled']); },
|
|
24649
24795
|
'io.flow.shopify.external.v0.enums.shopify_discount_pagination_direction': function () { return faker.helpers.arrayElement(['next', 'prev']); },
|
|
24650
24796
|
'io.flow.shopify.external.v0.enums.shopify_gift_card_status': function () { return faker.helpers.arrayElement(['any', 'enabled', 'disabled']); },
|
|
24797
|
+
'io.flow.shopify.external.v0.enums.shopify_plan_name': function () { return faker.helpers.arrayElement([
|
|
24798
|
+
'basic',
|
|
24799
|
+
'business',
|
|
24800
|
+
'cancelled',
|
|
24801
|
+
'dormant',
|
|
24802
|
+
'enterprise',
|
|
24803
|
+
'fraudulent',
|
|
24804
|
+
'frozen',
|
|
24805
|
+
'npo_full',
|
|
24806
|
+
'npo_lite',
|
|
24807
|
+
'open_learning',
|
|
24808
|
+
'paid_trial',
|
|
24809
|
+
'professional',
|
|
24810
|
+
'retail',
|
|
24811
|
+
'shopify_alumni',
|
|
24812
|
+
'shopify_plus',
|
|
24813
|
+
'staff',
|
|
24814
|
+
'staff_business',
|
|
24815
|
+
'starter',
|
|
24816
|
+
'starter_2022',
|
|
24817
|
+
'unlimited',
|
|
24818
|
+
]); },
|
|
24651
24819
|
'io.flow.shopify.external.v0.enums.shopify_processing_method_type': function () { return faker.helpers.arrayElement(['checkout', 'direct', 'manual', 'offsite', 'express']); },
|
|
24652
24820
|
'io.flow.shopify.external.v0.enums.shopify_transaction_error_code': function () { return faker.helpers.arrayElement([
|
|
24653
24821
|
'incorrect_number',
|
|
@@ -25386,6 +25554,11 @@ var factories = {
|
|
|
25386
25554
|
tax_lines: arrayOf(function () { return factories['io.flow.shopify.external.v0.models.shopify_tax_line'](); }),
|
|
25387
25555
|
carrier_identifier: factories.string(),
|
|
25388
25556
|
}); },
|
|
25557
|
+
'io.flow.shopify.external.v0.models.shopify_shop_update': function () { return ({
|
|
25558
|
+
id: factories.long(),
|
|
25559
|
+
plan_display_name: factories.string(),
|
|
25560
|
+
plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
|
|
25561
|
+
}); },
|
|
25389
25562
|
'io.flow.shopify.external.v0.models.shopify_tax_line': function () { return ({
|
|
25390
25563
|
price: factories.string(),
|
|
25391
25564
|
rate: factories.double(),
|
|
@@ -25661,6 +25834,9 @@ var factories = {
|
|
|
25661
25834
|
shopify_order: factories['io.flow.shopify.markets.v0.models.shopify_order'](),
|
|
25662
25835
|
flow_authorization: factories['io.flow.payment.v0.unions.authorization'](),
|
|
25663
25836
|
}); },
|
|
25837
|
+
'io.flow.shopify.markets.internal.v0.models.markets_order_summary': function () { return ({
|
|
25838
|
+
id: factories.string(),
|
|
25839
|
+
}); },
|
|
25664
25840
|
'io.flow.shopify.markets.internal.v0.models.order_validation_error': function () { return ({
|
|
25665
25841
|
message: factories.string(),
|
|
25666
25842
|
reason: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'](),
|
|
@@ -25724,6 +25900,7 @@ var factories = {
|
|
|
25724
25900
|
api_key_masked: factories.string(),
|
|
25725
25901
|
api_password_masked: factories.string(),
|
|
25726
25902
|
access_token_masked: factories.string(),
|
|
25903
|
+
shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
|
|
25727
25904
|
}); },
|
|
25728
25905
|
'io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form': function () { return ({
|
|
25729
25906
|
shop: factories.string(),
|
|
@@ -25733,6 +25910,7 @@ var factories = {
|
|
|
25733
25910
|
api_key: factories.string(),
|
|
25734
25911
|
api_password: factories.string(),
|
|
25735
25912
|
access_token: factories.string(),
|
|
25913
|
+
shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
|
|
25736
25914
|
}); },
|
|
25737
25915
|
'io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary': function () { return ({
|
|
25738
25916
|
organization: factories['io.flow.common.v0.models.organization_summary'](),
|
|
@@ -25932,6 +26110,7 @@ var factories = {
|
|
|
25932
26110
|
'themes/publish',
|
|
25933
26111
|
'themes/update',
|
|
25934
26112
|
'bulk_operations/finish',
|
|
26113
|
+
'shop/update',
|
|
25935
26114
|
]); },
|
|
25936
26115
|
'io.flow.shopify.markets.v0.models.fulfillment_order_international_duties': function () { return ({
|
|
25937
26116
|
incoterm: factories['io.flow.shopify.markets.v0.enums.incoterm_duties'](),
|
|
@@ -28017,164 +28196,6 @@ var factories = {
|
|
|
28017
28196
|
]);
|
|
28018
28197
|
return f();
|
|
28019
28198
|
},
|
|
28020
|
-
'io.flow.svb.v0.enums.clearing_type': function () { return faker.helpers.arrayElement(['Credit', 'Debit']); },
|
|
28021
|
-
'io.flow.svb.v0.enums.notification_type': function () { return faker.helpers.arrayElement([
|
|
28022
|
-
'virtualcard.clearings',
|
|
28023
|
-
'virtualcard.created',
|
|
28024
|
-
'virtualcard.deleted',
|
|
28025
|
-
'virtualcard.realtime.auths',
|
|
28026
|
-
]); },
|
|
28027
|
-
'io.flow.svb.v0.enums.transaction_type': function () { return faker.helpers.arrayElement([
|
|
28028
|
-
'Authorization',
|
|
28029
|
-
'Advice',
|
|
28030
|
-
'First Presentment',
|
|
28031
|
-
'Reversal',
|
|
28032
|
-
'Reversal Advice',
|
|
28033
|
-
'Unspecified',
|
|
28034
|
-
'Purchase Return',
|
|
28035
|
-
'Forced Post',
|
|
28036
|
-
]); },
|
|
28037
|
-
'io.flow.svb.v0.models.authorization': function () { return ({
|
|
28038
|
-
billing_amount: factories.integer(),
|
|
28039
|
-
billing_currency: factories.string(),
|
|
28040
|
-
issuer_response: factories.string(),
|
|
28041
|
-
mcc: factories.string(),
|
|
28042
|
-
mcc_description: factories.string(),
|
|
28043
|
-
merchant_amount: factories.integer(),
|
|
28044
|
-
merchant_currency: factories.string(),
|
|
28045
|
-
merchant_id: factories.string(),
|
|
28046
|
-
merchant_name: factories.string(),
|
|
28047
|
-
transaction_date_time: factories.date_time_iso_8601(),
|
|
28048
|
-
transaction_type: factories['io.flow.svb.v0.enums.transaction_type'](),
|
|
28049
|
-
}); },
|
|
28050
|
-
'io.flow.svb.v0.models.clearing': function () { return ({
|
|
28051
|
-
billing_amount: factories.integer(),
|
|
28052
|
-
billing_currency: factories.string(),
|
|
28053
|
-
clearing_type: factories['io.flow.svb.v0.enums.clearing_type'](),
|
|
28054
|
-
authorization_date: factories.date_time_iso_8601(),
|
|
28055
|
-
exchange_rate: factories.string(),
|
|
28056
|
-
mcc: factories.string(),
|
|
28057
|
-
mcc_description: factories.string(),
|
|
28058
|
-
merchant_amount: factories.integer(),
|
|
28059
|
-
merchant_currency: factories.string(),
|
|
28060
|
-
merchant_id: factories.string(),
|
|
28061
|
-
merchant_name: factories.string(),
|
|
28062
|
-
settlement_date: factories.string(),
|
|
28063
|
-
}); },
|
|
28064
|
-
'io.flow.svb.v0.models.clearing_notification': function () { return ({
|
|
28065
|
-
acquirer_ica: factories.string(),
|
|
28066
|
-
approval_code: factories.string(),
|
|
28067
|
-
authorization_date: factories.date_time_iso_8601(),
|
|
28068
|
-
billing_amount: factories.integer(),
|
|
28069
|
-
billing_currency: factories.string(),
|
|
28070
|
-
clearing_type: factories['io.flow.svb.v0.enums.clearing_type'](),
|
|
28071
|
-
exchange_rate: factories.string(),
|
|
28072
|
-
mcc: factories.string(),
|
|
28073
|
-
mcc_description: factories.string(),
|
|
28074
|
-
merchant_amount: factories.integer(),
|
|
28075
|
-
merchant_currency: factories.string(),
|
|
28076
|
-
merchant_id: factories.string(),
|
|
28077
|
-
merchant_name: factories.string(),
|
|
28078
|
-
settlement_date: factories.date_time_iso_8601(),
|
|
28079
|
-
vcn_id: factories.long(),
|
|
28080
|
-
}); },
|
|
28081
|
-
'io.flow.svb.v0.models.create_body': function () { return ({
|
|
28082
|
-
data: factories['io.flow.svb.v0.models.create_virtual_card'](),
|
|
28083
|
-
show_card_number: factories.boolean(),
|
|
28084
|
-
}); },
|
|
28085
|
-
'io.flow.svb.v0.models.create_virtual_card': function () { return ({
|
|
28086
|
-
emails: arrayOf(function () { return factories.string(); }),
|
|
28087
|
-
mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
|
|
28088
|
-
metadata: factories.object(),
|
|
28089
|
-
per_transaction_max: factories.integer(),
|
|
28090
|
-
per_transaction_min: factories.integer(),
|
|
28091
|
-
rcn_id: factories.integer(),
|
|
28092
|
-
rcn_alias: factories.string(),
|
|
28093
|
-
supplier_id: factories.integer(),
|
|
28094
|
-
total_card_amount: factories.integer(),
|
|
28095
|
-
transactions_max: factories.integer(),
|
|
28096
|
-
valid_ending_on: factories.date_iso_8601(),
|
|
28097
|
-
valid_starting_on: factories.date_iso_8601(),
|
|
28098
|
-
}); },
|
|
28099
|
-
'io.flow.svb.v0.models.email': function () { return ({
|
|
28100
|
-
email: factories.string(),
|
|
28101
|
-
}); },
|
|
28102
|
-
'io.flow.svb.v0.models.email_body': function () { return ({
|
|
28103
|
-
data: factories['io.flow.svb.v0.models.email'](),
|
|
28104
|
-
}); },
|
|
28105
|
-
'io.flow.svb.v0.models.email_response': function () { return ({
|
|
28106
|
-
id: factories.string(),
|
|
28107
|
-
}); },
|
|
28108
|
-
'io.flow.svb.v0.models.list_data': function () { return ({
|
|
28109
|
-
id: factories.string(),
|
|
28110
|
-
type: factories.string(),
|
|
28111
|
-
url: factories.string(),
|
|
28112
|
-
}); },
|
|
28113
|
-
'io.flow.svb.v0.models.list_links': function () { return ({
|
|
28114
|
-
first: factories.string(),
|
|
28115
|
-
next: factories.string(),
|
|
28116
|
-
}); },
|
|
28117
|
-
'io.flow.svb.v0.models.list_response': function () { return ({
|
|
28118
|
-
data: arrayOf(function () { return factories['io.flow.svb.v0.models.list_data'](); }),
|
|
28119
|
-
links: factories['io.flow.svb.v0.models.list_links'](),
|
|
28120
|
-
}); },
|
|
28121
|
-
'io.flow.svb.v0.models.mastercard_data': function () { return ({
|
|
28122
|
-
id: factories.string(),
|
|
28123
|
-
organization: factories.string(),
|
|
28124
|
-
order_number: factories.string(),
|
|
28125
|
-
authorization_key: factories.string(),
|
|
28126
|
-
}); },
|
|
28127
|
-
'io.flow.svb.v0.models.notification_data': function () { return ({
|
|
28128
|
-
date: factories.date_time_iso_8601(),
|
|
28129
|
-
'event-id': factories.integer(),
|
|
28130
|
-
payload: factories.object(),
|
|
28131
|
-
type: factories['io.flow.svb.v0.enums.notification_type'](),
|
|
28132
|
-
}); },
|
|
28133
|
-
'io.flow.svb.v0.models.svb_notification': function () { return ({
|
|
28134
|
-
data: factories['io.flow.svb.v0.models.notification_data'](),
|
|
28135
|
-
}); },
|
|
28136
|
-
'io.flow.svb.v0.models.update_body': function () { return ({
|
|
28137
|
-
data: factories['io.flow.svb.v0.models.update_virtual_card'](),
|
|
28138
|
-
}); },
|
|
28139
|
-
'io.flow.svb.v0.models.update_virtual_card': function () { return ({
|
|
28140
|
-
emails: arrayOf(function () { return factories.string(); }),
|
|
28141
|
-
mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
|
|
28142
|
-
metadata: factories.object(),
|
|
28143
|
-
per_transaction_max: factories.integer(),
|
|
28144
|
-
per_transaction_min: factories.integer(),
|
|
28145
|
-
total_card_amount: factories.integer(),
|
|
28146
|
-
transactions_max: factories.integer(),
|
|
28147
|
-
valid_ending_on: factories.date_iso_8601(),
|
|
28148
|
-
valid_starting_on: factories.date_iso_8601(),
|
|
28149
|
-
}); },
|
|
28150
|
-
'io.flow.svb.v0.models.virtual_card': function () { return ({
|
|
28151
|
-
authorizations: arrayOf(function () { return factories['io.flow.svb.v0.models.authorization'](); }),
|
|
28152
|
-
available_balance: factories.integer(),
|
|
28153
|
-
card_number: factories.string(),
|
|
28154
|
-
clearings: arrayOf(function () { return factories['io.flow.svb.v0.models.clearing'](); }),
|
|
28155
|
-
currency: factories.string(),
|
|
28156
|
-
cvc: factories.string(),
|
|
28157
|
-
emails: arrayOf(function () { return factories.string(); }),
|
|
28158
|
-
expiry: factories.string(),
|
|
28159
|
-
id: factories.string(),
|
|
28160
|
-
last4: factories.string(),
|
|
28161
|
-
mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
|
|
28162
|
-
metadata: factories.object(),
|
|
28163
|
-
notified: factories.boolean(),
|
|
28164
|
-
per_transaction_max: factories.integer(),
|
|
28165
|
-
per_transaction_min: factories.integer(),
|
|
28166
|
-
rcn_alias: factories.string(),
|
|
28167
|
-
rcn_id: factories.integer(),
|
|
28168
|
-
status: factories.string(),
|
|
28169
|
-
supplier_id: factories.integer(),
|
|
28170
|
-
total_card_amount: factories.integer(),
|
|
28171
|
-
transactions_max: factories.integer(),
|
|
28172
|
-
valid_ending_on: factories.date_iso_8601(),
|
|
28173
|
-
valid_starting_on: factories.date_iso_8601(),
|
|
28174
|
-
}); },
|
|
28175
|
-
'io.flow.svb.v0.models.virtual_card_response': function () { return ({
|
|
28176
|
-
data: factories['io.flow.svb.v0.models.virtual_card'](),
|
|
28177
|
-
}); },
|
|
28178
28199
|
'io.flow.token.v0.models.channel_token': function () { return ({
|
|
28179
28200
|
discriminator: 'channel_token',
|
|
28180
28201
|
id: factories.string(),
|
|
@@ -28505,6 +28526,7 @@ export var makeAccountType = function () { return factories['io.flow.internal.v0
|
|
|
28505
28526
|
export var makeAccountUpserted = function () { return factories['io.flow.internal.v0.models.account_upserted'](); };
|
|
28506
28527
|
export var makeAccountUpsertedV2 = function () { return factories['io.flow.internal.v0.models.account_upserted_v2'](); };
|
|
28507
28528
|
export var makeAccountingFulfillmentMetadata = function () { return factories['io.flow.internal.v0.models.accounting_fulfillment_metadata'](); };
|
|
28529
|
+
export var makeAccountingPendingOrderMetadata = function () { return factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](); };
|
|
28508
28530
|
export var makeActionQuantity = function () { return factories['io.flow.internal.v0.models.action_quantity'](); };
|
|
28509
28531
|
export var makeAdditionalImportTax = function () { return factories['io.flow.internal.v0.models.additional_import_tax'](); };
|
|
28510
28532
|
export var makeAddressConfigurationProvinceSetting = function () { return factories['io.flow.internal.v0.models.address_configuration_province_setting'](); };
|
|
@@ -28599,7 +28621,9 @@ export var makeBankAccountReference = function () { return factories['io.flow.in
|
|
|
28599
28621
|
export var makeBankPayment = function () { return factories['io.flow.internal.v0.models.bank_payment'](); };
|
|
28600
28622
|
export var makeBankPaymentDeletedV2 = function () { return factories['io.flow.internal.v0.models.bank_payment_deleted_v2'](); };
|
|
28601
28623
|
export var makeBankPaymentForm = function () { return factories['io.flow.internal.v0.models.bank_payment_form'](); };
|
|
28624
|
+
export var makeBankPaymentOrder = function () { return factories['io.flow.internal.v0.models.bank_payment_order'](); };
|
|
28602
28625
|
export var makeBankPaymentPromiseCompletedMethod = function () { return factories['io.flow.internal.v0.enums.bank_payment_promise_completed_method'](); };
|
|
28626
|
+
export var makeBankPaymentReference = function () { return factories['io.flow.internal.v0.models.bank_payment_reference'](); };
|
|
28603
28627
|
export var makeBankPaymentStatusCode = function () { return factories['io.flow.internal.v0.enums.bank_payment_status_code'](); };
|
|
28604
28628
|
export var makeBankPaymentStatusForm = function () { return factories['io.flow.internal.v0.models.bank_payment_status_form'](); };
|
|
28605
28629
|
export var makeBankPaymentStatusImport = function () { return factories['io.flow.internal.v0.models.bank_payment_status_import'](); };
|
|
@@ -28681,9 +28705,6 @@ export var makeCarrierAccountUpsertedV2 = function () { return factories['io.flo
|
|
|
28681
28705
|
export var makeCarrierAccountValidation = function () { return factories['io.flow.internal.v0.models.carrier_account_validation'](); };
|
|
28682
28706
|
export var makeCarrierCharge = function () { return factories['io.flow.internal.v0.models.carrier_charge'](); };
|
|
28683
28707
|
export var makeCarrierChargeDeleted = function () { return factories['io.flow.internal.v0.models.carrier_charge_deleted'](); };
|
|
28684
|
-
export var makeCarrierChargeFile = function () { return factories['io.flow.internal.v0.models.carrier_charge_file'](); };
|
|
28685
|
-
export var makeCarrierChargeFileForm = function () { return factories['io.flow.internal.v0.models.carrier_charge_file_form'](); };
|
|
28686
|
-
export var makeCarrierChargeFileResult = function () { return factories['io.flow.internal.v0.models.carrier_charge_file_result'](); };
|
|
28687
28708
|
export var makeCarrierChargeForm = function () { return factories['io.flow.internal.v0.unions.carrier_charge_form'](); };
|
|
28688
28709
|
export var makeCarrierChargeFormLabel = function () { return factories['io.flow.internal.v0.models.carrier_charge_form_label'](); };
|
|
28689
28710
|
export var makeCarrierChargeFormOther = function () { return factories['io.flow.internal.v0.models.carrier_charge_form_other'](); };
|
|
@@ -28694,6 +28715,18 @@ export var makeCarrierChargeType = function () { return factories['io.flow.inter
|
|
|
28694
28715
|
export var makeCarrierChargeUnits = function () { return factories['io.flow.internal.v0.models.carrier_charge_units'](); };
|
|
28695
28716
|
export var makeCarrierChargeUpserted = function () { return factories['io.flow.internal.v0.models.carrier_charge_upserted'](); };
|
|
28696
28717
|
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
|
+
export var makeCarrierFile = function () { return factories['io.flow.internal.v0.models.carrier_file'](); };
|
|
28727
|
+
export var makeCarrierFileForm = function () { return factories['io.flow.internal.v0.models.carrier_file_form'](); };
|
|
28728
|
+
export var makeCarrierFileResult = function () { return factories['io.flow.internal.v0.models.carrier_file_result'](); };
|
|
28729
|
+
export var makeCarrierFileType = function () { return factories['io.flow.internal.v0.enums.carrier_file_type'](); };
|
|
28697
28730
|
export var makeCarrierInvoice = function () { return factories['io.flow.internal.v0.models.carrier_invoice'](); };
|
|
28698
28731
|
export var makeCarrierLabelGenerationMethod = function () { return factories['io.flow.internal.v0.enums.carrier_label_generation_method'](); };
|
|
28699
28732
|
export var makeCarrierValidationStatus = function () { return factories['io.flow.internal.v0.enums.carrier_validation_status'](); };
|
|
@@ -28948,6 +28981,7 @@ export var makeDetails = function () { return factories['io.flow.internal.v0.mod
|
|
|
28948
28981
|
export var makeDhl = function () { return factories['io.flow.internal.v0.models.dhl'](); };
|
|
28949
28982
|
export var makeDhlEcommerce = function () { return factories['io.flow.internal.v0.models.dhl_ecommerce'](); };
|
|
28950
28983
|
export var makeDict = function () { return factories['io.flow.internal.v0.models.dict'](); };
|
|
28984
|
+
export var makeDimensionEstimateOpsInput = function () { return factories['io.flow.internal.v0.models.dimension_estimate_ops_input'](); };
|
|
28951
28985
|
export var makeDiscount = function () { return factories['io.flow.internal.v0.models.discount'](); };
|
|
28952
28986
|
export var makeDiscountCode = function () { return factories['io.flow.internal.v0.models.discount_code'](); };
|
|
28953
28987
|
export var makeDiscountRequestForm = function () { return factories['io.flow.internal.v0.models.discount_request_form'](); };
|
|
@@ -29069,7 +29103,9 @@ export var makeExperimentSessionQueryForm = function () { return factories['io.f
|
|
|
29069
29103
|
export var makeExperimentUpserted = function () { return factories['io.flow.internal.v0.models.experiment_upserted'](); };
|
|
29070
29104
|
export var makeExperimentVersion = function () { return factories['io.flow.internal.v0.models.experiment_version'](); };
|
|
29071
29105
|
export var makeExplicitStatement = function () { return factories['io.flow.internal.v0.models.explicit_statement'](); };
|
|
29072
|
-
export var makeExplicitStatementForm = function () { return factories['io.flow.internal.v0.
|
|
29106
|
+
export var makeExplicitStatementForm = function () { return factories['io.flow.internal.v0.unions.explicit_statement_form'](); };
|
|
29107
|
+
export var makeExplicitStatementFormAllPendingPostedTransactions = function () { return factories['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'](); };
|
|
29108
|
+
export var makeExplicitStatementFormTransactionIds = function () { return factories['io.flow.internal.v0.models.explicit_statement_form_transaction_ids'](); };
|
|
29073
29109
|
export var makeExportCompleted = function () { return factories['io.flow.internal.v0.models.export_completed'](); };
|
|
29074
29110
|
export var makeExportContentType = function () { return factories['io.flow.internal.v0.enums.export_content_type'](); };
|
|
29075
29111
|
export var makeExportFailed = function () { return factories['io.flow.internal.v0.models.export_failed'](); };
|
|
@@ -29302,6 +29338,7 @@ export var makeItemDimensionEstimateUpsertedV2 = function () { return factories[
|
|
|
29302
29338
|
export var makeItemFilterResponse = function () { return factories['io.flow.internal.v0.models.item_filter_response'](); };
|
|
29303
29339
|
export var makeItemFilterValueResponse = function () { return factories['io.flow.internal.v0.models.item_filter_value_response'](); };
|
|
29304
29340
|
export var makeItemFilterValuesForm = function () { return factories['io.flow.internal.v0.models.item_filter_values_form'](); };
|
|
29341
|
+
export var makeItemForm = function () { return factories['io.flow.internal.v0.models.item_form'](); };
|
|
29305
29342
|
export var makeItemFormImportRequest = function () { return factories['io.flow.internal.v0.models.item_form_import_request'](); };
|
|
29306
29343
|
export var makeItemHarmonization = function () { return factories['io.flow.internal.v0.models.item_harmonization'](); };
|
|
29307
29344
|
export var makeItemHarmonizationDeleted = function () { return factories['io.flow.internal.v0.models.item_harmonization_deleted'](); };
|
|
@@ -29402,7 +29439,11 @@ export var makeLocalizedPriceBookItemData = function () { return factories['io.f
|
|
|
29402
29439
|
export var makeLocalizedPriceBookItemDeleted = function () { return factories['io.flow.internal.v0.models.localized_price_book_item_deleted'](); };
|
|
29403
29440
|
export var makeLocalizedPriceBookItemUpserted = function () { return factories['io.flow.internal.v0.models.localized_price_book_item_upserted'](); };
|
|
29404
29441
|
export var makeLocation = function () { return factories['io.flow.internal.v0.models.location'](); };
|
|
29442
|
+
export var makeLogisticsCapabilities = function () { return factories['io.flow.internal.v0.models.logistics_capabilities'](); };
|
|
29443
|
+
export var makeLogisticsCapabilitiesForm = function () { return factories['io.flow.internal.v0.models.logistics_capabilities_form'](); };
|
|
29444
|
+
export var makeLogisticsCapability = function () { return factories['io.flow.internal.v0.enums.logistics_capability'](); };
|
|
29405
29445
|
export var makeLogo = function () { return factories['io.flow.internal.v0.models.logo'](); };
|
|
29446
|
+
export var makeLostChargeback = function () { return factories['io.flow.internal.v0.models.lost_chargeback'](); };
|
|
29406
29447
|
export var makeLoyaltyProgram = function () { return factories['io.flow.internal.v0.models.loyalty_program'](); };
|
|
29407
29448
|
export var makeLoyaltyProgramMessage = function () { return factories['io.flow.internal.v0.models.loyalty_program_message'](); };
|
|
29408
29449
|
export var makeLoyaltyProgramReward = function () { return factories['io.flow.internal.v0.models.loyalty_program_reward'](); };
|
|
@@ -29411,7 +29452,6 @@ export var makeMagentoInstallForm = function () { return factories['io.flow.inte
|
|
|
29411
29452
|
export var makeMainTransaction = function () { return factories['io.flow.internal.v0.models.main_transaction'](); };
|
|
29412
29453
|
export var makeMainTransactionDeleted = function () { return factories['io.flow.internal.v0.models.main_transaction_deleted'](); };
|
|
29413
29454
|
export var makeMainTransactionDeletedV2 = function () { return factories['io.flow.internal.v0.models.main_transaction_deleted_v2'](); };
|
|
29414
|
-
export var makeMainTransactionStatus = function () { return factories['io.flow.internal.v0.enums.main_transaction_status'](); };
|
|
29415
29455
|
export var makeMainTransactionUpserted = function () { return factories['io.flow.internal.v0.models.main_transaction_upserted'](); };
|
|
29416
29456
|
export var makeMainTransactionUpsertedV2 = function () { return factories['io.flow.internal.v0.models.main_transaction_upserted_v2'](); };
|
|
29417
29457
|
export var makeManualReviewRule = function () { return factories['io.flow.internal.v0.models.manual_review_rule'](); };
|
|
@@ -29477,6 +29517,7 @@ export var makeMarketingGatewaySchemaSummary = function () { return factories['i
|
|
|
29477
29517
|
export var makeMarketingGatewaySourceSummary = function () { return factories['io.flow.internal.v0.unions.marketing_gateway_source_summary'](); };
|
|
29478
29518
|
export var makeMarketingGatewaySupportedChannelDetails = function () { return factories['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'](); };
|
|
29479
29519
|
export var makeMarketsOrder = function () { return factories['io.flow.internal.v0.models.markets_order'](); };
|
|
29520
|
+
export var makeMarketsOrderSummary = function () { return factories['io.flow.internal.v0.models.markets_order_summary'](); };
|
|
29480
29521
|
export var makeMatiasItem = function () { return factories['io.flow.internal.v0.models.matias_item'](); };
|
|
29481
29522
|
export var makeMatiasItemDeleted = function () { return factories['io.flow.internal.v0.models.matias_item_deleted'](); };
|
|
29482
29523
|
export var makeMatiasItemForm = function () { return factories['io.flow.internal.v0.models.matias_item_form'](); };
|
|
@@ -29762,6 +29803,7 @@ export var makeProofOfPostingFulfilled = function () { return factories['io.flow
|
|
|
29762
29803
|
export var makeProofOfPostingOrderCancellation = function () { return factories['io.flow.internal.v0.models.proof_of_posting_order_cancellation'](); };
|
|
29763
29804
|
export var makeProofOfPostingOrderCombinedShipment = function () { return factories['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'](); };
|
|
29764
29805
|
export var makeProofOfPostingShippingNotification = function () { return factories['io.flow.internal.v0.models.proof_of_posting_shipping_notification'](); };
|
|
29806
|
+
export var makeProofOfPostingTimeElapsed = function () { return factories['io.flow.internal.v0.models.proof_of_posting_time_elapsed'](); };
|
|
29765
29807
|
export var makeQuote = function () { return factories['io.flow.internal.v0.models.quote'](); };
|
|
29766
29808
|
export var makeQuoteDeleted = function () { return factories['io.flow.internal.v0.models.quote_deleted'](); };
|
|
29767
29809
|
export var makeQuoteRequest = function () { return factories['io.flow.internal.v0.models.quote_request'](); };
|
|
@@ -29908,6 +29950,7 @@ export var makeRestrictionRule = function () { return factories['io.flow.interna
|
|
|
29908
29950
|
export var makeRestrictionRuleDecisionForm = function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); };
|
|
29909
29951
|
export var makeRestrictionRuleForm = function () { return factories['io.flow.internal.v0.models.restriction_rule_form'](); };
|
|
29910
29952
|
export var makeRestrictionRuleMetadata = function () { return factories['io.flow.internal.v0.models.restriction_rule_metadata'](); };
|
|
29953
|
+
export var makeRestrictionRuleOverride = function () { return factories['io.flow.internal.v0.models.restriction_rule_override'](); };
|
|
29911
29954
|
export var makeRestrictionRuleSummary = function () { return factories['io.flow.internal.v0.models.restriction_rule_summary'](); };
|
|
29912
29955
|
export var makeRestrictionStatus = function () { return factories['io.flow.internal.v0.enums.restriction_status'](); };
|
|
29913
29956
|
export var makeRestrictionStatusMetadata = function () { return factories['io.flow.internal.v0.models.restriction_status_metadata'](); };
|
|
@@ -30152,9 +30195,6 @@ export var makeSubscriptionFrequency = function () { return factories['io.flow.i
|
|
|
30152
30195
|
export var makeSubscriptionTransaction = function () { return factories['io.flow.internal.v0.models.subscription_transaction'](); };
|
|
30153
30196
|
export var makeSuggestionAction = function () { return factories['io.flow.internal.v0.enums.suggestion_action'](); };
|
|
30154
30197
|
export var makeSupportedLabels = function () { return factories['io.flow.internal.v0.models.supported_labels'](); };
|
|
30155
|
-
export var makeSvbVirtualCardClearing = function () { return factories['io.flow.internal.v0.models.svb_virtual_card_clearing'](); };
|
|
30156
|
-
export var makeSvbVirtualCardClearingDeleted = function () { return factories['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'](); };
|
|
30157
|
-
export var makeSvbVirtualCardClearingUpserted = function () { return factories['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'](); };
|
|
30158
30198
|
export var makeSvitlanaItem = function () { return factories['io.flow.internal.v0.models.svitlana_item'](); };
|
|
30159
30199
|
export var makeSvitlanaItemDeleted = function () { return factories['io.flow.internal.v0.models.svitlana_item_deleted'](); };
|
|
30160
30200
|
export var makeSvitlanaItemForm = function () { return factories['io.flow.internal.v0.models.svitlana_item_form'](); };
|
|
@@ -30279,9 +30319,6 @@ export var makeValidationRule = function () { return factories['io.flow.internal
|
|
|
30279
30319
|
export var makeVariant = function () { return factories['io.flow.internal.v0.unions.variant'](); };
|
|
30280
30320
|
export var makeVariantForm = function () { return factories['io.flow.internal.v0.unions.variant_form'](); };
|
|
30281
30321
|
export var makeViesResult = function () { return factories['io.flow.internal.v0.models.vies_result'](); };
|
|
30282
|
-
export var makeVirtualCardProvider = function () { return factories['io.flow.internal.v0.models.virtual_card_provider'](); };
|
|
30283
|
-
export var makeVirtualCardProviderDeleted = function () { return factories['io.flow.internal.v0.models.virtual_card_provider_deleted'](); };
|
|
30284
|
-
export var makeVirtualCardProviderUpserted = function () { return factories['io.flow.internal.v0.models.virtual_card_provider_upserted'](); };
|
|
30285
30322
|
export var makeVirtualCardTransaction = function () { return factories['io.flow.internal.v0.models.virtual_card_transaction'](); };
|
|
30286
30323
|
export var makeWasteElectricalAndElectronicEquipmentComplianceData = function () { return factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'](); };
|
|
30287
30324
|
export var makeWasteElectricalAndElectronicEquipmentComplianceForm = function () { return factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'](); };
|