@flowio/api-internal-prop-types 9.24.74 → 9.24.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-internal-prop-types",
3
- "version": "9.24.74",
3
+ "version": "9.24.75",
4
4
  "description": "PropType validators that work with internal Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -30,5 +30,5 @@
30
30
  "peerDependencies": {
31
31
  "prop-types": "^15.7.0"
32
32
  },
33
- "gitHead": "8ec8b535c64db79aa4a49bf6bd6eb53f46deee7d"
33
+ "gitHead": "f59548a63c0d54be400548738dd1771e26ae7462"
34
34
  }
@@ -26436,6 +26436,8 @@ declare namespace io.flow.internal.v0.models {
26436
26436
  readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
26437
26437
  readonly 'matching_positive_keywords': string[];
26438
26438
  readonly 'matching_negative_keywords': string[];
26439
+ readonly 'positive_search_matches'?: string[];
26440
+ readonly 'negative_search_matches'?: string[];
26439
26441
  readonly 'updated_by_user_id': string;
26440
26442
  }
26441
26443
 
@@ -27172,6 +27174,8 @@ declare namespace io.flow.internal.v0.models {
27172
27174
  readonly 'accepted_rules'?: string[];
27173
27175
  readonly 'positive_keywords'?: string[];
27174
27176
  readonly 'negative_keywords'?: string[];
27177
+ readonly 'positive_search_matches'?: string[];
27178
+ readonly 'negative_search_matches'?: string[];
27175
27179
  readonly 'user_ids'?: string[];
27176
27180
  readonly 'categories'?: string[];
27177
27181
  readonly 'product_name_query'?: string;
@@ -22921,6 +22921,8 @@ T['io.flow.internal.v0.models.product_restriction_rule_decision'] = PropTypes.ex
22921
22921
  status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
22922
22922
  matching_positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
22923
22923
  matching_negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
22924
+ positive_search_matches: PropTypes.arrayOf(PropTypes.string),
22925
+ negative_search_matches: PropTypes.arrayOf(PropTypes.string),
22924
22926
  updated_by_user_id: PropTypes.string.isRequired,
22925
22927
  });
22926
22928
 
@@ -32209,6 +32211,8 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
32209
32211
  accepted_rules: PropTypes.arrayOf(PropTypes.string),
32210
32212
  positive_keywords: PropTypes.arrayOf(PropTypes.string),
32211
32213
  negative_keywords: PropTypes.arrayOf(PropTypes.string),
32214
+ positive_search_matches: PropTypes.arrayOf(PropTypes.string),
32215
+ negative_search_matches: PropTypes.arrayOf(PropTypes.string),
32212
32216
  user_ids: PropTypes.arrayOf(PropTypes.string),
32213
32217
  categories: PropTypes.arrayOf(PropTypes.string),
32214
32218
  product_name_query: PropTypes.string,