@flowio/api-factories 0.0.74 → 0.0.75
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.js +1 -0
- package/dist/esm/api.js +1 -0
- package/package.json +2 -2
- package/src/api.ts +1 -0
package/dist/cjs/api.js
CHANGED
|
@@ -2799,6 +2799,7 @@ var factories = {
|
|
|
2799
2799
|
'street_address_is_po_box_3pl',
|
|
2800
2800
|
'business_street_address_is_blank',
|
|
2801
2801
|
'business_street_address_is_po_box',
|
|
2802
|
+
'exception_merchant',
|
|
2802
2803
|
]); },
|
|
2803
2804
|
'io.flow.v0.enums.onboarding_trade_sector': function () { return faker_1.default.helpers.arrayElement([
|
|
2804
2805
|
'accessories',
|
package/dist/esm/api.js
CHANGED
|
@@ -2758,6 +2758,7 @@ var factories = {
|
|
|
2758
2758
|
'street_address_is_po_box_3pl',
|
|
2759
2759
|
'business_street_address_is_blank',
|
|
2760
2760
|
'business_street_address_is_po_box',
|
|
2761
|
+
'exception_merchant',
|
|
2761
2762
|
]); },
|
|
2762
2763
|
'io.flow.v0.enums.onboarding_trade_sector': function () { return faker.helpers.arrayElement([
|
|
2763
2764
|
'accessories',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.75",
|
|
4
4
|
"description": "Flow API mock data factories",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"@faker-js/faker": "^6.2.0",
|
|
37
37
|
"@flowio/api-types": "*"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "7fddfd86678e7921d92493bec5b3bec759769d5f"
|
|
40
40
|
}
|
package/src/api.ts
CHANGED
|
@@ -3143,6 +3143,7 @@ const factories = {
|
|
|
3143
3143
|
'street_address_is_po_box_3pl',
|
|
3144
3144
|
'business_street_address_is_blank',
|
|
3145
3145
|
'business_street_address_is_po_box',
|
|
3146
|
+
'exception_merchant',
|
|
3146
3147
|
]),
|
|
3147
3148
|
|
|
3148
3149
|
'io.flow.v0.enums.onboarding_trade_sector': (): io.flow.v0.enums.OnboardingTradeSector => faker.helpers.arrayElement([
|