Skip to content

Commit 1a3d4e4

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.523.0
1 parent 1c0e471 commit 1a3d4e4

File tree

629 files changed

+22026
-15887
lines changed

Some content is hidden

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

629 files changed

+22026
-15887
lines changed

.eslintrc.cjs

-28
This file was deleted.

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/react-query
2+
/mcp-server
3+
/bin
4+
/.eslintcache
5+
/.speakeasy/reports
16
/funcs
27
/core.*
38
/__tests__

.npmignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
**/*
2+
!/FUNCTIONS.md
3+
!/RUNTIMES.md
4+
!/REACT_QUERY.md
25
!/**/*.ts
36
!/**/*.js
7+
!/**/*.mjs
8+
!/**/*.json
49
!/**/*.map
510

6-
/.eslintrc.js
11+
/eslint.config.mjs
712
/cjs
813
/.tshy
914
/.tshy-*

.speakeasy/gen.lock

+441-534
Large diffs are not rendered by default.

.speakeasy/workflow.lock

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
speakeasyVersion: 1.414.1
1+
speakeasyVersion: 1.523.0
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:1028a5681cdb95a67b15df8dbdc317bb263a1a3777b8f0a01adfa4cf681d5ac4
6-
sourceBlobDigest: sha256:09998bda13d2cfb8f8b4358ed65c6a132bd8a5f7fc1825bf153dec19b1c89744
5+
sourceRevisionDigest: sha256:91d12f58365da229a0ff9ce1b9f64bd6b5ad4a5dc45f3005baece2966f2d630c
6+
sourceBlobDigest: sha256:08d4395be0ba0cfabbfb2b09a508b4ee5d6767548586b7a86724fc4bd8b188b2
77
tags:
88
- latest
9-
- main
9+
- speakeasy-sdk-regen-1736295504
10+
- 0.4.0
1011
targets:
1112
speakeasy-client-sdk-typescript:
1213
source: my-source
1314
sourceNamespace: my-source
14-
sourceRevisionDigest: sha256:1028a5681cdb95a67b15df8dbdc317bb263a1a3777b8f0a01adfa4cf681d5ac4
15-
sourceBlobDigest: sha256:09998bda13d2cfb8f8b4358ed65c6a132bd8a5f7fc1825bf153dec19b1c89744
15+
sourceRevisionDigest: sha256:91d12f58365da229a0ff9ce1b9f64bd6b5ad4a5dc45f3005baece2966f2d630c
16+
sourceBlobDigest: sha256:08d4395be0ba0cfabbfb2b09a508b4ee5d6767548586b7a86724fc4bd8b188b2
17+
codeSamplesNamespace: my-source-typescript-code-samples
18+
codeSamplesRevisionDigest: sha256:52db814ac591cd0d0f771512b7f4dc92bdfe81d455b5f0054c4a526bf1f61530
1619
workflow:
1720
workflowVersion: 1.0.0
1821
speakeasyVersion: latest
@@ -29,3 +32,9 @@ workflow:
2932
publish:
3033
npm:
3134
token: $npm_token
35+
codeSamples:
36+
registry:
37+
location: registry.speakeasyapi.dev/speakeasy-self/speakeasy-self/my-source-typescript-code-samples
38+
labelOverride:
39+
fixedValue: Typescript (SDK)
40+
blocking: false

.speakeasy/workflow.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ targets:
1313
publish:
1414
npm:
1515
token: $npm_token
16+
codeSamples:
17+
registry:
18+
location: registry.speakeasyapi.dev/speakeasy-self/speakeasy-self/my-source-typescript-code-samples
19+
labelOverride:
20+
fixedValue: Typescript (SDK)
21+
blocking: false

FUNCTIONS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ specific category of applications.
2020

2121
```typescript
2222
import { SpeakeasyCore } from "@speakeasy-api/speakeasy-client-sdk-typescript/core.js";
23-
import { apisGetApis } from "@speakeasy-api/speakeasy-client-sdk-typescript/funcs/apisGetApis.js";
23+
import { artifactsCreateRemoteSource } from "@speakeasy-api/speakeasy-client-sdk-typescript/funcs/artifactsCreateRemoteSource.js";
2424
import { SDKValidationError } from "@speakeasy-api/speakeasy-client-sdk-typescript/sdk/models/errors/sdkvalidationerror.js";
2525

2626
// Use `SpeakeasyCore` for best tree-shaking performance.
@@ -32,7 +32,7 @@ const speakeasy = new SpeakeasyCore({
3232
});
3333

3434
async function run() {
35-
const res = await apisGetApis(speakeasy, {});
35+
const res = await artifactsCreateRemoteSource(speakeasy);
3636

3737
switch (true) {
3838
case res.ok:

0 commit comments

Comments
 (0)