@gitpod/public-api 0.1.5-platform-artificial-job-ceae6d6621b5b260816d.0 → 0.1.5-platform-artificial-job-32a1f08364355831fb9e.0
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/gitpod/experimental/v1/ide_client_connectweb.d.ts +38 -0
- package/lib/gitpod/experimental/v1/ide_client_connectweb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/ide_client_connectweb.js +45 -0
- package/lib/gitpod/experimental/v1/ide_client_connectweb.js.map +1 -0
- package/lib/gitpod/experimental/v1/ide_client_pb.d.ts +68 -0
- package/lib/gitpod/experimental/v1/ide_client_pb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/ide_client_pb.js +122 -0
- package/lib/gitpod/experimental/v1/ide_client_pb.js.map +1 -0
- package/lib/gitpod/experimental/v1/pagination_pb.d.ts +7 -4
- package/lib/gitpod/experimental/v1/pagination_pb.d.ts.map +1 -1
- package/lib/gitpod/experimental/v1/pagination_pb.js +8 -5
- package/lib/gitpod/experimental/v1/pagination_pb.js.map +1 -1
- package/lib/gitpod/experimental/v1/projects_connectweb.d.ts +60 -0
- package/lib/gitpod/experimental/v1/projects_connectweb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/projects_connectweb.js +67 -0
- package/lib/gitpod/experimental/v1/projects_connectweb.js.map +1 -0
- package/lib/gitpod/experimental/v1/projects_pb.d.ts +319 -0
- package/lib/gitpod/experimental/v1/projects_pb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/projects_pb.js +474 -0
- package/lib/gitpod/experimental/v1/projects_pb.js.map +1 -0
- package/lib/gitpod/experimental/v1/teams_connectweb.d.ts +78 -1
- package/lib/gitpod/experimental/v1/teams_connectweb.d.ts.map +1 -1
- package/lib/gitpod/experimental/v1/teams_connectweb.js +77 -0
- package/lib/gitpod/experimental/v1/teams_connectweb.js.map +1 -1
- package/lib/gitpod/experimental/v1/teams_pb.d.ts +279 -1
- package/lib/gitpod/experimental/v1/teams_pb.d.ts.map +1 -1
- package/lib/gitpod/experimental/v1/teams_pb.js +443 -1
- package/lib/gitpod/experimental/v1/teams_pb.js.map +1 -1
- package/lib/gitpod/experimental/v1/tokens_connectweb.d.ts +82 -0
- package/lib/gitpod/experimental/v1/tokens_connectweb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/tokens_connectweb.js +89 -0
- package/lib/gitpod/experimental/v1/tokens_connectweb.js.map +1 -0
- package/lib/gitpod/experimental/v1/tokens_pb.d.ts +299 -0
- package/lib/gitpod/experimental/v1/tokens_pb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/tokens_pb.js +438 -0
- package/lib/gitpod/experimental/v1/tokens_pb.js.map +1 -0
- package/lib/gitpod/experimental/v1/user_connectweb.d.ts +71 -0
- package/lib/gitpod/experimental/v1/user_connectweb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/user_connectweb.js +78 -0
- package/lib/gitpod/experimental/v1/user_connectweb.js.map +1 -0
- package/lib/gitpod/experimental/v1/user_pb.d.ts +254 -0
- package/lib/gitpod/experimental/v1/user_pb.d.ts.map +1 -0
- package/lib/gitpod/experimental/v1/user_pb.js +401 -0
- package/lib/gitpod/experimental/v1/user_pb.js.map +1 -0
- package/package.json +1 -1
- package/pkg-yarn.lock +1 -1
- package/provenance-bundle.jsonl +2 -2
@@ -0,0 +1,38 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
3
|
+
* Licensed under the GNU Affero General Public License (AGPL).
|
4
|
+
* See License-AGPL.txt in the project root for license information.
|
5
|
+
*/
|
6
|
+
import { SendDidCloseRequest, SendDidCloseResponse, SendHeartbeatRequest, SendHeartbeatResponse } from "./ide_client_pb.js";
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
8
|
+
/**
|
9
|
+
* @generated from service gitpod.experimental.v1.IDEClientService
|
10
|
+
*/
|
11
|
+
export declare const IDEClientService: {
|
12
|
+
readonly typeName: "gitpod.experimental.v1.IDEClientService";
|
13
|
+
readonly methods: {
|
14
|
+
/**
|
15
|
+
* SendHeartbeat sends a clientheartbeat signal for a running workspace.
|
16
|
+
*
|
17
|
+
* @generated from rpc gitpod.experimental.v1.IDEClientService.SendHeartbeat
|
18
|
+
*/
|
19
|
+
readonly sendHeartbeat: {
|
20
|
+
readonly name: "SendHeartbeat";
|
21
|
+
readonly I: typeof SendHeartbeatRequest;
|
22
|
+
readonly O: typeof SendHeartbeatResponse;
|
23
|
+
readonly kind: MethodKind.Unary;
|
24
|
+
};
|
25
|
+
/**
|
26
|
+
* SendDidClose sends a client close signal for a running workspace.
|
27
|
+
*
|
28
|
+
* @generated from rpc gitpod.experimental.v1.IDEClientService.SendDidClose
|
29
|
+
*/
|
30
|
+
readonly sendDidClose: {
|
31
|
+
readonly name: "SendDidClose";
|
32
|
+
readonly I: typeof SendDidCloseRequest;
|
33
|
+
readonly O: typeof SendDidCloseResponse;
|
34
|
+
readonly kind: MethodKind.Unary;
|
35
|
+
};
|
36
|
+
};
|
37
|
+
};
|
38
|
+
//# sourceMappingURL=ide_client_connectweb.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ide_client_connectweb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/ide_client_connectweb.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,OAAO,EAAC,mBAAmB,EAAE,oBAAoB,EAAE,oBAAoB,EAAE,qBAAqB,EAAC,MAAM,oBAAoB,CAAC;AAC1H,OAAO,EAAC,UAAU,EAAC,MAAM,oBAAoB,CAAC;AAE9C;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;QAGzB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
"use strict";
|
2
|
+
/**
|
3
|
+
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
4
|
+
* Licensed under the GNU Affero General Public License (AGPL).
|
5
|
+
* See License-AGPL.txt in the project root for license information.
|
6
|
+
*/
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
8
|
+
exports.IDEClientService = void 0;
|
9
|
+
// @generated by protoc-gen-connect-web v0.2.1 with parameter "target=ts"
|
10
|
+
// @generated from file gitpod/experimental/v1/ide_client.proto (package gitpod.experimental.v1, syntax proto3)
|
11
|
+
/* eslint-disable */
|
12
|
+
/* @ts-nocheck */
|
13
|
+
const ide_client_pb_js_1 = require("./ide_client_pb.js");
|
14
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
15
|
+
/**
|
16
|
+
* @generated from service gitpod.experimental.v1.IDEClientService
|
17
|
+
*/
|
18
|
+
exports.IDEClientService = {
|
19
|
+
typeName: "gitpod.experimental.v1.IDEClientService",
|
20
|
+
methods: {
|
21
|
+
/**
|
22
|
+
* SendHeartbeat sends a clientheartbeat signal for a running workspace.
|
23
|
+
*
|
24
|
+
* @generated from rpc gitpod.experimental.v1.IDEClientService.SendHeartbeat
|
25
|
+
*/
|
26
|
+
sendHeartbeat: {
|
27
|
+
name: "SendHeartbeat",
|
28
|
+
I: ide_client_pb_js_1.SendHeartbeatRequest,
|
29
|
+
O: ide_client_pb_js_1.SendHeartbeatResponse,
|
30
|
+
kind: protobuf_1.MethodKind.Unary,
|
31
|
+
},
|
32
|
+
/**
|
33
|
+
* SendDidClose sends a client close signal for a running workspace.
|
34
|
+
*
|
35
|
+
* @generated from rpc gitpod.experimental.v1.IDEClientService.SendDidClose
|
36
|
+
*/
|
37
|
+
sendDidClose: {
|
38
|
+
name: "SendDidClose",
|
39
|
+
I: ide_client_pb_js_1.SendDidCloseRequest,
|
40
|
+
O: ide_client_pb_js_1.SendDidCloseResponse,
|
41
|
+
kind: protobuf_1.MethodKind.Unary,
|
42
|
+
},
|
43
|
+
}
|
44
|
+
};
|
45
|
+
//# sourceMappingURL=ide_client_connectweb.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ide_client_connectweb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/ide_client_connectweb.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,yEAAyE;AACzE,+GAA+G;AAC/G,oBAAoB;AACpB,iBAAiB;AAEjB,yDAA0H;AAC1H,iDAA8C;AAE9C;;GAEG;AACU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,yCAAyC;IACnD,OAAO,EAAE;QACP;;;;WAIG;QACH,aAAa,EAAE;YACb,IAAI,EAAE,eAAe;YACrB,CAAC,EAAE,uCAAoB;YACvB,CAAC,EAAE,wCAAqB;YACxB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,YAAY,EAAE;YACZ,IAAI,EAAE,cAAc;YACpB,CAAC,EAAE,sCAAmB;YACtB,CAAC,EAAE,uCAAoB;YACvB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
3
|
+
* Licensed under the GNU Affero General Public License (AGPL).
|
4
|
+
* See License-AGPL.txt in the project root for license information.
|
5
|
+
*/
|
6
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
7
|
+
import { Message } from "@bufbuild/protobuf";
|
8
|
+
/**
|
9
|
+
* @generated from message gitpod.experimental.v1.SendHeartbeatRequest
|
10
|
+
*/
|
11
|
+
export declare class SendHeartbeatRequest extends Message<SendHeartbeatRequest> {
|
12
|
+
/**
|
13
|
+
* @generated from field: string workspace_id = 1;
|
14
|
+
*/
|
15
|
+
workspaceId: string;
|
16
|
+
constructor(data?: PartialMessage<SendHeartbeatRequest>);
|
17
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
|
18
|
+
static readonly typeName = "gitpod.experimental.v1.SendHeartbeatRequest";
|
19
|
+
static readonly fields: FieldList;
|
20
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendHeartbeatRequest;
|
21
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendHeartbeatRequest;
|
22
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendHeartbeatRequest;
|
23
|
+
static equals(a: SendHeartbeatRequest | PlainMessage<SendHeartbeatRequest> | undefined, b: SendHeartbeatRequest | PlainMessage<SendHeartbeatRequest> | undefined): boolean;
|
24
|
+
}
|
25
|
+
/**
|
26
|
+
* @generated from message gitpod.experimental.v1.SendHeartbeatResponse
|
27
|
+
*/
|
28
|
+
export declare class SendHeartbeatResponse extends Message<SendHeartbeatResponse> {
|
29
|
+
constructor(data?: PartialMessage<SendHeartbeatResponse>);
|
30
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
|
31
|
+
static readonly typeName = "gitpod.experimental.v1.SendHeartbeatResponse";
|
32
|
+
static readonly fields: FieldList;
|
33
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendHeartbeatResponse;
|
34
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendHeartbeatResponse;
|
35
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendHeartbeatResponse;
|
36
|
+
static equals(a: SendHeartbeatResponse | PlainMessage<SendHeartbeatResponse> | undefined, b: SendHeartbeatResponse | PlainMessage<SendHeartbeatResponse> | undefined): boolean;
|
37
|
+
}
|
38
|
+
/**
|
39
|
+
* @generated from message gitpod.experimental.v1.SendDidCloseRequest
|
40
|
+
*/
|
41
|
+
export declare class SendDidCloseRequest extends Message<SendDidCloseRequest> {
|
42
|
+
/**
|
43
|
+
* @generated from field: string workspace_id = 1;
|
44
|
+
*/
|
45
|
+
workspaceId: string;
|
46
|
+
constructor(data?: PartialMessage<SendDidCloseRequest>);
|
47
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
|
48
|
+
static readonly typeName = "gitpod.experimental.v1.SendDidCloseRequest";
|
49
|
+
static readonly fields: FieldList;
|
50
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendDidCloseRequest;
|
51
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendDidCloseRequest;
|
52
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendDidCloseRequest;
|
53
|
+
static equals(a: SendDidCloseRequest | PlainMessage<SendDidCloseRequest> | undefined, b: SendDidCloseRequest | PlainMessage<SendDidCloseRequest> | undefined): boolean;
|
54
|
+
}
|
55
|
+
/**
|
56
|
+
* @generated from message gitpod.experimental.v1.SendDidCloseResponse
|
57
|
+
*/
|
58
|
+
export declare class SendDidCloseResponse extends Message<SendDidCloseResponse> {
|
59
|
+
constructor(data?: PartialMessage<SendDidCloseResponse>);
|
60
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
|
61
|
+
static readonly typeName = "gitpod.experimental.v1.SendDidCloseResponse";
|
62
|
+
static readonly fields: FieldList;
|
63
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendDidCloseResponse;
|
64
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendDidCloseResponse;
|
65
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendDidCloseResponse;
|
66
|
+
static equals(a: SendDidCloseResponse | PlainMessage<SendDidCloseResponse> | undefined, b: SendDidCloseResponse | PlainMessage<SendDidCloseResponse> | undefined): boolean;
|
67
|
+
}
|
68
|
+
//# sourceMappingURL=ide_client_pb.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ide_client_pb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/ide_client_pb.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,122 @@
|
|
1
|
+
"use strict";
|
2
|
+
/**
|
3
|
+
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
4
|
+
* Licensed under the GNU Affero General Public License (AGPL).
|
5
|
+
* See License-AGPL.txt in the project root for license information.
|
6
|
+
*/
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
8
|
+
exports.SendDidCloseResponse = exports.SendDidCloseRequest = exports.SendHeartbeatResponse = exports.SendHeartbeatRequest = void 0;
|
9
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
10
|
+
/**
|
11
|
+
* @generated from message gitpod.experimental.v1.SendHeartbeatRequest
|
12
|
+
*/
|
13
|
+
class SendHeartbeatRequest extends protobuf_1.Message {
|
14
|
+
constructor(data) {
|
15
|
+
super();
|
16
|
+
/**
|
17
|
+
* @generated from field: string workspace_id = 1;
|
18
|
+
*/
|
19
|
+
this.workspaceId = "";
|
20
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
21
|
+
}
|
22
|
+
static fromBinary(bytes, options) {
|
23
|
+
return new SendHeartbeatRequest().fromBinary(bytes, options);
|
24
|
+
}
|
25
|
+
static fromJson(jsonValue, options) {
|
26
|
+
return new SendHeartbeatRequest().fromJson(jsonValue, options);
|
27
|
+
}
|
28
|
+
static fromJsonString(jsonString, options) {
|
29
|
+
return new SendHeartbeatRequest().fromJsonString(jsonString, options);
|
30
|
+
}
|
31
|
+
static equals(a, b) {
|
32
|
+
return protobuf_1.proto3.util.equals(SendHeartbeatRequest, a, b);
|
33
|
+
}
|
34
|
+
}
|
35
|
+
exports.SendHeartbeatRequest = SendHeartbeatRequest;
|
36
|
+
SendHeartbeatRequest.runtime = protobuf_1.proto3;
|
37
|
+
SendHeartbeatRequest.typeName = "gitpod.experimental.v1.SendHeartbeatRequest";
|
38
|
+
SendHeartbeatRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
39
|
+
{ no: 1, name: "workspace_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
40
|
+
]);
|
41
|
+
/**
|
42
|
+
* @generated from message gitpod.experimental.v1.SendHeartbeatResponse
|
43
|
+
*/
|
44
|
+
class SendHeartbeatResponse extends protobuf_1.Message {
|
45
|
+
constructor(data) {
|
46
|
+
super();
|
47
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
48
|
+
}
|
49
|
+
static fromBinary(bytes, options) {
|
50
|
+
return new SendHeartbeatResponse().fromBinary(bytes, options);
|
51
|
+
}
|
52
|
+
static fromJson(jsonValue, options) {
|
53
|
+
return new SendHeartbeatResponse().fromJson(jsonValue, options);
|
54
|
+
}
|
55
|
+
static fromJsonString(jsonString, options) {
|
56
|
+
return new SendHeartbeatResponse().fromJsonString(jsonString, options);
|
57
|
+
}
|
58
|
+
static equals(a, b) {
|
59
|
+
return protobuf_1.proto3.util.equals(SendHeartbeatResponse, a, b);
|
60
|
+
}
|
61
|
+
}
|
62
|
+
exports.SendHeartbeatResponse = SendHeartbeatResponse;
|
63
|
+
SendHeartbeatResponse.runtime = protobuf_1.proto3;
|
64
|
+
SendHeartbeatResponse.typeName = "gitpod.experimental.v1.SendHeartbeatResponse";
|
65
|
+
SendHeartbeatResponse.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
66
|
+
/**
|
67
|
+
* @generated from message gitpod.experimental.v1.SendDidCloseRequest
|
68
|
+
*/
|
69
|
+
class SendDidCloseRequest extends protobuf_1.Message {
|
70
|
+
constructor(data) {
|
71
|
+
super();
|
72
|
+
/**
|
73
|
+
* @generated from field: string workspace_id = 1;
|
74
|
+
*/
|
75
|
+
this.workspaceId = "";
|
76
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
77
|
+
}
|
78
|
+
static fromBinary(bytes, options) {
|
79
|
+
return new SendDidCloseRequest().fromBinary(bytes, options);
|
80
|
+
}
|
81
|
+
static fromJson(jsonValue, options) {
|
82
|
+
return new SendDidCloseRequest().fromJson(jsonValue, options);
|
83
|
+
}
|
84
|
+
static fromJsonString(jsonString, options) {
|
85
|
+
return new SendDidCloseRequest().fromJsonString(jsonString, options);
|
86
|
+
}
|
87
|
+
static equals(a, b) {
|
88
|
+
return protobuf_1.proto3.util.equals(SendDidCloseRequest, a, b);
|
89
|
+
}
|
90
|
+
}
|
91
|
+
exports.SendDidCloseRequest = SendDidCloseRequest;
|
92
|
+
SendDidCloseRequest.runtime = protobuf_1.proto3;
|
93
|
+
SendDidCloseRequest.typeName = "gitpod.experimental.v1.SendDidCloseRequest";
|
94
|
+
SendDidCloseRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
95
|
+
{ no: 1, name: "workspace_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
96
|
+
]);
|
97
|
+
/**
|
98
|
+
* @generated from message gitpod.experimental.v1.SendDidCloseResponse
|
99
|
+
*/
|
100
|
+
class SendDidCloseResponse extends protobuf_1.Message {
|
101
|
+
constructor(data) {
|
102
|
+
super();
|
103
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
104
|
+
}
|
105
|
+
static fromBinary(bytes, options) {
|
106
|
+
return new SendDidCloseResponse().fromBinary(bytes, options);
|
107
|
+
}
|
108
|
+
static fromJson(jsonValue, options) {
|
109
|
+
return new SendDidCloseResponse().fromJson(jsonValue, options);
|
110
|
+
}
|
111
|
+
static fromJsonString(jsonString, options) {
|
112
|
+
return new SendDidCloseResponse().fromJsonString(jsonString, options);
|
113
|
+
}
|
114
|
+
static equals(a, b) {
|
115
|
+
return protobuf_1.proto3.util.equals(SendDidCloseResponse, a, b);
|
116
|
+
}
|
117
|
+
}
|
118
|
+
exports.SendDidCloseResponse = SendDidCloseResponse;
|
119
|
+
SendDidCloseResponse.runtime = protobuf_1.proto3;
|
120
|
+
SendDidCloseResponse.typeName = "gitpod.experimental.v1.SendDidCloseResponse";
|
121
|
+
SendDidCloseResponse.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
122
|
+
//# sourceMappingURL=ide_client_pb.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ide_client_pb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/ide_client_pb.ts"],"names":[],"mappings":"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"}
|
@@ -10,17 +10,20 @@ import { Message } from "@bufbuild/protobuf";
|
|
10
10
|
*/
|
11
11
|
export declare class Pagination extends Message<Pagination> {
|
12
12
|
/**
|
13
|
-
*
|
13
|
+
* Page size is the maximum number of results to retrieve per page.
|
14
|
+
* Defaults to 25. Maximum 100.
|
14
15
|
*
|
15
16
|
* @generated from field: int32 page_size = 1;
|
16
17
|
*/
|
17
18
|
pageSize: number;
|
18
19
|
/**
|
19
|
-
*
|
20
|
+
* Page is the page number of results to retrieve.
|
21
|
+
* The first page starts at 1.
|
22
|
+
* Defaults to 1.
|
20
23
|
*
|
21
|
-
* @generated from field:
|
24
|
+
* @generated from field: int32 page = 2;
|
22
25
|
*/
|
23
|
-
|
26
|
+
page: number;
|
24
27
|
constructor(data?: PartialMessage<Pagination>);
|
25
28
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
|
26
29
|
static readonly typeName = "gitpod.experimental.v1.Pagination";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"pagination_pb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/pagination_pb.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,OAAO,KAAK,EAAC,iBAAiB,EAAE,SAAS,EAAE,eAAe,EAAE,SAAS,EAAE,cAAc,EAAE,YAAY,EAAC,MAAM,oBAAoB,CAAC;AAC/H,OAAO,EAAC,OAAO,EAAS,MAAM,oBAAoB,CAAC;AAEnD;;GAEG;AACH,qBAAa,UAAW,SAAQ,OAAO,CAAC,UAAU,CAAC;IACjD
|
1
|
+
{"version":3,"file":"pagination_pb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/pagination_pb.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,OAAO,KAAK,EAAC,iBAAiB,EAAE,SAAS,EAAE,eAAe,EAAE,SAAS,EAAE,cAAc,EAAE,YAAY,EAAC,MAAM,oBAAoB,CAAC;AAC/H,OAAO,EAAC,OAAO,EAAS,MAAM,oBAAoB,CAAC;AAEnD;;GAEG;AACH,qBAAa,UAAW,SAAQ,OAAO,CAAC,UAAU,CAAC;IACjD;;;;;OAKG;IACH,QAAQ,SAAK;IAEb;;;;;;OAMG;IACH,IAAI,SAAK;gBAEG,IAAI,CAAC,EAAE,cAAc,CAAC,UAAU,CAAC;IAK7C,MAAM,CAAC,QAAQ,CAAC,OAAO,6EAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,uCAAuC;IAC/D,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAG9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,UAAU;IAItF,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,UAAU;IAIrF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,UAAU;IAIzF,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC,UAAU,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC,UAAU,CAAC,GAAG,SAAS,GAAG,OAAO;CAGnI"}
|
@@ -14,17 +14,20 @@ class Pagination extends protobuf_1.Message {
|
|
14
14
|
constructor(data) {
|
15
15
|
super();
|
16
16
|
/**
|
17
|
-
*
|
17
|
+
* Page size is the maximum number of results to retrieve per page.
|
18
|
+
* Defaults to 25. Maximum 100.
|
18
19
|
*
|
19
20
|
* @generated from field: int32 page_size = 1;
|
20
21
|
*/
|
21
22
|
this.pageSize = 0;
|
22
23
|
/**
|
23
|
-
*
|
24
|
+
* Page is the page number of results to retrieve.
|
25
|
+
* The first page starts at 1.
|
26
|
+
* Defaults to 1.
|
24
27
|
*
|
25
|
-
* @generated from field:
|
28
|
+
* @generated from field: int32 page = 2;
|
26
29
|
*/
|
27
|
-
this.
|
30
|
+
this.page = 0;
|
28
31
|
protobuf_1.proto3.util.initPartial(data, this);
|
29
32
|
}
|
30
33
|
static fromBinary(bytes, options) {
|
@@ -45,6 +48,6 @@ Pagination.runtime = protobuf_1.proto3;
|
|
45
48
|
Pagination.typeName = "gitpod.experimental.v1.Pagination";
|
46
49
|
Pagination.fields = protobuf_1.proto3.util.newFieldList(() => [
|
47
50
|
{ no: 1, name: "page_size", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
48
|
-
{ no: 2, name: "
|
51
|
+
{ no: 2, name: "page", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
49
52
|
]);
|
50
53
|
//# sourceMappingURL=pagination_pb.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"pagination_pb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/pagination_pb.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAQH,iDAAmD;AAEnD;;GAEG;AACH,MAAa,UAAW,SAAQ,kBAAmB;
|
1
|
+
{"version":3,"file":"pagination_pb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/pagination_pb.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAQH,iDAAmD;AAEnD;;GAEG;AACH,MAAa,UAAW,SAAQ,kBAAmB;IAkBjD,YAAY,IAAiC;QAC3C,KAAK,EAAE,CAAC;QAlBV;;;;;WAKG;QACH,aAAQ,GAAG,CAAC,CAAC;QAEb;;;;;;WAMG;QACH,SAAI,GAAG,CAAC,CAAC;QAIP,iBAAM,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IACtC,CAAC;IASD,MAAM,CAAC,UAAU,CAAC,KAAiB,EAAE,OAAoC;QACvE,OAAO,IAAI,UAAU,EAAE,CAAC,UAAU,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IACrD,CAAC;IAED,MAAM,CAAC,QAAQ,CAAC,SAAoB,EAAE,OAAkC;QACtE,OAAO,IAAI,UAAU,EAAE,CAAC,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IACvD,CAAC;IAED,MAAM,CAAC,cAAc,CAAC,UAAkB,EAAE,OAAkC;QAC1E,OAAO,IAAI,UAAU,EAAE,CAAC,cAAc,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED,MAAM,CAAC,MAAM,CAAC,CAAoD,EAAE,CAAoD;QACtH,OAAO,iBAAM,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC9C,CAAC;;AA5CH,gCA6CC;AAtBiB,kBAAO,GAAG,iBAAM,CAAC;AACjB,mBAAQ,GAAG,mCAAmC,CAAC;AAC/C,iBAAM,GAAc,iBAAM,CAAC,IAAI,CAAC,YAAY,CAAC,GAAG,EAAE,CAAC;IACjE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC,CAAC,sBAAsB,EAAE;IACzE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC,CAAC,sBAAsB,EAAE;CACrE,CAAC,CAAC"}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
3
|
+
* Licensed under the GNU Affero General Public License (AGPL).
|
4
|
+
* See License-AGPL.txt in the project root for license information.
|
5
|
+
*/
|
6
|
+
import { CreateProjectRequest, CreateProjectResponse, DeleteProjectRequest, DeleteProjectResponse, GetProjectRequest, GetProjectResponse, ListProjectsRequest, ListProjectsResponse } from "./projects_pb.js";
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
8
|
+
/**
|
9
|
+
* @generated from service gitpod.experimental.v1.ProjectsService
|
10
|
+
*/
|
11
|
+
export declare const ProjectsService: {
|
12
|
+
readonly typeName: "gitpod.experimental.v1.ProjectsService";
|
13
|
+
readonly methods: {
|
14
|
+
/**
|
15
|
+
* Creates a new project.
|
16
|
+
*
|
17
|
+
* @generated from rpc gitpod.experimental.v1.ProjectsService.CreateProject
|
18
|
+
*/
|
19
|
+
readonly createProject: {
|
20
|
+
readonly name: "CreateProject";
|
21
|
+
readonly I: typeof CreateProjectRequest;
|
22
|
+
readonly O: typeof CreateProjectResponse;
|
23
|
+
readonly kind: MethodKind.Unary;
|
24
|
+
};
|
25
|
+
/**
|
26
|
+
* Retrieves a project.
|
27
|
+
*
|
28
|
+
* @generated from rpc gitpod.experimental.v1.ProjectsService.GetProject
|
29
|
+
*/
|
30
|
+
readonly getProject: {
|
31
|
+
readonly name: "GetProject";
|
32
|
+
readonly I: typeof GetProjectRequest;
|
33
|
+
readonly O: typeof GetProjectResponse;
|
34
|
+
readonly kind: MethodKind.Unary;
|
35
|
+
};
|
36
|
+
/**
|
37
|
+
* Lists projects.
|
38
|
+
*
|
39
|
+
* @generated from rpc gitpod.experimental.v1.ProjectsService.ListProjects
|
40
|
+
*/
|
41
|
+
readonly listProjects: {
|
42
|
+
readonly name: "ListProjects";
|
43
|
+
readonly I: typeof ListProjectsRequest;
|
44
|
+
readonly O: typeof ListProjectsResponse;
|
45
|
+
readonly kind: MethodKind.Unary;
|
46
|
+
};
|
47
|
+
/**
|
48
|
+
* Deletes a project.
|
49
|
+
*
|
50
|
+
* @generated from rpc gitpod.experimental.v1.ProjectsService.DeleteProject
|
51
|
+
*/
|
52
|
+
readonly deleteProject: {
|
53
|
+
readonly name: "DeleteProject";
|
54
|
+
readonly I: typeof DeleteProjectRequest;
|
55
|
+
readonly O: typeof DeleteProjectResponse;
|
56
|
+
readonly kind: MethodKind.Unary;
|
57
|
+
};
|
58
|
+
};
|
59
|
+
};
|
60
|
+
//# sourceMappingURL=projects_connectweb.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"projects_connectweb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/projects_connectweb.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,OAAO,EAAC,oBAAoB,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,oBAAoB,EAAC,MAAM,kBAAkB,CAAC;AAC5M,OAAO,EAAC,UAAU,EAAC,MAAM,oBAAoB,CAAC;AAE9C;;GAEG;AACH,eAAO,MAAM,eAAe;;;QAGxB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
"use strict";
|
2
|
+
/**
|
3
|
+
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
4
|
+
* Licensed under the GNU Affero General Public License (AGPL).
|
5
|
+
* See License-AGPL.txt in the project root for license information.
|
6
|
+
*/
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
8
|
+
exports.ProjectsService = void 0;
|
9
|
+
// @generated by protoc-gen-connect-web v0.2.1 with parameter "target=ts"
|
10
|
+
// @generated from file gitpod/experimental/v1/projects.proto (package gitpod.experimental.v1, syntax proto3)
|
11
|
+
/* eslint-disable */
|
12
|
+
/* @ts-nocheck */
|
13
|
+
const projects_pb_js_1 = require("./projects_pb.js");
|
14
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
15
|
+
/**
|
16
|
+
* @generated from service gitpod.experimental.v1.ProjectsService
|
17
|
+
*/
|
18
|
+
exports.ProjectsService = {
|
19
|
+
typeName: "gitpod.experimental.v1.ProjectsService",
|
20
|
+
methods: {
|
21
|
+
/**
|
22
|
+
* Creates a new project.
|
23
|
+
*
|
24
|
+
* @generated from rpc gitpod.experimental.v1.ProjectsService.CreateProject
|
25
|
+
*/
|
26
|
+
createProject: {
|
27
|
+
name: "CreateProject",
|
28
|
+
I: projects_pb_js_1.CreateProjectRequest,
|
29
|
+
O: projects_pb_js_1.CreateProjectResponse,
|
30
|
+
kind: protobuf_1.MethodKind.Unary,
|
31
|
+
},
|
32
|
+
/**
|
33
|
+
* Retrieves a project.
|
34
|
+
*
|
35
|
+
* @generated from rpc gitpod.experimental.v1.ProjectsService.GetProject
|
36
|
+
*/
|
37
|
+
getProject: {
|
38
|
+
name: "GetProject",
|
39
|
+
I: projects_pb_js_1.GetProjectRequest,
|
40
|
+
O: projects_pb_js_1.GetProjectResponse,
|
41
|
+
kind: protobuf_1.MethodKind.Unary,
|
42
|
+
},
|
43
|
+
/**
|
44
|
+
* Lists projects.
|
45
|
+
*
|
46
|
+
* @generated from rpc gitpod.experimental.v1.ProjectsService.ListProjects
|
47
|
+
*/
|
48
|
+
listProjects: {
|
49
|
+
name: "ListProjects",
|
50
|
+
I: projects_pb_js_1.ListProjectsRequest,
|
51
|
+
O: projects_pb_js_1.ListProjectsResponse,
|
52
|
+
kind: protobuf_1.MethodKind.Unary,
|
53
|
+
},
|
54
|
+
/**
|
55
|
+
* Deletes a project.
|
56
|
+
*
|
57
|
+
* @generated from rpc gitpod.experimental.v1.ProjectsService.DeleteProject
|
58
|
+
*/
|
59
|
+
deleteProject: {
|
60
|
+
name: "DeleteProject",
|
61
|
+
I: projects_pb_js_1.DeleteProjectRequest,
|
62
|
+
O: projects_pb_js_1.DeleteProjectResponse,
|
63
|
+
kind: protobuf_1.MethodKind.Unary,
|
64
|
+
},
|
65
|
+
}
|
66
|
+
};
|
67
|
+
//# sourceMappingURL=projects_connectweb.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"projects_connectweb.js","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/projects_connectweb.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,yEAAyE;AACzE,6GAA6G;AAC7G,oBAAoB;AACpB,iBAAiB;AAEjB,qDAA4M;AAC5M,iDAA8C;AAE9C;;GAEG;AACU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,wCAAwC;IAClD,OAAO,EAAE;QACP;;;;WAIG;QACH,aAAa,EAAE;YACb,IAAI,EAAE,eAAe;YACrB,CAAC,EAAE,qCAAoB;YACvB,CAAC,EAAE,sCAAqB;YACxB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,UAAU,EAAE;YACV,IAAI,EAAE,YAAY;YAClB,CAAC,EAAE,kCAAiB;YACpB,CAAC,EAAE,mCAAkB;YACrB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,YAAY,EAAE;YACZ,IAAI,EAAE,cAAc;YACpB,CAAC,EAAE,oCAAmB;YACtB,CAAC,EAAE,qCAAoB;YACvB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,aAAa,EAAE;YACb,IAAI,EAAE,eAAe;YACrB,CAAC,EAAE,qCAAoB;YACvB,CAAC,EAAE,sCAAqB;YACxB,IAAI,EAAE,qBAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
|