@flowio/api-internal-factories 0.0.99 → 0.0.100
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 +288 -168
- package/dist/esm/api-internal.js +221 -109
- package/dist/types/api-internal.d.ts +20 -12
- package/package.json +2 -2
- package/src/api-internal.ts +247 -122
package/src/api-internal.ts
CHANGED
|
@@ -749,6 +749,11 @@ const factories = {
|
|
|
749
749
|
total: factories.decimal(),
|
|
750
750
|
}),
|
|
751
751
|
|
|
752
|
+
'io.flow.billing.accounting.v0.models.order_reference': (): io.flow.billing.accounting.v0.models.OrderReference => ({
|
|
753
|
+
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
754
|
+
number: factories.string(),
|
|
755
|
+
}),
|
|
756
|
+
|
|
752
757
|
'io.flow.billing.accounting.v0.models.order_summary': (): io.flow.billing.accounting.v0.models.OrderSummary => ({
|
|
753
758
|
id: factories.string(),
|
|
754
759
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
@@ -759,6 +764,16 @@ const factories = {
|
|
|
759
764
|
currency: factories.string(),
|
|
760
765
|
}),
|
|
761
766
|
|
|
767
|
+
'io.flow.billing.accounting.v0.models.pending_order': (): io.flow.billing.accounting.v0.models.PendingOrder => ({
|
|
768
|
+
id: factories.string(),
|
|
769
|
+
order: factories['io.flow.billing.accounting.v0.models.order_summary'](),
|
|
770
|
+
shopper: factories['io.flow.billing.accounting.v0.models.shopper_summary'](),
|
|
771
|
+
merchant: factories['io.flow.billing.accounting.v0.models.merchant_summary'](),
|
|
772
|
+
remittance: factories['io.flow.billing.accounting.v0.models.remittance_responsibility'](),
|
|
773
|
+
sequence_number: factories.long(),
|
|
774
|
+
posting_cutoff: factories.date_time_iso_8601(),
|
|
775
|
+
}),
|
|
776
|
+
|
|
762
777
|
'io.flow.billing.accounting.v0.models.remittance_responsibility': (): io.flow.billing.accounting.v0.models.RemittanceResponsibility => ({
|
|
763
778
|
tax: factories['io.flow.billing.internal.v0.enums.responsible_party'](),
|
|
764
779
|
duty: factories['io.flow.billing.internal.v0.enums.responsible_party'](),
|
|
@@ -768,8 +783,8 @@ const factories = {
|
|
|
768
783
|
id: factories.string(),
|
|
769
784
|
order: factories['io.flow.billing.accounting.v0.models.order_summary'](),
|
|
770
785
|
shopper: factories['io.flow.billing.accounting.v0.models.shopper_summary'](),
|
|
771
|
-
remittance: factories['io.flow.billing.accounting.v0.models.remittance_responsibility'](),
|
|
772
786
|
merchant: factories['io.flow.billing.accounting.v0.models.merchant_summary'](),
|
|
787
|
+
remittance: factories['io.flow.billing.accounting.v0.models.remittance_responsibility'](),
|
|
773
788
|
sequence_number: factories.long(),
|
|
774
789
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
775
790
|
trigger: factories['io.flow.billing.accounting.v0.unions.return_trigger'](),
|
|
@@ -1176,6 +1191,8 @@ const factories = {
|
|
|
1176
1191
|
fx_fee_description: factories.string(),
|
|
1177
1192
|
duty_guarantee_fee: factories.decimal(),
|
|
1178
1193
|
duty_guarantee_fee_description: factories.string(),
|
|
1194
|
+
negative_balance_fee: factories.decimal(),
|
|
1195
|
+
negative_balance_fee_description: factories.string(),
|
|
1179
1196
|
}),
|
|
1180
1197
|
|
|
1181
1198
|
'io.flow.billing.csv.v0.models.billing_csv_processing_transaction_delivery': (): io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionDelivery => ({
|
|
@@ -1344,8 +1361,8 @@ const factories = {
|
|
|
1344
1361
|
one_time_adjustments: objectOf(() => factories.decimal()),
|
|
1345
1362
|
}),
|
|
1346
1363
|
|
|
1364
|
+
'io.flow.billing.internal.v0.enums.account_payment_hold_reason': (): io.flow.billing.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'invalid_bank_account']),
|
|
1347
1365
|
'io.flow.billing.internal.v0.enums.account_setting_liabilities_method': (): io.flow.billing.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
|
|
1348
|
-
'io.flow.billing.internal.v0.enums.account_status': (): io.flow.billing.internal.v0.enums.AccountStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
1349
1366
|
'io.flow.billing.internal.v0.enums.account_type': (): io.flow.billing.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
|
|
1350
1367
|
'io.flow.billing.internal.v0.enums.adjustment_transaction_type': (): io.flow.billing.internal.v0.enums.AdjustmentTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal']),
|
|
1351
1368
|
'io.flow.billing.internal.v0.enums.bank_payment_promise_completed_method': (): io.flow.billing.internal.v0.enums.BankPaymentPromiseCompletedMethod => faker.helpers.arrayElement(['credit', 'time']),
|
|
@@ -1400,7 +1417,6 @@ const factories = {
|
|
|
1400
1417
|
'all',
|
|
1401
1418
|
]),
|
|
1402
1419
|
|
|
1403
|
-
'io.flow.billing.internal.v0.enums.billing_statement_batch_file_key': (): io.flow.billing.internal.v0.enums.BillingStatementBatchFileKey => faker.helpers.arrayElement(['summary']),
|
|
1404
1420
|
'io.flow.billing.internal.v0.enums.billing_transaction_status': (): io.flow.billing.internal.v0.enums.BillingTransactionStatus => faker.helpers.arrayElement(['pending', 'pending_proof', 'posted']),
|
|
1405
1421
|
|
|
1406
1422
|
'io.flow.billing.internal.v0.enums.billing_transaction_type': (): io.flow.billing.internal.v0.enums.BillingTransactionType => faker.helpers.arrayElement([
|
|
@@ -1502,6 +1518,17 @@ const factories = {
|
|
|
1502
1518
|
country: factories.string(),
|
|
1503
1519
|
}),
|
|
1504
1520
|
|
|
1521
|
+
'io.flow.billing.internal.v0.models.account_payment_hold': (): io.flow.billing.internal.v0.models.AccountPaymentHold => ({
|
|
1522
|
+
id: factories.string(),
|
|
1523
|
+
account: factories['io.flow.billing.internal.v0.models.simple_account_reference'](),
|
|
1524
|
+
reason: factories['io.flow.billing.internal.v0.enums.account_payment_hold_reason'](),
|
|
1525
|
+
}),
|
|
1526
|
+
|
|
1527
|
+
'io.flow.billing.internal.v0.models.account_payment_hold_form': (): io.flow.billing.internal.v0.models.AccountPaymentHoldForm => ({
|
|
1528
|
+
account_id: factories.string(),
|
|
1529
|
+
reason: factories['io.flow.billing.internal.v0.enums.account_payment_hold_reason'](),
|
|
1530
|
+
}),
|
|
1531
|
+
|
|
1505
1532
|
'io.flow.billing.internal.v0.models.account_processing_rate_form': (): io.flow.billing.internal.v0.models.AccountProcessingRateForm => ({
|
|
1506
1533
|
query: factories.string(),
|
|
1507
1534
|
capture: factories.decimal(),
|
|
@@ -1746,20 +1773,6 @@ const factories = {
|
|
|
1746
1773
|
url: factories.string(),
|
|
1747
1774
|
}),
|
|
1748
1775
|
|
|
1749
|
-
'io.flow.billing.internal.v0.models.billing_statement_batch': (): io.flow.billing.internal.v0.models.BillingStatementBatch => ({
|
|
1750
|
-
id: factories.string(),
|
|
1751
|
-
}),
|
|
1752
|
-
|
|
1753
|
-
'io.flow.billing.internal.v0.models.billing_statement_batch_reference': (): io.flow.billing.internal.v0.models.BillingStatementBatchReference => ({
|
|
1754
|
-
id: factories.string(),
|
|
1755
|
-
}),
|
|
1756
|
-
|
|
1757
|
-
'io.flow.billing.internal.v0.models.billing_statement_batch_statement': (): io.flow.billing.internal.v0.models.BillingStatementBatchStatement => ({
|
|
1758
|
-
id: factories.string(),
|
|
1759
|
-
batch: factories['io.flow.billing.internal.v0.models.billing_statement_batch_reference'](),
|
|
1760
|
-
statement: factories['io.flow.billing.internal.v0.models.billing_statement_reference'](),
|
|
1761
|
-
}),
|
|
1762
|
-
|
|
1763
1776
|
'io.flow.billing.internal.v0.models.billing_statement_reference': (): io.flow.billing.internal.v0.models.BillingStatementReference => ({
|
|
1764
1777
|
id: factories.string(),
|
|
1765
1778
|
}),
|
|
@@ -1836,7 +1849,6 @@ const factories = {
|
|
|
1836
1849
|
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
1837
1850
|
id: factories.string(),
|
|
1838
1851
|
key: factories.string(),
|
|
1839
|
-
status: factories['io.flow.billing.internal.v0.enums.account_status'](),
|
|
1840
1852
|
origin: factories['io.flow.billing.internal.v0.models.account_origin'](),
|
|
1841
1853
|
currency: factories.string(),
|
|
1842
1854
|
updated_at: factories.date_time_iso_8601(),
|
|
@@ -2036,6 +2048,7 @@ const factories = {
|
|
|
2036
2048
|
fx: factories['io.flow.billing.internal.v0.models.fee'](),
|
|
2037
2049
|
duty_guarantee: factories['io.flow.billing.internal.v0.models.fee'](),
|
|
2038
2050
|
transfer: factories['io.flow.billing.internal.v0.models.fee'](),
|
|
2051
|
+
negative_balance: factories['io.flow.billing.internal.v0.models.fee'](),
|
|
2039
2052
|
}),
|
|
2040
2053
|
|
|
2041
2054
|
'io.flow.billing.internal.v0.models.finance_bank_account': (): io.flow.billing.internal.v0.models.FinanceBankAccount => ({
|
|
@@ -2062,7 +2075,6 @@ const factories = {
|
|
|
2062
2075
|
source: factories['io.flow.billing.internal.v0.models.account_source'](),
|
|
2063
2076
|
id: factories.string(),
|
|
2064
2077
|
key: factories.string(),
|
|
2065
|
-
status: factories['io.flow.billing.internal.v0.enums.account_status'](),
|
|
2066
2078
|
origin: factories['io.flow.billing.internal.v0.models.account_origin'](),
|
|
2067
2079
|
currency: factories.string(),
|
|
2068
2080
|
updated_at: factories.date_time_iso_8601(),
|
|
@@ -2077,10 +2089,6 @@ const factories = {
|
|
|
2077
2089
|
created_at: factories.date_time_iso_8601(),
|
|
2078
2090
|
}),
|
|
2079
2091
|
|
|
2080
|
-
'io.flow.billing.internal.v0.models.flow_account_status_form': (): io.flow.billing.internal.v0.models.FlowAccountStatusForm => ({
|
|
2081
|
-
status: factories['io.flow.billing.internal.v0.enums.account_status'](),
|
|
2082
|
-
}),
|
|
2083
|
-
|
|
2084
2092
|
'io.flow.billing.internal.v0.models.flow_billing_statement': (): io.flow.billing.internal.v0.models.FlowBillingStatement => ({
|
|
2085
2093
|
id: factories.string(),
|
|
2086
2094
|
account: factories['io.flow.billing.v0.models.account_reference'](),
|
|
@@ -2262,7 +2270,6 @@ const factories = {
|
|
|
2262
2270
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
2263
2271
|
id: factories.string(),
|
|
2264
2272
|
key: factories.string(),
|
|
2265
|
-
status: factories['io.flow.billing.internal.v0.enums.account_status'](),
|
|
2266
2273
|
origin: factories['io.flow.billing.internal.v0.models.account_origin'](),
|
|
2267
2274
|
currency: factories.string(),
|
|
2268
2275
|
updated_at: factories.date_time_iso_8601(),
|
|
@@ -2703,7 +2710,7 @@ const factories = {
|
|
|
2703
2710
|
]),
|
|
2704
2711
|
|
|
2705
2712
|
'io.flow.billing.reporting.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.billing.reporting.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
|
|
2706
|
-
'io.flow.billing.reporting.v0.enums.revenue_record_type': (): io.flow.billing.reporting.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['sales', 'refund']),
|
|
2713
|
+
'io.flow.billing.reporting.v0.enums.revenue_record_type': (): io.flow.billing.reporting.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
2707
2714
|
|
|
2708
2715
|
'io.flow.billing.reporting.v0.models.fulfillment_shopper_breakdown': (): io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown => ({
|
|
2709
2716
|
shipping: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
@@ -9262,8 +9269,8 @@ const factories = {
|
|
|
9262
9269
|
company_name: factories.string(),
|
|
9263
9270
|
}),
|
|
9264
9271
|
|
|
9272
|
+
'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'invalid_bank_account']),
|
|
9265
9273
|
'io.flow.internal.v0.enums.account_setting_liabilities_method': (): io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
|
|
9266
|
-
'io.flow.internal.v0.enums.account_status': (): io.flow.internal.v0.enums.AccountStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
9267
9274
|
'io.flow.internal.v0.enums.account_type': (): io.flow.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
|
|
9268
9275
|
'io.flow.internal.v0.enums.address_configuration_setting_province_code': (): io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode => faker.helpers.arrayElement(['iso_3166_2', 'name']),
|
|
9269
9276
|
'io.flow.internal.v0.enums.adjustment_transaction_type': (): io.flow.internal.v0.enums.AdjustmentTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal']),
|
|
@@ -9354,6 +9361,8 @@ const factories = {
|
|
|
9354
9361
|
'refund_transactions_ignored_previously_processed_count',
|
|
9355
9362
|
'refund_queued_count',
|
|
9356
9363
|
'refund_transactions_total',
|
|
9364
|
+
'refund_transactions_succeeded_then_failed_count',
|
|
9365
|
+
'refund_transactions_succeeded_then_failed_total',
|
|
9357
9366
|
'reversal_order_cancellations_transactions_count',
|
|
9358
9367
|
'reversal_order_cancellations_transactions_total',
|
|
9359
9368
|
'reversal_external_fulfillment_transactions_count',
|
|
@@ -9380,8 +9389,8 @@ const factories = {
|
|
|
9380
9389
|
'queued_refund_unprocessed_count',
|
|
9381
9390
|
'queued_label_invoice_request_unprocessed_count',
|
|
9382
9391
|
'queued_other_unprocessed_count',
|
|
9383
|
-
'
|
|
9384
|
-
'
|
|
9392
|
+
'task_snooze_count',
|
|
9393
|
+
'task_snooze_ending_in_48_hours_count',
|
|
9385
9394
|
'payouts_scheduled_count',
|
|
9386
9395
|
'payouts_scheduled_total',
|
|
9387
9396
|
'payouts_sent_count',
|
|
@@ -9406,9 +9415,13 @@ const factories = {
|
|
|
9406
9415
|
'negative_balance_total_with_order_in_past_30_days',
|
|
9407
9416
|
'negative_balance_total_without_order_in_past_30_days',
|
|
9408
9417
|
'negative_balance_single_account_max',
|
|
9409
|
-
'
|
|
9410
|
-
'
|
|
9411
|
-
'
|
|
9418
|
+
'negative_balance_fee_total',
|
|
9419
|
+
'accounts_with_payment_holds_count',
|
|
9420
|
+
'accounts_with_payment_holds_pending_payment_promise_count',
|
|
9421
|
+
'accounts_with_payment_holds_pending_payment_promise_total',
|
|
9422
|
+
'accounts_with_final_statements_count',
|
|
9423
|
+
'accounts_with_final_statements_pending_transaction_count',
|
|
9424
|
+
'accounts_with_final_statements_pending_transaction_total',
|
|
9412
9425
|
]),
|
|
9413
9426
|
|
|
9414
9427
|
'io.flow.internal.v0.enums.billing_statement_attachment_key': (): io.flow.internal.v0.enums.BillingStatementAttachmentKey => faker.helpers.arrayElement([
|
|
@@ -9431,7 +9444,6 @@ const factories = {
|
|
|
9431
9444
|
'all',
|
|
9432
9445
|
]),
|
|
9433
9446
|
|
|
9434
|
-
'io.flow.internal.v0.enums.billing_statement_batch_file_key': (): io.flow.internal.v0.enums.BillingStatementBatchFileKey => faker.helpers.arrayElement(['summary']),
|
|
9435
9447
|
'io.flow.internal.v0.enums.billing_transaction_status': (): io.flow.internal.v0.enums.BillingTransactionStatus => faker.helpers.arrayElement(['pending', 'pending_proof', 'posted']),
|
|
9436
9448
|
|
|
9437
9449
|
'io.flow.internal.v0.enums.billing_transaction_type': (): io.flow.internal.v0.enums.BillingTransactionType => faker.helpers.arrayElement([
|
|
@@ -9541,6 +9553,9 @@ const factories = {
|
|
|
9541
9553
|
'incoterm_dap',
|
|
9542
9554
|
'emergency_situation',
|
|
9543
9555
|
'remote_area_delivery',
|
|
9556
|
+
'customs_clearance_surcharge',
|
|
9557
|
+
'security_surcharge',
|
|
9558
|
+
'duties_fx_surcharge',
|
|
9544
9559
|
]),
|
|
9545
9560
|
|
|
9546
9561
|
'io.flow.internal.v0.enums.chargeback_payment_status': (): io.flow.internal.v0.enums.ChargebackPaymentStatus => faker.helpers.arrayElement(['captured', 'refunded']),
|
|
@@ -9917,6 +9932,8 @@ const factories = {
|
|
|
9917
9932
|
'adyen_refund_upserted',
|
|
9918
9933
|
'index_assignment_upserted',
|
|
9919
9934
|
'index_assignment_deleted',
|
|
9935
|
+
'fulfillment_upserted',
|
|
9936
|
+
'fulfillment_deleted',
|
|
9920
9937
|
'merchant_upserted',
|
|
9921
9938
|
'merchant_deleted',
|
|
9922
9939
|
'account_upserted',
|
|
@@ -10051,10 +10068,6 @@ const factories = {
|
|
|
10051
10068
|
'billing_organization_processing_rates_deleted',
|
|
10052
10069
|
'billing_organization_settings_upserted',
|
|
10053
10070
|
'billing_organization_settings_deleted',
|
|
10054
|
-
'billing_statement_batch_upserted',
|
|
10055
|
-
'billing_statement_batch_deleted',
|
|
10056
|
-
'billing_statement_batch_statement_upserted',
|
|
10057
|
-
'billing_statement_batch_statement_deleted',
|
|
10058
10071
|
'standalone_attachment_upserted',
|
|
10059
10072
|
'standalone_attachment_deleted',
|
|
10060
10073
|
'platform_fee_change_upserted',
|
|
@@ -10115,6 +10128,10 @@ const factories = {
|
|
|
10115
10128
|
'item_form_import_request',
|
|
10116
10129
|
'label_request_error_upserted',
|
|
10117
10130
|
'label_request_error_deleted',
|
|
10131
|
+
'order_validation_failure_upserted',
|
|
10132
|
+
'order_validation_failure_deleted',
|
|
10133
|
+
'order_validation_upserted',
|
|
10134
|
+
'order_validation_deleted',
|
|
10118
10135
|
'label_tracking_summary_upserted',
|
|
10119
10136
|
'label_tracking_summary_deleted',
|
|
10120
10137
|
'localized_item_upserted_v2',
|
|
@@ -10247,6 +10264,8 @@ const factories = {
|
|
|
10247
10264
|
'shruti_demo_item_deleted',
|
|
10248
10265
|
'tam_item_upserted',
|
|
10249
10266
|
'tam_item_deleted',
|
|
10267
|
+
'tracking_processing_error_upserted',
|
|
10268
|
+
'tracking_processing_error_deleted',
|
|
10250
10269
|
'tracking_label_event_upserted_v2',
|
|
10251
10270
|
'tracking_label_event_deleted_v2',
|
|
10252
10271
|
'tracking_label_upserted',
|
|
@@ -10586,7 +10605,7 @@ const factories = {
|
|
|
10586
10605
|
'io.flow.internal.v0.enums.restriction_action': (): io.flow.internal.v0.enums.RestrictionAction => faker.helpers.arrayElement(['prohibited', 'restricted']),
|
|
10587
10606
|
'io.flow.internal.v0.enums.restriction_decision': (): io.flow.internal.v0.enums.RestrictionDecision => faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']),
|
|
10588
10607
|
'io.flow.internal.v0.enums.restriction_status': (): io.flow.internal.v0.enums.RestrictionStatus => faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']),
|
|
10589
|
-
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['sales', 'refund']),
|
|
10608
|
+
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
10590
10609
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
10591
10610
|
'io.flow.internal.v0.enums.risk_evaluation': (): io.flow.internal.v0.enums.RiskEvaluation => faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']),
|
|
10592
10611
|
'io.flow.internal.v0.enums.scope': (): io.flow.internal.v0.enums.Scope => faker.helpers.arrayElement(['organization', 'global']),
|
|
@@ -10659,7 +10678,7 @@ const factories = {
|
|
|
10659
10678
|
'io.flow.internal.v0.enums.significance_action': (): io.flow.internal.v0.enums.SignificanceAction => faker.helpers.arrayElement(['end_and_implement_winner', 'end_and_revert', 'do_nothing']),
|
|
10660
10679
|
'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
|
|
10661
10680
|
'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
|
|
10662
|
-
'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['
|
|
10681
|
+
'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task']),
|
|
10663
10682
|
|
|
10664
10683
|
'io.flow.internal.v0.enums.statement_status': (): io.flow.internal.v0.enums.StatementStatus => faker.helpers.arrayElement([
|
|
10665
10684
|
'created',
|
|
@@ -10701,6 +10720,16 @@ const factories = {
|
|
|
10701
10720
|
'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax']),
|
|
10702
10721
|
'io.flow.internal.v0.enums.timeseries_type': (): io.flow.internal.v0.enums.TimeseriesType => faker.helpers.arrayElement(['daily', 'weekly', 'monthly', 'yearly']),
|
|
10703
10722
|
'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
|
|
10723
|
+
|
|
10724
|
+
'io.flow.internal.v0.enums.tracking_processing_failure_classification': (): io.flow.internal.v0.enums.TrackingProcessingFailureClassification => faker.helpers.arrayElement([
|
|
10725
|
+
'tracking_expired',
|
|
10726
|
+
'expired_tracking_number_new_event',
|
|
10727
|
+
'new_tracking_number_expired_event',
|
|
10728
|
+
'origin_mismatch',
|
|
10729
|
+
'destination_mismatch',
|
|
10730
|
+
'other',
|
|
10731
|
+
]),
|
|
10732
|
+
|
|
10704
10733
|
'io.flow.internal.v0.enums.transaction_posting_method': (): io.flow.internal.v0.enums.TransactionPostingMethod => faker.helpers.arrayElement(['time', 'proof']),
|
|
10705
10734
|
'io.flow.internal.v0.enums.transfer_method': (): io.flow.internal.v0.enums.TransferMethod => faker.helpers.arrayElement(['ach']),
|
|
10706
10735
|
'io.flow.internal.v0.enums.trueup_transaction_type': (): io.flow.internal.v0.enums.TrueupTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'trueup']),
|
|
@@ -10789,6 +10818,17 @@ const factories = {
|
|
|
10789
10818
|
country: factories.string(),
|
|
10790
10819
|
}),
|
|
10791
10820
|
|
|
10821
|
+
'io.flow.internal.v0.models.account_payment_hold': (): io.flow.internal.v0.models.AccountPaymentHold => ({
|
|
10822
|
+
id: factories.string(),
|
|
10823
|
+
account: factories['io.flow.internal.v0.models.simple_account_reference'](),
|
|
10824
|
+
reason: factories['io.flow.internal.v0.enums.account_payment_hold_reason'](),
|
|
10825
|
+
}),
|
|
10826
|
+
|
|
10827
|
+
'io.flow.internal.v0.models.account_payment_hold_form': (): io.flow.internal.v0.models.AccountPaymentHoldForm => ({
|
|
10828
|
+
account_id: factories.string(),
|
|
10829
|
+
reason: factories['io.flow.internal.v0.enums.account_payment_hold_reason'](),
|
|
10830
|
+
}),
|
|
10831
|
+
|
|
10792
10832
|
'io.flow.internal.v0.models.account_processing_rate_form': (): io.flow.internal.v0.models.AccountProcessingRateForm => ({
|
|
10793
10833
|
query: factories.string(),
|
|
10794
10834
|
capture: factories.decimal(),
|
|
@@ -10930,6 +10970,12 @@ const factories = {
|
|
|
10930
10970
|
account: factories['io.flow.internal.v0.models.flow_account'](),
|
|
10931
10971
|
}),
|
|
10932
10972
|
|
|
10973
|
+
'io.flow.internal.v0.models.accounting_fulfillment_metadata': (): io.flow.internal.v0.models.AccountingFulfillmentMetadata => ({
|
|
10974
|
+
discriminator: 'accounting_fulfillment_metadata',
|
|
10975
|
+
order: factories['io.flow.internal.v0.models.order_reference'](),
|
|
10976
|
+
proof: factories['io.flow.internal.v0.unions.fulfillment_proof'](),
|
|
10977
|
+
}),
|
|
10978
|
+
|
|
10933
10979
|
'io.flow.internal.v0.models.action_quantity': (): io.flow.internal.v0.models.ActionQuantity => ({
|
|
10934
10980
|
action: factories['io.flow.internal.v0.enums.item_quantity_action'](),
|
|
10935
10981
|
quantity: factories.long(),
|
|
@@ -11711,48 +11757,6 @@ const factories = {
|
|
|
11711
11757
|
url: factories.string(),
|
|
11712
11758
|
}),
|
|
11713
11759
|
|
|
11714
|
-
'io.flow.internal.v0.models.billing_statement_batch': (): io.flow.internal.v0.models.BillingStatementBatch => ({
|
|
11715
|
-
id: factories.string(),
|
|
11716
|
-
}),
|
|
11717
|
-
|
|
11718
|
-
'io.flow.internal.v0.models.billing_statement_batch_deleted': (): io.flow.internal.v0.models.BillingStatementBatchDeleted => ({
|
|
11719
|
-
discriminator: 'billing_statement_batch_deleted',
|
|
11720
|
-
event_id: factories.string(),
|
|
11721
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11722
|
-
id: factories.string(),
|
|
11723
|
-
}),
|
|
11724
|
-
|
|
11725
|
-
'io.flow.internal.v0.models.billing_statement_batch_reference': (): io.flow.internal.v0.models.BillingStatementBatchReference => ({
|
|
11726
|
-
id: factories.string(),
|
|
11727
|
-
}),
|
|
11728
|
-
|
|
11729
|
-
'io.flow.internal.v0.models.billing_statement_batch_statement': (): io.flow.internal.v0.models.BillingStatementBatchStatement => ({
|
|
11730
|
-
id: factories.string(),
|
|
11731
|
-
batch: factories['io.flow.internal.v0.models.billing_statement_batch_reference'](),
|
|
11732
|
-
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
11733
|
-
}),
|
|
11734
|
-
|
|
11735
|
-
'io.flow.internal.v0.models.billing_statement_batch_statement_deleted': (): io.flow.internal.v0.models.BillingStatementBatchStatementDeleted => ({
|
|
11736
|
-
discriminator: 'billing_statement_batch_statement_deleted',
|
|
11737
|
-
event_id: factories.string(),
|
|
11738
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11739
|
-
id: factories.string(),
|
|
11740
|
-
}),
|
|
11741
|
-
|
|
11742
|
-
'io.flow.internal.v0.models.billing_statement_batch_statement_upserted': (): io.flow.internal.v0.models.BillingStatementBatchStatementUpserted => ({
|
|
11743
|
-
discriminator: 'billing_statement_batch_statement_upserted',
|
|
11744
|
-
event_id: factories.string(),
|
|
11745
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11746
|
-
billing_statement_batch_statement: factories['io.flow.internal.v0.models.billing_statement_batch_statement'](),
|
|
11747
|
-
}),
|
|
11748
|
-
|
|
11749
|
-
'io.flow.internal.v0.models.billing_statement_batch_upserted': (): io.flow.internal.v0.models.BillingStatementBatchUpserted => ({
|
|
11750
|
-
discriminator: 'billing_statement_batch_upserted',
|
|
11751
|
-
event_id: factories.string(),
|
|
11752
|
-
timestamp: factories.date_time_iso_8601(),
|
|
11753
|
-
billing_statement_batch: factories['io.flow.internal.v0.models.billing_statement_batch'](),
|
|
11754
|
-
}),
|
|
11755
|
-
|
|
11756
11760
|
'io.flow.internal.v0.models.billing_statement_deleted': (): io.flow.internal.v0.models.BillingStatementDeleted => ({
|
|
11757
11761
|
discriminator: 'billing_statement_deleted',
|
|
11758
11762
|
event_id: factories.string(),
|
|
@@ -12325,6 +12329,7 @@ const factories = {
|
|
|
12325
12329
|
'io.flow.internal.v0.models.carrier_charge_form_other': (): io.flow.internal.v0.models.CarrierChargeFormOther => ({
|
|
12326
12330
|
discriminator: 'other',
|
|
12327
12331
|
id: factories.string(),
|
|
12332
|
+
label_invoice_request_id: factories.string(),
|
|
12328
12333
|
reason: factories['io.flow.trueup.v0.enums.carrier_charge_reason'](),
|
|
12329
12334
|
organization_id: factories.string(),
|
|
12330
12335
|
order_number: factories.string(),
|
|
@@ -12500,7 +12505,6 @@ const factories = {
|
|
|
12500
12505
|
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
12501
12506
|
id: factories.string(),
|
|
12502
12507
|
key: factories.string(),
|
|
12503
|
-
status: factories['io.flow.internal.v0.enums.account_status'](),
|
|
12504
12508
|
origin: factories['io.flow.internal.v0.models.account_origin'](),
|
|
12505
12509
|
currency: factories.string(),
|
|
12506
12510
|
updated_at: factories.date_time_iso_8601(),
|
|
@@ -17237,7 +17241,6 @@ const factories = {
|
|
|
17237
17241
|
source: factories['io.flow.internal.v0.models.account_source'](),
|
|
17238
17242
|
id: factories.string(),
|
|
17239
17243
|
key: factories.string(),
|
|
17240
|
-
status: factories['io.flow.internal.v0.enums.account_status'](),
|
|
17241
17244
|
origin: factories['io.flow.internal.v0.models.account_origin'](),
|
|
17242
17245
|
currency: factories.string(),
|
|
17243
17246
|
updated_at: factories.date_time_iso_8601(),
|
|
@@ -17252,10 +17255,6 @@ const factories = {
|
|
|
17252
17255
|
created_at: factories.date_time_iso_8601(),
|
|
17253
17256
|
}),
|
|
17254
17257
|
|
|
17255
|
-
'io.flow.internal.v0.models.flow_account_status_form': (): io.flow.internal.v0.models.FlowAccountStatusForm => ({
|
|
17256
|
-
status: factories['io.flow.internal.v0.enums.account_status'](),
|
|
17257
|
-
}),
|
|
17258
|
-
|
|
17259
17258
|
'io.flow.internal.v0.models.flow_billing_statement': (): io.flow.internal.v0.models.FlowBillingStatement => ({
|
|
17260
17259
|
id: factories.string(),
|
|
17261
17260
|
account: factories['io.flow.billing.v0.models.account_reference'](),
|
|
@@ -17562,6 +17561,14 @@ const factories = {
|
|
|
17562
17561
|
),
|
|
17563
17562
|
}),
|
|
17564
17563
|
|
|
17564
|
+
'io.flow.internal.v0.models.fulfillment_deleted': (): io.flow.internal.v0.models.FulfillmentDeleted => ({
|
|
17565
|
+
discriminator: 'fulfillment_deleted',
|
|
17566
|
+
event_id: factories.string(),
|
|
17567
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17568
|
+
organization: factories.string(),
|
|
17569
|
+
id: factories.string(),
|
|
17570
|
+
}),
|
|
17571
|
+
|
|
17565
17572
|
'io.flow.internal.v0.models.fulfillment_internal_experience_reference': (): io.flow.internal.v0.models.FulfillmentInternalExperienceReference => ({
|
|
17566
17573
|
id: factories.string(),
|
|
17567
17574
|
key: factories.string(),
|
|
@@ -17661,6 +17668,14 @@ const factories = {
|
|
|
17661
17668
|
placeholder: factories.string(),
|
|
17662
17669
|
}),
|
|
17663
17670
|
|
|
17671
|
+
'io.flow.internal.v0.models.fulfillment_upserted': (): io.flow.internal.v0.models.FulfillmentUpserted => ({
|
|
17672
|
+
discriminator: 'fulfillment_upserted',
|
|
17673
|
+
event_id: factories.string(),
|
|
17674
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17675
|
+
organization: factories.string(),
|
|
17676
|
+
fulfillment: factories['io.flow.internal.v0.models.fulfillment'](),
|
|
17677
|
+
}),
|
|
17678
|
+
|
|
17664
17679
|
'io.flow.internal.v0.models.fx_fee': (): io.flow.internal.v0.models.FxFee => ({
|
|
17665
17680
|
base: factories['io.flow.common.v0.models.money'](),
|
|
17666
17681
|
local: factories['io.flow.common.v0.models.money'](),
|
|
@@ -19331,6 +19346,10 @@ const factories = {
|
|
|
19331
19346
|
emergency: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
19332
19347
|
peak: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
19333
19348
|
address_correction: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
19349
|
+
security: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
19350
|
+
eei_filing: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
19351
|
+
fixed_ddp: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
19352
|
+
fixed_currency_conversion: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
19334
19353
|
}),
|
|
19335
19354
|
|
|
19336
19355
|
'io.flow.internal.v0.models.label_surcharge_single_form': (): io.flow.internal.v0.models.LabelSurchargeSingleForm => ({
|
|
@@ -20627,6 +20646,11 @@ const factories = {
|
|
|
20627
20646
|
data: factories['io.flow.internal.v0.models.order_rates_data_v3'](),
|
|
20628
20647
|
}),
|
|
20629
20648
|
|
|
20649
|
+
'io.flow.internal.v0.models.order_reference': (): io.flow.internal.v0.models.OrderReference => ({
|
|
20650
|
+
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
20651
|
+
number: factories.string(),
|
|
20652
|
+
}),
|
|
20653
|
+
|
|
20630
20654
|
'io.flow.internal.v0.models.order_revenue_region_chart': (): io.flow.internal.v0.models.OrderRevenueRegionChart => ({
|
|
20631
20655
|
total: factories['io.flow.common.v0.models.price'](),
|
|
20632
20656
|
period: factories['io.flow.common.v0.models.datetime_range'](),
|
|
@@ -20726,6 +20750,16 @@ const factories = {
|
|
|
20726
20750
|
service_id: factories.string(),
|
|
20727
20751
|
status: factories['io.flow.internal.v0.enums.order_validation_status'](),
|
|
20728
20752
|
updated_by_user_id: factories.string(),
|
|
20753
|
+
created_at: factories.date_time_iso_8601(),
|
|
20754
|
+
resolved_at: factories.date_time_iso_8601(),
|
|
20755
|
+
}),
|
|
20756
|
+
|
|
20757
|
+
'io.flow.internal.v0.models.order_validation_deleted': (): io.flow.internal.v0.models.OrderValidationDeleted => ({
|
|
20758
|
+
discriminator: 'order_validation_deleted',
|
|
20759
|
+
event_id: factories.string(),
|
|
20760
|
+
timestamp: factories.date_time_iso_8601(),
|
|
20761
|
+
organization: factories.string(),
|
|
20762
|
+
id: factories.string(),
|
|
20729
20763
|
}),
|
|
20730
20764
|
|
|
20731
20765
|
'io.flow.internal.v0.models.order_validation_error': (): io.flow.internal.v0.models.OrderValidationError => ({
|
|
@@ -20748,6 +20782,14 @@ const factories = {
|
|
|
20748
20782
|
errors: arrayOf(() => factories.string()),
|
|
20749
20783
|
}),
|
|
20750
20784
|
|
|
20785
|
+
'io.flow.internal.v0.models.order_validation_failure_deleted': (): io.flow.internal.v0.models.OrderValidationFailureDeleted => ({
|
|
20786
|
+
discriminator: 'order_validation_failure_deleted',
|
|
20787
|
+
event_id: factories.string(),
|
|
20788
|
+
timestamp: factories.date_time_iso_8601(),
|
|
20789
|
+
organization: factories.string(),
|
|
20790
|
+
id: factories.string(),
|
|
20791
|
+
}),
|
|
20792
|
+
|
|
20751
20793
|
'io.flow.internal.v0.models.order_validation_failure_summary': (): io.flow.internal.v0.models.OrderValidationFailureSummary => ({
|
|
20752
20794
|
organization_id: factories.string(),
|
|
20753
20795
|
order_number: factories.string(),
|
|
@@ -20758,11 +20800,26 @@ const factories = {
|
|
|
20758
20800
|
created_at: factories.string(),
|
|
20759
20801
|
}),
|
|
20760
20802
|
|
|
20803
|
+
'io.flow.internal.v0.models.order_validation_failure_upserted': (): io.flow.internal.v0.models.OrderValidationFailureUpserted => ({
|
|
20804
|
+
discriminator: 'order_validation_failure_upserted',
|
|
20805
|
+
event_id: factories.string(),
|
|
20806
|
+
timestamp: factories.date_time_iso_8601(),
|
|
20807
|
+
organization: factories.string(),
|
|
20808
|
+
order_validation_failure: factories['io.flow.internal.v0.models.order_validation_failure'](),
|
|
20809
|
+
}),
|
|
20810
|
+
|
|
20811
|
+
'io.flow.internal.v0.models.order_validation_upserted': (): io.flow.internal.v0.models.OrderValidationUpserted => ({
|
|
20812
|
+
discriminator: 'order_validation_upserted',
|
|
20813
|
+
event_id: factories.string(),
|
|
20814
|
+
timestamp: factories.date_time_iso_8601(),
|
|
20815
|
+
organization: factories.string(),
|
|
20816
|
+
order_validation: factories['io.flow.internal.v0.models.order_validation'](),
|
|
20817
|
+
}),
|
|
20818
|
+
|
|
20761
20819
|
'io.flow.internal.v0.models.organization_account': (): io.flow.internal.v0.models.OrganizationAccount => ({
|
|
20762
20820
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
20763
20821
|
id: factories.string(),
|
|
20764
20822
|
key: factories.string(),
|
|
20765
|
-
status: factories['io.flow.internal.v0.enums.account_status'](),
|
|
20766
20823
|
origin: factories['io.flow.internal.v0.models.account_origin'](),
|
|
20767
20824
|
currency: factories.string(),
|
|
20768
20825
|
updated_at: factories.date_time_iso_8601(),
|
|
@@ -21536,6 +21593,16 @@ const factories = {
|
|
|
21536
21593
|
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
21537
21594
|
}),
|
|
21538
21595
|
|
|
21596
|
+
'io.flow.internal.v0.models.pending_order': (): io.flow.internal.v0.models.PendingOrder => ({
|
|
21597
|
+
id: factories.string(),
|
|
21598
|
+
order: factories['io.flow.internal.v0.models.order_summary'](),
|
|
21599
|
+
shopper: factories['io.flow.internal.v0.models.shopper_summary'](),
|
|
21600
|
+
merchant: factories['io.flow.internal.v0.models.merchant_summary'](),
|
|
21601
|
+
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
21602
|
+
sequence_number: factories.long(),
|
|
21603
|
+
posting_cutoff: factories.date_time_iso_8601(),
|
|
21604
|
+
}),
|
|
21605
|
+
|
|
21539
21606
|
'io.flow.internal.v0.models.phrase_classified': (): io.flow.internal.v0.models.PhraseClassified => ({
|
|
21540
21607
|
event_id: factories.string(),
|
|
21541
21608
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -21878,20 +21945,6 @@ const factories = {
|
|
|
21878
21945
|
shipping_notification_id: factories.string(),
|
|
21879
21946
|
}),
|
|
21880
21947
|
|
|
21881
|
-
'io.flow.internal.v0.models.queued_record': (): io.flow.internal.v0.models.QueuedRecord => ({
|
|
21882
|
-
type: factories.string(),
|
|
21883
|
-
type_id: factories.string(),
|
|
21884
|
-
source_type: factories.string(),
|
|
21885
|
-
source_id: factories.string(),
|
|
21886
|
-
environment: factories.string(),
|
|
21887
|
-
created_at: factories.date_time_iso_8601(),
|
|
21888
|
-
num_attempts: factories.integer(),
|
|
21889
|
-
next_attempt_at: factories.date_time_iso_8601(),
|
|
21890
|
-
errors: arrayOf(() => factories.string()),
|
|
21891
|
-
stacktrace: factories.string(),
|
|
21892
|
-
snooze_id: factories.string(),
|
|
21893
|
-
}),
|
|
21894
|
-
|
|
21895
21948
|
'io.flow.internal.v0.models.quote': (): io.flow.internal.v0.models.Quote => ({
|
|
21896
21949
|
id: factories.string(),
|
|
21897
21950
|
base: factories.string(),
|
|
@@ -22936,8 +22989,8 @@ const factories = {
|
|
|
22936
22989
|
id: factories.string(),
|
|
22937
22990
|
order: factories['io.flow.internal.v0.models.order_summary'](),
|
|
22938
22991
|
shopper: factories['io.flow.internal.v0.models.shopper_summary'](),
|
|
22939
|
-
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
22940
22992
|
merchant: factories['io.flow.internal.v0.models.merchant_summary'](),
|
|
22993
|
+
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
22941
22994
|
sequence_number: factories.long(),
|
|
22942
22995
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
22943
22996
|
trigger: factories['io.flow.internal.v0.unions.return_trigger'](),
|
|
@@ -24072,6 +24125,11 @@ const factories = {
|
|
|
24072
24125
|
attachment: factories['io.flow.internal.v0.models.standalone_attachment'](),
|
|
24073
24126
|
}),
|
|
24074
24127
|
|
|
24128
|
+
'io.flow.internal.v0.models.statement_creation_metadata': (): io.flow.internal.v0.models.StatementCreationMetadata => ({
|
|
24129
|
+
discriminator: 'statement_creation_metadata',
|
|
24130
|
+
period: factories['io.flow.common.v0.models.datetime_range'](),
|
|
24131
|
+
}),
|
|
24132
|
+
|
|
24075
24133
|
'io.flow.internal.v0.models.store_connection': (): io.flow.internal.v0.models.StoreConnection => ({
|
|
24076
24134
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
24077
24135
|
id: factories.string(),
|
|
@@ -24455,6 +24513,20 @@ const factories = {
|
|
|
24455
24513
|
data: factories['io.flow.internal.v0.unions.tariff_eligibility_data'](),
|
|
24456
24514
|
}),
|
|
24457
24515
|
|
|
24516
|
+
'io.flow.internal.v0.models.task': (): io.flow.internal.v0.models.Task => ({
|
|
24517
|
+
type: factories.string(),
|
|
24518
|
+
type_id: factories.string(),
|
|
24519
|
+
source_type: factories.string(),
|
|
24520
|
+
source_id: factories.string(),
|
|
24521
|
+
environment: factories.string(),
|
|
24522
|
+
created_at: factories.date_time_iso_8601(),
|
|
24523
|
+
num_attempts: factories.integer(),
|
|
24524
|
+
next_attempt_at: factories.date_time_iso_8601(),
|
|
24525
|
+
errors: arrayOf(() => factories.string()),
|
|
24526
|
+
stacktrace: factories.string(),
|
|
24527
|
+
snooze_id: factories.string(),
|
|
24528
|
+
}),
|
|
24529
|
+
|
|
24458
24530
|
'io.flow.internal.v0.models.task_count': (): io.flow.internal.v0.models.TaskCount => ({
|
|
24459
24531
|
discriminator: factories.string(),
|
|
24460
24532
|
count: factories.long(),
|
|
@@ -24760,6 +24832,31 @@ const factories = {
|
|
|
24760
24832
|
tracking_label: factories['io.flow.internal.v0.models.export_tracking_label'](),
|
|
24761
24833
|
}),
|
|
24762
24834
|
|
|
24835
|
+
'io.flow.internal.v0.models.tracking_processing_error': (): io.flow.internal.v0.models.TrackingProcessingError => ({
|
|
24836
|
+
id: factories.string(),
|
|
24837
|
+
aftership_webhook_id: factories.string(),
|
|
24838
|
+
carrier_id: factories.string(),
|
|
24839
|
+
carrier_tracking_number: factories.string(),
|
|
24840
|
+
organization_id: factories.string(),
|
|
24841
|
+
tracking_label_id: factories.string(),
|
|
24842
|
+
errors: arrayOf(() => factories.string()),
|
|
24843
|
+
failure_classification: factories['io.flow.internal.v0.enums.tracking_processing_failure_classification'](),
|
|
24844
|
+
}),
|
|
24845
|
+
|
|
24846
|
+
'io.flow.internal.v0.models.tracking_processing_error_deleted': (): io.flow.internal.v0.models.TrackingProcessingErrorDeleted => ({
|
|
24847
|
+
discriminator: 'tracking_processing_error_deleted',
|
|
24848
|
+
event_id: factories.string(),
|
|
24849
|
+
timestamp: factories.date_time_iso_8601(),
|
|
24850
|
+
id: factories.string(),
|
|
24851
|
+
}),
|
|
24852
|
+
|
|
24853
|
+
'io.flow.internal.v0.models.tracking_processing_error_upserted': (): io.flow.internal.v0.models.TrackingProcessingErrorUpserted => ({
|
|
24854
|
+
discriminator: 'tracking_processing_error_upserted',
|
|
24855
|
+
event_id: factories.string(),
|
|
24856
|
+
timestamp: factories.date_time_iso_8601(),
|
|
24857
|
+
tracking_processing_error: factories['io.flow.internal.v0.models.tracking_processing_error'](),
|
|
24858
|
+
}),
|
|
24859
|
+
|
|
24763
24860
|
'io.flow.internal.v0.models.tracking_request': (): io.flow.internal.v0.models.TrackingRequest => ({
|
|
24764
24861
|
carrier: factories.string(),
|
|
24765
24862
|
carrier_tracking_number: factories.string(),
|
|
@@ -26196,6 +26293,8 @@ const factories = {
|
|
|
26196
26293
|
() => factories['io.flow.internal.v0.models.adyen_refund_upserted'](),
|
|
26197
26294
|
() => factories['io.flow.internal.v0.models.index_assignment_upserted'](),
|
|
26198
26295
|
() => factories['io.flow.internal.v0.models.index_assignment_deleted'](),
|
|
26296
|
+
() => factories['io.flow.internal.v0.models.fulfillment_upserted'](),
|
|
26297
|
+
() => factories['io.flow.internal.v0.models.fulfillment_deleted'](),
|
|
26199
26298
|
() => factories['io.flow.internal.v0.models.merchant_upserted'](),
|
|
26200
26299
|
() => factories['io.flow.internal.v0.models.merchant_deleted'](),
|
|
26201
26300
|
() => factories['io.flow.internal.v0.models.account_upserted'](),
|
|
@@ -26330,10 +26429,6 @@ const factories = {
|
|
|
26330
26429
|
() => factories['io.flow.internal.v0.models.billing_organization_processing_rates_deleted'](),
|
|
26331
26430
|
() => factories['io.flow.internal.v0.models.billing_organization_settings_upserted'](),
|
|
26332
26431
|
() => factories['io.flow.internal.v0.models.billing_organization_settings_deleted'](),
|
|
26333
|
-
() => factories['io.flow.internal.v0.models.billing_statement_batch_upserted'](),
|
|
26334
|
-
() => factories['io.flow.internal.v0.models.billing_statement_batch_deleted'](),
|
|
26335
|
-
() => factories['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'](),
|
|
26336
|
-
() => factories['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'](),
|
|
26337
26432
|
() => factories['io.flow.internal.v0.models.standalone_attachment_upserted'](),
|
|
26338
26433
|
() => factories['io.flow.internal.v0.models.standalone_attachment_deleted'](),
|
|
26339
26434
|
() => factories['io.flow.internal.v0.models.platform_fee_change_upserted'](),
|
|
@@ -26394,6 +26489,10 @@ const factories = {
|
|
|
26394
26489
|
() => factories['io.flow.internal.v0.models.item_form_import_request'](),
|
|
26395
26490
|
() => factories['io.flow.internal.v0.models.label_request_error_upserted'](),
|
|
26396
26491
|
() => factories['io.flow.internal.v0.models.label_request_error_deleted'](),
|
|
26492
|
+
() => factories['io.flow.internal.v0.models.order_validation_failure_upserted'](),
|
|
26493
|
+
() => factories['io.flow.internal.v0.models.order_validation_failure_deleted'](),
|
|
26494
|
+
() => factories['io.flow.internal.v0.models.order_validation_upserted'](),
|
|
26495
|
+
() => factories['io.flow.internal.v0.models.order_validation_deleted'](),
|
|
26397
26496
|
() => factories['io.flow.internal.v0.models.label_tracking_summary_upserted'](),
|
|
26398
26497
|
() => factories['io.flow.internal.v0.models.label_tracking_summary_deleted'](),
|
|
26399
26498
|
() => factories['io.flow.internal.v0.models.localized_item_upserted_v2'](),
|
|
@@ -26526,6 +26625,8 @@ const factories = {
|
|
|
26526
26625
|
() => factories['io.flow.internal.v0.models.shruti_demo_item_deleted'](),
|
|
26527
26626
|
() => factories['io.flow.internal.v0.models.tam_item_upserted'](),
|
|
26528
26627
|
() => factories['io.flow.internal.v0.models.tam_item_deleted'](),
|
|
26628
|
+
() => factories['io.flow.internal.v0.models.tracking_processing_error_upserted'](),
|
|
26629
|
+
() => factories['io.flow.internal.v0.models.tracking_processing_error_deleted'](),
|
|
26529
26630
|
() => factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2'](),
|
|
26530
26631
|
() => factories['io.flow.internal.v0.models.tracking_label_event_deleted_v2'](),
|
|
26531
26632
|
() => factories['io.flow.internal.v0.models.tracking_label_upserted'](),
|
|
@@ -27090,6 +27191,15 @@ const factories = {
|
|
|
27090
27191
|
return f();
|
|
27091
27192
|
},
|
|
27092
27193
|
|
|
27194
|
+
'io.flow.internal.v0.unions.task_metadata': (): io.flow.internal.v0.unions.TaskMetadata => {
|
|
27195
|
+
const f = faker.helpers.arrayElement([
|
|
27196
|
+
() => factories['io.flow.internal.v0.models.statement_creation_metadata'](),
|
|
27197
|
+
() => factories['io.flow.internal.v0.models.accounting_fulfillment_metadata'](),
|
|
27198
|
+
]);
|
|
27199
|
+
|
|
27200
|
+
return f();
|
|
27201
|
+
},
|
|
27202
|
+
|
|
27093
27203
|
'io.flow.internal.v0.unions.tax_amount': (): io.flow.internal.v0.unions.TaxAmount => {
|
|
27094
27204
|
const f = faker.helpers.arrayElement([
|
|
27095
27205
|
() => factories['io.flow.internal.v0.models.calculated_tax_amount'](),
|
|
@@ -27440,7 +27550,14 @@ const factories = {
|
|
|
27440
27550
|
]),
|
|
27441
27551
|
|
|
27442
27552
|
'io.flow.label.v0.enums.label_trigger_method': (): io.flow.label.v0.enums.LabelTriggerMethod => faker.helpers.arrayElement(['autogenerated', 'on_demand']),
|
|
27443
|
-
|
|
27553
|
+
|
|
27554
|
+
'io.flow.label.v0.enums.package_dimensions_source': (): io.flow.label.v0.enums.PackageDimensionsSource => faker.helpers.arrayElement([
|
|
27555
|
+
'provided',
|
|
27556
|
+
'item_dimensions_estimated',
|
|
27557
|
+
'dimensions_estimated',
|
|
27558
|
+
'default_item_dimensions_estimated',
|
|
27559
|
+
]),
|
|
27560
|
+
|
|
27444
27561
|
'io.flow.label.v0.enums.shipment_recipient': (): io.flow.label.v0.enums.ShipmentRecipient => faker.helpers.arrayElement(['customer', 'return', 'crossdock']),
|
|
27445
27562
|
'io.flow.label.v0.enums.tracking_number_type': (): io.flow.label.v0.enums.TrackingNumberType => faker.helpers.arrayElement(['flow', 'carrier']),
|
|
27446
27563
|
|
|
@@ -37495,10 +37612,10 @@ const factories = {
|
|
|
37495
37612
|
'emergency',
|
|
37496
37613
|
'peak',
|
|
37497
37614
|
'address_correction',
|
|
37498
|
-
'
|
|
37499
|
-
'
|
|
37500
|
-
'
|
|
37501
|
-
'
|
|
37615
|
+
'security',
|
|
37616
|
+
'eei_filing',
|
|
37617
|
+
'fixed_ddp',
|
|
37618
|
+
'fixed_currency_conversion',
|
|
37502
37619
|
]),
|
|
37503
37620
|
|
|
37504
37621
|
'io.flow.trueup.v0.models.dead_weight': (): io.flow.trueup.v0.models.DeadWeight => ({
|
|
@@ -37569,6 +37686,9 @@ export const makeAccountDepositRule = () => factories['io.flow.internal.v0.model
|
|
|
37569
37686
|
export const makeAccountDepositRuleForm = () => factories['io.flow.internal.v0.models.account_deposit_rule_form']();
|
|
37570
37687
|
export const makeAccountOrdersExportRequest = () => factories['io.flow.internal.v0.models.account_orders_export_request']();
|
|
37571
37688
|
export const makeAccountOrigin = () => factories['io.flow.internal.v0.models.account_origin']();
|
|
37689
|
+
export const makeAccountPaymentHold = () => factories['io.flow.internal.v0.models.account_payment_hold']();
|
|
37690
|
+
export const makeAccountPaymentHoldForm = () => factories['io.flow.internal.v0.models.account_payment_hold_form']();
|
|
37691
|
+
export const makeAccountPaymentHoldReason = () => factories['io.flow.internal.v0.enums.account_payment_hold_reason']();
|
|
37572
37692
|
export const makeAccountProcessingRateForm = () => factories['io.flow.internal.v0.models.account_processing_rate_form']();
|
|
37573
37693
|
export const makeAccountProcessingRates = () => factories['io.flow.internal.v0.models.account_processing_rates']();
|
|
37574
37694
|
export const makeAccountProcessingRatesDeleted = () => factories['io.flow.internal.v0.models.account_processing_rates_deleted']();
|
|
@@ -37582,12 +37702,12 @@ export const makeAccountSettingsDeleted = () => factories['io.flow.internal.v0.m
|
|
|
37582
37702
|
export const makeAccountSettingsUpserted = () => factories['io.flow.internal.v0.models.account_settings_upserted']();
|
|
37583
37703
|
export const makeAccountSource = () => factories['io.flow.internal.v0.models.account_source']();
|
|
37584
37704
|
export const makeAccountStatistics = () => factories['io.flow.internal.v0.models.account_statistics']();
|
|
37585
|
-
export const makeAccountStatus = () => factories['io.flow.internal.v0.enums.account_status']();
|
|
37586
37705
|
export const makeAccountSummary = () => factories['io.flow.internal.v0.models.account_summary']();
|
|
37587
37706
|
export const makeAccountTransactionsExportRequest = () => factories['io.flow.internal.v0.models.account_transactions_export_request']();
|
|
37588
37707
|
export const makeAccountType = () => factories['io.flow.internal.v0.enums.account_type']();
|
|
37589
37708
|
export const makeAccountUpserted = () => factories['io.flow.internal.v0.models.account_upserted']();
|
|
37590
37709
|
export const makeAccountUpsertedV2 = () => factories['io.flow.internal.v0.models.account_upserted_v2']();
|
|
37710
|
+
export const makeAccountingFulfillmentMetadata = () => factories['io.flow.internal.v0.models.accounting_fulfillment_metadata']();
|
|
37591
37711
|
export const makeActionQuantity = () => factories['io.flow.internal.v0.models.action_quantity']();
|
|
37592
37712
|
export const makeAdditionalImportTax = () => factories['io.flow.internal.v0.models.additional_import_tax']();
|
|
37593
37713
|
export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.internal.v0.models.address_configuration_province_setting']();
|
|
@@ -37711,14 +37831,6 @@ export const makeBillingOrganizationSettingsDeleted = () => factories['io.flow.i
|
|
|
37711
37831
|
export const makeBillingOrganizationSettingsUpserted = () => factories['io.flow.internal.v0.models.billing_organization_settings_upserted']();
|
|
37712
37832
|
export const makeBillingStatementAttachment = () => factories['io.flow.internal.v0.models.billing_statement_attachment']();
|
|
37713
37833
|
export const makeBillingStatementAttachmentKey = () => factories['io.flow.internal.v0.enums.billing_statement_attachment_key']();
|
|
37714
|
-
export const makeBillingStatementBatch = () => factories['io.flow.internal.v0.models.billing_statement_batch']();
|
|
37715
|
-
export const makeBillingStatementBatchDeleted = () => factories['io.flow.internal.v0.models.billing_statement_batch_deleted']();
|
|
37716
|
-
export const makeBillingStatementBatchFileKey = () => factories['io.flow.internal.v0.enums.billing_statement_batch_file_key']();
|
|
37717
|
-
export const makeBillingStatementBatchReference = () => factories['io.flow.internal.v0.models.billing_statement_batch_reference']();
|
|
37718
|
-
export const makeBillingStatementBatchStatement = () => factories['io.flow.internal.v0.models.billing_statement_batch_statement']();
|
|
37719
|
-
export const makeBillingStatementBatchStatementDeleted = () => factories['io.flow.internal.v0.models.billing_statement_batch_statement_deleted']();
|
|
37720
|
-
export const makeBillingStatementBatchStatementUpserted = () => factories['io.flow.internal.v0.models.billing_statement_batch_statement_upserted']();
|
|
37721
|
-
export const makeBillingStatementBatchUpserted = () => factories['io.flow.internal.v0.models.billing_statement_batch_upserted']();
|
|
37722
37834
|
export const makeBillingStatementDeleted = () => factories['io.flow.internal.v0.models.billing_statement_deleted']();
|
|
37723
37835
|
export const makeBillingStatementReference = () => factories['io.flow.internal.v0.models.billing_statement_reference']();
|
|
37724
37836
|
export const makeBillingStatementSummary = () => factories['io.flow.internal.v0.models.billing_statement_summary']();
|
|
@@ -38739,7 +38851,6 @@ export const makeFiservMerchant = () => factories['io.flow.internal.v0.models.fi
|
|
|
38739
38851
|
export const makeFiservMerchantModificationForm = () => factories['io.flow.internal.v0.models.fiserv_merchant_modification_form']();
|
|
38740
38852
|
export const makeFiservMerchantPutForm = () => factories['io.flow.internal.v0.models.fiserv_merchant_put_form']();
|
|
38741
38853
|
export const makeFlowAccount = () => factories['io.flow.internal.v0.models.flow_account']();
|
|
38742
|
-
export const makeFlowAccountStatusForm = () => factories['io.flow.internal.v0.models.flow_account_status_form']();
|
|
38743
38854
|
export const makeFlowApp = () => factories['io.flow.internal.v0.enums.flow_app']();
|
|
38744
38855
|
export const makeFlowBillingStatement = () => factories['io.flow.internal.v0.models.flow_billing_statement']();
|
|
38745
38856
|
export const makeFlowChannelOrganization = () => factories['io.flow.internal.v0.models.flow_channel_organization']();
|
|
@@ -38788,6 +38899,7 @@ export const makeFulfillment = () => factories['io.flow.internal.v0.models.fulfi
|
|
|
38788
38899
|
export const makeFulfillmentActionForm = () => factories['io.flow.internal.v0.models.fulfillment_action_form']();
|
|
38789
38900
|
export const makeFulfillmentBusiness = () => factories['io.flow.internal.v0.models.fulfillment_business']();
|
|
38790
38901
|
export const makeFulfillmentCancel = () => factories['io.flow.internal.v0.models.fulfillment_cancel']();
|
|
38902
|
+
export const makeFulfillmentDeleted = () => factories['io.flow.internal.v0.models.fulfillment_deleted']();
|
|
38791
38903
|
export const makeFulfillmentInternalExperienceReference = () => factories['io.flow.internal.v0.models.fulfillment_internal_experience_reference']();
|
|
38792
38904
|
export const makeFulfillmentOrigin = () => factories['io.flow.internal.v0.models.fulfillment_origin']();
|
|
38793
38905
|
export const makeFulfillmentProof = () => factories['io.flow.internal.v0.unions.fulfillment_proof']();
|
|
@@ -38803,6 +38915,7 @@ export const makeFulfillmentSubsidyBreakdown = () => factories['io.flow.internal
|
|
|
38803
38915
|
export const makeFulfillmentTrigger = () => factories['io.flow.internal.v0.unions.fulfillment_trigger']();
|
|
38804
38916
|
export const makeFulfillmentTriggerProof = () => factories['io.flow.internal.v0.models.fulfillment_trigger_proof']();
|
|
38805
38917
|
export const makeFulfillmentTriggerTime = () => factories['io.flow.internal.v0.models.fulfillment_trigger_time']();
|
|
38918
|
+
export const makeFulfillmentUpserted = () => factories['io.flow.internal.v0.models.fulfillment_upserted']();
|
|
38806
38919
|
export const makeFxFee = () => factories['io.flow.internal.v0.models.fx_fee']();
|
|
38807
38920
|
export const makeFxRevenueRecognition = () => factories['io.flow.internal.v0.models.fx_revenue_recognition']();
|
|
38808
38921
|
export const makeFxRevenueRecognitionAccount = () => factories['io.flow.internal.v0.models.fx_revenue_recognition_account']();
|
|
@@ -39223,6 +39336,7 @@ export const makeOrderPaymentAuthorization = () => factories['io.flow.internal.v
|
|
|
39223
39336
|
export const makeOrderPlaced = () => factories['io.flow.internal.v0.models.order_placed']();
|
|
39224
39337
|
export const makeOrderRatesDataV3 = () => factories['io.flow.internal.v0.models.order_rates_data_v3']();
|
|
39225
39338
|
export const makeOrderRatesPublishedV3 = () => factories['io.flow.internal.v0.models.order_rates_published_v3']();
|
|
39339
|
+
export const makeOrderReference = () => factories['io.flow.internal.v0.models.order_reference']();
|
|
39226
39340
|
export const makeOrderRevenueRegionChart = () => factories['io.flow.internal.v0.models.order_revenue_region_chart']();
|
|
39227
39341
|
export const makeOrderRevenueRegionDataPoint = () => factories['io.flow.internal.v0.models.order_revenue_region_data_point']();
|
|
39228
39342
|
export const makeOrderRevenueTimelineChart = () => factories['io.flow.internal.v0.models.order_revenue_timeline_chart']();
|
|
@@ -39236,10 +39350,14 @@ export const makeOrderTransactionDeleted = () => factories['io.flow.internal.v0.
|
|
|
39236
39350
|
export const makeOrderTransactionType = () => factories['io.flow.internal.v0.enums.order_transaction_type']();
|
|
39237
39351
|
export const makeOrderTransactionUpserted = () => factories['io.flow.internal.v0.models.order_transaction_upserted']();
|
|
39238
39352
|
export const makeOrderValidation = () => factories['io.flow.internal.v0.models.order_validation']();
|
|
39353
|
+
export const makeOrderValidationDeleted = () => factories['io.flow.internal.v0.models.order_validation_deleted']();
|
|
39239
39354
|
export const makeOrderValidationError = () => factories['io.flow.internal.v0.models.order_validation_error']();
|
|
39240
39355
|
export const makeOrderValidationFailure = () => factories['io.flow.internal.v0.models.order_validation_failure']();
|
|
39356
|
+
export const makeOrderValidationFailureDeleted = () => factories['io.flow.internal.v0.models.order_validation_failure_deleted']();
|
|
39241
39357
|
export const makeOrderValidationFailureSummary = () => factories['io.flow.internal.v0.models.order_validation_failure_summary']();
|
|
39358
|
+
export const makeOrderValidationFailureUpserted = () => factories['io.flow.internal.v0.models.order_validation_failure_upserted']();
|
|
39242
39359
|
export const makeOrderValidationStatus = () => factories['io.flow.internal.v0.enums.order_validation_status']();
|
|
39360
|
+
export const makeOrderValidationUpserted = () => factories['io.flow.internal.v0.models.order_validation_upserted']();
|
|
39243
39361
|
export const makeOrganizationAccount = () => factories['io.flow.internal.v0.models.organization_account']();
|
|
39244
39362
|
export const makeOrganizationAccountDeleted = () => factories['io.flow.internal.v0.models.organization_account_deleted']();
|
|
39245
39363
|
export const makeOrganizationAccountUpsertedV2 = () => factories['io.flow.internal.v0.models.organization_account_upserted_v2']();
|
|
@@ -39351,6 +39469,7 @@ export const makePaypalRefundDeleted = () => factories['io.flow.internal.v0.mode
|
|
|
39351
39469
|
export const makePaypalRefundUpserted = () => factories['io.flow.internal.v0.models.paypal_refund_upserted']();
|
|
39352
39470
|
export const makePendingBankPayment = () => factories['io.flow.internal.v0.models.pending_bank_payment']();
|
|
39353
39471
|
export const makePendingBankPaymentDetail = () => factories['io.flow.internal.v0.models.pending_bank_payment_detail']();
|
|
39472
|
+
export const makePendingOrder = () => factories['io.flow.internal.v0.models.pending_order']();
|
|
39354
39473
|
export const makePhraseClassified = () => factories['io.flow.internal.v0.models.phrase_classified']();
|
|
39355
39474
|
export const makePhrasePropagated = () => factories['io.flow.internal.v0.models.phrase_propagated']();
|
|
39356
39475
|
export const makePingRequestForm = () => factories['io.flow.internal.v0.models.ping_request_form']();
|
|
@@ -39416,7 +39535,6 @@ export const makeProofOfPostingFulfilled = () => factories['io.flow.internal.v0.
|
|
|
39416
39535
|
export const makeProofOfPostingOrderCancellation = () => factories['io.flow.internal.v0.models.proof_of_posting_order_cancellation']();
|
|
39417
39536
|
export const makeProofOfPostingOrderCombinedShipment = () => factories['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment']();
|
|
39418
39537
|
export const makeProofOfPostingShippingNotification = () => factories['io.flow.internal.v0.models.proof_of_posting_shipping_notification']();
|
|
39419
|
-
export const makeQueuedRecord = () => factories['io.flow.internal.v0.models.queued_record']();
|
|
39420
39538
|
export const makeQuote = () => factories['io.flow.internal.v0.models.quote']();
|
|
39421
39539
|
export const makeQuoteDeleted = () => factories['io.flow.internal.v0.models.quote_deleted']();
|
|
39422
39540
|
export const makeQuoteRequest = () => factories['io.flow.internal.v0.models.quote_request']();
|
|
@@ -39767,6 +39885,7 @@ export const makeSpotRateVersion = () => factories['io.flow.internal.v0.models.s
|
|
|
39767
39885
|
export const makeStandaloneAttachment = () => factories['io.flow.internal.v0.models.standalone_attachment']();
|
|
39768
39886
|
export const makeStandaloneAttachmentDeleted = () => factories['io.flow.internal.v0.models.standalone_attachment_deleted']();
|
|
39769
39887
|
export const makeStandaloneAttachmentUpserted = () => factories['io.flow.internal.v0.models.standalone_attachment_upserted']();
|
|
39888
|
+
export const makeStatementCreationMetadata = () => factories['io.flow.internal.v0.models.statement_creation_metadata']();
|
|
39770
39889
|
export const makeStatementStatus = () => factories['io.flow.internal.v0.enums.statement_status']();
|
|
39771
39890
|
export const makeStatementTransferTransactionLocation = () => factories['io.flow.internal.v0.enums.statement_transfer_transaction_location']();
|
|
39772
39891
|
export const makeStatisticType = () => factories['io.flow.internal.v0.enums.statistic_type']();
|
|
@@ -39826,10 +39945,12 @@ export const makeTariffEligibility = () => factories['io.flow.internal.v0.models
|
|
|
39826
39945
|
export const makeTariffEligibilityData = () => factories['io.flow.internal.v0.unions.tariff_eligibility_data']();
|
|
39827
39946
|
export const makeTariffEligibilityForm = () => factories['io.flow.internal.v0.unions.tariff_eligibility_form']();
|
|
39828
39947
|
export const makeTariffEligibilityType = () => factories['io.flow.internal.v0.enums.tariff_eligibility_type']();
|
|
39948
|
+
export const makeTask = () => factories['io.flow.internal.v0.models.task']();
|
|
39829
39949
|
export const makeTaskCount = () => factories['io.flow.internal.v0.models.task_count']();
|
|
39830
39950
|
export const makeTaskData = () => factories['io.flow.internal.v0.unions.task_data']();
|
|
39831
39951
|
export const makeTaskImport = () => factories['io.flow.internal.v0.models.task_import']();
|
|
39832
39952
|
export const makeTaskItemUpserted = () => factories['io.flow.internal.v0.models.task_item_upserted']();
|
|
39953
|
+
export const makeTaskMetadata = () => factories['io.flow.internal.v0.unions.task_metadata']();
|
|
39833
39954
|
export const makeTaskProcessQueuedEvent = () => factories['io.flow.internal.v0.models.task_process_queued_event']();
|
|
39834
39955
|
export const makeTaskProcessorKey = () => factories['io.flow.internal.v0.enums.task_processor_key']();
|
|
39835
39956
|
export const makeTaskSummarizeCode = () => factories['io.flow.internal.v0.models.task_summarize_code']();
|
|
@@ -39876,6 +39997,10 @@ export const makeTrackingLabelDeleted = () => factories['io.flow.internal.v0.mod
|
|
|
39876
39997
|
export const makeTrackingLabelEventDeletedV2 = () => factories['io.flow.internal.v0.models.tracking_label_event_deleted_v2']();
|
|
39877
39998
|
export const makeTrackingLabelEventUpsertedV2 = () => factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2']();
|
|
39878
39999
|
export const makeTrackingLabelUpserted = () => factories['io.flow.internal.v0.models.tracking_label_upserted']();
|
|
40000
|
+
export const makeTrackingProcessingError = () => factories['io.flow.internal.v0.models.tracking_processing_error']();
|
|
40001
|
+
export const makeTrackingProcessingErrorDeleted = () => factories['io.flow.internal.v0.models.tracking_processing_error_deleted']();
|
|
40002
|
+
export const makeTrackingProcessingErrorUpserted = () => factories['io.flow.internal.v0.models.tracking_processing_error_upserted']();
|
|
40003
|
+
export const makeTrackingProcessingFailureClassification = () => factories['io.flow.internal.v0.enums.tracking_processing_failure_classification']();
|
|
39879
40004
|
export const makeTrackingRequest = () => factories['io.flow.internal.v0.models.tracking_request']();
|
|
39880
40005
|
export const makeTrackingRequestUpserted = () => factories['io.flow.internal.v0.models.tracking_request_upserted']();
|
|
39881
40006
|
export const makeTrackingResponse = () => factories['io.flow.internal.v0.models.tracking_response']();
|