@serve.zone/interfaces 1.0.22 → 1.0.25
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/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/data/cloudlyconfig.d.ts +14 -0
- package/dist_ts/data/cloudlyconfig.js +2 -0
- package/dist_ts/data/cluster.d.ts +1 -5
- package/dist_ts/data/index.d.ts +1 -0
- package/dist_ts/data/index.js +2 -1
- package/package.json +1 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/data/cloudlyconfig.ts +15 -0
- package/ts/data/cluster.ts +0 -5
- package/ts/data/index.ts +1 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/interfaces',
|
|
6
|
-
version: '1.0.
|
|
6
|
+
version: '1.0.25',
|
|
7
7
|
description: 'interfaces for working with containers'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as plugins from '../plugins.js';
|
|
2
|
+
export interface ICloudlyConfig {
|
|
3
|
+
cfToken?: string;
|
|
4
|
+
digitalOceanToken?: string;
|
|
5
|
+
environment?: 'production' | 'integration';
|
|
6
|
+
gitlabUser?: string;
|
|
7
|
+
gitlabToken?: string;
|
|
8
|
+
letsEncryptEmail?: string;
|
|
9
|
+
letsEncryptPrivateKey?: string;
|
|
10
|
+
mongoDescriptor?: plugins.tsclass.database.IMongoDescriptor;
|
|
11
|
+
publicUrl?: string;
|
|
12
|
+
publicPort?: string;
|
|
13
|
+
sslMode?: 'none' | 'letsencrypt' | 'external';
|
|
14
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import * as plugins from '../plugins.js';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xvdWRseWNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3RzL2RhdGEvY2xvdWRseWNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssT0FBTyxNQUFNLGVBQWUsQ0FBQyJ9
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { type IServiceRessources } from '../data/docker.js';
|
|
2
2
|
import type { IServer } from './server.js';
|
|
3
3
|
export interface IClusterIdentifier {
|
|
4
4
|
clusterName: string;
|
|
@@ -30,10 +30,6 @@ export interface ICluster {
|
|
|
30
30
|
serverAddress: string;
|
|
31
31
|
serverSecret: string;
|
|
32
32
|
};
|
|
33
|
-
/**
|
|
34
|
-
* Where to get the images from
|
|
35
|
-
*/
|
|
36
|
-
registryInfo: IDockerRegistryInfo;
|
|
37
33
|
};
|
|
38
34
|
}
|
|
39
35
|
export interface IService {
|
package/dist_ts/data/index.d.ts
CHANGED
package/dist_ts/data/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './cloudlyconfig.js';
|
|
1
2
|
export * from './cluster.js';
|
|
2
3
|
export * from './config.js';
|
|
3
4
|
export * from './docker.js';
|
|
@@ -8,4 +9,4 @@ export * from './server.js';
|
|
|
8
9
|
export * from './status.js';
|
|
9
10
|
export * from './traffic.js';
|
|
10
11
|
export * from './version.js';
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
12
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9kYXRhL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxhQUFhLENBQUE7QUFDM0IsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxjQUFjLENBQUMifQ==
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as plugins from '../plugins.js';
|
|
2
|
+
|
|
3
|
+
export interface ICloudlyConfig {
|
|
4
|
+
cfToken?: string;
|
|
5
|
+
digitalOceanToken?: string;
|
|
6
|
+
environment?: 'production' | 'integration';
|
|
7
|
+
gitlabUser?: string;
|
|
8
|
+
gitlabToken?: string;
|
|
9
|
+
letsEncryptEmail?: string;
|
|
10
|
+
letsEncryptPrivateKey?: string;
|
|
11
|
+
mongoDescriptor?: plugins.tsclass.database.IMongoDescriptor;
|
|
12
|
+
publicUrl?: string;
|
|
13
|
+
publicPort?: string;
|
|
14
|
+
sslMode?: 'none' | 'letsencrypt' | 'external';
|
|
15
|
+
}
|
package/ts/data/cluster.ts
CHANGED
package/ts/data/index.ts
CHANGED