@todesktop/shared 7.194.0 → 7.195.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 +7 -0
- package/lib/cjs/plugin.d.ts +5 -0
- package/lib/esm/plugin.d.ts +5 -0
- package/package.json +1 -1
- package/src/plugin.ts +6 -0
- package/vitest.config.ts +8 -0
package/CHANGELOG.md
CHANGED
package/lib/cjs/plugin.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
type AjvJSONSchemaType = object;
|
|
2
2
|
export interface DesktopAppPlugin {
|
|
3
|
+
/**
|
|
4
|
+
* Specifies if the plugin requires authentication to npm for installation.
|
|
5
|
+
* If true, the npm token will be retrieved from Azure KeyVault during the build.
|
|
6
|
+
*/
|
|
7
|
+
npmAuthRequired?: boolean;
|
|
3
8
|
/**
|
|
4
9
|
* Package name, including version information.
|
|
5
10
|
* e.g. "@todesktop/plugin-foo", "@todesktop/plugin-baz@1.0.0"
|
package/lib/esm/plugin.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
type AjvJSONSchemaType = object;
|
|
2
2
|
export interface DesktopAppPlugin {
|
|
3
|
+
/**
|
|
4
|
+
* Specifies if the plugin requires authentication to npm for installation.
|
|
5
|
+
* If true, the npm token will be retrieved from Azure KeyVault during the build.
|
|
6
|
+
*/
|
|
7
|
+
npmAuthRequired?: boolean;
|
|
3
8
|
/**
|
|
4
9
|
* Package name, including version information.
|
|
5
10
|
* e.g. "@todesktop/plugin-foo", "@todesktop/plugin-baz@1.0.0"
|
package/package.json
CHANGED
package/src/plugin.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
type AjvJSONSchemaType = object;
|
|
2
2
|
export interface DesktopAppPlugin {
|
|
3
|
+
/**
|
|
4
|
+
* Specifies if the plugin requires authentication to npm for installation.
|
|
5
|
+
* If true, the npm token will be retrieved from Azure KeyVault during the build.
|
|
6
|
+
*/
|
|
7
|
+
npmAuthRequired?: boolean;
|
|
8
|
+
|
|
3
9
|
/**
|
|
4
10
|
* Package name, including version information.
|
|
5
11
|
* e.g. "@todesktop/plugin-foo", "@todesktop/plugin-baz@1.0.0"
|