@gitpod/supervisor-api-grpc 0.1.5-patch-2-fork.0 → 0.1.5-pavel-git-status-fix.4
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/control_grpc_pb.d.ts +17 -1
- package/lib/control_grpc_pb.js +34 -0
- package/lib/control_pb.d.ts +37 -5
- package/lib/control_pb.js +301 -42
- package/lib/info_grpc_pb.d.ts +0 -1
- package/lib/info_pb.d.ts +42 -15
- package/lib/info_pb.js +445 -45
- package/lib/notification_grpc_pb.d.ts +49 -1
- package/lib/notification_grpc_pb.js +115 -4
- package/lib/notification_pb.d.ts +191 -8
- package/lib/notification_pb.js +1519 -59
- package/lib/port_grpc_pb.d.ts +108 -0
- package/lib/port_grpc_pb.js +187 -0
- package/lib/port_pb.d.ts +232 -0
- package/lib/port_pb.js +1666 -0
- package/lib/status_grpc_pb.d.ts +18 -1
- package/lib/status_grpc_pb.js +35 -0
- package/lib/status_pb.d.ts +155 -27
- package/lib/status_pb.js +1803 -546
- package/lib/terminal_grpc_pb.d.ts +34 -1
- package/lib/terminal_grpc_pb.js +68 -0
- package/lib/terminal_pb.d.ts +103 -45
- package/lib/terminal_pb.js +1055 -177
- package/lib/token_grpc_pb.d.ts +0 -1
- package/lib/token_pb.d.ts +4 -30
- package/lib/token_pb.js +208 -114
- package/package.json +10 -8
- package/pkg-yarn.lock +3 -3
- package/provenance-bundle.jsonl +4 -0
package/lib/info_pb.d.ts
CHANGED
|
@@ -26,40 +26,44 @@ export namespace WorkspaceInfoRequest {
|
|
|
26
26
|
export class WorkspaceInfoResponse extends jspb.Message {
|
|
27
27
|
getWorkspaceId(): string;
|
|
28
28
|
setWorkspaceId(value: string): WorkspaceInfoResponse;
|
|
29
|
-
|
|
30
29
|
getInstanceId(): string;
|
|
31
30
|
setInstanceId(value: string): WorkspaceInfoResponse;
|
|
32
|
-
|
|
33
31
|
getCheckoutLocation(): string;
|
|
34
32
|
setCheckoutLocation(value: string): WorkspaceInfoResponse;
|
|
35
33
|
|
|
36
|
-
|
|
37
34
|
hasWorkspaceLocationFile(): boolean;
|
|
38
35
|
clearWorkspaceLocationFile(): void;
|
|
39
36
|
getWorkspaceLocationFile(): string;
|
|
40
37
|
setWorkspaceLocationFile(value: string): WorkspaceInfoResponse;
|
|
41
38
|
|
|
42
|
-
|
|
43
39
|
hasWorkspaceLocationFolder(): boolean;
|
|
44
40
|
clearWorkspaceLocationFolder(): void;
|
|
45
41
|
getWorkspaceLocationFolder(): string;
|
|
46
42
|
setWorkspaceLocationFolder(value: string): WorkspaceInfoResponse;
|
|
47
|
-
|
|
48
43
|
getUserHome(): string;
|
|
49
44
|
setUserHome(value: string): WorkspaceInfoResponse;
|
|
50
45
|
|
|
51
|
-
|
|
52
46
|
hasGitpodApi(): boolean;
|
|
53
47
|
clearGitpodApi(): void;
|
|
54
48
|
getGitpodApi(): WorkspaceInfoResponse.GitpodAPI | undefined;
|
|
55
49
|
setGitpodApi(value?: WorkspaceInfoResponse.GitpodAPI): WorkspaceInfoResponse;
|
|
56
|
-
|
|
57
50
|
getGitpodHost(): string;
|
|
58
51
|
setGitpodHost(value: string): WorkspaceInfoResponse;
|
|
59
|
-
|
|
60
52
|
getWorkspaceContextUrl(): string;
|
|
61
53
|
setWorkspaceContextUrl(value: string): WorkspaceInfoResponse;
|
|
62
54
|
|
|
55
|
+
hasRepository(): boolean;
|
|
56
|
+
clearRepository(): void;
|
|
57
|
+
getRepository(): WorkspaceInfoResponse.Repository | undefined;
|
|
58
|
+
setRepository(value?: WorkspaceInfoResponse.Repository): WorkspaceInfoResponse;
|
|
59
|
+
getWorkspaceClusterHost(): string;
|
|
60
|
+
setWorkspaceClusterHost(value: string): WorkspaceInfoResponse;
|
|
61
|
+
getWorkspaceUrl(): string;
|
|
62
|
+
setWorkspaceUrl(value: string): WorkspaceInfoResponse;
|
|
63
|
+
getIdeAlias(): string;
|
|
64
|
+
setIdeAlias(value: string): WorkspaceInfoResponse;
|
|
65
|
+
getIdePort(): number;
|
|
66
|
+
setIdePort(value: number): WorkspaceInfoResponse;
|
|
63
67
|
|
|
64
68
|
getWorkspaceLocationCase(): WorkspaceInfoResponse.WorkspaceLocationCase;
|
|
65
69
|
|
|
@@ -84,17 +88,20 @@ export namespace WorkspaceInfoResponse {
|
|
|
84
88
|
gitpodApi?: WorkspaceInfoResponse.GitpodAPI.AsObject,
|
|
85
89
|
gitpodHost: string,
|
|
86
90
|
workspaceContextUrl: string,
|
|
91
|
+
repository?: WorkspaceInfoResponse.Repository.AsObject,
|
|
92
|
+
workspaceClusterHost: string,
|
|
93
|
+
workspaceUrl: string,
|
|
94
|
+
ideAlias: string,
|
|
95
|
+
idePort: number,
|
|
87
96
|
}
|
|
88
97
|
|
|
89
98
|
|
|
90
99
|
export class GitpodAPI extends jspb.Message {
|
|
91
100
|
getEndpoint(): string;
|
|
92
101
|
setEndpoint(value: string): GitpodAPI;
|
|
93
|
-
|
|
94
102
|
getHost(): string;
|
|
95
103
|
setHost(value: string): GitpodAPI;
|
|
96
104
|
|
|
97
|
-
|
|
98
105
|
serializeBinary(): Uint8Array;
|
|
99
106
|
toObject(includeInstance?: boolean): GitpodAPI.AsObject;
|
|
100
107
|
static toObject(includeInstance: boolean, msg: GitpodAPI): GitpodAPI.AsObject;
|
|
@@ -112,14 +119,34 @@ export namespace WorkspaceInfoResponse {
|
|
|
112
119
|
}
|
|
113
120
|
}
|
|
114
121
|
|
|
122
|
+
export class Repository extends jspb.Message {
|
|
123
|
+
getOwner(): string;
|
|
124
|
+
setOwner(value: string): Repository;
|
|
125
|
+
getName(): string;
|
|
126
|
+
setName(value: string): Repository;
|
|
115
127
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
128
|
+
serializeBinary(): Uint8Array;
|
|
129
|
+
toObject(includeInstance?: boolean): Repository.AsObject;
|
|
130
|
+
static toObject(includeInstance: boolean, msg: Repository): Repository.AsObject;
|
|
131
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
132
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
133
|
+
static serializeBinaryToWriter(message: Repository, writer: jspb.BinaryWriter): void;
|
|
134
|
+
static deserializeBinary(bytes: Uint8Array): Repository;
|
|
135
|
+
static deserializeBinaryFromReader(message: Repository, reader: jspb.BinaryReader): Repository;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export namespace Repository {
|
|
139
|
+
export type AsObject = {
|
|
140
|
+
owner: string,
|
|
141
|
+
name: string,
|
|
142
|
+
}
|
|
143
|
+
}
|
|
120
144
|
|
|
121
|
-
WORKSPACE_LOCATION_FOLDER = 5,
|
|
122
145
|
|
|
146
|
+
export enum WorkspaceLocationCase {
|
|
147
|
+
WORKSPACE_LOCATION_NOT_SET = 0,
|
|
148
|
+
WORKSPACE_LOCATION_FILE = 4,
|
|
149
|
+
WORKSPACE_LOCATION_FOLDER = 5,
|
|
123
150
|
}
|
|
124
151
|
|
|
125
152
|
}
|