@secondlayer/shared 0.10.2 → 0.11.0
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/src/db/index.d.ts +179 -2
- package/dist/src/db/queries/accounts.d.ts +156 -2
- package/dist/src/db/queries/accounts.js +17 -1
- package/dist/src/db/queries/accounts.js.map +3 -3
- package/dist/src/db/queries/integrity.d.ts +149 -1
- package/dist/src/db/queries/marketplace.d.ts +463 -0
- package/dist/src/db/queries/marketplace.js +142 -0
- package/dist/src/db/queries/marketplace.js.map +10 -0
- package/dist/src/db/queries/metrics.d.ts +149 -1
- package/dist/src/db/queries/projects.d.ts +423 -0
- package/dist/src/db/queries/projects.js +47 -0
- package/dist/src/db/queries/projects.js.map +10 -0
- package/dist/src/db/queries/subgraph-gaps.d.ts +149 -1
- package/dist/src/db/queries/subgraphs.d.ts +156 -6
- package/dist/src/db/queries/subgraphs.js +16 -13
- package/dist/src/db/queries/subgraphs.js.map +3 -3
- package/dist/src/db/queries/usage.d.ts +149 -1
- package/dist/src/db/queries/workflows.d.ts +439 -0
- package/dist/src/db/queries/workflows.js +115 -0
- package/dist/src/db/queries/workflows.js.map +11 -0
- package/dist/src/db/schema.d.ts +179 -2
- package/dist/src/index.d.ts +249 -10
- package/dist/src/index.js +91 -72
- package/dist/src/index.js.map +4 -3
- package/dist/src/node/local-client.d.ts +149 -1
- package/dist/src/schemas/index.d.ts +71 -9
- package/dist/src/schemas/index.js +93 -74
- package/dist/src/schemas/index.js.map +4 -3
- package/dist/src/schemas/marketplace.d.ts +63 -0
- package/dist/src/schemas/marketplace.js +39 -0
- package/dist/src/schemas/marketplace.js.map +10 -0
- package/dist/src/schemas/workflows.d.ts +66 -0
- package/dist/src/schemas/workflows.js +39 -0
- package/dist/src/schemas/workflows.js.map +10 -0
- package/dist/src/types.d.ts +1 -0
- package/migrations/0022_marketplace.ts +88 -0
- package/migrations/0023_projects.ts +149 -0
- package/migrations/0024_chat_sessions.ts +51 -0
- package/migrations/0025_chat_session_summary.ts +15 -0
- package/migrations/0026_workflows.ts +204 -0
- package/migrations/0027_workflow_cursors.ts +16 -0
- package/migrations/0028_subgraph_account_scoping.ts +116 -0
- package/package.json +22 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@secondlayer/shared",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -73,6 +73,26 @@
|
|
|
73
73
|
"types": "./dist/src/schemas/subgraphs.d.ts",
|
|
74
74
|
"import": "./dist/src/schemas/subgraphs.js"
|
|
75
75
|
},
|
|
76
|
+
"./schemas/marketplace": {
|
|
77
|
+
"types": "./dist/src/schemas/marketplace.d.ts",
|
|
78
|
+
"import": "./dist/src/schemas/marketplace.js"
|
|
79
|
+
},
|
|
80
|
+
"./schemas/workflows": {
|
|
81
|
+
"types": "./dist/src/schemas/workflows.d.ts",
|
|
82
|
+
"import": "./dist/src/schemas/workflows.js"
|
|
83
|
+
},
|
|
84
|
+
"./db/queries/workflows": {
|
|
85
|
+
"types": "./dist/src/db/queries/workflows.d.ts",
|
|
86
|
+
"import": "./dist/src/db/queries/workflows.js"
|
|
87
|
+
},
|
|
88
|
+
"./db/queries/marketplace": {
|
|
89
|
+
"types": "./dist/src/db/queries/marketplace.d.ts",
|
|
90
|
+
"import": "./dist/src/db/queries/marketplace.js"
|
|
91
|
+
},
|
|
92
|
+
"./db/queries/projects": {
|
|
93
|
+
"types": "./dist/src/db/queries/projects.d.ts",
|
|
94
|
+
"import": "./dist/src/db/queries/projects.js"
|
|
95
|
+
},
|
|
76
96
|
"./types": {
|
|
77
97
|
"types": "./dist/src/types.d.ts",
|
|
78
98
|
"import": "./dist/src/types.js"
|
|
@@ -137,7 +157,7 @@
|
|
|
137
157
|
},
|
|
138
158
|
"dependencies": {
|
|
139
159
|
"@secondlayer/stacks": "^0.2.2",
|
|
140
|
-
"kysely": "0.28.
|
|
160
|
+
"kysely": "0.28.15",
|
|
141
161
|
"kysely-postgres-js": "3.0.0",
|
|
142
162
|
"postgres": "^3.4.6",
|
|
143
163
|
"zod": "^4.3.6"
|