@athenaintel/sdk 4.3.2169 → 4.3.2171
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.
- package/dist/cjs/BaseClient.js +2 -2
- package/dist/cjs/api/resources/meetings/client/Client.d.ts +2 -2
- package/dist/cjs/api/resources/meetings/client/Client.js +2 -2
- package/dist/cjs/api/resources/semanticModel/client/Client.d.ts +1 -0
- package/dist/cjs/api/resources/semanticModel/client/Client.js +3 -0
- package/dist/cjs/api/types/MeetingArtifactsOut.d.ts +10 -8
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.mjs +2 -2
- package/dist/esm/api/resources/meetings/client/Client.d.mts +2 -2
- package/dist/esm/api/resources/meetings/client/Client.mjs +2 -2
- package/dist/esm/api/resources/semanticModel/client/Client.d.mts +1 -0
- package/dist/esm/api/resources/semanticModel/client/Client.mjs +3 -0
- package/dist/esm/api/types/MeetingArtifactsOut.d.mts +10 -8
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
- package/reference.md +2 -2
package/dist/cjs/BaseClient.js
CHANGED
|
@@ -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.
|
|
47
|
-
"User-Agent": "@athenaintel/sdk/4.3.
|
|
46
|
+
"X-Fern-SDK-Version": "4.3.2171",
|
|
47
|
+
"User-Agent": "@athenaintel/sdk/4.3.2171",
|
|
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);
|
|
@@ -27,7 +27,7 @@ export declare class MeetingsClient {
|
|
|
27
27
|
*/
|
|
28
28
|
list(request?: AthenaIntelligence.ListMeetingsRequest, requestOptions?: MeetingsClient.RequestOptions): Promise<core.Page<AthenaIntelligence.MeetingOut, AthenaIntelligence.PaginatedMeetingsOut>>;
|
|
29
29
|
/**
|
|
30
|
-
* Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat).
|
|
30
|
+
* Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat). Meetings captured since September 2026 store their artifacts on the meeting itself, so those IDs are null for them; use the download endpoint, which serves both shapes.
|
|
31
31
|
*
|
|
32
32
|
* @param {AthenaIntelligence.GetMeetingsRequest} request
|
|
33
33
|
* @param {MeetingsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -44,7 +44,7 @@ export declare class MeetingsClient {
|
|
|
44
44
|
get(request: AthenaIntelligence.GetMeetingsRequest, requestOptions?: MeetingsClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.MeetingOut>;
|
|
45
45
|
private __get;
|
|
46
46
|
/**
|
|
47
|
-
* Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead.
|
|
47
|
+
* Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead. Works for every meeting, whether its artifacts are stored on the meeting itself (meetings captured since September 2026, whose artifact asset IDs are null) or as separate child assets.
|
|
48
48
|
*
|
|
49
49
|
* @param {AthenaIntelligence.DownloadMeetingsRequest} request
|
|
50
50
|
* @param {MeetingsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -175,7 +175,7 @@ class MeetingsClient {
|
|
|
175
175
|
});
|
|
176
176
|
}
|
|
177
177
|
/**
|
|
178
|
-
* Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat).
|
|
178
|
+
* Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat). Meetings captured since September 2026 store their artifacts on the meeting itself, so those IDs are null for them; use the download endpoint, which serves both shapes.
|
|
179
179
|
*
|
|
180
180
|
* @param {AthenaIntelligence.GetMeetingsRequest} request
|
|
181
181
|
* @param {MeetingsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -251,7 +251,7 @@ class MeetingsClient {
|
|
|
251
251
|
});
|
|
252
252
|
}
|
|
253
253
|
/**
|
|
254
|
-
* Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead.
|
|
254
|
+
* Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead. Works for every meeting, whether its artifacts are stored on the meeting itself (meetings captured since September 2026, whose artifact asset IDs are null) or as separate child assets.
|
|
255
255
|
*
|
|
256
256
|
* @param {AthenaIntelligence.DownloadMeetingsRequest} request
|
|
257
257
|
* @param {MeetingsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -36,6 +36,7 @@ export declare class SemanticModelClient {
|
|
|
36
36
|
* @param {SemanticModelClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
37
37
|
*
|
|
38
38
|
* @throws {@link AthenaIntelligence.UnauthorizedError}
|
|
39
|
+
* @throws {@link AthenaIntelligence.ForbiddenError}
|
|
39
40
|
* @throws {@link AthenaIntelligence.NotFoundError}
|
|
40
41
|
* @throws {@link AthenaIntelligence.UnprocessableEntityError}
|
|
41
42
|
* @throws {@link AthenaIntelligence.BadGatewayError}
|
|
@@ -154,6 +154,7 @@ class SemanticModelClient {
|
|
|
154
154
|
* @param {SemanticModelClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
155
155
|
*
|
|
156
156
|
* @throws {@link AthenaIntelligence.UnauthorizedError}
|
|
157
|
+
* @throws {@link AthenaIntelligence.ForbiddenError}
|
|
157
158
|
* @throws {@link AthenaIntelligence.NotFoundError}
|
|
158
159
|
* @throws {@link AthenaIntelligence.UnprocessableEntityError}
|
|
159
160
|
* @throws {@link AthenaIntelligence.BadGatewayError}
|
|
@@ -193,6 +194,8 @@ class SemanticModelClient {
|
|
|
193
194
|
switch (_response.error.statusCode) {
|
|
194
195
|
case 401:
|
|
195
196
|
throw new AthenaIntelligence.UnauthorizedError(_response.error.body, _response.rawResponse);
|
|
197
|
+
case 403:
|
|
198
|
+
throw new AthenaIntelligence.ForbiddenError(_response.error.body, _response.rawResponse);
|
|
196
199
|
case 404:
|
|
197
200
|
throw new AthenaIntelligence.NotFoundError(_response.error.body, _response.rawResponse);
|
|
198
201
|
case 422:
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Legacy asset IDs of the downloadable artifacts attached to a meeting.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
4
|
+
* Meetings captured since September 2026 are a single asset: their
|
|
5
|
+
* recording, transcript and chat are stored on the meeting itself, so every
|
|
6
|
+
* ID here is null for them and the artifacts are downloaded through the
|
|
7
|
+
* meeting download endpoint (``GET /meetings/{asset_id}/download``), which
|
|
8
|
+
* serves both shapes. Older meetings keep their child assets and their IDs.
|
|
7
9
|
*/
|
|
8
10
|
export interface MeetingArtifactsOut {
|
|
9
|
-
/** Asset ID of the in-meeting chat transcript (JSON) */
|
|
11
|
+
/** Asset ID of the in-meeting chat transcript (JSON) for meetings captured before September 2026; null for newer meetings, whose chat is downloaded via the meeting download endpoint */
|
|
10
12
|
chat_asset_id?: string | null;
|
|
11
|
-
/** Asset ID of the formatted meeting transcript (JSON) */
|
|
13
|
+
/** Asset ID of the formatted meeting transcript (JSON) for meetings captured before September 2026; null for newer meetings */
|
|
12
14
|
formatted_transcript_asset_id?: string | null;
|
|
13
|
-
/** Asset ID of the meeting video recording (MP4) */
|
|
15
|
+
/** Asset ID of the meeting video recording (MP4) for meetings captured before September 2026; null for newer meetings, whose recording is downloaded via the meeting download endpoint */
|
|
14
16
|
recording_asset_id?: string | null;
|
|
15
|
-
/** Asset ID of the raw meeting transcript (JSON) */
|
|
17
|
+
/** Asset ID of the raw meeting transcript (JSON) for meetings captured before September 2026; null for newer meetings, whose transcript is downloaded via the meeting download endpoint */
|
|
16
18
|
transcript_asset_id?: string | null;
|
|
17
19
|
}
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "4.3.
|
|
1
|
+
export declare const SDK_VERSION = "4.3.2171";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/BaseClient.mjs
CHANGED
|
@@ -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.
|
|
10
|
-
"User-Agent": "@athenaintel/sdk/4.3.
|
|
9
|
+
"X-Fern-SDK-Version": "4.3.2171",
|
|
10
|
+
"User-Agent": "@athenaintel/sdk/4.3.2171",
|
|
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);
|
|
@@ -27,7 +27,7 @@ export declare class MeetingsClient {
|
|
|
27
27
|
*/
|
|
28
28
|
list(request?: AthenaIntelligence.ListMeetingsRequest, requestOptions?: MeetingsClient.RequestOptions): Promise<core.Page<AthenaIntelligence.MeetingOut, AthenaIntelligence.PaginatedMeetingsOut>>;
|
|
29
29
|
/**
|
|
30
|
-
* Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat).
|
|
30
|
+
* Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat). Meetings captured since September 2026 store their artifacts on the meeting itself, so those IDs are null for them; use the download endpoint, which serves both shapes.
|
|
31
31
|
*
|
|
32
32
|
* @param {AthenaIntelligence.GetMeetingsRequest} request
|
|
33
33
|
* @param {MeetingsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -44,7 +44,7 @@ export declare class MeetingsClient {
|
|
|
44
44
|
get(request: AthenaIntelligence.GetMeetingsRequest, requestOptions?: MeetingsClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.MeetingOut>;
|
|
45
45
|
private __get;
|
|
46
46
|
/**
|
|
47
|
-
* Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead.
|
|
47
|
+
* Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead. Works for every meeting, whether its artifacts are stored on the meeting itself (meetings captured since September 2026, whose artifact asset IDs are null) or as separate child assets.
|
|
48
48
|
*
|
|
49
49
|
* @param {AthenaIntelligence.DownloadMeetingsRequest} request
|
|
50
50
|
* @param {MeetingsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -139,7 +139,7 @@ export class MeetingsClient {
|
|
|
139
139
|
});
|
|
140
140
|
}
|
|
141
141
|
/**
|
|
142
|
-
* Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat).
|
|
142
|
+
* Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat). Meetings captured since September 2026 store their artifacts on the meeting itself, so those IDs are null for them; use the download endpoint, which serves both shapes.
|
|
143
143
|
*
|
|
144
144
|
* @param {AthenaIntelligence.GetMeetingsRequest} request
|
|
145
145
|
* @param {MeetingsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -215,7 +215,7 @@ export class MeetingsClient {
|
|
|
215
215
|
});
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
218
|
-
* Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead.
|
|
218
|
+
* Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead. Works for every meeting, whether its artifacts are stored on the meeting itself (meetings captured since September 2026, whose artifact asset IDs are null) or as separate child assets.
|
|
219
219
|
*
|
|
220
220
|
* @param {AthenaIntelligence.DownloadMeetingsRequest} request
|
|
221
221
|
* @param {MeetingsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -36,6 +36,7 @@ export declare class SemanticModelClient {
|
|
|
36
36
|
* @param {SemanticModelClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
37
37
|
*
|
|
38
38
|
* @throws {@link AthenaIntelligence.UnauthorizedError}
|
|
39
|
+
* @throws {@link AthenaIntelligence.ForbiddenError}
|
|
39
40
|
* @throws {@link AthenaIntelligence.NotFoundError}
|
|
40
41
|
* @throws {@link AthenaIntelligence.UnprocessableEntityError}
|
|
41
42
|
* @throws {@link AthenaIntelligence.BadGatewayError}
|
|
@@ -118,6 +118,7 @@ export class SemanticModelClient {
|
|
|
118
118
|
* @param {SemanticModelClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
119
119
|
*
|
|
120
120
|
* @throws {@link AthenaIntelligence.UnauthorizedError}
|
|
121
|
+
* @throws {@link AthenaIntelligence.ForbiddenError}
|
|
121
122
|
* @throws {@link AthenaIntelligence.NotFoundError}
|
|
122
123
|
* @throws {@link AthenaIntelligence.UnprocessableEntityError}
|
|
123
124
|
* @throws {@link AthenaIntelligence.BadGatewayError}
|
|
@@ -157,6 +158,8 @@ export class SemanticModelClient {
|
|
|
157
158
|
switch (_response.error.statusCode) {
|
|
158
159
|
case 401:
|
|
159
160
|
throw new AthenaIntelligence.UnauthorizedError(_response.error.body, _response.rawResponse);
|
|
161
|
+
case 403:
|
|
162
|
+
throw new AthenaIntelligence.ForbiddenError(_response.error.body, _response.rawResponse);
|
|
160
163
|
case 404:
|
|
161
164
|
throw new AthenaIntelligence.NotFoundError(_response.error.body, _response.rawResponse);
|
|
162
165
|
case 422:
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Legacy asset IDs of the downloadable artifacts attached to a meeting.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
4
|
+
* Meetings captured since September 2026 are a single asset: their
|
|
5
|
+
* recording, transcript and chat are stored on the meeting itself, so every
|
|
6
|
+
* ID here is null for them and the artifacts are downloaded through the
|
|
7
|
+
* meeting download endpoint (``GET /meetings/{asset_id}/download``), which
|
|
8
|
+
* serves both shapes. Older meetings keep their child assets and their IDs.
|
|
7
9
|
*/
|
|
8
10
|
export interface MeetingArtifactsOut {
|
|
9
|
-
/** Asset ID of the in-meeting chat transcript (JSON) */
|
|
11
|
+
/** Asset ID of the in-meeting chat transcript (JSON) for meetings captured before September 2026; null for newer meetings, whose chat is downloaded via the meeting download endpoint */
|
|
10
12
|
chat_asset_id?: string | null;
|
|
11
|
-
/** Asset ID of the formatted meeting transcript (JSON) */
|
|
13
|
+
/** Asset ID of the formatted meeting transcript (JSON) for meetings captured before September 2026; null for newer meetings */
|
|
12
14
|
formatted_transcript_asset_id?: string | null;
|
|
13
|
-
/** Asset ID of the meeting video recording (MP4) */
|
|
15
|
+
/** Asset ID of the meeting video recording (MP4) for meetings captured before September 2026; null for newer meetings, whose recording is downloaded via the meeting download endpoint */
|
|
14
16
|
recording_asset_id?: string | null;
|
|
15
|
-
/** Asset ID of the raw meeting transcript (JSON) */
|
|
17
|
+
/** Asset ID of the raw meeting transcript (JSON) for meetings captured before September 2026; null for newer meetings, whose transcript is downloaded via the meeting download endpoint */
|
|
16
18
|
transcript_asset_id?: string | null;
|
|
17
19
|
}
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "4.3.
|
|
1
|
+
export declare const SDK_VERSION = "4.3.2171";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "4.3.
|
|
1
|
+
export const SDK_VERSION = "4.3.2171";
|
package/package.json
CHANGED
package/reference.md
CHANGED
|
@@ -3087,7 +3087,7 @@ const response = page.response;
|
|
|
3087
3087
|
<dl>
|
|
3088
3088
|
<dd>
|
|
3089
3089
|
|
|
3090
|
-
Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat).
|
|
3090
|
+
Retrieve a single meeting by its asset ID, including status, AI summary, participants, and the asset IDs of its downloadable artifacts (recording, transcripts, chat). Meetings captured since September 2026 store their artifacts on the meeting itself, so those IDs are null for them; use the download endpoint, which serves both shapes.
|
|
3091
3091
|
</dd>
|
|
3092
3092
|
</dl>
|
|
3093
3093
|
</dd>
|
|
@@ -3152,7 +3152,7 @@ await client.meetings.get({
|
|
|
3152
3152
|
<dl>
|
|
3153
3153
|
<dd>
|
|
3154
3154
|
|
|
3155
|
-
Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead.
|
|
3155
|
+
Download a meeting artifact. By default streams a ZIP archive containing metadata.json plus every available artifact (video recording, raw transcript, formatted transcript, chat). Pass the artifact parameter to download a single artifact instead. Works for every meeting, whether its artifacts are stored on the meeting itself (meetings captured since September 2026, whose artifact asset IDs are null) or as separate child assets.
|
|
3156
3156
|
</dd>
|
|
3157
3157
|
</dl>
|
|
3158
3158
|
</dd>
|