@checkstack/integration-jira-common 0.1.9 → 0.1.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @checkstack/integration-jira-common
2
2
 
3
+ ## 0.1.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [208ad71]
8
+ - @checkstack/integration-common@0.3.0
9
+
10
+ ## 0.1.10
11
+
12
+ ### Patch Changes
13
+
14
+ - 8d1ef12: ## Downstream consumer bumps for the anomaly detection + cache system rollout
15
+
16
+ Packages on this branch were updated as part of the anomaly detection feature (schema annotations on result fields, plugin metadata for the modular cache system) but were not listed in the upstream changesets.
17
+
18
+ - **`@checkstack/healthcheck-common`** (minor) — new RPC contract additions and schema changes supporting per-field anomaly metadata.
19
+ - **`@checkstack/cache-memory-common`** (minor) — new package providing access rules + plugin metadata for the in-memory cache backend.
20
+ - **healthcheck plugins** (patch) — adopt the new `x-anomaly-*` schema annotations on their result fields so anomaly detection works automatically against their checks. No public API changes.
21
+ - **integration / notification / auth / queue / collector plugins** (patch) — minor internal updates as consumers of upstream API changes (cache plugin registry, schema additions). No public API changes.
22
+
23
+ - Updated dependencies [8d1ef12]
24
+ - @checkstack/common@0.7.0
25
+ - @checkstack/integration-common@0.2.9
26
+
3
27
  ## 0.1.9
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/integration-jira-common",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
@@ -12,8 +12,8 @@
12
12
  "lint:code": "eslint . --max-warnings 0"
13
13
  },
14
14
  "dependencies": {
15
- "@checkstack/common": "0.6.4",
16
- "@checkstack/integration-common": "0.2.7",
15
+ "@checkstack/common": "0.7.0",
16
+ "@checkstack/integration-common": "0.2.9",
17
17
  "@orpc/contract": "^1.13.14",
18
18
  "zod": "^4.2.1"
19
19
  },
@@ -74,7 +74,7 @@ export const jiraContract = {
74
74
  z.object({
75
75
  success: z.boolean(),
76
76
  message: z.string().optional(),
77
- })
77
+ }),
78
78
  ),
79
79
 
80
80
  // ==========================================================================
@@ -100,7 +100,7 @@ export const jiraContract = {
100
100
  z.object({
101
101
  connectionId: z.string(),
102
102
  projectKey: z.string(),
103
- })
103
+ }),
104
104
  )
105
105
  .output(z.array(JiraIssueTypeSchema)),
106
106
 
@@ -115,7 +115,7 @@ export const jiraContract = {
115
115
  connectionId: z.string(),
116
116
  projectKey: z.string(),
117
117
  issueTypeId: z.string(),
118
- })
118
+ }),
119
119
  )
120
120
  .output(z.array(JiraFieldSchema)),
121
121
 
@@ -132,8 +132,8 @@ export const jiraContract = {
132
132
  id: z.string(),
133
133
  name: z.string(),
134
134
  iconUrl: z.string().optional(),
135
- })
136
- )
135
+ }),
136
+ ),
137
137
  ),
138
138
  };
139
139
 
package/src/schemas.ts CHANGED
@@ -122,7 +122,7 @@ export const JiraFieldSchema = z.object({
122
122
  id: z.string(),
123
123
  name: z.string().optional(),
124
124
  value: z.string().optional(),
125
- })
125
+ }),
126
126
  )
127
127
  .optional(),
128
128
  });