@parallelworks/client 7.102.0 → 7.104.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 +563 -18
  2. package/package.json +1 -1
@@ -48,6 +48,30 @@ export interface paths {
48
48
  patch?: never;
49
49
  trace?: never;
50
50
  };
51
+ "/api/admin/agents": {
52
+ parameters: {
53
+ query?: never;
54
+ header?: never;
55
+ path?: never;
56
+ cookie?: never;
57
+ };
58
+ /**
59
+ * List agents
60
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
61
+ *
62
+ * > This is a platform-admin only route.
63
+ *
64
+ * Returns every agent the platform knows about with the version it reports, plus the fleet-wide version distribution
65
+ */
66
+ get: operations["list-fleet-agents"];
67
+ put?: never;
68
+ post?: never;
69
+ delete?: never;
70
+ options?: never;
71
+ head?: never;
72
+ patch?: never;
73
+ trace?: never;
74
+ };
51
75
  "/api/admin/alerts": {
52
76
  parameters: {
53
77
  query?: never;
@@ -294,6 +318,30 @@ export interface paths {
294
318
  patch?: never;
295
319
  trace?: never;
296
320
  };
321
+ "/api/admin/events/actors": {
322
+ parameters: {
323
+ query?: never;
324
+ header?: never;
325
+ path?: never;
326
+ cookie?: never;
327
+ };
328
+ /**
329
+ * List Platform Event Actors
330
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
331
+ *
332
+ * > This is a platform-admin only route.
333
+ *
334
+ * List the distinct actor usernames that appear in audit events across all organizations.
335
+ */
336
+ get: operations["list-admin-event-actors"];
337
+ put?: never;
338
+ post?: never;
339
+ delete?: never;
340
+ options?: never;
341
+ head?: never;
342
+ patch?: never;
343
+ trace?: never;
344
+ };
297
345
  "/api/admin/events/export": {
298
346
  parameters: {
299
347
  query?: never;
@@ -6167,6 +6215,28 @@ export interface paths {
6167
6215
  patch?: never;
6168
6216
  trace?: never;
6169
6217
  };
6218
+ "/api/organizations/{organization}/events/actors": {
6219
+ parameters: {
6220
+ query?: never;
6221
+ header?: never;
6222
+ path?: never;
6223
+ cookie?: never;
6224
+ };
6225
+ /**
6226
+ * List Organization Event Actors
6227
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
6228
+ *
6229
+ * List the distinct actor usernames that appear in the organization's audit events. Requires organization admin.
6230
+ */
6231
+ get: operations["list-organization-event-actors"];
6232
+ put?: never;
6233
+ post?: never;
6234
+ delete?: never;
6235
+ options?: never;
6236
+ head?: never;
6237
+ patch?: never;
6238
+ trace?: never;
6239
+ };
6170
6240
  "/api/organizations/{organization}/events/export": {
6171
6241
  parameters: {
6172
6242
  query?: never;
@@ -13466,6 +13536,28 @@ export interface paths {
13466
13536
  patch?: never;
13467
13537
  trace?: never;
13468
13538
  };
13539
+ "/api/platform/policies/workspace-retention-days": {
13540
+ parameters: {
13541
+ query?: never;
13542
+ header?: never;
13543
+ path?: never;
13544
+ cookie?: never;
13545
+ };
13546
+ get?: never;
13547
+ put?: never;
13548
+ /**
13549
+ * Set platform policy: workspace-retention-days
13550
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
13551
+ *
13552
+ * Sets the workspace-retention-days policy for the platform.
13553
+ */
13554
+ post: operations["set-platform-workspace-retention-days-policy"];
13555
+ delete?: never;
13556
+ options?: never;
13557
+ head?: never;
13558
+ patch?: never;
13559
+ trace?: never;
13560
+ };
13469
13561
  "/api/platform/policies/{policyname}": {
13470
13562
  parameters: {
13471
13563
  query?: never;
@@ -14321,7 +14413,7 @@ export interface paths {
14321
14413
  patch?: never;
14322
14414
  trace?: never;
14323
14415
  };
14324
- "/api/sso/cac/redirect": {
14416
+ "/api/sso/cac/redirect/{authID}": {
14325
14417
  parameters: {
14326
14418
  query?: never;
14327
14419
  header?: never;
@@ -14895,6 +14987,34 @@ export interface paths {
14895
14987
  patch?: never;
14896
14988
  trace?: never;
14897
14989
  };
14990
+ "/api/user/preferences": {
14991
+ parameters: {
14992
+ query?: never;
14993
+ header?: never;
14994
+ path?: never;
14995
+ cookie?: never;
14996
+ };
14997
+ /**
14998
+ * Get user preferences
14999
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
15000
+ *
15001
+ * Returns the current user's saved UI preferences, such as list page display options and filters, keyed by view id.
15002
+ */
15003
+ get: operations["get-user-preferences"];
15004
+ put?: never;
15005
+ post?: never;
15006
+ delete?: never;
15007
+ options?: never;
15008
+ head?: never;
15009
+ /**
15010
+ * Update user preferences
15011
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
15012
+ *
15013
+ * Writes the given preference keys for the current user. A null value removes a key; keys not in the request are left unchanged.
15014
+ */
15015
+ patch: operations["update-user-preferences"];
15016
+ trace?: never;
15017
+ };
14898
15018
  "/api/user/profile": {
14899
15019
  parameters: {
14900
15020
  query?: never;
@@ -15671,6 +15791,8 @@ export type webhooks = Record<string, never>;
15671
15791
  export interface components {
15672
15792
  schemas: {
15673
15793
  AIModelConfig: {
15794
+ /** Format: double */
15795
+ cachedInputRate?: number;
15674
15796
  /** Format: int64 */
15675
15797
  contextWindow?: number;
15676
15798
  enabled: boolean;
@@ -16971,6 +17093,21 @@ export interface components {
16971
17093
  /** @description User associated with the storage. */
16972
17094
  user: string;
16973
17095
  };
17096
+ AwsEfsDefinition: {
17097
+ /** @description EFS filesystem id at AWS. */
17098
+ fileSystemId?: string;
17099
+ /** @description Mount targets by subnet. */
17100
+ mountTargets?: {
17101
+ [key: string]: string;
17102
+ };
17103
+ /** @description Throughput mode of the filesystem. */
17104
+ throughputMode?: string;
17105
+ /**
17106
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17107
+ * @enum {string}
17108
+ */
17109
+ type: "aws-efs";
17110
+ };
16974
17111
  AwsEfsVersionSettings: {
16975
17112
  efs_encrypted?: boolean;
16976
17113
  efs_performance_mode?: string;
@@ -17276,6 +17413,19 @@ export interface components {
17276
17413
  userBootstrapController?: boolean;
17277
17414
  zone?: string;
17278
17415
  };
17416
+ AzureAzfilesDefinition: {
17417
+ /** @description Name of the file share at Azure, which can differ from the platform name. */
17418
+ azfilesName?: string;
17419
+ /** @description Azure resource group the storage account belongs to. */
17420
+ azureResourceGroup?: string;
17421
+ /** @description Azure storage account hosting the share. */
17422
+ storageAccountName?: string;
17423
+ /**
17424
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17425
+ * @enum {string}
17426
+ */
17427
+ type: "azure-azfiles";
17428
+ };
17279
17429
  AzureAzfilesVersionSettings: {
17280
17430
  region?: string;
17281
17431
  /** Format: int64 */
@@ -17830,6 +17980,19 @@ export interface components {
17830
17980
  /** @description User associated with the storage. */
17831
17981
  user: string;
17832
17982
  };
17983
+ AzureNetappFilesDefinition: {
17984
+ /** @description Export path of the volume. */
17985
+ exportPath?: string;
17986
+ /** @description IP address clients mount the volume from. */
17987
+ mountIp?: string;
17988
+ /** @description Service level of the volume. */
17989
+ service?: string;
17990
+ /**
17991
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
17992
+ * @enum {string}
17993
+ */
17994
+ type: "azure-netappfiles";
17995
+ };
17833
17996
  AzureNetappFilesVersionSettings: {
17834
17997
  region?: string;
17835
17998
  service?: string;
@@ -20034,6 +20197,8 @@ export interface components {
20034
20197
  environmentId?: string;
20035
20198
  /** @description Kernel name. Auto-generated if omitted. */
20036
20199
  name?: string;
20200
+ /** @description Run the kernel on the cluster's controller agent directly instead of scheduling a worker. Cluster targets only; starts immediately with no Slurm allocation. */
20201
+ runOnController?: boolean;
20037
20202
  /** @description Scheduling parameters for the kernel's worker. */
20038
20203
  schedulingParams?: {
20039
20204
  [key: string]: unknown;
@@ -21168,6 +21333,10 @@ export interface components {
21168
21333
  /** @description Actor username. */
21169
21334
  username?: string;
21170
21335
  };
21336
+ EventActorsOutputBody: {
21337
+ /** @description Distinct actor usernames, sorted. */
21338
+ actors: string[] | null;
21339
+ };
21171
21340
  EventHTTP: {
21172
21341
  /** @description HTTP method. */
21173
21342
  method?: string;
@@ -21435,6 +21604,105 @@ export interface components {
21435
21604
  /** @description OpenStack flavor ID */
21436
21605
  id: string;
21437
21606
  };
21607
+ FleetAgent: {
21608
+ /** @description CPU architecture reported by the agent. */
21609
+ arch?: string;
21610
+ /** @description Whether the agent is below the configured minimum agent version. An agent that never reported a version counts as below it, matching how the tunnel gate treats one. Always false for endpoints, which the gate exempts. */
21611
+ belowMinimum: boolean;
21612
+ /** @description Id of the cluster or endpoint session the agent belongs to. */
21613
+ clusterId: string;
21614
+ /** @description Name of the cluster or endpoint session. */
21615
+ clusterName: string;
21616
+ /** @description Whether the agent is reporting right now. */
21617
+ connected: boolean;
21618
+ /** @description Cluster display name. */
21619
+ displayName?: string;
21620
+ /** @description Node hostname, for managed cluster node agents. */
21621
+ hostname?: string;
21622
+ /** @description Stable row id: the cluster id, plus the node hostname for managed cluster nodes. */
21623
+ id: string;
21624
+ /** @description Custom cluster icon, when one was uploaded. */
21625
+ imageUrl?: string;
21626
+ /**
21627
+ * @description Where the agent runs: a cloud cluster, a standalone instance, an existing cluster, a managed cluster node, or a pw CLI serving an endpoint session.
21628
+ * @enum {string}
21629
+ */
21630
+ kind: "cloud" | "instance" | "existing" | "managed" | "endpoint";
21631
+ /**
21632
+ * Format: date-time
21633
+ * @description When the agent last reported.
21634
+ */
21635
+ lastSeenAt?: string;
21636
+ /** @description Organization the cluster belongs to. */
21637
+ organization?: string;
21638
+ /** @description Operating system reported by the agent. */
21639
+ os?: string;
21640
+ /** @description OS release reported by the agent. */
21641
+ osRelease?: string;
21642
+ /** @description Whether the reported version is older than the platform version. */
21643
+ outdated: boolean;
21644
+ /** @description Resource type the icon is derived from: the cloud provider for cloud clusters and instances, existing, or managed-cluster. */
21645
+ resourceType?: string;
21646
+ /** @description Scheduler on the cluster, used as the existing-cluster icon. */
21647
+ schedulerType?: string;
21648
+ /** @description In-flight agent update state: updating or failed. */
21649
+ updateStatus?: string;
21650
+ /** @description Owner of the cluster. */
21651
+ username?: string;
21652
+ /** @description Last reported agent version. Empty when the agent has never reported one. */
21653
+ version?: string;
21654
+ };
21655
+ FleetSummary: {
21656
+ /**
21657
+ * Format: int64
21658
+ * @description Agents below the configured minimum agent version, including those that never reported one. Endpoints are exempt, matching the tunnel gate.
21659
+ */
21660
+ belowMinimum: number;
21661
+ /**
21662
+ * Format: int64
21663
+ * @description Agents reporting right now.
21664
+ */
21665
+ connected: number;
21666
+ /** @description Configured minimum agent version. Empty when enforcement is off. */
21667
+ minimumAgentVersion?: string;
21668
+ /** @description Oldest version any reporting agent runs. This is the version gate the fleet has actually reached. */
21669
+ oldestVersion?: string;
21670
+ /**
21671
+ * Format: int64
21672
+ * @description Agents older than the platform version.
21673
+ */
21674
+ outdated: number;
21675
+ /** @description Version of the platform the agents are compared against. */
21676
+ platformVersion: string;
21677
+ /** @description Whether the platform version is a version agents can be compared against. False for a local development build, where the drift counts carry no meaning. */
21678
+ platformVersionComparable: boolean;
21679
+ /**
21680
+ * Format: int64
21681
+ * @description Agents in the fleet.
21682
+ */
21683
+ total: number;
21684
+ /**
21685
+ * Format: int64
21686
+ * @description Agents that have never reported a version.
21687
+ */
21688
+ unreported: number;
21689
+ /** @description Version distribution across the whole fleet, newest first. */
21690
+ versions: components["schemas"]["FleetVersionCount"][] | null;
21691
+ };
21692
+ FleetVersionCount: {
21693
+ /**
21694
+ * Format: int64
21695
+ * @description Agents on this version that are reporting right now.
21696
+ */
21697
+ connected: number;
21698
+ /**
21699
+ * Format: int64
21700
+ * @description Agents on this version.
21701
+ */
21702
+ count: number;
21703
+ /** @description Reported agent version, or empty for agents that never reported one. */
21704
+ version: string;
21705
+ };
21438
21706
  ForkMarketplaceItemBody: {
21439
21707
  /** @description For remote workflows, convert to local by fetching the YAML. */
21440
21708
  convertToLocal?: boolean;
@@ -22072,6 +22340,17 @@ export interface components {
22072
22340
  /** @description Zone the Google Filestore is in */
22073
22341
  zone?: string;
22074
22342
  };
22343
+ GoogleFilestoreDefinition: {
22344
+ /** @description IP address of the file server. */
22345
+ fileserverIp?: string;
22346
+ /** @description Service tier of the instance. */
22347
+ filestoreTier?: string;
22348
+ /**
22349
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
22350
+ * @enum {string}
22351
+ */
22352
+ type: "google-filestore";
22353
+ };
22075
22354
  GoogleFilestoreVersionSettings: {
22076
22355
  filestore_tier?: string;
22077
22356
  region?: string;
@@ -23218,7 +23497,7 @@ export interface components {
23218
23497
  * @description Compute the kernel runs on.
23219
23498
  * @enum {string}
23220
23499
  */
23221
- readonly targetType?: "cluster" | "instance";
23500
+ readonly targetType?: "cluster" | "instance" | "controller";
23222
23501
  /** @description Base path the kernel's Jupyter server is served at. */
23223
23502
  readonly url: string;
23224
23503
  /** @description ID of the compute worker running the kernel. */
@@ -23821,6 +24100,17 @@ export interface components {
23821
24100
  ListAdminProductsOutputBody: {
23822
24101
  products: components["schemas"]["AdminProduct"][] | null;
23823
24102
  };
24103
+ ListAgentsBody: {
24104
+ /** @description One page of agents. */
24105
+ agents: components["schemas"]["FleetAgent"][] | null;
24106
+ /** @description Fleet-wide totals, unaffected by the filters. */
24107
+ summary: components["schemas"]["FleetSummary"];
24108
+ /**
24109
+ * Format: int64
24110
+ * @description Agents matching the filters.
24111
+ */
24112
+ total: number;
24113
+ };
23824
24114
  ListAttachmentsBody: {
23825
24115
  attachments: components["schemas"]["AttachmentResponse"][] | null;
23826
24116
  };
@@ -24747,6 +25037,8 @@ export interface components {
24747
25037
  status: string | null;
24748
25038
  };
24749
25039
  ModelEntry: {
25040
+ /** Format: double */
25041
+ cached_input_rate?: number;
24750
25042
  /** Format: int64 */
24751
25043
  context_window?: number;
24752
25044
  /** Format: int64 */
@@ -25833,6 +26125,19 @@ export interface components {
25833
26125
  /** @description User associated with the storage. */
25834
26126
  user: string;
25835
26127
  };
26128
+ OracleFsDefinition: {
26129
+ /** @description Availability domain the file system is in. */
26130
+ availabilityDomain?: string;
26131
+ /** @description Export path of the file system. */
26132
+ exportPath?: string;
26133
+ /** @description IP address of the mount target. */
26134
+ mountTargetIp?: string;
26135
+ /**
26136
+ * @description Type discriminator. (enum property replaced by openapi-typescript)
26137
+ * @enum {string}
26138
+ */
26139
+ type: "oracle-oraclefs";
26140
+ };
25836
26141
  OracleOraclefsVersionSettings: {
25837
26142
  availability_domain?: string;
25838
26143
  region?: string;
@@ -26048,6 +26353,11 @@ export interface components {
26048
26353
  type: string;
26049
26354
  };
26050
26355
  OrgModelEntry: {
26356
+ /**
26357
+ * Format: double
26358
+ * @description USD per input token served from the provider's prompt cache (0 = the input rate)
26359
+ */
26360
+ cachedInputRate?: number;
26051
26361
  /**
26052
26362
  * Format: int64
26053
26363
  * @description Model context window in tokens (0 = unknown)
@@ -26461,6 +26771,11 @@ export interface components {
26461
26771
  status?: string;
26462
26772
  };
26463
26773
  PatchModelConfigInputBody: {
26774
+ /**
26775
+ * Format: double
26776
+ * @description USD per input token served from the provider's prompt cache (0 = the input rate)
26777
+ */
26778
+ cachedInputRate?: number;
26464
26779
  /**
26465
26780
  * Format: int64
26466
26781
  * @description Model context window in tokens (0 = unknown)
@@ -27345,6 +27660,13 @@ export interface components {
27345
27660
  visibility: string;
27346
27661
  webUrl: string;
27347
27662
  };
27663
+ PromptTokensDetails: {
27664
+ /**
27665
+ * Format: int64
27666
+ * @description Prompt tokens served from the provider's prompt cache
27667
+ */
27668
+ cached_tokens: number;
27669
+ };
27348
27670
  ProvisionStatusAttribute: {
27349
27671
  /** @description The attribute key. */
27350
27672
  key: string;
@@ -29021,7 +29343,7 @@ export interface components {
29021
29343
  tags?: {
29022
29344
  [key: string]: string;
29023
29345
  };
29024
- /** @description Platform user from the resource tags. */
29346
+ /** @description Owning platform username when resolved; otherwise the recorded owner value. */
29025
29347
  username?: string;
29026
29348
  /** @description Availability zone. */
29027
29349
  zone?: string;
@@ -30208,7 +30530,7 @@ export interface components {
30208
30530
  * StorageDefinition
30209
30531
  * @description The storage's typed configuration.
30210
30532
  */
30211
- definition: components["schemas"]["AwsLustreDefinition"] | components["schemas"]["AzureManagedLustreDefinition"] | components["schemas"]["GoogleManagedLustreDefinition"] | components["schemas"]["BucketDefinition"] | components["schemas"]["DiskDefinition"];
30533
+ definition: components["schemas"]["AwsLustreDefinition"] | components["schemas"]["AzureManagedLustreDefinition"] | components["schemas"]["GoogleManagedLustreDefinition"] | components["schemas"]["BucketDefinition"] | components["schemas"]["DiskDefinition"] | components["schemas"]["AwsEfsDefinition"] | components["schemas"]["AzureAzfilesDefinition"] | components["schemas"]["AzureNetappFilesDefinition"] | components["schemas"]["GoogleFilestoreDefinition"] | components["schemas"]["OracleFsDefinition"];
30212
30534
  /** @description Display name of the storage. */
30213
30535
  displayName: string;
30214
30536
  /** @description Whether the storage is ephemeral. */
@@ -31190,6 +31512,12 @@ export interface components {
31190
31512
  */
31191
31513
  resourceGroup: string;
31192
31514
  };
31515
+ UpdateUserPreferencesInputBody: {
31516
+ /** @description Preference keys to write. A null value removes the key; keys not present are left unchanged. */
31517
+ preferences: {
31518
+ [key: string]: unknown;
31519
+ };
31520
+ };
31193
31521
  UpdateUserProfileBody: {
31194
31522
  /** @description Full name of the user */
31195
31523
  name: string;
@@ -31316,9 +31644,10 @@ export interface components {
31316
31644
  completion_tokens: number;
31317
31645
  /**
31318
31646
  * Format: int64
31319
- * @description Tokens in the prompt
31647
+ * @description Tokens in the prompt, cached ones included
31320
31648
  */
31321
31649
  prompt_tokens: number;
31650
+ prompt_tokens_details?: components["schemas"]["PromptTokensDetails"];
31322
31651
  /**
31323
31652
  * Format: int64
31324
31653
  * @description Total tokens used
@@ -31422,6 +31751,12 @@ export interface components {
31422
31751
  resourceType?: string;
31423
31752
  type?: string;
31424
31753
  };
31754
+ UserPreferencesBody: {
31755
+ /** @description The user's saved UI preferences keyed by view id. Values are opaque JSON owned by the client. */
31756
+ preferences: {
31757
+ [key: string]: unknown;
31758
+ };
31759
+ };
31425
31760
  UserProfile: {
31426
31761
  /** @description Cache-buster for the user's avatar image. */
31427
31762
  avatarEtag?: string;
@@ -31680,6 +32015,8 @@ export interface components {
31680
32015
  allowCredentials?: components["schemas"]["WebAuthnCredentialDescriptor"][] | null;
31681
32016
  /** @description Base64url-encoded challenge */
31682
32017
  challenge: string;
32018
+ /** @description Authenticator types the relying party prefers */
32019
+ hints?: string[] | null;
31683
32020
  /** @description Relying party ID */
31684
32021
  rpId?: string;
31685
32022
  /**
@@ -31747,6 +32084,8 @@ export interface components {
31747
32084
  challenge: string;
31748
32085
  /** @description Credentials that may not be re-registered */
31749
32086
  excludeCredentials?: components["schemas"]["WebAuthnCredentialDescriptor"][] | null;
32087
+ /** @description Authenticator types the relying party prefers */
32088
+ hints?: string[] | null;
31750
32089
  /** @description Acceptable credential algorithms */
31751
32090
  pubKeyCredParams: components["schemas"]["WebAuthnRegCredParam"][] | null;
31752
32091
  /** @description Relying party */
@@ -31882,6 +32221,8 @@ export interface components {
31882
32221
  stoppedAt?: string;
31883
32222
  /** @description Worker authentication token. Only returned on creation. */
31884
32223
  readonly token?: string;
32224
+ /** @description Parallel Works URI for the cluster. */
32225
+ readonly uri?: string;
31885
32226
  /** @description User ID. */
31886
32227
  userId?: string;
31887
32228
  };
@@ -32249,6 +32590,48 @@ export interface operations {
32249
32590
  };
32250
32591
  };
32251
32592
  };
32593
+ "list-fleet-agents": {
32594
+ parameters: {
32595
+ query?: {
32596
+ /** @description Filter by where the agent runs. */
32597
+ kind?: ("cloud" | "instance" | "existing" | "managed" | "endpoint")[] | null;
32598
+ /** @description Filter by whether the agent is reporting right now. */
32599
+ connected?: "true" | "false";
32600
+ /** @description Only agents older than the platform version. */
32601
+ outdated?: boolean;
32602
+ /** @description Case-insensitive match on cluster name, display name, hostname, user, organization, or version. */
32603
+ search?: string;
32604
+ /** @description Page size. */
32605
+ limit?: number;
32606
+ /** @description Page offset. */
32607
+ offset?: number;
32608
+ };
32609
+ header?: never;
32610
+ path?: never;
32611
+ cookie?: never;
32612
+ };
32613
+ requestBody?: never;
32614
+ responses: {
32615
+ /** @description OK */
32616
+ 200: {
32617
+ headers: {
32618
+ [name: string]: unknown;
32619
+ };
32620
+ content: {
32621
+ "application/json": components["schemas"]["ListAgentsBody"];
32622
+ };
32623
+ };
32624
+ /** @description Error */
32625
+ default: {
32626
+ headers: {
32627
+ [name: string]: unknown;
32628
+ };
32629
+ content: {
32630
+ "application/json": components["schemas"]["Error"];
32631
+ };
32632
+ };
32633
+ };
32634
+ };
32252
32635
  "get-platform-alerts": {
32253
32636
  parameters: {
32254
32637
  query?: {
@@ -32617,8 +33000,8 @@ export interface operations {
32617
33000
  to?: string;
32618
33001
  /** @description Filter by event type (repeatable). */
32619
33002
  type?: string[] | null;
32620
- /** @description Filter by exact actor username. */
32621
- actor?: string;
33003
+ /** @description Filter by exact actor username (repeatable). */
33004
+ actor?: string[] | null;
32622
33005
  /** @description Filter by actor type. */
32623
33006
  actorType?: "user" | "apikey" | "workflow-token" | "cluster-token" | "scim" | "system" | "anonymous";
32624
33007
  /** @description Filter by target type. */
@@ -32664,6 +33047,35 @@ export interface operations {
32664
33047
  };
32665
33048
  };
32666
33049
  };
33050
+ "list-admin-event-actors": {
33051
+ parameters: {
33052
+ query?: never;
33053
+ header?: never;
33054
+ path?: never;
33055
+ cookie?: never;
33056
+ };
33057
+ requestBody?: never;
33058
+ responses: {
33059
+ /** @description OK */
33060
+ 200: {
33061
+ headers: {
33062
+ [name: string]: unknown;
33063
+ };
33064
+ content: {
33065
+ "application/json": components["schemas"]["EventActorsOutputBody"];
33066
+ };
33067
+ };
33068
+ /** @description Error */
33069
+ default: {
33070
+ headers: {
33071
+ [name: string]: unknown;
33072
+ };
33073
+ content: {
33074
+ "application/json": components["schemas"]["Error"];
33075
+ };
33076
+ };
33077
+ };
33078
+ };
32667
33079
  "export-admin-events": {
32668
33080
  parameters: {
32669
33081
  query?: {
@@ -32673,8 +33085,8 @@ export interface operations {
32673
33085
  to?: string;
32674
33086
  /** @description Filter by event type (repeatable). */
32675
33087
  type?: string[] | null;
32676
- /** @description Filter by exact actor username. */
32677
- actor?: string;
33088
+ /** @description Filter by exact actor username (repeatable). */
33089
+ actor?: string[] | null;
32678
33090
  /** @description Filter by actor type. */
32679
33091
  actorType?: "user" | "apikey" | "workflow-token" | "cluster-token" | "scim" | "system" | "anonymous";
32680
33092
  /** @description Filter by target type. */
@@ -36084,8 +36496,8 @@ export interface operations {
36084
36496
  to?: string;
36085
36497
  /** @description Filter by event type (repeatable). */
36086
36498
  type?: string[] | null;
36087
- /** @description Filter by exact actor username. */
36088
- actor?: string;
36499
+ /** @description Filter by exact actor username (repeatable). */
36500
+ actor?: string[] | null;
36089
36501
  /** @description Filter by actor type. */
36090
36502
  actorType?: "user" | "apikey" | "workflow-token" | "cluster-token" | "scim" | "system" | "anonymous";
36091
36503
  /** @description Filter by target type. */
@@ -36145,8 +36557,8 @@ export interface operations {
36145
36557
  to?: string;
36146
36558
  /** @description Filter by event type (repeatable). */
36147
36559
  type?: string[] | null;
36148
- /** @description Filter by exact actor username. */
36149
- actor?: string;
36560
+ /** @description Filter by exact actor username (repeatable). */
36561
+ actor?: string[] | null;
36150
36562
  /** @description Filter by actor type. */
36151
36563
  actorType?: "user" | "apikey" | "workflow-token" | "cluster-token" | "scim" | "system" | "anonymous";
36152
36564
  /** @description Filter by target type. */
@@ -43569,8 +43981,8 @@ export interface operations {
43569
43981
  to?: string;
43570
43982
  /** @description Filter by event type (repeatable). */
43571
43983
  type?: string[] | null;
43572
- /** @description Filter by exact actor username. */
43573
- actor?: string;
43984
+ /** @description Filter by exact actor username (repeatable). */
43985
+ actor?: string[] | null;
43574
43986
  /** @description Filter by actor type. */
43575
43987
  actorType?: "user" | "apikey" | "workflow-token" | "cluster-token" | "scim" | "system" | "anonymous";
43576
43988
  /** @description Filter by target type. */
@@ -43617,6 +44029,38 @@ export interface operations {
43617
44029
  };
43618
44030
  };
43619
44031
  };
44032
+ "list-organization-event-actors": {
44033
+ parameters: {
44034
+ query?: never;
44035
+ header?: never;
44036
+ path: {
44037
+ /** @description The name of the organization. */
44038
+ organization: string;
44039
+ };
44040
+ cookie?: never;
44041
+ };
44042
+ requestBody?: never;
44043
+ responses: {
44044
+ /** @description OK */
44045
+ 200: {
44046
+ headers: {
44047
+ [name: string]: unknown;
44048
+ };
44049
+ content: {
44050
+ "application/json": components["schemas"]["EventActorsOutputBody"];
44051
+ };
44052
+ };
44053
+ /** @description Error */
44054
+ default: {
44055
+ headers: {
44056
+ [name: string]: unknown;
44057
+ };
44058
+ content: {
44059
+ "application/json": components["schemas"]["Error"];
44060
+ };
44061
+ };
44062
+ };
44063
+ };
43620
44064
  "export-organization-events": {
43621
44065
  parameters: {
43622
44066
  query?: {
@@ -43626,8 +44070,8 @@ export interface operations {
43626
44070
  to?: string;
43627
44071
  /** @description Filter by event type (repeatable). */
43628
44072
  type?: string[] | null;
43629
- /** @description Filter by exact actor username. */
43630
- actor?: string;
44073
+ /** @description Filter by exact actor username (repeatable). */
44074
+ actor?: string[] | null;
43631
44075
  /** @description Filter by actor type. */
43632
44076
  actorType?: "user" | "apikey" | "workflow-token" | "cluster-token" | "scim" | "system" | "anonymous";
43633
44077
  /** @description Filter by target type. */
@@ -59042,6 +59486,41 @@ export interface operations {
59042
59486
  };
59043
59487
  };
59044
59488
  };
59489
+ "set-platform-workspace-retention-days-policy": {
59490
+ parameters: {
59491
+ query?: never;
59492
+ header?: never;
59493
+ path?: never;
59494
+ cookie?: never;
59495
+ };
59496
+ requestBody: {
59497
+ content: {
59498
+ "application/json": number;
59499
+ };
59500
+ };
59501
+ responses: {
59502
+ /** @description OK */
59503
+ 200: {
59504
+ headers: {
59505
+ [name: string]: unknown;
59506
+ };
59507
+ content: {
59508
+ "application/json": {
59509
+ [key: string]: components["schemas"]["IntPolicyOutput"];
59510
+ };
59511
+ };
59512
+ };
59513
+ /** @description Error */
59514
+ default: {
59515
+ headers: {
59516
+ [name: string]: unknown;
59517
+ };
59518
+ content: {
59519
+ "application/json": components["schemas"]["Error"];
59520
+ };
59521
+ };
59522
+ };
59523
+ };
59045
59524
  "delete-platform-policy": {
59046
59525
  parameters: {
59047
59526
  query?: never;
@@ -60538,7 +61017,10 @@ export interface operations {
60538
61017
  parameters: {
60539
61018
  query?: never;
60540
61019
  header?: never;
60541
- path?: never;
61020
+ path: {
61021
+ /** @description ID of the CAC authentication method */
61022
+ authID: string;
61023
+ };
60542
61024
  cookie?: never;
60543
61025
  };
60544
61026
  requestBody?: never;
@@ -60547,6 +61029,7 @@ export interface operations {
60547
61029
  204: {
60548
61030
  headers: {
60549
61031
  Location?: string;
61032
+ "Set-Cookie"?: string;
60550
61033
  [name: string]: unknown;
60551
61034
  };
60552
61035
  content?: never;
@@ -61403,6 +61886,68 @@ export interface operations {
61403
61886
  };
61404
61887
  };
61405
61888
  };
61889
+ "get-user-preferences": {
61890
+ parameters: {
61891
+ query?: never;
61892
+ header?: never;
61893
+ path?: never;
61894
+ cookie?: never;
61895
+ };
61896
+ requestBody?: never;
61897
+ responses: {
61898
+ /** @description OK */
61899
+ 200: {
61900
+ headers: {
61901
+ [name: string]: unknown;
61902
+ };
61903
+ content: {
61904
+ "application/json": components["schemas"]["UserPreferencesBody"];
61905
+ };
61906
+ };
61907
+ /** @description Error */
61908
+ default: {
61909
+ headers: {
61910
+ [name: string]: unknown;
61911
+ };
61912
+ content: {
61913
+ "application/json": components["schemas"]["Error"];
61914
+ };
61915
+ };
61916
+ };
61917
+ };
61918
+ "update-user-preferences": {
61919
+ parameters: {
61920
+ query?: never;
61921
+ header?: never;
61922
+ path?: never;
61923
+ cookie?: never;
61924
+ };
61925
+ requestBody: {
61926
+ content: {
61927
+ "application/json": components["schemas"]["UpdateUserPreferencesInputBody"];
61928
+ };
61929
+ };
61930
+ responses: {
61931
+ /** @description OK */
61932
+ 200: {
61933
+ headers: {
61934
+ [name: string]: unknown;
61935
+ };
61936
+ content: {
61937
+ "application/json": components["schemas"]["UserPreferencesBody"];
61938
+ };
61939
+ };
61940
+ /** @description Error */
61941
+ default: {
61942
+ headers: {
61943
+ [name: string]: unknown;
61944
+ };
61945
+ content: {
61946
+ "application/json": components["schemas"]["Error"];
61947
+ };
61948
+ };
61949
+ };
61950
+ };
61406
61951
  "update-user-profile": {
61407
61952
  parameters: {
61408
61953
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parallelworks/client",
3
- "version": "7.102.0",
3
+ "version": "7.104.0",
4
4
  "description": "Official TypeScript client for Parallel Works ACTIVATE API",
5
5
  "type": "module",
6
6
  "exports": {