Skip to content

Commit 9e36e5b

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.557.0
1 parent 552e9a1 commit 9e36e5b

File tree

1,035 files changed

+21931
-17391
lines changed

Some content is hidden

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

1,035 files changed

+21931
-17391
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.DS_Store
2+
**/.speakeasy/temp/
3+
**/.speakeasy/logs/
4+
.DS_Store
15
/mcp-server
26
/bin
37
/.eslintcache

.speakeasy/gen.lock

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

.speakeasy/gen.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,27 @@ generation:
44
maintainOpenAPIOrder: true
55
usageSnippets:
66
optionalPropertyRendering: withExample
7+
sdkInitStyle: constructor
78
useClassNamesForArrayFields: true
89
fixes:
910
nameResolutionDec2023: true
1011
nameResolutionFeb2025: true
1112
parameterOrderingFeb2024: true
1213
requestResponseComponentNamesFeb2024: true
1314
securityFeb2025: false
15+
sharedErrorComponentsApr2025: false
1416
auth:
1517
oAuth2ClientCredentialsEnabled: false
1618
oAuth2PasswordEnabled: false
1719
typescript:
18-
version: 0.2.0
20+
version: 0.3.0
1921
additionalDependencies:
2022
dependencies: {}
2123
devDependencies: {}
2224
peerDependencies: {}
2325
additionalPackageJSON: {}
2426
author: Speakeasy
27+
baseErrorName: DocumensoError
2528
clientServerStatusCodesAsErrors: true
2629
defaultErrorName: APIError
2730
enableCustomCodeRegions: false

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.531.0
1+
speakeasyVersion: 1.557.0
22
sources:
33
Documenso v2 beta API:
44
sourceNamespace: documenso-v-2-beta-api
5-
sourceRevisionDigest: sha256:f6430b0cc0c2d5b7a14e59359376c04f78458dd953a630f4a58093e86b4b56f7
6-
sourceBlobDigest: sha256:b5ace18675a2927ed909e9e7210586bfd0bad91e1efebe408005432746a1511c
5+
sourceRevisionDigest: sha256:4a3eda4d4da023cae10ad3029a2b254e8e115dd38bb3ea9a56a570441f031b98
6+
sourceBlobDigest: sha256:98889fe156a5607596eb2c3682bdd80aeb8050f574eec2dcb1512b6172b1388b
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1738455725
9+
- speakeasy-sdk-regen-1744935756
1010
- 0.0.0
1111
targets:
1212
documenso:
1313
source: Documenso v2 beta API
1414
sourceNamespace: documenso-v-2-beta-api
15-
sourceRevisionDigest: sha256:f6430b0cc0c2d5b7a14e59359376c04f78458dd953a630f4a58093e86b4b56f7
16-
sourceBlobDigest: sha256:b5ace18675a2927ed909e9e7210586bfd0bad91e1efebe408005432746a1511c
15+
sourceRevisionDigest: sha256:4a3eda4d4da023cae10ad3029a2b254e8e115dd38bb3ea9a56a570441f031b98
16+
sourceBlobDigest: sha256:98889fe156a5607596eb2c3682bdd80aeb8050f574eec2dcb1512b6172b1388b
1717
codeSamplesNamespace: documenso-v-2-beta-api-typescript-code-samples
18-
codeSamplesRevisionDigest: sha256:7e83428fa1487934908f1a11ba3bea73bbe1d662ab1fbed2c80e7f33ac7f99d2
18+
codeSamplesRevisionDigest: sha256:8eea490aba249e3eac97131de6744739de80e45cd2a997c8d6c4b30ac069d585
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

FUNCTIONS.md

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ specific category of applications.
2121
```typescript
2222
import { DocumensoCore } from "@documenso/sdk-typescript/core.js";
2323
import { documentsFind } from "@documenso/sdk-typescript/funcs/documentsFind.js";
24-
import { SDKValidationError } from "@documenso/sdk-typescript/models/errors/sdkvalidationerror.js";
2524

2625
// Use `DocumensoCore` for best tree-shaking performance.
2726
// You can create one instance of it to use across an application.
@@ -31,28 +30,12 @@ const documenso = new DocumensoCore({
3130

3231
async function run() {
3332
const res = await documentsFind(documenso, {});
34-
35-
switch (true) {
36-
case res.ok:
37-
// The success case will be handled outside of the switch block
38-
break;
39-
case res.error instanceof SDKValidationError:
40-
// Pretty-print validation errors.
41-
return console.log(res.error.pretty());
42-
case res.error instanceof Error:
43-
return console.log(res.error);
44-
default:
45-
// TypeScript's type checking will fail on the following line if the above
46-
// cases were not exhaustive.
47-
res.error satisfies never;
48-
throw new Error("Assertion failed: expected error checks to be exhaustive: " + res.error);
33+
if (res.ok) {
34+
const { value: result } = res;
35+
console.log(result);
36+
} else {
37+
console.log("documentsFind failed:", res.error);
4938
}
50-
51-
52-
const { value: result } = res;
53-
54-
// Handle the result
55-
console.log(result);
5639
}
5740

5841
run();

README.md

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

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,14 @@ Based on:
2828
### Generated
2929
- [typescript v0.2.0] .
3030
### Releases
31-
- [NPM v0.2.0] https://www.npmjs.com/package/@documenso/sdk-typescript/v/0.2.0 - .
31+
- [NPM v0.2.0] https://www.npmjs.com/package/@documenso/sdk-typescript/v/0.2.0 - .
32+
33+
## 2025-06-07 00:23:49
34+
### Changes
35+
Based on:
36+
- OpenAPI Doc
37+
- Speakeasy CLI 1.557.0 (2.623.0) https://github.com/speakeasy-api/speakeasy
38+
### Generated
39+
- [typescript v0.3.0] .
40+
### Releases
41+
- [NPM v0.3.0] https://www.npmjs.com/package/@documenso/sdk-typescript/v/0.3.0 - .

USAGE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const documenso = new Documenso({
99
async function run() {
1010
const result = await documenso.documents.find({});
1111

12-
// Handle the result
1312
console.log(result);
1413
}
1514

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# EmbeddingPresignCreateEmbeddingPresignTokenBadRequestError
2+
3+
Invalid input data
4+
5+
## Example Usage
6+
7+
```typescript
8+
import { EmbeddingPresignCreateEmbeddingPresignTokenBadRequestError } from "@documenso/sdk-typescript/models/errors";
9+
10+
// No examples available for this model
11+
```
12+
13+
## Fields
14+
15+
| Field | Type | Required | Description |
16+
| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
17+
| `message` | *string* | :heavy_check_mark: | N/A |
18+
| `code` | *string* | :heavy_check_mark: | N/A |
19+
| `issues` | [errors.EmbeddingPresignCreateEmbeddingPresignTokenBadRequestIssue](../../models/errors/embeddingpresigncreateembeddingpresigntokenbadrequestissue.md)[] | :heavy_minus_sign: | N/A |
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EmbeddingPresignCreateEmbeddingPresignTokenBadRequestIssue
2+
3+
## Example Usage
4+
5+
```typescript
6+
import { EmbeddingPresignCreateEmbeddingPresignTokenBadRequestIssue } from "@documenso/sdk-typescript/models/errors";
7+
8+
let value: EmbeddingPresignCreateEmbeddingPresignTokenBadRequestIssue = {
9+
message: "<value>",
10+
};
11+
```
12+
13+
## Fields
14+
15+
| Field | Type | Required | Description |
16+
| ------------------ | ------------------ | ------------------ | ------------------ |
17+
| `message` | *string* | :heavy_check_mark: | N/A |
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# EmbeddingPresignCreateEmbeddingPresignTokenInternalServerError
2+
3+
Internal server error
4+
5+
## Example Usage
6+
7+
```typescript
8+
import { EmbeddingPresignCreateEmbeddingPresignTokenInternalServerError } from "@documenso/sdk-typescript/models/errors";
9+
10+
// No examples available for this model
11+
```
12+
13+
## Fields
14+
15+
| Field | Type | Required | Description |
16+
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
17+
| `message` | *string* | :heavy_check_mark: | N/A |
18+
| `code` | *string* | :heavy_check_mark: | N/A |
19+
| `issues` | [errors.EmbeddingPresignCreateEmbeddingPresignTokenInternalServerErrorIssue](../../models/errors/embeddingpresigncreateembeddingpresigntokeninternalservererrorissue.md)[] | :heavy_minus_sign: | N/A |
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# EmbeddingPresignCreateEmbeddingPresignTokenInternalServerErrorIssue
2+
3+
## Example Usage
4+
5+
```typescript
6+
import { EmbeddingPresignCreateEmbeddingPresignTokenInternalServerErrorIssue } from "@documenso/sdk-typescript/models/errors";
7+
8+
let value: EmbeddingPresignCreateEmbeddingPresignTokenInternalServerErrorIssue =
9+
{
10+
message: "<value>",
11+
};
12+
```
13+
14+
## Fields
15+
16+
| Field | Type | Required | Description |
17+
| ------------------ | ------------------ | ------------------ | ------------------ |
18+
| `message` | *string* | :heavy_check_mark: | N/A |
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# EmbeddingPresignVerifyEmbeddingPresignTokenBadRequestError
2+
3+
Invalid input data
4+
5+
## Example Usage
6+
7+
```typescript
8+
import { EmbeddingPresignVerifyEmbeddingPresignTokenBadRequestError } from "@documenso/sdk-typescript/models/errors";
9+
10+
// No examples available for this model
11+
```
12+
13+
## Fields
14+
15+
| Field | Type | Required | Description |
16+
| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
17+
| `message` | *string* | :heavy_check_mark: | N/A |
18+
| `code` | *string* | :heavy_check_mark: | N/A |
19+
| `issues` | [errors.EmbeddingPresignVerifyEmbeddingPresignTokenBadRequestIssue](../../models/errors/embeddingpresignverifyembeddingpresigntokenbadrequestissue.md)[] | :heavy_minus_sign: | N/A |
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EmbeddingPresignVerifyEmbeddingPresignTokenBadRequestIssue
2+
3+
## Example Usage
4+
5+
```typescript
6+
import { EmbeddingPresignVerifyEmbeddingPresignTokenBadRequestIssue } from "@documenso/sdk-typescript/models/errors";
7+
8+
let value: EmbeddingPresignVerifyEmbeddingPresignTokenBadRequestIssue = {
9+
message: "<value>",
10+
};
11+
```
12+
13+
## Fields
14+
15+
| Field | Type | Required | Description |
16+
| ------------------ | ------------------ | ------------------ | ------------------ |
17+
| `message` | *string* | :heavy_check_mark: | N/A |

0 commit comments

Comments
 (0)