@lansweeper/multitenant-api-grpc 0.0.9 → 0.0.11
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/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/index.d.ts +0 -4
- package/gen-proto/index.js +1 -9
- package/gen-proto/multitenant_grpc_pb.d.ts +120 -125
- package/gen-proto/multitenant_grpc_pb.js +61 -64
- package/gen-proto/multitenant_pb.d.ts +688 -4
- package/gen-proto/multitenant_pb.js +5492 -8
- package/package.json +3 -2
- package/proto/multitenant.proto +160 -4
- package/gen-proto/accounts_grpc_pb.js +0 -1
- package/gen-proto/accounts_pb.d.ts +0 -85
- package/gen-proto/accounts_pb.js +0 -645
- package/gen-proto/installs_grpc_pb.js +0 -1
- package/gen-proto/installs_pb.d.ts +0 -412
- package/gen-proto/installs_pb.js +0 -3275
- package/gen-proto/profiles_grpc_pb.js +0 -1
- package/gen-proto/profiles_pb.d.ts +0 -131
- package/gen-proto/profiles_pb.js +0 -1011
- package/gen-proto/sites_grpc_pb.js +0 -1
- package/gen-proto/sites_pb.d.ts +0 -90
- package/gen-proto/sites_pb.js +0 -636
- package/proto/accounts.proto +0 -20
- package/proto/installs.proto +0 -97
- package/proto/profiles.proto +0 -31
- package/proto/sites.proto +0 -29
|
@@ -5,7 +5,691 @@
|
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
|
|
7
7
|
import * as jspb from "google-protobuf";
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
|
|
9
|
+
export class PreviewAccount extends jspb.Message {
|
|
10
|
+
getId(): string;
|
|
11
|
+
setId(value: string): PreviewAccount;
|
|
12
|
+
getUsername(): string;
|
|
13
|
+
setUsername(value: string): PreviewAccount;
|
|
14
|
+
getName(): string;
|
|
15
|
+
setName(value: string): PreviewAccount;
|
|
16
|
+
getSurname(): string;
|
|
17
|
+
setSurname(value: string): PreviewAccount;
|
|
18
|
+
getEmail(): string;
|
|
19
|
+
setEmail(value: string): PreviewAccount;
|
|
20
|
+
getImageUrl(): string;
|
|
21
|
+
setImageUrl(value: string): PreviewAccount;
|
|
22
|
+
|
|
23
|
+
serializeBinary(): Uint8Array;
|
|
24
|
+
toObject(includeInstance?: boolean): PreviewAccount.AsObject;
|
|
25
|
+
static toObject(includeInstance: boolean, msg: PreviewAccount): PreviewAccount.AsObject;
|
|
26
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
27
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
28
|
+
static serializeBinaryToWriter(message: PreviewAccount, writer: jspb.BinaryWriter): void;
|
|
29
|
+
static deserializeBinary(bytes: Uint8Array): PreviewAccount;
|
|
30
|
+
static deserializeBinaryFromReader(message: PreviewAccount, reader: jspb.BinaryReader): PreviewAccount;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export namespace PreviewAccount {
|
|
34
|
+
export type AsObject = {
|
|
35
|
+
id: string,
|
|
36
|
+
username: string,
|
|
37
|
+
name: string,
|
|
38
|
+
surname: string,
|
|
39
|
+
email: string,
|
|
40
|
+
imageUrl: string,
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export class GetPreviewAccountByIdRequest extends jspb.Message {
|
|
45
|
+
getId(): string;
|
|
46
|
+
setId(value: string): GetPreviewAccountByIdRequest;
|
|
47
|
+
|
|
48
|
+
serializeBinary(): Uint8Array;
|
|
49
|
+
toObject(includeInstance?: boolean): GetPreviewAccountByIdRequest.AsObject;
|
|
50
|
+
static toObject(includeInstance: boolean, msg: GetPreviewAccountByIdRequest): GetPreviewAccountByIdRequest.AsObject;
|
|
51
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
52
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
53
|
+
static serializeBinaryToWriter(message: GetPreviewAccountByIdRequest, writer: jspb.BinaryWriter): void;
|
|
54
|
+
static deserializeBinary(bytes: Uint8Array): GetPreviewAccountByIdRequest;
|
|
55
|
+
static deserializeBinaryFromReader(message: GetPreviewAccountByIdRequest, reader: jspb.BinaryReader): GetPreviewAccountByIdRequest;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export namespace GetPreviewAccountByIdRequest {
|
|
59
|
+
export type AsObject = {
|
|
60
|
+
id: string,
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export class GetPreviewAccountByIdResponse extends jspb.Message {
|
|
65
|
+
|
|
66
|
+
hasAccount(): boolean;
|
|
67
|
+
clearAccount(): void;
|
|
68
|
+
getAccount(): PreviewAccount | undefined;
|
|
69
|
+
setAccount(value?: PreviewAccount): GetPreviewAccountByIdResponse;
|
|
70
|
+
|
|
71
|
+
serializeBinary(): Uint8Array;
|
|
72
|
+
toObject(includeInstance?: boolean): GetPreviewAccountByIdResponse.AsObject;
|
|
73
|
+
static toObject(includeInstance: boolean, msg: GetPreviewAccountByIdResponse): GetPreviewAccountByIdResponse.AsObject;
|
|
74
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
75
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
76
|
+
static serializeBinaryToWriter(message: GetPreviewAccountByIdResponse, writer: jspb.BinaryWriter): void;
|
|
77
|
+
static deserializeBinary(bytes: Uint8Array): GetPreviewAccountByIdResponse;
|
|
78
|
+
static deserializeBinaryFromReader(message: GetPreviewAccountByIdResponse, reader: jspb.BinaryReader): GetPreviewAccountByIdResponse;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export namespace GetPreviewAccountByIdResponse {
|
|
82
|
+
export type AsObject = {
|
|
83
|
+
account?: PreviewAccount.AsObject,
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export class PreviewSite extends jspb.Message {
|
|
88
|
+
getId(): string;
|
|
89
|
+
setId(value: string): PreviewSite;
|
|
90
|
+
getName(): string;
|
|
91
|
+
setName(value: string): PreviewSite;
|
|
92
|
+
getCompanyName(): string;
|
|
93
|
+
setCompanyName(value: string): PreviewSite;
|
|
94
|
+
getLogoUrl(): string;
|
|
95
|
+
setLogoUrl(value: string): PreviewSite;
|
|
96
|
+
getMode(): SiteMode;
|
|
97
|
+
setMode(value: SiteMode): PreviewSite;
|
|
98
|
+
|
|
99
|
+
serializeBinary(): Uint8Array;
|
|
100
|
+
toObject(includeInstance?: boolean): PreviewSite.AsObject;
|
|
101
|
+
static toObject(includeInstance: boolean, msg: PreviewSite): PreviewSite.AsObject;
|
|
102
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
103
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
104
|
+
static serializeBinaryToWriter(message: PreviewSite, writer: jspb.BinaryWriter): void;
|
|
105
|
+
static deserializeBinary(bytes: Uint8Array): PreviewSite;
|
|
106
|
+
static deserializeBinaryFromReader(message: PreviewSite, reader: jspb.BinaryReader): PreviewSite;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export namespace PreviewSite {
|
|
110
|
+
export type AsObject = {
|
|
111
|
+
id: string,
|
|
112
|
+
name: string,
|
|
113
|
+
companyName: string,
|
|
114
|
+
logoUrl: string,
|
|
115
|
+
mode: SiteMode,
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export class PatchSiteModeRequest extends jspb.Message {
|
|
120
|
+
getId(): string;
|
|
121
|
+
setId(value: string): PatchSiteModeRequest;
|
|
122
|
+
getMode(): SiteMode;
|
|
123
|
+
setMode(value: SiteMode): PatchSiteModeRequest;
|
|
124
|
+
|
|
125
|
+
serializeBinary(): Uint8Array;
|
|
126
|
+
toObject(includeInstance?: boolean): PatchSiteModeRequest.AsObject;
|
|
127
|
+
static toObject(includeInstance: boolean, msg: PatchSiteModeRequest): PatchSiteModeRequest.AsObject;
|
|
128
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
129
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
130
|
+
static serializeBinaryToWriter(message: PatchSiteModeRequest, writer: jspb.BinaryWriter): void;
|
|
131
|
+
static deserializeBinary(bytes: Uint8Array): PatchSiteModeRequest;
|
|
132
|
+
static deserializeBinaryFromReader(message: PatchSiteModeRequest, reader: jspb.BinaryReader): PatchSiteModeRequest;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
export namespace PatchSiteModeRequest {
|
|
136
|
+
export type AsObject = {
|
|
137
|
+
id: string,
|
|
138
|
+
mode: SiteMode,
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export class PatchSiteModeResponse extends jspb.Message {
|
|
143
|
+
getSuccess(): boolean;
|
|
144
|
+
setSuccess(value: boolean): PatchSiteModeResponse;
|
|
145
|
+
|
|
146
|
+
serializeBinary(): Uint8Array;
|
|
147
|
+
toObject(includeInstance?: boolean): PatchSiteModeResponse.AsObject;
|
|
148
|
+
static toObject(includeInstance: boolean, msg: PatchSiteModeResponse): PatchSiteModeResponse.AsObject;
|
|
149
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
150
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
151
|
+
static serializeBinaryToWriter(message: PatchSiteModeResponse, writer: jspb.BinaryWriter): void;
|
|
152
|
+
static deserializeBinary(bytes: Uint8Array): PatchSiteModeResponse;
|
|
153
|
+
static deserializeBinaryFromReader(message: PatchSiteModeResponse, reader: jspb.BinaryReader): PatchSiteModeResponse;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export namespace PatchSiteModeResponse {
|
|
157
|
+
export type AsObject = {
|
|
158
|
+
success: boolean,
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export class Profile extends jspb.Message {
|
|
163
|
+
getId(): string;
|
|
164
|
+
setId(value: string): Profile;
|
|
165
|
+
getSiteId(): string;
|
|
166
|
+
setSiteId(value: string): Profile;
|
|
167
|
+
|
|
168
|
+
hasSite(): boolean;
|
|
169
|
+
clearSite(): void;
|
|
170
|
+
getSite(): PreviewSite | undefined;
|
|
171
|
+
setSite(value?: PreviewSite): Profile;
|
|
172
|
+
getIsOwner(): boolean;
|
|
173
|
+
setIsOwner(value: boolean): Profile;
|
|
174
|
+
|
|
175
|
+
serializeBinary(): Uint8Array;
|
|
176
|
+
toObject(includeInstance?: boolean): Profile.AsObject;
|
|
177
|
+
static toObject(includeInstance: boolean, msg: Profile): Profile.AsObject;
|
|
178
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
179
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
180
|
+
static serializeBinaryToWriter(message: Profile, writer: jspb.BinaryWriter): void;
|
|
181
|
+
static deserializeBinary(bytes: Uint8Array): Profile;
|
|
182
|
+
static deserializeBinaryFromReader(message: Profile, reader: jspb.BinaryReader): Profile;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export namespace Profile {
|
|
186
|
+
export type AsObject = {
|
|
187
|
+
id: string,
|
|
188
|
+
siteId: string,
|
|
189
|
+
site?: PreviewSite.AsObject,
|
|
190
|
+
isOwner: boolean,
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export class ListProfilesByAccountIdRequest extends jspb.Message {
|
|
195
|
+
getAccountId(): string;
|
|
196
|
+
setAccountId(value: string): ListProfilesByAccountIdRequest;
|
|
197
|
+
getIncludeBlocks(): boolean;
|
|
198
|
+
setIncludeBlocks(value: boolean): ListProfilesByAccountIdRequest;
|
|
199
|
+
|
|
200
|
+
serializeBinary(): Uint8Array;
|
|
201
|
+
toObject(includeInstance?: boolean): ListProfilesByAccountIdRequest.AsObject;
|
|
202
|
+
static toObject(includeInstance: boolean, msg: ListProfilesByAccountIdRequest): ListProfilesByAccountIdRequest.AsObject;
|
|
203
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
204
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
205
|
+
static serializeBinaryToWriter(message: ListProfilesByAccountIdRequest, writer: jspb.BinaryWriter): void;
|
|
206
|
+
static deserializeBinary(bytes: Uint8Array): ListProfilesByAccountIdRequest;
|
|
207
|
+
static deserializeBinaryFromReader(message: ListProfilesByAccountIdRequest, reader: jspb.BinaryReader): ListProfilesByAccountIdRequest;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export namespace ListProfilesByAccountIdRequest {
|
|
211
|
+
export type AsObject = {
|
|
212
|
+
accountId: string,
|
|
213
|
+
includeBlocks: boolean,
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
export class ListProfilesByAccountIdResponse extends jspb.Message {
|
|
218
|
+
clearProfileList(): void;
|
|
219
|
+
getProfileList(): Array<Profile>;
|
|
220
|
+
setProfileList(value: Array<Profile>): ListProfilesByAccountIdResponse;
|
|
221
|
+
addProfile(value?: Profile, index?: number): Profile;
|
|
222
|
+
|
|
223
|
+
serializeBinary(): Uint8Array;
|
|
224
|
+
toObject(includeInstance?: boolean): ListProfilesByAccountIdResponse.AsObject;
|
|
225
|
+
static toObject(includeInstance: boolean, msg: ListProfilesByAccountIdResponse): ListProfilesByAccountIdResponse.AsObject;
|
|
226
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
227
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
228
|
+
static serializeBinaryToWriter(message: ListProfilesByAccountIdResponse, writer: jspb.BinaryWriter): void;
|
|
229
|
+
static deserializeBinary(bytes: Uint8Array): ListProfilesByAccountIdResponse;
|
|
230
|
+
static deserializeBinaryFromReader(message: ListProfilesByAccountIdResponse, reader: jspb.BinaryReader): ListProfilesByAccountIdResponse;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export namespace ListProfilesByAccountIdResponse {
|
|
234
|
+
export type AsObject = {
|
|
235
|
+
profileList: Array<Profile.AsObject>,
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export class CheckAccessToSiteByAccountIdRequest extends jspb.Message {
|
|
240
|
+
getAccountId(): string;
|
|
241
|
+
setAccountId(value: string): CheckAccessToSiteByAccountIdRequest;
|
|
242
|
+
getSiteId(): string;
|
|
243
|
+
setSiteId(value: string): CheckAccessToSiteByAccountIdRequest;
|
|
244
|
+
getOnlyOwner(): boolean;
|
|
245
|
+
setOnlyOwner(value: boolean): CheckAccessToSiteByAccountIdRequest;
|
|
246
|
+
|
|
247
|
+
serializeBinary(): Uint8Array;
|
|
248
|
+
toObject(includeInstance?: boolean): CheckAccessToSiteByAccountIdRequest.AsObject;
|
|
249
|
+
static toObject(includeInstance: boolean, msg: CheckAccessToSiteByAccountIdRequest): CheckAccessToSiteByAccountIdRequest.AsObject;
|
|
250
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
251
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
252
|
+
static serializeBinaryToWriter(message: CheckAccessToSiteByAccountIdRequest, writer: jspb.BinaryWriter): void;
|
|
253
|
+
static deserializeBinary(bytes: Uint8Array): CheckAccessToSiteByAccountIdRequest;
|
|
254
|
+
static deserializeBinaryFromReader(message: CheckAccessToSiteByAccountIdRequest, reader: jspb.BinaryReader): CheckAccessToSiteByAccountIdRequest;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export namespace CheckAccessToSiteByAccountIdRequest {
|
|
258
|
+
export type AsObject = {
|
|
259
|
+
accountId: string,
|
|
260
|
+
siteId: string,
|
|
261
|
+
onlyOwner: boolean,
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
export class CheckAccessToSiteByAccountIdResponse extends jspb.Message {
|
|
266
|
+
getAccess(): boolean;
|
|
267
|
+
setAccess(value: boolean): CheckAccessToSiteByAccountIdResponse;
|
|
268
|
+
|
|
269
|
+
serializeBinary(): Uint8Array;
|
|
270
|
+
toObject(includeInstance?: boolean): CheckAccessToSiteByAccountIdResponse.AsObject;
|
|
271
|
+
static toObject(includeInstance: boolean, msg: CheckAccessToSiteByAccountIdResponse): CheckAccessToSiteByAccountIdResponse.AsObject;
|
|
272
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
273
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
274
|
+
static serializeBinaryToWriter(message: CheckAccessToSiteByAccountIdResponse, writer: jspb.BinaryWriter): void;
|
|
275
|
+
static deserializeBinary(bytes: Uint8Array): CheckAccessToSiteByAccountIdResponse;
|
|
276
|
+
static deserializeBinaryFromReader(message: CheckAccessToSiteByAccountIdResponse, reader: jspb.BinaryReader): CheckAccessToSiteByAccountIdResponse;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
export namespace CheckAccessToSiteByAccountIdResponse {
|
|
280
|
+
export type AsObject = {
|
|
281
|
+
access: boolean,
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export class Install extends jspb.Message {
|
|
286
|
+
getId(): string;
|
|
287
|
+
setId(value: string): Install;
|
|
288
|
+
getSiteId(): string;
|
|
289
|
+
setSiteId(value: string): Install;
|
|
290
|
+
getDisplayName(): string;
|
|
291
|
+
setDisplayName(value: string): Install;
|
|
292
|
+
getDescription(): string;
|
|
293
|
+
setDescription(value: string): Install;
|
|
294
|
+
getStatus(): string;
|
|
295
|
+
setStatus(value: string): Install;
|
|
296
|
+
getFqdn(): string;
|
|
297
|
+
setFqdn(value: string): Install;
|
|
298
|
+
getCreatedById(): string;
|
|
299
|
+
setCreatedById(value: string): Install;
|
|
300
|
+
|
|
301
|
+
serializeBinary(): Uint8Array;
|
|
302
|
+
toObject(includeInstance?: boolean): Install.AsObject;
|
|
303
|
+
static toObject(includeInstance: boolean, msg: Install): Install.AsObject;
|
|
304
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
305
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
306
|
+
static serializeBinaryToWriter(message: Install, writer: jspb.BinaryWriter): void;
|
|
307
|
+
static deserializeBinary(bytes: Uint8Array): Install;
|
|
308
|
+
static deserializeBinaryFromReader(message: Install, reader: jspb.BinaryReader): Install;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export namespace Install {
|
|
312
|
+
export type AsObject = {
|
|
313
|
+
id: string,
|
|
314
|
+
siteId: string,
|
|
315
|
+
displayName: string,
|
|
316
|
+
description: string,
|
|
317
|
+
status: string,
|
|
318
|
+
fqdn: string,
|
|
319
|
+
createdById: string,
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export class InstallCredentials extends jspb.Message {
|
|
324
|
+
getClienId(): string;
|
|
325
|
+
setClienId(value: string): InstallCredentials;
|
|
326
|
+
getClientSecret(): string;
|
|
327
|
+
setClientSecret(value: string): InstallCredentials;
|
|
328
|
+
|
|
329
|
+
serializeBinary(): Uint8Array;
|
|
330
|
+
toObject(includeInstance?: boolean): InstallCredentials.AsObject;
|
|
331
|
+
static toObject(includeInstance: boolean, msg: InstallCredentials): InstallCredentials.AsObject;
|
|
332
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
333
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
334
|
+
static serializeBinaryToWriter(message: InstallCredentials, writer: jspb.BinaryWriter): void;
|
|
335
|
+
static deserializeBinary(bytes: Uint8Array): InstallCredentials;
|
|
336
|
+
static deserializeBinaryFromReader(message: InstallCredentials, reader: jspb.BinaryReader): InstallCredentials;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
export namespace InstallCredentials {
|
|
340
|
+
export type AsObject = {
|
|
341
|
+
clienId: string,
|
|
342
|
+
clientSecret: string,
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export class GetInstallsCountBySiteRequest extends jspb.Message {
|
|
347
|
+
getSiteId(): string;
|
|
348
|
+
setSiteId(value: string): GetInstallsCountBySiteRequest;
|
|
349
|
+
|
|
350
|
+
serializeBinary(): Uint8Array;
|
|
351
|
+
toObject(includeInstance?: boolean): GetInstallsCountBySiteRequest.AsObject;
|
|
352
|
+
static toObject(includeInstance: boolean, msg: GetInstallsCountBySiteRequest): GetInstallsCountBySiteRequest.AsObject;
|
|
353
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
354
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
355
|
+
static serializeBinaryToWriter(message: GetInstallsCountBySiteRequest, writer: jspb.BinaryWriter): void;
|
|
356
|
+
static deserializeBinary(bytes: Uint8Array): GetInstallsCountBySiteRequest;
|
|
357
|
+
static deserializeBinaryFromReader(message: GetInstallsCountBySiteRequest, reader: jspb.BinaryReader): GetInstallsCountBySiteRequest;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
export namespace GetInstallsCountBySiteRequest {
|
|
361
|
+
export type AsObject = {
|
|
362
|
+
siteId: string,
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
export class GetInstallsCountResponse extends jspb.Message {
|
|
367
|
+
getCount(): number;
|
|
368
|
+
setCount(value: number): GetInstallsCountResponse;
|
|
369
|
+
|
|
370
|
+
serializeBinary(): Uint8Array;
|
|
371
|
+
toObject(includeInstance?: boolean): GetInstallsCountResponse.AsObject;
|
|
372
|
+
static toObject(includeInstance: boolean, msg: GetInstallsCountResponse): GetInstallsCountResponse.AsObject;
|
|
373
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
374
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
375
|
+
static serializeBinaryToWriter(message: GetInstallsCountResponse, writer: jspb.BinaryWriter): void;
|
|
376
|
+
static deserializeBinary(bytes: Uint8Array): GetInstallsCountResponse;
|
|
377
|
+
static deserializeBinaryFromReader(message: GetInstallsCountResponse, reader: jspb.BinaryReader): GetInstallsCountResponse;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export namespace GetInstallsCountResponse {
|
|
381
|
+
export type AsObject = {
|
|
382
|
+
count: number,
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
export class GetInstallbyClientIdRequest extends jspb.Message {
|
|
387
|
+
getClientId(): string;
|
|
388
|
+
setClientId(value: string): GetInstallbyClientIdRequest;
|
|
389
|
+
|
|
390
|
+
serializeBinary(): Uint8Array;
|
|
391
|
+
toObject(includeInstance?: boolean): GetInstallbyClientIdRequest.AsObject;
|
|
392
|
+
static toObject(includeInstance: boolean, msg: GetInstallbyClientIdRequest): GetInstallbyClientIdRequest.AsObject;
|
|
393
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
394
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
395
|
+
static serializeBinaryToWriter(message: GetInstallbyClientIdRequest, writer: jspb.BinaryWriter): void;
|
|
396
|
+
static deserializeBinary(bytes: Uint8Array): GetInstallbyClientIdRequest;
|
|
397
|
+
static deserializeBinaryFromReader(message: GetInstallbyClientIdRequest, reader: jspb.BinaryReader): GetInstallbyClientIdRequest;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
export namespace GetInstallbyClientIdRequest {
|
|
401
|
+
export type AsObject = {
|
|
402
|
+
clientId: string,
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
export class GetInstallbyClientIdResponse extends jspb.Message {
|
|
407
|
+
|
|
408
|
+
hasInstall(): boolean;
|
|
409
|
+
clearInstall(): void;
|
|
410
|
+
getInstall(): Install | undefined;
|
|
411
|
+
setInstall(value?: Install): GetInstallbyClientIdResponse;
|
|
412
|
+
|
|
413
|
+
serializeBinary(): Uint8Array;
|
|
414
|
+
toObject(includeInstance?: boolean): GetInstallbyClientIdResponse.AsObject;
|
|
415
|
+
static toObject(includeInstance: boolean, msg: GetInstallbyClientIdResponse): GetInstallbyClientIdResponse.AsObject;
|
|
416
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
417
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
418
|
+
static serializeBinaryToWriter(message: GetInstallbyClientIdResponse, writer: jspb.BinaryWriter): void;
|
|
419
|
+
static deserializeBinary(bytes: Uint8Array): GetInstallbyClientIdResponse;
|
|
420
|
+
static deserializeBinaryFromReader(message: GetInstallbyClientIdResponse, reader: jspb.BinaryReader): GetInstallbyClientIdResponse;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
export namespace GetInstallbyClientIdResponse {
|
|
424
|
+
export type AsObject = {
|
|
425
|
+
install?: Install.AsObject,
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export class CreateInstallRequest extends jspb.Message {
|
|
430
|
+
getSiteId(): string;
|
|
431
|
+
setSiteId(value: string): CreateInstallRequest;
|
|
432
|
+
getDisplayName(): string;
|
|
433
|
+
setDisplayName(value: string): CreateInstallRequest;
|
|
434
|
+
getDescription(): string;
|
|
435
|
+
setDescription(value: string): CreateInstallRequest;
|
|
436
|
+
getStatus(): string;
|
|
437
|
+
setStatus(value: string): CreateInstallRequest;
|
|
438
|
+
getFqdn(): string;
|
|
439
|
+
setFqdn(value: string): CreateInstallRequest;
|
|
440
|
+
getCreatedById(): string;
|
|
441
|
+
setCreatedById(value: string): CreateInstallRequest;
|
|
442
|
+
getCreateSqsQueue(): boolean;
|
|
443
|
+
setCreateSqsQueue(value: boolean): CreateInstallRequest;
|
|
444
|
+
|
|
445
|
+
serializeBinary(): Uint8Array;
|
|
446
|
+
toObject(includeInstance?: boolean): CreateInstallRequest.AsObject;
|
|
447
|
+
static toObject(includeInstance: boolean, msg: CreateInstallRequest): CreateInstallRequest.AsObject;
|
|
448
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
449
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
450
|
+
static serializeBinaryToWriter(message: CreateInstallRequest, writer: jspb.BinaryWriter): void;
|
|
451
|
+
static deserializeBinary(bytes: Uint8Array): CreateInstallRequest;
|
|
452
|
+
static deserializeBinaryFromReader(message: CreateInstallRequest, reader: jspb.BinaryReader): CreateInstallRequest;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
export namespace CreateInstallRequest {
|
|
456
|
+
export type AsObject = {
|
|
457
|
+
siteId: string,
|
|
458
|
+
displayName: string,
|
|
459
|
+
description: string,
|
|
460
|
+
status: string,
|
|
461
|
+
fqdn: string,
|
|
462
|
+
createdById: string,
|
|
463
|
+
createSqsQueue: boolean,
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
export class CreateInstallResponse extends jspb.Message {
|
|
468
|
+
|
|
469
|
+
hasInstall(): boolean;
|
|
470
|
+
clearInstall(): void;
|
|
471
|
+
getInstall(): Install | undefined;
|
|
472
|
+
setInstall(value?: Install): CreateInstallResponse;
|
|
473
|
+
|
|
474
|
+
hasCredentials(): boolean;
|
|
475
|
+
clearCredentials(): void;
|
|
476
|
+
getCredentials(): InstallCredentials | undefined;
|
|
477
|
+
setCredentials(value?: InstallCredentials): CreateInstallResponse;
|
|
478
|
+
|
|
479
|
+
serializeBinary(): Uint8Array;
|
|
480
|
+
toObject(includeInstance?: boolean): CreateInstallResponse.AsObject;
|
|
481
|
+
static toObject(includeInstance: boolean, msg: CreateInstallResponse): CreateInstallResponse.AsObject;
|
|
482
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
483
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
484
|
+
static serializeBinaryToWriter(message: CreateInstallResponse, writer: jspb.BinaryWriter): void;
|
|
485
|
+
static deserializeBinary(bytes: Uint8Array): CreateInstallResponse;
|
|
486
|
+
static deserializeBinaryFromReader(message: CreateInstallResponse, reader: jspb.BinaryReader): CreateInstallResponse;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
export namespace CreateInstallResponse {
|
|
490
|
+
export type AsObject = {
|
|
491
|
+
install?: Install.AsObject,
|
|
492
|
+
credentials?: InstallCredentials.AsObject,
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
export class UpdateInstallByClientIdRequest extends jspb.Message {
|
|
497
|
+
getClientId(): string;
|
|
498
|
+
setClientId(value: string): UpdateInstallByClientIdRequest;
|
|
499
|
+
getDisplayName(): string;
|
|
500
|
+
setDisplayName(value: string): UpdateInstallByClientIdRequest;
|
|
501
|
+
getDescription(): string;
|
|
502
|
+
setDescription(value: string): UpdateInstallByClientIdRequest;
|
|
503
|
+
getStatus(): string;
|
|
504
|
+
setStatus(value: string): UpdateInstallByClientIdRequest;
|
|
505
|
+
getFqdn(): string;
|
|
506
|
+
setFqdn(value: string): UpdateInstallByClientIdRequest;
|
|
507
|
+
|
|
508
|
+
hasSyncerSettings(): boolean;
|
|
509
|
+
clearSyncerSettings(): void;
|
|
510
|
+
getSyncerSettings(): UpdateInstallByClientIdRequest.SyncerSettings | undefined;
|
|
511
|
+
setSyncerSettings(value?: UpdateInstallByClientIdRequest.SyncerSettings): UpdateInstallByClientIdRequest;
|
|
512
|
+
|
|
513
|
+
serializeBinary(): Uint8Array;
|
|
514
|
+
toObject(includeInstance?: boolean): UpdateInstallByClientIdRequest.AsObject;
|
|
515
|
+
static toObject(includeInstance: boolean, msg: UpdateInstallByClientIdRequest): UpdateInstallByClientIdRequest.AsObject;
|
|
516
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
517
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
518
|
+
static serializeBinaryToWriter(message: UpdateInstallByClientIdRequest, writer: jspb.BinaryWriter): void;
|
|
519
|
+
static deserializeBinary(bytes: Uint8Array): UpdateInstallByClientIdRequest;
|
|
520
|
+
static deserializeBinaryFromReader(message: UpdateInstallByClientIdRequest, reader: jspb.BinaryReader): UpdateInstallByClientIdRequest;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
export namespace UpdateInstallByClientIdRequest {
|
|
524
|
+
export type AsObject = {
|
|
525
|
+
clientId: string,
|
|
526
|
+
displayName: string,
|
|
527
|
+
description: string,
|
|
528
|
+
status: string,
|
|
529
|
+
fqdn: string,
|
|
530
|
+
syncerSettings?: UpdateInstallByClientIdRequest.SyncerSettings.AsObject,
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
export class SyncerSettings extends jspb.Message {
|
|
535
|
+
getSendChangedDataTimeout(): string;
|
|
536
|
+
setSendChangedDataTimeout(value: string): SyncerSettings;
|
|
537
|
+
getSendFastChangingDataTimeout(): string;
|
|
538
|
+
setSendFastChangingDataTimeout(value: string): SyncerSettings;
|
|
539
|
+
getSendNonChangedDataTimeout(): string;
|
|
540
|
+
setSendNonChangedDataTimeout(value: string): SyncerSettings;
|
|
541
|
+
getSyncIntervalInSeconds(): string;
|
|
542
|
+
setSyncIntervalInSeconds(value: string): SyncerSettings;
|
|
543
|
+
|
|
544
|
+
serializeBinary(): Uint8Array;
|
|
545
|
+
toObject(includeInstance?: boolean): SyncerSettings.AsObject;
|
|
546
|
+
static toObject(includeInstance: boolean, msg: SyncerSettings): SyncerSettings.AsObject;
|
|
547
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
548
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
549
|
+
static serializeBinaryToWriter(message: SyncerSettings, writer: jspb.BinaryWriter): void;
|
|
550
|
+
static deserializeBinary(bytes: Uint8Array): SyncerSettings;
|
|
551
|
+
static deserializeBinaryFromReader(message: SyncerSettings, reader: jspb.BinaryReader): SyncerSettings;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
export namespace SyncerSettings {
|
|
555
|
+
export type AsObject = {
|
|
556
|
+
sendChangedDataTimeout: string,
|
|
557
|
+
sendFastChangingDataTimeout: string,
|
|
558
|
+
sendNonChangedDataTimeout: string,
|
|
559
|
+
syncIntervalInSeconds: string,
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
export class UpdateInstallByClientIdResponse extends jspb.Message {
|
|
566
|
+
|
|
567
|
+
hasInstall(): boolean;
|
|
568
|
+
clearInstall(): void;
|
|
569
|
+
getInstall(): Install | undefined;
|
|
570
|
+
setInstall(value?: Install): UpdateInstallByClientIdResponse;
|
|
571
|
+
|
|
572
|
+
serializeBinary(): Uint8Array;
|
|
573
|
+
toObject(includeInstance?: boolean): UpdateInstallByClientIdResponse.AsObject;
|
|
574
|
+
static toObject(includeInstance: boolean, msg: UpdateInstallByClientIdResponse): UpdateInstallByClientIdResponse.AsObject;
|
|
575
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
576
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
577
|
+
static serializeBinaryToWriter(message: UpdateInstallByClientIdResponse, writer: jspb.BinaryWriter): void;
|
|
578
|
+
static deserializeBinary(bytes: Uint8Array): UpdateInstallByClientIdResponse;
|
|
579
|
+
static deserializeBinaryFromReader(message: UpdateInstallByClientIdResponse, reader: jspb.BinaryReader): UpdateInstallByClientIdResponse;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
export namespace UpdateInstallByClientIdResponse {
|
|
583
|
+
export type AsObject = {
|
|
584
|
+
install?: Install.AsObject,
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
export class RotateInstallByClientIdRequest extends jspb.Message {
|
|
589
|
+
getClientId(): string;
|
|
590
|
+
setClientId(value: string): RotateInstallByClientIdRequest;
|
|
591
|
+
getTrackId(): string;
|
|
592
|
+
setTrackId(value: string): RotateInstallByClientIdRequest;
|
|
593
|
+
|
|
594
|
+
serializeBinary(): Uint8Array;
|
|
595
|
+
toObject(includeInstance?: boolean): RotateInstallByClientIdRequest.AsObject;
|
|
596
|
+
static toObject(includeInstance: boolean, msg: RotateInstallByClientIdRequest): RotateInstallByClientIdRequest.AsObject;
|
|
597
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
598
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
599
|
+
static serializeBinaryToWriter(message: RotateInstallByClientIdRequest, writer: jspb.BinaryWriter): void;
|
|
600
|
+
static deserializeBinary(bytes: Uint8Array): RotateInstallByClientIdRequest;
|
|
601
|
+
static deserializeBinaryFromReader(message: RotateInstallByClientIdRequest, reader: jspb.BinaryReader): RotateInstallByClientIdRequest;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
export namespace RotateInstallByClientIdRequest {
|
|
605
|
+
export type AsObject = {
|
|
606
|
+
clientId: string,
|
|
607
|
+
trackId: string,
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
export class RotateInstallByClientIdResponse extends jspb.Message {
|
|
612
|
+
getSuccess(): boolean;
|
|
613
|
+
setSuccess(value: boolean): RotateInstallByClientIdResponse;
|
|
614
|
+
getSiteId(): string;
|
|
615
|
+
setSiteId(value: string): RotateInstallByClientIdResponse;
|
|
616
|
+
getOldInstallId(): string;
|
|
617
|
+
setOldInstallId(value: string): RotateInstallByClientIdResponse;
|
|
618
|
+
getNewInstallId(): string;
|
|
619
|
+
setNewInstallId(value: string): RotateInstallByClientIdResponse;
|
|
620
|
+
|
|
621
|
+
serializeBinary(): Uint8Array;
|
|
622
|
+
toObject(includeInstance?: boolean): RotateInstallByClientIdResponse.AsObject;
|
|
623
|
+
static toObject(includeInstance: boolean, msg: RotateInstallByClientIdResponse): RotateInstallByClientIdResponse.AsObject;
|
|
624
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
625
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
626
|
+
static serializeBinaryToWriter(message: RotateInstallByClientIdResponse, writer: jspb.BinaryWriter): void;
|
|
627
|
+
static deserializeBinary(bytes: Uint8Array): RotateInstallByClientIdResponse;
|
|
628
|
+
static deserializeBinaryFromReader(message: RotateInstallByClientIdResponse, reader: jspb.BinaryReader): RotateInstallByClientIdResponse;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
export namespace RotateInstallByClientIdResponse {
|
|
632
|
+
export type AsObject = {
|
|
633
|
+
success: boolean,
|
|
634
|
+
siteId: string,
|
|
635
|
+
oldInstallId: string,
|
|
636
|
+
newInstallId: string,
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
export class UnlinkInstallByClientIdRequest extends jspb.Message {
|
|
641
|
+
getClientId(): string;
|
|
642
|
+
setClientId(value: string): UnlinkInstallByClientIdRequest;
|
|
643
|
+
getTrackId(): string;
|
|
644
|
+
setTrackId(value: string): UnlinkInstallByClientIdRequest;
|
|
645
|
+
getRemoveData(): boolean;
|
|
646
|
+
setRemoveData(value: boolean): UnlinkInstallByClientIdRequest;
|
|
647
|
+
getFromOnprem(): boolean;
|
|
648
|
+
setFromOnprem(value: boolean): UnlinkInstallByClientIdRequest;
|
|
649
|
+
|
|
650
|
+
serializeBinary(): Uint8Array;
|
|
651
|
+
toObject(includeInstance?: boolean): UnlinkInstallByClientIdRequest.AsObject;
|
|
652
|
+
static toObject(includeInstance: boolean, msg: UnlinkInstallByClientIdRequest): UnlinkInstallByClientIdRequest.AsObject;
|
|
653
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
654
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
655
|
+
static serializeBinaryToWriter(message: UnlinkInstallByClientIdRequest, writer: jspb.BinaryWriter): void;
|
|
656
|
+
static deserializeBinary(bytes: Uint8Array): UnlinkInstallByClientIdRequest;
|
|
657
|
+
static deserializeBinaryFromReader(message: UnlinkInstallByClientIdRequest, reader: jspb.BinaryReader): UnlinkInstallByClientIdRequest;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
export namespace UnlinkInstallByClientIdRequest {
|
|
661
|
+
export type AsObject = {
|
|
662
|
+
clientId: string,
|
|
663
|
+
trackId: string,
|
|
664
|
+
removeData: boolean,
|
|
665
|
+
fromOnprem: boolean,
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
export class UnlinkInstallByClientIdResponse extends jspb.Message {
|
|
670
|
+
getSuccess(): boolean;
|
|
671
|
+
setSuccess(value: boolean): UnlinkInstallByClientIdResponse;
|
|
672
|
+
|
|
673
|
+
serializeBinary(): Uint8Array;
|
|
674
|
+
toObject(includeInstance?: boolean): UnlinkInstallByClientIdResponse.AsObject;
|
|
675
|
+
static toObject(includeInstance: boolean, msg: UnlinkInstallByClientIdResponse): UnlinkInstallByClientIdResponse.AsObject;
|
|
676
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
677
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
678
|
+
static serializeBinaryToWriter(message: UnlinkInstallByClientIdResponse, writer: jspb.BinaryWriter): void;
|
|
679
|
+
static deserializeBinary(bytes: Uint8Array): UnlinkInstallByClientIdResponse;
|
|
680
|
+
static deserializeBinaryFromReader(message: UnlinkInstallByClientIdResponse, reader: jspb.BinaryReader): UnlinkInstallByClientIdResponse;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
export namespace UnlinkInstallByClientIdResponse {
|
|
684
|
+
export type AsObject = {
|
|
685
|
+
success: boolean,
|
|
686
|
+
}
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
export enum SiteMode {
|
|
690
|
+
UNESPECIFIED = 0,
|
|
691
|
+
CLOUD_NATIVE = 1,
|
|
692
|
+
DEMO = 2,
|
|
693
|
+
HYBRID = 3,
|
|
694
|
+
DUAL = 4,
|
|
695
|
+
}
|