@qrush/types 2.1.19 → 2.1.20

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/README.md CHANGED
@@ -103,6 +103,12 @@ git tag v1.0.1
103
103
  git push origin v1.0.1
104
104
  ```
105
105
 
106
+ or use the release script (chmod +x release.sh once and then ./release.sh)
107
+
108
+ ```bash
109
+ ./release.sh
110
+ ```
111
+
106
112
  ### Manual Publishing
107
113
 
108
114
  1. Go to the GitHub repository
package/dist/Events.d.ts CHANGED
@@ -15,7 +15,7 @@ export interface IFireEvent {
15
15
  */
16
16
  description?: string;
17
17
  descriptionMarkdown?: string | undefined;
18
- descriptionPrimaryLang?: SupportedLanguage;
18
+ primaryLang?: SupportedLanguage;
19
19
  descriptionTranslations?: TranslationMap;
20
20
  imageURI: string;
21
21
  mapsImageURI?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.19",
3
+ "version": "2.1.20",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",