@functional-systems/lambdadb 0.1.3 → 0.1.5
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/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/examples/collectionsList.example.ts +1 -1
- package/examples/package-lock.json +3 -2
- package/jsr.json +1 -1
- package/package.json +6 -3
- package/src/lib/config.ts +3 -3
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "1.1.1";
|
|
38
|
-
readonly sdkVersion: "0.1.
|
|
39
|
-
readonly genVersion: "2.
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.1.
|
|
38
|
+
readonly sdkVersion: "0.1.5";
|
|
39
|
+
readonly genVersion: "2.681.8";
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.1.5 2.681.8 1.1.1 @functional-systems/lambdadb";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -37,8 +37,8 @@ function serverURLFromOptions(options) {
|
|
|
37
37
|
exports.SDK_METADATA = {
|
|
38
38
|
language: "typescript",
|
|
39
39
|
openapiDocVersion: "1.1.1",
|
|
40
|
-
sdkVersion: "0.1.
|
|
41
|
-
genVersion: "2.
|
|
42
|
-
userAgent: "speakeasy-sdk/typescript 0.1.
|
|
40
|
+
sdkVersion: "0.1.5",
|
|
41
|
+
genVersion: "2.681.8",
|
|
42
|
+
userAgent: "speakeasy-sdk/typescript 0.1.5 2.681.8 1.1.1 @functional-systems/lambdadb",
|
|
43
43
|
};
|
|
44
44
|
//# sourceMappingURL=config.js.map
|
package/dist/esm/lib/config.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "1.1.1";
|
|
38
|
-
readonly sdkVersion: "0.1.
|
|
39
|
-
readonly genVersion: "2.
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.1.
|
|
38
|
+
readonly sdkVersion: "0.1.5";
|
|
39
|
+
readonly genVersion: "2.681.8";
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.1.5 2.681.8 1.1.1 @functional-systems/lambdadb";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/esm/lib/config.js
CHANGED
|
@@ -33,8 +33,8 @@ export function serverURLFromOptions(options) {
|
|
|
33
33
|
export const SDK_METADATA = {
|
|
34
34
|
language: "typescript",
|
|
35
35
|
openapiDocVersion: "1.1.1",
|
|
36
|
-
sdkVersion: "0.1.
|
|
37
|
-
genVersion: "2.
|
|
38
|
-
userAgent: "speakeasy-sdk/typescript 0.1.
|
|
36
|
+
sdkVersion: "0.1.5",
|
|
37
|
+
genVersion: "2.681.8",
|
|
38
|
+
userAgent: "speakeasy-sdk/typescript 0.1.5 2.681.8 1.1.1 @functional-systems/lambdadb",
|
|
39
39
|
};
|
|
40
40
|
//# sourceMappingURL=config.js.map
|
|
@@ -8,7 +8,7 @@ dotenv.config();
|
|
|
8
8
|
* Example usage of the @functional-systems/lambdadb SDK
|
|
9
9
|
*
|
|
10
10
|
* To run this example from the examples directory:
|
|
11
|
-
* npm run build && npx tsx collectionsList.ts
|
|
11
|
+
* npm run build && npx tsx collectionsList.example.ts
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
import { LambdaDB } from "@functional-systems/lambdadb";
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"..": {
|
|
20
20
|
"name": "@functional-systems/lambdadb",
|
|
21
|
-
"version": "0.1.
|
|
21
|
+
"version": "0.1.5",
|
|
22
|
+
"license": "Apache-2.0",
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"zod": "^3.20.0"
|
|
24
25
|
},
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
"globals": "^15.14.0",
|
|
29
30
|
"tshy": "^2.0.0",
|
|
30
31
|
"typescript": "~5.8.3",
|
|
31
|
-
"typescript-eslint": "^8.
|
|
32
|
+
"typescript-eslint": "^8.26.0"
|
|
32
33
|
}
|
|
33
34
|
},
|
|
34
35
|
"node_modules/@esbuild/aix-ppc64": {
|
package/jsr.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@functional-systems/lambdadb",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"author": "
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"author": "Functional Systems, Inc.",
|
|
5
|
+
"homepage": "https://github.com/lambdadb/lambdadb-typescript-client#readme",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"repository": "https://github.com/lambdadb/lambdadb-typescript-client.git",
|
|
5
8
|
"type": "module",
|
|
6
9
|
"tshy": {
|
|
7
10
|
"sourceDialects": [
|
|
@@ -31,7 +34,7 @@
|
|
|
31
34
|
"globals": "^15.14.0",
|
|
32
35
|
"tshy": "^2.0.0",
|
|
33
36
|
"typescript": "~5.8.3",
|
|
34
|
-
"typescript-eslint": "^8.
|
|
37
|
+
"typescript-eslint": "^8.26.0"
|
|
35
38
|
},
|
|
36
39
|
"dependencies": {
|
|
37
40
|
"zod": "^3.20.0"
|
package/src/lib/config.ts
CHANGED
|
@@ -71,8 +71,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
71
71
|
export const SDK_METADATA = {
|
|
72
72
|
language: "typescript",
|
|
73
73
|
openapiDocVersion: "1.1.1",
|
|
74
|
-
sdkVersion: "0.1.
|
|
75
|
-
genVersion: "2.
|
|
74
|
+
sdkVersion: "0.1.5",
|
|
75
|
+
genVersion: "2.681.8",
|
|
76
76
|
userAgent:
|
|
77
|
-
"speakeasy-sdk/typescript 0.1.
|
|
77
|
+
"speakeasy-sdk/typescript 0.1.5 2.681.8 1.1.1 @functional-systems/lambdadb",
|
|
78
78
|
} as const;
|