@runtypelabs/sdk 4.0.3 → 4.0.4
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/index.d.cts +19 -1
- package/dist/index.d.ts +19 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -709,6 +709,12 @@ interface paths {
|
|
|
709
709
|
seed?: number;
|
|
710
710
|
systemPrompt?: string;
|
|
711
711
|
temperature?: number;
|
|
712
|
+
temporal?: {
|
|
713
|
+
elapsedThresholdSeconds?: number;
|
|
714
|
+
groundNow?: boolean;
|
|
715
|
+
injectElapsed?: boolean;
|
|
716
|
+
timezone?: string;
|
|
717
|
+
};
|
|
712
718
|
tools?: {
|
|
713
719
|
approval?: {
|
|
714
720
|
require: string[] | boolean;
|
|
@@ -1354,6 +1360,12 @@ interface paths {
|
|
|
1354
1360
|
seed?: number;
|
|
1355
1361
|
systemPrompt?: string;
|
|
1356
1362
|
temperature?: number;
|
|
1363
|
+
temporal?: {
|
|
1364
|
+
elapsedThresholdSeconds?: number;
|
|
1365
|
+
groundNow?: boolean;
|
|
1366
|
+
injectElapsed?: boolean;
|
|
1367
|
+
timezone?: string;
|
|
1368
|
+
};
|
|
1357
1369
|
tools?: {
|
|
1358
1370
|
approval?: {
|
|
1359
1371
|
require: string[] | boolean;
|
|
@@ -13655,6 +13667,7 @@ interface paths {
|
|
|
13655
13667
|
status: string;
|
|
13656
13668
|
subject: string | null;
|
|
13657
13669
|
surfaceId: string;
|
|
13670
|
+
timezone: string | null;
|
|
13658
13671
|
updatedAt: string;
|
|
13659
13672
|
} & {
|
|
13660
13673
|
[key: string]: unknown;
|
|
@@ -13735,6 +13748,7 @@ interface paths {
|
|
|
13735
13748
|
status?: "open" | "closed" | "archived";
|
|
13736
13749
|
subject?: string;
|
|
13737
13750
|
surfaceId: string;
|
|
13751
|
+
timezone?: string | null;
|
|
13738
13752
|
};
|
|
13739
13753
|
};
|
|
13740
13754
|
};
|
|
@@ -13768,6 +13782,7 @@ interface paths {
|
|
|
13768
13782
|
type: string | null;
|
|
13769
13783
|
};
|
|
13770
13784
|
surfaceId: string;
|
|
13785
|
+
timezone: string | null;
|
|
13771
13786
|
updatedAt: string;
|
|
13772
13787
|
} & {
|
|
13773
13788
|
[key: string]: unknown;
|
|
@@ -13869,6 +13884,7 @@ interface paths {
|
|
|
13869
13884
|
type: string | null;
|
|
13870
13885
|
};
|
|
13871
13886
|
surfaceId: string;
|
|
13887
|
+
timezone: string | null;
|
|
13872
13888
|
updatedAt: string;
|
|
13873
13889
|
} & {
|
|
13874
13890
|
[key: string]: unknown;
|
|
@@ -13945,6 +13961,7 @@ interface paths {
|
|
|
13945
13961
|
/** @enum {string} */
|
|
13946
13962
|
status?: "open" | "closed" | "archived";
|
|
13947
13963
|
subject?: string;
|
|
13964
|
+
timezone?: string | null;
|
|
13948
13965
|
};
|
|
13949
13966
|
};
|
|
13950
13967
|
};
|
|
@@ -13978,6 +13995,7 @@ interface paths {
|
|
|
13978
13995
|
type: string | null;
|
|
13979
13996
|
};
|
|
13980
13997
|
surfaceId: string;
|
|
13998
|
+
timezone: string | null;
|
|
13981
13999
|
updatedAt: string;
|
|
13982
14000
|
} & {
|
|
13983
14001
|
[key: string]: unknown;
|
|
@@ -33001,7 +33019,7 @@ interface TransformDataStepConfig$1 {
|
|
|
33001
33019
|
interface SetVariableStepConfig$1 {
|
|
33002
33020
|
name: string;
|
|
33003
33021
|
variableName: string;
|
|
33004
|
-
value: string | number | boolean | object;
|
|
33022
|
+
value: string | number | boolean | null | object;
|
|
33005
33023
|
enabled?: boolean;
|
|
33006
33024
|
/** JavaScript predicate evaluated at runtime. If falsy, the step is skipped. */
|
|
33007
33025
|
when?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -709,6 +709,12 @@ interface paths {
|
|
|
709
709
|
seed?: number;
|
|
710
710
|
systemPrompt?: string;
|
|
711
711
|
temperature?: number;
|
|
712
|
+
temporal?: {
|
|
713
|
+
elapsedThresholdSeconds?: number;
|
|
714
|
+
groundNow?: boolean;
|
|
715
|
+
injectElapsed?: boolean;
|
|
716
|
+
timezone?: string;
|
|
717
|
+
};
|
|
712
718
|
tools?: {
|
|
713
719
|
approval?: {
|
|
714
720
|
require: string[] | boolean;
|
|
@@ -1354,6 +1360,12 @@ interface paths {
|
|
|
1354
1360
|
seed?: number;
|
|
1355
1361
|
systemPrompt?: string;
|
|
1356
1362
|
temperature?: number;
|
|
1363
|
+
temporal?: {
|
|
1364
|
+
elapsedThresholdSeconds?: number;
|
|
1365
|
+
groundNow?: boolean;
|
|
1366
|
+
injectElapsed?: boolean;
|
|
1367
|
+
timezone?: string;
|
|
1368
|
+
};
|
|
1357
1369
|
tools?: {
|
|
1358
1370
|
approval?: {
|
|
1359
1371
|
require: string[] | boolean;
|
|
@@ -13655,6 +13667,7 @@ interface paths {
|
|
|
13655
13667
|
status: string;
|
|
13656
13668
|
subject: string | null;
|
|
13657
13669
|
surfaceId: string;
|
|
13670
|
+
timezone: string | null;
|
|
13658
13671
|
updatedAt: string;
|
|
13659
13672
|
} & {
|
|
13660
13673
|
[key: string]: unknown;
|
|
@@ -13735,6 +13748,7 @@ interface paths {
|
|
|
13735
13748
|
status?: "open" | "closed" | "archived";
|
|
13736
13749
|
subject?: string;
|
|
13737
13750
|
surfaceId: string;
|
|
13751
|
+
timezone?: string | null;
|
|
13738
13752
|
};
|
|
13739
13753
|
};
|
|
13740
13754
|
};
|
|
@@ -13768,6 +13782,7 @@ interface paths {
|
|
|
13768
13782
|
type: string | null;
|
|
13769
13783
|
};
|
|
13770
13784
|
surfaceId: string;
|
|
13785
|
+
timezone: string | null;
|
|
13771
13786
|
updatedAt: string;
|
|
13772
13787
|
} & {
|
|
13773
13788
|
[key: string]: unknown;
|
|
@@ -13869,6 +13884,7 @@ interface paths {
|
|
|
13869
13884
|
type: string | null;
|
|
13870
13885
|
};
|
|
13871
13886
|
surfaceId: string;
|
|
13887
|
+
timezone: string | null;
|
|
13872
13888
|
updatedAt: string;
|
|
13873
13889
|
} & {
|
|
13874
13890
|
[key: string]: unknown;
|
|
@@ -13945,6 +13961,7 @@ interface paths {
|
|
|
13945
13961
|
/** @enum {string} */
|
|
13946
13962
|
status?: "open" | "closed" | "archived";
|
|
13947
13963
|
subject?: string;
|
|
13964
|
+
timezone?: string | null;
|
|
13948
13965
|
};
|
|
13949
13966
|
};
|
|
13950
13967
|
};
|
|
@@ -13978,6 +13995,7 @@ interface paths {
|
|
|
13978
13995
|
type: string | null;
|
|
13979
13996
|
};
|
|
13980
13997
|
surfaceId: string;
|
|
13998
|
+
timezone: string | null;
|
|
13981
13999
|
updatedAt: string;
|
|
13982
14000
|
} & {
|
|
13983
14001
|
[key: string]: unknown;
|
|
@@ -33001,7 +33019,7 @@ interface TransformDataStepConfig$1 {
|
|
|
33001
33019
|
interface SetVariableStepConfig$1 {
|
|
33002
33020
|
name: string;
|
|
33003
33021
|
variableName: string;
|
|
33004
|
-
value: string | number | boolean | object;
|
|
33022
|
+
value: string | number | boolean | null | object;
|
|
33005
33023
|
enabled?: boolean;
|
|
33006
33024
|
/** JavaScript predicate evaluated at runtime. If falsy, the step is skipped. */
|
|
33007
33025
|
when?: string;
|
package/package.json
CHANGED