@edgible-team/cli 1.2.21 → 1.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/agent/install.d.ts.map +1 -1
- package/dist/commands/agent/install.js +38 -15
- package/dist/commands/debug.d.ts.map +1 -1
- package/dist/commands/debug.js +6 -1
- package/dist/interfaces/IDaemonManager.d.ts +2 -1
- package/dist/interfaces/IDaemonManager.d.ts.map +1 -1
- package/dist/services/AgentStatusManager.d.ts.map +1 -1
- package/dist/services/AgentStatusManager.js +1 -0
- package/dist/services/LocalAgentManager.d.ts.map +1 -1
- package/dist/services/LocalAgentManager.js +7 -0
- package/dist/services/daemon/DaemonManagerFactory.d.ts +1 -1
- package/dist/services/daemon/DaemonManagerFactory.d.ts.map +1 -1
- package/dist/services/daemon/DaemonManagerFactory.js +23 -3
- package/dist/services/daemon/DockerDaemonManager.d.ts +2 -2
- package/dist/services/daemon/DockerDaemonManager.d.ts.map +1 -1
- package/dist/services/daemon/ForegroundDaemonManager.d.ts +22 -0
- package/dist/services/daemon/ForegroundDaemonManager.d.ts.map +1 -0
- package/dist/services/daemon/ForegroundDaemonManager.js +200 -0
- package/dist/services/daemon/LaunchdDaemonManager.d.ts +2 -2
- package/dist/services/daemon/LaunchdDaemonManager.d.ts.map +1 -1
- package/dist/services/daemon/OpenRCDaemonManager.d.ts +25 -0
- package/dist/services/daemon/OpenRCDaemonManager.d.ts.map +1 -0
- package/dist/services/daemon/OpenRCDaemonManager.js +202 -0
- package/dist/services/daemon/PodmanDaemonManager.d.ts +2 -2
- package/dist/services/daemon/PodmanDaemonManager.d.ts.map +1 -1
- package/dist/services/daemon/SystemdDaemonManager.d.ts +2 -2
- package/dist/services/daemon/SystemdDaemonManager.d.ts.map +1 -1
- package/dist/services/daemon/WindowsServiceDaemonManager.d.ts +2 -2
- package/dist/services/daemon/WindowsServiceDaemonManager.d.ts.map +1 -1
- package/dist/services/daemon/index.d.ts +2 -0
- package/dist/services/daemon/index.d.ts.map +1 -1
- package/dist/services/daemon/index.js +5 -1
- package/dist/state/config.d.ts +1 -1
- package/dist/state/config.d.ts.map +1 -1
- package/dist/types/agent.d.ts +1 -1
- package/dist/types/agent.d.ts.map +1 -1
- package/dist/types/validation/schemas.d.ts +4 -4
- package/dist/utils/PathResolver.d.ts.map +1 -1
- package/dist/utils/PathResolver.js +3 -0
- package/dist/utils/PlatformDetector.d.ts +6 -3
- package/dist/utils/PlatformDetector.d.ts.map +1 -1
- package/dist/utils/PlatformDetector.js +57 -16
- package/dist/validation/stack-schemas.d.ts +26 -26
- package/package.json +1 -1
|
@@ -71,8 +71,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
71
71
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
72
72
|
published: boolean;
|
|
73
73
|
description?: string | undefined;
|
|
74
|
-
command?: string | undefined;
|
|
75
74
|
logFile?: string | undefined;
|
|
75
|
+
command?: string | undefined;
|
|
76
76
|
hostnames?: string[] | undefined;
|
|
77
77
|
dependsOn?: string[] | undefined;
|
|
78
78
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -95,8 +95,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
95
95
|
name: string;
|
|
96
96
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
97
97
|
description?: string | undefined;
|
|
98
|
-
command?: string | undefined;
|
|
99
98
|
logFile?: string | undefined;
|
|
99
|
+
command?: string | undefined;
|
|
100
100
|
published?: boolean | undefined;
|
|
101
101
|
hostnames?: string[] | undefined;
|
|
102
102
|
dependsOn?: string[] | undefined;
|
|
@@ -121,8 +121,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
121
121
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
122
122
|
published: boolean;
|
|
123
123
|
description?: string | undefined;
|
|
124
|
-
command?: string | undefined;
|
|
125
124
|
logFile?: string | undefined;
|
|
125
|
+
command?: string | undefined;
|
|
126
126
|
hostnames?: string[] | undefined;
|
|
127
127
|
dependsOn?: string[] | undefined;
|
|
128
128
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -145,8 +145,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
145
145
|
name: string;
|
|
146
146
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
147
147
|
description?: string | undefined;
|
|
148
|
-
command?: string | undefined;
|
|
149
148
|
logFile?: string | undefined;
|
|
149
|
+
command?: string | undefined;
|
|
150
150
|
published?: boolean | undefined;
|
|
151
151
|
hostnames?: string[] | undefined;
|
|
152
152
|
dependsOn?: string[] | undefined;
|
|
@@ -171,8 +171,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
171
171
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
172
172
|
published: boolean;
|
|
173
173
|
description?: string | undefined;
|
|
174
|
-
command?: string | undefined;
|
|
175
174
|
logFile?: string | undefined;
|
|
175
|
+
command?: string | undefined;
|
|
176
176
|
hostnames?: string[] | undefined;
|
|
177
177
|
dependsOn?: string[] | undefined;
|
|
178
178
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -195,8 +195,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
195
195
|
name: string;
|
|
196
196
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
197
197
|
description?: string | undefined;
|
|
198
|
-
command?: string | undefined;
|
|
199
198
|
logFile?: string | undefined;
|
|
199
|
+
command?: string | undefined;
|
|
200
200
|
published?: boolean | undefined;
|
|
201
201
|
hostnames?: string[] | undefined;
|
|
202
202
|
dependsOn?: string[] | undefined;
|
|
@@ -221,8 +221,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
221
221
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
222
222
|
published: boolean;
|
|
223
223
|
description?: string | undefined;
|
|
224
|
-
command?: string | undefined;
|
|
225
224
|
logFile?: string | undefined;
|
|
225
|
+
command?: string | undefined;
|
|
226
226
|
hostnames?: string[] | undefined;
|
|
227
227
|
dependsOn?: string[] | undefined;
|
|
228
228
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -245,8 +245,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
245
245
|
name: string;
|
|
246
246
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
247
247
|
description?: string | undefined;
|
|
248
|
-
command?: string | undefined;
|
|
249
248
|
logFile?: string | undefined;
|
|
249
|
+
command?: string | undefined;
|
|
250
250
|
published?: boolean | undefined;
|
|
251
251
|
hostnames?: string[] | undefined;
|
|
252
252
|
dependsOn?: string[] | undefined;
|
|
@@ -271,8 +271,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
271
271
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
272
272
|
published: boolean;
|
|
273
273
|
description?: string | undefined;
|
|
274
|
-
command?: string | undefined;
|
|
275
274
|
logFile?: string | undefined;
|
|
275
|
+
command?: string | undefined;
|
|
276
276
|
hostnames?: string[] | undefined;
|
|
277
277
|
dependsOn?: string[] | undefined;
|
|
278
278
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -295,8 +295,8 @@ export declare const stackApplicationSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
295
295
|
name: string;
|
|
296
296
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
297
297
|
description?: string | undefined;
|
|
298
|
-
command?: string | undefined;
|
|
299
298
|
logFile?: string | undefined;
|
|
299
|
+
command?: string | undefined;
|
|
300
300
|
published?: boolean | undefined;
|
|
301
301
|
hostnames?: string[] | undefined;
|
|
302
302
|
dependsOn?: string[] | undefined;
|
|
@@ -376,8 +376,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
376
376
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
377
377
|
published: boolean;
|
|
378
378
|
description?: string | undefined;
|
|
379
|
-
command?: string | undefined;
|
|
380
379
|
logFile?: string | undefined;
|
|
380
|
+
command?: string | undefined;
|
|
381
381
|
hostnames?: string[] | undefined;
|
|
382
382
|
dependsOn?: string[] | undefined;
|
|
383
383
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -400,8 +400,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
400
400
|
name: string;
|
|
401
401
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
402
402
|
description?: string | undefined;
|
|
403
|
-
command?: string | undefined;
|
|
404
403
|
logFile?: string | undefined;
|
|
404
|
+
command?: string | undefined;
|
|
405
405
|
published?: boolean | undefined;
|
|
406
406
|
hostnames?: string[] | undefined;
|
|
407
407
|
dependsOn?: string[] | undefined;
|
|
@@ -426,8 +426,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
426
426
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
427
427
|
published: boolean;
|
|
428
428
|
description?: string | undefined;
|
|
429
|
-
command?: string | undefined;
|
|
430
429
|
logFile?: string | undefined;
|
|
430
|
+
command?: string | undefined;
|
|
431
431
|
hostnames?: string[] | undefined;
|
|
432
432
|
dependsOn?: string[] | undefined;
|
|
433
433
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -450,8 +450,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
450
450
|
name: string;
|
|
451
451
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
452
452
|
description?: string | undefined;
|
|
453
|
-
command?: string | undefined;
|
|
454
453
|
logFile?: string | undefined;
|
|
454
|
+
command?: string | undefined;
|
|
455
455
|
published?: boolean | undefined;
|
|
456
456
|
hostnames?: string[] | undefined;
|
|
457
457
|
dependsOn?: string[] | undefined;
|
|
@@ -476,8 +476,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
476
476
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
477
477
|
published: boolean;
|
|
478
478
|
description?: string | undefined;
|
|
479
|
-
command?: string | undefined;
|
|
480
479
|
logFile?: string | undefined;
|
|
480
|
+
command?: string | undefined;
|
|
481
481
|
hostnames?: string[] | undefined;
|
|
482
482
|
dependsOn?: string[] | undefined;
|
|
483
483
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -500,8 +500,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
500
500
|
name: string;
|
|
501
501
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
502
502
|
description?: string | undefined;
|
|
503
|
-
command?: string | undefined;
|
|
504
503
|
logFile?: string | undefined;
|
|
504
|
+
command?: string | undefined;
|
|
505
505
|
published?: boolean | undefined;
|
|
506
506
|
hostnames?: string[] | undefined;
|
|
507
507
|
dependsOn?: string[] | undefined;
|
|
@@ -526,8 +526,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
526
526
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
527
527
|
published: boolean;
|
|
528
528
|
description?: string | undefined;
|
|
529
|
-
command?: string | undefined;
|
|
530
529
|
logFile?: string | undefined;
|
|
530
|
+
command?: string | undefined;
|
|
531
531
|
hostnames?: string[] | undefined;
|
|
532
532
|
dependsOn?: string[] | undefined;
|
|
533
533
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -550,8 +550,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
550
550
|
name: string;
|
|
551
551
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
552
552
|
description?: string | undefined;
|
|
553
|
-
command?: string | undefined;
|
|
554
553
|
logFile?: string | undefined;
|
|
554
|
+
command?: string | undefined;
|
|
555
555
|
published?: boolean | undefined;
|
|
556
556
|
hostnames?: string[] | undefined;
|
|
557
557
|
dependsOn?: string[] | undefined;
|
|
@@ -576,8 +576,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
576
576
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
577
577
|
published: boolean;
|
|
578
578
|
description?: string | undefined;
|
|
579
|
-
command?: string | undefined;
|
|
580
579
|
logFile?: string | undefined;
|
|
580
|
+
command?: string | undefined;
|
|
581
581
|
hostnames?: string[] | undefined;
|
|
582
582
|
dependsOn?: string[] | undefined;
|
|
583
583
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -600,8 +600,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
600
600
|
name: string;
|
|
601
601
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
602
602
|
description?: string | undefined;
|
|
603
|
-
command?: string | undefined;
|
|
604
603
|
logFile?: string | undefined;
|
|
604
|
+
command?: string | undefined;
|
|
605
605
|
published?: boolean | undefined;
|
|
606
606
|
hostnames?: string[] | undefined;
|
|
607
607
|
dependsOn?: string[] | undefined;
|
|
@@ -633,8 +633,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
633
633
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
634
634
|
published: boolean;
|
|
635
635
|
description?: string | undefined;
|
|
636
|
-
command?: string | undefined;
|
|
637
636
|
logFile?: string | undefined;
|
|
637
|
+
command?: string | undefined;
|
|
638
638
|
hostnames?: string[] | undefined;
|
|
639
639
|
dependsOn?: string[] | undefined;
|
|
640
640
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -665,8 +665,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
665
665
|
name: string;
|
|
666
666
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
667
667
|
description?: string | undefined;
|
|
668
|
-
command?: string | undefined;
|
|
669
668
|
logFile?: string | undefined;
|
|
669
|
+
command?: string | undefined;
|
|
670
670
|
published?: boolean | undefined;
|
|
671
671
|
hostnames?: string[] | undefined;
|
|
672
672
|
dependsOn?: string[] | undefined;
|
|
@@ -699,8 +699,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
699
699
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
700
700
|
published: boolean;
|
|
701
701
|
description?: string | undefined;
|
|
702
|
-
command?: string | undefined;
|
|
703
702
|
logFile?: string | undefined;
|
|
703
|
+
command?: string | undefined;
|
|
704
704
|
hostnames?: string[] | undefined;
|
|
705
705
|
dependsOn?: string[] | undefined;
|
|
706
706
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -731,8 +731,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
731
731
|
name: string;
|
|
732
732
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
733
733
|
description?: string | undefined;
|
|
734
|
-
command?: string | undefined;
|
|
735
734
|
logFile?: string | undefined;
|
|
735
|
+
command?: string | undefined;
|
|
736
736
|
published?: boolean | undefined;
|
|
737
737
|
hostnames?: string[] | undefined;
|
|
738
738
|
dependsOn?: string[] | undefined;
|
|
@@ -765,8 +765,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
765
765
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
766
766
|
published: boolean;
|
|
767
767
|
description?: string | undefined;
|
|
768
|
-
command?: string | undefined;
|
|
769
768
|
logFile?: string | undefined;
|
|
769
|
+
command?: string | undefined;
|
|
770
770
|
hostnames?: string[] | undefined;
|
|
771
771
|
dependsOn?: string[] | undefined;
|
|
772
772
|
authModes?: ("none" | "org" | "api-key")[] | undefined;
|
|
@@ -797,8 +797,8 @@ export declare const applicationStackSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
|
|
|
797
797
|
name: string;
|
|
798
798
|
subtype: "docker" | "podman" | "docker-compose" | "managed-process" | "vm" | "existing";
|
|
799
799
|
description?: string | undefined;
|
|
800
|
-
command?: string | undefined;
|
|
801
800
|
logFile?: string | undefined;
|
|
801
|
+
command?: string | undefined;
|
|
802
802
|
published?: boolean | undefined;
|
|
803
803
|
hostnames?: string[] | undefined;
|
|
804
804
|
dependsOn?: string[] | undefined;
|