@slflows/sdk 0.6.1 → 0.6.2

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.
@@ -825,9 +825,9 @@ interface AppSchema {
825
825
  interface AppUIComponent {
826
826
  onRequest: (input: AppOnUIRequestInput) => Promise<any>;
827
827
  }
828
- type SimpleType = "string" | "number" | "boolean" | "any";
828
+ type SimpleType = "string" | "number" | "boolean" | "any" | "jsonSchemaObject";
829
829
  type SimpleTypeArray = [SimpleType];
830
- type JsonSchemaType = "string" | "number" | "boolean" | "object" | "array" | "integer" | "null";
830
+ type JsonSchemaType = "string" | "number" | "boolean" | "object" | "array" | "integer" | "null" | "jsonSchemaObject";
831
831
  interface JsonSchema {
832
832
  type?: JsonSchemaType;
833
833
  const?: string | number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slflows/sdk",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "files": [
5
5
  "dist"
6
6
  ],