@company-semantics/contracts 36.0.0 → 37.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 +2 -4
- package/src/notifications/__tests__/__snapshots__/render-snapshot.test.ts.snap +0 -1965
- package/src/notifications/content.ts +5 -4
- package/src/notifications/renderers/email/README.md +45 -47
- package/src/notifications/renderers/email/__tests__/styles.test.ts +5 -5
- package/src/notifications/renderers/email/chat.ts +5 -4
- package/src/notifications/renderers/email/colors.ts +25 -22
- package/src/notifications/renderers/email/cta.ts +6 -8
- package/src/notifications/renderers/email/index.ts +10 -13
- package/src/notifications/renderers/email/render.ts +2 -4
- package/src/notifications/renderers/email/shells.ts +15 -78
- package/src/notifications/renderers/email/styles.ts +10 -52
- package/src/notifications/renderers/email/__tests__/amp.test.ts +0 -217
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@company-semantics/contracts",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "37.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -116,8 +116,7 @@
|
|
|
116
116
|
"repo-map": "tsx ../company-semantics-ci/scripts/generate-repo-map.ts --roots src --name company-semantics-contracts --write",
|
|
117
117
|
"repo-map:check": "tsx ../company-semantics-ci/scripts/generate-repo-map.ts --roots src --name company-semantics-contracts --check",
|
|
118
118
|
"readme-api": "tsx ../company-semantics-ci/scripts/generate-readme-api.ts --roots src --write --jsdoc",
|
|
119
|
-
"readme-api:check": "tsx ../company-semantics-ci/scripts/generate-readme-api.ts --roots src --check --jsdoc"
|
|
120
|
-
"validate:amp": "tsx scripts/validate-amp.ts"
|
|
119
|
+
"readme-api:check": "tsx ../company-semantics-ci/scripts/generate-readme-api.ts --roots src --check --jsdoc"
|
|
121
120
|
},
|
|
122
121
|
"packageManager": "pnpm@10.25.0",
|
|
123
122
|
"engines": {
|
|
@@ -129,7 +128,6 @@
|
|
|
129
128
|
},
|
|
130
129
|
"devDependencies": {
|
|
131
130
|
"@types/node": "^22.20.1",
|
|
132
|
-
"amphtml-validator": "^1.0.38",
|
|
133
131
|
"culori": "^4.0.2",
|
|
134
132
|
"husky": "^9.1.7",
|
|
135
133
|
"lint-staged": "^17.0.8",
|