Skip to content

Commit 30f3a6f

Browse files
committed
## Typescript SDK Changes:
* `stackone.actions.searchActions()`: * `request.minSimilarity` **Added**
1 parent fd6727e commit 30f3a6f

281 files changed

Lines changed: 1149 additions & 1125 deletions

File tree

Some content is hidden

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

.npmignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@
55
!/**/*.ts
66
!/**/*.js
77
!/**/*.mjs
8-
!/**/*.json
8+
!/package.json
9+
!/jsr.json
10+
!/dist/**/*.json
11+
!/esm/**/*.json
912
!/**/*.map
1013

1114
/eslint.config.mjs
15+
/.oxlintrc.json
1216
/cjs
1317
/.tshy
1418
/.tshy-*

.speakeasy/gen.lock

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

.speakeasy/workflow.lock

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
speakeasyVersion: 1.724.0
1+
speakeasyVersion: 1.749.1
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:8bb7ab7723cbc38f04ddb717ed437b9badeceac12656d0c82e1930ab367105d2
6-
sourceBlobDigest: sha256:a112202df1d9a4d6d26375da6dd20c83e2ef890b08a5e0227cb0a407546580e0
5+
sourceRevisionDigest: sha256:02878990fda613f51eb75d8e8eaead47b761312037e6b4c600dd2899f182dc15
6+
sourceBlobDigest: sha256:6673f655f456cb1bdc9f855ccfe632425827e261139fa58fb98103b6217ae784
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1771233905
109
- 1.0.0
1110
targets:
1211
StackOneTypeScriptClient:
1312
source: my-source
1413
sourceNamespace: my-source
15-
sourceRevisionDigest: sha256:8bb7ab7723cbc38f04ddb717ed437b9badeceac12656d0c82e1930ab367105d2
16-
sourceBlobDigest: sha256:a112202df1d9a4d6d26375da6dd20c83e2ef890b08a5e0227cb0a407546580e0
14+
sourceRevisionDigest: sha256:02878990fda613f51eb75d8e8eaead47b761312037e6b4c600dd2899f182dc15
15+
sourceBlobDigest: sha256:6673f655f456cb1bdc9f855ccfe632425827e261139fa58fb98103b6217ae784
1716
codeSamplesNamespace: code-samples-typescript-stackonetypescriptclient
18-
codeSamplesRevisionDigest: sha256:8d68f25d40c18823f9f3d82007882412f814dc0d4aa37c0d9ed6da0424950810
17+
codeSamplesRevisionDigest: sha256:7f42f5b50c9ff763382c3798d160646c4b662976dc356dadd1e437c9c8d3f349
1918
workflow:
2019
workflowVersion: 1.0.0
2120
speakeasyVersion: latest

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2076,4 +2076,14 @@ Based on:
20762076
### Generated
20772077
- [typescript v4.34.1] .
20782078
### Releases
2079-
- [NPM v4.34.1] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.34.1 - .
2079+
- [NPM v4.34.1] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.34.1 - .
2080+
2081+
## 2026-03-09 09:22:06
2082+
### Changes
2083+
Based on:
2084+
- OpenAPI Doc
2085+
- Speakeasy CLI 1.749.1 (2.855.2) https://github.com/speakeasy-api/speakeasy
2086+
### Generated
2087+
- [typescript v4.34.2] .
2088+
### Releases
2089+
- [NPM v4.34.2] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/4.34.2 - .

docs/sdk/models/shared/accountaddressschemasvalue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ The ISO 3166-1 alpha-2 code of the country.
88
import { AccountAddressSchemasValue } from "@stackone/stackone-client-ts/sdk/models/shared";
99

1010
let value: AccountAddressSchemasValue = AccountAddressSchemasValue.Gb;
11+
12+
// Open enum: unrecognized values are captured as Unrecognized<string>
1113
```
1214

1315
## Values
1416

15-
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
16-
1717
| Name | Value |
1818
| ---------------------- | ---------------------- |
1919
| `Af` | AF |

docs/sdk/models/shared/accountaddressvalue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ The type of the location.
88
import { AccountAddressValue } from "@stackone/stackone-client-ts/sdk/models/shared";
99

1010
let value: AccountAddressValue = AccountAddressValue.Home;
11+
12+
// Open enum: unrecognized values are captured as Unrecognized<string>
1113
```
1214

1315
## Values
1416

15-
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
16-
1717
| Name | Value |
1818
| ---------------------- | ---------------------- |
1919
| `Home` | home |

docs/sdk/models/shared/accountingaccountresultvalue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Type of account
88
import { AccountingAccountResultValue } from "@stackone/stackone-client-ts/sdk/models/shared";
99

1010
let value: AccountingAccountResultValue = AccountingAccountResultValue.Asset;
11+
12+
// Open enum: unrecognized values are captured as Unrecognized<string>
1113
```
1214

1315
## Values
1416

15-
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
16-
1717
| Name | Value |
1818
| ---------------------- | ---------------------- |
1919
| `Asset` | asset |

docs/sdk/models/shared/accountingaccountvalue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Type of account
88
import { AccountingAccountValue } from "@stackone/stackone-client-ts/sdk/models/shared";
99

1010
let value: AccountingAccountValue = AccountingAccountValue.Asset;
11+
12+
// Open enum: unrecognized values are captured as Unrecognized<string>
1113
```
1214

1315
## Values
1416

15-
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
16-
1717
| Name | Value |
1818
| ---------------------- | ---------------------- |
1919
| `Asset` | asset |

docs/sdk/models/shared/accountingcompanyresultvalue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Default currency for the company
88
import { AccountingCompanyResultValue } from "@stackone/stackone-client-ts/sdk/models/shared";
99

1010
let value: AccountingCompanyResultValue = AccountingCompanyResultValue.Usd;
11+
12+
// Open enum: unrecognized values are captured as Unrecognized<string>
1113
```
1214

1315
## Values
1416

15-
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
16-
1717
| Name | Value |
1818
| ---------------------- | ---------------------- |
1919
| `Aed` | AED |

docs/sdk/models/shared/accountingcompanyvalue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Default currency for the company
88
import { AccountingCompanyValue } from "@stackone/stackone-client-ts/sdk/models/shared";
99

1010
let value: AccountingCompanyValue = AccountingCompanyValue.Usd;
11+
12+
// Open enum: unrecognized values are captured as Unrecognized<string>
1113
```
1214

1315
## Values
1416

15-
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
16-
1717
| Name | Value |
1818
| ---------------------- | ---------------------- |
1919
| `Aed` | AED |

0 commit comments

Comments
 (0)