@company-semantics/contracts 38.1.0 → 39.0.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": "
|
|
3
|
+
"version": "39.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"guard:test": "vitest run scripts/ci/__tests__",
|
|
103
103
|
"release": "npx tsx scripts/release.ts",
|
|
104
104
|
"prepublishOnly": "echo 'ERROR: Publishing is CI-only via tag push. Use pnpm release instead.' && exit 1",
|
|
105
|
-
"test": "vitest run",
|
|
106
|
-
"test:run": "vitest run",
|
|
105
|
+
"test": "bash scripts/vitest-run.sh run",
|
|
106
|
+
"test:run": "bash scripts/vitest-run.sh run",
|
|
107
107
|
"color": "tsx scripts/color.ts",
|
|
108
108
|
"generate:spec-hash": "tsx scripts/generate-spec-hash.ts",
|
|
109
109
|
"generate:spec-hash:check": "tsx scripts/generate-spec-hash.ts --check",
|
|
@@ -132,10 +132,10 @@
|
|
|
132
132
|
"amphtml-validator": "^1.0.38",
|
|
133
133
|
"culori": "^4.0.2",
|
|
134
134
|
"husky": "^9.1.7",
|
|
135
|
-
"lint-staged": "^17.0
|
|
136
|
-
"markdownlint-cli2": "^0.23.
|
|
135
|
+
"lint-staged": "^17.1.0",
|
|
136
|
+
"markdownlint-cli2": "^0.23.1",
|
|
137
137
|
"openapi-typescript": "^7.13.0",
|
|
138
|
-
"prettier": "^3.9.
|
|
138
|
+
"prettier": "^3.9.6",
|
|
139
139
|
"tsx": "^4.23.1",
|
|
140
140
|
"typescript": "^5.8.3",
|
|
141
141
|
"vitest": "^4.1.10",
|
|
@@ -123,7 +123,6 @@ export const AclListResponseSchema = z.object({
|
|
|
123
123
|
* disables the control rather than rewriting the value.
|
|
124
124
|
*/
|
|
125
125
|
discoverability: EntityDiscoverabilitySchema.optional(),
|
|
126
|
-
editors_can_share: z.boolean(),
|
|
127
126
|
grants: z.array(AclGrantResponseSchema),
|
|
128
127
|
});
|
|
129
128
|
export type AclListResponse = z.infer<typeof AclListResponseSchema>;
|