@flowio/api-internal-factories 0.0.133 → 0.0.134
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
|
@@ -14692,6 +14692,7 @@ var factories = {
|
|
|
14692
14692
|
updated_at: factories.date_time_iso_8601(),
|
|
14693
14693
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
14694
14694
|
taxonomy_data: arrayOf(function () { return factories['io.flow.product.v0.models.product_taxonomy_data'](); }),
|
|
14695
|
+
channel: factories.string(),
|
|
14695
14696
|
}); },
|
|
14696
14697
|
'io.flow.internal.v0.models.restriction_product_decision_form': function () { return ({
|
|
14697
14698
|
rule_decisions: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); }),
|
|
@@ -14797,7 +14798,6 @@ var factories = {
|
|
|
14797
14798
|
organization_id: factories.string(),
|
|
14798
14799
|
rule_id: factories.string(),
|
|
14799
14800
|
description: factories.string(),
|
|
14800
|
-
is_rule_exempt: factories.boolean(),
|
|
14801
14801
|
exempt_regions: arrayOf(function () { return factories.string(); }),
|
|
14802
14802
|
ignored_keywords: arrayOf(function () { return factories.string(); }),
|
|
14803
14803
|
additional_keywords: arrayOf(function () { return factories.string(); }),
|
package/dist/esm/api-internal.js
CHANGED
|
@@ -14650,6 +14650,7 @@ var factories = {
|
|
|
14650
14650
|
updated_at: factories.date_time_iso_8601(),
|
|
14651
14651
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
14652
14652
|
taxonomy_data: arrayOf(function () { return factories['io.flow.product.v0.models.product_taxonomy_data'](); }),
|
|
14653
|
+
channel: factories.string(),
|
|
14653
14654
|
}); },
|
|
14654
14655
|
'io.flow.internal.v0.models.restriction_product_decision_form': function () { return ({
|
|
14655
14656
|
rule_decisions: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_rule_decision_form'](); }),
|
|
@@ -14755,7 +14756,6 @@ var factories = {
|
|
|
14755
14756
|
organization_id: factories.string(),
|
|
14756
14757
|
rule_id: factories.string(),
|
|
14757
14758
|
description: factories.string(),
|
|
14758
|
-
is_rule_exempt: factories.boolean(),
|
|
14759
14759
|
exempt_regions: arrayOf(function () { return factories.string(); }),
|
|
14760
14760
|
ignored_keywords: arrayOf(function () { return factories.string(); }),
|
|
14761
14761
|
additional_keywords: arrayOf(function () { return factories.string(); }),
|
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.134",
|
|
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": "303d0c0519735bb00069173b130ffc2680e7f93b"
|
|
41
41
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -17065,6 +17065,7 @@ const factories = {
|
|
|
17065
17065
|
updated_at: factories.date_time_iso_8601(),
|
|
17066
17066
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
17067
17067
|
taxonomy_data: arrayOf(() => factories['io.flow.product.v0.models.product_taxonomy_data']()),
|
|
17068
|
+
channel: factories.string(),
|
|
17068
17069
|
}),
|
|
17069
17070
|
|
|
17070
17071
|
'io.flow.internal.v0.models.restriction_product_decision_form': (): io.flow.internal.v0.models.RestrictionProductDecisionForm => ({
|
|
@@ -17197,7 +17198,6 @@ const factories = {
|
|
|
17197
17198
|
organization_id: factories.string(),
|
|
17198
17199
|
rule_id: factories.string(),
|
|
17199
17200
|
description: factories.string(),
|
|
17200
|
-
is_rule_exempt: factories.boolean(),
|
|
17201
17201
|
exempt_regions: arrayOf(() => factories.string()),
|
|
17202
17202
|
ignored_keywords: arrayOf(() => factories.string()),
|
|
17203
17203
|
additional_keywords: arrayOf(() => factories.string()),
|