@parallelworks/client 7.104.0 → 7.105.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.
Files changed (2) hide show
  1. package/dist/types/api.d.ts +629 -9
  2. package/package.json +1 -1
@@ -150,6 +150,138 @@ export interface paths {
150
150
  patch?: never;
151
151
  trace?: never;
152
152
  };
153
+ "/api/admin/billing/realtime-accuracy": {
154
+ parameters: {
155
+ query?: never;
156
+ header?: never;
157
+ path?: never;
158
+ cookie?: never;
159
+ };
160
+ /**
161
+ * Get realtime estimator accuracy summary
162
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
163
+ *
164
+ * Returns per-CSP accuracy of the flexA realtime cost estimator against invoiced costs, from a periodically refreshed view. Requires platform admin or billing admin.
165
+ */
166
+ get: operations["get-realtime-accuracy-summary"];
167
+ put?: never;
168
+ post?: never;
169
+ delete?: never;
170
+ options?: never;
171
+ head?: never;
172
+ patch?: never;
173
+ trace?: never;
174
+ };
175
+ "/api/admin/billing/realtime-accuracy/categories": {
176
+ parameters: {
177
+ query?: never;
178
+ header?: never;
179
+ path?: never;
180
+ cookie?: never;
181
+ };
182
+ /**
183
+ * Get realtime estimator accuracy by category
184
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
185
+ *
186
+ * Returns estimator accuracy per CSP, cost type and subtype. Requires platform admin or billing admin.
187
+ */
188
+ get: operations["get-realtime-accuracy-categories"];
189
+ put?: never;
190
+ post?: never;
191
+ delete?: never;
192
+ options?: never;
193
+ head?: never;
194
+ patch?: never;
195
+ trace?: never;
196
+ };
197
+ "/api/admin/billing/realtime-accuracy/export": {
198
+ parameters: {
199
+ query?: never;
200
+ header?: never;
201
+ path?: never;
202
+ cookie?: never;
203
+ };
204
+ /**
205
+ * Export realtime estimator accuracy data
206
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
207
+ *
208
+ * Downloads the accuracy data with its definitions and a code map, as a Markdown report or as JSON. Requires platform admin or billing admin.
209
+ */
210
+ get: operations["export-realtime-accuracy"];
211
+ put?: never;
212
+ post?: never;
213
+ delete?: never;
214
+ options?: never;
215
+ head?: never;
216
+ patch?: never;
217
+ trace?: never;
218
+ };
219
+ "/api/admin/billing/realtime-accuracy/outliers": {
220
+ parameters: {
221
+ query?: never;
222
+ header?: never;
223
+ path?: never;
224
+ cookie?: never;
225
+ };
226
+ /**
227
+ * Get realtime estimator accuracy outliers
228
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
229
+ *
230
+ * Returns the deployment-days where the realtime estimate missed the invoice by the most. Requires platform admin or billing admin.
231
+ */
232
+ get: operations["get-realtime-accuracy-outliers"];
233
+ put?: never;
234
+ post?: never;
235
+ delete?: never;
236
+ options?: never;
237
+ head?: never;
238
+ patch?: never;
239
+ trace?: never;
240
+ };
241
+ "/api/admin/billing/realtime-accuracy/refresh": {
242
+ parameters: {
243
+ query?: never;
244
+ header?: never;
245
+ path?: never;
246
+ cookie?: never;
247
+ };
248
+ get?: never;
249
+ put?: never;
250
+ /**
251
+ * Rebuild realtime estimator accuracy data
252
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
253
+ *
254
+ * Starts a background rebuild of the realtime accuracy view. Responds 409 while a rebuild is already running. Requires platform admin or billing admin.
255
+ */
256
+ post: operations["refresh-realtime-accuracy"];
257
+ delete?: never;
258
+ options?: never;
259
+ head?: never;
260
+ patch?: never;
261
+ trace?: never;
262
+ };
263
+ "/api/admin/billing/realtime-accuracy/trend": {
264
+ parameters: {
265
+ query?: never;
266
+ header?: never;
267
+ path?: never;
268
+ cookie?: never;
269
+ };
270
+ /**
271
+ * Get realtime estimator accuracy trend
272
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
273
+ *
274
+ * Returns the daily estimate-to-invoice ratio per CSP. Requires platform admin or billing admin.
275
+ */
276
+ get: operations["get-realtime-accuracy-trend"];
277
+ put?: never;
278
+ post?: never;
279
+ delete?: never;
280
+ options?: never;
281
+ head?: never;
282
+ patch?: never;
283
+ trace?: never;
284
+ };
153
285
  "/api/admin/billing/runs": {
154
286
  parameters: {
155
287
  query?: never;
@@ -15448,6 +15580,28 @@ export interface paths {
15448
15580
  patch?: never;
15449
15581
  trace?: never;
15450
15582
  };
15583
+ "/api/workflow-runs/{slug}/running-steps": {
15584
+ parameters: {
15585
+ query?: never;
15586
+ header?: never;
15587
+ path?: never;
15588
+ cookie?: never;
15589
+ };
15590
+ /**
15591
+ * Get Workflow Run Running Steps
15592
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
15593
+ *
15594
+ * Reads where each running job of a workflow run has got to.
15595
+ */
15596
+ get: operations["get-workflow-run-running-steps"];
15597
+ put?: never;
15598
+ post?: never;
15599
+ delete?: never;
15600
+ options?: never;
15601
+ head?: never;
15602
+ patch?: never;
15603
+ trace?: never;
15604
+ };
15451
15605
  "/api/workflow-variables": {
15452
15606
  parameters: {
15453
15607
  query?: never;
@@ -20728,7 +20882,10 @@ export interface components {
20728
20882
  yaml?: string;
20729
20883
  };
20730
20884
  CreateWorkflowRunOutputBody: {
20885
+ /** @description Name of the session to open once the run starts. */
20731
20886
  redirect?: string;
20887
+ /** @description Key into the run's links of the link to open once it resolves. */
20888
+ redirectLink?: string;
20732
20889
  run: components["schemas"]["WorkflowRunResponse"];
20733
20890
  };
20734
20891
  CreateWorkflowSavedInputsInputBody: {
@@ -24113,6 +24270,10 @@ export interface components {
24113
24270
  };
24114
24271
  ListAttachmentsBody: {
24115
24272
  attachments: components["schemas"]["AttachmentResponse"][] | null;
24273
+ /** @description Whether another page follows */
24274
+ hasMore: boolean;
24275
+ /** @description Pass as cursor to read the next page */
24276
+ nextCursor?: string;
24116
24277
  };
24117
24278
  ListConversationsBody: {
24118
24279
  conversations: components["schemas"]["ConversationSummary"][] | null;
@@ -24238,7 +24399,14 @@ export interface components {
24238
24399
  };
24239
24400
  ListUserAttachmentsBody: {
24240
24401
  attachments: components["schemas"]["AttachmentResponse"][] | null;
24241
- /** Format: int64 */
24402
+ /** @description Whether another page follows */
24403
+ hasMore: boolean;
24404
+ /** @description Pass as cursor to read the next page */
24405
+ nextCursor?: string;
24406
+ /**
24407
+ * Format: int64
24408
+ * @description Matching attachments, capped at 10000
24409
+ */
24242
24410
  total: number;
24243
24411
  };
24244
24412
  ListUserThumbnailsOutputBody: {
@@ -28954,6 +29122,192 @@ export interface components {
28954
29122
  /** @description Zones whose project offers an IRDMA (Falcon) network profile. */
28955
29123
  zones: string[] | null;
28956
29124
  };
29125
+ RealtimeAccuracyCategoryRow: {
29126
+ /** @description Cloud service provider */
29127
+ csp: string;
29128
+ /**
29129
+ * Format: double
29130
+ * @description Sum of estimates
29131
+ */
29132
+ estimated: number;
29133
+ /**
29134
+ * Format: double
29135
+ * @description Sum of prorated invoice amounts
29136
+ */
29137
+ invoiced: number;
29138
+ /**
29139
+ * Format: int64
29140
+ * @description Deployment-day keys
29141
+ */
29142
+ keys: number;
29143
+ /**
29144
+ * Format: double
29145
+ * @description Median per-key ratio over measurable keys
29146
+ */
29147
+ medianRatio: number | null;
29148
+ /**
29149
+ * Format: int64
29150
+ * @description Keys with an estimate but no invoice line
29151
+ */
29152
+ noInvoiceLine: number;
29153
+ /**
29154
+ * Format: double
29155
+ * @description Estimated divided by invoiced; null without a measurable invoice
29156
+ */
29157
+ ratio: number | null;
29158
+ /** @description Cost subtype */
29159
+ subtype: string;
29160
+ /** @description Cost type */
29161
+ type: string;
29162
+ /**
29163
+ * Format: double
29164
+ * @description Percentage of measurable keys whose ratio is within 0.9 to 1.1
29165
+ */
29166
+ withinTenPct: number | null;
29167
+ };
29168
+ RealtimeAccuracyOutlier: {
29169
+ /** @description Cloud service provider */
29170
+ csp: string;
29171
+ /** @description Calendar day, YYYY-MM-DD */
29172
+ day: string;
29173
+ /** @description Deployment the estimate was attributed to */
29174
+ deploymentId: string;
29175
+ /**
29176
+ * Format: double
29177
+ * @description Estimated minus prorated invoice
29178
+ */
29179
+ error: number;
29180
+ /**
29181
+ * Format: double
29182
+ * @description Estimate for the key
29183
+ */
29184
+ estimated: number;
29185
+ /**
29186
+ * Format: double
29187
+ * @description Full-day invoice amount; null when no invoice line exists
29188
+ */
29189
+ invoiced: number | null;
29190
+ /**
29191
+ * Format: double
29192
+ * @description Invoice amount prorated to the estimated hours
29193
+ */
29194
+ invoicedProrated: number | null;
29195
+ /**
29196
+ * Format: double
29197
+ * @description Estimated divided by prorated invoice; null without a measurable invoice
29198
+ */
29199
+ ratio: number | null;
29200
+ /** @description The estimate came from a reprocess */
29201
+ reprocessed: boolean;
29202
+ /** @description One of the resources behind the estimate */
29203
+ resourceName: string | null;
29204
+ /** @description Cost subtype */
29205
+ subtype: string;
29206
+ /** @description Cost type */
29207
+ type: string;
29208
+ };
29209
+ RealtimeAccuracySummary: {
29210
+ /**
29211
+ * Format: int64
29212
+ * @description How long the last successful rebuild took
29213
+ */
29214
+ durationMs: number | null;
29215
+ /** @description Error from the most recent failed rebuild, if any */
29216
+ lastError: string | null;
29217
+ /**
29218
+ * Format: date-time
29219
+ * @description When the accuracy data was last rebuilt; null before the first refresh
29220
+ */
29221
+ refreshedAt: string | null;
29222
+ /** @description Whether a rebuild is currently running */
29223
+ refreshing: boolean;
29224
+ /** @description One row per CSP */
29225
+ summary: components["schemas"]["RealtimeAccuracySummaryRow"][] | null;
29226
+ /** @description All CSPs in the window combined; csp is empty */
29227
+ total: components["schemas"]["RealtimeAccuracySummaryRow"];
29228
+ };
29229
+ RealtimeAccuracySummaryRow: {
29230
+ /** @description Cloud service provider */
29231
+ csp: string;
29232
+ /**
29233
+ * Format: double
29234
+ * @description Sum of estimates
29235
+ */
29236
+ estimated: number;
29237
+ /**
29238
+ * Format: double
29239
+ * @description Sum of invoice amounts, prorated to the estimated hours
29240
+ */
29241
+ invoiced: number;
29242
+ /**
29243
+ * Format: int64
29244
+ * @description Deployment-day-category keys with a frozen estimate
29245
+ */
29246
+ keys: number;
29247
+ /**
29248
+ * Format: int64
29249
+ * @description Keys estimated by the running loop
29250
+ */
29251
+ liveKeys: number;
29252
+ /**
29253
+ * Format: int64
29254
+ * @description Keys with an estimate but no invoice line
29255
+ */
29256
+ noInvoiceLine: number;
29257
+ /**
29258
+ * Format: double
29259
+ * @description Estimated divided by invoiced; null without a measurable invoice
29260
+ */
29261
+ ratio: number | null;
29262
+ /**
29263
+ * Format: int64
29264
+ * @description Keys regenerated by a reprocess after the fact
29265
+ */
29266
+ reprocessedKeys: number;
29267
+ /**
29268
+ * Format: double
29269
+ * @description Tagged invoice amount for deployments the estimator never covered
29270
+ */
29271
+ unestimatedInvoiced: number;
29272
+ /**
29273
+ * Format: double
29274
+ * @description Weighted absolute percentage error over keys with an invoice line
29275
+ */
29276
+ wape: number | null;
29277
+ /**
29278
+ * Format: double
29279
+ * @description Percentage of measurable keys whose ratio is within 0.9 to 1.1
29280
+ */
29281
+ withinTenPct: number | null;
29282
+ };
29283
+ RealtimeAccuracyTrendPoint: {
29284
+ /** @description Cloud service provider */
29285
+ csp: string;
29286
+ /** @description Calendar day, YYYY-MM-DD */
29287
+ day: string;
29288
+ /**
29289
+ * Format: double
29290
+ * @description Sum of estimates
29291
+ */
29292
+ estimated: number;
29293
+ /**
29294
+ * Format: double
29295
+ * @description Sum of prorated invoice amounts
29296
+ */
29297
+ invoiced: number;
29298
+ /**
29299
+ * Format: int64
29300
+ * @description Keys contributing to the point
29301
+ */
29302
+ keys: number;
29303
+ /**
29304
+ * Format: double
29305
+ * @description Estimated divided by invoiced; null without a measurable invoice
29306
+ */
29307
+ ratio: number | null;
29308
+ /** @description Every key that day came from a reprocess */
29309
+ reprocessed: boolean;
29310
+ };
28957
29311
  RecommendedResource: {
28958
29312
  /** @description Cloud provider (aws, google, azure) */
28959
29313
  csp?: string;
@@ -29682,6 +30036,12 @@ export interface components {
29682
30036
  */
29683
30037
  timeoutSec?: number;
29684
30038
  };
30039
+ RunStep: {
30040
+ /** @description Step name. */
30041
+ name?: string;
30042
+ /** @description Step status. */
30043
+ status?: string;
30044
+ };
29685
30045
  RunSummary: {
29686
30046
  /**
29687
30047
  * Format: int64
@@ -30122,7 +30482,7 @@ export interface components {
30122
30482
  /** @description Workflow run information. */
30123
30483
  readonly workflowRun?: components["schemas"]["WorkflowRunInfo"];
30124
30484
  /** @description Workflow running steps. */
30125
- readonly workflowRunningSteps?: components["schemas"]["StepStruct"][] | null;
30485
+ readonly workflowRunningSteps?: components["schemas"]["RunStep"][] | null;
30126
30486
  };
30127
30487
  SessionAlert: {
30128
30488
  /** @description Indicates if the storage will be automatically terminated when the cost limit is reached. */
@@ -30466,12 +30826,6 @@ export interface components {
30466
30826
  /** @description Reconnect an existing Codex provider in place */
30467
30827
  reconnect?: boolean;
30468
30828
  };
30469
- StepStruct: {
30470
- /** @description Step name. */
30471
- name?: string;
30472
- /** @description Step status. */
30473
- status?: string;
30474
- };
30475
30829
  StopClusterOptions: {
30476
30830
  /** @description Stop the controller through the cloud provider instead of waiting for the cluster agent to shut it down from inside the guest. */
30477
30831
  force?: boolean;
@@ -32301,9 +32655,13 @@ export interface components {
32301
32655
  inputs?: {
32302
32656
  [key: string]: unknown;
32303
32657
  };
32658
+ links?: {
32659
+ [key: string]: components["schemas"]["WorkflowRunLink"];
32660
+ };
32304
32661
  marketplace: boolean;
32305
32662
  /** Format: int64 */
32306
32663
  number?: number;
32664
+ redirect?: components["schemas"]["WorkflowRunRedirect"];
32307
32665
  resolvedYaml?: {
32308
32666
  [key: string]: unknown;
32309
32667
  };
@@ -32332,6 +32690,16 @@ export interface components {
32332
32690
  /** @description Workflow type. */
32333
32691
  readonly type?: string;
32334
32692
  };
32693
+ WorkflowRunLink: {
32694
+ detach?: boolean;
32695
+ endpoint?: string;
32696
+ url?: string;
32697
+ };
32698
+ WorkflowRunRedirect: {
32699
+ /** @enum {string} */
32700
+ kind: "session" | "link";
32701
+ name: string;
32702
+ };
32335
32703
  WorkflowRunResponse: {
32336
32704
  /** Format: date-time */
32337
32705
  completedAt?: string;
@@ -32350,6 +32718,9 @@ export interface components {
32350
32718
  user: string;
32351
32719
  workflowName?: string;
32352
32720
  };
32721
+ WorkflowRunRunningStepsResponse: {
32722
+ runningSteps: components["schemas"]["RunStep"][] | null;
32723
+ };
32353
32724
  WorkflowRunsCleanupPreviewBody: {
32354
32725
  /**
32355
32726
  * Format: int64
@@ -32758,6 +33129,217 @@ export interface operations {
32758
33129
  };
32759
33130
  };
32760
33131
  };
33132
+ "get-realtime-accuracy-summary": {
33133
+ parameters: {
33134
+ query?: {
33135
+ /** @description Days to include, counted back from today */
33136
+ window?: 14 | 30 | 60 | 90;
33137
+ /** @description Restrict to one cloud service provider */
33138
+ csp?: string;
33139
+ };
33140
+ header?: never;
33141
+ path?: never;
33142
+ cookie?: never;
33143
+ };
33144
+ requestBody?: never;
33145
+ responses: {
33146
+ /** @description OK */
33147
+ 200: {
33148
+ headers: {
33149
+ [name: string]: unknown;
33150
+ };
33151
+ content: {
33152
+ "application/json": components["schemas"]["RealtimeAccuracySummary"];
33153
+ };
33154
+ };
33155
+ /** @description Error */
33156
+ default: {
33157
+ headers: {
33158
+ [name: string]: unknown;
33159
+ };
33160
+ content: {
33161
+ "application/json": components["schemas"]["Error"];
33162
+ };
33163
+ };
33164
+ };
33165
+ };
33166
+ "get-realtime-accuracy-categories": {
33167
+ parameters: {
33168
+ query?: {
33169
+ /** @description Days to include, counted back from today */
33170
+ window?: 14 | 30 | 60 | 90;
33171
+ /** @description Restrict to one cloud service provider */
33172
+ csp?: string;
33173
+ };
33174
+ header?: never;
33175
+ path?: never;
33176
+ cookie?: never;
33177
+ };
33178
+ requestBody?: never;
33179
+ responses: {
33180
+ /** @description OK */
33181
+ 200: {
33182
+ headers: {
33183
+ [name: string]: unknown;
33184
+ };
33185
+ content: {
33186
+ "application/json": components["schemas"]["RealtimeAccuracyCategoryRow"][] | null;
33187
+ };
33188
+ };
33189
+ /** @description Error */
33190
+ default: {
33191
+ headers: {
33192
+ [name: string]: unknown;
33193
+ };
33194
+ content: {
33195
+ "application/json": components["schemas"]["Error"];
33196
+ };
33197
+ };
33198
+ };
33199
+ };
33200
+ "export-realtime-accuracy": {
33201
+ parameters: {
33202
+ query?: {
33203
+ /** @description Days to include, counted back from today */
33204
+ window?: 14 | 30 | 60 | 90;
33205
+ /** @description Restrict to one cloud service provider */
33206
+ csp?: string;
33207
+ /** @description Restrict to one cost type, e.g. Compute */
33208
+ type?: string;
33209
+ /** @description Restrict to one cost subtype, e.g. Instance */
33210
+ subtype?: string;
33211
+ /** @description md = self-describing Markdown report, json = the same data as an object */
33212
+ format?: "md" | "json";
33213
+ };
33214
+ header?: never;
33215
+ path?: never;
33216
+ cookie?: never;
33217
+ };
33218
+ requestBody?: never;
33219
+ responses: {
33220
+ /** @description OK */
33221
+ 200: {
33222
+ headers: {
33223
+ [name: string]: unknown;
33224
+ };
33225
+ content?: never;
33226
+ };
33227
+ /** @description Error */
33228
+ default: {
33229
+ headers: {
33230
+ [name: string]: unknown;
33231
+ };
33232
+ content: {
33233
+ "application/json": components["schemas"]["Error"];
33234
+ };
33235
+ };
33236
+ };
33237
+ };
33238
+ "get-realtime-accuracy-outliers": {
33239
+ parameters: {
33240
+ query?: {
33241
+ /** @description Days to include, counted back from today */
33242
+ window?: 14 | 30 | 60 | 90;
33243
+ /** @description Restrict to one cloud service provider */
33244
+ csp?: string;
33245
+ /** @description Restrict to one cost type, e.g. Compute */
33246
+ type?: string;
33247
+ /** @description Restrict to one cost subtype, e.g. Instance */
33248
+ subtype?: string;
33249
+ /** @description Maximum rows to return */
33250
+ limit?: number;
33251
+ };
33252
+ header?: never;
33253
+ path?: never;
33254
+ cookie?: never;
33255
+ };
33256
+ requestBody?: never;
33257
+ responses: {
33258
+ /** @description OK */
33259
+ 200: {
33260
+ headers: {
33261
+ [name: string]: unknown;
33262
+ };
33263
+ content: {
33264
+ "application/json": components["schemas"]["RealtimeAccuracyOutlier"][] | null;
33265
+ };
33266
+ };
33267
+ /** @description Error */
33268
+ default: {
33269
+ headers: {
33270
+ [name: string]: unknown;
33271
+ };
33272
+ content: {
33273
+ "application/json": components["schemas"]["Error"];
33274
+ };
33275
+ };
33276
+ };
33277
+ };
33278
+ "refresh-realtime-accuracy": {
33279
+ parameters: {
33280
+ query?: never;
33281
+ header?: never;
33282
+ path?: never;
33283
+ cookie?: never;
33284
+ };
33285
+ requestBody?: never;
33286
+ responses: {
33287
+ /** @description Accepted */
33288
+ 202: {
33289
+ headers: {
33290
+ [name: string]: unknown;
33291
+ };
33292
+ content?: never;
33293
+ };
33294
+ /** @description Error */
33295
+ default: {
33296
+ headers: {
33297
+ [name: string]: unknown;
33298
+ };
33299
+ content: {
33300
+ "application/json": components["schemas"]["Error"];
33301
+ };
33302
+ };
33303
+ };
33304
+ };
33305
+ "get-realtime-accuracy-trend": {
33306
+ parameters: {
33307
+ query?: {
33308
+ /** @description Days to include, counted back from today */
33309
+ window?: 14 | 30 | 60 | 90;
33310
+ /** @description Restrict to one cloud service provider */
33311
+ csp?: string;
33312
+ /** @description Restrict to one cost type, e.g. Compute */
33313
+ type?: string;
33314
+ /** @description Restrict to one cost subtype, e.g. Instance */
33315
+ subtype?: string;
33316
+ };
33317
+ header?: never;
33318
+ path?: never;
33319
+ cookie?: never;
33320
+ };
33321
+ requestBody?: never;
33322
+ responses: {
33323
+ /** @description OK */
33324
+ 200: {
33325
+ headers: {
33326
+ [name: string]: unknown;
33327
+ };
33328
+ content: {
33329
+ "application/json": components["schemas"]["RealtimeAccuracyTrendPoint"][] | null;
33330
+ };
33331
+ };
33332
+ /** @description Error */
33333
+ default: {
33334
+ headers: {
33335
+ [name: string]: unknown;
33336
+ };
33337
+ content: {
33338
+ "application/json": components["schemas"]["Error"];
33339
+ };
33340
+ };
33341
+ };
33342
+ };
32761
33343
  "list-billing-runs": {
32762
33344
  parameters: {
32763
33345
  query?: {
@@ -35058,8 +35640,10 @@ export interface operations {
35058
35640
  query?: {
35059
35641
  /** @description Max attachments to return */
35060
35642
  limit?: number;
35061
- /** @description Pagination offset */
35643
+ /** @description Pagination offset, ignored when a cursor is given */
35062
35644
  offset?: number;
35645
+ /** @description Cursor from a previous page */
35646
+ cursor?: string;
35063
35647
  /** @description Filter by content type prefix (e.g. image/) */
35064
35648
  contentType?: string;
35065
35649
  };
@@ -35267,6 +35851,10 @@ export interface operations {
35267
35851
  query?: {
35268
35852
  /** @description Filter by message ID (optional) */
35269
35853
  messageId?: string;
35854
+ /** @description Page size */
35855
+ limit?: number;
35856
+ /** @description Cursor from a previous page */
35857
+ cursor?: string;
35270
35858
  };
35271
35859
  header?: never;
35272
35860
  path: {
@@ -62740,6 +63328,38 @@ export interface operations {
62740
63328
  };
62741
63329
  };
62742
63330
  };
63331
+ "get-workflow-run-running-steps": {
63332
+ parameters: {
63333
+ query?: never;
63334
+ header?: never;
63335
+ path: {
63336
+ /** @description The slug identifier of the workflow run */
63337
+ slug: string;
63338
+ };
63339
+ cookie?: never;
63340
+ };
63341
+ requestBody?: never;
63342
+ responses: {
63343
+ /** @description OK */
63344
+ 200: {
63345
+ headers: {
63346
+ [name: string]: unknown;
63347
+ };
63348
+ content: {
63349
+ "application/json": components["schemas"]["WorkflowRunRunningStepsResponse"];
63350
+ };
63351
+ };
63352
+ /** @description Error */
63353
+ default: {
63354
+ headers: {
63355
+ [name: string]: unknown;
63356
+ };
63357
+ content: {
63358
+ "application/json": components["schemas"]["Error"];
63359
+ };
63360
+ };
63361
+ };
63362
+ };
62743
63363
  "list-user-variables": {
62744
63364
  parameters: {
62745
63365
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parallelworks/client",
3
- "version": "7.104.0",
3
+ "version": "7.105.0",
4
4
  "description": "Official TypeScript client for Parallel Works ACTIVATE API",
5
5
  "type": "module",
6
6
  "exports": {