@keeex/projectconfig 6.0.1 → 6.0.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.
- package/lib/index.d.ts +2 -1
- package/lib/index.js +1 -0
- package/lib/services/cli.d.ts +26 -26
- package/lib/services/file.d.ts +26 -26
- package/lib/services/loader.d.ts +26 -26
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
package/lib/services/cli.d.ts
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
2
|
+
* @license
|
|
3
|
+
* @preserve
|
|
4
|
+
*
|
|
5
|
+
* KeeeX SAS Public code
|
|
6
|
+
* https://keeex.me
|
|
7
|
+
* Copyright 2013-2026 KeeeX All Rights Reserved.
|
|
8
|
+
*
|
|
9
|
+
* These computer program listings and specifications, herein,
|
|
10
|
+
* are and remain the property of KeeeX SAS. The intellectual
|
|
11
|
+
* and technical concepts herein are proprietary to KeeeX SAS
|
|
12
|
+
* and may be covered by EU and foreign patents,
|
|
13
|
+
* patents in process, trade secrets and copyright law.
|
|
14
|
+
*
|
|
15
|
+
* These listings are published as a way to provide third party
|
|
16
|
+
* with the ability to process KeeeX data.
|
|
17
|
+
* As such, support for public inquiries is limited.
|
|
18
|
+
* They are provided "as-is", without warrany of any kind.
|
|
19
|
+
*
|
|
20
|
+
* They shall not be reproduced or copied or used in whole or
|
|
21
|
+
* in part as the basis for manufacture or sale of items unless
|
|
22
|
+
* prior written permission is obtained from KeeeX SAS.
|
|
23
|
+
*
|
|
24
|
+
* For a license agreement, please contact:
|
|
25
|
+
* <mailto: contact@keeex.net>
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
28
|
import type * as types from "./types.js";
|
|
29
29
|
import type { JSONObject } from "@keeex/utils/json.js";
|
|
30
30
|
/**
|
package/lib/services/file.d.ts
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
2
|
+
* @license
|
|
3
|
+
* @preserve
|
|
4
|
+
*
|
|
5
|
+
* KeeeX SAS Public code
|
|
6
|
+
* https://keeex.me
|
|
7
|
+
* Copyright 2013-2026 KeeeX All Rights Reserved.
|
|
8
|
+
*
|
|
9
|
+
* These computer program listings and specifications, herein,
|
|
10
|
+
* are and remain the property of KeeeX SAS. The intellectual
|
|
11
|
+
* and technical concepts herein are proprietary to KeeeX SAS
|
|
12
|
+
* and may be covered by EU and foreign patents,
|
|
13
|
+
* patents in process, trade secrets and copyright law.
|
|
14
|
+
*
|
|
15
|
+
* These listings are published as a way to provide third party
|
|
16
|
+
* with the ability to process KeeeX data.
|
|
17
|
+
* As such, support for public inquiries is limited.
|
|
18
|
+
* They are provided "as-is", without warrany of any kind.
|
|
19
|
+
*
|
|
20
|
+
* They shall not be reproduced or copied or used in whole or
|
|
21
|
+
* in part as the basis for manufacture or sale of items unless
|
|
22
|
+
* prior written permission is obtained from KeeeX SAS.
|
|
23
|
+
*
|
|
24
|
+
* For a license agreement, please contact:
|
|
25
|
+
* <mailto: contact@keeex.net>
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
28
|
import type * as envSrv from "./env.js";
|
|
29
29
|
import type * as types from "./types.js";
|
|
30
30
|
import type { JSONObject } from "@keeex/utils/json.js";
|
package/lib/services/loader.d.ts
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
2
|
+
* @license
|
|
3
|
+
* @preserve
|
|
4
|
+
*
|
|
5
|
+
* KeeeX SAS Public code
|
|
6
|
+
* https://keeex.me
|
|
7
|
+
* Copyright 2013-2026 KeeeX All Rights Reserved.
|
|
8
|
+
*
|
|
9
|
+
* These computer program listings and specifications, herein,
|
|
10
|
+
* are and remain the property of KeeeX SAS. The intellectual
|
|
11
|
+
* and technical concepts herein are proprietary to KeeeX SAS
|
|
12
|
+
* and may be covered by EU and foreign patents,
|
|
13
|
+
* patents in process, trade secrets and copyright law.
|
|
14
|
+
*
|
|
15
|
+
* These listings are published as a way to provide third party
|
|
16
|
+
* with the ability to process KeeeX data.
|
|
17
|
+
* As such, support for public inquiries is limited.
|
|
18
|
+
* They are provided "as-is", without warrany of any kind.
|
|
19
|
+
*
|
|
20
|
+
* They shall not be reproduced or copied or used in whole or
|
|
21
|
+
* in part as the basis for manufacture or sale of items unless
|
|
22
|
+
* prior written permission is obtained from KeeeX SAS.
|
|
23
|
+
*
|
|
24
|
+
* For a license agreement, please contact:
|
|
25
|
+
* <mailto: contact@keeex.net>
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
28
|
import * as envSrv from "./env.js";
|
|
29
29
|
import * as types from "./types.js";
|
|
30
30
|
/**
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@keeex/projectconfig","version":"6.0.
|
|
1
|
+
{"name":"@keeex/projectconfig","version":"6.0.2","description":"Load project configuration with separate secrets","main":"./lib/index.js","scripts":{},"type":"module","author":"KeeeX SAS","contributors":[{"email":"gabriel@keeex.net","name":"Gabriel Paul \"Cley Faye\" Risterucci"}],"license":"SEE LICENSE IN LICENSE","files":["lib"],"exports":{".":"./lib/index.js","./index.js":"./lib/index.js"},"dependencies":{"@keeex/utils":"^7.6.2","@keeex/utils-node":"^6.8.2"},"homepage":"https://keeex.me/oss"}
|