Skip to content

Commit d747e05

Browse files
Merge pull request #13 from gleanwork/speakeasy-sdk-regen-1747098848
chore: 🐝 Update SDK - Generate 0.4.0
2 parents e5e1679 + 4d19464 commit d747e05

File tree

390 files changed

+90444
-30921
lines changed

Some content is hidden

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

390 files changed

+90444
-30921
lines changed

.speakeasy/gen.lock

Lines changed: 497 additions & 692 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
@@ -22,7 +22,7 @@ generation:
2222
generateNewTests: true
2323
skipResponseBodyAssertions: true
2424
go:
25-
version: 0.3.0
25+
version: 0.4.0
2626
additionalDependencies: {}
2727
allowUnknownFieldsInWeakUnions: false
2828
clientServerStatusCodesAsErrors: true

.speakeasy/glean-merged-spec.yaml

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

.speakeasy/tests.arazzo.yaml

Lines changed: 173 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139650,3 +139650,176 @@ workflows:
139650139650
"{\"messages\":[{\"author\":\"GLEAN_AI\",\"messageType\":\"CONTENT\",\"agentConfig\":{\"agent\":\"DEFAULT\",\"mode\":\"DEFAULT\"},\"citations\":[{\"sourceDocument\":{\"id\":\"123\",\"title\":\"Company Handbook\",\"referenceRanges\":[{\"textRange\":{\"startIndex\":0,\"endIndex\":12,\"type\":\"CITATION\"}}]}}]}]}"
139651139651
type: simple
139652139652
x-speakeasy-test-group: chat
139653+
- workflowId: getAgent
139654+
steps:
139655+
- stepId: test
139656+
operationId: getAgent
139657+
parameters:
139658+
- name: agent_id
139659+
in: path
139660+
value: <id>
139661+
successCriteria:
139662+
- condition: $statusCode == 200
139663+
- condition: $response.header.Content-Type == application/json
139664+
- context: $response.body
139665+
condition: |
139666+
{
139667+
"agent_id": "\u003cid\u003e",
139668+
"name": "\u003cvalue\u003e",
139669+
"capabilities": {}
139670+
}
139671+
type: simple
139672+
x-speakeasy-test-group: agents
139673+
- workflowId: getAgentSchemas
139674+
steps:
139675+
- stepId: test
139676+
operationId: getAgentSchemas
139677+
parameters:
139678+
- name: agent_id
139679+
in: path
139680+
value: <id>
139681+
successCriteria:
139682+
- condition: $statusCode == 200
139683+
- condition: $response.header.Content-Type == application/json
139684+
- context: $response.body
139685+
condition: |
139686+
{
139687+
"agent_id": "\u003cid\u003e",
139688+
"input_schema": {},
139689+
"output_schema": {}
139690+
}
139691+
type: simple
139692+
x-speakeasy-test-group: agents
139693+
- workflowId: searchAgents
139694+
steps:
139695+
- stepId: test
139696+
operationId: searchAgents
139697+
requestBody:
139698+
contentType: application/json
139699+
payload: {}
139700+
successCriteria:
139701+
- condition: $statusCode == 200
139702+
- condition: $response.header.Content-Type == application/json
139703+
- context: $response.body
139704+
condition: |
139705+
{}
139706+
type: simple
139707+
x-speakeasy-test-group: agents
139708+
- workflowId: createAndStreamRun
139709+
steps:
139710+
- stepId: test
139711+
operationId: createAndStreamRun
139712+
requestBody:
139713+
contentType: application/json
139714+
payload: {}
139715+
successCriteria:
139716+
- condition: $statusCode == 200
139717+
- condition: $response.header.Content-Type == text/event-stream
139718+
- context: $response.body
139719+
condition: |
139720+
"\u003cvalue\u003e"
139721+
type: simple
139722+
x-speakeasy-test-group: agents
139723+
- workflowId: createAndWaitRun
139724+
steps:
139725+
- stepId: test
139726+
operationId: createAndWaitRun
139727+
requestBody:
139728+
contentType: application/json
139729+
payload: {}
139730+
successCriteria:
139731+
- condition: $statusCode == 200
139732+
- condition: $response.header.Content-Type == application/json
139733+
- context: $response.body
139734+
condition: |
139735+
{}
139736+
type: simple
139737+
x-speakeasy-test-group: agents
139738+
- workflowId: getpolicy
139739+
steps:
139740+
- stepId: test
139741+
operationId: getpolicy
139742+
parameters:
139743+
- name: id
139744+
in: path
139745+
value: <id>
139746+
successCriteria:
139747+
- condition: $statusCode == 200
139748+
- condition: $response.header.Content-Type == application/json
139749+
- context: $response.body
139750+
condition: |
139751+
{}
139752+
type: simple
139753+
x-speakeasy-test-group: policies
139754+
- workflowId: getpolicies
139755+
steps:
139756+
- stepId: test
139757+
operationId: getpolicies
139758+
successCriteria:
139759+
- condition: $statusCode == 200
139760+
- condition: $response.header.Content-Type == application/json
139761+
- context: $response.body
139762+
condition: |
139763+
{}
139764+
type: simple
139765+
x-speakeasy-test-group: policies
139766+
- workflowId: downloadpolicycsv
139767+
steps:
139768+
- stepId: test
139769+
operationId: downloadpolicycsv
139770+
parameters:
139771+
- name: id
139772+
in: path
139773+
value: <id>
139774+
successCriteria:
139775+
- condition: $statusCode == 200
139776+
- condition: $response.header.Content-Type == text/csv; charset=UTF-8
139777+
- context: $response.body
139778+
condition: |
139779+
"\u003cvalue\u003e"
139780+
type: simple
139781+
x-speakeasy-test-group: policies
139782+
- workflowId: downloadreportcsv
139783+
steps:
139784+
- stepId: test
139785+
operationId: downloadreportcsv
139786+
parameters:
139787+
- name: id
139788+
in: path
139789+
value: <id>
139790+
successCriteria:
139791+
- condition: $statusCode == 200
139792+
- condition: $response.header.Content-Type == text/csv; charset=UTF-8
139793+
- context: $response.body
139794+
condition: |
139795+
"\u003cvalue\u003e"
139796+
type: simple
139797+
x-speakeasy-test-group: reports
139798+
- workflowId: getreportstatus
139799+
steps:
139800+
- stepId: test
139801+
operationId: getreportstatus
139802+
parameters:
139803+
- name: id
139804+
in: path
139805+
value: <id>
139806+
successCriteria:
139807+
- condition: $statusCode == 200
139808+
- condition: $response.header.Content-Type == application/json; charset=UTF-8
139809+
- context: $response.body
139810+
condition: |
139811+
{}
139812+
type: simple
139813+
x-speakeasy-test-group: reports
139814+
- workflowId: getdocvisibility
139815+
steps:
139816+
- stepId: test
139817+
operationId: getdocvisibility
139818+
successCriteria:
139819+
- condition: $statusCode == 200
139820+
- condition: $response.header.Content-Type == application/json; charset=UTF-8
139821+
- context: $response.body
139822+
condition: |
139823+
{}
139824+
type: simple
139825+
x-speakeasy-test-group: visibilityoverrides

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
speakeasyVersion: 1.543.1
1+
speakeasyVersion: 1.546.1
22
sources:
33
Glean API:
44
sourceNamespace: glean-api-specs
5-
sourceRevisionDigest: sha256:82bb62b5b7c3fdce61c9cf5c25bc2661f776c5ee5d007e9776961a08aabb8877
6-
sourceBlobDigest: sha256:48b2f6720cfd61b99c4cf5dc168fab967984c5c20d2ac425b99ce326f3291647
5+
sourceRevisionDigest: sha256:12025ddda6d78666c39b69cec5ea04504ae09fc142cbdb3c33b0c4018d9e7493
6+
sourceBlobDigest: sha256:2ad51e5bc2b18513ffbe1cce35e497bba4fc3a86bdf55f9ffe2463b8f7e154ee
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1746754241
9+
- speakeasy-sdk-regen-1747098848
1010
petstore-oas:
1111
sourceNamespace: petstore-oas
1212
sourceRevisionDigest: sha256:97b2eff2f43ce14276d28efc41ec5de8034cde61db8445f12b626e4dc88ea40e
@@ -18,10 +18,10 @@ targets:
1818
glean:
1919
source: Glean API
2020
sourceNamespace: glean-api-specs
21-
sourceRevisionDigest: sha256:82bb62b5b7c3fdce61c9cf5c25bc2661f776c5ee5d007e9776961a08aabb8877
22-
sourceBlobDigest: sha256:48b2f6720cfd61b99c4cf5dc168fab967984c5c20d2ac425b99ce326f3291647
21+
sourceRevisionDigest: sha256:12025ddda6d78666c39b69cec5ea04504ae09fc142cbdb3c33b0c4018d9e7493
22+
sourceBlobDigest: sha256:2ad51e5bc2b18513ffbe1cce35e497bba4fc3a86bdf55f9ffe2463b8f7e154ee
2323
codeSamplesNamespace: glean-api-specs-go-code-samples
24-
codeSamplesRevisionDigest: sha256:548ab80ece00e5351a49dd2953e2629af574a58bf88c645c4dc29e4d61b86e98
24+
codeSamplesRevisionDigest: sha256:e4137153692fd1e07d2c889e4ec676bcd7ef08921d9c4e4609116210fa28e985
2525
petstore:
2626
source: petstore-oas
2727
sourceNamespace: petstore-oas

0 commit comments

Comments
 (0)