@company-semantics/contracts 21.0.0 → 21.1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@company-semantics/contracts",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"build": "tsc -b --noEmit",
|
|
83
83
|
"typecheck": "tsc -b --noEmit",
|
|
84
84
|
"typecheck:ci": "tsc -p scripts/ci/tsconfig.json",
|
|
85
|
-
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules'",
|
|
85
|
+
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules' '#.ralph/worktrees' '#.claude/worktrees'",
|
|
86
86
|
"format": "prettier --write src/",
|
|
87
87
|
"format:check": "prettier --check src/",
|
|
88
88
|
"lint:json": "node -e \"JSON.parse(require('fs').readFileSync('package.json'))\"",
|
|
@@ -30,6 +30,14 @@ export const HrConnectionStatusSchema = z
|
|
|
30
30
|
connected: z.boolean().meta({
|
|
31
31
|
description: "Whether an HR provider is currently connected.",
|
|
32
32
|
}),
|
|
33
|
+
connectionId: z
|
|
34
|
+
.string()
|
|
35
|
+
.nullable()
|
|
36
|
+
.meta({
|
|
37
|
+
description:
|
|
38
|
+
"Stable id of the active connection — the handle the app passes to " +
|
|
39
|
+
"`integration.disconnect`. Null when not connected.",
|
|
40
|
+
}),
|
|
33
41
|
employeeCount: z.number().int().nonnegative().nullable().meta({
|
|
34
42
|
description:
|
|
35
43
|
"Employees mirrored from the HR provider; null when never synced.",
|