lapyme 0.1.0 → 0.1.3

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
@@ -40,39 +40,35 @@ La Pyme API: API externa para integrar con el sistema de gestión La Pyme. v1 cu
40
40
  <!-- Start SDK Installation [installation] -->
41
41
  ## SDK Installation
42
42
 
43
- > [!TIP]
44
- > 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).
45
-
46
-
47
43
  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.
48
44
 
49
45
  ### NPM
50
46
 
51
47
  ```bash
52
- npm add <UNSET>
48
+ npm add lapyme
53
49
  ```
54
50
 
55
51
  ### PNPM
56
52
 
57
53
  ```bash
58
- pnpm add <UNSET>
54
+ pnpm add lapyme
59
55
  ```
60
56
 
61
57
  ### Bun
62
58
 
63
59
  ```bash
64
- bun add <UNSET>
60
+ bun add lapyme
65
61
  ```
66
62
 
67
63
  ### Yarn
68
64
 
69
65
  ```bash
70
- yarn add <UNSET>
66
+ yarn add lapyme
71
67
  ```
72
68
 
73
69
  > [!NOTE]
74
70
  > This package is published as an ES Module (ESM) only. For applications using
75
- > CommonJS, use `await import()` to import and use this package.
71
+ > CommonJS, use `await import("lapyme")` to import and use this package.
76
72
  <!-- End SDK Installation [installation] -->
77
73
 
78
74
  <!-- Start Requirements [requirements] -->
@@ -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.3";
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.3 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.3",
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.3 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.3",
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.3",
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.3",
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.3 2.885.1 1.0.0 lapyme",
67
67
  } as const;