@flowio/api-prop-types 10.16.102 → 10.16.103
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/lib/api.d.ts +1 -0
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +1 -0
- package/src/api.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-prop-types",
|
|
3
|
-
"version": "10.16.
|
|
3
|
+
"version": "10.16.103",
|
|
4
4
|
"description": "PropType validators that work with Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prop-types": "^15.7.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "303d0c0519735bb00069173b130ffc2680e7f93b"
|
|
33
33
|
}
|
package/src/api.d.ts
CHANGED
|
@@ -7103,6 +7103,7 @@ declare namespace io.flow.v0.models {
|
|
|
7103
7103
|
readonly 'product_id': string;
|
|
7104
7104
|
readonly 'ge_organization_name': string;
|
|
7105
7105
|
readonly 'ge_shipping_origin_country'?: string;
|
|
7106
|
+
readonly 'product_url'?: string;
|
|
7106
7107
|
}
|
|
7107
7108
|
|
|
7108
7109
|
interface GeInputPrice {
|
package/src/api.js
CHANGED
|
@@ -6415,6 +6415,7 @@ T['io.flow.v0.models.ge_input_attributes'] = PropTypes.exact({
|
|
|
6415
6415
|
product_id: PropTypes.string.isRequired,
|
|
6416
6416
|
ge_organization_name: PropTypes.string.isRequired,
|
|
6417
6417
|
ge_shipping_origin_country: PropTypes.string,
|
|
6418
|
+
product_url: PropTypes.string,
|
|
6418
6419
|
});
|
|
6419
6420
|
|
|
6420
6421
|
T['io.flow.v0.models.ge_input_price'] = PropTypes.exact({
|