@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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
// GENERATED CODE -- NO SERVICES IN PROTO
|
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
// package: lansweeper.multitenant.v1
|
|
2
|
-
// file: profiles.proto
|
|
3
|
-
|
|
4
|
-
/* tslint:disable */
|
|
5
|
-
/* eslint-disable */
|
|
6
|
-
|
|
7
|
-
import * as jspb from "google-protobuf";
|
|
8
|
-
import * as sites_pb from "./sites_pb";
|
|
9
|
-
|
|
10
|
-
export class Profile extends jspb.Message {
|
|
11
|
-
getId(): string;
|
|
12
|
-
setId(value: string): Profile;
|
|
13
|
-
getSiteId(): string;
|
|
14
|
-
setSiteId(value: string): Profile;
|
|
15
|
-
|
|
16
|
-
hasSite(): boolean;
|
|
17
|
-
clearSite(): void;
|
|
18
|
-
getSite(): sites_pb.PreviewSite | undefined;
|
|
19
|
-
setSite(value?: sites_pb.PreviewSite): Profile;
|
|
20
|
-
getIsOwner(): boolean;
|
|
21
|
-
setIsOwner(value: boolean): Profile;
|
|
22
|
-
|
|
23
|
-
serializeBinary(): Uint8Array;
|
|
24
|
-
toObject(includeInstance?: boolean): Profile.AsObject;
|
|
25
|
-
static toObject(includeInstance: boolean, msg: Profile): Profile.AsObject;
|
|
26
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
27
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
28
|
-
static serializeBinaryToWriter(message: Profile, writer: jspb.BinaryWriter): void;
|
|
29
|
-
static deserializeBinary(bytes: Uint8Array): Profile;
|
|
30
|
-
static deserializeBinaryFromReader(message: Profile, reader: jspb.BinaryReader): Profile;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export namespace Profile {
|
|
34
|
-
export type AsObject = {
|
|
35
|
-
id: string,
|
|
36
|
-
siteId: string,
|
|
37
|
-
site?: sites_pb.PreviewSite.AsObject,
|
|
38
|
-
isOwner: boolean,
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export class ListProfilesByAccountIdRequest extends jspb.Message {
|
|
43
|
-
getAccountId(): string;
|
|
44
|
-
setAccountId(value: string): ListProfilesByAccountIdRequest;
|
|
45
|
-
getIncludeBlocks(): boolean;
|
|
46
|
-
setIncludeBlocks(value: boolean): ListProfilesByAccountIdRequest;
|
|
47
|
-
|
|
48
|
-
serializeBinary(): Uint8Array;
|
|
49
|
-
toObject(includeInstance?: boolean): ListProfilesByAccountIdRequest.AsObject;
|
|
50
|
-
static toObject(includeInstance: boolean, msg: ListProfilesByAccountIdRequest): ListProfilesByAccountIdRequest.AsObject;
|
|
51
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
52
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
53
|
-
static serializeBinaryToWriter(message: ListProfilesByAccountIdRequest, writer: jspb.BinaryWriter): void;
|
|
54
|
-
static deserializeBinary(bytes: Uint8Array): ListProfilesByAccountIdRequest;
|
|
55
|
-
static deserializeBinaryFromReader(message: ListProfilesByAccountIdRequest, reader: jspb.BinaryReader): ListProfilesByAccountIdRequest;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
export namespace ListProfilesByAccountIdRequest {
|
|
59
|
-
export type AsObject = {
|
|
60
|
-
accountId: string,
|
|
61
|
-
includeBlocks: boolean,
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export class ListProfilesByAccountIdResponse extends jspb.Message {
|
|
66
|
-
clearProfileList(): void;
|
|
67
|
-
getProfileList(): Array<Profile>;
|
|
68
|
-
setProfileList(value: Array<Profile>): ListProfilesByAccountIdResponse;
|
|
69
|
-
addProfile(value?: Profile, index?: number): Profile;
|
|
70
|
-
|
|
71
|
-
serializeBinary(): Uint8Array;
|
|
72
|
-
toObject(includeInstance?: boolean): ListProfilesByAccountIdResponse.AsObject;
|
|
73
|
-
static toObject(includeInstance: boolean, msg: ListProfilesByAccountIdResponse): ListProfilesByAccountIdResponse.AsObject;
|
|
74
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
75
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
76
|
-
static serializeBinaryToWriter(message: ListProfilesByAccountIdResponse, writer: jspb.BinaryWriter): void;
|
|
77
|
-
static deserializeBinary(bytes: Uint8Array): ListProfilesByAccountIdResponse;
|
|
78
|
-
static deserializeBinaryFromReader(message: ListProfilesByAccountIdResponse, reader: jspb.BinaryReader): ListProfilesByAccountIdResponse;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export namespace ListProfilesByAccountIdResponse {
|
|
82
|
-
export type AsObject = {
|
|
83
|
-
profileList: Array<Profile.AsObject>,
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
export class CheckAccessToSiteByAccountIdRequest extends jspb.Message {
|
|
88
|
-
getAccountId(): string;
|
|
89
|
-
setAccountId(value: string): CheckAccessToSiteByAccountIdRequest;
|
|
90
|
-
getSiteId(): string;
|
|
91
|
-
setSiteId(value: string): CheckAccessToSiteByAccountIdRequest;
|
|
92
|
-
getOnlyOwner(): boolean;
|
|
93
|
-
setOnlyOwner(value: boolean): CheckAccessToSiteByAccountIdRequest;
|
|
94
|
-
|
|
95
|
-
serializeBinary(): Uint8Array;
|
|
96
|
-
toObject(includeInstance?: boolean): CheckAccessToSiteByAccountIdRequest.AsObject;
|
|
97
|
-
static toObject(includeInstance: boolean, msg: CheckAccessToSiteByAccountIdRequest): CheckAccessToSiteByAccountIdRequest.AsObject;
|
|
98
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
99
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
100
|
-
static serializeBinaryToWriter(message: CheckAccessToSiteByAccountIdRequest, writer: jspb.BinaryWriter): void;
|
|
101
|
-
static deserializeBinary(bytes: Uint8Array): CheckAccessToSiteByAccountIdRequest;
|
|
102
|
-
static deserializeBinaryFromReader(message: CheckAccessToSiteByAccountIdRequest, reader: jspb.BinaryReader): CheckAccessToSiteByAccountIdRequest;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
export namespace CheckAccessToSiteByAccountIdRequest {
|
|
106
|
-
export type AsObject = {
|
|
107
|
-
accountId: string,
|
|
108
|
-
siteId: string,
|
|
109
|
-
onlyOwner: boolean,
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
export class CheckAccessToSiteByAccountIdResponse extends jspb.Message {
|
|
114
|
-
getAccess(): boolean;
|
|
115
|
-
setAccess(value: boolean): CheckAccessToSiteByAccountIdResponse;
|
|
116
|
-
|
|
117
|
-
serializeBinary(): Uint8Array;
|
|
118
|
-
toObject(includeInstance?: boolean): CheckAccessToSiteByAccountIdResponse.AsObject;
|
|
119
|
-
static toObject(includeInstance: boolean, msg: CheckAccessToSiteByAccountIdResponse): CheckAccessToSiteByAccountIdResponse.AsObject;
|
|
120
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
121
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
122
|
-
static serializeBinaryToWriter(message: CheckAccessToSiteByAccountIdResponse, writer: jspb.BinaryWriter): void;
|
|
123
|
-
static deserializeBinary(bytes: Uint8Array): CheckAccessToSiteByAccountIdResponse;
|
|
124
|
-
static deserializeBinaryFromReader(message: CheckAccessToSiteByAccountIdResponse, reader: jspb.BinaryReader): CheckAccessToSiteByAccountIdResponse;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
export namespace CheckAccessToSiteByAccountIdResponse {
|
|
128
|
-
export type AsObject = {
|
|
129
|
-
access: boolean,
|
|
130
|
-
}
|
|
131
|
-
}
|