Skip to content

Commit 281b54a

Browse files
Merge pull request #67 from gleanwork/speakeasy-sdk-regen-1759915417
chore: 🐝 Update SDK - Generate 0.12.1
2 parents 187b3e1 + 5ddc1e4 commit 281b54a

File tree

127 files changed

+215
-150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+215
-150
lines changed

.speakeasy/gen.lock

Lines changed: 7 additions & 7 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ generation:
2727
generateNewTests: true
2828
skipResponseBodyAssertions: true
2929
typescript:
30-
version: 0.12.0
30+
version: 0.12.1
3131
acceptHeaderEnum: true
3232
additionalDependencies:
3333
dependencies: {}

.speakeasy/glean-merged-spec.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8639,6 +8639,9 @@ components:
86398639
agentName:
86408640
type: string
86418641
description: Agent name
8642+
icon:
8643+
$ref: "#/components/schemas/IconConfig"
8644+
description: Agent icon configuration
86428645
userCount:
86438646
type: integer
86448647
description: Total number of users for this agent over the specified time period.

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
speakeasyVersion: 1.635.3
1+
speakeasyVersion: 1.636.2
22
sources:
33
Glean API:
44
sourceNamespace: glean-api-specs
5-
sourceRevisionDigest: sha256:9c88586528e71ab61d6ab430aae0133ce42899151af73f3917d776b7d45785a5
6-
sourceBlobDigest: sha256:ce64a4e209ccf3f1af32689bd1d7c3aea9bf764b2b047ccb8decbc87dbdd3c1e
5+
sourceRevisionDigest: sha256:3f099971b20cdaba1d53693ee90708d1461530957b1e44009e457250d4441b05
6+
sourceBlobDigest: sha256:02db6ddd119e9c20b2130f2318039c2b6e19b0487ecb3bd5aed5e92acfe203cc
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1759451489
9+
- speakeasy-sdk-regen-1759915417
1010
Glean Client API:
1111
sourceNamespace: glean-client-api
1212
sourceRevisionDigest: sha256:aec0770b5bcca91068c3a844cb9ef4a091281f6cc3b7d86f2abef1bd6fb2b301
@@ -18,10 +18,10 @@ targets:
1818
glean:
1919
source: Glean API
2020
sourceNamespace: glean-api-specs
21-
sourceRevisionDigest: sha256:9c88586528e71ab61d6ab430aae0133ce42899151af73f3917d776b7d45785a5
22-
sourceBlobDigest: sha256:ce64a4e209ccf3f1af32689bd1d7c3aea9bf764b2b047ccb8decbc87dbdd3c1e
21+
sourceRevisionDigest: sha256:3f099971b20cdaba1d53693ee90708d1461530957b1e44009e457250d4441b05
22+
sourceBlobDigest: sha256:02db6ddd119e9c20b2130f2318039c2b6e19b0487ecb3bd5aed5e92acfe203cc
2323
codeSamplesNamespace: glean-api-specs-typescript-code-samples
24-
codeSamplesRevisionDigest: sha256:41f19d20a3534531237d946c0b3cec575723451ce480611b26e2af8e0e113d20
24+
codeSamplesRevisionDigest: sha256:c24bf6b805ddcd919f4e6046bdb9c6e393b354afb822c06e44804e236c6c6cdb
2525
workflow:
2626
workflowVersion: 1.0.0
2727
speakeasyVersion: latest

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,4 +318,14 @@ Based on:
318318
### Generated
319319
- [typescript v0.12.0] .
320320
### Releases
321-
- [NPM v0.12.0] https://www.npmjs.com/package/@gleanwork/api-client/v/0.12.0 - .
321+
- [NPM v0.12.0] https://www.npmjs.com/package/@gleanwork/api-client/v/0.12.0 - .
322+
323+
## 2025-10-09 01:10:50
324+
### Changes
325+
Based on:
326+
- OpenAPI Doc
327+
- Speakeasy CLI 1.636.2 (2.723.8) https://github.com/speakeasy-api/speakeasy
328+
### Generated
329+
- [typescript v0.12.1] .
330+
### Releases
331+
- [NPM v0.12.1] https://www.npmjs.com/package/@gleanwork/api-client/v/0.12.1 - .

RUNTIMES.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
This SDK is intended to be used in JavaScript runtimes that support ECMAScript 2020 or newer. The SDK uses the following features:
44

5-
* [Web Fetch API][web-fetch]
6-
* [Web Streams API][web-streams] and in particular `ReadableStream`
7-
* [Async iterables][async-iter] using `Symbol.asyncIterator`
5+
- [Web Fetch API][web-fetch]
6+
- [Web Streams API][web-streams] and in particular `ReadableStream`
7+
- [Async iterables][async-iter] using `Symbol.asyncIterator`
88

99
[web-fetch]: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
1010
[web-streams]: https://developer.mozilla.org/en-US/docs/Web/API/Streams_API
@@ -25,7 +25,7 @@ Runtime environments that are explicitly supported are:
2525

2626
The following `tsconfig.json` options are recommended for projects using this
2727
SDK in order to get static type support for features like async iterables,
28-
streams and `fetch`-related APIs ([`for await...of`][for-await-of],
28+
streams and `fetch`-related APIs ([`for await...of`][for-await-of],
2929
[`AbortSignal`][abort-signal], [`Request`][request], [`Response`][response] and
3030
so on):
3131

@@ -38,11 +38,11 @@ so on):
3838
{
3939
"compilerOptions": {
4040
"target": "es2020", // or higher
41-
"lib": ["es2020", "dom", "dom.iterable"],
41+
"lib": ["es2020", "dom", "dom.iterable"]
4242
}
4343
}
4444
```
4545

4646
While `target` can be set to older ECMAScript versions, it may result in extra,
4747
unnecessary compatibility code being generated if you are not targeting old
48-
runtimes.
48+
runtimes.

docs/models/components/agentsinsightsv2response.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66
import { AgentsInsightsV2Response } from "@gleanwork/api-client/models/components";
77

88
let value: AgentsInsightsV2Response = {
9+
topAgentsInsights: [
10+
{
11+
icon: {
12+
color: "#343CED",
13+
key: "person_icon",
14+
iconType: "GLYPH",
15+
name: "user",
16+
},
17+
},
18+
],
919
agentUsersInsights: [
1020
{
1121
person: {

docs/models/components/insightsresponse.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,16 @@ let value: InsightsResponse = {
559559
],
560560
},
561561
agentsResponse: {
562+
topAgentsInsights: [
563+
{
564+
icon: {
565+
color: "#343CED",
566+
key: "person_icon",
567+
iconType: "GLYPH",
568+
name: "user",
569+
},
570+
},
571+
],
562572
agentUsersInsights: [
563573
{
564574
person: {

docs/models/components/peragentinsight.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,22 @@
55
```typescript
66
import { PerAgentInsight } from "@gleanwork/api-client/models/components";
77

8-
let value: PerAgentInsight = {};
8+
let value: PerAgentInsight = {
9+
icon: {
10+
color: "#343CED",
11+
key: "person_icon",
12+
iconType: "GLYPH",
13+
name: "user",
14+
},
15+
};
916
```
1017

1118
## Fields
1219

13-
| Field | Type | Required | Description |
14-
| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
15-
| `agentId` | *string* | :heavy_minus_sign: | Agent ID |
16-
| `agentName` | *string* | :heavy_minus_sign: | Agent name |
17-
| `userCount` | *number* | :heavy_minus_sign: | Total number of users for this agent over the specified time period. |
18-
| `runCount` | *number* | :heavy_minus_sign: | Total number of runs for this agent over the specified time period. |
20+
| Field | Type | Required | Description | Example |
21+
| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
22+
| `agentId` | *string* | :heavy_minus_sign: | Agent ID | |
23+
| `agentName` | *string* | :heavy_minus_sign: | Agent name | |
24+
| `icon` | [components.IconConfig](../../models/components/iconconfig.md) | :heavy_minus_sign: | Defines how to render an icon | {<br/>"color": "#343CED",<br/>"key": "person_icon",<br/>"iconType": "GLYPH",<br/>"name": "user"<br/>} |
25+
| `userCount` | *number* | :heavy_minus_sign: | Total number of users for this agent over the specified time period. | |
26+
| `runCount` | *number* | :heavy_minus_sign: | Total number of runs for this agent over the specified time period. | |

examples/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)