@flowio/api-prop-types 10.16.69 → 10.16.70
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.70",
|
|
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": "2bd18d938f840ec2fa147fa4651350a1bb75b33a"
|
|
33
33
|
}
|
package/src/api.d.ts
CHANGED
|
@@ -7274,6 +7274,7 @@ declare namespace io.flow.v0.models {
|
|
|
7274
7274
|
readonly 'discriminator': 'merchant_rejected';
|
|
7275
7275
|
readonly 'reason': io.flow.v0.enums.MerchantRejectedReason;
|
|
7276
7276
|
readonly 'description'?: string;
|
|
7277
|
+
readonly 'deactivate_at'?: string;
|
|
7277
7278
|
}
|
|
7278
7279
|
|
|
7279
7280
|
interface Money {
|
package/src/api.js
CHANGED
|
@@ -4810,6 +4810,7 @@ T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
|
4810
4810
|
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
4811
4811
|
reason: T['io.flow.v0.enums.merchant_rejected_reason'].isRequired,
|
|
4812
4812
|
description: PropTypes.string,
|
|
4813
|
+
deactivate_at: PropTypes.string,
|
|
4813
4814
|
});
|
|
4814
4815
|
|
|
4815
4816
|
T['io.flow.v0.unions.onboarding_state'] = PropTypes.oneOfType([
|