@rayadesu/dsh-llm-billing 0.3.14 → 0.3.15
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.i18n.yaml +2 -2
- package/README.md +1 -1
- package/README.zh.md +1 -1
- package/lib/typert.host.js +55 -55
- package/lib/typert.remote-client.js +55 -55
- package/package.json +20 -20
package/README.i18n.yaml
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
# last confirmed-consistent state. Both languages carry equal authority; after
|
|
3
3
|
# editing either side, bring the other along and re-record both hashes with:
|
|
4
4
|
# git hash-object README.md README.zh.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 9bb742179e5a39cc3128597ef28b2ea671f5d824
|
|
6
|
+
README.zh.md: 5704f78fd040f44b0a1f872bcd26e60eb733fce8
|
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ A forked session (DSH's "fork" of a conversation) opens its log with a verbatim
|
|
|
47
47
|
|
|
48
48
|
## Runtime compatibility
|
|
49
49
|
|
|
50
|
-
Since 0.1.2-alpha.4, DSH replaced the live `Session` log surface `Session.events` with `Session.snapshotEvents()` (no args = the full current log) and `Session.ownEvents()`, and moved `SessionHeader.seedLength` to `Session.inheritedEventCount` (the persistence `inspect()` result carries the value beside `meta`; `listSnapshots()` headers keep only the boolean `isSeeded`). Every log read in the plugin goes through the structural adapters `liveSessionEvents` / `forkBoundaryOf` / `isSeededSession`, which accept both the ≤ 0.1.1-rc.2 and the 0.1.2-alpha.4+ shapes — the npm release baseline (`^0.1.
|
|
50
|
+
Since 0.1.2-alpha.4, DSH replaced the live `Session` log surface `Session.events` with `Session.snapshotEvents()` (no args = the full current log) and `Session.ownEvents()`, and moved `SessionHeader.seedLength` to `Session.inheritedEventCount` (the persistence `inspect()` result carries the value beside `meta`; `listSnapshots()` headers keep only the boolean `isSeeded`). Every log read in the plugin goes through the structural adapters `liveSessionEvents` / `forkBoundaryOf` / `isSeededSession`, which accept both the ≤ 0.1.1-rc.2 and the 0.1.2-alpha.4+ shapes — the npm release baseline (`^0.1.7-alpha.2`) and the ahead-of-npm monorepo runtime both work without modification. On an unknown surface that has neither shape the plugin fails loudly rather than silently pricing an empty log. The ranking's lineage read is structural in the same way: a header that carries neither `origin: 'subagent'` nor a non-zero `delegationDepth` (an older log, or a session created without them) simply reads as a top-level session and keeps its own row.
|
|
51
51
|
|
|
52
52
|
The persistence service itself changed surface too: 0.1.1-rc.2 exposes `inspect(id)` / `listSnapshots()`, while the handle-based seam exposes `open(id, 'read')` + `SessionHandle.read()` / `list()`. The scanner reads both families through `persistenceInspect` / `persistenceListSnapshots` (the handle is always closed, including after a failed read), so the same plugin serves the published alpha line and the refactored checkout. `SessionHandle.read()` itself has two generations: it first returned the bare event array, and since DSH `9b78f99dec` (in the 0.1.5-alpha.1 checkout) it returns `{ eventState, events }`; `handleReadEvents` unwraps both, so a cold read keeps working across the change.
|
|
53
53
|
|
package/README.zh.md
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
|
|
48
48
|
## 运行时兼容性
|
|
49
49
|
|
|
50
|
-
0.1.2-alpha.4 起,DSH 把 live `Session` 的日志读取表面从 `Session.events` 改为 `Session.snapshotEvents()`(无参 = 当前全量日志)与 `Session.ownEvents()`,并把 `SessionHeader.seedLength` 移至 `Session.inheritedEventCount`(持久化侧 `inspect()` 的结果在 `meta` 之外携带该值,`listSnapshots()` 的 header 只剩布尔 `isSeeded`)。插件的所有日志读取都走结构适配器 `liveSessionEvents` / `forkBoundaryOf` / `isSeededSession`,同时接受 ≤ 0.1.1-rc.2 与 0.1.2-alpha.4+ 两种形状——npm 发布基线(`^0.1.
|
|
50
|
+
0.1.2-alpha.4 起,DSH 把 live `Session` 的日志读取表面从 `Session.events` 改为 `Session.snapshotEvents()`(无参 = 当前全量日志)与 `Session.ownEvents()`,并把 `SessionHeader.seedLength` 移至 `Session.inheritedEventCount`(持久化侧 `inspect()` 的结果在 `meta` 之外携带该值,`listSnapshots()` 的 header 只剩布尔 `isSeeded`)。插件的所有日志读取都走结构适配器 `liveSessionEvents` / `forkBoundaryOf` / `isSeededSession`,同时接受 ≤ 0.1.1-rc.2 与 0.1.2-alpha.4+ 两种形状——npm 发布基线(`^0.1.7-alpha.2`)与超前于它的 monorepo 运行时代码均无需改动即可工作。遇到两种形状都没有的未知运行时表面时,插件会显式失败而不是静默按零花费计价。排行的血缘读取同样以结构方式完成:header 里既没有 `origin: 'subagent'` 也没有非零 `delegationDepth` 的会话(旧日志,或创建时就没有这两个字段的会话)直接视作顶层会话、保留自己一行。
|
|
51
51
|
|
|
52
52
|
持久化服务的表面同样换代:0.1.1-rc.2 提供 `inspect(id)` / `listSnapshots()`,而 handle 化 seam 提供 `open(id, 'read')` + `SessionHandle.read()` / `list()`。扫描器通过 `persistenceInspect` / `persistenceListSnapshots` 同时读取两代表面(handle 总会关闭,读取失败时也一样),因此同一套插件既能服务已发布的 alpha 线,也能服务重构后的 checkout。`SessionHandle.read()` 自身也有两代:最初返回裸事件数组,DSH `9b78f99dec`(0.1.5-alpha.1 checkout 中)起返回 `{ eventState, events }`;`handleReadEvents` 同时接受两种形状,冷读因此不受该变更影响。
|
|
53
53
|
|
package/lib/typert.host.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/* Generated by @deepseek-ai/dsh-typert-generator from FaceModel — do not edit. */
|
|
2
2
|
import { z } from 'zod'
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
const
|
|
4
|
+
let _rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema$value
|
|
5
|
+
const _rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema$value ??= z.union([z.undefined(), z.literal(false), z.literal(true)]))
|
|
6
|
+
let _rayadesu_dsh_llm_billing_billing_getBalance_result$schema$value
|
|
7
|
+
const _rayadesu_dsh_llm_billing_billing_getBalance_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getBalance_result$schema$value ??= z.object({
|
|
6
8
|
'isAvailable': z.boolean(),
|
|
7
9
|
'lines': z.array(z.object({
|
|
8
10
|
'currency': z.string(),
|
|
@@ -10,10 +12,13 @@ const _rayadesu_dsh_llm_billing_billing_getBalance_result$schema = z.object({
|
|
|
10
12
|
'granted': z.string(),
|
|
11
13
|
'toppedUp': z.string(),
|
|
12
14
|
})),
|
|
13
|
-
})
|
|
14
|
-
|
|
15
|
-
const
|
|
16
|
-
|
|
15
|
+
}))
|
|
16
|
+
let _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema$value
|
|
17
|
+
const _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema$value ??= z.intersection(z.string(), z.unknown()))
|
|
18
|
+
let _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema$value
|
|
19
|
+
const _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema = () => (_rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema$value ??= z.union([z.undefined(), z.literal(false), z.literal(true)]))
|
|
20
|
+
let _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema$value
|
|
21
|
+
const _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema$value ??= z.object({
|
|
17
22
|
'total': z.number(),
|
|
18
23
|
'models': z.array(z.object({
|
|
19
24
|
'model': z.string(),
|
|
@@ -30,9 +35,11 @@ const _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema = z.obje
|
|
|
30
35
|
})),
|
|
31
36
|
'isSubagent': z.boolean(),
|
|
32
37
|
'crossedDay': z.boolean(),
|
|
33
|
-
})
|
|
34
|
-
|
|
35
|
-
const
|
|
38
|
+
}))
|
|
39
|
+
let _rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema$value
|
|
40
|
+
const _rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema$value ??= z.intersection(z.string(), z.unknown()))
|
|
41
|
+
let _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema$value
|
|
42
|
+
const _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema$value ??= z.object({
|
|
36
43
|
'total': z.number(),
|
|
37
44
|
'models': z.array(z.object({
|
|
38
45
|
'model': z.string(),
|
|
@@ -47,25 +54,31 @@ const _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema = z.object
|
|
|
47
54
|
'cacheMissInputCost': z.number(),
|
|
48
55
|
'outputCost': z.number(),
|
|
49
56
|
})),
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
const
|
|
57
|
+
}))
|
|
58
|
+
let _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema$value
|
|
59
|
+
const _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema$value ??= z.intersection(z.string(), z.unknown()))
|
|
60
|
+
let _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema$value
|
|
61
|
+
const _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema$value ??= z.object({
|
|
53
62
|
'turns': z.array(z.object({
|
|
54
63
|
'messageId': z.string(),
|
|
55
64
|
'total': z.number(),
|
|
56
65
|
})),
|
|
57
|
-
})
|
|
58
|
-
|
|
59
|
-
const
|
|
66
|
+
}))
|
|
67
|
+
let _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema$value
|
|
68
|
+
const _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema$value ??= z.union([z.undefined(), z.literal(false), z.literal(true)]))
|
|
69
|
+
let _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema$value
|
|
70
|
+
const _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema$value ??= z.object({
|
|
60
71
|
'sessions': z.array(z.object({
|
|
61
72
|
'sessionId': z.intersection(z.string(), z.unknown()),
|
|
62
73
|
'title': z.union([z.literal(null), z.string()]),
|
|
63
74
|
'total': z.number(),
|
|
64
75
|
'ownTotal': z.number(),
|
|
65
76
|
})),
|
|
66
|
-
})
|
|
67
|
-
|
|
68
|
-
const
|
|
77
|
+
}))
|
|
78
|
+
let _rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema$value
|
|
79
|
+
const _rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema$value ??= z.union([z.undefined(), z.literal(false), z.literal(true)]))
|
|
80
|
+
let _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema$value
|
|
81
|
+
const _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema$value ??= z.object({
|
|
69
82
|
'total': z.number(),
|
|
70
83
|
'models': z.array(z.object({
|
|
71
84
|
'model': z.string(),
|
|
@@ -80,12 +93,15 @@ const _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema = z.object({
|
|
|
80
93
|
'cacheMissInputCost': z.number(),
|
|
81
94
|
'outputCost': z.number(),
|
|
82
95
|
})),
|
|
83
|
-
})
|
|
84
|
-
|
|
85
|
-
const
|
|
86
|
-
|
|
96
|
+
}))
|
|
97
|
+
let _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema$value
|
|
98
|
+
const _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema$value ??= z.intersection(z.string(), z.unknown()))
|
|
99
|
+
let _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema$value
|
|
100
|
+
const _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema = () => (_rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema$value ??= z.string())
|
|
101
|
+
let _rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema$value
|
|
102
|
+
const _rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema$value ??= z.object({
|
|
87
103
|
'total': z.number(),
|
|
88
|
-
})
|
|
104
|
+
}))
|
|
89
105
|
|
|
90
106
|
export const TYPERT = {
|
|
91
107
|
package: '@rayadesu/dsh-llm-billing',
|
|
@@ -108,16 +124,14 @@ export const TYPERT = {
|
|
|
108
124
|
codec: {
|
|
109
125
|
mode: 'strict',
|
|
110
126
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getBalance:force',
|
|
111
|
-
|
|
112
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema,
|
|
127
|
+
create: _rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema,
|
|
113
128
|
},
|
|
114
129
|
},
|
|
115
130
|
],
|
|
116
131
|
result: {
|
|
117
132
|
mode: 'strict',
|
|
118
133
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekBalance',
|
|
119
|
-
|
|
120
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getBalance_result$schema,
|
|
134
|
+
create: _rayadesu_dsh_llm_billing_billing_getBalance_result$schema,
|
|
121
135
|
},
|
|
122
136
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":172,"column":3},
|
|
123
137
|
},
|
|
@@ -135,8 +149,7 @@ export const TYPERT = {
|
|
|
135
149
|
codec: {
|
|
136
150
|
mode: 'strict',
|
|
137
151
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getDelegatedSpend:sessionId',
|
|
138
|
-
|
|
139
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema,
|
|
152
|
+
create: _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema,
|
|
140
153
|
},
|
|
141
154
|
},
|
|
142
155
|
{
|
|
@@ -147,16 +160,14 @@ export const TYPERT = {
|
|
|
147
160
|
codec: {
|
|
148
161
|
mode: 'strict',
|
|
149
162
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getDelegatedSpend:force',
|
|
150
|
-
|
|
151
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema,
|
|
163
|
+
create: _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema,
|
|
152
164
|
},
|
|
153
165
|
},
|
|
154
166
|
],
|
|
155
167
|
result: {
|
|
156
168
|
mode: 'strict',
|
|
157
169
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekDelegatedSpend',
|
|
158
|
-
|
|
159
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema,
|
|
170
|
+
create: _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema,
|
|
160
171
|
},
|
|
161
172
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":226,"column":3},
|
|
162
173
|
},
|
|
@@ -174,16 +185,14 @@ export const TYPERT = {
|
|
|
174
185
|
codec: {
|
|
175
186
|
mode: 'strict',
|
|
176
187
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getSessionSpend:sessionId',
|
|
177
|
-
|
|
178
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema,
|
|
188
|
+
create: _rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema,
|
|
179
189
|
},
|
|
180
190
|
},
|
|
181
191
|
],
|
|
182
192
|
result: {
|
|
183
193
|
mode: 'strict',
|
|
184
194
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekSessionSpend',
|
|
185
|
-
|
|
186
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema,
|
|
195
|
+
create: _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema,
|
|
187
196
|
},
|
|
188
197
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":183,"column":3},
|
|
189
198
|
},
|
|
@@ -201,16 +210,14 @@ export const TYPERT = {
|
|
|
201
210
|
codec: {
|
|
202
211
|
mode: 'strict',
|
|
203
212
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getSessionTurnSpends:sessionId',
|
|
204
|
-
|
|
205
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema,
|
|
213
|
+
create: _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema,
|
|
206
214
|
},
|
|
207
215
|
},
|
|
208
216
|
],
|
|
209
217
|
result: {
|
|
210
218
|
mode: 'strict',
|
|
211
219
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekSessionTurnSpends',
|
|
212
|
-
|
|
213
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema,
|
|
220
|
+
create: _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema,
|
|
214
221
|
},
|
|
215
222
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":251,"column":3},
|
|
216
223
|
},
|
|
@@ -229,16 +236,14 @@ export const TYPERT = {
|
|
|
229
236
|
codec: {
|
|
230
237
|
mode: 'strict',
|
|
231
238
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getTodaySessionsSpend:force',
|
|
232
|
-
|
|
233
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema,
|
|
239
|
+
create: _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema,
|
|
234
240
|
},
|
|
235
241
|
},
|
|
236
242
|
],
|
|
237
243
|
result: {
|
|
238
244
|
mode: 'strict',
|
|
239
245
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekTodaySessionsSpend',
|
|
240
|
-
|
|
241
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema,
|
|
246
|
+
create: _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema,
|
|
242
247
|
},
|
|
243
248
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":211,"column":3},
|
|
244
249
|
},
|
|
@@ -257,16 +262,14 @@ export const TYPERT = {
|
|
|
257
262
|
codec: {
|
|
258
263
|
mode: 'strict',
|
|
259
264
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getTodaySpend:force',
|
|
260
|
-
|
|
261
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema,
|
|
265
|
+
create: _rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema,
|
|
262
266
|
},
|
|
263
267
|
},
|
|
264
268
|
],
|
|
265
269
|
result: {
|
|
266
270
|
mode: 'strict',
|
|
267
271
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekTodaySpend',
|
|
268
|
-
|
|
269
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema,
|
|
272
|
+
create: _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema,
|
|
270
273
|
},
|
|
271
274
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":196,"column":3},
|
|
272
275
|
},
|
|
@@ -284,8 +287,7 @@ export const TYPERT = {
|
|
|
284
287
|
codec: {
|
|
285
288
|
mode: 'strict',
|
|
286
289
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getTurnSpend:sessionId',
|
|
287
|
-
|
|
288
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema,
|
|
290
|
+
create: _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema,
|
|
289
291
|
},
|
|
290
292
|
},
|
|
291
293
|
{
|
|
@@ -295,16 +297,14 @@ export const TYPERT = {
|
|
|
295
297
|
codec: {
|
|
296
298
|
mode: 'strict',
|
|
297
299
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getTurnSpend:messageId',
|
|
298
|
-
|
|
299
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema,
|
|
300
|
+
create: _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema,
|
|
300
301
|
},
|
|
301
302
|
},
|
|
302
303
|
],
|
|
303
304
|
result: {
|
|
304
305
|
mode: 'strict',
|
|
305
306
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekTurnSpend',
|
|
306
|
-
|
|
307
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema,
|
|
307
|
+
create: _rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema,
|
|
308
308
|
},
|
|
309
309
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":239,"column":3},
|
|
310
310
|
},
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/* Generated by @deepseek-ai/dsh-typert-generator from the Host FaceModel — do not edit. */
|
|
2
2
|
import { z } from 'zod'
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
const
|
|
4
|
+
let _rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema$value
|
|
5
|
+
const _rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema$value ??= z.union([z.undefined(), z.literal(false), z.literal(true)]))
|
|
6
|
+
let _rayadesu_dsh_llm_billing_billing_getBalance_result$schema$value
|
|
7
|
+
const _rayadesu_dsh_llm_billing_billing_getBalance_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getBalance_result$schema$value ??= z.object({
|
|
6
8
|
'isAvailable': z.boolean(),
|
|
7
9
|
'lines': z.array(z.object({
|
|
8
10
|
'currency': z.string(),
|
|
@@ -10,10 +12,13 @@ const _rayadesu_dsh_llm_billing_billing_getBalance_result$schema = z.object({
|
|
|
10
12
|
'granted': z.string(),
|
|
11
13
|
'toppedUp': z.string(),
|
|
12
14
|
})),
|
|
13
|
-
})
|
|
14
|
-
|
|
15
|
-
const
|
|
16
|
-
|
|
15
|
+
}))
|
|
16
|
+
let _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema$value
|
|
17
|
+
const _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema$value ??= z.intersection(z.string(), z.unknown()))
|
|
18
|
+
let _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema$value
|
|
19
|
+
const _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema = () => (_rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema$value ??= z.union([z.undefined(), z.literal(false), z.literal(true)]))
|
|
20
|
+
let _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema$value
|
|
21
|
+
const _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema$value ??= z.object({
|
|
17
22
|
'total': z.number(),
|
|
18
23
|
'models': z.array(z.object({
|
|
19
24
|
'model': z.string(),
|
|
@@ -30,9 +35,11 @@ const _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema = z.obje
|
|
|
30
35
|
})),
|
|
31
36
|
'isSubagent': z.boolean(),
|
|
32
37
|
'crossedDay': z.boolean(),
|
|
33
|
-
})
|
|
34
|
-
|
|
35
|
-
const
|
|
38
|
+
}))
|
|
39
|
+
let _rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema$value
|
|
40
|
+
const _rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema$value ??= z.intersection(z.string(), z.unknown()))
|
|
41
|
+
let _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema$value
|
|
42
|
+
const _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema$value ??= z.object({
|
|
36
43
|
'total': z.number(),
|
|
37
44
|
'models': z.array(z.object({
|
|
38
45
|
'model': z.string(),
|
|
@@ -47,25 +54,31 @@ const _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema = z.object
|
|
|
47
54
|
'cacheMissInputCost': z.number(),
|
|
48
55
|
'outputCost': z.number(),
|
|
49
56
|
})),
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
const
|
|
57
|
+
}))
|
|
58
|
+
let _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema$value
|
|
59
|
+
const _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema$value ??= z.intersection(z.string(), z.unknown()))
|
|
60
|
+
let _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema$value
|
|
61
|
+
const _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema$value ??= z.object({
|
|
53
62
|
'turns': z.array(z.object({
|
|
54
63
|
'messageId': z.string(),
|
|
55
64
|
'total': z.number(),
|
|
56
65
|
})),
|
|
57
|
-
})
|
|
58
|
-
|
|
59
|
-
const
|
|
66
|
+
}))
|
|
67
|
+
let _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema$value
|
|
68
|
+
const _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema$value ??= z.union([z.undefined(), z.literal(false), z.literal(true)]))
|
|
69
|
+
let _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema$value
|
|
70
|
+
const _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema$value ??= z.object({
|
|
60
71
|
'sessions': z.array(z.object({
|
|
61
72
|
'sessionId': z.intersection(z.string(), z.unknown()),
|
|
62
73
|
'title': z.union([z.literal(null), z.string()]),
|
|
63
74
|
'total': z.number(),
|
|
64
75
|
'ownTotal': z.number(),
|
|
65
76
|
})),
|
|
66
|
-
})
|
|
67
|
-
|
|
68
|
-
const
|
|
77
|
+
}))
|
|
78
|
+
let _rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema$value
|
|
79
|
+
const _rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema$value ??= z.union([z.undefined(), z.literal(false), z.literal(true)]))
|
|
80
|
+
let _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema$value
|
|
81
|
+
const _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema$value ??= z.object({
|
|
69
82
|
'total': z.number(),
|
|
70
83
|
'models': z.array(z.object({
|
|
71
84
|
'model': z.string(),
|
|
@@ -80,12 +93,15 @@ const _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema = z.object({
|
|
|
80
93
|
'cacheMissInputCost': z.number(),
|
|
81
94
|
'outputCost': z.number(),
|
|
82
95
|
})),
|
|
83
|
-
})
|
|
84
|
-
|
|
85
|
-
const
|
|
86
|
-
|
|
96
|
+
}))
|
|
97
|
+
let _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema$value
|
|
98
|
+
const _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema = () => (_rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema$value ??= z.intersection(z.string(), z.unknown()))
|
|
99
|
+
let _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema$value
|
|
100
|
+
const _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema = () => (_rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema$value ??= z.string())
|
|
101
|
+
let _rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema$value
|
|
102
|
+
const _rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema = () => (_rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema$value ??= z.object({
|
|
87
103
|
'total': z.number(),
|
|
88
|
-
})
|
|
104
|
+
}))
|
|
89
105
|
|
|
90
106
|
export const TYPERT_REMOTE = {
|
|
91
107
|
package: '@rayadesu/dsh-llm-billing',
|
|
@@ -105,16 +121,14 @@ export const TYPERT_REMOTE = {
|
|
|
105
121
|
codec: {
|
|
106
122
|
mode: 'strict',
|
|
107
123
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getBalance:force',
|
|
108
|
-
|
|
109
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema,
|
|
124
|
+
create: _rayadesu_dsh_llm_billing_billing_getBalance_parameter_0$schema,
|
|
110
125
|
},
|
|
111
126
|
},
|
|
112
127
|
],
|
|
113
128
|
result: {
|
|
114
129
|
mode: 'strict',
|
|
115
130
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekBalance',
|
|
116
|
-
|
|
117
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getBalance_result$schema,
|
|
131
|
+
create: _rayadesu_dsh_llm_billing_billing_getBalance_result$schema,
|
|
118
132
|
},
|
|
119
133
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":172,"column":3},
|
|
120
134
|
},
|
|
@@ -132,8 +146,7 @@ export const TYPERT_REMOTE = {
|
|
|
132
146
|
codec: {
|
|
133
147
|
mode: 'strict',
|
|
134
148
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getDelegatedSpend:sessionId',
|
|
135
|
-
|
|
136
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema,
|
|
149
|
+
create: _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_0$schema,
|
|
137
150
|
},
|
|
138
151
|
},
|
|
139
152
|
{
|
|
@@ -144,16 +157,14 @@ export const TYPERT_REMOTE = {
|
|
|
144
157
|
codec: {
|
|
145
158
|
mode: 'strict',
|
|
146
159
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getDelegatedSpend:force',
|
|
147
|
-
|
|
148
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema,
|
|
160
|
+
create: _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_parameter_1$schema,
|
|
149
161
|
},
|
|
150
162
|
},
|
|
151
163
|
],
|
|
152
164
|
result: {
|
|
153
165
|
mode: 'strict',
|
|
154
166
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekDelegatedSpend',
|
|
155
|
-
|
|
156
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema,
|
|
167
|
+
create: _rayadesu_dsh_llm_billing_billing_getDelegatedSpend_result$schema,
|
|
157
168
|
},
|
|
158
169
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":226,"column":3},
|
|
159
170
|
},
|
|
@@ -171,16 +182,14 @@ export const TYPERT_REMOTE = {
|
|
|
171
182
|
codec: {
|
|
172
183
|
mode: 'strict',
|
|
173
184
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getSessionSpend:sessionId',
|
|
174
|
-
|
|
175
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema,
|
|
185
|
+
create: _rayadesu_dsh_llm_billing_billing_getSessionSpend_parameter_0$schema,
|
|
176
186
|
},
|
|
177
187
|
},
|
|
178
188
|
],
|
|
179
189
|
result: {
|
|
180
190
|
mode: 'strict',
|
|
181
191
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekSessionSpend',
|
|
182
|
-
|
|
183
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema,
|
|
192
|
+
create: _rayadesu_dsh_llm_billing_billing_getSessionSpend_result$schema,
|
|
184
193
|
},
|
|
185
194
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":183,"column":3},
|
|
186
195
|
},
|
|
@@ -198,16 +207,14 @@ export const TYPERT_REMOTE = {
|
|
|
198
207
|
codec: {
|
|
199
208
|
mode: 'strict',
|
|
200
209
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getSessionTurnSpends:sessionId',
|
|
201
|
-
|
|
202
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema,
|
|
210
|
+
create: _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_parameter_0$schema,
|
|
203
211
|
},
|
|
204
212
|
},
|
|
205
213
|
],
|
|
206
214
|
result: {
|
|
207
215
|
mode: 'strict',
|
|
208
216
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekSessionTurnSpends',
|
|
209
|
-
|
|
210
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema,
|
|
217
|
+
create: _rayadesu_dsh_llm_billing_billing_getSessionTurnSpends_result$schema,
|
|
211
218
|
},
|
|
212
219
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":251,"column":3},
|
|
213
220
|
},
|
|
@@ -226,16 +233,14 @@ export const TYPERT_REMOTE = {
|
|
|
226
233
|
codec: {
|
|
227
234
|
mode: 'strict',
|
|
228
235
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getTodaySessionsSpend:force',
|
|
229
|
-
|
|
230
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema,
|
|
236
|
+
create: _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_parameter_0$schema,
|
|
231
237
|
},
|
|
232
238
|
},
|
|
233
239
|
],
|
|
234
240
|
result: {
|
|
235
241
|
mode: 'strict',
|
|
236
242
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekTodaySessionsSpend',
|
|
237
|
-
|
|
238
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema,
|
|
243
|
+
create: _rayadesu_dsh_llm_billing_billing_getTodaySessionsSpend_result$schema,
|
|
239
244
|
},
|
|
240
245
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":211,"column":3},
|
|
241
246
|
},
|
|
@@ -254,16 +259,14 @@ export const TYPERT_REMOTE = {
|
|
|
254
259
|
codec: {
|
|
255
260
|
mode: 'strict',
|
|
256
261
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getTodaySpend:force',
|
|
257
|
-
|
|
258
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema,
|
|
262
|
+
create: _rayadesu_dsh_llm_billing_billing_getTodaySpend_parameter_0$schema,
|
|
259
263
|
},
|
|
260
264
|
},
|
|
261
265
|
],
|
|
262
266
|
result: {
|
|
263
267
|
mode: 'strict',
|
|
264
268
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekTodaySpend',
|
|
265
|
-
|
|
266
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema,
|
|
269
|
+
create: _rayadesu_dsh_llm_billing_billing_getTodaySpend_result$schema,
|
|
267
270
|
},
|
|
268
271
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":196,"column":3},
|
|
269
272
|
},
|
|
@@ -281,8 +284,7 @@ export const TYPERT_REMOTE = {
|
|
|
281
284
|
codec: {
|
|
282
285
|
mode: 'strict',
|
|
283
286
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getTurnSpend:sessionId',
|
|
284
|
-
|
|
285
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema,
|
|
287
|
+
create: _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_0$schema,
|
|
286
288
|
},
|
|
287
289
|
},
|
|
288
290
|
{
|
|
@@ -292,16 +294,14 @@ export const TYPERT_REMOTE = {
|
|
|
292
294
|
codec: {
|
|
293
295
|
mode: 'strict',
|
|
294
296
|
typeSymbol: '@rayadesu/dsh-llm-billing#billing/getTurnSpend:messageId',
|
|
295
|
-
|
|
296
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema,
|
|
297
|
+
create: _rayadesu_dsh_llm_billing_billing_getTurnSpend_parameter_1$schema,
|
|
297
298
|
},
|
|
298
299
|
},
|
|
299
300
|
],
|
|
300
301
|
result: {
|
|
301
302
|
mode: 'strict',
|
|
302
303
|
typeSymbol: '@rayadesu/dsh-llm-billing/types#DeepSeekTurnSpend',
|
|
303
|
-
|
|
304
|
-
create: () => _rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema,
|
|
304
|
+
create: _rayadesu_dsh_llm_billing_billing_getTurnSpend_result$schema,
|
|
305
305
|
},
|
|
306
306
|
sourceLocation: {"file":"packages/llm-billing/src/balance.ts","line":239,"column":3},
|
|
307
307
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rayadesu/dsh-llm-billing",
|
|
3
3
|
"description": "Standalone DeepSeek account-balance and session-spend provider exposed through the billing Remote",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.15",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -56,29 +56,29 @@
|
|
|
56
56
|
},
|
|
57
57
|
"license": "MIT",
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@deepseek-ai/dsh-credentials": "^0.1.
|
|
60
|
-
"@deepseek-ai/dsh-launch-environment": "^0.1.
|
|
61
|
-
"@deepseek-ai/dsh-invariants": "^0.1.
|
|
62
|
-
"@deepseek-ai/dsh-llm": "^0.1.
|
|
63
|
-
"@deepseek-ai/dsh-session": "^0.1.
|
|
64
|
-
"@deepseek-ai/dsh-session-persistence": "^0.1.
|
|
65
|
-
"@deepseek-ai/dsh-session-projection": "^0.1.
|
|
66
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.
|
|
67
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
59
|
+
"@deepseek-ai/dsh-credentials": "^0.1.7-alpha.2",
|
|
60
|
+
"@deepseek-ai/dsh-launch-environment": "^0.1.7-alpha.2",
|
|
61
|
+
"@deepseek-ai/dsh-invariants": "^0.1.7-alpha.2",
|
|
62
|
+
"@deepseek-ai/dsh-llm": "^0.1.7-alpha.2",
|
|
63
|
+
"@deepseek-ai/dsh-session": "^0.1.7-alpha.2",
|
|
64
|
+
"@deepseek-ai/dsh-session-persistence": "^0.1.7-alpha.2",
|
|
65
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.7-alpha.2",
|
|
66
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.7-alpha.2",
|
|
67
|
+
"@deepseek-ai/cordis": "^4.0.4"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@deepseek-ai/schemastery": "^3.18.
|
|
70
|
+
"@deepseek-ai/schemastery": "^3.18.4",
|
|
71
71
|
"zod": "^4.4.3"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@deepseek-ai/dsh-credentials": "^0.1.
|
|
75
|
-
"@deepseek-ai/dsh-launch-environment": "^0.1.
|
|
76
|
-
"@deepseek-ai/dsh-invariants": "^0.1.
|
|
77
|
-
"@deepseek-ai/dsh-llm": "^0.1.
|
|
78
|
-
"@deepseek-ai/dsh-session": "^0.1.
|
|
79
|
-
"@deepseek-ai/dsh-session-persistence": "^0.1.
|
|
80
|
-
"@deepseek-ai/dsh-session-projection": "^0.1.
|
|
81
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.
|
|
82
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
74
|
+
"@deepseek-ai/dsh-credentials": "^0.1.7-alpha.2",
|
|
75
|
+
"@deepseek-ai/dsh-launch-environment": "^0.1.7-alpha.2",
|
|
76
|
+
"@deepseek-ai/dsh-invariants": "^0.1.7-alpha.2",
|
|
77
|
+
"@deepseek-ai/dsh-llm": "^0.1.7-alpha.2",
|
|
78
|
+
"@deepseek-ai/dsh-session": "^0.1.7-alpha.2",
|
|
79
|
+
"@deepseek-ai/dsh-session-persistence": "^0.1.7-alpha.2",
|
|
80
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.7-alpha.2",
|
|
81
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.7-alpha.2",
|
|
82
|
+
"@deepseek-ai/cordis": "^4.0.4"
|
|
83
83
|
}
|
|
84
84
|
}
|