@serve.zone/interfaces 1.0.22 → 1.0.24

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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '1.0.22',
6
+ version: '1.0.24',
7
7
  description: 'interfaces for working with containers'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
@@ -1,4 +1,4 @@
1
- import { type IDockerRegistryInfo, type IServiceRessources } from '../data/docker.js';
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "private": false,
5
5
  "description": "interfaces for working with containers",
6
6
  "main": "dist_ts/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '1.0.22',
6
+ version: '1.0.24',
7
7
  description: 'interfaces for working with containers'
8
8
  }
@@ -36,11 +36,6 @@ export interface ICluster {
36
36
  serverAddress: string;
37
37
  serverSecret: string;
38
38
  };
39
-
40
- /**
41
- * Where to get the images from
42
- */
43
- registryInfo: IDockerRegistryInfo;
44
39
  };
45
40
  }
46
41