@serve.zone/interfaces 4.5.0 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "4.5.0",
3
+ "version": "4.5.2",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "exports": {
@@ -11,7 +11,7 @@
11
11
  "dependencies": {
12
12
  "@api.global/typedrequest-interfaces": "^3.0.19",
13
13
  "@push.rocks/smartlog-interfaces": "^3.0.2",
14
- "@tsclass/tsclass": "^4.1.2"
14
+ "@tsclass/tsclass": "^4.2.0"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@git.zone/tsbuild": "2.1.67"
@@ -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