@ductape/sdk 0.2.3 → 0.2.5

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.
@@ -281,6 +281,8 @@ export interface IAppActionResponseInfo {
281
281
  export interface KeyDescription {
282
282
  key: string;
283
283
  description: string;
284
+ required?: boolean;
285
+ defaultValue?: unknown;
284
286
  }
285
287
  export interface ISample extends IEntityData {
286
288
  type: InputsTypes;
@@ -85,7 +85,7 @@ export interface IParsedSample extends IParsedIndexes {
85
85
  decoratorPosition?: DecoratorPostions;
86
86
  type: DataTypes;
87
87
  parent_index?: number;
88
- defaultValue?: string | number | string | boolean;
88
+ defaultValue?: unknown;
89
89
  defaultType?: DefaultTypes;
90
90
  }
91
91
  export interface IParsedPayload {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ductape/sdk",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "sdk for building ductaped products",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",