@flowio/api-internal-factories 0.0.105 → 0.0.106
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
CHANGED
|
@@ -2193,6 +2193,8 @@ var factories = {
|
|
|
2193
2193
|
combined_shipment: factories.boolean(),
|
|
2194
2194
|
order_cancelled: factories.boolean(),
|
|
2195
2195
|
lvg: factories.boolean(),
|
|
2196
|
+
tax_inclusive: factories.boolean(),
|
|
2197
|
+
duty_inclusive: factories.boolean(),
|
|
2196
2198
|
}); },
|
|
2197
2199
|
'io.flow.billing.reporting.v0.models.reporting_fx': function () { return ({
|
|
2198
2200
|
shipping: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
@@ -7758,10 +7760,12 @@ var factories = {
|
|
|
7758
7760
|
'negative_balance_number_accounts',
|
|
7759
7761
|
'negative_balance_number_accounts_with_order_in_past_30_days',
|
|
7760
7762
|
'negative_balance_number_accounts_without_order_in_past_30_days',
|
|
7763
|
+
'negative_balance_number_active_accounts_with_balance_over_1000',
|
|
7761
7764
|
'negative_balance_total',
|
|
7762
7765
|
'negative_balance_total_with_order_in_past_30_days',
|
|
7763
7766
|
'negative_balance_total_without_order_in_past_30_days',
|
|
7764
7767
|
'negative_balance_single_account_max',
|
|
7768
|
+
'negative_balance_single_active_account_max',
|
|
7765
7769
|
'negative_balance_fee_total',
|
|
7766
7770
|
'accounts_with_payment_holds_count',
|
|
7767
7771
|
'accounts_with_payment_holds_pending_payment_promise_count',
|
package/dist/esm/api-internal.js
CHANGED
|
@@ -2150,6 +2150,8 @@ var factories = {
|
|
|
2150
2150
|
combined_shipment: factories.boolean(),
|
|
2151
2151
|
order_cancelled: factories.boolean(),
|
|
2152
2152
|
lvg: factories.boolean(),
|
|
2153
|
+
tax_inclusive: factories.boolean(),
|
|
2154
|
+
duty_inclusive: factories.boolean(),
|
|
2153
2155
|
}); },
|
|
2154
2156
|
'io.flow.billing.reporting.v0.models.reporting_fx': function () { return ({
|
|
2155
2157
|
shipping: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
@@ -7715,10 +7717,12 @@ var factories = {
|
|
|
7715
7717
|
'negative_balance_number_accounts',
|
|
7716
7718
|
'negative_balance_number_accounts_with_order_in_past_30_days',
|
|
7717
7719
|
'negative_balance_number_accounts_without_order_in_past_30_days',
|
|
7720
|
+
'negative_balance_number_active_accounts_with_balance_over_1000',
|
|
7718
7721
|
'negative_balance_total',
|
|
7719
7722
|
'negative_balance_total_with_order_in_past_30_days',
|
|
7720
7723
|
'negative_balance_total_without_order_in_past_30_days',
|
|
7721
7724
|
'negative_balance_single_account_max',
|
|
7725
|
+
'negative_balance_single_active_account_max',
|
|
7722
7726
|
'negative_balance_fee_total',
|
|
7723
7727
|
'accounts_with_payment_holds_count',
|
|
7724
7728
|
'accounts_with_payment_holds_pending_payment_promise_count',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.106",
|
|
4
4
|
"description": "Flow API internal mock data factories",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"@faker-js/faker": "^6.2.0",
|
|
38
38
|
"@flowio/api-types": "*"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "e2172791ebb0708545e2d68100656b52120f50e4"
|
|
41
41
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -2504,6 +2504,8 @@ const factories = {
|
|
|
2504
2504
|
combined_shipment: factories.boolean(),
|
|
2505
2505
|
order_cancelled: factories.boolean(),
|
|
2506
2506
|
lvg: factories.boolean(),
|
|
2507
|
+
tax_inclusive: factories.boolean(),
|
|
2508
|
+
duty_inclusive: factories.boolean(),
|
|
2507
2509
|
}),
|
|
2508
2510
|
|
|
2509
2511
|
'io.flow.billing.reporting.v0.models.reporting_fx': (): io.flow.billing.reporting.v0.models.ReportingFx => ({
|
|
@@ -9107,10 +9109,12 @@ const factories = {
|
|
|
9107
9109
|
'negative_balance_number_accounts',
|
|
9108
9110
|
'negative_balance_number_accounts_with_order_in_past_30_days',
|
|
9109
9111
|
'negative_balance_number_accounts_without_order_in_past_30_days',
|
|
9112
|
+
'negative_balance_number_active_accounts_with_balance_over_1000',
|
|
9110
9113
|
'negative_balance_total',
|
|
9111
9114
|
'negative_balance_total_with_order_in_past_30_days',
|
|
9112
9115
|
'negative_balance_total_without_order_in_past_30_days',
|
|
9113
9116
|
'negative_balance_single_account_max',
|
|
9117
|
+
'negative_balance_single_active_account_max',
|
|
9114
9118
|
'negative_balance_fee_total',
|
|
9115
9119
|
'accounts_with_payment_holds_count',
|
|
9116
9120
|
'accounts_with_payment_holds_pending_payment_promise_count',
|