@saasicat/cli 0.18.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +119 -119
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +119 -119
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -285,28 +285,28 @@ interface ManifestDiff {
|
|
|
285
285
|
declare class PlanCatalogDoctorCheck implements DoctorCheck {
|
|
286
286
|
private readonly catalog;
|
|
287
287
|
readonly id = "platform.plan-catalog";
|
|
288
|
-
readonly label = "Plan
|
|
288
|
+
readonly label = "Plan catalog in DI";
|
|
289
289
|
constructor(catalog: PlanCatalog);
|
|
290
290
|
run(): Promise<DoctorCheckResult>;
|
|
291
291
|
}
|
|
292
292
|
declare class DiscoverySnapshotDoctorCheck implements DoctorCheck {
|
|
293
293
|
private readonly snapshot;
|
|
294
294
|
readonly id = "platform.discovery-snapshot";
|
|
295
|
-
readonly label = "Discovery
|
|
295
|
+
readonly label = "Discovery snapshot on boot";
|
|
296
296
|
constructor(snapshot: DiscoverySnapshot);
|
|
297
297
|
run(): Promise<DoctorCheckResult>;
|
|
298
298
|
}
|
|
299
299
|
declare class UserPortDoctorCheck implements DoctorCheck {
|
|
300
300
|
private readonly users;
|
|
301
301
|
readonly id = "platform.user-port";
|
|
302
|
-
readonly label = "UserPort.findByEmail
|
|
302
|
+
readonly label = "UserPort.findByEmail reachable";
|
|
303
303
|
constructor(users: UserPort);
|
|
304
304
|
run(): Promise<DoctorCheckResult>;
|
|
305
305
|
}
|
|
306
306
|
declare class AdminManifestDoctorCheck implements DoctorCheck {
|
|
307
307
|
private readonly manifest;
|
|
308
308
|
readonly id = "platform.admin-manifest";
|
|
309
|
-
readonly label = "AdminManifestService
|
|
309
|
+
readonly label = "AdminManifestService returns a manifest";
|
|
310
310
|
constructor(manifest: AdminManifestService);
|
|
311
311
|
run(): Promise<DoctorCheckResult>;
|
|
312
312
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -285,28 +285,28 @@ interface ManifestDiff {
|
|
|
285
285
|
declare class PlanCatalogDoctorCheck implements DoctorCheck {
|
|
286
286
|
private readonly catalog;
|
|
287
287
|
readonly id = "platform.plan-catalog";
|
|
288
|
-
readonly label = "Plan
|
|
288
|
+
readonly label = "Plan catalog in DI";
|
|
289
289
|
constructor(catalog: PlanCatalog);
|
|
290
290
|
run(): Promise<DoctorCheckResult>;
|
|
291
291
|
}
|
|
292
292
|
declare class DiscoverySnapshotDoctorCheck implements DoctorCheck {
|
|
293
293
|
private readonly snapshot;
|
|
294
294
|
readonly id = "platform.discovery-snapshot";
|
|
295
|
-
readonly label = "Discovery
|
|
295
|
+
readonly label = "Discovery snapshot on boot";
|
|
296
296
|
constructor(snapshot: DiscoverySnapshot);
|
|
297
297
|
run(): Promise<DoctorCheckResult>;
|
|
298
298
|
}
|
|
299
299
|
declare class UserPortDoctorCheck implements DoctorCheck {
|
|
300
300
|
private readonly users;
|
|
301
301
|
readonly id = "platform.user-port";
|
|
302
|
-
readonly label = "UserPort.findByEmail
|
|
302
|
+
readonly label = "UserPort.findByEmail reachable";
|
|
303
303
|
constructor(users: UserPort);
|
|
304
304
|
run(): Promise<DoctorCheckResult>;
|
|
305
305
|
}
|
|
306
306
|
declare class AdminManifestDoctorCheck implements DoctorCheck {
|
|
307
307
|
private readonly manifest;
|
|
308
308
|
readonly id = "platform.admin-manifest";
|
|
309
|
-
readonly label = "AdminManifestService
|
|
309
|
+
readonly label = "AdminManifestService returns a manifest";
|
|
310
310
|
constructor(manifest: AdminManifestService);
|
|
311
311
|
run(): Promise<DoctorCheckResult>;
|
|
312
312
|
}
|