@lansweeper/multitenant-api-grpc 0.0.6
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 +65 -0
- package/gen-proto/accounts_grpc_pb.js +1 -0
- package/gen-proto/accounts_pb.d.ts +85 -0
- package/gen-proto/accounts_pb.js +645 -0
- package/gen-proto/image.json +1 -0
- package/gen-proto/index.d.ts +6 -0
- package/gen-proto/index.js +11 -0
- package/gen-proto/installs_grpc_pb.js +1 -0
- package/gen-proto/installs_pb.d.ts +602 -0
- package/gen-proto/installs_pb.js +4782 -0
- package/gen-proto/multitenant_grpc_pb.d.ts +267 -0
- package/gen-proto/multitenant_grpc_pb.js +476 -0
- package/gen-proto/multitenant_pb.d.ts +11 -0
- package/gen-proto/multitenant_pb.js +25 -0
- package/gen-proto/profiles_grpc_pb.js +1 -0
- package/gen-proto/profiles_pb.d.ts +131 -0
- package/gen-proto/profiles_pb.js +1011 -0
- package/gen-proto/sites_grpc_pb.js +1 -0
- package/gen-proto/sites_pb.d.ts +90 -0
- package/gen-proto/sites_pb.js +636 -0
- package/package.json +12 -0
- package/proto/accounts.proto +20 -0
- package/proto/installs.proto +137 -0
- package/proto/multitenant.proto +38 -0
- package/proto/profiles.proto +31 -0
- package/proto/sites.proto +29 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## 0.0.6 (2021-08-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* add missing google protobuf dependency ([eba74ae](https://github.com/Lansweeper/lansweeperapis/commit/eba74aecdb257e6119d172a80129e7ea0fd258d2))
|
|
12
|
+
* move files ([c5374c4](https://github.com/Lansweeper/lansweeperapis/commit/c5374c41c52523a34a5efb9e7099f1b6e4b4d9ca))
|
|
13
|
+
* move to packages ([8f65954](https://github.com/Lansweeper/lansweeperapis/commit/8f65954c806045774d7236f7d503780e127cb6c0))
|
|
14
|
+
* revert movement ([0894267](https://github.com/Lansweeper/lansweeperapis/commit/0894267070f4d31436593ca5b860309498ad8842))
|
|
15
|
+
* service name in protos to avoid duplication ([1b92705](https://github.com/Lansweeper/lansweeperapis/commit/1b9270542f6077daa4b10ebe2462d7fbb1a6685e))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## [0.0.5](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/multitenant-grpc@0.0.4...@lansweeper/multitenant-grpc@0.0.5) (2021-08-24)
|
|
22
|
+
|
|
23
|
+
**Note:** Version bump only for package @lansweeper/multitenant-grpc
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## [0.0.4](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/multitenant-grpc@0.0.3...@lansweeper/multitenant-grpc@0.0.4) (2021-05-24)
|
|
30
|
+
|
|
31
|
+
**Note:** Version bump only for package @lansweeper/multitenant-grpc
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## [0.0.3](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/multitenant-grpc@0.0.2...@lansweeper/multitenant-grpc@0.0.3) (2020-08-06)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Bug Fixes
|
|
41
|
+
|
|
42
|
+
* add missing google protobuf dependency ([eba74ae](https://github.com/Lansweeper/lansweeperapis/commit/eba74aecdb257e6119d172a80129e7ea0fd258d2))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
## [0.0.2](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/multitenant-grpc@0.0.1...@lansweeper/multitenant-grpc@0.0.2) (2020-08-06)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### Bug Fixes
|
|
52
|
+
|
|
53
|
+
* service name in protos to avoid duplication ([1b92705](https://github.com/Lansweeper/lansweeperapis/commit/1b9270542f6077daa4b10ebe2462d7fbb1a6685e))
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
## 0.0.1 (2020-08-03)
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
- move files ([c5374c4](https://github.com/Lansweeper/lansweeperapis/commit/c5374c41c52523a34a5efb9e7099f1b6e4b4d9ca))
|
|
64
|
+
- move to packages ([8f65954](https://github.com/Lansweeper/lansweeperapis/commit/8f65954c806045774d7236f7d503780e127cb6c0))
|
|
65
|
+
- revert movement ([0894267](https://github.com/Lansweeper/lansweeperapis/commit/0894267070f4d31436593ca5b860309498ad8842))
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// GENERATED CODE -- NO SERVICES IN PROTO
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
// package: lansweeper.multitenant.v1
|
|
2
|
+
// file: accounts.proto
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
import * as jspb from "google-protobuf";
|
|
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
|
+
}
|