@flowio/api-internal-prop-types 9.24.91 → 9.24.92

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.91",
3
+ "version": "9.24.92",
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": "92e35a5f134c649a116d30d3d3af55458f8afa4d"
33
+ "gitHead": "ff49ab933b35b85abe4cb678cd3e1d799b67cdcf"
34
34
  }
@@ -25703,6 +25703,7 @@ declare namespace io.flow.internal.v0.models {
25703
25703
  readonly 'categories': string[];
25704
25704
  readonly 'images': io.flow.catalog.v0.models.Image[];
25705
25705
  readonly 'thumbnails': io.flow.catalog.v0.models.Image[];
25706
+ readonly 'hs_code'?: string;
25706
25707
  readonly 'url'?: string;
25707
25708
  readonly 'reviews': io.flow.internal.v0.models.RestrictionItemReview[];
25708
25709
  readonly 'created_at': string;
@@ -26345,6 +26345,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
26345
26345
  categories: PropTypes.arrayOf(PropTypes.string).isRequired,
26346
26346
  images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
26347
26347
  thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
26348
+ hs_code: PropTypes.string,
26348
26349
  url: PropTypes.string,
26349
26350
  reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
26350
26351
  created_at: PropTypes.string.isRequired,