@deveye/types 0.15.2 → 0.16.1
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/package.json +6 -6
- package/src/domain/device.ts +4 -29
- package/src/domain/featureRegistry.ts +40 -108
- package/src/domain/home.ts +40 -101
- package/src/domain/live.ts +36 -87
- package/src/domain/metrics.ts +10 -14
- package/src/domain/notifications.ts +39 -110
- package/src/domain/project.ts +3 -162
- package/src/domain/report.ts +54 -95
- package/src/domain/secrecy.ts +3 -5
- package/src/domain/sharing.ts +33 -70
- package/src/domain/syncProtocol.ts +5 -12
- package/src/domain/user.ts +8 -14
- package/src/domain/workspace.ts +0 -3
- package/src/domain/workspaceRole.ts +34 -82
- package/src/features/agent.ts +306 -0
- package/src/features/live.ts +17 -37
- package/src/features/notify.ts +19 -57
- package/src/features/registry.ts +7 -44
- package/src/features/secrecy.ts +4 -9
- package/src/features/sharing.ts +12 -26
- package/src/features/user.ts +6 -11
- package/src/features/workspace.ts +6 -11
- package/src/http/auth.ts +6 -13
- package/src/http/device.ts +13 -17
- package/src/http/status.ts +6 -10
- package/src/index.ts +29 -932
- package/src/protocol/agent.ts +40 -70
- package/src/protocol/envelope.ts +3 -10
- package/src/sdk/client-ambient.d.ts +228 -21
- package/src/sdk/client.ts +277 -17
- package/src/sdk/devb.ts +120 -0
- package/src/sdk/manifest.test.ts +0 -1
- package/src/sdk/manifest.ts +94 -25
- package/src/sdk/providers.ts +310 -5
- package/src/sdk/server.ts +483 -19
- package/src/sdk/testing.test.ts +2 -2
- package/src/sdk/testing.ts +302 -26
- package/src/utils/version.ts +5 -8
- package/src/domain/audience.ts +0 -549
- package/src/domain/backup.ts +0 -355
- package/src/domain/credential.ts +0 -55
- package/src/domain/database.ts +0 -467
- package/src/domain/deploy.ts +0 -231
- package/src/domain/finance.ts +0 -477
- package/src/domain/git.ts +0 -419
- package/src/domain/mail.ts +0 -394
- package/src/domain/note.ts +0 -202
- package/src/domain/password.ts +0 -36
- package/src/domain/projectBoard.ts +0 -130
- package/src/domain/projectChat.ts +0 -46
- package/src/domain/projectHistory.ts +0 -82
- package/src/domain/projectLink.ts +0 -87
- package/src/domain/projectPlan.ts +0 -68
- package/src/domain/sentinel.ts +0 -623
- package/src/domain/uptime.ts +0 -216
- package/src/features/audience.ts +0 -275
- package/src/features/backup.ts +0 -230
- package/src/features/database.ts +0 -461
- package/src/features/deploy.ts +0 -245
- package/src/features/device.ts +0 -292
- package/src/features/deviceFiles.ts +0 -83
- package/src/features/deviceLogs.ts +0 -36
- package/src/features/deviceTerminal.ts +0 -57
- package/src/features/finance.ts +0 -360
- package/src/features/git.ts +0 -368
- package/src/features/mail.ts +0 -374
- package/src/features/metrics.ts +0 -185
- package/src/features/note.ts +0 -189
- package/src/features/password.ts +0 -67
- package/src/features/project.ts +0 -709
- package/src/features/sentinel.ts +0 -233
- package/src/features/uptime.ts +0 -186
package/src/index.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
// Protocol
|
|
2
1
|
export { clientMessageSchema, serverMessageSchema } from './protocol/envelope';
|
|
3
2
|
export type { ClientMessage, ConnectionState, ServerMessage } from './protocol/envelope';
|
|
4
3
|
export { ErrorCodeSchema, ProtocolErrorSchema } from './protocol/error';
|
|
@@ -229,7 +228,6 @@ export type {
|
|
|
229
228
|
SyncShareAssignment
|
|
230
229
|
} from './protocol/agent';
|
|
231
230
|
|
|
232
|
-
// Domain
|
|
233
231
|
export {
|
|
234
232
|
LOG_CATEGORIES,
|
|
235
233
|
LOG_LEVEL_NAMES,
|
|
@@ -309,543 +307,10 @@ export type {
|
|
|
309
307
|
FileSearchFilter,
|
|
310
308
|
FileUsageEntry
|
|
311
309
|
} from './domain/deviceFiles';
|
|
312
|
-
export {
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
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';
|
|
310
|
+
export { projectStatusSchema } from './domain/project';
|
|
311
|
+
export type { ProjectStatus } from './domain/project';
|
|
312
|
+
export { presenceEventSchema } from './domain/presence';
|
|
313
|
+
export type { PresenceEvent, PresenceRow } from './domain/presence';
|
|
849
314
|
export { userRoleSchema } from './domain/role';
|
|
850
315
|
export type { UserRole } from './domain/role';
|
|
851
316
|
export {
|
|
@@ -1051,57 +516,6 @@ export type {
|
|
|
1051
516
|
ReportProcess,
|
|
1052
517
|
TcpConnection
|
|
1053
518
|
} 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
519
|
export {
|
|
1106
520
|
NOTIFICATION_CHANNEL_KINDS,
|
|
1107
521
|
NOTIFICATION_EMAIL_MAX,
|
|
@@ -1175,8 +589,6 @@ export {
|
|
|
1175
589
|
sharingCommands
|
|
1176
590
|
} from './features/sharing';
|
|
1177
591
|
export { SHAREABLE_FEATURES, SHARE_WIRED_FEATURES } from './domain/featureRegistry';
|
|
1178
|
-
export { presenceEventSchema } from './domain/presence';
|
|
1179
|
-
export type { PresenceEvent, PresenceRow } from './domain/presence';
|
|
1180
592
|
export {
|
|
1181
593
|
metricSeriesPointSchema,
|
|
1182
594
|
metricSnapshotSchema,
|
|
@@ -1198,227 +610,6 @@ export type {
|
|
|
1198
610
|
TwoFactorStatus
|
|
1199
611
|
} from './domain/twoFactor';
|
|
1200
612
|
|
|
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
613
|
export { homeCommands, homeSetLayout, homeShortcutPreview } from './features/home';
|
|
1423
614
|
export {
|
|
1424
615
|
featureCommandRegistry,
|
|
@@ -1475,95 +666,32 @@ export {
|
|
|
1475
666
|
} from './features/user';
|
|
1476
667
|
export type { ThemeStateDTO } from './features/user';
|
|
1477
668
|
export {
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
export type { DeviceShareTarget } from './features/device';
|
|
1503
|
-
export { deviceLogCommands, deviceLogQuery, deviceLogSources } from './features/deviceLogs';
|
|
1504
|
-
export {
|
|
1505
|
-
deviceFilesAnalyze,
|
|
1506
|
-
deviceFilesCommands,
|
|
1507
|
-
deviceFilesDownload,
|
|
1508
|
-
deviceFilesList,
|
|
1509
|
-
deviceFilesMutate,
|
|
1510
|
-
deviceFilesSearch,
|
|
1511
|
-
deviceFilesUpload
|
|
1512
|
-
} from './features/deviceFiles';
|
|
1513
|
-
export {
|
|
1514
|
-
deviceTerminalCommands,
|
|
1515
|
-
deviceTermClose,
|
|
1516
|
-
deviceTermInput,
|
|
1517
|
-
deviceTermOpen,
|
|
1518
|
-
deviceTermResize,
|
|
669
|
+
agentCollect,
|
|
670
|
+
agentCommands,
|
|
671
|
+
agentDropPrivileges,
|
|
672
|
+
agentElevate,
|
|
673
|
+
agentFilesAnalyze,
|
|
674
|
+
agentFilesDownload,
|
|
675
|
+
agentFilesList,
|
|
676
|
+
agentFilesMutate,
|
|
677
|
+
agentFilesSearch,
|
|
678
|
+
agentFilesUpload,
|
|
679
|
+
agentLifecycle,
|
|
680
|
+
agentListPackages,
|
|
681
|
+
agentLogQuery,
|
|
682
|
+
agentLogSources,
|
|
683
|
+
agentPower,
|
|
684
|
+
agentSetAutostart,
|
|
685
|
+
agentSubscribe,
|
|
686
|
+
agentTermClose,
|
|
687
|
+
agentTermInput,
|
|
688
|
+
agentTermOpen,
|
|
689
|
+
agentTermResize,
|
|
690
|
+
agentUnsubscribe,
|
|
691
|
+
agentUpdate,
|
|
692
|
+
agentUpgradePackages,
|
|
1519
693
|
terminalUser
|
|
1520
|
-
} from './features/
|
|
1521
|
-
export {
|
|
1522
|
-
metricsAvailability,
|
|
1523
|
-
metricsCommands,
|
|
1524
|
-
metricsDeleteSnapshots,
|
|
1525
|
-
metricsPresence,
|
|
1526
|
-
metricsProcessesAt,
|
|
1527
|
-
metricsQuery,
|
|
1528
|
-
metricsRefresh,
|
|
1529
|
-
metricsSetSnapshotsPinned,
|
|
1530
|
-
metricsSnapshots,
|
|
1531
|
-
metricsStorage,
|
|
1532
|
-
metricsSubscribe,
|
|
1533
|
-
metricsUnsubscribe
|
|
1534
|
-
} from './features/metrics';
|
|
1535
|
-
export {
|
|
1536
|
-
SENTINEL_PAGE_MAX,
|
|
1537
|
-
sentinelAcknowledge,
|
|
1538
|
-
sentinelAllowlist,
|
|
1539
|
-
sentinelBaseline,
|
|
1540
|
-
sentinelCommands,
|
|
1541
|
-
sentinelCount,
|
|
1542
|
-
sentinelFindings,
|
|
1543
|
-
sentinelOverview,
|
|
1544
|
-
sentinelPosture,
|
|
1545
|
-
sentinelRemoveAllow,
|
|
1546
|
-
sentinelReopen,
|
|
1547
|
-
sentinelResetBaseline,
|
|
1548
|
-
sentinelResolve,
|
|
1549
|
-
sentinelScanNow,
|
|
1550
|
-
sentinelSetConfig
|
|
1551
|
-
} from './features/sentinel';
|
|
1552
|
-
export {
|
|
1553
|
-
uptimeAdd,
|
|
1554
|
-
uptimeCheckNow,
|
|
1555
|
-
uptimeChecks,
|
|
1556
|
-
uptimeCheckStats,
|
|
1557
|
-
uptimeCommands,
|
|
1558
|
-
uptimeCount,
|
|
1559
|
-
uptimeHistory,
|
|
1560
|
-
uptimeIncidents,
|
|
1561
|
-
uptimeList,
|
|
1562
|
-
uptimeRemove,
|
|
1563
|
-
uptimeReorder,
|
|
1564
|
-
uptimeSetEnabled,
|
|
1565
|
-
uptimeUpdate
|
|
1566
|
-
} from './features/uptime';
|
|
694
|
+
} from './features/agent';
|
|
1567
695
|
export {
|
|
1568
696
|
notifyChannelAdd,
|
|
1569
697
|
notifyChannelDelete,
|
|
@@ -1608,37 +736,7 @@ export {
|
|
|
1608
736
|
logsList
|
|
1609
737
|
} from './features/logs';
|
|
1610
738
|
export type { LogFilter } from './features/logs';
|
|
1611
|
-
export {
|
|
1612
|
-
mailAccountAdd,
|
|
1613
|
-
mailAccountCount,
|
|
1614
|
-
mailAccountDelete,
|
|
1615
|
-
mailAccountList,
|
|
1616
|
-
mailAccountReorder,
|
|
1617
|
-
mailAccountSetEnabled,
|
|
1618
|
-
mailAccountSetProfile,
|
|
1619
|
-
mailAccountTestConnection,
|
|
1620
|
-
mailAccountUpdate,
|
|
1621
|
-
mailAttachmentDownload,
|
|
1622
|
-
mailAttachmentScan,
|
|
1623
|
-
mailCommands,
|
|
1624
|
-
mailFolderBackfill,
|
|
1625
|
-
mailFolderList,
|
|
1626
|
-
mailFolderReorder,
|
|
1627
|
-
mailFolderReset,
|
|
1628
|
-
mailFolderSync,
|
|
1629
|
-
mailGetSettings,
|
|
1630
|
-
mailMessageDelete,
|
|
1631
|
-
mailMessageGet,
|
|
1632
|
-
mailMessageList,
|
|
1633
|
-
mailMessageMove,
|
|
1634
|
-
mailMessageSearch,
|
|
1635
|
-
mailMessageSetFlags,
|
|
1636
|
-
mailOAuthStart,
|
|
1637
|
-
mailSend,
|
|
1638
|
-
mailSetSettings
|
|
1639
|
-
} from './features/mail';
|
|
1640
739
|
|
|
1641
|
-
// HTTP
|
|
1642
740
|
export {
|
|
1643
741
|
changePasswordRequestSchema,
|
|
1644
742
|
changePasswordResponseSchema,
|
|
@@ -1694,5 +792,4 @@ export type {
|
|
|
1694
792
|
export { bootTaskSchema, bootTaskStateSchema, serverStatusSchema } from './http/status';
|
|
1695
793
|
export type { BootTask, BootTaskState, ServerStatus } from './http/status';
|
|
1696
794
|
|
|
1697
|
-
// Utils
|
|
1698
795
|
export { compareVersions, isNewerVersion } from './utils/version';
|