@observeone/cli 1.26.0 → 1.28.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/README.md +146 -250
- package/dist/README.md +146 -250
- package/dist/commands/alert-channel.js +2 -2
- package/dist/commands/alert-channel.js.map +1 -1
- package/dist/commands/apply.d.ts.map +1 -1
- package/dist/commands/apply.js +11 -6
- package/dist/commands/apply.js.map +1 -1
- package/dist/commands/check.js +4 -4
- package/dist/commands/check.js.map +1 -1
- package/dist/commands/heartbeat.js +4 -4
- package/dist/commands/heartbeat.js.map +1 -1
- package/dist/commands/incident.js +8 -8
- package/dist/commands/incident.js.map +1 -1
- package/dist/commands/monitor.js +4 -4
- package/dist/commands/monitor.js.map +1 -1
- package/dist/commands/resource-command.factory.d.ts +6 -6
- package/dist/commands/resource-command.factory.d.ts.map +1 -1
- package/dist/commands/resource-command.factory.js +9 -9
- package/dist/commands/resource-command.factory.js.map +1 -1
- package/dist/commands/status-page.js +12 -12
- package/dist/commands/status-page.js.map +1 -1
- package/dist/interfaces/api-client.interface.d.ts +33 -33
- package/dist/package.json +1 -1
- package/dist/services/api-client.service.d.ts +40 -40
- package/dist/services/api-client.service.d.ts.map +1 -1
- package/dist/services/api-client.service.js +1 -1
- package/dist/services/api-client.service.js.map +1 -1
- package/dist/types/index.d.ts +13 -13
- package/dist/utils/schema-prompts.d.ts +1 -1
- package/package.json +16 -14
|
@@ -31,6 +31,6 @@ export declare function buildDefaultCreatePrompts<T>(schema: ResourceSchema): (o
|
|
|
31
31
|
*
|
|
32
32
|
* No inquirer prompts on update — `update` is non-interactive by design.
|
|
33
33
|
*/
|
|
34
|
-
export declare function buildDefaultUpdatePrompts<T>(schema: ResourceSchema, outputService: IOutputService): (id:
|
|
34
|
+
export declare function buildDefaultUpdatePrompts<T>(schema: ResourceSchema, outputService: IOutputService): (id: string, options: Options, existing: T) => Promise<Partial<T>>;
|
|
35
35
|
export {};
|
|
36
36
|
//# sourceMappingURL=schema-prompts.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@observeone/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.28.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "ObserveOne CLI - AI-powered website monitoring and testing from the command line",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -15,6 +15,20 @@
|
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/Observeone1/ObserveOne-CLI/issues"
|
|
17
17
|
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "node scripts/build.js",
|
|
20
|
+
"dev": "tsx src/index.ts",
|
|
21
|
+
"check": "tsc --noEmit",
|
|
22
|
+
"lint": "eslint \"src/**/*.ts\" \"e2e/**/*.ts\"",
|
|
23
|
+
"format": "prettier --write \"src/**/*.ts\" \"e2e/**/*.ts\"",
|
|
24
|
+
"format:check": "prettier --check \"src/**/*.ts\" \"e2e/**/*.ts\"",
|
|
25
|
+
"test": "vitest run && tsx e2e/run-tests.ts",
|
|
26
|
+
"test:unit": "vitest run",
|
|
27
|
+
"test:e2e": "tsx e2e/run-tests.ts",
|
|
28
|
+
"knip": "knip",
|
|
29
|
+
"prepublishOnly": "npm run build",
|
|
30
|
+
"prepare": "husky"
|
|
31
|
+
},
|
|
18
32
|
"keywords": [
|
|
19
33
|
"observeone",
|
|
20
34
|
"obs",
|
|
@@ -60,17 +74,5 @@
|
|
|
60
74
|
],
|
|
61
75
|
"lint-staged": {
|
|
62
76
|
"*.ts": "prettier --write"
|
|
63
|
-
},
|
|
64
|
-
"scripts": {
|
|
65
|
-
"build": "node scripts/build.js",
|
|
66
|
-
"dev": "tsx src/index.ts",
|
|
67
|
-
"check": "tsc --noEmit",
|
|
68
|
-
"lint": "eslint \"src/**/*.ts\" \"e2e/**/*.ts\"",
|
|
69
|
-
"format": "prettier --write \"src/**/*.ts\" \"e2e/**/*.ts\"",
|
|
70
|
-
"format:check": "prettier --check \"src/**/*.ts\" \"e2e/**/*.ts\"",
|
|
71
|
-
"test": "vitest run && tsx e2e/run-tests.ts",
|
|
72
|
-
"test:unit": "vitest run",
|
|
73
|
-
"test:e2e": "tsx e2e/run-tests.ts",
|
|
74
|
-
"knip": "knip"
|
|
75
77
|
}
|
|
76
|
-
}
|
|
78
|
+
}
|