lapyme 0.1.0 → 0.1.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.
package/README.md CHANGED
@@ -49,25 +49,25 @@ The SDK can be installed with either [npm](https://www.npmjs.com/), [pnpm](https
49
49
  ### NPM
50
50
 
51
51
  ```bash
52
- npm add <UNSET>
52
+ npm add https://github.com/LaPyme/lapyme-ts
53
53
  ```
54
54
 
55
55
  ### PNPM
56
56
 
57
57
  ```bash
58
- pnpm add <UNSET>
58
+ pnpm add https://github.com/LaPyme/lapyme-ts
59
59
  ```
60
60
 
61
61
  ### Bun
62
62
 
63
63
  ```bash
64
- bun add <UNSET>
64
+ bun add https://github.com/LaPyme/lapyme-ts
65
65
  ```
66
66
 
67
67
  ### Yarn
68
68
 
69
69
  ```bash
70
- yarn add <UNSET>
70
+ yarn add https://github.com/LaPyme/lapyme-ts
71
71
  ```
72
72
 
73
73
  > [!NOTE]
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
31
31
  export declare const SDK_METADATA: {
32
32
  readonly language: "typescript";
33
33
  readonly openapiDocVersion: "1.0.0";
34
- readonly sdkVersion: "0.1.0";
34
+ readonly sdkVersion: "0.1.1";
35
35
  readonly genVersion: "2.885.1";
36
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0 2.885.1 1.0.0 lapyme";
36
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.1 2.885.1 1.0.0 lapyme";
37
37
  };
38
38
  //# sourceMappingURL=config.d.ts.map
package/esm/lib/config.js CHANGED
@@ -27,8 +27,8 @@ export function serverURLFromOptions(options) {
27
27
  export const SDK_METADATA = {
28
28
  language: "typescript",
29
29
  openapiDocVersion: "1.0.0",
30
- sdkVersion: "0.1.0",
30
+ sdkVersion: "0.1.1",
31
31
  genVersion: "2.885.1",
32
- userAgent: "speakeasy-sdk/typescript 0.1.0 2.885.1 1.0.0 lapyme",
32
+ userAgent: "speakeasy-sdk/typescript 0.1.1 2.885.1 1.0.0 lapyme",
33
33
  };
34
34
  //# sourceMappingURL=config.js.map
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "lapyme",
5
- "version": "0.1.0",
5
+ "version": "0.1.1",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lapyme",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "author": "Speakeasy",
5
5
  "type": "module",
6
6
  "main": "./esm/index.js",
@@ -43,6 +43,10 @@
43
43
  }
44
44
  },
45
45
  "sideEffects": false,
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "https://github.com/LaPyme/lapyme-ts.git"
49
+ },
46
50
  "scripts": {
47
51
  "lint": "oxlint --max-warnings=0 --deny-warnings src/**/*.ts src/**/*.tsx",
48
52
  "build": "tsgo",
package/src/lib/config.ts CHANGED
@@ -61,7 +61,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
61
61
  export const SDK_METADATA = {
62
62
  language: "typescript",
63
63
  openapiDocVersion: "1.0.0",
64
- sdkVersion: "0.1.0",
64
+ sdkVersion: "0.1.1",
65
65
  genVersion: "2.885.1",
66
- userAgent: "speakeasy-sdk/typescript 0.1.0 2.885.1 1.0.0 lapyme",
66
+ userAgent: "speakeasy-sdk/typescript 0.1.1 2.885.1 1.0.0 lapyme",
67
67
  } as const;