@dodayslabs/ts-sdk 0.2.0 → 0.3.0-feat-activities.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -4
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -5,11 +5,7 @@ Official TypeScript SDK for the DoDays API, providing type-safe access to all Do
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install @dodayslabs/ts-sdk
9
- # or
10
8
  pnpm add @dodayslabs/ts-sdk
11
- # or
12
- yarn add @dodayslabs/ts-sdk
13
9
  ```
14
10
 
15
11
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dodayslabs/ts-sdk",
3
- "version": "0.2.0",
3
+ "version": "0.3.0-feat-activities.1",
4
4
  "license": "See LICENSE",
5
5
  "author": "Sam Bindoff",
6
6
  "description": "Official DoDays TypeScript SDK",
@@ -14,6 +14,11 @@
14
14
  "@openapitools/openapi-generator-cli": "^2.24.0",
15
15
  "typescript": "^5.9.2"
16
16
  },
17
+ "scripts": {
18
+ "generate": "openapi-generator-cli generate -i ../docs/openapi.yaml -g typescript-fetch -o src",
19
+ "compile": "tsc",
20
+ "build": "pnpm generate && pnpm compile"
21
+ },
17
22
  "files": [
18
23
  "dist"
19
24
  ],
@@ -26,9 +31,5 @@
26
31
  "publishConfig": {
27
32
  "access": "public"
28
33
  },
29
- "scripts": {
30
- "generate": "openapi-generator-cli generate -i ../docs/openapi.yaml -g typescript-fetch -o src",
31
- "compile": "tsc",
32
- "build": "pnpm generate && pnpm compile"
33
- }
34
- }
34
+ "packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
35
+ }