@flowio/api-factories 0.0.73 → 0.0.74
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 +2 -1
- package/dist/esm/api.js +2 -1
- package/package.json +2 -2
- package/src/api.ts +2 -1
package/dist/cjs/api.js
CHANGED
|
@@ -3087,6 +3087,7 @@ var factories = {
|
|
|
3087
3087
|
'Knives',
|
|
3088
3088
|
'Liquids',
|
|
3089
3089
|
'Oversized',
|
|
3090
|
+
'Restrict by Default',
|
|
3090
3091
|
'Supplements',
|
|
3091
3092
|
'Weapon',
|
|
3092
3093
|
'Wood',
|
|
@@ -9617,7 +9618,7 @@ var factories = {
|
|
|
9617
9618
|
prohibited_regions: arrayOf(function () { return factories.string(); }),
|
|
9618
9619
|
review_status: factories['io.flow.v0.enums.review_status'](),
|
|
9619
9620
|
rules: arrayOf(function () { return factories['io.flow.v0.enums.product_restriction_rule'](); }),
|
|
9620
|
-
|
|
9621
|
+
updated_by: factories.string(),
|
|
9621
9622
|
}); },
|
|
9622
9623
|
'io.flow.v0.models.product_restriction_result_deleted': function () { return ({
|
|
9623
9624
|
discriminator: 'product_restriction_result_deleted',
|
package/dist/esm/api.js
CHANGED
|
@@ -3046,6 +3046,7 @@ var factories = {
|
|
|
3046
3046
|
'Knives',
|
|
3047
3047
|
'Liquids',
|
|
3048
3048
|
'Oversized',
|
|
3049
|
+
'Restrict by Default',
|
|
3049
3050
|
'Supplements',
|
|
3050
3051
|
'Weapon',
|
|
3051
3052
|
'Wood',
|
|
@@ -9576,7 +9577,7 @@ var factories = {
|
|
|
9576
9577
|
prohibited_regions: arrayOf(function () { return factories.string(); }),
|
|
9577
9578
|
review_status: factories['io.flow.v0.enums.review_status'](),
|
|
9578
9579
|
rules: arrayOf(function () { return factories['io.flow.v0.enums.product_restriction_rule'](); }),
|
|
9579
|
-
|
|
9580
|
+
updated_by: factories.string(),
|
|
9580
9581
|
}); },
|
|
9581
9582
|
'io.flow.v0.models.product_restriction_result_deleted': function () { return ({
|
|
9582
9583
|
discriminator: 'product_restriction_result_deleted',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.74",
|
|
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": "2430172d05199bd940ad6b8a39eaf47a9efcea8c"
|
|
40
40
|
}
|
package/src/api.ts
CHANGED
|
@@ -3456,6 +3456,7 @@ const factories = {
|
|
|
3456
3456
|
'Knives',
|
|
3457
3457
|
'Liquids',
|
|
3458
3458
|
'Oversized',
|
|
3459
|
+
'Restrict by Default',
|
|
3459
3460
|
'Supplements',
|
|
3460
3461
|
'Weapon',
|
|
3461
3462
|
'Wood',
|
|
@@ -11050,7 +11051,7 @@ const factories = {
|
|
|
11050
11051
|
prohibited_regions: arrayOf(() => factories.string()),
|
|
11051
11052
|
review_status: factories['io.flow.v0.enums.review_status'](),
|
|
11052
11053
|
rules: arrayOf(() => factories['io.flow.v0.enums.product_restriction_rule']()),
|
|
11053
|
-
|
|
11054
|
+
updated_by: factories.string(),
|
|
11054
11055
|
}),
|
|
11055
11056
|
|
|
11056
11057
|
'io.flow.v0.models.product_restriction_result_deleted': (): io.flow.v0.models.ProductRestrictionResultDeleted => ({
|