Skip to content

Commit 5ed11d8

Browse files
versions
1 parent 65aeec3 commit 5ed11d8

File tree

9 files changed

+29
-20
lines changed

9 files changed

+29
-20
lines changed

.speakeasy/gen.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ management:
55
docVersion: 1.0.0
66
speakeasyVersion: 1.615.2
77
generationVersion: 2.698.4
8-
releaseVersion: 0.0.2
9-
configChecksum: 0476083f8fdb7a8da917817a84979ff4
8+
releaseVersion: 0.0.5
9+
configChecksum: 914d6ee72801180588c07e847bf137ef
1010
repoURL: https://github.com/charliedevelops/dokploy-sdk-ts.git
1111
installationURL: https://github.com/charliedevelops/dokploy-sdk-ts
12+
published: true
1213
features:
1314
typescript:
1415
additionalDependencies: 0.1.0

.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: false
2929
typescript:
30-
version: 0.0.2
30+
version: 0.0.5
3131
additionalDependencies:
3232
dependencies: {}
3333
devDependencies: {}

.speakeasy/workflow.lock

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,22 @@ sources:
66
sourceBlobDigest: sha256:e9a09bd4c3668899d5a7dcb0002cfa69fd53ba8e9664de8ab9dc028b03f1dbfb
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1757762271
109
- 1.0.0
1110
targets:
11+
dokploy:
12+
source: Dokploy API
13+
sourceNamespace: dokploy-api
14+
sourceRevisionDigest: sha256:3d4517a3dfb81e139fc097c6131f8270036e2396ea168aa0c8e14d964269dbe0
15+
sourceBlobDigest: sha256:e9a09bd4c3668899d5a7dcb0002cfa69fd53ba8e9664de8ab9dc028b03f1dbfb
16+
codeSamplesNamespace: dokploy-api-typescript-code-samples
17+
codeSamplesRevisionDigest: sha256:38db6d5c740941a93dd8ee823d99faa36b438e6a261e59e6c8109f129e2626ce
1218
typescript:
1319
source: Dokploy API
1420
sourceNamespace: dokploy-api
1521
sourceRevisionDigest: sha256:3d4517a3dfb81e139fc097c6131f8270036e2396ea168aa0c8e14d964269dbe0
1622
sourceBlobDigest: sha256:e9a09bd4c3668899d5a7dcb0002cfa69fd53ba8e9664de8ab9dc028b03f1dbfb
1723
codeSamplesNamespace: dokploy-api-typescript-code-samples
18-
codeSamplesRevisionDigest: sha256:7d020bb5d7843c680b3cc6375d862f5c063380c76070896ff919eadcc4cec708
24+
codeSamplesRevisionDigest: sha256:38db6d5c740941a93dd8ee823d99faa36b438e6a261e59e6c8109f129e2626ce
1925
workflow:
2026
workflowVersion: 1.0.0
2127
speakeasyVersion: latest
@@ -30,6 +36,9 @@ workflow:
3036
dokploy:
3137
target: typescript
3238
source: Dokploy API
39+
publish:
40+
npm:
41+
token: $npm_token
3342
codeSamples:
3443
registry:
3544
location: registry.speakeasyapi.dev/polariselabs/dokploy/dokploy-api-typescript-code-samples
@@ -39,6 +48,9 @@ workflow:
3948
typescript:
4049
target: typescript
4150
source: Dokploy API
51+
publish:
52+
npm:
53+
token: $npm_token
4254
codeSamples:
4355
registry:
4456
location: registry.speakeasyapi.dev/polariselabs/dokploy/dokploy-api-typescript-code-samples

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,34 +46,30 @@ More information about the API can be found at http://localhost:3000/api/setting
4646
<!-- Start SDK Installation [installation] -->
4747
## SDK Installation
4848

49-
> [!TIP]
50-
> To finish publishing your SDK to npm and others you must [run your first generation action](https://www.speakeasy.com/docs/github-setup#step-by-step-guide).
51-
52-
5349
The SDK can be installed with either [npm](https://www.npmjs.com/), [pnpm](https://pnpm.io/), [bun](https://bun.sh/) or [yarn](https://classic.yarnpkg.com/en/) package managers.
5450

5551
### NPM
5652

5753
```bash
58-
npm add https://github.com/charliedevelops/dokploy-sdk-ts
54+
npm add dokploy-sdk
5955
```
6056

6157
### PNPM
6258

6359
```bash
64-
pnpm add https://github.com/charliedevelops/dokploy-sdk-ts
60+
pnpm add dokploy-sdk
6561
```
6662

6763
### Bun
6864

6965
```bash
70-
bun add https://github.com/charliedevelops/dokploy-sdk-ts
66+
bun add dokploy-sdk
7167
```
7268

7369
### Yarn
7470

7571
```bash
76-
yarn add https://github.com/charliedevelops/dokploy-sdk-ts zod
72+
yarn add dokploy-sdk zod
7773

7874
# Note that Yarn does not install peer dependencies automatically. You will need
7975
# to install zod as shown above.

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.

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{
44
"name": "dokploy-sdk",
5-
"version": "0.0.2",
5+
"version": "0.0.5",
66
"exports": {
77
".": "./src/index.ts",
88
"./models/errors": "./src/models/errors/index.ts",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dokploy-sdk",
3-
"version": "0.0.2",
3+
"version": "0.0.5",
44
"author": "Speakeasy",
55
"type": "module",
66
"tshy": {

src/lib/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
5858
export const SDK_METADATA = {
5959
language: "typescript",
6060
openapiDocVersion: "1.0.0",
61-
sdkVersion: "0.0.2",
61+
sdkVersion: "0.0.5",
6262
genVersion: "2.698.4",
63-
userAgent: "speakeasy-sdk/typescript 0.0.2 2.698.4 1.0.0 dokploy-sdk",
63+
userAgent: "speakeasy-sdk/typescript 0.0.5 2.698.4 1.0.0 dokploy-sdk",
6464
} as const;

0 commit comments

Comments
 (0)