@parallelworks/client 7.99.0 → 7.100.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 +53 -10
  2. package/package.json +1 -1
@@ -4158,7 +4158,13 @@ export interface paths {
4158
4158
  delete: operations["delete-notifications"];
4159
4159
  options?: never;
4160
4160
  head?: never;
4161
- patch?: never;
4161
+ /**
4162
+ * Update notifications
4163
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
4164
+ *
4165
+ * Marks every inbox notification as read for the currently authenticated subject.
4166
+ */
4167
+ patch: operations["update-notifications"];
4162
4168
  trace?: never;
4163
4169
  };
4164
4170
  "/api/notifications/options": {
@@ -8351,10 +8357,10 @@ export interface paths {
8351
8357
  cookie?: never;
8352
8358
  };
8353
8359
  /**
8354
- * Get summarized usage events for an allocation
8360
+ * Get summarized costs for an allocation
8355
8361
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8356
8362
  *
8357
- * Returns usage events grouped by day and type for charting and reporting.
8363
+ * Returns rated usage and cloud costs for an allocation grouped by day and by type, subtype, user, or SKU for charting and reporting.
8358
8364
  */
8359
8365
  get: operations["get-allocation-usage-events-summary"];
8360
8366
  put?: never;
@@ -8373,10 +8379,10 @@ export interface paths {
8373
8379
  cookie?: never;
8374
8380
  };
8375
8381
  /**
8376
- * Get filter options for usage events
8382
+ * Get filter options for allocation costs
8377
8383
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8378
8384
  *
8379
- * Returns distinct values for type, subtype, and user filters.
8385
+ * Returns distinct type, subtype, user, and SKU values across the allocation's rated usage and cloud costs.
8380
8386
  */
8381
8387
  get: operations["get-allocation-usage-events-filter-options"];
8382
8388
  put?: never;
@@ -18117,6 +18123,8 @@ export interface components {
18117
18123
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
18118
18124
  /** @description Connections carry a credential */
18119
18125
  requiresApiKey: boolean;
18126
+ /** @description Model IDs that reject image input; overrides the platform's built-in capability data */
18127
+ textOnlyModels?: string[] | null;
18120
18128
  /** @enum {string} */
18121
18129
  tlsVerification?: "public" | "ca-certificate" | "skip";
18122
18130
  /** @enum {string} */
@@ -18138,6 +18146,8 @@ export interface components {
18138
18146
  minimumTlsVersion: "1.2" | "1.3";
18139
18147
  /** @enum {string} */
18140
18148
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
18149
+ /** @description Model IDs that reject image input; overrides the platform's built-in capability data */
18150
+ textOnlyModels?: string[] | null;
18141
18151
  /** @enum {string} */
18142
18152
  tlsVerification?: "public" | "ca-certificate" | "skip";
18143
18153
  /** @enum {string} */
@@ -18174,6 +18184,8 @@ export interface components {
18174
18184
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
18175
18185
  /** @description Connections carry a credential */
18176
18186
  requiresApiKey: boolean;
18187
+ /** @description Model IDs that reject image input; overrides the platform's built-in capability data */
18188
+ textOnlyModels?: string[] | null;
18177
18189
  /** @enum {string} */
18178
18190
  tlsVerification: "public" | "ca-certificate" | "skip";
18179
18191
  /** @enum {string} */
@@ -21477,7 +21489,7 @@ export interface components {
21477
21489
  baseUrl?: string;
21478
21490
  /** @description PEM-encoded CA certificate the server's certificate chains to. Only accepted with ca-certificate verification. */
21479
21491
  caCertificate?: string;
21480
- /** @description New application ID. */
21492
+ /** @description New application ID. An empty value removes the OAuth application. */
21481
21493
  clientId?: string;
21482
21494
  /** @description New application secret. */
21483
21495
  clientSecret?: string;
@@ -24349,6 +24361,8 @@ export interface components {
24349
24361
  reasoning_efforts?: string[] | null;
24350
24362
  supports_responses?: boolean;
24351
24363
  supports_usage?: boolean;
24364
+ /** @description Whether the model accepts image input; absent when the platform has no capability data for it */
24365
+ supports_vision?: boolean;
24352
24366
  /** @enum {string} */
24353
24367
  tool_calling_mode: "native" | "emulated" | "none";
24354
24368
  usage_not_supported?: boolean;
@@ -25776,6 +25790,8 @@ export interface components {
25776
25790
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
25777
25791
  /** @description Connections carry a credential */
25778
25792
  requiresApiKey: boolean;
25793
+ /** @description Model IDs that reject image input; overrides the platform's built-in capability data */
25794
+ textOnlyModels?: string[] | null;
25779
25795
  /** @enum {string} */
25780
25796
  tlsVerification: "public" | "ca-certificate" | "skip";
25781
25797
  /** @enum {string} */
@@ -38747,6 +38763,33 @@ export interface operations {
38747
38763
  };
38748
38764
  };
38749
38765
  };
38766
+ "update-notifications": {
38767
+ parameters: {
38768
+ query?: never;
38769
+ header?: never;
38770
+ path?: never;
38771
+ cookie?: never;
38772
+ };
38773
+ requestBody?: never;
38774
+ responses: {
38775
+ /** @description No Content */
38776
+ 204: {
38777
+ headers: {
38778
+ [name: string]: unknown;
38779
+ };
38780
+ content?: never;
38781
+ };
38782
+ /** @description Error */
38783
+ default: {
38784
+ headers: {
38785
+ [name: string]: unknown;
38786
+ };
38787
+ content: {
38788
+ "application/json": components["schemas"]["Error"];
38789
+ };
38790
+ };
38791
+ };
38792
+ };
38750
38793
  "get-notifications-options": {
38751
38794
  parameters: {
38752
38795
  query?: never;
@@ -47818,15 +47861,15 @@ export interface operations {
47818
47861
  endDate?: string;
47819
47862
  /** @description Field to group costs by (type, subtype, user, sku) */
47820
47863
  groupBy?: string;
47821
- /** @description Filter: type matches exactly */
47864
+ /** @description Filter: comma-separated types */
47822
47865
  type?: string;
47823
- /** @description Filter: subtype matches exactly */
47866
+ /** @description Filter: comma-separated subtypes */
47824
47867
  subtype?: string;
47825
- /** @description Filter: username matches exactly */
47868
+ /** @description Filter: comma-separated usernames */
47826
47869
  user?: string;
47827
47870
  /** @description Filter: comma-separated SKU codes */
47828
47871
  sku?: string;
47829
- /** @description Filter: metadata contains this string (case-insensitive search in JSON) */
47872
+ /** @description Filter: metadata contains this string (case-insensitive search in JSON). Only rated usage carries metadata, so cloud costs are excluded. */
47830
47873
  metadata?: string;
47831
47874
  };
47832
47875
  header?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parallelworks/client",
3
- "version": "7.99.0",
3
+ "version": "7.100.0",
4
4
  "description": "Official TypeScript client for Parallel Works ACTIVATE API",
5
5
  "type": "module",
6
6
  "exports": {