@slflows/sdk 0.6.0 → 0.6.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/dist/v1/index.d.ts +4 -1
- package/package.json +5 -5
package/dist/v1/index.d.ts
CHANGED
|
@@ -830,6 +830,8 @@ type SimpleTypeArray = [SimpleType];
|
|
|
830
830
|
type JsonSchemaType = "string" | "number" | "boolean" | "object" | "array" | "integer" | "null";
|
|
831
831
|
interface JsonSchema {
|
|
832
832
|
type?: JsonSchemaType;
|
|
833
|
+
const?: string | number;
|
|
834
|
+
title?: string;
|
|
833
835
|
properties?: Record<string, JsonSchema>;
|
|
834
836
|
items?: JsonSchema;
|
|
835
837
|
required?: string[];
|
|
@@ -1155,4 +1157,5 @@ interface UIRequest {
|
|
|
1155
1157
|
payload?: any;
|
|
1156
1158
|
}
|
|
1157
1159
|
|
|
1158
|
-
export {
|
|
1160
|
+
export { blocks, defineApp, events, getInvocationMetadata, http, kv, lifecycle, messaging, timers, ui };
|
|
1161
|
+
export type { AppBlock, AppBlockComponentInput, AppBlockComponentOutput, AppBlockConfigField, AppBlockHTTPComponent, AppBlockSchedule, AppBlockSignal, AppBlockUIComponent, AppConfigField, AppContext, AppHTTPComponent, AppHTTPEndpoint, AppInput, AppLifecycleCallbackOutput, AppLifecycleStatus, AppOnCreateOutput, AppOnHTTPRequestInput, AppOnInternalMessageInput, AppOnTimerInput, AppOnTriggerInput, AppOnUIRequestInput, AppSchedule, AppSchema, AppSignal, AppUIComponent, EntityContext, EntityHTTPEndpoint, EntityInput, EntityLifecycleCallbackOutput, EntityLifecycleComponent, EntityLifecycleStatus, EntityOnHTTPRequestInput, EntityOnInternalMessageInput, EntityOnTimerInput, EntityOnTriggerInput, EntityOnUIRequestInput, EntityOutput, EntityView, EntityViewType, EventContext, EventInput, HTTPRequest, JsonSchema, ScheduleDefinition, Type, UIRequest };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slflows/sdk",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"./v1": "./dist/v1/index.d.ts"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"pkgroll": "^2.
|
|
13
|
-
"rollup": "^4.
|
|
14
|
-
"rollup-plugin-dts": "^6.
|
|
15
|
-
"typescript": "^5.
|
|
12
|
+
"pkgroll": "^2.21.4",
|
|
13
|
+
"rollup": "^4.53.3",
|
|
14
|
+
"rollup-plugin-dts": "^6.3.0",
|
|
15
|
+
"typescript": "^5.9.3"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "tsc && rollup -c && pkgroll --clean-dist --src types"
|