@elevasis/sdk 0.9.4 → 0.9.6
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/cli.cjs +1 -1
- package/dist/index.d.ts +14 -0
- package/dist/worker/index.js +2 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -43891,7 +43891,7 @@ function wrapAction(commandName, fn) {
|
|
|
43891
43891
|
// package.json
|
|
43892
43892
|
var package_default = {
|
|
43893
43893
|
name: "@elevasis/sdk",
|
|
43894
|
-
version: "0.9.
|
|
43894
|
+
version: "0.9.6",
|
|
43895
43895
|
description: "SDK for building Elevasis organization resources",
|
|
43896
43896
|
type: "module",
|
|
43897
43897
|
bin: {
|
package/dist/index.d.ts
CHANGED
|
@@ -2180,6 +2180,8 @@ type Database = {
|
|
|
2180
2180
|
selected_action: string | null;
|
|
2181
2181
|
status: string;
|
|
2182
2182
|
target_execution_id: string | null;
|
|
2183
|
+
target_resource_id: string | null;
|
|
2184
|
+
target_resource_type: string | null;
|
|
2183
2185
|
};
|
|
2184
2186
|
Insert: {
|
|
2185
2187
|
action_payload?: Json | null;
|
|
@@ -2202,6 +2204,8 @@ type Database = {
|
|
|
2202
2204
|
selected_action?: string | null;
|
|
2203
2205
|
status?: string;
|
|
2204
2206
|
target_execution_id?: string | null;
|
|
2207
|
+
target_resource_id?: string | null;
|
|
2208
|
+
target_resource_type?: string | null;
|
|
2205
2209
|
};
|
|
2206
2210
|
Update: {
|
|
2207
2211
|
action_payload?: Json | null;
|
|
@@ -2224,6 +2228,8 @@ type Database = {
|
|
|
2224
2228
|
selected_action?: string | null;
|
|
2225
2229
|
status?: string;
|
|
2226
2230
|
target_execution_id?: string | null;
|
|
2231
|
+
target_resource_id?: string | null;
|
|
2232
|
+
target_resource_type?: string | null;
|
|
2227
2233
|
};
|
|
2228
2234
|
Relationships: [
|
|
2229
2235
|
{
|
|
@@ -6023,6 +6029,14 @@ type SchedulerToolMap = {
|
|
|
6023
6029
|
cancelledCount: number;
|
|
6024
6030
|
};
|
|
6025
6031
|
};
|
|
6032
|
+
cancelScheduleByIdempotencyKey: {
|
|
6033
|
+
params: {
|
|
6034
|
+
idempotencyKey: string;
|
|
6035
|
+
};
|
|
6036
|
+
result: {
|
|
6037
|
+
cancelled: boolean;
|
|
6038
|
+
};
|
|
6039
|
+
};
|
|
6026
6040
|
};
|
|
6027
6041
|
type StorageToolMap = {
|
|
6028
6042
|
upload: {
|
package/dist/worker/index.js
CHANGED
|
@@ -4926,7 +4926,8 @@ var scheduler = createAdapter("scheduler", [
|
|
|
4926
4926
|
"listSchedules",
|
|
4927
4927
|
"getSchedule",
|
|
4928
4928
|
"cancelSchedule",
|
|
4929
|
-
"cancelSchedulesByMetadata"
|
|
4929
|
+
"cancelSchedulesByMetadata",
|
|
4930
|
+
"cancelScheduleByIdempotencyKey"
|
|
4930
4931
|
]);
|
|
4931
4932
|
|
|
4932
4933
|
// src/worker/adapters/llm.ts
|