@serve.zone/interfaces 4.5.1 → 4.5.2
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.
|
@@ -6,6 +6,17 @@ export interface ISecretBundle {
|
|
|
6
6
|
/**
|
|
7
7
|
* determines if the secret is a service or an external secret
|
|
8
8
|
* if external secret additional checks are put in place to protect the secret
|
|
9
|
+
*
|
|
10
|
+
* * service:
|
|
11
|
+
* the bundle belongs to a service and can only be used by that service
|
|
12
|
+
* * npmci:
|
|
13
|
+
* the bundle is a secret bundle that is used by an npmci pipeline
|
|
14
|
+
* production secrets will be omitted in any case
|
|
15
|
+
* * gitzone:
|
|
16
|
+
* the bundle is a secret bundle that is used by a gitzone.
|
|
17
|
+
* Only local environment variables are allowed
|
|
18
|
+
* * external:
|
|
19
|
+
* the bundle is a secret bundle that is used by an external service
|
|
9
20
|
*/
|
|
10
21
|
type: 'service' | 'npmci' | 'gitzone' | 'external';
|
|
11
22
|
/**
|
package/package.json
CHANGED
|
@@ -7,6 +7,17 @@ export interface ISecretBundle {
|
|
|
7
7
|
/**
|
|
8
8
|
* determines if the secret is a service or an external secret
|
|
9
9
|
* if external secret additional checks are put in place to protect the secret
|
|
10
|
+
*
|
|
11
|
+
* * service:
|
|
12
|
+
* the bundle belongs to a service and can only be used by that service
|
|
13
|
+
* * npmci:
|
|
14
|
+
* the bundle is a secret bundle that is used by an npmci pipeline
|
|
15
|
+
* production secrets will be omitted in any case
|
|
16
|
+
* * gitzone:
|
|
17
|
+
* the bundle is a secret bundle that is used by a gitzone.
|
|
18
|
+
* Only local environment variables are allowed
|
|
19
|
+
* * external:
|
|
20
|
+
* the bundle is a secret bundle that is used by an external service
|
|
10
21
|
*/
|
|
11
22
|
type: 'service' | 'npmci' | 'gitzone' | 'external';
|
|
12
23
|
|