lakutata 2.0.20 → 2.0.22
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/com/docker.cjs +4 -0
- package/com/docker.d.ts +5 -3
- package/com/docker.mjs +4 -0
- package/orm.mjs +13 -13
- package/package.json +2 -6
- package/src/components/docker/ConnectionOptionsBuilder.cjs +4 -0
- package/src/components/docker/ConnectionOptionsBuilder.mjs +4 -0
- package/src/components/docker/Docker.cjs +7088 -1058
- package/src/components/docker/Docker.mjs +7522 -1494
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +5 -3
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +9 -7
- package/src/components/docker/options/image/ImageBuildOptions.cjs +19 -15
- package/src/components/docker/options/image/ImageBuildOptions.mjs +4 -0
- package/src/decorators/orm/Column.mjs +2 -2
- package/src/decorators/orm/PrimaryColumn.mjs +2 -2
- package/vendor/Package.14.mjs +17 -19
- package/vendor/Package.16.cjs +204 -206
- package/vendor/Package.16.mjs +185 -187
- package/vendor/proto/auth.proto +0 -54
package/vendor/proto/auth.proto
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
package moby.filesync.v1;
|
|
4
|
-
|
|
5
|
-
option go_package = "auth";
|
|
6
|
-
|
|
7
|
-
service Auth{
|
|
8
|
-
rpc Credentials(CredentialsRequest) returns (CredentialsResponse);
|
|
9
|
-
rpc FetchToken(FetchTokenRequest) returns (FetchTokenResponse);
|
|
10
|
-
rpc GetTokenAuthority(GetTokenAuthorityRequest) returns (GetTokenAuthorityResponse);
|
|
11
|
-
rpc VerifyTokenAuthority(VerifyTokenAuthorityRequest) returns (VerifyTokenAuthorityResponse);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
message CredentialsRequest {
|
|
15
|
-
string Host = 1;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
message CredentialsResponse {
|
|
19
|
-
string Username = 1;
|
|
20
|
-
string Secret = 2;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
message FetchTokenRequest {
|
|
24
|
-
string ClientID = 1;
|
|
25
|
-
string Host = 2;
|
|
26
|
-
string Realm = 3;
|
|
27
|
-
string Service = 4;
|
|
28
|
-
repeated string Scopes = 5;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
message FetchTokenResponse {
|
|
32
|
-
string Token = 1;
|
|
33
|
-
int64 ExpiresIn = 2; // seconds
|
|
34
|
-
int64 IssuedAt = 3; // timestamp
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
message GetTokenAuthorityRequest {
|
|
38
|
-
string Host = 1;
|
|
39
|
-
bytes Salt = 2;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
message GetTokenAuthorityResponse {
|
|
43
|
-
bytes PublicKey = 1;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
message VerifyTokenAuthorityRequest {
|
|
47
|
-
string Host = 1;
|
|
48
|
-
bytes Payload = 2;
|
|
49
|
-
bytes Salt = 3;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
message VerifyTokenAuthorityResponse {
|
|
53
|
-
bytes Signed = 1;
|
|
54
|
-
}
|