@standardnotes/releases 1.2.1 → 1.2.2-alpha.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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.2.2-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/releases@1.2.1...@standardnotes/releases@1.2.2-alpha.0) (2022-06-23)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **releases:** types ([#1142](https://github.com/standardnotes/app/issues/1142)) ([9789fc2](https://github.com/standardnotes/app/commit/9789fc2000618f75a303949f61c6515d8625ad98))
11
+
6
12
  ## [1.2.1](https://github.com/standardnotes/app/compare/@standardnotes/releases@1.2.1-alpha.3...@standardnotes/releases@1.2.1) (2022-06-23)
7
13
 
8
14
  **Note:** Version bump only for package @standardnotes/releases
package/dist/index.d.ts CHANGED
@@ -1,19 +1,4 @@
1
- export declare enum Platform {
2
- LinuxAmd64Snap = 0,
3
- LinuxAmd64Deb = 1,
4
- LinuxArm64AppImage = 2,
5
- LinuxArm64Deb = 3,
6
- LinuxI386AppImage = 4,
7
- LinuxI386Deb = 5,
8
- LinuxX86_64AppImage = 6,
9
- MacArm64Dmg = 7,
10
- MacArm64Zip = 8,
11
- MacX64Dmg = 9,
12
- MacX64Zip = 10,
13
- WinIa32Exe = 11,
14
- WinX64Exe = 12,
15
- WinExe = 13
16
- }
1
+ export declare type Platform = 'LinuxAmd64Snap' | 'LinuxAmd64Deb' | 'LinuxArm64AppImage' | 'LinuxArm64Deb' | 'LinuxI386AppImage' | 'LinuxI386Deb' | 'LinuxX86_64AppImage' | 'MacArm64Dmg' | 'MacArm64Zip' | 'MacX64Dmg' | 'MacX64Zip' | 'WinIa32Exe' | 'WinX64Exe' | 'WinExe';
17
2
  export declare type Package = '@standardnotes/mobile' | '@standardnotes/desktop' | '@standardnotes/components-meta' | '@standardnotes/web';
18
3
  export declare type Versions = Record<Package, string>;
19
4
  export declare type Downloads = Record<Platform, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@standardnotes/releases",
3
- "version": "1.2.1",
3
+ "version": "1.2.2-alpha.0",
4
4
  "license": "AGPL-3.0-or-later",
5
5
  "main": "dist/releases.json",
6
6
  "types": "dist/index.d.ts",
@@ -24,5 +24,5 @@
24
24
  "@types/node": "*",
25
25
  "typescript": "*"
26
26
  },
27
- "gitHead": "cb128e5de1917eb30ae08cd0ba8b9281dd9f094f"
27
+ "gitHead": "06d452b57f8c2315e78bf564c6ea2ac0ca3b9f77"
28
28
  }
package/src/index.ts CHANGED
@@ -1,19 +1,18 @@
1
- export enum Platform {
2
- LinuxAmd64Snap,
3
- LinuxAmd64Deb,
4
- LinuxArm64AppImage,
5
- LinuxArm64Deb,
6
- LinuxI386AppImage,
7
- LinuxI386Deb,
8
- LinuxX86_64AppImage,
9
- MacArm64Dmg,
10
- MacArm64Zip,
11
- MacX64Dmg,
12
- MacX64Zip,
13
- WinIa32Exe,
14
- WinX64Exe,
15
- WinExe,
16
- }
1
+ export type Platform =
2
+ | 'LinuxAmd64Snap'
3
+ | 'LinuxAmd64Deb'
4
+ | 'LinuxArm64AppImage'
5
+ | 'LinuxArm64Deb'
6
+ | 'LinuxI386AppImage'
7
+ | 'LinuxI386Deb'
8
+ | 'LinuxX86_64AppImage'
9
+ | 'MacArm64Dmg'
10
+ | 'MacArm64Zip'
11
+ | 'MacX64Dmg'
12
+ | 'MacX64Zip'
13
+ | 'WinIa32Exe'
14
+ | 'WinX64Exe'
15
+ | 'WinExe'
17
16
 
18
17
  export type Package =
19
18
  | '@standardnotes/mobile'