@platzio/sdk 0.5.0 → 0.5.1
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/api.ts +12 -0
- package/openapi.yaml +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3980,6 +3980,12 @@ export interface UiSchemaInput {
|
|
|
3980
3980
|
* @memberof UiSchemaInput
|
|
3981
3981
|
*/
|
|
3982
3982
|
'showIfAll'?: Array<UiSchemaFieldValuePair> | null;
|
|
3983
|
+
/**
|
|
3984
|
+
*
|
|
3985
|
+
* @type {any}
|
|
3986
|
+
* @memberof UiSchemaInput
|
|
3987
|
+
*/
|
|
3988
|
+
'showIf'?: any | null;
|
|
3983
3989
|
/**
|
|
3984
3990
|
*
|
|
3985
3991
|
* @type {Array<UiSchemaInputFieldValue>}
|
|
@@ -4059,6 +4065,12 @@ export interface UiSchemaInputAllOf {
|
|
|
4059
4065
|
* @memberof UiSchemaInputAllOf
|
|
4060
4066
|
*/
|
|
4061
4067
|
'showIfAll'?: Array<UiSchemaFieldValuePair> | null;
|
|
4068
|
+
/**
|
|
4069
|
+
*
|
|
4070
|
+
* @type {any}
|
|
4071
|
+
* @memberof UiSchemaInputAllOf
|
|
4072
|
+
*/
|
|
4073
|
+
'showIf'?: any | null;
|
|
4062
4074
|
/**
|
|
4063
4075
|
*
|
|
4064
4076
|
* @type {Array<UiSchemaInputFieldValue>}
|
package/openapi.yaml
CHANGED