@deveye/types 0.15.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/LICENSE +21 -0
- package/README.md +23 -0
- package/package.json +68 -0
- package/src/domain/audience.ts +549 -0
- package/src/domain/backup.ts +355 -0
- package/src/domain/credential.ts +55 -0
- package/src/domain/database.ts +467 -0
- package/src/domain/deploy.ts +231 -0
- package/src/domain/device.ts +172 -0
- package/src/domain/deviceFiles.ts +84 -0
- package/src/domain/deviceLogs.ts +82 -0
- package/src/domain/featureRegistry.ts +392 -0
- package/src/domain/finance.ts +477 -0
- package/src/domain/git.ts +419 -0
- package/src/domain/home.ts +314 -0
- package/src/domain/live.ts +272 -0
- package/src/domain/logs.ts +117 -0
- package/src/domain/mail.ts +394 -0
- package/src/domain/metrics.ts +127 -0
- package/src/domain/note.ts +202 -0
- package/src/domain/notifications.ts +268 -0
- package/src/domain/packages.ts +35 -0
- package/src/domain/password.ts +36 -0
- package/src/domain/presence.ts +21 -0
- package/src/domain/project.ts +168 -0
- package/src/domain/projectBoard.ts +130 -0
- package/src/domain/projectChat.ts +46 -0
- package/src/domain/projectHistory.ts +82 -0
- package/src/domain/projectLink.ts +87 -0
- package/src/domain/projectPlan.ts +68 -0
- package/src/domain/report.ts +492 -0
- package/src/domain/role.ts +8 -0
- package/src/domain/secrecy.ts +66 -0
- package/src/domain/sentinel.ts +623 -0
- package/src/domain/sharing.ts +186 -0
- package/src/domain/syncProtocol.ts +116 -0
- package/src/domain/twoFactor.ts +40 -0
- package/src/domain/uptime.ts +216 -0
- package/src/domain/user.ts +141 -0
- package/src/domain/workspace.ts +56 -0
- package/src/domain/workspaceRole.ts +251 -0
- package/src/features/admin.ts +112 -0
- package/src/features/audience.ts +275 -0
- package/src/features/backup.ts +230 -0
- package/src/features/database.ts +461 -0
- package/src/features/deploy.ts +245 -0
- package/src/features/device.ts +292 -0
- package/src/features/deviceFiles.ts +83 -0
- package/src/features/deviceLogs.ts +36 -0
- package/src/features/deviceTerminal.ts +57 -0
- package/src/features/finance.ts +360 -0
- package/src/features/git.ts +368 -0
- package/src/features/home.ts +32 -0
- package/src/features/live.ts +113 -0
- package/src/features/logs.ts +86 -0
- package/src/features/mail.ts +374 -0
- package/src/features/metrics.ts +185 -0
- package/src/features/note.ts +189 -0
- package/src/features/notify.ts +164 -0
- package/src/features/password.ts +67 -0
- package/src/features/project.ts +709 -0
- package/src/features/registry.ts +103 -0
- package/src/features/secrecy.ts +120 -0
- package/src/features/sentinel.ts +233 -0
- package/src/features/sharing.ts +79 -0
- package/src/features/twoFactor.ts +47 -0
- package/src/features/uptime.ts +186 -0
- package/src/features/user.ts +91 -0
- package/src/features/workspace.ts +200 -0
- package/src/http/auth.ts +94 -0
- package/src/http/device.ts +222 -0
- package/src/http/status.ts +45 -0
- package/src/index.ts +1700 -0
- package/src/protocol/agent.ts +1171 -0
- package/src/protocol/envelope.ts +46 -0
- package/src/protocol/error.ts +27 -0
- package/src/protocol/result.ts +17 -0
- package/src/protocol/version.ts +6 -0
- package/src/sdk/client-ambient.d.ts +238 -0
- package/src/sdk/client.ts +66 -0
- package/src/sdk/ids.ts +25 -0
- package/src/sdk/index.ts +11 -0
- package/src/sdk/manifest.ts +326 -0
- package/src/sdk/providers.ts +48 -0
- package/src/sdk/server.ts +378 -0
- package/src/sdk/testing.ts +179 -0
- package/src/utils/version.ts +28 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,1700 @@
|
|
|
1
|
+
// Protocol
|
|
2
|
+
export { clientMessageSchema, serverMessageSchema } from './protocol/envelope';
|
|
3
|
+
export type { ClientMessage, ConnectionState, ServerMessage } from './protocol/envelope';
|
|
4
|
+
export { ErrorCodeSchema, ProtocolErrorSchema } from './protocol/error';
|
|
5
|
+
export type { ErrorCode, ProtocolError } from './protocol/error';
|
|
6
|
+
export { err, ok, resultSchema } from './protocol/result';
|
|
7
|
+
export type { Result } from './protocol/result';
|
|
8
|
+
export { PROTOCOL_VERSION } from './protocol/version';
|
|
9
|
+
export type { ProtocolVersion } from './protocol/version';
|
|
10
|
+
export {
|
|
11
|
+
AGENT_ACK,
|
|
12
|
+
AGENT_AUTH_EVENTS,
|
|
13
|
+
AGENT_COLLECT,
|
|
14
|
+
AGENT_CONFIG,
|
|
15
|
+
AGENT_DESTROY,
|
|
16
|
+
AGENT_DESTROYED,
|
|
17
|
+
AGENT_ERROR,
|
|
18
|
+
AGENT_FILES_ANALYZE,
|
|
19
|
+
AGENT_FILES_CHUNK,
|
|
20
|
+
AGENT_FILES_DOWNLOAD,
|
|
21
|
+
AGENT_FILES_LIST,
|
|
22
|
+
AGENT_FILES_LISTING,
|
|
23
|
+
AGENT_FILES_MATCHES,
|
|
24
|
+
AGENT_FILES_MUTATE,
|
|
25
|
+
AGENT_FILES_OP_RESULT,
|
|
26
|
+
AGENT_FILES_SEARCH,
|
|
27
|
+
AGENT_FILES_UPLOAD,
|
|
28
|
+
AGENT_FILES_USAGE,
|
|
29
|
+
AGENT_HELLO,
|
|
30
|
+
AGENT_INTEGRITY,
|
|
31
|
+
AGENT_LIFECYCLE,
|
|
32
|
+
AGENT_LOG_LINES,
|
|
33
|
+
AGENT_LOG_QUERY,
|
|
34
|
+
AGENT_LOG_SOURCES,
|
|
35
|
+
AGENT_LOG_SOURCES_RESULT,
|
|
36
|
+
AGENT_METRICS_BATCH,
|
|
37
|
+
AGENT_PKG_DONE,
|
|
38
|
+
AGENT_PKG_LIST,
|
|
39
|
+
AGENT_PKG_LIST_RESULT,
|
|
40
|
+
AGENT_PKG_PROGRESS,
|
|
41
|
+
AGENT_PKG_UPGRADE,
|
|
42
|
+
AGENT_POWER,
|
|
43
|
+
AGENT_POWER_RESULT,
|
|
44
|
+
AGENT_REPORT,
|
|
45
|
+
AGENT_SCAN,
|
|
46
|
+
AGENT_SERVICE,
|
|
47
|
+
AGENT_SERVICE_RESULT,
|
|
48
|
+
AGENT_SYNC_ACK,
|
|
49
|
+
AGENT_SYNC_APPLY_CHUNK,
|
|
50
|
+
AGENT_SYNC_APPLY_DIR,
|
|
51
|
+
AGENT_SYNC_APPLY_START,
|
|
52
|
+
AGENT_SYNC_APPLY_LOCAL,
|
|
53
|
+
AGENT_SYNC_CHANGED,
|
|
54
|
+
AGENT_SYNC_CHUNK,
|
|
55
|
+
AGENT_SYNC_CONFIG,
|
|
56
|
+
AGENT_SYNC_DELETE,
|
|
57
|
+
AGENT_SYNC_MOVE,
|
|
58
|
+
AGENT_SYNC_INDEX,
|
|
59
|
+
AGENT_SYNC_OP_RESULT,
|
|
60
|
+
AGENT_SYNC_PUSH,
|
|
61
|
+
AGENT_SYNC_SCAN,
|
|
62
|
+
AGENT_TERM_CLOSE,
|
|
63
|
+
AGENT_TERM_EXIT,
|
|
64
|
+
AGENT_TERM_INPUT,
|
|
65
|
+
AGENT_TERM_OPEN,
|
|
66
|
+
AGENT_TERM_OUTPUT,
|
|
67
|
+
AGENT_TERM_RESIZE,
|
|
68
|
+
AGENT_UPDATE,
|
|
69
|
+
AGENT_UPDATED,
|
|
70
|
+
agentClientMessageSchema,
|
|
71
|
+
agentConfigPayloadSchema,
|
|
72
|
+
agentDestroyedMessagePayloadSchema,
|
|
73
|
+
agentFilesAnalyzePayloadSchema,
|
|
74
|
+
agentFilesChunkPayloadSchema,
|
|
75
|
+
agentFilesDownloadPayloadSchema,
|
|
76
|
+
agentFilesListPayloadSchema,
|
|
77
|
+
agentFilesListingPayloadSchema,
|
|
78
|
+
agentFilesMatchesPayloadSchema,
|
|
79
|
+
agentFilesMutatePayloadSchema,
|
|
80
|
+
agentFilesOpResultPayloadSchema,
|
|
81
|
+
agentFilesSearchPayloadSchema,
|
|
82
|
+
agentFilesUploadPayloadSchema,
|
|
83
|
+
agentFilesUsagePayloadSchema,
|
|
84
|
+
agentLifecycleActionSchema,
|
|
85
|
+
agentLifecyclePayloadSchema,
|
|
86
|
+
agentLogLinesPayloadSchema,
|
|
87
|
+
agentLogQueryPayloadSchema,
|
|
88
|
+
agentLogSourcesResultPayloadSchema,
|
|
89
|
+
agentPkgDonePayloadSchema,
|
|
90
|
+
agentPkgListResultPayloadSchema,
|
|
91
|
+
agentPkgProgressPayloadSchema,
|
|
92
|
+
agentPkgUpgradePayloadSchema,
|
|
93
|
+
agentPowerActionSchema,
|
|
94
|
+
agentPowerPayloadSchema,
|
|
95
|
+
agentPowerResultPayloadSchema,
|
|
96
|
+
agentAuthEventsMessagePayloadSchema,
|
|
97
|
+
agentIntegrityMessagePayloadSchema,
|
|
98
|
+
agentReportMessagePayloadSchema,
|
|
99
|
+
agentServerMessageSchema,
|
|
100
|
+
agentServiceActionSchema,
|
|
101
|
+
agentServicePayloadSchema,
|
|
102
|
+
agentServiceResultPayloadSchema,
|
|
103
|
+
agentSyncAckPayloadSchema,
|
|
104
|
+
agentSyncApplyChunkPayloadSchema,
|
|
105
|
+
agentSyncApplyDirPayloadSchema,
|
|
106
|
+
agentSyncApplyStartPayloadSchema,
|
|
107
|
+
agentSyncApplyLocalPayloadSchema,
|
|
108
|
+
agentSyncChangedPayloadSchema,
|
|
109
|
+
agentSyncChunkPayloadSchema,
|
|
110
|
+
agentSyncConfigPayloadSchema,
|
|
111
|
+
agentSyncDeletePayloadSchema,
|
|
112
|
+
agentSyncMovePayloadSchema,
|
|
113
|
+
agentSyncIndexPayloadSchema,
|
|
114
|
+
agentSyncOpResultPayloadSchema,
|
|
115
|
+
agentSyncPushPayloadSchema,
|
|
116
|
+
agentSyncScanPayloadSchema,
|
|
117
|
+
agentTermClosePayloadSchema,
|
|
118
|
+
agentTermExitPayloadSchema,
|
|
119
|
+
agentTermInputPayloadSchema,
|
|
120
|
+
agentTermOpenPayloadSchema,
|
|
121
|
+
agentTermOutputPayloadSchema,
|
|
122
|
+
agentTermResizePayloadSchema,
|
|
123
|
+
agentUpdatedMessagePayloadSchema,
|
|
124
|
+
agentUpdatePayloadSchema,
|
|
125
|
+
CLOUD_SYNC_CHUNK_EVENT,
|
|
126
|
+
CLOUD_SYNC_PROGRESS_EVENT,
|
|
127
|
+
CLOUD_SYNC_STATE_EVENT,
|
|
128
|
+
cloudSyncChunkPushSchema,
|
|
129
|
+
cloudSyncProgressPushSchema,
|
|
130
|
+
cloudSyncStatePushSchema,
|
|
131
|
+
DEVICE_FILES_CHUNK_EVENT,
|
|
132
|
+
DEVICE_FILES_LISTING_EVENT,
|
|
133
|
+
DEVICE_FILES_MATCHES_EVENT,
|
|
134
|
+
DEVICE_FILES_OP_EVENT,
|
|
135
|
+
DEVICE_FILES_USAGE_EVENT,
|
|
136
|
+
DEVICE_LOG_LINES_EVENT,
|
|
137
|
+
DEVICE_LOG_SOURCES_EVENT,
|
|
138
|
+
DEVICE_POWER_EVENT,
|
|
139
|
+
DEVICE_PRESENCE_EVENT,
|
|
140
|
+
DEVICE_REPORT_EVENT,
|
|
141
|
+
DEVICE_SERVICE_EVENT,
|
|
142
|
+
DEVICE_TERM_EXIT_EVENT,
|
|
143
|
+
DEVICE_TERM_OUTPUT_EVENT,
|
|
144
|
+
deviceFilesChunkPushSchema,
|
|
145
|
+
deviceFilesListingPushSchema,
|
|
146
|
+
deviceFilesMatchesPushSchema,
|
|
147
|
+
deviceFilesOpPushSchema,
|
|
148
|
+
deviceFilesUsagePushSchema,
|
|
149
|
+
deviceLogLinesPushSchema,
|
|
150
|
+
deviceLogSourcesPushSchema,
|
|
151
|
+
devicePowerPushSchema,
|
|
152
|
+
devicePresenceSchema,
|
|
153
|
+
deviceReportPushSchema,
|
|
154
|
+
deviceServicePushSchema,
|
|
155
|
+
deviceTermExitPushSchema,
|
|
156
|
+
deviceTermOutputPushSchema,
|
|
157
|
+
METRICS_PUSH_EVENT,
|
|
158
|
+
metricsPushSchema,
|
|
159
|
+
PACKAGE_DONE_EVENT,
|
|
160
|
+
PACKAGE_LIST_EVENT,
|
|
161
|
+
PACKAGE_PROGRESS_EVENT,
|
|
162
|
+
PACKAGE_STARTED_EVENT,
|
|
163
|
+
packageDonePushSchema,
|
|
164
|
+
packageListPushSchema,
|
|
165
|
+
packageProgressPushSchema,
|
|
166
|
+
packageStartedPushSchema,
|
|
167
|
+
syncIndexEntrySchema,
|
|
168
|
+
syncShareAssignmentSchema
|
|
169
|
+
} from './protocol/agent';
|
|
170
|
+
export type {
|
|
171
|
+
AgentClientMessage,
|
|
172
|
+
AgentConfigPayload,
|
|
173
|
+
AgentFilesAnalyzePayload,
|
|
174
|
+
AgentFilesDownloadPayload,
|
|
175
|
+
AgentFilesListPayload,
|
|
176
|
+
AgentFilesMutatePayload,
|
|
177
|
+
AgentFilesSearchPayload,
|
|
178
|
+
AgentFilesUploadPayload,
|
|
179
|
+
AgentLifecycleAction,
|
|
180
|
+
AgentLifecyclePayload,
|
|
181
|
+
AgentLogQueryPayload,
|
|
182
|
+
AgentPkgUpgradePayload,
|
|
183
|
+
AgentPowerAction,
|
|
184
|
+
AgentPowerPayload,
|
|
185
|
+
AgentServerMessage,
|
|
186
|
+
AgentServiceAction,
|
|
187
|
+
AgentServicePayload,
|
|
188
|
+
AgentSyncAckPayload,
|
|
189
|
+
AgentSyncApplyChunkPayload,
|
|
190
|
+
AgentSyncApplyDirPayload,
|
|
191
|
+
AgentSyncApplyStartPayload,
|
|
192
|
+
AgentSyncApplyLocalPayload,
|
|
193
|
+
AgentSyncChangedPayload,
|
|
194
|
+
AgentSyncChunkPayload,
|
|
195
|
+
AgentSyncConfigPayload,
|
|
196
|
+
AgentSyncDeletePayload,
|
|
197
|
+
AgentSyncIndexPayload,
|
|
198
|
+
AgentSyncMovePayload,
|
|
199
|
+
AgentSyncOpResultPayload,
|
|
200
|
+
AgentSyncPushPayload,
|
|
201
|
+
AgentSyncScanPayload,
|
|
202
|
+
AgentTermClosePayload,
|
|
203
|
+
AgentTermInputPayload,
|
|
204
|
+
AgentTermOpenPayload,
|
|
205
|
+
AgentTermResizePayload,
|
|
206
|
+
AgentUpdatePayload,
|
|
207
|
+
CloudSyncChunkPush,
|
|
208
|
+
CloudSyncProgressPush,
|
|
209
|
+
CloudSyncStatePush,
|
|
210
|
+
DeviceFilesChunkPush,
|
|
211
|
+
DeviceFilesListingPush,
|
|
212
|
+
DeviceFilesMatchesPush,
|
|
213
|
+
DeviceFilesOpPush,
|
|
214
|
+
DeviceFilesUsagePush,
|
|
215
|
+
DeviceLogLinesPush,
|
|
216
|
+
DeviceLogSourcesPush,
|
|
217
|
+
DevicePowerPush,
|
|
218
|
+
DevicePresence,
|
|
219
|
+
DeviceReportPush,
|
|
220
|
+
DeviceServicePush,
|
|
221
|
+
DeviceTermExitPush,
|
|
222
|
+
DeviceTermOutputPush,
|
|
223
|
+
MetricsPush,
|
|
224
|
+
PackageDonePush,
|
|
225
|
+
PackageListPush,
|
|
226
|
+
PackageProgressPush,
|
|
227
|
+
PackageStartedPush,
|
|
228
|
+
SyncIndexEntry,
|
|
229
|
+
SyncShareAssignment
|
|
230
|
+
} from './protocol/agent';
|
|
231
|
+
|
|
232
|
+
// Domain
|
|
233
|
+
export {
|
|
234
|
+
LOG_CATEGORIES,
|
|
235
|
+
LOG_LEVEL_NAMES,
|
|
236
|
+
LOG_LEVELS,
|
|
237
|
+
logEntrySchema,
|
|
238
|
+
logLevelName,
|
|
239
|
+
logLevelNameSchema,
|
|
240
|
+
logLevelValue,
|
|
241
|
+
logSourceSchema
|
|
242
|
+
} from './domain/logs';
|
|
243
|
+
export type { LogCategory, LogEntry, LogLevelName, LogRow, LogSource } from './domain/logs';
|
|
244
|
+
export {
|
|
245
|
+
DEVICE_LOG_LEVELS,
|
|
246
|
+
DEVICE_LOG_PAGE_DEFAULT,
|
|
247
|
+
DEVICE_LOG_PAGE_MAX,
|
|
248
|
+
deviceLogFilterSchema,
|
|
249
|
+
deviceLogLevelSchema,
|
|
250
|
+
deviceLogLineSchema,
|
|
251
|
+
deviceLogSourceKindSchema,
|
|
252
|
+
deviceLogSourceSchema
|
|
253
|
+
} from './domain/deviceLogs';
|
|
254
|
+
export {
|
|
255
|
+
cloudSyncProgressSchema,
|
|
256
|
+
cloudSyncShareStateSchema,
|
|
257
|
+
cloudSyncShareStatsSchema,
|
|
258
|
+
sha256HexSchema,
|
|
259
|
+
SYNC_CHUNK_MAX,
|
|
260
|
+
SYNC_FINGERPRINT_SEP,
|
|
261
|
+
SYNC_INDEX_BATCH_MAX,
|
|
262
|
+
SYNC_PATTERN_MAX,
|
|
263
|
+
SYNC_REL_PATH_MAX,
|
|
264
|
+
SYNC_STORAGE_PATH_MAX,
|
|
265
|
+
syncDirectionSchema,
|
|
266
|
+
syncEntryKindSchema,
|
|
267
|
+
syncExclusionKindSchema,
|
|
268
|
+
syncIndexFingerprintSchema,
|
|
269
|
+
syncScanModeSchema,
|
|
270
|
+
syncSessionStateSchema,
|
|
271
|
+
syncShareStatusSchema
|
|
272
|
+
} from './domain/syncProtocol';
|
|
273
|
+
export type {
|
|
274
|
+
CloudSyncProgress,
|
|
275
|
+
CloudSyncShareState,
|
|
276
|
+
CloudSyncShareStats,
|
|
277
|
+
SyncDirection,
|
|
278
|
+
SyncEntryKind,
|
|
279
|
+
SyncExclusionKind,
|
|
280
|
+
SyncScanMode,
|
|
281
|
+
SyncSessionState,
|
|
282
|
+
SyncShareStatus
|
|
283
|
+
} from './domain/syncProtocol';
|
|
284
|
+
export type {
|
|
285
|
+
DeviceLogFilter,
|
|
286
|
+
DeviceLogLevel,
|
|
287
|
+
DeviceLogLine,
|
|
288
|
+
DeviceLogSource,
|
|
289
|
+
DeviceLogSourceKind
|
|
290
|
+
} from './domain/deviceLogs';
|
|
291
|
+
export {
|
|
292
|
+
FILE_SEARCH_MAX,
|
|
293
|
+
fileEntrySchema,
|
|
294
|
+
fileKindSchema,
|
|
295
|
+
fileListingSchema,
|
|
296
|
+
fileMatchSchema,
|
|
297
|
+
fileMutateOpSchema,
|
|
298
|
+
fileSearchFieldSchema,
|
|
299
|
+
fileSearchFilterSchema,
|
|
300
|
+
fileUsageEntrySchema
|
|
301
|
+
} from './domain/deviceFiles';
|
|
302
|
+
export type {
|
|
303
|
+
FileEntry,
|
|
304
|
+
FileKind,
|
|
305
|
+
FileListing,
|
|
306
|
+
FileMatch,
|
|
307
|
+
FileMutateOp,
|
|
308
|
+
FileSearchField,
|
|
309
|
+
FileSearchFilter,
|
|
310
|
+
FileUsageEntry
|
|
311
|
+
} from './domain/deviceFiles';
|
|
312
|
+
export {
|
|
313
|
+
passwordEntryMaskedSchema,
|
|
314
|
+
passwordEntrySchema,
|
|
315
|
+
passwordStatusSchema
|
|
316
|
+
} from './domain/password';
|
|
317
|
+
export type {
|
|
318
|
+
PasswordEntry,
|
|
319
|
+
PasswordEntryMasked,
|
|
320
|
+
PasswordRow,
|
|
321
|
+
PasswordStatus
|
|
322
|
+
} from './domain/password';
|
|
323
|
+
export {
|
|
324
|
+
NOTE_BLOCK_TEXT_MAX_LENGTH,
|
|
325
|
+
NOTE_FOLDER_MAX_LENGTH,
|
|
326
|
+
NOTE_MAX_BLOCKS,
|
|
327
|
+
NOTE_TITLE_MAX_LENGTH,
|
|
328
|
+
noteBlockSchema,
|
|
329
|
+
noteBulletBlockSchema,
|
|
330
|
+
noteCheckBlockSchema,
|
|
331
|
+
noteColorSchema,
|
|
332
|
+
noteDividerBlockSchema,
|
|
333
|
+
noteFolderSchema,
|
|
334
|
+
noteHeadingBlockSchema,
|
|
335
|
+
noteNumberBlockSchema,
|
|
336
|
+
noteSchema,
|
|
337
|
+
noteSummarySchema,
|
|
338
|
+
noteTextBlockSchema
|
|
339
|
+
} from './domain/note';
|
|
340
|
+
export type {
|
|
341
|
+
Note,
|
|
342
|
+
NoteBlock,
|
|
343
|
+
NoteBulletBlock,
|
|
344
|
+
NoteCheckBlock,
|
|
345
|
+
NoteColor,
|
|
346
|
+
NoteDividerBlock,
|
|
347
|
+
NoteFolder,
|
|
348
|
+
NoteFolderRow,
|
|
349
|
+
NoteHeadingBlock,
|
|
350
|
+
NoteNumberBlock,
|
|
351
|
+
NoteRow,
|
|
352
|
+
NoteSummary,
|
|
353
|
+
NoteTextBlock
|
|
354
|
+
} from './domain/note';
|
|
355
|
+
export {
|
|
356
|
+
PROJECT_DESCRIPTION_MAX_LENGTH,
|
|
357
|
+
PROJECT_ICON_MAX_LENGTH,
|
|
358
|
+
PROJECT_MAX_TAGS,
|
|
359
|
+
PROJECT_TAG_LABEL_MAX_LENGTH,
|
|
360
|
+
PROJECT_TITLE_MAX_LENGTH,
|
|
361
|
+
PROJECT_VERSION_MAX_LENGTH,
|
|
362
|
+
projectDraftSchema,
|
|
363
|
+
projectIconSchema,
|
|
364
|
+
projectSchema,
|
|
365
|
+
projectSecurityTierSchema,
|
|
366
|
+
projectStatusSchema,
|
|
367
|
+
projectSummarySchema,
|
|
368
|
+
projectTagKindSchema,
|
|
369
|
+
projectTagSchema,
|
|
370
|
+
projectVersionSourceSchema
|
|
371
|
+
} from './domain/project';
|
|
372
|
+
export type {
|
|
373
|
+
Project,
|
|
374
|
+
ProjectDraft,
|
|
375
|
+
ProjectRow,
|
|
376
|
+
ProjectSecurityTier,
|
|
377
|
+
ProjectStatus,
|
|
378
|
+
ProjectSummary,
|
|
379
|
+
ProjectTag,
|
|
380
|
+
ProjectTagKind,
|
|
381
|
+
ProjectVersionSource
|
|
382
|
+
} from './domain/project';
|
|
383
|
+
export {
|
|
384
|
+
PROJECT_CARD_DESCRIPTION_MAX_LENGTH,
|
|
385
|
+
PROJECT_CARD_TITLE_MAX_LENGTH,
|
|
386
|
+
PROJECT_CHECKLIST_LABEL_MAX_LENGTH,
|
|
387
|
+
PROJECT_COLUMN_NAME_MAX_LENGTH,
|
|
388
|
+
PROJECT_MAX_CHECKLIST_ITEMS,
|
|
389
|
+
PROJECT_MAX_COLUMNS,
|
|
390
|
+
PROJECT_PRIORITIES,
|
|
391
|
+
projectCardDraftSchema,
|
|
392
|
+
projectCardSchema,
|
|
393
|
+
projectChecklistItemSchema,
|
|
394
|
+
projectColumnSchema,
|
|
395
|
+
projectPrioritySchema
|
|
396
|
+
} from './domain/projectBoard';
|
|
397
|
+
export type {
|
|
398
|
+
ProjectCard,
|
|
399
|
+
ProjectCardDraft,
|
|
400
|
+
ProjectCardRow,
|
|
401
|
+
ProjectChecklistItem,
|
|
402
|
+
ProjectColumn,
|
|
403
|
+
ProjectColumnRow,
|
|
404
|
+
ProjectPriority
|
|
405
|
+
} from './domain/projectBoard';
|
|
406
|
+
export {
|
|
407
|
+
PROJECT_MESSAGE_MAX_LENGTH,
|
|
408
|
+
PROJECT_MESSAGE_PAGE_SIZE,
|
|
409
|
+
projectMessageSchema
|
|
410
|
+
} from './domain/projectChat';
|
|
411
|
+
export type { ProjectMessage, ProjectMessageRow } from './domain/projectChat';
|
|
412
|
+
export {
|
|
413
|
+
PROJECT_MILESTONE_DESCRIPTION_MAX_LENGTH,
|
|
414
|
+
PROJECT_MILESTONE_NAME_MAX_LENGTH,
|
|
415
|
+
projectCardDepSchema,
|
|
416
|
+
projectMilestoneDraftSchema,
|
|
417
|
+
projectMilestoneSchema
|
|
418
|
+
} from './domain/projectPlan';
|
|
419
|
+
export type {
|
|
420
|
+
ProjectCardDep,
|
|
421
|
+
ProjectCardDepRow,
|
|
422
|
+
ProjectMilestone,
|
|
423
|
+
ProjectMilestoneDraft,
|
|
424
|
+
ProjectMilestoneRow
|
|
425
|
+
} from './domain/projectPlan';
|
|
426
|
+
export {
|
|
427
|
+
PROJECT_EVENT_LABEL_MAX_LENGTH,
|
|
428
|
+
PROJECT_EVENT_PAGE_SIZE,
|
|
429
|
+
projectEventKindSchema,
|
|
430
|
+
projectEventRefSchema,
|
|
431
|
+
projectEventSchema
|
|
432
|
+
} from './domain/projectHistory';
|
|
433
|
+
export {
|
|
434
|
+
GIT_GRAPH_SHA_LEN,
|
|
435
|
+
GIT_REPO_NAME_MAX_LENGTH,
|
|
436
|
+
GIT_REPO_OWNER_MAX_LENGTH,
|
|
437
|
+
gitBranchSchema,
|
|
438
|
+
gitCommitAuthorSchema,
|
|
439
|
+
gitCommitDetailSchema,
|
|
440
|
+
gitCommitCursorSchema,
|
|
441
|
+
gitCommitPointsSchema,
|
|
442
|
+
gitCommitSchema,
|
|
443
|
+
gitDiffFileSchema,
|
|
444
|
+
gitDiffStatusSchema,
|
|
445
|
+
gitProviderSchema,
|
|
446
|
+
gitPullRequestSchema,
|
|
447
|
+
gitPullStateSchema,
|
|
448
|
+
gitReleaseSchema,
|
|
449
|
+
gitRepoCandidateSchema,
|
|
450
|
+
gitRepoSchema,
|
|
451
|
+
gitRepoSyncStateSchema,
|
|
452
|
+
gitRepoUsageSchema,
|
|
453
|
+
gitSyncStatusSchema
|
|
454
|
+
} from './domain/git';
|
|
455
|
+
export {
|
|
456
|
+
CREDENTIAL_LABEL_MAX_LENGTH,
|
|
457
|
+
CREDENTIAL_SECRET_MAX_LENGTH,
|
|
458
|
+
credentialProviderSchema,
|
|
459
|
+
credentialSchema
|
|
460
|
+
} from './domain/credential';
|
|
461
|
+
export type { Credential, CredentialProvider, CredentialRow } from './domain/credential';
|
|
462
|
+
export {
|
|
463
|
+
BACKUP_ACCESS_KEY_MAX,
|
|
464
|
+
BACKUP_BUCKET_MAX,
|
|
465
|
+
BACKUP_DESTINATION_NAME_MAX,
|
|
466
|
+
BACKUP_ENDPOINT_MAX,
|
|
467
|
+
BACKUP_JOB_NAME_MAX,
|
|
468
|
+
BACKUP_PATH_MAX,
|
|
469
|
+
BACKUP_SECRET_MAX,
|
|
470
|
+
backupDestinationKindSchema,
|
|
471
|
+
backupDestinationProbeSchema,
|
|
472
|
+
backupDestinationSchema,
|
|
473
|
+
backupDestinationStatusSchema,
|
|
474
|
+
backupEncryptionSchema,
|
|
475
|
+
backupJobSchema,
|
|
476
|
+
backupRunSchema,
|
|
477
|
+
backupRunStatusSchema,
|
|
478
|
+
backupScheduleKindSchema,
|
|
479
|
+
backupSourceCandidateSchema,
|
|
480
|
+
backupSourceKindSchema
|
|
481
|
+
} from './domain/backup';
|
|
482
|
+
export type {
|
|
483
|
+
BackupDestination,
|
|
484
|
+
BackupDestinationKind,
|
|
485
|
+
BackupEncryption,
|
|
486
|
+
BackupDestinationProbe,
|
|
487
|
+
BackupDestinationRow,
|
|
488
|
+
BackupDestinationStatus,
|
|
489
|
+
BackupDestinationWithUsageRow,
|
|
490
|
+
BackupJob,
|
|
491
|
+
BackupJobRow,
|
|
492
|
+
BackupJobWithStateRow,
|
|
493
|
+
BackupRun,
|
|
494
|
+
BackupRunRow,
|
|
495
|
+
BackupRunStatus,
|
|
496
|
+
BackupScheduleKind,
|
|
497
|
+
BackupSourceCandidate,
|
|
498
|
+
BackupSourceKind
|
|
499
|
+
} from './domain/backup';
|
|
500
|
+
export {
|
|
501
|
+
DEPLOY_DESCRIPTION_MAX_LENGTH,
|
|
502
|
+
DEPLOY_EXTERNAL_ID_MAX_LENGTH,
|
|
503
|
+
DEPLOY_TARGET_NAME_MAX_LENGTH,
|
|
504
|
+
DEPLOY_TITLE_MAX_LENGTH,
|
|
505
|
+
deployCandidateSchema,
|
|
506
|
+
deployHistoryEntrySchema,
|
|
507
|
+
deployProviderSchema,
|
|
508
|
+
deployStatusSchema,
|
|
509
|
+
deployTargetKindSchema,
|
|
510
|
+
deployTargetSchema,
|
|
511
|
+
deploymentSchema
|
|
512
|
+
} from './domain/deploy';
|
|
513
|
+
export {
|
|
514
|
+
DATABASE_ALERT_MESSAGE_MAX_LENGTH,
|
|
515
|
+
DATABASE_ALERT_NAME_MAX_LENGTH,
|
|
516
|
+
DATABASE_HOST_MAX_LENGTH,
|
|
517
|
+
DATABASE_NAME_MAX_LENGTH,
|
|
518
|
+
DATABASE_SECRET_MAX_LENGTH,
|
|
519
|
+
DATABASE_SQL_MAX_LENGTH,
|
|
520
|
+
DATABASE_USER_MAX_LENGTH,
|
|
521
|
+
databaseAccessKindSchema,
|
|
522
|
+
databaseAccessSchema,
|
|
523
|
+
databaseAlertSchema,
|
|
524
|
+
databaseCellSchema,
|
|
525
|
+
databaseColumnSchema,
|
|
526
|
+
databaseCombinatorSchema,
|
|
527
|
+
databaseComparatorSchema,
|
|
528
|
+
databaseConditionSchema,
|
|
529
|
+
databaseEngineSchema,
|
|
530
|
+
databaseExecutionSchema,
|
|
531
|
+
databaseExportFormatSchema,
|
|
532
|
+
databaseFilterOperatorSchema,
|
|
533
|
+
databaseFilterSchema,
|
|
534
|
+
databaseForeignKeySchema,
|
|
535
|
+
databaseIdRangeSchema,
|
|
536
|
+
databaseIndexSchema,
|
|
537
|
+
databaseProbeSchema,
|
|
538
|
+
databaseRowsSchema,
|
|
539
|
+
databaseSchema,
|
|
540
|
+
databaseSortSchema,
|
|
541
|
+
databaseSshAuthSchema,
|
|
542
|
+
databaseStatusSchema,
|
|
543
|
+
databaseStructureSchema,
|
|
544
|
+
databaseTableSchema,
|
|
545
|
+
databaseUsageSchema
|
|
546
|
+
} from './domain/database';
|
|
547
|
+
export type {
|
|
548
|
+
Database,
|
|
549
|
+
DatabaseAccess,
|
|
550
|
+
DatabaseAccessKind,
|
|
551
|
+
DatabaseAlert,
|
|
552
|
+
DatabaseAlertRow,
|
|
553
|
+
DatabaseCell,
|
|
554
|
+
DatabaseColumn,
|
|
555
|
+
DatabaseCombinator,
|
|
556
|
+
DatabaseComparator,
|
|
557
|
+
DatabaseCondition,
|
|
558
|
+
DatabaseEngine,
|
|
559
|
+
DatabaseExecution,
|
|
560
|
+
DatabaseExportFormat,
|
|
561
|
+
DatabaseFilter,
|
|
562
|
+
DatabaseFilterOperator,
|
|
563
|
+
DatabaseForeignKey,
|
|
564
|
+
DatabaseIdRange,
|
|
565
|
+
DatabaseIndex,
|
|
566
|
+
DatabaseProbe,
|
|
567
|
+
DatabaseRow,
|
|
568
|
+
DatabaseRows,
|
|
569
|
+
DatabaseSort,
|
|
570
|
+
DatabaseSshAuth,
|
|
571
|
+
DatabaseStatus,
|
|
572
|
+
DatabaseStructure,
|
|
573
|
+
DatabaseTable,
|
|
574
|
+
DatabaseUsage,
|
|
575
|
+
ProjectDatabaseLinkRow
|
|
576
|
+
} from './domain/database';
|
|
577
|
+
export {
|
|
578
|
+
AUDIENCE_BATCH_MAX,
|
|
579
|
+
AUDIENCE_BREAKDOWN_MAX,
|
|
580
|
+
AUDIENCE_DIMENSIONS,
|
|
581
|
+
AUDIENCE_FUNNEL_MAX_STEPS,
|
|
582
|
+
AUDIENCE_FUNNEL_NAME_MAX_LENGTH,
|
|
583
|
+
AUDIENCE_LABEL_MAX_LENGTH,
|
|
584
|
+
AUDIENCE_MAX_FUNNELS,
|
|
585
|
+
AUDIENCE_MAX_ORIGINS,
|
|
586
|
+
AUDIENCE_ORIGIN_MAX_LENGTH,
|
|
587
|
+
AUDIENCE_PUBLIC_KEY_LENGTH,
|
|
588
|
+
AUDIENCE_RETENTION_DEFAULT_DAYS,
|
|
589
|
+
AUDIENCE_RETENTION_MAX_DAYS,
|
|
590
|
+
AUDIENCE_RETENTION_MIN_DAYS,
|
|
591
|
+
AUDIENCE_SESSION_GAP_SECONDS,
|
|
592
|
+
AUDIENCE_SITE_DESCRIPTION_MAX_LENGTH,
|
|
593
|
+
AUDIENCE_SITE_NAME_MAX_LENGTH,
|
|
594
|
+
AUDIENCE_VISITOR_ID_MAX_LENGTH,
|
|
595
|
+
audienceActivityCellSchema,
|
|
596
|
+
audienceActivitySchema,
|
|
597
|
+
audienceBreakdownItemSchema,
|
|
598
|
+
audienceDimensionSchema,
|
|
599
|
+
audienceEventInputSchema,
|
|
600
|
+
audienceFunnelSchema,
|
|
601
|
+
audienceFunnelStepDraftSchema,
|
|
602
|
+
audienceFunnelStepKindSchema,
|
|
603
|
+
audienceFunnelStepSchema,
|
|
604
|
+
audienceIngestSchema,
|
|
605
|
+
audienceLiveSchema,
|
|
606
|
+
audienceMetricsSchema,
|
|
607
|
+
audienceOverviewSchema,
|
|
608
|
+
audiencePlatformSchema,
|
|
609
|
+
audiencePointSchema,
|
|
610
|
+
audienceRangeSchema,
|
|
611
|
+
audienceResolutionSchema,
|
|
612
|
+
audienceSiteSchema,
|
|
613
|
+
audienceUsageSchema,
|
|
614
|
+
audienceVisitorModeSchema
|
|
615
|
+
} from './domain/audience';
|
|
616
|
+
export type {
|
|
617
|
+
AudienceActivity,
|
|
618
|
+
AudienceActivityCell,
|
|
619
|
+
AudienceBreakdownItem,
|
|
620
|
+
AudienceDailyRow,
|
|
621
|
+
AudienceDimension,
|
|
622
|
+
AudienceEventInput,
|
|
623
|
+
AudienceEventRow,
|
|
624
|
+
AudienceFunnel,
|
|
625
|
+
AudienceFunnelRow,
|
|
626
|
+
AudienceFunnelStep,
|
|
627
|
+
AudienceFunnelStepDraft,
|
|
628
|
+
AudienceFunnelStepKind,
|
|
629
|
+
AudienceFunnelStepRow,
|
|
630
|
+
AudienceIngestBody,
|
|
631
|
+
AudienceLabelRow,
|
|
632
|
+
AudienceLive,
|
|
633
|
+
AudienceMetrics,
|
|
634
|
+
AudienceOverview,
|
|
635
|
+
AudiencePlatform,
|
|
636
|
+
AudiencePoint,
|
|
637
|
+
AudienceRange,
|
|
638
|
+
AudienceResolution,
|
|
639
|
+
AudienceSessionRow,
|
|
640
|
+
AudienceSite,
|
|
641
|
+
AudienceSiteRow,
|
|
642
|
+
AudienceUsage,
|
|
643
|
+
AudienceVisitorMode,
|
|
644
|
+
ProjectAudienceLinkRow
|
|
645
|
+
} from './domain/audience';
|
|
646
|
+
export {
|
|
647
|
+
FINANCE_AMOUNT_MAX,
|
|
648
|
+
FINANCE_COLORS,
|
|
649
|
+
FINANCE_COUNTERPARTY_MAX_LENGTH,
|
|
650
|
+
FINANCE_LABEL_MAX_LENGTH,
|
|
651
|
+
FINANCE_NAME_MAX_LENGTH,
|
|
652
|
+
FINANCE_NOTE_MAX_LENGTH,
|
|
653
|
+
financeAccountKindSchema,
|
|
654
|
+
financeAccountSchema,
|
|
655
|
+
financeAmountSchema,
|
|
656
|
+
financeBalanceSchema,
|
|
657
|
+
financeBudgetPeriodSchema,
|
|
658
|
+
financeBudgetSchema,
|
|
659
|
+
financeCategorySchema,
|
|
660
|
+
financeCategoryShareSchema,
|
|
661
|
+
financeColorSchema,
|
|
662
|
+
financeConfigSchema,
|
|
663
|
+
financeCurrencySchema,
|
|
664
|
+
financeDateSchema,
|
|
665
|
+
financeFlowSchema,
|
|
666
|
+
financeFrequencySchema,
|
|
667
|
+
financeMonthPointSchema,
|
|
668
|
+
financeMonthSchema,
|
|
669
|
+
financeOverviewSchema,
|
|
670
|
+
financeRangeSchema,
|
|
671
|
+
financeRecurringSchema,
|
|
672
|
+
financeSummarySchema,
|
|
673
|
+
financeTransactionKindSchema,
|
|
674
|
+
financeTransactionSchema,
|
|
675
|
+
financeUpcomingSchema
|
|
676
|
+
} from './domain/finance';
|
|
677
|
+
export type {
|
|
678
|
+
FinanceAccount,
|
|
679
|
+
FinanceAccountBalanceRow,
|
|
680
|
+
FinanceAccountKind,
|
|
681
|
+
FinanceAccountRow,
|
|
682
|
+
FinanceBudget,
|
|
683
|
+
FinanceBudgetPeriod,
|
|
684
|
+
FinanceBudgetRow,
|
|
685
|
+
FinanceCategory,
|
|
686
|
+
FinanceCategoryRow,
|
|
687
|
+
FinanceCategoryShare,
|
|
688
|
+
FinanceColor,
|
|
689
|
+
FinanceConfig,
|
|
690
|
+
FinanceConfigRow,
|
|
691
|
+
FinanceFlow,
|
|
692
|
+
FinanceFrequency,
|
|
693
|
+
FinanceMonthPoint,
|
|
694
|
+
FinanceOverview,
|
|
695
|
+
FinanceRange,
|
|
696
|
+
FinanceRecurring,
|
|
697
|
+
FinanceRecurringRow,
|
|
698
|
+
FinanceSummary,
|
|
699
|
+
FinanceTransaction,
|
|
700
|
+
FinanceTransactionKind,
|
|
701
|
+
FinanceTransactionRow,
|
|
702
|
+
FinanceUpcoming
|
|
703
|
+
} from './domain/finance';
|
|
704
|
+
export { myTaskSchema, projectLinkCountsSchema } from './domain/projectLink';
|
|
705
|
+
export type { MyTask, ProjectLinkCounts, ProjectUptimeLinkRow } from './domain/projectLink';
|
|
706
|
+
export type {
|
|
707
|
+
DeployCandidate,
|
|
708
|
+
DeployHistoryEntry,
|
|
709
|
+
DeployProvider,
|
|
710
|
+
DeployStatus,
|
|
711
|
+
DeployTarget,
|
|
712
|
+
DeployTargetKind,
|
|
713
|
+
DeployTargetRow,
|
|
714
|
+
DeployTargetSyncRow,
|
|
715
|
+
DeployTargetWithUsageRow,
|
|
716
|
+
Deployment,
|
|
717
|
+
DeploymentRow,
|
|
718
|
+
ProjectDeployLinkRow
|
|
719
|
+
} from './domain/deploy';
|
|
720
|
+
export type {
|
|
721
|
+
GitBranch,
|
|
722
|
+
GitBranchRow,
|
|
723
|
+
GitCommit,
|
|
724
|
+
GitCommitAuthor,
|
|
725
|
+
GitCommitAuthorRow,
|
|
726
|
+
GitCommitDetail,
|
|
727
|
+
GitCommitCursor,
|
|
728
|
+
GitCommitPoints,
|
|
729
|
+
GitCommitRow,
|
|
730
|
+
GitDiffFile,
|
|
731
|
+
GitDiffStatus,
|
|
732
|
+
GitProvider,
|
|
733
|
+
GitPullRequest,
|
|
734
|
+
GitPullRequestRow,
|
|
735
|
+
GitPullState,
|
|
736
|
+
GitRelease,
|
|
737
|
+
GitReleaseRow,
|
|
738
|
+
GitRepo,
|
|
739
|
+
GitRepoCandidate,
|
|
740
|
+
GitRepoRow,
|
|
741
|
+
GitRepoSyncState,
|
|
742
|
+
GitRepoUsage,
|
|
743
|
+
GitSyncStatus,
|
|
744
|
+
ProjectRepoLinkRow
|
|
745
|
+
} from './domain/git';
|
|
746
|
+
export type {
|
|
747
|
+
ProjectEvent,
|
|
748
|
+
ProjectEventKind,
|
|
749
|
+
ProjectEventRef,
|
|
750
|
+
ProjectEventRow
|
|
751
|
+
} from './domain/projectHistory';
|
|
752
|
+
export {
|
|
753
|
+
UPTIME_INTERVAL_MAX,
|
|
754
|
+
UPTIME_INTERVAL_MIN,
|
|
755
|
+
UPTIME_KEYWORD_MAX_LENGTH,
|
|
756
|
+
UPTIME_NAME_MAX_LENGTH,
|
|
757
|
+
UPTIME_THRESHOLD_MAX,
|
|
758
|
+
UPTIME_TIMEOUT_MAX,
|
|
759
|
+
UPTIME_TIMEOUT_MIN,
|
|
760
|
+
UPTIME_URL_MAX_LENGTH,
|
|
761
|
+
uptimeCheckSchema,
|
|
762
|
+
uptimeCheckStatsSchema,
|
|
763
|
+
uptimeIncidentSchema,
|
|
764
|
+
uptimeMethodSchema,
|
|
765
|
+
uptimePointSchema,
|
|
766
|
+
uptimeRangeSchema,
|
|
767
|
+
uptimeResolutionSchema,
|
|
768
|
+
uptimeRetentionSchema,
|
|
769
|
+
uptimeServiceSchema,
|
|
770
|
+
uptimeStatusSchema
|
|
771
|
+
} from './domain/uptime';
|
|
772
|
+
export type {
|
|
773
|
+
UptimeCheck,
|
|
774
|
+
UptimeCheckRow,
|
|
775
|
+
UptimeCheckStats,
|
|
776
|
+
UptimeDayRow,
|
|
777
|
+
UptimeIncident,
|
|
778
|
+
UptimeIncidentRow,
|
|
779
|
+
UptimeMethod,
|
|
780
|
+
UptimePoint,
|
|
781
|
+
UptimeRange,
|
|
782
|
+
UptimeResolution,
|
|
783
|
+
UptimeService,
|
|
784
|
+
UptimeServiceRow,
|
|
785
|
+
UptimeStatus
|
|
786
|
+
} from './domain/uptime';
|
|
787
|
+
export {
|
|
788
|
+
MAIL_DISPLAY_NAME_MAX_LENGTH,
|
|
789
|
+
MAIL_EMAIL_MAX_LENGTH,
|
|
790
|
+
MAIL_HOST_MAX_LENGTH,
|
|
791
|
+
MAIL_MESSAGE_PAGE_SIZE,
|
|
792
|
+
MAIL_SEARCH_QUERY_MAX_LENGTH,
|
|
793
|
+
MAIL_SNIPPET_MAX_LENGTH,
|
|
794
|
+
MAIL_SUBJECT_MAX_LENGTH,
|
|
795
|
+
MAIL_SYNC_INTERVAL_DEFAULT_MINUTES,
|
|
796
|
+
MAIL_SYNC_INTERVAL_MAX_MINUTES,
|
|
797
|
+
MAIL_SYNC_INTERVAL_MIN_MINUTES,
|
|
798
|
+
mailAccountDraftSchema,
|
|
799
|
+
mailAccountEditSchema,
|
|
800
|
+
mailAccountSchema,
|
|
801
|
+
mailAccountStatusSchema,
|
|
802
|
+
mailAddressSchema,
|
|
803
|
+
mailAttachmentSchema,
|
|
804
|
+
mailAuthMethodSchema,
|
|
805
|
+
mailBodyRenderModeSchema,
|
|
806
|
+
mailFlagsSchema,
|
|
807
|
+
mailFolderSchema,
|
|
808
|
+
mailFolderSpecialUseSchema,
|
|
809
|
+
mailHeaderSchema,
|
|
810
|
+
mailLinkWarningReasonSchema,
|
|
811
|
+
mailMessageCursorSchema,
|
|
812
|
+
mailMessageSchema,
|
|
813
|
+
mailMessageSummarySchema,
|
|
814
|
+
mailOAuthProviderSchema,
|
|
815
|
+
mailProxyKindSchema,
|
|
816
|
+
mailProxySchema,
|
|
817
|
+
mailSecurityTierSchema,
|
|
818
|
+
mailSettingsSchema,
|
|
819
|
+
mailSuspiciousLinkSchema
|
|
820
|
+
} from './domain/mail';
|
|
821
|
+
export type {
|
|
822
|
+
MailAccount,
|
|
823
|
+
MailAccountDraft,
|
|
824
|
+
MailAccountEdit,
|
|
825
|
+
MailAccountRow,
|
|
826
|
+
MailAccountStatus,
|
|
827
|
+
MailAddress,
|
|
828
|
+
MailAttachment,
|
|
829
|
+
MailAuthMethod,
|
|
830
|
+
MailBodyRenderMode,
|
|
831
|
+
MailFlags,
|
|
832
|
+
MailFolder,
|
|
833
|
+
MailFolderRow,
|
|
834
|
+
MailFolderSpecialUse,
|
|
835
|
+
MailHeader,
|
|
836
|
+
MailLinkWarningReason,
|
|
837
|
+
MailMessage,
|
|
838
|
+
MailMessageCursor,
|
|
839
|
+
MailMessageRow,
|
|
840
|
+
MailMessageSummary,
|
|
841
|
+
MailOAuthProvider,
|
|
842
|
+
MailProxy,
|
|
843
|
+
MailProxyKind,
|
|
844
|
+
MailSecurityTier,
|
|
845
|
+
MailSettings,
|
|
846
|
+
MailSettingsRow,
|
|
847
|
+
MailSuspiciousLink
|
|
848
|
+
} from './domain/mail';
|
|
849
|
+
export { userRoleSchema } from './domain/role';
|
|
850
|
+
export type { UserRole } from './domain/role';
|
|
851
|
+
export {
|
|
852
|
+
homeFeatureIdSchema,
|
|
853
|
+
nativeHomeFeatureIdSchema,
|
|
854
|
+
homeFolderSchema,
|
|
855
|
+
homeLayoutSchema,
|
|
856
|
+
homeSectionSchema,
|
|
857
|
+
homeTileId,
|
|
858
|
+
homeTileKind,
|
|
859
|
+
homeTileSchema,
|
|
860
|
+
homeTopbarWidgetIdSchema,
|
|
861
|
+
nativeHomeTopbarWidgetIdSchema,
|
|
862
|
+
HOME_FEATURE_IDS,
|
|
863
|
+
HOME_FOLDER_MAX_ITEMS,
|
|
864
|
+
HOME_SECTION_MAX_TILES,
|
|
865
|
+
isFeatureTile,
|
|
866
|
+
isHomeFolder,
|
|
867
|
+
isShortcutTile,
|
|
868
|
+
shortcutItemSchema,
|
|
869
|
+
shortcutPreviewSchema,
|
|
870
|
+
shortcutTemplateSchema,
|
|
871
|
+
SHORTCUT_URL_MAX_LENGTH
|
|
872
|
+
} from './domain/home';
|
|
873
|
+
export type {
|
|
874
|
+
HomeFeatureId,
|
|
875
|
+
NativeHomeFeatureId,
|
|
876
|
+
HomeFolder,
|
|
877
|
+
HomeLayout,
|
|
878
|
+
HomeSection,
|
|
879
|
+
HomeTile,
|
|
880
|
+
HomeTileKind,
|
|
881
|
+
HomeTopbarWidgetId,
|
|
882
|
+
NativeHomeTopbarWidgetId,
|
|
883
|
+
ShortcutItem,
|
|
884
|
+
ShortcutPreview,
|
|
885
|
+
ShortcutTemplate
|
|
886
|
+
} from './domain/home';
|
|
887
|
+
export {
|
|
888
|
+
liveCursorKindSchema,
|
|
889
|
+
liveCursorSchema,
|
|
890
|
+
livePathGate,
|
|
891
|
+
livePathSchema,
|
|
892
|
+
livePathSegmentSchema,
|
|
893
|
+
livePeerSchema,
|
|
894
|
+
liveTopicSchema,
|
|
895
|
+
nativeLiveTopicSchema,
|
|
896
|
+
segmentKind,
|
|
897
|
+
segmentValue,
|
|
898
|
+
TOPIC_FEATURE,
|
|
899
|
+
topicFeatureOf
|
|
900
|
+
} from './domain/live';
|
|
901
|
+
export type {
|
|
902
|
+
LiveCursor,
|
|
903
|
+
LiveCursorKind,
|
|
904
|
+
LivePath,
|
|
905
|
+
LivePathGate,
|
|
906
|
+
LivePeer,
|
|
907
|
+
LiveTopic,
|
|
908
|
+
NativeLiveTopic
|
|
909
|
+
} from './domain/live';
|
|
910
|
+
export {
|
|
911
|
+
LIVE_CHANGED_EVENT,
|
|
912
|
+
LIVE_CURSOR_COMMAND,
|
|
913
|
+
LIVE_CURSORS_EVENT,
|
|
914
|
+
LIVE_PEERS_EVENT,
|
|
915
|
+
LIVE_TYPERS_EVENT,
|
|
916
|
+
LIVE_TYPING_COMMAND,
|
|
917
|
+
liveChangedPushSchema,
|
|
918
|
+
liveCommands,
|
|
919
|
+
liveCursorFrameSchema,
|
|
920
|
+
liveCursorsPushSchema,
|
|
921
|
+
liveHere,
|
|
922
|
+
livePeersPushSchema,
|
|
923
|
+
liveTypersPushSchema,
|
|
924
|
+
liveTypingFrameSchema
|
|
925
|
+
} from './features/live';
|
|
926
|
+
export type {
|
|
927
|
+
LiveChangedPush,
|
|
928
|
+
LiveCursorFrame,
|
|
929
|
+
LiveCursorsPush,
|
|
930
|
+
LivePeersPush,
|
|
931
|
+
LiveTypersPush,
|
|
932
|
+
LiveTypingFrame
|
|
933
|
+
} from './features/live';
|
|
934
|
+
export {
|
|
935
|
+
defaultUserColor,
|
|
936
|
+
minimalUserSchema,
|
|
937
|
+
USER_COLORS,
|
|
938
|
+
userColorSchema,
|
|
939
|
+
userSchema,
|
|
940
|
+
userSecuritySchema,
|
|
941
|
+
userSettingFlagSchema,
|
|
942
|
+
userStatusSchema
|
|
943
|
+
} from './domain/user';
|
|
944
|
+
export type {
|
|
945
|
+
MinimalUser,
|
|
946
|
+
User,
|
|
947
|
+
UserColor,
|
|
948
|
+
UserRow,
|
|
949
|
+
UserSecurity,
|
|
950
|
+
UserSettingFlag,
|
|
951
|
+
UserStatus
|
|
952
|
+
} from './domain/user';
|
|
953
|
+
export { secrecyStatusSchema, secrecyWrapModeSchema } from './domain/secrecy';
|
|
954
|
+
export type { SecrecyStatus, SecrecyWrapMode, UserSecretKeyRow } from './domain/secrecy';
|
|
955
|
+
export { workspaceKindSchema, workspaceSchema } from './domain/workspace';
|
|
956
|
+
export {
|
|
957
|
+
EXTERNAL_FEATURE_ID_PATTERN,
|
|
958
|
+
externalFeatureIdSchema,
|
|
959
|
+
featureAccessSchema,
|
|
960
|
+
featureIdSchema,
|
|
961
|
+
isExternalFeatureId,
|
|
962
|
+
WORKSPACE_CAPABILITIES,
|
|
963
|
+
WORKSPACE_FEATURE_IDS,
|
|
964
|
+
WORKSPACE_ROLE_NAME_MAX,
|
|
965
|
+
workspaceCapabilitySchema,
|
|
966
|
+
workspaceFeatureGrantSchema,
|
|
967
|
+
workspaceFeatureIdSchema,
|
|
968
|
+
workspacePermissionsSchema,
|
|
969
|
+
workspaceRoleSchema
|
|
970
|
+
} from './domain/workspaceRole';
|
|
971
|
+
export type {
|
|
972
|
+
ExternalFeatureId,
|
|
973
|
+
FeatureAccess,
|
|
974
|
+
FeatureId,
|
|
975
|
+
WorkspaceCapability,
|
|
976
|
+
WorkspaceFeatureGrant,
|
|
977
|
+
WorkspaceFeatureId,
|
|
978
|
+
WorkspacePermissions,
|
|
979
|
+
WorkspaceRole,
|
|
980
|
+
WorkspaceRoleRow
|
|
981
|
+
} from './domain/workspaceRole';
|
|
982
|
+
export type {
|
|
983
|
+
Workspace,
|
|
984
|
+
WorkspaceKind,
|
|
985
|
+
WorkspaceMemberRow,
|
|
986
|
+
WorkspaceRow
|
|
987
|
+
} from './domain/workspace';
|
|
988
|
+
export {
|
|
989
|
+
DEFAULT_METRIC_INTERVAL_SECONDS,
|
|
990
|
+
DEFAULT_PROCESS_CAPTURE,
|
|
991
|
+
DEFAULT_RETENTION_DAYS,
|
|
992
|
+
devicePlatformSchema,
|
|
993
|
+
deviceSchema,
|
|
994
|
+
deviceStatusSchema
|
|
995
|
+
} from './domain/device';
|
|
996
|
+
export type {
|
|
997
|
+
Device,
|
|
998
|
+
DevicePlatform,
|
|
999
|
+
DeviceRow,
|
|
1000
|
+
DeviceStatus,
|
|
1001
|
+
DeviceWorkspaceRow
|
|
1002
|
+
} from './domain/device';
|
|
1003
|
+
export { packageManagerIdSchema, packageManagerSchema } from './domain/packages';
|
|
1004
|
+
export type { PackageManager, PackageManagerId } from './domain/packages';
|
|
1005
|
+
export {
|
|
1006
|
+
agentInfoSchema,
|
|
1007
|
+
agentServiceScopeSchema,
|
|
1008
|
+
AUTH_LOGIN_LIMIT,
|
|
1009
|
+
AUTH_SOURCE_LIMIT,
|
|
1010
|
+
authLoginSchema,
|
|
1011
|
+
authSourceSchema,
|
|
1012
|
+
authWindowSchema,
|
|
1013
|
+
cpuInfoSchema,
|
|
1014
|
+
deviceHardwareSchema,
|
|
1015
|
+
deviceReportSchema,
|
|
1016
|
+
deviceSecuritySchema,
|
|
1017
|
+
integrityReportSchema,
|
|
1018
|
+
mandatoryAccessControlSchema,
|
|
1019
|
+
netInterfaceKindSchema,
|
|
1020
|
+
netInterfaceSchema,
|
|
1021
|
+
openPortSchema,
|
|
1022
|
+
PERSISTENCE_ENTRY_LIMIT,
|
|
1023
|
+
persistenceEntrySchema,
|
|
1024
|
+
processCaptureSchema,
|
|
1025
|
+
processKindSchema,
|
|
1026
|
+
processSampleSchema,
|
|
1027
|
+
reportDiskSchema,
|
|
1028
|
+
reportProcessSchema,
|
|
1029
|
+
tcpConnectionSchema
|
|
1030
|
+
} from './domain/report';
|
|
1031
|
+
export type {
|
|
1032
|
+
AgentInfo,
|
|
1033
|
+
AgentServiceScope,
|
|
1034
|
+
AuthLogin,
|
|
1035
|
+
AuthSource,
|
|
1036
|
+
AuthWindow,
|
|
1037
|
+
CpuInfo,
|
|
1038
|
+
DeviceHardware,
|
|
1039
|
+
DeviceReport,
|
|
1040
|
+
DeviceSecurity,
|
|
1041
|
+
IntegrityReport,
|
|
1042
|
+
MandatoryAccessControl,
|
|
1043
|
+
NetInterface,
|
|
1044
|
+
NetInterfaceKind,
|
|
1045
|
+
OpenPort,
|
|
1046
|
+
PersistenceEntry,
|
|
1047
|
+
ProcessCapture,
|
|
1048
|
+
ProcessKind,
|
|
1049
|
+
ProcessSample,
|
|
1050
|
+
ReportDisk,
|
|
1051
|
+
ReportProcess,
|
|
1052
|
+
TcpConnection
|
|
1053
|
+
} from './domain/report';
|
|
1054
|
+
export {
|
|
1055
|
+
allowEntrySchema,
|
|
1056
|
+
allowScopeSchema,
|
|
1057
|
+
BASELINE_RULES,
|
|
1058
|
+
baselineAttrsSchema,
|
|
1059
|
+
baselineEntrySchema,
|
|
1060
|
+
baselineKindSchema,
|
|
1061
|
+
DEFAULT_SENTINEL_FINDING_RETENTION_DAYS,
|
|
1062
|
+
DEFAULT_SENTINEL_INTEGRITY_MINUTES,
|
|
1063
|
+
DEFAULT_SENTINEL_LEARNING_DAYS,
|
|
1064
|
+
devicePostureSchema,
|
|
1065
|
+
deviceSentinelStateSchema,
|
|
1066
|
+
evidenceItemSchema,
|
|
1067
|
+
findingSchema,
|
|
1068
|
+
findingSeveritySchema,
|
|
1069
|
+
findingStateSchema,
|
|
1070
|
+
postureCheckSchema,
|
|
1071
|
+
postureStatusSchema,
|
|
1072
|
+
ruleProbeSchema,
|
|
1073
|
+
SENTINEL_INTEGRITY_MINUTES_MAX,
|
|
1074
|
+
SENTINEL_INTEGRITY_MINUTES_MIN,
|
|
1075
|
+
SENTINEL_LEARNING_DAYS_MAX,
|
|
1076
|
+
SENTINEL_LEARNING_DAYS_MIN,
|
|
1077
|
+
SENTINEL_NOTIFY_FROM,
|
|
1078
|
+
SENTINEL_RULES,
|
|
1079
|
+
sentinelConfigSchema,
|
|
1080
|
+
sentinelRuleIdSchema,
|
|
1081
|
+
SEVERITY_BY_RANK,
|
|
1082
|
+
SEVERITY_RANK,
|
|
1083
|
+
severityCountsSchema
|
|
1084
|
+
} from './domain/sentinel';
|
|
1085
|
+
export type {
|
|
1086
|
+
AllowEntry,
|
|
1087
|
+
AllowScope,
|
|
1088
|
+
BaselineAttrs,
|
|
1089
|
+
BaselineEntry,
|
|
1090
|
+
BaselineKind,
|
|
1091
|
+
DevicePosture,
|
|
1092
|
+
DeviceSentinelState,
|
|
1093
|
+
EvidenceItem,
|
|
1094
|
+
Finding,
|
|
1095
|
+
FindingSeverity,
|
|
1096
|
+
FindingState,
|
|
1097
|
+
PostureCheck,
|
|
1098
|
+
PostureStatus,
|
|
1099
|
+
RuleProbe,
|
|
1100
|
+
SentinelConfig,
|
|
1101
|
+
SentinelRuleId,
|
|
1102
|
+
SentinelRuleMeta,
|
|
1103
|
+
SeverityCounts
|
|
1104
|
+
} from './domain/sentinel';
|
|
1105
|
+
export {
|
|
1106
|
+
NOTIFICATION_CHANNEL_KINDS,
|
|
1107
|
+
NOTIFICATION_EMAIL_MAX,
|
|
1108
|
+
NOTIFICATION_LABEL_MAX,
|
|
1109
|
+
NOTIFICATION_TARGET_MAX,
|
|
1110
|
+
notificationChannelInputSchema,
|
|
1111
|
+
notificationChannelKindSchema,
|
|
1112
|
+
notificationChannelSchema,
|
|
1113
|
+
notificationChannelUsageSchema,
|
|
1114
|
+
notificationFeatureSchema,
|
|
1115
|
+
nativeNotificationFeatureSchema,
|
|
1116
|
+
notificationRouteInputSchema,
|
|
1117
|
+
notificationRouteSchema,
|
|
1118
|
+
notificationRouteTargetSchema,
|
|
1119
|
+
notificationTestSchema
|
|
1120
|
+
} from './domain/notifications';
|
|
1121
|
+
export type {
|
|
1122
|
+
NotificationChannel,
|
|
1123
|
+
NotificationChannelInput,
|
|
1124
|
+
NotificationChannelKind,
|
|
1125
|
+
NotificationChannelRow,
|
|
1126
|
+
NotificationChannelUsage,
|
|
1127
|
+
NotificationFeature,
|
|
1128
|
+
NativeNotificationFeature,
|
|
1129
|
+
NotificationRoute,
|
|
1130
|
+
NotificationRouteInput,
|
|
1131
|
+
NotificationRouteRow,
|
|
1132
|
+
NotificationRouteTarget,
|
|
1133
|
+
NotificationTest
|
|
1134
|
+
} from './domain/notifications';
|
|
1135
|
+
|
|
1136
|
+
export {
|
|
1137
|
+
FEATURE_REGISTRY,
|
|
1138
|
+
NOTIFYING_FEATURES,
|
|
1139
|
+
allFeatureDescriptors,
|
|
1140
|
+
featureDescriptor,
|
|
1141
|
+
featureLabel,
|
|
1142
|
+
maybeFeatureDescriptor,
|
|
1143
|
+
registerExternalFeature
|
|
1144
|
+
} from './domain/featureRegistry';
|
|
1145
|
+
export type { FeatureDescriptor } from './domain/featureRegistry';
|
|
1146
|
+
export {
|
|
1147
|
+
foreignRefSchema,
|
|
1148
|
+
itemAccessSchema,
|
|
1149
|
+
itemGrantStateSchema,
|
|
1150
|
+
itemRefSchema,
|
|
1151
|
+
itemRoleGrantSchema,
|
|
1152
|
+
itemRoleGrantViewSchema,
|
|
1153
|
+
itemShareSchema,
|
|
1154
|
+
itemShareStateSchema,
|
|
1155
|
+
shareBlockerSchema
|
|
1156
|
+
} from './domain/sharing';
|
|
1157
|
+
export type {
|
|
1158
|
+
ForeignRef,
|
|
1159
|
+
ItemAccess,
|
|
1160
|
+
ItemGrantState,
|
|
1161
|
+
ItemRef,
|
|
1162
|
+
ItemRoleGrant,
|
|
1163
|
+
ItemRoleGrantRow,
|
|
1164
|
+
ItemRoleGrantView,
|
|
1165
|
+
ItemShare,
|
|
1166
|
+
ItemShareRow,
|
|
1167
|
+
ItemShareState,
|
|
1168
|
+
ShareBlocker
|
|
1169
|
+
} from './domain/sharing';
|
|
1170
|
+
export {
|
|
1171
|
+
itemGrantList,
|
|
1172
|
+
itemGrantSet,
|
|
1173
|
+
shareGet,
|
|
1174
|
+
shareSet,
|
|
1175
|
+
sharingCommands
|
|
1176
|
+
} from './features/sharing';
|
|
1177
|
+
export { SHAREABLE_FEATURES, SHARE_WIRED_FEATURES } from './domain/featureRegistry';
|
|
1178
|
+
export { presenceEventSchema } from './domain/presence';
|
|
1179
|
+
export type { PresenceEvent, PresenceRow } from './domain/presence';
|
|
1180
|
+
export {
|
|
1181
|
+
metricSeriesPointSchema,
|
|
1182
|
+
metricSnapshotSchema,
|
|
1183
|
+
metricsBatchSchema,
|
|
1184
|
+
metricsResolutionSchema
|
|
1185
|
+
} from './domain/metrics';
|
|
1186
|
+
export type {
|
|
1187
|
+
MetricRow,
|
|
1188
|
+
MetricSeriesPoint,
|
|
1189
|
+
MetricSnapshot,
|
|
1190
|
+
MetricsBatch,
|
|
1191
|
+
MetricsResolution
|
|
1192
|
+
} from './domain/metrics';
|
|
1193
|
+
export { twoFactorSetupSchema, twoFactorStatusSchema } from './domain/twoFactor';
|
|
1194
|
+
export type {
|
|
1195
|
+
BackupCodeRow,
|
|
1196
|
+
TwoFactorRow,
|
|
1197
|
+
TwoFactorSetup,
|
|
1198
|
+
TwoFactorStatus
|
|
1199
|
+
} from './domain/twoFactor';
|
|
1200
|
+
|
|
1201
|
+
// Features
|
|
1202
|
+
export {
|
|
1203
|
+
passwordAdd,
|
|
1204
|
+
passwordCommands,
|
|
1205
|
+
passwordCount,
|
|
1206
|
+
passwordDelete,
|
|
1207
|
+
passwordEdit,
|
|
1208
|
+
passwordGet,
|
|
1209
|
+
passwordList,
|
|
1210
|
+
passwordUnlock
|
|
1211
|
+
} from './features/password';
|
|
1212
|
+
export {
|
|
1213
|
+
folderAdd,
|
|
1214
|
+
folderDelete,
|
|
1215
|
+
folderList,
|
|
1216
|
+
folderRename,
|
|
1217
|
+
folderReorder,
|
|
1218
|
+
noteAdd,
|
|
1219
|
+
noteArchive,
|
|
1220
|
+
noteCommands,
|
|
1221
|
+
noteCount,
|
|
1222
|
+
noteDelete,
|
|
1223
|
+
noteEdit,
|
|
1224
|
+
noteGet,
|
|
1225
|
+
noteList,
|
|
1226
|
+
noteReorder,
|
|
1227
|
+
noteRestore
|
|
1228
|
+
} from './features/note';
|
|
1229
|
+
export {
|
|
1230
|
+
projectAdd,
|
|
1231
|
+
projectArchive,
|
|
1232
|
+
projectBoard,
|
|
1233
|
+
projectCardAdd,
|
|
1234
|
+
projectCardArchive,
|
|
1235
|
+
projectCardMove,
|
|
1236
|
+
projectCardRestore,
|
|
1237
|
+
projectCardUpdate,
|
|
1238
|
+
projectColumnAdd,
|
|
1239
|
+
projectColumnRemove,
|
|
1240
|
+
projectColumnReorder,
|
|
1241
|
+
projectColumnUpdate,
|
|
1242
|
+
projectCommands,
|
|
1243
|
+
projectCardSetMilestone,
|
|
1244
|
+
projectDepAdd,
|
|
1245
|
+
projectDepRemove,
|
|
1246
|
+
projectDeployLink,
|
|
1247
|
+
projectDeployList,
|
|
1248
|
+
projectDeployUnlink,
|
|
1249
|
+
projectMyTasks,
|
|
1250
|
+
projectLinkCounts,
|
|
1251
|
+
projectAudienceLink,
|
|
1252
|
+
projectAudienceList,
|
|
1253
|
+
projectAudienceUnlink,
|
|
1254
|
+
projectDatabaseLink,
|
|
1255
|
+
projectDatabaseList,
|
|
1256
|
+
projectDatabaseUnlink,
|
|
1257
|
+
projectUptimeLink,
|
|
1258
|
+
projectUptimeList,
|
|
1259
|
+
projectUptimeUnlink,
|
|
1260
|
+
projectEventList,
|
|
1261
|
+
projectMarkRead,
|
|
1262
|
+
projectMessageEdit,
|
|
1263
|
+
projectMessageList,
|
|
1264
|
+
projectMessageSend,
|
|
1265
|
+
projectMilestoneAdd,
|
|
1266
|
+
projectMilestoneRemove,
|
|
1267
|
+
projectMilestoneSetReached,
|
|
1268
|
+
projectMilestoneUpdate,
|
|
1269
|
+
projectPlan,
|
|
1270
|
+
projectRepoList,
|
|
1271
|
+
projectRepoLink,
|
|
1272
|
+
projectRepoUnlink,
|
|
1273
|
+
projectCount,
|
|
1274
|
+
projectGet,
|
|
1275
|
+
projectList,
|
|
1276
|
+
projectReorder,
|
|
1277
|
+
projectRestore,
|
|
1278
|
+
projectSetSecurityTier,
|
|
1279
|
+
projectSetStatus,
|
|
1280
|
+
projectSetVersion,
|
|
1281
|
+
projectUpdate
|
|
1282
|
+
} from './features/project';
|
|
1283
|
+
export {
|
|
1284
|
+
deployAdd,
|
|
1285
|
+
deployCandidates,
|
|
1286
|
+
deployCommands,
|
|
1287
|
+
deployCount,
|
|
1288
|
+
deployCredentialAdd,
|
|
1289
|
+
deployCredentialList,
|
|
1290
|
+
deployCredentialRemove,
|
|
1291
|
+
deployCredentialUpdate,
|
|
1292
|
+
deployGet,
|
|
1293
|
+
deployHistory,
|
|
1294
|
+
deployList,
|
|
1295
|
+
deployLog,
|
|
1296
|
+
deployRemove,
|
|
1297
|
+
deployReorder,
|
|
1298
|
+
deployTrigger,
|
|
1299
|
+
deployUpdate
|
|
1300
|
+
} from './features/deploy';
|
|
1301
|
+
export {
|
|
1302
|
+
gitAuthorMap,
|
|
1303
|
+
gitBranchList,
|
|
1304
|
+
gitCommands,
|
|
1305
|
+
gitCommitDetail,
|
|
1306
|
+
gitCommitGraph,
|
|
1307
|
+
gitCommitList,
|
|
1308
|
+
gitCount,
|
|
1309
|
+
gitCredentialAdd,
|
|
1310
|
+
gitCredentialList,
|
|
1311
|
+
gitCredentialRemove,
|
|
1312
|
+
gitCredentialUpdate,
|
|
1313
|
+
gitPullRequestList,
|
|
1314
|
+
gitReleaseList,
|
|
1315
|
+
gitRepoAdd,
|
|
1316
|
+
gitRepoCandidates,
|
|
1317
|
+
gitRepoGet,
|
|
1318
|
+
gitRepoList,
|
|
1319
|
+
gitRepoRemove,
|
|
1320
|
+
gitRepoReorder,
|
|
1321
|
+
gitRepoResync,
|
|
1322
|
+
gitRepoSyncNow,
|
|
1323
|
+
gitRepoSyncStatus,
|
|
1324
|
+
gitRepoUpdate,
|
|
1325
|
+
gitSyncStatuses
|
|
1326
|
+
} from './features/git';
|
|
1327
|
+
export {
|
|
1328
|
+
databaseAdd,
|
|
1329
|
+
databaseAlertAdd,
|
|
1330
|
+
databaseAlertList,
|
|
1331
|
+
databaseAlertRemove,
|
|
1332
|
+
databaseAlertTest,
|
|
1333
|
+
databaseAlertUpdate,
|
|
1334
|
+
databaseCommands,
|
|
1335
|
+
databaseCount,
|
|
1336
|
+
databaseGet,
|
|
1337
|
+
databaseInspect,
|
|
1338
|
+
databaseList,
|
|
1339
|
+
databaseQuery,
|
|
1340
|
+
databaseRemove,
|
|
1341
|
+
databaseReorder,
|
|
1342
|
+
databaseExecute,
|
|
1343
|
+
databaseExport,
|
|
1344
|
+
databaseRowDelete,
|
|
1345
|
+
databaseRowInsert,
|
|
1346
|
+
databaseRowUpdate,
|
|
1347
|
+
databaseTableList,
|
|
1348
|
+
databaseTableRows,
|
|
1349
|
+
databaseTableStructure,
|
|
1350
|
+
databaseTest,
|
|
1351
|
+
databaseTestDraft,
|
|
1352
|
+
databaseUpdate
|
|
1353
|
+
} from './features/database';
|
|
1354
|
+
export {
|
|
1355
|
+
backupCommands,
|
|
1356
|
+
backupCount,
|
|
1357
|
+
backupDestinationAdd,
|
|
1358
|
+
backupDestinationList,
|
|
1359
|
+
backupDestinationRemove,
|
|
1360
|
+
backupDestinationTest,
|
|
1361
|
+
backupDestinationUpdate,
|
|
1362
|
+
backupJobAdd,
|
|
1363
|
+
backupJobGet,
|
|
1364
|
+
backupJobList,
|
|
1365
|
+
backupJobRemove,
|
|
1366
|
+
backupJobRun,
|
|
1367
|
+
backupJobUpdate,
|
|
1368
|
+
backupRuns,
|
|
1369
|
+
backupSources
|
|
1370
|
+
} from './features/backup';
|
|
1371
|
+
export {
|
|
1372
|
+
audienceActivity,
|
|
1373
|
+
audienceBreakdown,
|
|
1374
|
+
audienceCommands,
|
|
1375
|
+
audienceCount,
|
|
1376
|
+
audienceFunnelAdd,
|
|
1377
|
+
audienceFunnelList,
|
|
1378
|
+
audienceFunnelRemove,
|
|
1379
|
+
audienceFunnelUpdate,
|
|
1380
|
+
audienceGet,
|
|
1381
|
+
audienceList,
|
|
1382
|
+
audienceLive,
|
|
1383
|
+
audienceOverview,
|
|
1384
|
+
audienceReorder,
|
|
1385
|
+
audienceSiteAdd,
|
|
1386
|
+
audienceSiteRemove,
|
|
1387
|
+
audienceSiteRotateKey,
|
|
1388
|
+
audienceSiteUpdate
|
|
1389
|
+
} from './features/audience';
|
|
1390
|
+
export {
|
|
1391
|
+
financeAccountAdd,
|
|
1392
|
+
financeAccountList,
|
|
1393
|
+
financeAccountRemove,
|
|
1394
|
+
financeAccountReorder,
|
|
1395
|
+
financeAccountUpdate,
|
|
1396
|
+
financeBudgetList,
|
|
1397
|
+
financeBudgetRemove,
|
|
1398
|
+
financeBudgetSet,
|
|
1399
|
+
financeCategoryAdd,
|
|
1400
|
+
financeCategoryList,
|
|
1401
|
+
financeCategoryRemove,
|
|
1402
|
+
financeCategoryReorder,
|
|
1403
|
+
financeCategoryUpdate,
|
|
1404
|
+
financeCommands,
|
|
1405
|
+
financeConfig,
|
|
1406
|
+
financeConfigUpdate,
|
|
1407
|
+
financeOverview,
|
|
1408
|
+
financeRecurringAdd,
|
|
1409
|
+
financeRecurringList,
|
|
1410
|
+
financeRecurringPost,
|
|
1411
|
+
financeRecurringRemove,
|
|
1412
|
+
financeRecurringSkip,
|
|
1413
|
+
financeRecurringUpdate,
|
|
1414
|
+
financeSummary,
|
|
1415
|
+
financeTransactionAdd,
|
|
1416
|
+
financeTransactionList,
|
|
1417
|
+
financeTransactionRemove,
|
|
1418
|
+
financeTransactionSetCleared,
|
|
1419
|
+
financeTransactionUpdate
|
|
1420
|
+
} from './features/finance';
|
|
1421
|
+
|
|
1422
|
+
export { homeCommands, homeSetLayout, homeShortcutPreview } from './features/home';
|
|
1423
|
+
export {
|
|
1424
|
+
featureCommandRegistry,
|
|
1425
|
+
featureCommands,
|
|
1426
|
+
registerFeatureCommands
|
|
1427
|
+
} from './features/registry';
|
|
1428
|
+
export type {
|
|
1429
|
+
CommandInput,
|
|
1430
|
+
CommandOutput,
|
|
1431
|
+
FeatureCommandDescriptor,
|
|
1432
|
+
FeatureCommandName
|
|
1433
|
+
} from './features/registry';
|
|
1434
|
+
export {
|
|
1435
|
+
adminCommands,
|
|
1436
|
+
adminDeleteUser,
|
|
1437
|
+
adminInviteCreate,
|
|
1438
|
+
adminInviteList,
|
|
1439
|
+
adminInviteRevoke,
|
|
1440
|
+
adminInviteSchema,
|
|
1441
|
+
adminSetUserRole,
|
|
1442
|
+
adminSetUserStatus,
|
|
1443
|
+
adminUserList,
|
|
1444
|
+
adminUserSchema
|
|
1445
|
+
} from './features/admin';
|
|
1446
|
+
export type { AdminInvite, AdminUser } from './features/admin';
|
|
1447
|
+
export {
|
|
1448
|
+
workspaceActivate,
|
|
1449
|
+
workspaceAdd,
|
|
1450
|
+
workspaceCommands,
|
|
1451
|
+
workspaceDelete,
|
|
1452
|
+
workspaceEnableSharedKey,
|
|
1453
|
+
workspaceLeave,
|
|
1454
|
+
workspaceRemoveMember,
|
|
1455
|
+
workspaceAddMember,
|
|
1456
|
+
workspaceAssignRole,
|
|
1457
|
+
workspaceRename,
|
|
1458
|
+
workspaceRoleCreate,
|
|
1459
|
+
workspaceRoleDelete,
|
|
1460
|
+
workspaceRoleList,
|
|
1461
|
+
workspaceRoleSetDefault,
|
|
1462
|
+
workspaceRoleUpdate,
|
|
1463
|
+
workspaceSetFavorite,
|
|
1464
|
+
workspaceSharedKeyStatus
|
|
1465
|
+
} from './features/workspace';
|
|
1466
|
+
export {
|
|
1467
|
+
AVATAR_MAX_LENGTH,
|
|
1468
|
+
THEME_IMAGE_MAX_LENGTH,
|
|
1469
|
+
THEME_SLOT_COUNT,
|
|
1470
|
+
THEME_SLOT_IMAGE_MAX_LENGTH,
|
|
1471
|
+
themeStateSchema,
|
|
1472
|
+
userCommands,
|
|
1473
|
+
userSetAvatar,
|
|
1474
|
+
userSetColor,
|
|
1475
|
+
userSetSetting,
|
|
1476
|
+
userSetTheme
|
|
1477
|
+
} from './features/user';
|
|
1478
|
+
export type { ThemeStateDTO } from './features/user';
|
|
1479
|
+
export {
|
|
1480
|
+
deviceCancelDelete,
|
|
1481
|
+
deviceCommands,
|
|
1482
|
+
deviceConfirm,
|
|
1483
|
+
deviceDelete,
|
|
1484
|
+
deviceDropPrivileges,
|
|
1485
|
+
deviceElevate,
|
|
1486
|
+
deviceForceDelete,
|
|
1487
|
+
deviceList,
|
|
1488
|
+
deviceListPackages,
|
|
1489
|
+
deviceAgentLifecycle,
|
|
1490
|
+
devicePower,
|
|
1491
|
+
deviceReactivate,
|
|
1492
|
+
deviceRename,
|
|
1493
|
+
deviceReorder,
|
|
1494
|
+
deviceRequestDelete,
|
|
1495
|
+
deviceRevoke,
|
|
1496
|
+
deviceSetAutostart,
|
|
1497
|
+
deviceSetConfig,
|
|
1498
|
+
deviceSetWorkspaces,
|
|
1499
|
+
deviceShareTargetSchema,
|
|
1500
|
+
deviceUpdateAgent,
|
|
1501
|
+
deviceUpgradePackages,
|
|
1502
|
+
deviceWorkspaceList
|
|
1503
|
+
} from './features/device';
|
|
1504
|
+
export type { DeviceShareTarget } from './features/device';
|
|
1505
|
+
export { deviceLogCommands, deviceLogQuery, deviceLogSources } from './features/deviceLogs';
|
|
1506
|
+
export {
|
|
1507
|
+
deviceFilesAnalyze,
|
|
1508
|
+
deviceFilesCommands,
|
|
1509
|
+
deviceFilesDownload,
|
|
1510
|
+
deviceFilesList,
|
|
1511
|
+
deviceFilesMutate,
|
|
1512
|
+
deviceFilesSearch,
|
|
1513
|
+
deviceFilesUpload
|
|
1514
|
+
} from './features/deviceFiles';
|
|
1515
|
+
export {
|
|
1516
|
+
deviceTerminalCommands,
|
|
1517
|
+
deviceTermClose,
|
|
1518
|
+
deviceTermInput,
|
|
1519
|
+
deviceTermOpen,
|
|
1520
|
+
deviceTermResize,
|
|
1521
|
+
terminalUser
|
|
1522
|
+
} from './features/deviceTerminal';
|
|
1523
|
+
export {
|
|
1524
|
+
metricsAvailability,
|
|
1525
|
+
metricsCommands,
|
|
1526
|
+
metricsDeleteSnapshots,
|
|
1527
|
+
metricsPresence,
|
|
1528
|
+
metricsProcessesAt,
|
|
1529
|
+
metricsQuery,
|
|
1530
|
+
metricsRefresh,
|
|
1531
|
+
metricsSetSnapshotsPinned,
|
|
1532
|
+
metricsSnapshots,
|
|
1533
|
+
metricsStorage,
|
|
1534
|
+
metricsSubscribe,
|
|
1535
|
+
metricsUnsubscribe
|
|
1536
|
+
} from './features/metrics';
|
|
1537
|
+
export {
|
|
1538
|
+
SENTINEL_PAGE_MAX,
|
|
1539
|
+
sentinelAcknowledge,
|
|
1540
|
+
sentinelAllowlist,
|
|
1541
|
+
sentinelBaseline,
|
|
1542
|
+
sentinelCommands,
|
|
1543
|
+
sentinelCount,
|
|
1544
|
+
sentinelFindings,
|
|
1545
|
+
sentinelOverview,
|
|
1546
|
+
sentinelPosture,
|
|
1547
|
+
sentinelRemoveAllow,
|
|
1548
|
+
sentinelReopen,
|
|
1549
|
+
sentinelResetBaseline,
|
|
1550
|
+
sentinelResolve,
|
|
1551
|
+
sentinelScanNow,
|
|
1552
|
+
sentinelSetConfig
|
|
1553
|
+
} from './features/sentinel';
|
|
1554
|
+
export {
|
|
1555
|
+
uptimeAdd,
|
|
1556
|
+
uptimeCheckNow,
|
|
1557
|
+
uptimeChecks,
|
|
1558
|
+
uptimeCheckStats,
|
|
1559
|
+
uptimeCommands,
|
|
1560
|
+
uptimeCount,
|
|
1561
|
+
uptimeHistory,
|
|
1562
|
+
uptimeIncidents,
|
|
1563
|
+
uptimeList,
|
|
1564
|
+
uptimeRemove,
|
|
1565
|
+
uptimeReorder,
|
|
1566
|
+
uptimeSetEnabled,
|
|
1567
|
+
uptimeUpdate
|
|
1568
|
+
} from './features/uptime';
|
|
1569
|
+
export {
|
|
1570
|
+
notifyChannelAdd,
|
|
1571
|
+
notifyChannelDelete,
|
|
1572
|
+
notifyChannelList,
|
|
1573
|
+
notifyChannelReorder,
|
|
1574
|
+
notifyChannelTest,
|
|
1575
|
+
notifyChannelUpdate,
|
|
1576
|
+
notifyChannelUsage,
|
|
1577
|
+
notifyCommands,
|
|
1578
|
+
notifyRouteGet,
|
|
1579
|
+
notifyRouteSet,
|
|
1580
|
+
notifyRouteTest
|
|
1581
|
+
} from './features/notify';
|
|
1582
|
+
export {
|
|
1583
|
+
twoFactorCommands,
|
|
1584
|
+
twoFactorDisable,
|
|
1585
|
+
twoFactorEnable,
|
|
1586
|
+
twoFactorGetStatus,
|
|
1587
|
+
twoFactorRegenBackup,
|
|
1588
|
+
twoFactorSetup
|
|
1589
|
+
} from './features/twoFactor';
|
|
1590
|
+
export {
|
|
1591
|
+
secrecyCommands,
|
|
1592
|
+
secrecyDisable,
|
|
1593
|
+
secrecyEnable,
|
|
1594
|
+
secrecyHold,
|
|
1595
|
+
secrecyLock,
|
|
1596
|
+
secrecyRecover,
|
|
1597
|
+
secrecySetReauth,
|
|
1598
|
+
secrecyStatus,
|
|
1599
|
+
secrecyTouch,
|
|
1600
|
+
secrecyUnlock
|
|
1601
|
+
} from './features/secrecy';
|
|
1602
|
+
export {
|
|
1603
|
+
LOGS_PAGE_DEFAULT,
|
|
1604
|
+
LOGS_PAGE_MAX,
|
|
1605
|
+
logFilterSchema,
|
|
1606
|
+
logsCommands,
|
|
1607
|
+
logsFacetSchema,
|
|
1608
|
+
logsFacetUserSchema,
|
|
1609
|
+
logsFacets,
|
|
1610
|
+
logsList
|
|
1611
|
+
} from './features/logs';
|
|
1612
|
+
export type { LogFilter } from './features/logs';
|
|
1613
|
+
export {
|
|
1614
|
+
mailAccountAdd,
|
|
1615
|
+
mailAccountCount,
|
|
1616
|
+
mailAccountDelete,
|
|
1617
|
+
mailAccountList,
|
|
1618
|
+
mailAccountReorder,
|
|
1619
|
+
mailAccountSetEnabled,
|
|
1620
|
+
mailAccountSetProfile,
|
|
1621
|
+
mailAccountTestConnection,
|
|
1622
|
+
mailAccountUpdate,
|
|
1623
|
+
mailAttachmentDownload,
|
|
1624
|
+
mailAttachmentScan,
|
|
1625
|
+
mailCommands,
|
|
1626
|
+
mailFolderBackfill,
|
|
1627
|
+
mailFolderList,
|
|
1628
|
+
mailFolderReorder,
|
|
1629
|
+
mailFolderReset,
|
|
1630
|
+
mailFolderSync,
|
|
1631
|
+
mailGetSettings,
|
|
1632
|
+
mailMessageDelete,
|
|
1633
|
+
mailMessageGet,
|
|
1634
|
+
mailMessageList,
|
|
1635
|
+
mailMessageMove,
|
|
1636
|
+
mailMessageSearch,
|
|
1637
|
+
mailMessageSetFlags,
|
|
1638
|
+
mailOAuthStart,
|
|
1639
|
+
mailSend,
|
|
1640
|
+
mailSetSettings
|
|
1641
|
+
} from './features/mail';
|
|
1642
|
+
|
|
1643
|
+
// HTTP
|
|
1644
|
+
export {
|
|
1645
|
+
changePasswordRequestSchema,
|
|
1646
|
+
changePasswordResponseSchema,
|
|
1647
|
+
loginRequestSchema,
|
|
1648
|
+
loginResponseSchema,
|
|
1649
|
+
meResponseSchema,
|
|
1650
|
+
refreshResponseSchema,
|
|
1651
|
+
registerRequestSchema,
|
|
1652
|
+
sessionBundleSchema,
|
|
1653
|
+
twoFactorChallengeRequestSchema
|
|
1654
|
+
} from './http/auth';
|
|
1655
|
+
export type {
|
|
1656
|
+
ChangePasswordRequest,
|
|
1657
|
+
ChangePasswordResponse,
|
|
1658
|
+
LoginRequest,
|
|
1659
|
+
LoginResponse,
|
|
1660
|
+
MeResponse,
|
|
1661
|
+
RefreshResponse,
|
|
1662
|
+
RegisterRequest,
|
|
1663
|
+
SessionBundle,
|
|
1664
|
+
TwoFactorChallengeRequest
|
|
1665
|
+
} from './http/auth';
|
|
1666
|
+
export {
|
|
1667
|
+
AGENT_TARGETS,
|
|
1668
|
+
agentManifestSchema,
|
|
1669
|
+
agentManifestTargetSchema,
|
|
1670
|
+
agentTargetSchema,
|
|
1671
|
+
agentTargetsResponseSchema,
|
|
1672
|
+
agentTargetStatusSchema,
|
|
1673
|
+
enrollDeviceRequestSchema,
|
|
1674
|
+
enrollDeviceResponseSchema,
|
|
1675
|
+
LINK_CODE_TTL_MAX_SECONDS,
|
|
1676
|
+
linkCodeRequestSchema,
|
|
1677
|
+
linkCodeResponseSchema,
|
|
1678
|
+
linkCodesListResponseSchema,
|
|
1679
|
+
linkCodeUpdateSchema
|
|
1680
|
+
} from './http/device';
|
|
1681
|
+
export type {
|
|
1682
|
+
AgentManifest,
|
|
1683
|
+
AgentManifestTarget,
|
|
1684
|
+
AgentOs,
|
|
1685
|
+
AgentTarget,
|
|
1686
|
+
AgentTargetMeta,
|
|
1687
|
+
AgentTargetsResponse,
|
|
1688
|
+
AgentTargetStatus,
|
|
1689
|
+
EnrollDeviceRequest,
|
|
1690
|
+
EnrollDeviceResponse,
|
|
1691
|
+
LinkCodeRequest,
|
|
1692
|
+
LinkCodeResponse,
|
|
1693
|
+
LinkCodesListResponse,
|
|
1694
|
+
LinkCodeUpdate
|
|
1695
|
+
} from './http/device';
|
|
1696
|
+
export { bootTaskSchema, bootTaskStateSchema, serverStatusSchema } from './http/status';
|
|
1697
|
+
export type { BootTask, BootTaskState, ServerStatus } from './http/status';
|
|
1698
|
+
|
|
1699
|
+
// Utils
|
|
1700
|
+
export { compareVersions, isNewerVersion } from './utils/version';
|