@m1212e/rumble 0.16.27 → 0.16.28
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/out/client/generate.cjs +3 -4
- package/out/client/generate.mjs +2 -3
- package/out/client.cjs +23 -14
- package/out/client.cjs.map +1 -1
- package/out/client.d.cts.map +1 -1
- package/out/client.d.mts.map +1 -1
- package/out/client.mjs +21 -12
- package/out/client.mjs.map +1 -1
- package/out/{generate-PDRNfY6V.mjs → generate-B6JGM5pc.mjs} +2 -5
- package/out/{generate-PDRNfY6V.mjs.map → generate-B6JGM5pc.mjs.map} +1 -1
- package/out/{generate-9zSO5f7n.cjs → generate-BjPxpUd6.cjs} +8 -11
- package/out/{generate-9zSO5f7n.cjs.map → generate-BjPxpUd6.cjs.map} +1 -1
- package/out/index.cjs +11 -45
- package/out/index.cjs.map +1 -1
- package/out/index.mjs +4 -33
- package/out/index.mjs.map +1 -1
- package/out/{lazy-CoMVcY4X.mjs → lazy-BgeBy3-B.mjs} +2 -2
- package/out/{lazy-CoMVcY4X.mjs.map → lazy-BgeBy3-B.mjs.map} +1 -1
- package/out/{lazy-BrDkNRyV.cjs → lazy-DT--QoPa.cjs} +7 -8
- package/out/{lazy-BrDkNRyV.cjs.map → lazy-DT--QoPa.cjs.map} +1 -1
- package/package.json +25 -16
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lazy-
|
|
1
|
+
{"version":3,"file":"lazy-BgeBy3-B.mjs","names":[],"sources":["../lib/helpers/lazy.ts"],"sourcesContent":["/**\n * Creates a lazily initialized function.\n *\n * The returned function will call the initializer function on its first call and\n * store the result. On subsequent calls, it will return the stored result.\n *\n * @param initializer The function to be called for initialization.\n * @returns A function that calls the initializer function on its first call and\n * returns the stored result on subsequent calls.\n */\nexport function lazy<T>(initializer: () => T): () => T {\n let value: T | undefined;\n let initialized = false;\n\n return () => {\n if (!initialized) {\n value = initializer();\n initialized = true;\n }\n return value!;\n };\n}\n"],"mappings":";;;;;;;;;;;AAUA,SAAgB,KAAQ,aAA+B;CACrD,IAAI;CACJ,IAAI,cAAc;AAElB,cAAa;AACX,MAAI,CAAC,aAAa;AAChB,WAAQ,aAAa;AACrB,iBAAc;;AAEhB,SAAO"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
//#region lib/helpers/lazy.ts
|
|
3
2
|
/**
|
|
4
3
|
* Creates a lazily initialized function.
|
|
@@ -21,12 +20,12 @@ function lazy(initializer) {
|
|
|
21
20
|
return value;
|
|
22
21
|
};
|
|
23
22
|
}
|
|
24
|
-
|
|
25
23
|
//#endregion
|
|
26
|
-
Object.defineProperty(exports,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
Object.defineProperty(exports, "lazy", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function() {
|
|
27
|
+
return lazy;
|
|
28
|
+
}
|
|
31
29
|
});
|
|
32
|
-
|
|
30
|
+
|
|
31
|
+
//# sourceMappingURL=lazy-DT--QoPa.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lazy-
|
|
1
|
+
{"version":3,"file":"lazy-DT--QoPa.cjs","names":[],"sources":["../lib/helpers/lazy.ts"],"sourcesContent":["/**\n * Creates a lazily initialized function.\n *\n * The returned function will call the initializer function on its first call and\n * store the result. On subsequent calls, it will return the stored result.\n *\n * @param initializer The function to be called for initialization.\n * @returns A function that calls the initializer function on its first call and\n * returns the stored result on subsequent calls.\n */\nexport function lazy<T>(initializer: () => T): () => T {\n let value: T | undefined;\n let initialized = false;\n\n return () => {\n if (!initialized) {\n value = initializer();\n initialized = true;\n }\n return value!;\n };\n}\n"],"mappings":";;;;;;;;;;;AAUA,SAAgB,KAAQ,aAA+B;CACrD,IAAI;CACJ,IAAI,cAAc;AAElB,cAAa;AACX,MAAI,CAAC,aAAa;AAChB,WAAQ,aAAa;AACrB,iBAAc;;AAEhB,SAAO"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m1212e/rumble",
|
|
3
3
|
"module": "./out/index.mjs",
|
|
4
|
-
"version": "0.16.
|
|
4
|
+
"version": "0.16.28",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/m1212e/rumble",
|
|
7
7
|
"engines": {
|
|
@@ -18,27 +18,27 @@
|
|
|
18
18
|
"typecheck": "tsc --noEmit"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@biomejs/biome": "^2.
|
|
21
|
+
"@biomejs/biome": "^2.4.5",
|
|
22
22
|
"@graphql-tools/executor-http": "^3.1.0",
|
|
23
23
|
"@types/bun": "latest",
|
|
24
|
-
"@types/pg": "^8.
|
|
24
|
+
"@types/pg": "^8.18.0",
|
|
25
25
|
"@types/pluralize": "^0.0.33",
|
|
26
|
-
"drizzle-kit": "^1.0.0-beta.
|
|
27
|
-
"drizzle-orm": "^1.0.0-beta.
|
|
28
|
-
"drizzle-seed": "^1.0.0-beta.
|
|
29
|
-
"lefthook": "^2.1.
|
|
30
|
-
"pg": "^8.
|
|
31
|
-
"tsdown": "^0.
|
|
26
|
+
"drizzle-kit": "^1.0.0-beta.9-e89174b",
|
|
27
|
+
"drizzle-orm": "^1.0.0-beta.9-e89174b",
|
|
28
|
+
"drizzle-seed": "^1.0.0-beta.9-e89174b",
|
|
29
|
+
"lefthook": "^2.1.2",
|
|
30
|
+
"pg": "^8.20.0",
|
|
31
|
+
"tsdown": "^0.21.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"typescript": "^5",
|
|
34
|
+
"typescript": "^5.9.3",
|
|
35
35
|
"drizzle-orm": "^1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@escape.tech/graphql-armor": "^3.2.0",
|
|
39
39
|
"@graphql-yoga/plugin-disable-introspection": "^2.19.0",
|
|
40
40
|
"@opentelemetry/api": "^1.9.0",
|
|
41
|
-
"@opentelemetry/semantic-conventions": "^1.
|
|
41
|
+
"@opentelemetry/semantic-conventions": "^1.40.0",
|
|
42
42
|
"@pothos/core": "^4.12.0",
|
|
43
43
|
"@pothos/plugin-drizzle": "^0.17.0",
|
|
44
44
|
"@pothos/plugin-smart-subscriptions": "^4.1.4",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"@urql/core": "^6.0.1",
|
|
48
48
|
"@urql/exchange-graphcache": "^9.0.0",
|
|
49
49
|
"@urql/introspection": "^1.2.1",
|
|
50
|
-
"devalue": "^5.6.
|
|
51
|
-
"es-toolkit": "^1.
|
|
52
|
-
"graphql": "^16.
|
|
50
|
+
"devalue": "^5.6.3",
|
|
51
|
+
"es-toolkit": "^1.45.1",
|
|
52
|
+
"graphql": "^16.13.1",
|
|
53
53
|
"graphql-scalars": "^1.25.0",
|
|
54
54
|
"graphql-yoga": "^5.18.0",
|
|
55
55
|
"pluralize": "^8.0.0",
|
|
56
|
-
"sofa-api": "^0.18.
|
|
57
|
-
"svelte": "^5.
|
|
56
|
+
"sofa-api": "^0.18.9",
|
|
57
|
+
"svelte": "^5.53.7",
|
|
58
58
|
"wonka": "^6.3.5"
|
|
59
59
|
},
|
|
60
60
|
"main": "./out/index.cjs",
|
|
@@ -73,5 +73,14 @@
|
|
|
73
73
|
"require": "./out/client/generate.cjs"
|
|
74
74
|
},
|
|
75
75
|
"./package.json": "./package.json"
|
|
76
|
+
},
|
|
77
|
+
"inlinedDependencies": {
|
|
78
|
+
"hotscript": "1.0.13",
|
|
79
|
+
"ts-algebra": "2.0.0",
|
|
80
|
+
"json-schema-to-ts": "3.1.1",
|
|
81
|
+
"@whatwg-node/fetch": "0.10.8",
|
|
82
|
+
"@whatwg-node/promise-helpers": "1.3.2",
|
|
83
|
+
"@whatwg-node/server": "0.10.10",
|
|
84
|
+
"fets": "0.8.5"
|
|
76
85
|
}
|
|
77
86
|
}
|