@supercheck/cli 0.1.0-beta.1 → 0.1.0-beta.2

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.d.ts CHANGED
@@ -1103,6 +1103,7 @@ declare const supercheckConfigSchema: z.ZodObject<{
1103
1103
  }>;
1104
1104
  type AlertConfig = z.infer<typeof alertConfigSchema>;
1105
1105
  type SupercheckConfig = z.infer<typeof supercheckConfigSchema>;
1106
+ type SupercheckUserConfig = z.input<typeof supercheckConfigSchema>;
1106
1107
  type ProjectConfig = z.infer<typeof projectConfigSchema>;
1107
1108
  type ApiConfig = z.infer<typeof apiConfigSchema>;
1108
1109
  type DefaultsConfig = z.infer<typeof defaultsConfigSchema>;
@@ -1135,6 +1136,6 @@ type TagDefinition = z.infer<typeof tagDefinitionSchema>;
1135
1136
  * })
1136
1137
  * ```
1137
1138
  */
1138
- declare function defineConfig(config: SupercheckConfig): SupercheckConfig;
1139
+ declare function defineConfig(config: SupercheckUserConfig): SupercheckUserConfig;
1139
1140
 
1140
1141
  export { type AlertConfig, type ApiConfig, type DefaultsConfig, type JobDefinition, type K6TestConfig, type MonitorDefinition, type NotificationProviderDefinition, type PlaywrightTestConfig, type ProjectConfig, type StatusPageComponentDefinition, type StatusPageDefinition, type SupercheckConfig, type TagDefinition, type TestsConfig, type VariableDefinition, defineConfig };
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/config/define-config.ts"],"sourcesContent":["import type { SupercheckConfig } from './schema.js'\n\n/**\n * Type-safe helper for authoring supercheck.config.ts files.\n * Provides full IntelliSense and compile-time validation.\n *\n * @example\n * ```typescript\n * // supercheck.config.ts\n * import { defineConfig } from '@supercheck/cli'\n *\n * export default defineConfig({\n * schemaVersion: '1.0',\n * project: {\n * organization: 'acme-inc',\n * project: 'web-app',\n * },\n * })\n * ```\n */\nexport function defineConfig(config: SupercheckConfig): SupercheckConfig {\n return config\n}\n"],"mappings":";AAoBO,SAAS,aAAa,QAA4C;AACvE,SAAO;AACT;","names":[]}
1
+ {"version":3,"sources":["../src/config/define-config.ts"],"sourcesContent":["import type { SupercheckUserConfig } from './schema.js'\n\n/**\n * Type-safe helper for authoring supercheck.config.ts files.\n * Provides full IntelliSense and compile-time validation.\n *\n * @example\n * ```typescript\n * // supercheck.config.ts\n * import { defineConfig } from '@supercheck/cli'\n *\n * export default defineConfig({\n * schemaVersion: '1.0',\n * project: {\n * organization: 'acme-inc',\n * project: 'web-app',\n * },\n * })\n * ```\n */\nexport function defineConfig(config: SupercheckUserConfig): SupercheckUserConfig {\n return config\n}\n"],"mappings":";AAoBO,SAAS,aAAa,QAAoD;AAC/E,SAAO;AACT;","names":[]}
package/package.json CHANGED
@@ -1,9 +1,31 @@
1
1
  {
2
2
  "name": "@supercheck/cli",
3
- "version": "0.1.0-beta.1",
4
- "description": "Open-source testing, monitoring, and reliability — as code",
3
+ "version": "0.1.0-beta.2",
4
+ "description": "Open-Source Testing, Monitoring, and Reliability — as Code",
5
+ "keywords": [
6
+ "monitoring",
7
+ "testing",
8
+ "playwright",
9
+ "k6",
10
+ "cli",
11
+ "devops",
12
+ "automation",
13
+ "ci-cd"
14
+ ],
15
+ "homepage": "https://supercheck.io",
16
+ "bugs": {
17
+ "url": "https://github.com/supercheck-io/supercheck/issues"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/supercheck-io/supercheck.git"
22
+ },
23
+ "author": "Supercheck <hello@supercheck.io>",
5
24
  "type": "module",
6
- "license": "BUSL-1.1",
25
+ "license": "SEE LICENSE IN LICENSE",
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
7
29
  "engines": {
8
30
  "node": ">=18.0.0"
9
31
  },