@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.
- package/dist/v1/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/v1/index.d.ts
CHANGED
|
@@ -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;
|