@parallelworks/client 7.106.0 → 7.108.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/types/api.d.ts +15 -1
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -16817,6 +16817,8 @@ export interface components {
|
|
|
16817
16817
|
/** @enum {string} */
|
|
16818
16818
|
status: "idle" | "running" | "awaiting_approval" | "live_elsewhere";
|
|
16819
16819
|
/** Format: date-time */
|
|
16820
|
+
turnStartedAt?: string;
|
|
16821
|
+
/** Format: date-time */
|
|
16820
16822
|
updatedAt: string;
|
|
16821
16823
|
workspace: string;
|
|
16822
16824
|
};
|
|
@@ -16843,6 +16845,8 @@ export interface components {
|
|
|
16843
16845
|
/** @enum {string} */
|
|
16844
16846
|
status: "idle" | "running" | "awaiting_approval" | "live_elsewhere";
|
|
16845
16847
|
/** Format: date-time */
|
|
16848
|
+
turnStartedAt?: string;
|
|
16849
|
+
/** Format: date-time */
|
|
16846
16850
|
updatedAt: string;
|
|
16847
16851
|
workspace: string;
|
|
16848
16852
|
workspaceUntrusted?: boolean;
|
|
@@ -19892,7 +19896,9 @@ export interface components {
|
|
|
19892
19896
|
reservationId?: string;
|
|
19893
19897
|
suspendTime?: number;
|
|
19894
19898
|
tier1?: boolean;
|
|
19899
|
+
useNodeGroup?: boolean;
|
|
19895
19900
|
usePlacementGroup?: boolean;
|
|
19901
|
+
workloadPolicy?: boolean;
|
|
19896
19902
|
zone?: string;
|
|
19897
19903
|
zones?: string[] | null;
|
|
19898
19904
|
};
|
|
@@ -19937,6 +19943,10 @@ export interface components {
|
|
|
19937
19943
|
createdAt?: string;
|
|
19938
19944
|
/** @description The cloud provider's identifier for the node */
|
|
19939
19945
|
cspId?: string;
|
|
19946
|
+
/** @description Why the node failed, as one of our own causes (e.g. capacity_not_granted) */
|
|
19947
|
+
failureCause?: string;
|
|
19948
|
+
/** @description The cloud provider's own explanation for the failure */
|
|
19949
|
+
failureMessage?: string;
|
|
19940
19950
|
/** @description The node ID */
|
|
19941
19951
|
id: string;
|
|
19942
19952
|
/** @description The node hostname */
|
|
@@ -20044,7 +20054,9 @@ export interface components {
|
|
|
20044
20054
|
reservationId?: string;
|
|
20045
20055
|
suspendTime?: number;
|
|
20046
20056
|
tier1?: boolean;
|
|
20057
|
+
useNodeGroup?: boolean;
|
|
20047
20058
|
usePlacementGroup?: boolean;
|
|
20059
|
+
workloadPolicy?: boolean;
|
|
20048
20060
|
zone?: string;
|
|
20049
20061
|
zones?: string[] | null;
|
|
20050
20062
|
};
|
|
@@ -23118,7 +23130,9 @@ export interface components {
|
|
|
23118
23130
|
reservationId?: string;
|
|
23119
23131
|
suspendTime?: number;
|
|
23120
23132
|
tier1?: boolean;
|
|
23133
|
+
useNodeGroup?: boolean;
|
|
23121
23134
|
usePlacementGroup?: boolean;
|
|
23135
|
+
workloadPolicy?: boolean;
|
|
23122
23136
|
zone?: string;
|
|
23123
23137
|
zones?: string[] | null;
|
|
23124
23138
|
};
|
|
@@ -36705,7 +36719,7 @@ export interface operations {
|
|
|
36705
36719
|
listAIChatConversations: {
|
|
36706
36720
|
parameters: {
|
|
36707
36721
|
query?: {
|
|
36708
|
-
/** @description Max conversations to return */
|
|
36722
|
+
/** @description Max conversations to return (1-100) */
|
|
36709
36723
|
limit?: number;
|
|
36710
36724
|
/** @description Pagination offset */
|
|
36711
36725
|
offset?: number;
|