@parallelworks/client 7.93.0 → 7.94.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 +432 -33
  2. package/package.json +1 -1
@@ -926,6 +926,30 @@ export interface paths {
926
926
  patch: operations["set-ai-integration-icon"];
927
927
  trace?: never;
928
928
  };
929
+ "/api/admin/products/ai/catalog/{catalogEntryId}/models": {
930
+ parameters: {
931
+ query?: never;
932
+ header?: never;
933
+ path?: never;
934
+ cookie?: never;
935
+ };
936
+ /**
937
+ * List models reported for an AI integration
938
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
939
+ *
940
+ * > This is a platform-admin only route.
941
+ *
942
+ * Aggregates the model IDs existing connections report live for this integration, as a picking aid for the allowed-models list.
943
+ */
944
+ get: operations["list-ai-integration-catalog-models"];
945
+ put?: never;
946
+ post?: never;
947
+ delete?: never;
948
+ options?: never;
949
+ head?: never;
950
+ patch?: never;
951
+ trace?: never;
952
+ };
929
953
  "/api/admin/products/ai/connections/{connectionId}": {
930
954
  parameters: {
931
955
  query?: never;
@@ -5261,7 +5285,7 @@ export interface paths {
5261
5285
  * Set organization bootstrap script
5262
5286
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
5263
5287
  *
5264
- * Sets the organization's bootstrap script of the given type, replacing any existing script of that type. Cloud cluster bootstrap scripts run on every cloud cluster before any user bootstrap or health check scripts.
5288
+ * Sets the organization's bootstrap script of the given type, replacing any existing script of that type. Cloud cluster bootstrap scripts run on every cloud cluster before any user bootstrap or health check scripts. User workspace bootstrap scripts run as root in every user workspace in the organization at startup, before the home directory is prepared, receive the username as the first argument, and stop the workspace from starting when they exit non-zero. Every user can read the workspace script from inside their workspace, so it must not contain secrets.
5265
5289
  */
5266
5290
  put: operations["put-organization-bootstrap-script"];
5267
5291
  post?: never;
@@ -7739,6 +7763,28 @@ export interface paths {
7739
7763
  patch?: never;
7740
7764
  trace?: never;
7741
7765
  };
7766
+ "/api/organizations/{organization}/policies/disable-password-login": {
7767
+ parameters: {
7768
+ query?: never;
7769
+ header?: never;
7770
+ path?: never;
7771
+ cookie?: never;
7772
+ };
7773
+ get?: never;
7774
+ put?: never;
7775
+ /**
7776
+ * Set organization policy: disable-password-login
7777
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
7778
+ *
7779
+ * Sets disable-password-login policy for the organization.
7780
+ */
7781
+ post: operations["set-organization-disable-password-login-policy"];
7782
+ delete?: never;
7783
+ options?: never;
7784
+ head?: never;
7785
+ patch?: never;
7786
+ trace?: never;
7787
+ };
7742
7788
  "/api/organizations/{organization}/policies/enforce-mfa": {
7743
7789
  parameters: {
7744
7790
  query?: never;
@@ -11694,6 +11740,34 @@ export interface paths {
11694
11740
  patch?: never;
11695
11741
  trace?: never;
11696
11742
  };
11743
+ "/api/organizations/{organization}/users/{user}/storage/{name}/permissions": {
11744
+ parameters: {
11745
+ query?: never;
11746
+ header?: never;
11747
+ path?: never;
11748
+ cookie?: never;
11749
+ };
11750
+ /**
11751
+ * Get storage permissions
11752
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
11753
+ *
11754
+ * Returns the set of permissions granted on a storage.
11755
+ */
11756
+ get: operations["get-storage-permissions"];
11757
+ put?: never;
11758
+ post?: never;
11759
+ delete?: never;
11760
+ options?: never;
11761
+ head?: never;
11762
+ /**
11763
+ * Update storage permissions
11764
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
11765
+ *
11766
+ * Replaces the set of permissions granted on a storage.
11767
+ */
11768
+ patch: operations["update-storage-permissions"];
11769
+ trace?: never;
11770
+ };
11697
11771
  "/api/organizations/{organization}/users/{user}/user-workspace": {
11698
11772
  parameters: {
11699
11773
  query?: never;
@@ -12568,6 +12642,28 @@ export interface paths {
12568
12642
  patch?: never;
12569
12643
  trace?: never;
12570
12644
  };
12645
+ "/api/platform/policies/disable-password-login": {
12646
+ parameters: {
12647
+ query?: never;
12648
+ header?: never;
12649
+ path?: never;
12650
+ cookie?: never;
12651
+ };
12652
+ get?: never;
12653
+ put?: never;
12654
+ /**
12655
+ * Set platform policy: disable-password-login
12656
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
12657
+ *
12658
+ * Sets the disable-password-login policy for the platform.
12659
+ */
12660
+ post: operations["set-platform-disable-password-login-policy"];
12661
+ delete?: never;
12662
+ options?: never;
12663
+ head?: never;
12664
+ patch?: never;
12665
+ trace?: never;
12666
+ };
12571
12667
  "/api/platform/policies/enforce-webauthn-mfa": {
12572
12668
  parameters: {
12573
12669
  query?: never;
@@ -13855,6 +13951,28 @@ export interface paths {
13855
13951
  patch?: never;
13856
13952
  trace?: never;
13857
13953
  };
13954
+ "/api/user-workspace/bootstrap-script": {
13955
+ parameters: {
13956
+ query?: never;
13957
+ header?: never;
13958
+ path?: never;
13959
+ cookie?: never;
13960
+ };
13961
+ /**
13962
+ * Get user workspace bootstrap script
13963
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
13964
+ *
13965
+ * Returns the bootstrap script the currently authenticated user's organization runs in every user workspace at startup, or an empty script when none is set.
13966
+ */
13967
+ get: operations["get-user-workspace-bootstrap-script"];
13968
+ put?: never;
13969
+ post?: never;
13970
+ delete?: never;
13971
+ options?: never;
13972
+ head?: never;
13973
+ patch?: never;
13974
+ trace?: never;
13975
+ };
13858
13976
  "/api/user-workspace/status": {
13859
13977
  parameters: {
13860
13978
  query?: never;
@@ -14852,14 +14970,14 @@ export interface components {
14852
14970
  termsAcceptedAt: string;
14853
14971
  };
14854
14972
  AccessManagementBody: {
14855
- /** @description Enable pam_mkhomedir for automatic home directory creation */
14856
- homeDirectories: boolean;
14857
- /** @description Enable AuthorizedKeysCommand for SSH key lookup */
14858
- sshKeys: boolean;
14859
- /** @description Enable sudoers.d for pwsudo group */
14860
- sudoAccess: boolean;
14861
- /** @description Enable libnss_cache, nsswitch, and user/group cache file sync */
14862
- userPopulation: boolean;
14973
+ /** @description Enable pam_mkhomedir for automatic home directory creation; absent means unmanaged */
14974
+ homeDirectories?: boolean;
14975
+ /** @description Enable AuthorizedKeysCommand for SSH key lookup; absent means unmanaged */
14976
+ sshKeys?: boolean;
14977
+ /** @description Enable sudoers.d for pwsudo group; absent means unmanaged */
14978
+ sudoAccess?: boolean;
14979
+ /** @description Enable libnss_cache, nsswitch, and user/group cache file sync; absent means unmanaged */
14980
+ userPopulation?: boolean;
14863
14981
  };
14864
14982
  AccessibleAIProviderResponse: {
14865
14983
  /** @description Friendly display name */
@@ -15347,6 +15465,8 @@ export interface components {
15347
15465
  accountEmail?: string;
15348
15466
  /** @description Login of the connected GitHub account (copilot provider) */
15349
15467
  accountLogin?: string;
15468
+ /** @description Admin allowlist from the catalog entry; empty allows every model the provider reports */
15469
+ allowedModels?: string[] | null;
15350
15470
  /** @description Attached storage bucket infrastructure ID */
15351
15471
  bucketId?: string;
15352
15472
  /** @description Attached storage bucket name */
@@ -15367,8 +15487,6 @@ export interface components {
15367
15487
  endpoint?: string;
15368
15488
  /** @description Billing group the provider is provisioned under (managed providers) */
15369
15489
  group?: string;
15370
- /** @description Whether a custom CA certificate is configured */
15371
- hasCaCertificate?: boolean;
15372
15490
  /** @description Unique identifier for the resource */
15373
15491
  id: string;
15374
15492
  /** @description Current icon configured on the provider's catalog entry */
@@ -15391,6 +15509,11 @@ export interface components {
15391
15509
  supportsResponses?: boolean;
15392
15510
  /** @description Whether the provider reports usage information */
15393
15511
  supportsUsage?: boolean;
15512
+ /**
15513
+ * @description How the integration's TLS certificate is verified
15514
+ * @enum {string}
15515
+ */
15516
+ tlsVerification?: "public" | "ca-certificate" | "skip";
15394
15517
  /** @description The username of the user that owns this resource */
15395
15518
  user: string;
15396
15519
  };
@@ -17066,7 +17189,7 @@ export interface components {
17066
17189
  * @example cloudclusters
17067
17190
  * @enum {string}
17068
17191
  */
17069
- type: "cloudclusters";
17192
+ type: "cloudclusters" | "userworkspaces";
17070
17193
  /**
17071
17194
  * Format: date-time
17072
17195
  * @description The last update timestamp of the bootstrap script.
@@ -17284,6 +17407,8 @@ export interface components {
17284
17407
  workspaceType: string;
17285
17408
  };
17286
17409
  BuiltinProviderResponse: {
17410
+ /** @description Model IDs users may see and enable; empty allows every model the provider reports */
17411
+ allowedModels?: string[] | null;
17287
17412
  caCertificate?: string;
17288
17413
  /** Format: int64 */
17289
17414
  connectionCount: number;
@@ -17308,9 +17433,13 @@ export interface components {
17308
17433
  /** @description Connections carry a credential */
17309
17434
  requiresApiKey: boolean;
17310
17435
  /** @enum {string} */
17436
+ tlsVerification?: "public" | "ca-certificate" | "skip";
17437
+ /** @enum {string} */
17311
17438
  toolCallingMode?: "native" | "emulated" | "none";
17312
17439
  };
17313
17440
  CatalogEntryBody: {
17441
+ /** @description Model IDs users may see and enable; empty allows every model the provider reports */
17442
+ allowedModels?: string[] | null;
17314
17443
  caCertificate?: string;
17315
17444
  displayName: string;
17316
17445
  endpointOrigin: string;
@@ -17325,9 +17454,13 @@ export interface components {
17325
17454
  /** @enum {string} */
17326
17455
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
17327
17456
  /** @enum {string} */
17457
+ tlsVerification?: "public" | "ca-certificate" | "skip";
17458
+ /** @enum {string} */
17328
17459
  toolCallingMode?: "native" | "emulated" | "none";
17329
17460
  };
17330
17461
  CatalogEntryResponse: {
17462
+ /** @description Model IDs users may see and enable; empty allows every model the provider reports */
17463
+ allowedModels?: string[] | null;
17331
17464
  caCertificate?: string;
17332
17465
  /** Format: int64 */
17333
17466
  connectionCount: number;
@@ -17357,10 +17490,21 @@ export interface components {
17357
17490
  /** @description Connections carry a credential */
17358
17491
  requiresApiKey: boolean;
17359
17492
  /** @enum {string} */
17493
+ tlsVerification: "public" | "ca-certificate" | "skip";
17494
+ /** @enum {string} */
17360
17495
  toolCallingMode: "native" | "emulated" | "none";
17361
17496
  /** Format: date-time */
17362
17497
  updatedAt: string;
17363
17498
  };
17499
+ CatalogModelsOutputBody: {
17500
+ /**
17501
+ * Format: int64
17502
+ * @description Connections that reported models
17503
+ */
17504
+ connections: number;
17505
+ /** @description Union of model IDs reported live by connections mapped to this integration */
17506
+ models: string[] | null;
17507
+ };
17364
17508
  CertInfo: {
17365
17509
  /** @description DNS names the certificate covers */
17366
17510
  dnsNames?: string[] | null;
@@ -17660,6 +17804,7 @@ export interface components {
17660
17804
  csp: string;
17661
17805
  dnsZoneId?: string;
17662
17806
  dnsZoneName?: string;
17807
+ firewallRules?: components["schemas"]["NetworkFirewallRule"][] | null;
17663
17808
  id: string;
17664
17809
  name: string;
17665
17810
  natGateway: boolean;
@@ -18927,6 +19072,8 @@ export interface components {
18927
19072
  name: string;
18928
19073
  };
18929
19074
  CreateNetworkBody: {
19075
+ /** @description Custom ingress security group rules applied to resources provisioned on this network */
19076
+ firewallRules?: components["schemas"]["NetworkFirewallRule"][] | null;
18930
19077
  /** @description Name of the network */
18931
19078
  name: string;
18932
19079
  /** @description Whether to provision a NAT gateway for outbound internet access (only applies when provisioning mode is private and not peered to platform) */
@@ -20478,6 +20625,10 @@ export interface components {
20478
20625
  /** @description Resources that are unprovisioned, stopped, off, or deleted and do not need deprovisioning */
20479
20626
  inactive: components["schemas"]["UserResource"][] | null;
20480
20627
  };
20628
+ GetUserWorkspaceBootstrapScriptOutputBody: {
20629
+ /** @description The organization's user workspace bootstrap script, or empty when none is set. */
20630
+ script: string;
20631
+ };
20481
20632
  GitHubAppConfigResponse: {
20482
20633
  /** Format: int64 */
20483
20634
  appId: number;
@@ -21168,14 +21319,14 @@ export interface components {
21168
21319
  totalMAU?: number;
21169
21320
  };
21170
21321
  HeartbeatAccessManagement: {
21171
- /** @description Enable pam_mkhomedir for automatic home directory creation */
21172
- homeDirectories: boolean;
21173
- /** @description Enable AuthorizedKeysCommand for SSH key lookup */
21174
- sshKeys: boolean;
21175
- /** @description Enable sudoers.d for pwsudo group */
21176
- sudoAccess: boolean;
21177
- /** @description Enable libnss_cache, nsswitch, and user/group cache file sync */
21178
- userPopulation: boolean;
21322
+ /** @description Enable pam_mkhomedir for automatic home directory creation; absent means unmanaged */
21323
+ homeDirectories?: boolean;
21324
+ /** @description Enable AuthorizedKeysCommand for SSH key lookup; absent means unmanaged */
21325
+ sshKeys?: boolean;
21326
+ /** @description Enable sudoers.d for pwsudo group; absent means unmanaged */
21327
+ sudoAccess?: boolean;
21328
+ /** @description Enable libnss_cache, nsswitch, and user/group cache file sync; absent means unmanaged */
21329
+ userPopulation?: boolean;
21179
21330
  };
21180
21331
  HeartbeatGroup: {
21181
21332
  /**
@@ -21221,6 +21372,8 @@ export interface components {
21221
21372
  nodeOverrides?: {
21222
21373
  [key: string]: components["schemas"]["HeartbeatAccessManagement"];
21223
21374
  };
21375
+ /** @description Whether this node should report cluster-wide scheduler partitions and jobs on its next heartbeat */
21376
+ schedulerReporter: boolean;
21224
21377
  /** @description Heartbeat status */
21225
21378
  status: string;
21226
21379
  /** @description Users with access to this cluster */
@@ -23585,6 +23738,25 @@ export interface components {
23585
23738
  /** @description Zone for a zonal RDMA network. */
23586
23739
  zone?: string;
23587
23740
  };
23741
+ NetworkFirewallRule: {
23742
+ /** @description Source CIDR block allowed by this rule */
23743
+ cidr: string;
23744
+ /**
23745
+ * Format: int64
23746
+ * @description Start of the destination port range
23747
+ */
23748
+ fromPort: number;
23749
+ /**
23750
+ * @description Protocol for the rule
23751
+ * @enum {string}
23752
+ */
23753
+ protocol: "tcp" | "udp";
23754
+ /**
23755
+ * Format: int64
23756
+ * @description End of the destination port range
23757
+ */
23758
+ toPort: number;
23759
+ };
23588
23760
  NetworkInterface: {
23589
23761
  /**
23590
23762
  * @description The resource to which this network interface is attached.
@@ -24527,8 +24699,6 @@ export interface components {
24527
24699
  emulatedToolCalling?: boolean;
24528
24700
  /** @description Provider endpoint URL */
24529
24701
  endpoint?: string;
24530
- /** @description Whether a custom CA certificate is configured */
24531
- hasCaCertificate?: boolean;
24532
24702
  /** @description Unique identifier */
24533
24703
  id: string;
24534
24704
  /** @description Current icon configured on the provider's catalog entry */
@@ -24539,6 +24709,11 @@ export interface components {
24539
24709
  supportsResponses?: boolean;
24540
24710
  /** @description Whether the provider reports plan usage limits */
24541
24711
  supportsUsage?: boolean;
24712
+ /**
24713
+ * @description How the integration's TLS certificate is verified
24714
+ * @enum {string}
24715
+ */
24716
+ tlsVerification?: "public" | "ca-certificate" | "skip";
24542
24717
  /** @description AI provider type */
24543
24718
  type: string;
24544
24719
  };
@@ -24752,6 +24927,8 @@ export interface components {
24752
24927
  selfService: boolean;
24753
24928
  };
24754
24929
  OrganizationCatalogEntry: {
24930
+ /** @description Model IDs users may see and enable; empty allows every model the provider reports */
24931
+ allowedModels?: string[] | null;
24755
24932
  caCertificate?: string;
24756
24933
  /** Format: date-time */
24757
24934
  createdAt: string;
@@ -24777,6 +24954,8 @@ export interface components {
24777
24954
  /** @description Connections carry a credential */
24778
24955
  requiresApiKey: boolean;
24779
24956
  /** @enum {string} */
24957
+ tlsVerification: "public" | "ca-certificate" | "skip";
24958
+ /** @enum {string} */
24780
24959
  toolCallingMode: "native" | "emulated" | "none";
24781
24960
  /** Format: date-time */
24782
24961
  updatedAt: string;
@@ -25037,6 +25216,8 @@ export interface components {
25037
25216
  outputRate?: number;
25038
25217
  };
25039
25218
  PatchNetworkBody: {
25219
+ /** @description Custom ingress security group rules applied to resources provisioned on this network; omit to leave unchanged */
25220
+ firewallRules?: components["schemas"]["NetworkFirewallRule"][] | null;
25040
25221
  /** @description List of regions with corresponding CIDR ranges */
25041
25222
  regions: {
25042
25223
  [key: string]: string;
@@ -26900,12 +27081,12 @@ export interface components {
26900
27081
  */
26901
27082
  script: string;
26902
27083
  /**
26903
- * @description The type of the bootstrap script.
27084
+ * @description The type of the bootstrap script. cloudclusters runs on every cloud cluster before user bootstrap and health check scripts. userworkspaces runs as root in every user workspace at startup, before the home directory is prepared, with the username as the first argument; a non-zero exit stops the workspace from starting. Every user can read it from inside their workspace, so it must not contain secrets.
26904
27085
  * @default cloudclusters
26905
27086
  * @example cloudclusters
26906
27087
  * @enum {string}
26907
27088
  */
26908
- type: "cloudclusters";
27089
+ type: "cloudclusters" | "userworkspaces";
26909
27090
  };
26910
27091
  PutGitHubAppConfigInputBody: {
26911
27092
  /**
@@ -29071,14 +29252,14 @@ export interface components {
29071
29252
  };
29072
29253
  };
29073
29254
  UpdateAccessManagementBody: {
29074
- /** @description Enable pam_mkhomedir for automatic home directory creation */
29075
- homeDirectories?: boolean;
29076
- /** @description Enable AuthorizedKeysCommand for SSH key lookup */
29077
- sshKeys?: boolean;
29078
- /** @description Enable sudoers.d for pwsudo group */
29079
- sudoAccess?: boolean;
29080
- /** @description Enable libnss_cache, nsswitch, and user/group cache file sync */
29081
- userPopulation?: boolean;
29255
+ /** @description Enable pam_mkhomedir for automatic home directory creation. Send null to stop managing it. */
29256
+ homeDirectories?: boolean | null;
29257
+ /** @description Enable AuthorizedKeysCommand for SSH key lookup. Send null to stop managing it. */
29258
+ sshKeys?: boolean | null;
29259
+ /** @description Enable sudoers.d for pwsudo group. Send null to stop managing it. */
29260
+ sudoAccess?: boolean | null;
29261
+ /** @description Enable libnss_cache, nsswitch, and user/group cache file sync. Send null to stop managing it. */
29262
+ userPopulation?: boolean | null;
29082
29263
  };
29083
29264
  UpdateAdminPlatformSettingsInputBody: {
29084
29265
  /** @description Contact email registered with the ACME account. */
@@ -29876,6 +30057,11 @@ export interface components {
29876
30057
  * @example User has running workflows
29877
30058
  */
29878
30059
  notSafeToKillReason?: string;
30060
+ /**
30061
+ * @description the organization of the user associated with the workspace
30062
+ * @example parallelworks
30063
+ */
30064
+ organization?: string;
29879
30065
  /**
29880
30066
  * @description the resolved version number of the image the workspace is actually running. Read from the image tag for pinned deployments, or resolved from the running image digest via the workspace's API for 'latest'-tag deployments.
29881
30067
  * @example v7.62.0
@@ -31949,6 +32135,37 @@ export interface operations {
31949
32135
  };
31950
32136
  };
31951
32137
  };
32138
+ "list-ai-integration-catalog-models": {
32139
+ parameters: {
32140
+ query?: never;
32141
+ header?: never;
32142
+ path: {
32143
+ catalogEntryId: string;
32144
+ };
32145
+ cookie?: never;
32146
+ };
32147
+ requestBody?: never;
32148
+ responses: {
32149
+ /** @description OK */
32150
+ 200: {
32151
+ headers: {
32152
+ [name: string]: unknown;
32153
+ };
32154
+ content: {
32155
+ "application/json": components["schemas"]["CatalogModelsOutputBody"];
32156
+ };
32157
+ };
32158
+ /** @description Error */
32159
+ default: {
32160
+ headers: {
32161
+ [name: string]: unknown;
32162
+ };
32163
+ content: {
32164
+ "application/json": components["schemas"]["Error"];
32165
+ };
32166
+ };
32167
+ };
32168
+ };
31952
32169
  "delete-ai-connection": {
31953
32170
  parameters: {
31954
32171
  query?: never;
@@ -39947,7 +40164,7 @@ export interface operations {
39947
40164
  parameters: {
39948
40165
  query?: {
39949
40166
  /** @description The type of the bootstrap script. */
39950
- type?: string;
40167
+ type?: "cloudclusters" | "userworkspaces";
39951
40168
  };
39952
40169
  header?: never;
39953
40170
  path: {
@@ -45510,6 +45727,44 @@ export interface operations {
45510
45727
  };
45511
45728
  };
45512
45729
  };
45730
+ "set-organization-disable-password-login-policy": {
45731
+ parameters: {
45732
+ query?: never;
45733
+ header?: never;
45734
+ path: {
45735
+ /** @description The name of the organization. */
45736
+ organization: string;
45737
+ };
45738
+ cookie?: never;
45739
+ };
45740
+ requestBody: {
45741
+ content: {
45742
+ "application/json": boolean;
45743
+ };
45744
+ };
45745
+ responses: {
45746
+ /** @description OK */
45747
+ 200: {
45748
+ headers: {
45749
+ [name: string]: unknown;
45750
+ };
45751
+ content: {
45752
+ "application/json": {
45753
+ [key: string]: components["schemas"]["BooleanPolicyOutput"];
45754
+ };
45755
+ };
45756
+ };
45757
+ /** @description Error */
45758
+ default: {
45759
+ headers: {
45760
+ [name: string]: unknown;
45761
+ };
45762
+ content: {
45763
+ "application/json": components["schemas"]["Error"];
45764
+ };
45765
+ };
45766
+ };
45767
+ };
45513
45768
  "set-organization-enforce-mfa-policy": {
45514
45769
  parameters: {
45515
45770
  query?: never;
@@ -48830,6 +49085,8 @@ export interface operations {
48830
49085
  expiresIn?: number;
48831
49086
  /** @description The permissions for the pre-signed URL. Default is read (r). Combine: r,w,d,c. */
48832
49087
  permissions?: string;
49088
+ /** @description Content-Disposition the file is served with, so a browser download can be given a filename. Omit to serve the file as stored. */
49089
+ contentDisposition?: string;
48833
49090
  };
48834
49091
  header?: never;
48835
49092
  path: {
@@ -49019,6 +49276,8 @@ export interface operations {
49019
49276
  expiresIn?: number;
49020
49277
  /** @description The permissions for the pre-signed URL. Default is read (r). Other permissions include write (w), delete (d), list (l), add (a), create (c). Combine multiple permissions as needed. */
49021
49278
  permissions?: string;
49279
+ /** @description Content-Disposition the blob is served with, so a browser download can be given a filename. Omit to serve the blob as stored. */
49280
+ contentDisposition?: string;
49022
49281
  };
49023
49282
  header?: never;
49024
49283
  path: {
@@ -51518,6 +51777,8 @@ export interface operations {
51518
51777
  objectName: string;
51519
51778
  /** @description The expiration time in seconds for the pre-signed URL. Default is 12 hours. */
51520
51779
  expiresIn?: number;
51780
+ /** @description Content-Disposition the object is served with, so a browser download can be given a filename. Omit to serve the object as stored. */
51781
+ contentDisposition?: string;
51521
51782
  };
51522
51783
  header?: never;
51523
51784
  path: {
@@ -53701,6 +53962,80 @@ export interface operations {
53701
53962
  };
53702
53963
  };
53703
53964
  };
53965
+ "get-storage-permissions": {
53966
+ parameters: {
53967
+ query?: never;
53968
+ header?: never;
53969
+ path: {
53970
+ /** @description The name of the organization. */
53971
+ organization: string;
53972
+ /** @description Username of the target user. */
53973
+ user: string;
53974
+ /** @description Platform name of the storage. */
53975
+ name: string;
53976
+ };
53977
+ cookie?: never;
53978
+ };
53979
+ requestBody?: never;
53980
+ responses: {
53981
+ /** @description OK */
53982
+ 200: {
53983
+ headers: {
53984
+ [name: string]: unknown;
53985
+ };
53986
+ content: {
53987
+ "application/json": components["schemas"]["SubjectPermissions"];
53988
+ };
53989
+ };
53990
+ /** @description Error */
53991
+ default: {
53992
+ headers: {
53993
+ [name: string]: unknown;
53994
+ };
53995
+ content: {
53996
+ "application/json": components["schemas"]["Error"];
53997
+ };
53998
+ };
53999
+ };
54000
+ };
54001
+ "update-storage-permissions": {
54002
+ parameters: {
54003
+ query?: never;
54004
+ header?: never;
54005
+ path: {
54006
+ /** @description The name of the organization. */
54007
+ organization: string;
54008
+ /** @description Username of the target user. */
54009
+ user: string;
54010
+ /** @description Platform name of the storage. */
54011
+ name: string;
54012
+ };
54013
+ cookie?: never;
54014
+ };
54015
+ requestBody: {
54016
+ content: {
54017
+ "application/json": components["schemas"]["SubjectPermissions"];
54018
+ };
54019
+ };
54020
+ responses: {
54021
+ /** @description No Content */
54022
+ 204: {
54023
+ headers: {
54024
+ [name: string]: unknown;
54025
+ };
54026
+ content?: never;
54027
+ };
54028
+ /** @description Error */
54029
+ default: {
54030
+ headers: {
54031
+ [name: string]: unknown;
54032
+ };
54033
+ content: {
54034
+ "application/json": components["schemas"]["Error"];
54035
+ };
54036
+ };
54037
+ };
54038
+ };
53704
54039
  "get-user-workspace": {
53705
54040
  parameters: {
53706
54041
  query?: never;
@@ -55605,6 +55940,41 @@ export interface operations {
55605
55940
  };
55606
55941
  };
55607
55942
  };
55943
+ "set-platform-disable-password-login-policy": {
55944
+ parameters: {
55945
+ query?: never;
55946
+ header?: never;
55947
+ path?: never;
55948
+ cookie?: never;
55949
+ };
55950
+ requestBody: {
55951
+ content: {
55952
+ "application/json": boolean;
55953
+ };
55954
+ };
55955
+ responses: {
55956
+ /** @description OK */
55957
+ 200: {
55958
+ headers: {
55959
+ [name: string]: unknown;
55960
+ };
55961
+ content: {
55962
+ "application/json": {
55963
+ [key: string]: components["schemas"]["BooleanPolicyOutput"];
55964
+ };
55965
+ };
55966
+ };
55967
+ /** @description Error */
55968
+ default: {
55969
+ headers: {
55970
+ [name: string]: unknown;
55971
+ };
55972
+ content: {
55973
+ "application/json": components["schemas"]["Error"];
55974
+ };
55975
+ };
55976
+ };
55977
+ };
55608
55978
  "set-platform-enforce-webauthn-mfa-policy": {
55609
55979
  parameters: {
55610
55980
  query?: never;
@@ -57753,6 +58123,35 @@ export interface operations {
57753
58123
  };
57754
58124
  };
57755
58125
  };
58126
+ "get-user-workspace-bootstrap-script": {
58127
+ parameters: {
58128
+ query?: never;
58129
+ header?: never;
58130
+ path?: never;
58131
+ cookie?: never;
58132
+ };
58133
+ requestBody?: never;
58134
+ responses: {
58135
+ /** @description OK */
58136
+ 200: {
58137
+ headers: {
58138
+ [name: string]: unknown;
58139
+ };
58140
+ content: {
58141
+ "application/json": components["schemas"]["GetUserWorkspaceBootstrapScriptOutputBody"];
58142
+ };
58143
+ };
58144
+ /** @description Error */
58145
+ default: {
58146
+ headers: {
58147
+ [name: string]: unknown;
58148
+ };
58149
+ content: {
58150
+ "application/json": components["schemas"]["Error"];
58151
+ };
58152
+ };
58153
+ };
58154
+ };
57756
58155
  "get-user-workspace-status": {
57757
58156
  parameters: {
57758
58157
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parallelworks/client",
3
- "version": "7.93.0",
3
+ "version": "7.94.0",
4
4
  "description": "Official TypeScript client for Parallel Works ACTIVATE API",
5
5
  "type": "module",
6
6
  "exports": {