@slflows/sdk 0.10.0 → 0.12.0
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 +3 -8
- package/package.json +1 -1
package/dist/v1/index.d.ts
CHANGED
|
@@ -860,12 +860,7 @@ interface AppSignal {
|
|
|
860
860
|
name: string;
|
|
861
861
|
description: string;
|
|
862
862
|
sensitive?: boolean;
|
|
863
|
-
sensitivity?:
|
|
864
|
-
}
|
|
865
|
-
declare enum SignalSensitivity {
|
|
866
|
-
HideByDefault = "hide_by_default",
|
|
867
|
-
NeverShow = "never_show",
|
|
868
|
-
NotSensitive = "not_sensitive"
|
|
863
|
+
sensitivity?: "hide_by_default" | "never_show" | "not_sensitive";
|
|
869
864
|
}
|
|
870
865
|
interface AppHTTPComponent {
|
|
871
866
|
onRequest: (input: AppOnHTTPRequestInput) => Promise<void>;
|
|
@@ -1010,7 +1005,7 @@ interface AppBlockSignal {
|
|
|
1010
1005
|
name: string;
|
|
1011
1006
|
description: string;
|
|
1012
1007
|
sensitive?: boolean;
|
|
1013
|
-
sensitivity?:
|
|
1008
|
+
sensitivity?: "hide_by_default" | "never_show" | "not_sensitive";
|
|
1014
1009
|
}
|
|
1015
1010
|
interface AppBlockSchedule {
|
|
1016
1011
|
description?: string;
|
|
@@ -1253,5 +1248,5 @@ interface PopulateFrom {
|
|
|
1253
1248
|
outputProperty: string;
|
|
1254
1249
|
}
|
|
1255
1250
|
|
|
1256
|
-
export {
|
|
1251
|
+
export { blocks, defineApp, events, getInvocationMetadata, http, kv, lifecycle, messaging, timers, ui };
|
|
1257
1252
|
export type { AppBlock, AppBlockComponentInput, AppBlockComponentOutput, AppBlockConfigField, AppBlockHTTPComponent, AppBlockInputConfigField, 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, PopulateFrom, ScheduleDefinition, SuggestValuesInput, SuggestValuesOutput, SuggestedValue, Type, UIRequest };
|