@athenaintel/sdk 4.3.317 → 4.3.319

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.
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "@athenaintel/sdk",
46
- "X-Fern-SDK-Version": "4.3.317",
47
- "User-Agent": "@athenaintel/sdk/4.3.317",
46
+ "X-Fern-SDK-Version": "4.3.319",
47
+ "User-Agent": "@athenaintel/sdk/4.3.319",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -25,6 +25,6 @@ export interface UpdateSheetRangeRequest {
25
25
  export declare namespace UpdateSheetRangeRequest {
26
26
  type Values = Values.Item[];
27
27
  namespace Values {
28
- type Item = string | boolean;
28
+ type Item = string | number | number | boolean;
29
29
  }
30
30
  }
@@ -1,4 +1,3 @@
1
- import type * as AthenaIntelligence from "../index.js";
2
1
  /**
3
2
  * Model representing a single conversation message.
4
3
  */
@@ -13,5 +12,5 @@ export interface ConversationMessage {
13
12
  role: string;
14
13
  }
15
14
  export declare namespace ConversationMessage {
16
- type Content = string | AthenaIntelligence.InputMessageContentItem[];
15
+ type Content = string | Record<string, unknown>[];
17
16
  }
@@ -35,7 +35,7 @@ export interface GeneralAgentResponseMessage {
35
35
  [key: string]: any;
36
36
  }
37
37
  export declare namespace GeneralAgentResponseMessage {
38
- type Content = string | AthenaIntelligence.InputMessageContentItem[];
38
+ type Content = string | Record<string, unknown>[];
39
39
  /**
40
40
  * Unique identifier for the message or LangChain class identifier.
41
41
  */
@@ -1,4 +1,3 @@
1
- import type * as AthenaIntelligence from "../index.js";
2
1
  /**
3
2
  * Structured kwargs data for response messages with basic required fields.
4
3
  */
@@ -27,5 +26,5 @@ export interface GeneralAgentResponseMessageKwargs {
27
26
  [key: string]: any;
28
27
  }
29
28
  export declare namespace GeneralAgentResponseMessageKwargs {
30
- type Content = string | AthenaIntelligence.InputMessageContentItem[];
29
+ type Content = string | Record<string, unknown>[];
31
30
  }
@@ -1,4 +1,3 @@
1
- import type * as AthenaIntelligence from "../index.js";
2
1
  /**
3
2
  * A message to be sent to the agent.
4
3
  */
@@ -13,5 +12,5 @@ export interface InputMessage {
13
12
  [key: string]: any;
14
13
  }
15
14
  export declare namespace InputMessage {
16
- type Content = string | AthenaIntelligence.InputMessageContentItem[];
15
+ type Content = string | Record<string, unknown>[];
17
16
  }
@@ -42,7 +42,6 @@ export * from "./GetTableResponse.js";
42
42
  export * from "./GridRange.js";
43
43
  export * from "./ImageUrlContent.js";
44
44
  export * from "./InputMessage.js";
45
- export * from "./InputMessageContentItem.js";
46
45
  export * from "./NumberFormatModel.js";
47
46
  export * from "./NumberFormatType.js";
48
47
  export * from "./PaginatedAssetsOut.js";
@@ -58,7 +58,6 @@ __exportStar(require("./GetTableResponse.js"), exports);
58
58
  __exportStar(require("./GridRange.js"), exports);
59
59
  __exportStar(require("./ImageUrlContent.js"), exports);
60
60
  __exportStar(require("./InputMessage.js"), exports);
61
- __exportStar(require("./InputMessageContentItem.js"), exports);
62
61
  __exportStar(require("./NumberFormatModel.js"), exports);
63
62
  __exportStar(require("./NumberFormatType.js"), exports);
64
63
  __exportStar(require("./PaginatedAssetsOut.js"), exports);
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "4.3.317";
1
+ export declare const SDK_VERSION = "4.3.319";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "4.3.317";
4
+ exports.SDK_VERSION = "4.3.319";
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
6
6
  const headers = mergeHeaders({
7
7
  "X-Fern-Language": "JavaScript",
8
8
  "X-Fern-SDK-Name": "@athenaintel/sdk",
9
- "X-Fern-SDK-Version": "4.3.317",
10
- "User-Agent": "@athenaintel/sdk/4.3.317",
9
+ "X-Fern-SDK-Version": "4.3.319",
10
+ "User-Agent": "@athenaintel/sdk/4.3.319",
11
11
  "X-Fern-Runtime": core.RUNTIME.type,
12
12
  "X-Fern-Runtime-Version": core.RUNTIME.version,
13
13
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -25,6 +25,6 @@ export interface UpdateSheetRangeRequest {
25
25
  export declare namespace UpdateSheetRangeRequest {
26
26
  type Values = Values.Item[];
27
27
  namespace Values {
28
- type Item = string | boolean;
28
+ type Item = string | number | number | boolean;
29
29
  }
30
30
  }
@@ -1,4 +1,3 @@
1
- import type * as AthenaIntelligence from "../index.mjs";
2
1
  /**
3
2
  * Model representing a single conversation message.
4
3
  */
@@ -13,5 +12,5 @@ export interface ConversationMessage {
13
12
  role: string;
14
13
  }
15
14
  export declare namespace ConversationMessage {
16
- type Content = string | AthenaIntelligence.InputMessageContentItem[];
15
+ type Content = string | Record<string, unknown>[];
17
16
  }
@@ -35,7 +35,7 @@ export interface GeneralAgentResponseMessage {
35
35
  [key: string]: any;
36
36
  }
37
37
  export declare namespace GeneralAgentResponseMessage {
38
- type Content = string | AthenaIntelligence.InputMessageContentItem[];
38
+ type Content = string | Record<string, unknown>[];
39
39
  /**
40
40
  * Unique identifier for the message or LangChain class identifier.
41
41
  */
@@ -1,4 +1,3 @@
1
- import type * as AthenaIntelligence from "../index.mjs";
2
1
  /**
3
2
  * Structured kwargs data for response messages with basic required fields.
4
3
  */
@@ -27,5 +26,5 @@ export interface GeneralAgentResponseMessageKwargs {
27
26
  [key: string]: any;
28
27
  }
29
28
  export declare namespace GeneralAgentResponseMessageKwargs {
30
- type Content = string | AthenaIntelligence.InputMessageContentItem[];
29
+ type Content = string | Record<string, unknown>[];
31
30
  }
@@ -1,4 +1,3 @@
1
- import type * as AthenaIntelligence from "../index.mjs";
2
1
  /**
3
2
  * A message to be sent to the agent.
4
3
  */
@@ -13,5 +12,5 @@ export interface InputMessage {
13
12
  [key: string]: any;
14
13
  }
15
14
  export declare namespace InputMessage {
16
- type Content = string | AthenaIntelligence.InputMessageContentItem[];
15
+ type Content = string | Record<string, unknown>[];
17
16
  }
@@ -42,7 +42,6 @@ export * from "./GetTableResponse.mjs";
42
42
  export * from "./GridRange.mjs";
43
43
  export * from "./ImageUrlContent.mjs";
44
44
  export * from "./InputMessage.mjs";
45
- export * from "./InputMessageContentItem.mjs";
46
45
  export * from "./NumberFormatModel.mjs";
47
46
  export * from "./NumberFormatType.mjs";
48
47
  export * from "./PaginatedAssetsOut.mjs";
@@ -42,7 +42,6 @@ export * from "./GetTableResponse.mjs";
42
42
  export * from "./GridRange.mjs";
43
43
  export * from "./ImageUrlContent.mjs";
44
44
  export * from "./InputMessage.mjs";
45
- export * from "./InputMessageContentItem.mjs";
46
45
  export * from "./NumberFormatModel.mjs";
47
46
  export * from "./NumberFormatType.mjs";
48
47
  export * from "./PaginatedAssetsOut.mjs";
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "4.3.317";
1
+ export declare const SDK_VERSION = "4.3.319";
@@ -1 +1 @@
1
- export const SDK_VERSION = "4.3.317";
1
+ export const SDK_VERSION = "4.3.319";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenaintel/sdk",
3
- "version": "4.3.317",
3
+ "version": "4.3.319",
4
4
  "private": false,
5
5
  "repository": "github:Athena-Intel/athena-typescript",
6
6
  "type": "commonjs",
@@ -1,10 +0,0 @@
1
- import type * as AthenaIntelligence from "../index.js";
2
- export type InputMessageContentItem = AthenaIntelligence.InputMessageContentItem.Text | AthenaIntelligence.InputMessageContentItem.ImageUrl;
3
- export declare namespace InputMessageContentItem {
4
- interface Text extends AthenaIntelligence.TextContent {
5
- type: "text";
6
- }
7
- interface ImageUrl extends AthenaIntelligence.ImageUrlContent {
8
- type: "image_url";
9
- }
10
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- // This file was auto-generated by Fern from our API Definition.
3
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,10 +0,0 @@
1
- import type * as AthenaIntelligence from "../index.mjs";
2
- export type InputMessageContentItem = AthenaIntelligence.InputMessageContentItem.Text | AthenaIntelligence.InputMessageContentItem.ImageUrl;
3
- export declare namespace InputMessageContentItem {
4
- interface Text extends AthenaIntelligence.TextContent {
5
- type: "text";
6
- }
7
- interface ImageUrl extends AthenaIntelligence.ImageUrlContent {
8
- type: "image_url";
9
- }
10
- }
@@ -1,2 +0,0 @@
1
- // This file was auto-generated by Fern from our API Definition.
2
- export {};