@flowio/types 11.24.75 → 11.24.76
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/api-internal.d.ts +4 -0
- package/package.json +2 -2
- package/src/api-internal.ts +4 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -22954,6 +22954,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22954
22954
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
22955
22955
|
readonly matching_positive_keywords: string[];
|
|
22956
22956
|
readonly matching_negative_keywords: string[];
|
|
22957
|
+
readonly positive_search_matches?: string[];
|
|
22958
|
+
readonly negative_search_matches?: string[];
|
|
22957
22959
|
readonly updated_by_user_id: string;
|
|
22958
22960
|
}
|
|
22959
22961
|
interface ProductRestrictionRuleDecisionDeleted {
|
|
@@ -23593,6 +23595,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23593
23595
|
readonly accepted_rules?: string[];
|
|
23594
23596
|
readonly positive_keywords?: string[];
|
|
23595
23597
|
readonly negative_keywords?: string[];
|
|
23598
|
+
readonly positive_search_matches?: string[];
|
|
23599
|
+
readonly negative_search_matches?: string[];
|
|
23596
23600
|
readonly user_ids?: string[];
|
|
23597
23601
|
readonly categories?: string[];
|
|
23598
23602
|
readonly product_name_query?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.76",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "f59548a63c0d54be400548738dd1771e26ae7462"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -29656,6 +29656,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29656
29656
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
29657
29657
|
readonly matching_positive_keywords: string[];
|
|
29658
29658
|
readonly matching_negative_keywords: string[];
|
|
29659
|
+
readonly positive_search_matches?: string[];
|
|
29660
|
+
readonly negative_search_matches?: string[];
|
|
29659
29661
|
readonly updated_by_user_id: string;
|
|
29660
29662
|
}
|
|
29661
29663
|
|
|
@@ -30392,6 +30394,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30392
30394
|
readonly accepted_rules?: string[];
|
|
30393
30395
|
readonly positive_keywords?: string[];
|
|
30394
30396
|
readonly negative_keywords?: string[];
|
|
30397
|
+
readonly positive_search_matches?: string[];
|
|
30398
|
+
readonly negative_search_matches?: string[];
|
|
30395
30399
|
readonly user_ids?: string[];
|
|
30396
30400
|
readonly categories?: string[];
|
|
30397
30401
|
readonly product_name_query?: string;
|