the-moby-effect 1.45.0-alpha.11 → 1.45.0-alpha.12
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/Endpoints/package.json +6 -0
- package/dist/cjs/Endpoints.js +188 -0
- package/dist/cjs/Endpoints.js.map +1 -0
- package/dist/cjs/index.js +3 -1
- package/dist/dts/Endpoints.d.ts +160 -0
- package/dist/dts/Endpoints.d.ts.map +1 -0
- package/dist/dts/index.d.ts +6 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/Endpoints.js +160 -0
- package/dist/esm/Endpoints.js.map +1 -0
- package/dist/esm/index.js +6 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +9 -1
- package/src/Endpoints.ts +187 -0
- package/src/index.ts +7 -0
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Configs", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _Configs.Configs;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "ConfigsError", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _Configs.ConfigsError;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "Containers", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () {
|
|
21
|
+
return _Containers.Containers;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "ContainersError", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () {
|
|
27
|
+
return _Containers.ContainersError;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "Distributions", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function () {
|
|
33
|
+
return _Distribution.Distributions;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "DistributionsError", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function () {
|
|
39
|
+
return _Distribution.DistributionsError;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, "Execs", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function () {
|
|
45
|
+
return _Execs.Execs;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(exports, "ExecsError", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () {
|
|
51
|
+
return _Execs.ExecsError;
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
Object.defineProperty(exports, "Images", {
|
|
55
|
+
enumerable: true,
|
|
56
|
+
get: function () {
|
|
57
|
+
return _Images.Images;
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
Object.defineProperty(exports, "ImagesError", {
|
|
61
|
+
enumerable: true,
|
|
62
|
+
get: function () {
|
|
63
|
+
return _Images.ImagesError;
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
Object.defineProperty(exports, "Networks", {
|
|
67
|
+
enumerable: true,
|
|
68
|
+
get: function () {
|
|
69
|
+
return _Networks.Networks;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
Object.defineProperty(exports, "NetworksError", {
|
|
73
|
+
enumerable: true,
|
|
74
|
+
get: function () {
|
|
75
|
+
return _Networks.NetworksError;
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
Object.defineProperty(exports, "Nodes", {
|
|
79
|
+
enumerable: true,
|
|
80
|
+
get: function () {
|
|
81
|
+
return _Nodes.Nodes;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
Object.defineProperty(exports, "NodesError", {
|
|
85
|
+
enumerable: true,
|
|
86
|
+
get: function () {
|
|
87
|
+
return _Nodes.NodesError;
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
Object.defineProperty(exports, "Plugins", {
|
|
91
|
+
enumerable: true,
|
|
92
|
+
get: function () {
|
|
93
|
+
return _Plugins.Plugins;
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
Object.defineProperty(exports, "PluginsError", {
|
|
97
|
+
enumerable: true,
|
|
98
|
+
get: function () {
|
|
99
|
+
return _Plugins.PluginsError;
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
Object.defineProperty(exports, "Secrets", {
|
|
103
|
+
enumerable: true,
|
|
104
|
+
get: function () {
|
|
105
|
+
return _Secrets.Secrets;
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
Object.defineProperty(exports, "SecretsError", {
|
|
109
|
+
enumerable: true,
|
|
110
|
+
get: function () {
|
|
111
|
+
return _Secrets.SecretsError;
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
Object.defineProperty(exports, "Services", {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
get: function () {
|
|
117
|
+
return _Services.Services;
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
Object.defineProperty(exports, "ServicesError", {
|
|
121
|
+
enumerable: true,
|
|
122
|
+
get: function () {
|
|
123
|
+
return _Services.ServicesError;
|
|
124
|
+
}
|
|
125
|
+
});
|
|
126
|
+
Object.defineProperty(exports, "Swarm", {
|
|
127
|
+
enumerable: true,
|
|
128
|
+
get: function () {
|
|
129
|
+
return _Swarm.Swarm;
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
Object.defineProperty(exports, "SwarmsError", {
|
|
133
|
+
enumerable: true,
|
|
134
|
+
get: function () {
|
|
135
|
+
return _Swarm.SwarmsError;
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
Object.defineProperty(exports, "Systems", {
|
|
139
|
+
enumerable: true,
|
|
140
|
+
get: function () {
|
|
141
|
+
return _System.Systems;
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
Object.defineProperty(exports, "SystemsError", {
|
|
145
|
+
enumerable: true,
|
|
146
|
+
get: function () {
|
|
147
|
+
return _System.SystemsError;
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
Object.defineProperty(exports, "Tasks", {
|
|
151
|
+
enumerable: true,
|
|
152
|
+
get: function () {
|
|
153
|
+
return _Tasks.Tasks;
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
Object.defineProperty(exports, "TasksError", {
|
|
157
|
+
enumerable: true,
|
|
158
|
+
get: function () {
|
|
159
|
+
return _Tasks.TasksError;
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
Object.defineProperty(exports, "Volumes", {
|
|
163
|
+
enumerable: true,
|
|
164
|
+
get: function () {
|
|
165
|
+
return _Volumes.Volumes;
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
Object.defineProperty(exports, "VolumesError", {
|
|
169
|
+
enumerable: true,
|
|
170
|
+
get: function () {
|
|
171
|
+
return _Volumes.VolumesError;
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
var _Configs = require("./endpoints/Configs.js");
|
|
175
|
+
var _Containers = require("./endpoints/Containers.js");
|
|
176
|
+
var _Distribution = require("./endpoints/Distribution.js");
|
|
177
|
+
var _Execs = require("./endpoints/Execs.js");
|
|
178
|
+
var _Images = require("./endpoints/Images.js");
|
|
179
|
+
var _Networks = require("./endpoints/Networks.js");
|
|
180
|
+
var _Nodes = require("./endpoints/Nodes.js");
|
|
181
|
+
var _Plugins = require("./endpoints/Plugins.js");
|
|
182
|
+
var _Secrets = require("./endpoints/Secrets.js");
|
|
183
|
+
var _Services = require("./endpoints/Services.js");
|
|
184
|
+
var _Swarm = require("./endpoints/Swarm.js");
|
|
185
|
+
var _System = require("./endpoints/System.js");
|
|
186
|
+
var _Tasks = require("./endpoints/Tasks.js");
|
|
187
|
+
var _Volumes = require("./endpoints/Volumes.js");
|
|
188
|
+
//# sourceMappingURL=Endpoints.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Endpoints.js","names":["_Configs","require","_Containers","_Distribution","_Execs","_Images","_Networks","_Nodes","_Plugins","_Secrets","_Services","_Swarm","_System","_Tasks","_Volumes"],"sources":["../../src/Endpoints.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,IAAAA,QAAA,GAAAC,OAAA;AAaA,IAAAC,WAAA,GAAAD,OAAA;AAaA,IAAAE,aAAA,GAAAF,OAAA;AAaA,IAAAG,MAAA,GAAAH,OAAA;AAaA,IAAAI,OAAA,GAAAJ,OAAA;AAaA,IAAAK,SAAA,GAAAL,OAAA;AAaA,IAAAM,MAAA,GAAAN,OAAA;AAaA,IAAAO,QAAA,GAAAP,OAAA;AAaA,IAAAQ,QAAA,GAAAR,OAAA;AAaA,IAAAS,SAAA,GAAAT,OAAA;AAaA,IAAAU,MAAA,GAAAV,OAAA;AAaA,IAAAW,OAAA,GAAAX,OAAA;AAaA,IAAAY,MAAA,GAAAZ,OAAA;AAaA,IAAAa,QAAA,GAAAb,OAAA","ignoreList":[]}
|
package/dist/cjs/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.Schemas = exports.PodmanEngine = exports.Platforms = exports.DockerEngine = exports.Demux = exports.Convey = exports.Connection = void 0;
|
|
6
|
+
exports.Schemas = exports.PodmanEngine = exports.Platforms = exports.Endpoints = exports.DockerEngine = exports.Demux = exports.Convey = exports.Connection = void 0;
|
|
7
7
|
var _Connection = _interopRequireWildcard(require("./Connection.js"));
|
|
8
8
|
exports.Connection = _Connection;
|
|
9
9
|
var _Convey = _interopRequireWildcard(require("./Convey.js"));
|
|
@@ -12,6 +12,8 @@ var _Demux = _interopRequireWildcard(require("./Demux.js"));
|
|
|
12
12
|
exports.Demux = _Demux;
|
|
13
13
|
var _DockerEngine = _interopRequireWildcard(require("./DockerEngine.js"));
|
|
14
14
|
exports.DockerEngine = _DockerEngine;
|
|
15
|
+
var _Endpoints = _interopRequireWildcard(require("./Endpoints.js"));
|
|
16
|
+
exports.Endpoints = _Endpoints;
|
|
15
17
|
var _Platforms = _interopRequireWildcard(require("./Platforms.js"));
|
|
16
18
|
exports.Platforms = _Platforms;
|
|
17
19
|
var _PodmanEngine = _interopRequireWildcard(require("./PodmanEngine.js"));
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Moby endpoints.
|
|
3
|
+
*
|
|
4
|
+
* @since 1.0.0
|
|
5
|
+
*/
|
|
6
|
+
export {
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category Endpoints
|
|
10
|
+
*/
|
|
11
|
+
Configs,
|
|
12
|
+
/**
|
|
13
|
+
* @since 1.0.0
|
|
14
|
+
* @category Endpoints
|
|
15
|
+
*/
|
|
16
|
+
ConfigsError, } from "./endpoints/Configs.js";
|
|
17
|
+
export {
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category Endpoints
|
|
21
|
+
*/
|
|
22
|
+
Containers,
|
|
23
|
+
/**
|
|
24
|
+
* @since 1.0.0
|
|
25
|
+
* @category Endpoints
|
|
26
|
+
*/
|
|
27
|
+
ContainersError, } from "./endpoints/Containers.js";
|
|
28
|
+
export {
|
|
29
|
+
/**
|
|
30
|
+
* @since 1.0.0
|
|
31
|
+
* @category Endpoints
|
|
32
|
+
*/
|
|
33
|
+
Distributions,
|
|
34
|
+
/**
|
|
35
|
+
* @since 1.0.0
|
|
36
|
+
* @category Endpoints
|
|
37
|
+
*/
|
|
38
|
+
DistributionsError, } from "./endpoints/Distribution.js";
|
|
39
|
+
export {
|
|
40
|
+
/**
|
|
41
|
+
* @since 1.0.0
|
|
42
|
+
* @category Endpoints
|
|
43
|
+
*/
|
|
44
|
+
Execs,
|
|
45
|
+
/**
|
|
46
|
+
* @since 1.0.0
|
|
47
|
+
* @category Endpoints
|
|
48
|
+
*/
|
|
49
|
+
ExecsError, } from "./endpoints/Execs.js";
|
|
50
|
+
export {
|
|
51
|
+
/**
|
|
52
|
+
* @since 1.0.0
|
|
53
|
+
* @category Endpoints
|
|
54
|
+
*/
|
|
55
|
+
Images,
|
|
56
|
+
/**
|
|
57
|
+
* @since 1.0.0
|
|
58
|
+
* @category Endpoints
|
|
59
|
+
*/
|
|
60
|
+
ImagesError, } from "./endpoints/Images.js";
|
|
61
|
+
export {
|
|
62
|
+
/**
|
|
63
|
+
* @since 1.0.0
|
|
64
|
+
* @category Endpoints
|
|
65
|
+
*/
|
|
66
|
+
Networks,
|
|
67
|
+
/**
|
|
68
|
+
* @since 1.0.0
|
|
69
|
+
* @category Endpoints
|
|
70
|
+
*/
|
|
71
|
+
NetworksError, } from "./endpoints/Networks.js";
|
|
72
|
+
export {
|
|
73
|
+
/**
|
|
74
|
+
* @since 1.0.0
|
|
75
|
+
* @category Endpoints
|
|
76
|
+
*/
|
|
77
|
+
Nodes,
|
|
78
|
+
/**
|
|
79
|
+
* @since 1.0.0
|
|
80
|
+
* @category Endpoints
|
|
81
|
+
*/
|
|
82
|
+
NodesError, } from "./endpoints/Nodes.js";
|
|
83
|
+
export {
|
|
84
|
+
/**
|
|
85
|
+
* @since 1.0.0
|
|
86
|
+
* @category Endpoints
|
|
87
|
+
*/
|
|
88
|
+
Plugins,
|
|
89
|
+
/**
|
|
90
|
+
* @since 1.0.0
|
|
91
|
+
* @category Endpoints
|
|
92
|
+
*/
|
|
93
|
+
PluginsError, } from "./endpoints/Plugins.js";
|
|
94
|
+
export {
|
|
95
|
+
/**
|
|
96
|
+
* @since 1.0.0
|
|
97
|
+
* @category Endpoints
|
|
98
|
+
*/
|
|
99
|
+
Secrets,
|
|
100
|
+
/**
|
|
101
|
+
* @since 1.0.0
|
|
102
|
+
* @category Endpoints
|
|
103
|
+
*/
|
|
104
|
+
SecretsError, } from "./endpoints/Secrets.js";
|
|
105
|
+
export {
|
|
106
|
+
/**
|
|
107
|
+
* @since 1.0.0
|
|
108
|
+
* @category Endpoints
|
|
109
|
+
*/
|
|
110
|
+
Services,
|
|
111
|
+
/**
|
|
112
|
+
* @since 1.0.0
|
|
113
|
+
* @category Endpoints
|
|
114
|
+
*/
|
|
115
|
+
ServicesError, } from "./endpoints/Services.js";
|
|
116
|
+
export {
|
|
117
|
+
/**
|
|
118
|
+
* @since 1.0.0
|
|
119
|
+
* @category Endpoints
|
|
120
|
+
*/
|
|
121
|
+
Swarm,
|
|
122
|
+
/**
|
|
123
|
+
* @since 1.0.0
|
|
124
|
+
* @category Endpoints
|
|
125
|
+
*/
|
|
126
|
+
SwarmsError, } from "./endpoints/Swarm.js";
|
|
127
|
+
export {
|
|
128
|
+
/**
|
|
129
|
+
* @since 1.0.0
|
|
130
|
+
* @category Endpoints
|
|
131
|
+
*/
|
|
132
|
+
Systems,
|
|
133
|
+
/**
|
|
134
|
+
* @since 1.0.0
|
|
135
|
+
* @category Endpoints
|
|
136
|
+
*/
|
|
137
|
+
SystemsError, } from "./endpoints/System.js";
|
|
138
|
+
export {
|
|
139
|
+
/**
|
|
140
|
+
* @since 1.0.0
|
|
141
|
+
* @category Endpoints
|
|
142
|
+
*/
|
|
143
|
+
Tasks,
|
|
144
|
+
/**
|
|
145
|
+
* @since 1.0.0
|
|
146
|
+
* @category Endpoints
|
|
147
|
+
*/
|
|
148
|
+
TasksError, } from "./endpoints/Tasks.js";
|
|
149
|
+
export {
|
|
150
|
+
/**
|
|
151
|
+
* @since 1.0.0
|
|
152
|
+
* @category Endpoints
|
|
153
|
+
*/
|
|
154
|
+
Volumes,
|
|
155
|
+
/**
|
|
156
|
+
* @since 1.0.0
|
|
157
|
+
* @category Endpoints
|
|
158
|
+
*/
|
|
159
|
+
VolumesError, } from "./endpoints/Volumes.js";
|
|
160
|
+
//# sourceMappingURL=Endpoints.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Endpoints.d.ts","sourceRoot":"","sources":["../../src/Endpoints.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO;AACH;;;GAGG;AACH,OAAO;AACP;;;GAGG;AACH,YAAY,GACf,MAAM,wBAAwB,CAAC;AAEhC,OAAO;AACH;;;GAGG;AACH,UAAU;AACV;;;GAGG;AACH,eAAe,GAClB,MAAM,2BAA2B,CAAC;AAEnC,OAAO;AACH;;;GAGG;AACH,aAAa;AACb;;;GAGG;AACH,kBAAkB,GACrB,MAAM,6BAA6B,CAAC;AAErC,OAAO;AACH;;;GAGG;AACH,KAAK;AACL;;;GAGG;AACH,UAAU,GACb,MAAM,sBAAsB,CAAC;AAE9B,OAAO;AACH;;;GAGG;AACH,MAAM;AACN;;;GAGG;AACH,WAAW,GACd,MAAM,uBAAuB,CAAC;AAE/B,OAAO;AACH;;;GAGG;AACH,QAAQ;AACR;;;GAGG;AACH,aAAa,GAChB,MAAM,yBAAyB,CAAC;AAEjC,OAAO;AACH;;;GAGG;AACH,KAAK;AACL;;;GAGG;AACH,UAAU,GACb,MAAM,sBAAsB,CAAC;AAE9B,OAAO;AACH;;;GAGG;AACH,OAAO;AACP;;;GAGG;AACH,YAAY,GACf,MAAM,wBAAwB,CAAC;AAEhC,OAAO;AACH;;;GAGG;AACH,OAAO;AACP;;;GAGG;AACH,YAAY,GACf,MAAM,wBAAwB,CAAC;AAEhC,OAAO;AACH;;;GAGG;AACH,QAAQ;AACR;;;GAGG;AACH,aAAa,GAChB,MAAM,yBAAyB,CAAC;AAEjC,OAAO;AACH;;;GAGG;AACH,KAAK;AACL;;;GAGG;AACH,WAAW,GACd,MAAM,sBAAsB,CAAC;AAE9B,OAAO;AACH;;;GAGG;AACH,OAAO;AACP;;;GAGG;AACH,YAAY,GACf,MAAM,uBAAuB,CAAC;AAE/B,OAAO;AACH;;;GAGG;AACH,KAAK;AACL;;;GAGG;AACH,UAAU,GACb,MAAM,sBAAsB,CAAC;AAE9B,OAAO;AACH;;;GAGG;AACH,OAAO;AACP;;;GAGG;AACH,YAAY,GACf,MAAM,wBAAwB,CAAC"}
|
package/dist/dts/index.d.ts
CHANGED
|
@@ -22,6 +22,12 @@ export * as Demux from "./Demux.js";
|
|
|
22
22
|
* @since 1.0.0
|
|
23
23
|
*/
|
|
24
24
|
export * as DockerEngine from "./DockerEngine.js";
|
|
25
|
+
/**
|
|
26
|
+
* Moby endpoints.
|
|
27
|
+
*
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
export * as Endpoints from "./Endpoints.js";
|
|
25
31
|
/**
|
|
26
32
|
* Http, https, ssh, and unix socket connection agents for all platforms.
|
|
27
33
|
*
|
package/dist/dts/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,UAAU,MAAM,iBAAiB,CAAA;AAE7C;;;;GAIG;AACH,OAAO,KAAK,MAAM,MAAM,aAAa,CAAA;AAErC;;;;GAIG;AACH,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA;AAEnC;;;;GAIG;AACH,OAAO,KAAK,YAAY,MAAM,mBAAmB,CAAA;AAEjD;;;;GAIG;AACH,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAA;AAE3C;;;;GAIG;AACH,OAAO,KAAK,YAAY,MAAM,mBAAmB,CAAA;AAEjD;;;;GAIG;AACH,OAAO,KAAK,OAAO,MAAM,cAAc,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,UAAU,MAAM,iBAAiB,CAAA;AAE7C;;;;GAIG;AACH,OAAO,KAAK,MAAM,MAAM,aAAa,CAAA;AAErC;;;;GAIG;AACH,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA;AAEnC;;;;GAIG;AACH,OAAO,KAAK,YAAY,MAAM,mBAAmB,CAAA;AAEjD;;;;GAIG;AACH,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAA;AAE3C;;;;GAIG;AACH,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAA;AAE3C;;;;GAIG;AACH,OAAO,KAAK,YAAY,MAAM,mBAAmB,CAAA;AAEjD;;;;GAIG;AACH,OAAO,KAAK,OAAO,MAAM,cAAc,CAAA"}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Moby endpoints.
|
|
3
|
+
*
|
|
4
|
+
* @since 1.0.0
|
|
5
|
+
*/
|
|
6
|
+
export {
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category Endpoints
|
|
10
|
+
*/
|
|
11
|
+
Configs,
|
|
12
|
+
/**
|
|
13
|
+
* @since 1.0.0
|
|
14
|
+
* @category Endpoints
|
|
15
|
+
*/
|
|
16
|
+
ConfigsError } from "./endpoints/Configs.js";
|
|
17
|
+
export {
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category Endpoints
|
|
21
|
+
*/
|
|
22
|
+
Containers,
|
|
23
|
+
/**
|
|
24
|
+
* @since 1.0.0
|
|
25
|
+
* @category Endpoints
|
|
26
|
+
*/
|
|
27
|
+
ContainersError } from "./endpoints/Containers.js";
|
|
28
|
+
export {
|
|
29
|
+
/**
|
|
30
|
+
* @since 1.0.0
|
|
31
|
+
* @category Endpoints
|
|
32
|
+
*/
|
|
33
|
+
Distributions,
|
|
34
|
+
/**
|
|
35
|
+
* @since 1.0.0
|
|
36
|
+
* @category Endpoints
|
|
37
|
+
*/
|
|
38
|
+
DistributionsError } from "./endpoints/Distribution.js";
|
|
39
|
+
export {
|
|
40
|
+
/**
|
|
41
|
+
* @since 1.0.0
|
|
42
|
+
* @category Endpoints
|
|
43
|
+
*/
|
|
44
|
+
Execs,
|
|
45
|
+
/**
|
|
46
|
+
* @since 1.0.0
|
|
47
|
+
* @category Endpoints
|
|
48
|
+
*/
|
|
49
|
+
ExecsError } from "./endpoints/Execs.js";
|
|
50
|
+
export {
|
|
51
|
+
/**
|
|
52
|
+
* @since 1.0.0
|
|
53
|
+
* @category Endpoints
|
|
54
|
+
*/
|
|
55
|
+
Images,
|
|
56
|
+
/**
|
|
57
|
+
* @since 1.0.0
|
|
58
|
+
* @category Endpoints
|
|
59
|
+
*/
|
|
60
|
+
ImagesError } from "./endpoints/Images.js";
|
|
61
|
+
export {
|
|
62
|
+
/**
|
|
63
|
+
* @since 1.0.0
|
|
64
|
+
* @category Endpoints
|
|
65
|
+
*/
|
|
66
|
+
Networks,
|
|
67
|
+
/**
|
|
68
|
+
* @since 1.0.0
|
|
69
|
+
* @category Endpoints
|
|
70
|
+
*/
|
|
71
|
+
NetworksError } from "./endpoints/Networks.js";
|
|
72
|
+
export {
|
|
73
|
+
/**
|
|
74
|
+
* @since 1.0.0
|
|
75
|
+
* @category Endpoints
|
|
76
|
+
*/
|
|
77
|
+
Nodes,
|
|
78
|
+
/**
|
|
79
|
+
* @since 1.0.0
|
|
80
|
+
* @category Endpoints
|
|
81
|
+
*/
|
|
82
|
+
NodesError } from "./endpoints/Nodes.js";
|
|
83
|
+
export {
|
|
84
|
+
/**
|
|
85
|
+
* @since 1.0.0
|
|
86
|
+
* @category Endpoints
|
|
87
|
+
*/
|
|
88
|
+
Plugins,
|
|
89
|
+
/**
|
|
90
|
+
* @since 1.0.0
|
|
91
|
+
* @category Endpoints
|
|
92
|
+
*/
|
|
93
|
+
PluginsError } from "./endpoints/Plugins.js";
|
|
94
|
+
export {
|
|
95
|
+
/**
|
|
96
|
+
* @since 1.0.0
|
|
97
|
+
* @category Endpoints
|
|
98
|
+
*/
|
|
99
|
+
Secrets,
|
|
100
|
+
/**
|
|
101
|
+
* @since 1.0.0
|
|
102
|
+
* @category Endpoints
|
|
103
|
+
*/
|
|
104
|
+
SecretsError } from "./endpoints/Secrets.js";
|
|
105
|
+
export {
|
|
106
|
+
/**
|
|
107
|
+
* @since 1.0.0
|
|
108
|
+
* @category Endpoints
|
|
109
|
+
*/
|
|
110
|
+
Services,
|
|
111
|
+
/**
|
|
112
|
+
* @since 1.0.0
|
|
113
|
+
* @category Endpoints
|
|
114
|
+
*/
|
|
115
|
+
ServicesError } from "./endpoints/Services.js";
|
|
116
|
+
export {
|
|
117
|
+
/**
|
|
118
|
+
* @since 1.0.0
|
|
119
|
+
* @category Endpoints
|
|
120
|
+
*/
|
|
121
|
+
Swarm,
|
|
122
|
+
/**
|
|
123
|
+
* @since 1.0.0
|
|
124
|
+
* @category Endpoints
|
|
125
|
+
*/
|
|
126
|
+
SwarmsError } from "./endpoints/Swarm.js";
|
|
127
|
+
export {
|
|
128
|
+
/**
|
|
129
|
+
* @since 1.0.0
|
|
130
|
+
* @category Endpoints
|
|
131
|
+
*/
|
|
132
|
+
Systems,
|
|
133
|
+
/**
|
|
134
|
+
* @since 1.0.0
|
|
135
|
+
* @category Endpoints
|
|
136
|
+
*/
|
|
137
|
+
SystemsError } from "./endpoints/System.js";
|
|
138
|
+
export {
|
|
139
|
+
/**
|
|
140
|
+
* @since 1.0.0
|
|
141
|
+
* @category Endpoints
|
|
142
|
+
*/
|
|
143
|
+
Tasks,
|
|
144
|
+
/**
|
|
145
|
+
* @since 1.0.0
|
|
146
|
+
* @category Endpoints
|
|
147
|
+
*/
|
|
148
|
+
TasksError } from "./endpoints/Tasks.js";
|
|
149
|
+
export {
|
|
150
|
+
/**
|
|
151
|
+
* @since 1.0.0
|
|
152
|
+
* @category Endpoints
|
|
153
|
+
*/
|
|
154
|
+
Volumes,
|
|
155
|
+
/**
|
|
156
|
+
* @since 1.0.0
|
|
157
|
+
* @category Endpoints
|
|
158
|
+
*/
|
|
159
|
+
VolumesError } from "./endpoints/Volumes.js";
|
|
160
|
+
//# sourceMappingURL=Endpoints.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Endpoints.js","names":["Configs","ConfigsError","Containers","ContainersError","Distributions","DistributionsError","Execs","ExecsError","Images","ImagesError","Networks","NetworksError","Nodes","NodesError","Plugins","PluginsError","Secrets","SecretsError","Services","ServicesError","Swarm","SwarmsError","Systems","SystemsError","Tasks","TasksError","Volumes","VolumesError"],"sources":["../../src/Endpoints.ts"],"sourcesContent":[null],"mappings":"AAAA;;;;;AAMA;AACI;;;;AAIAA,OAAO;AACP;;;;AAIAC,YAAY,QACT,wBAAwB;AAE/B;AACI;;;;AAIAC,UAAU;AACV;;;;AAIAC,eAAe,QACZ,2BAA2B;AAElC;AACI;;;;AAIAC,aAAa;AACb;;;;AAIAC,kBAAkB,QACf,6BAA6B;AAEpC;AACI;;;;AAIAC,KAAK;AACL;;;;AAIAC,UAAU,QACP,sBAAsB;AAE7B;AACI;;;;AAIAC,MAAM;AACN;;;;AAIAC,WAAW,QACR,uBAAuB;AAE9B;AACI;;;;AAIAC,QAAQ;AACR;;;;AAIAC,aAAa,QACV,yBAAyB;AAEhC;AACI;;;;AAIAC,KAAK;AACL;;;;AAIAC,UAAU,QACP,sBAAsB;AAE7B;AACI;;;;AAIAC,OAAO;AACP;;;;AAIAC,YAAY,QACT,wBAAwB;AAE/B;AACI;;;;AAIAC,OAAO;AACP;;;;AAIAC,YAAY,QACT,wBAAwB;AAE/B;AACI;;;;AAIAC,QAAQ;AACR;;;;AAIAC,aAAa,QACV,yBAAyB;AAEhC;AACI;;;;AAIAC,KAAK;AACL;;;;AAIAC,WAAW,QACR,sBAAsB;AAE7B;AACI;;;;AAIAC,OAAO;AACP;;;;AAIAC,YAAY,QACT,uBAAuB;AAE9B;AACI;;;;AAIAC,KAAK;AACL;;;;AAIAC,UAAU,QACP,sBAAsB;AAE7B;AACI;;;;AAIAC,OAAO;AACP;;;;AAIAC,YAAY,QACT,wBAAwB","ignoreList":[]}
|
package/dist/esm/index.js
CHANGED
|
@@ -22,6 +22,12 @@ export * as Demux from "./Demux.js";
|
|
|
22
22
|
* @since 1.0.0
|
|
23
23
|
*/
|
|
24
24
|
export * as DockerEngine from "./DockerEngine.js";
|
|
25
|
+
/**
|
|
26
|
+
* Moby endpoints.
|
|
27
|
+
*
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
export * as Endpoints from "./Endpoints.js";
|
|
25
31
|
/**
|
|
26
32
|
* Http, https, ssh, and unix socket connection agents for all platforms.
|
|
27
33
|
*
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["Connection","Convey","Demux","DockerEngine","Platforms","PodmanEngine","Schemas"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA;;;;;AAKA,OAAO,KAAKA,UAAU,MAAM,iBAAiB;AAE7C;;;;;AAKA,OAAO,KAAKC,MAAM,MAAM,aAAa;AAErC;;;;;AAKA,OAAO,KAAKC,KAAK,MAAM,YAAY;AAEnC;;;;;AAKA,OAAO,KAAKC,YAAY,MAAM,mBAAmB;AAEjD;;;;;AAKA,OAAO,KAAKC,SAAS,MAAM,gBAAgB;AAE3C;;;;;AAKA,OAAO,KAAKC,YAAY,MAAM,mBAAmB;AAEjD;;;;;AAKA,OAAO,KAAKC,OAAO,MAAM,cAAc","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"index.js","names":["Connection","Convey","Demux","DockerEngine","Endpoints","Platforms","PodmanEngine","Schemas"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA;;;;;AAKA,OAAO,KAAKA,UAAU,MAAM,iBAAiB;AAE7C;;;;;AAKA,OAAO,KAAKC,MAAM,MAAM,aAAa;AAErC;;;;;AAKA,OAAO,KAAKC,KAAK,MAAM,YAAY;AAEnC;;;;;AAKA,OAAO,KAAKC,YAAY,MAAM,mBAAmB;AAEjD;;;;;AAKA,OAAO,KAAKC,SAAS,MAAM,gBAAgB;AAE3C;;;;;AAKA,OAAO,KAAKC,SAAS,MAAM,gBAAgB;AAE3C;;;;;AAKA,OAAO,KAAKC,YAAY,MAAM,mBAAmB;AAEjD;;;;;AAKA,OAAO,KAAKC,OAAO,MAAM,cAAc","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "the-moby-effect",
|
|
3
|
-
"version": "1.45.0-alpha.
|
|
3
|
+
"version": "1.45.0-alpha.12",
|
|
4
4
|
"description": "Moby/Docker API client built using effect-ts",
|
|
5
5
|
"license": "GPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
@@ -66,6 +66,11 @@
|
|
|
66
66
|
"import": "./dist/esm/DockerEngine.js",
|
|
67
67
|
"default": "./dist/cjs/DockerEngine.js"
|
|
68
68
|
},
|
|
69
|
+
"./Endpoints": {
|
|
70
|
+
"types": "./dist/dts/Endpoints.d.ts",
|
|
71
|
+
"import": "./dist/esm/Endpoints.js",
|
|
72
|
+
"default": "./dist/cjs/Endpoints.js"
|
|
73
|
+
},
|
|
69
74
|
"./Platforms": {
|
|
70
75
|
"types": "./dist/dts/Platforms.d.ts",
|
|
71
76
|
"import": "./dist/esm/Platforms.js",
|
|
@@ -96,6 +101,9 @@
|
|
|
96
101
|
"DockerEngine": [
|
|
97
102
|
"./dist/dts/DockerEngine.d.ts"
|
|
98
103
|
],
|
|
104
|
+
"Endpoints": [
|
|
105
|
+
"./dist/dts/Endpoints.d.ts"
|
|
106
|
+
],
|
|
99
107
|
"Platforms": [
|
|
100
108
|
"./dist/dts/Platforms.d.ts"
|
|
101
109
|
],
|
package/src/Endpoints.ts
ADDED
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Moby endpoints.
|
|
3
|
+
*
|
|
4
|
+
* @since 1.0.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
export {
|
|
8
|
+
/**
|
|
9
|
+
* @since 1.0.0
|
|
10
|
+
* @category Endpoints
|
|
11
|
+
*/
|
|
12
|
+
Configs,
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category Endpoints
|
|
16
|
+
*/
|
|
17
|
+
ConfigsError,
|
|
18
|
+
} from "./endpoints/Configs.js";
|
|
19
|
+
|
|
20
|
+
export {
|
|
21
|
+
/**
|
|
22
|
+
* @since 1.0.0
|
|
23
|
+
* @category Endpoints
|
|
24
|
+
*/
|
|
25
|
+
Containers,
|
|
26
|
+
/**
|
|
27
|
+
* @since 1.0.0
|
|
28
|
+
* @category Endpoints
|
|
29
|
+
*/
|
|
30
|
+
ContainersError,
|
|
31
|
+
} from "./endpoints/Containers.js";
|
|
32
|
+
|
|
33
|
+
export {
|
|
34
|
+
/**
|
|
35
|
+
* @since 1.0.0
|
|
36
|
+
* @category Endpoints
|
|
37
|
+
*/
|
|
38
|
+
Distributions,
|
|
39
|
+
/**
|
|
40
|
+
* @since 1.0.0
|
|
41
|
+
* @category Endpoints
|
|
42
|
+
*/
|
|
43
|
+
DistributionsError,
|
|
44
|
+
} from "./endpoints/Distribution.js";
|
|
45
|
+
|
|
46
|
+
export {
|
|
47
|
+
/**
|
|
48
|
+
* @since 1.0.0
|
|
49
|
+
* @category Endpoints
|
|
50
|
+
*/
|
|
51
|
+
Execs,
|
|
52
|
+
/**
|
|
53
|
+
* @since 1.0.0
|
|
54
|
+
* @category Endpoints
|
|
55
|
+
*/
|
|
56
|
+
ExecsError,
|
|
57
|
+
} from "./endpoints/Execs.js";
|
|
58
|
+
|
|
59
|
+
export {
|
|
60
|
+
/**
|
|
61
|
+
* @since 1.0.0
|
|
62
|
+
* @category Endpoints
|
|
63
|
+
*/
|
|
64
|
+
Images,
|
|
65
|
+
/**
|
|
66
|
+
* @since 1.0.0
|
|
67
|
+
* @category Endpoints
|
|
68
|
+
*/
|
|
69
|
+
ImagesError,
|
|
70
|
+
} from "./endpoints/Images.js";
|
|
71
|
+
|
|
72
|
+
export {
|
|
73
|
+
/**
|
|
74
|
+
* @since 1.0.0
|
|
75
|
+
* @category Endpoints
|
|
76
|
+
*/
|
|
77
|
+
Networks,
|
|
78
|
+
/**
|
|
79
|
+
* @since 1.0.0
|
|
80
|
+
* @category Endpoints
|
|
81
|
+
*/
|
|
82
|
+
NetworksError,
|
|
83
|
+
} from "./endpoints/Networks.js";
|
|
84
|
+
|
|
85
|
+
export {
|
|
86
|
+
/**
|
|
87
|
+
* @since 1.0.0
|
|
88
|
+
* @category Endpoints
|
|
89
|
+
*/
|
|
90
|
+
Nodes,
|
|
91
|
+
/**
|
|
92
|
+
* @since 1.0.0
|
|
93
|
+
* @category Endpoints
|
|
94
|
+
*/
|
|
95
|
+
NodesError,
|
|
96
|
+
} from "./endpoints/Nodes.js";
|
|
97
|
+
|
|
98
|
+
export {
|
|
99
|
+
/**
|
|
100
|
+
* @since 1.0.0
|
|
101
|
+
* @category Endpoints
|
|
102
|
+
*/
|
|
103
|
+
Plugins,
|
|
104
|
+
/**
|
|
105
|
+
* @since 1.0.0
|
|
106
|
+
* @category Endpoints
|
|
107
|
+
*/
|
|
108
|
+
PluginsError,
|
|
109
|
+
} from "./endpoints/Plugins.js";
|
|
110
|
+
|
|
111
|
+
export {
|
|
112
|
+
/**
|
|
113
|
+
* @since 1.0.0
|
|
114
|
+
* @category Endpoints
|
|
115
|
+
*/
|
|
116
|
+
Secrets,
|
|
117
|
+
/**
|
|
118
|
+
* @since 1.0.0
|
|
119
|
+
* @category Endpoints
|
|
120
|
+
*/
|
|
121
|
+
SecretsError,
|
|
122
|
+
} from "./endpoints/Secrets.js";
|
|
123
|
+
|
|
124
|
+
export {
|
|
125
|
+
/**
|
|
126
|
+
* @since 1.0.0
|
|
127
|
+
* @category Endpoints
|
|
128
|
+
*/
|
|
129
|
+
Services,
|
|
130
|
+
/**
|
|
131
|
+
* @since 1.0.0
|
|
132
|
+
* @category Endpoints
|
|
133
|
+
*/
|
|
134
|
+
ServicesError,
|
|
135
|
+
} from "./endpoints/Services.js";
|
|
136
|
+
|
|
137
|
+
export {
|
|
138
|
+
/**
|
|
139
|
+
* @since 1.0.0
|
|
140
|
+
* @category Endpoints
|
|
141
|
+
*/
|
|
142
|
+
Swarm,
|
|
143
|
+
/**
|
|
144
|
+
* @since 1.0.0
|
|
145
|
+
* @category Endpoints
|
|
146
|
+
*/
|
|
147
|
+
SwarmsError,
|
|
148
|
+
} from "./endpoints/Swarm.js";
|
|
149
|
+
|
|
150
|
+
export {
|
|
151
|
+
/**
|
|
152
|
+
* @since 1.0.0
|
|
153
|
+
* @category Endpoints
|
|
154
|
+
*/
|
|
155
|
+
Systems,
|
|
156
|
+
/**
|
|
157
|
+
* @since 1.0.0
|
|
158
|
+
* @category Endpoints
|
|
159
|
+
*/
|
|
160
|
+
SystemsError,
|
|
161
|
+
} from "./endpoints/System.js";
|
|
162
|
+
|
|
163
|
+
export {
|
|
164
|
+
/**
|
|
165
|
+
* @since 1.0.0
|
|
166
|
+
* @category Endpoints
|
|
167
|
+
*/
|
|
168
|
+
Tasks,
|
|
169
|
+
/**
|
|
170
|
+
* @since 1.0.0
|
|
171
|
+
* @category Endpoints
|
|
172
|
+
*/
|
|
173
|
+
TasksError,
|
|
174
|
+
} from "./endpoints/Tasks.js";
|
|
175
|
+
|
|
176
|
+
export {
|
|
177
|
+
/**
|
|
178
|
+
* @since 1.0.0
|
|
179
|
+
* @category Endpoints
|
|
180
|
+
*/
|
|
181
|
+
Volumes,
|
|
182
|
+
/**
|
|
183
|
+
* @since 1.0.0
|
|
184
|
+
* @category Endpoints
|
|
185
|
+
*/
|
|
186
|
+
VolumesError,
|
|
187
|
+
} from "./endpoints/Volumes.js";
|
package/src/index.ts
CHANGED
|
@@ -26,6 +26,13 @@ export * as Demux from "./Demux.js"
|
|
|
26
26
|
*/
|
|
27
27
|
export * as DockerEngine from "./DockerEngine.js"
|
|
28
28
|
|
|
29
|
+
/**
|
|
30
|
+
* Moby endpoints.
|
|
31
|
+
*
|
|
32
|
+
* @since 1.0.0
|
|
33
|
+
*/
|
|
34
|
+
export * as Endpoints from "./Endpoints.js"
|
|
35
|
+
|
|
29
36
|
/**
|
|
30
37
|
* Http, https, ssh, and unix socket connection agents for all platforms.
|
|
31
38
|
*
|