bereach 0.1.1 → 0.1.4
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 +5 -9
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/jsr.json +1 -1
- package/package.json +5 -1
- package/src/lib/config.ts +3 -3
package/README.md
CHANGED
|
@@ -40,39 +40,35 @@ BeReach API: BeReach | Unofficial Linkedin API
|
|
|
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
|
|
48
|
+
npm add bereach
|
|
53
49
|
```
|
|
54
50
|
|
|
55
51
|
### PNPM
|
|
56
52
|
|
|
57
53
|
```bash
|
|
58
|
-
pnpm add
|
|
54
|
+
pnpm add bereach
|
|
59
55
|
```
|
|
60
56
|
|
|
61
57
|
### Bun
|
|
62
58
|
|
|
63
59
|
```bash
|
|
64
|
-
bun add
|
|
60
|
+
bun add bereach
|
|
65
61
|
```
|
|
66
62
|
|
|
67
63
|
### Yarn
|
|
68
64
|
|
|
69
65
|
```bash
|
|
70
|
-
yarn add
|
|
66
|
+
yarn add bereach
|
|
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("bereach")` to import and use this package.
|
|
76
72
|
<!-- End SDK Installation [installation] -->
|
|
77
73
|
|
|
78
74
|
<!-- Start Requirements [requirements] -->
|
package/esm/lib/config.d.ts
CHANGED
|
@@ -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: "0.0.8";
|
|
34
|
-
readonly sdkVersion: "0.1.
|
|
35
|
-
readonly genVersion: "2.846.
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.1.
|
|
34
|
+
readonly sdkVersion: "0.1.4";
|
|
35
|
+
readonly genVersion: "2.846.4";
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.1.4 2.846.4 0.0.8 bereach";
|
|
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: "0.0.8",
|
|
30
|
-
sdkVersion: "0.1.
|
|
31
|
-
genVersion: "2.846.
|
|
32
|
-
userAgent: "speakeasy-sdk/typescript 0.1.
|
|
30
|
+
sdkVersion: "0.1.4",
|
|
31
|
+
genVersion: "2.846.4",
|
|
32
|
+
userAgent: "speakeasy-sdk/typescript 0.1.4 2.846.4 0.0.8 bereach",
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.js.map
|
package/jsr.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bereach",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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/berea-ch/bereach-sdk-ts.git"
|
|
49
|
+
},
|
|
46
50
|
"scripts": {
|
|
47
51
|
"lint": "oxlint --max-warnings=0 --deny-warnings 'src/**/*.{ts,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: "0.0.8",
|
|
64
|
-
sdkVersion: "0.1.
|
|
65
|
-
genVersion: "2.846.
|
|
66
|
-
userAgent: "speakeasy-sdk/typescript 0.1.
|
|
64
|
+
sdkVersion: "0.1.4",
|
|
65
|
+
genVersion: "2.846.4",
|
|
66
|
+
userAgent: "speakeasy-sdk/typescript 0.1.4 2.846.4 0.0.8 bereach",
|
|
67
67
|
} as const;
|