@milaboratories/pl-client 2.11.3 → 2.11.5
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/dist/core/transaction.d.ts +2 -1
- package/dist/core/transaction.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1377 -1173
- package/dist/index.mjs.map +1 -1
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +3 -3
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts +4 -4
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts +16 -16
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts +2 -2
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts +11 -11
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts +8 -8
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts +22 -22
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts +10 -10
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +25 -25
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +50 -50
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +415 -304
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts +70 -66
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts +4 -4
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +16 -16
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +30 -30
- package/dist/proto/google/api/http.d.ts +93 -89
- package/dist/proto/google/api/http.d.ts.map +1 -1
- package/dist/proto/google/protobuf/any.d.ts +2 -2
- package/dist/proto/google/protobuf/descriptor.d.ts +1298 -1151
- package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.d.ts +2 -2
- package/dist/proto/google/protobuf/struct.d.ts +10 -8
- package/dist/proto/google/protobuf/struct.d.ts.map +1 -1
- package/dist/proto/google/protobuf/timestamp.d.ts +2 -2
- package/dist/proto/google/protobuf/wrappers.d.ts +36 -9
- package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/core/ll_client.test.ts +3 -3
- package/src/core/ll_transaction.test.ts +4 -4
- package/src/core/transaction.ts +2 -0
- package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +5 -5
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +23 -24
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +232 -247
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +3 -3
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +13 -13
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +35 -37
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +375 -399
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +11 -11
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +26 -26
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +51 -51
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +687 -418
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +113 -101
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +5 -5
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +17 -17
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +50 -50
- package/src/proto/google/api/http.ts +290 -295
- package/src/proto/google/protobuf/any.ts +3 -3
- package/src/proto/google/protobuf/descriptor.ts +3235 -3123
- package/src/proto/google/protobuf/duration.ts +3 -3
- package/src/proto/google/protobuf/empty.ts +1 -1
- package/src/proto/google/protobuf/struct.ts +13 -11
- package/src/proto/google/protobuf/timestamp.ts +3 -3
- package/src/proto/google/protobuf/wrappers.ts +48 -14
|
@@ -15,7 +15,7 @@ export interface Status {
|
|
|
15
15
|
/**
|
|
16
16
|
* The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
|
|
17
17
|
*
|
|
18
|
-
* @generated from protobuf field: int32 code = 1
|
|
18
|
+
* @generated from protobuf field: int32 code = 1
|
|
19
19
|
*/
|
|
20
20
|
code: number;
|
|
21
21
|
/**
|
|
@@ -23,14 +23,14 @@ export interface Status {
|
|
|
23
23
|
* user-facing error message should be localized and sent in the
|
|
24
24
|
* [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
|
|
25
25
|
*
|
|
26
|
-
* @generated from protobuf field: string message = 2
|
|
26
|
+
* @generated from protobuf field: string message = 2
|
|
27
27
|
*/
|
|
28
28
|
message: string;
|
|
29
29
|
/**
|
|
30
30
|
* A list of messages that carry the error details. There is a common set of
|
|
31
31
|
* message types for APIs to use.
|
|
32
32
|
*
|
|
33
|
-
* @generated from protobuf field: repeated google.protobuf.Any details = 3
|
|
33
|
+
* @generated from protobuf field: repeated google.protobuf.Any details = 3
|
|
34
34
|
*/
|
|
35
35
|
details: Any[];
|
|
36
36
|
}
|
|
@@ -10,8 +10,8 @@ import { JsonValue } from '@protobuf-ts/runtime';
|
|
|
10
10
|
*/
|
|
11
11
|
export interface IDownloadClient {
|
|
12
12
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
* @generated from protobuf rpc: GetDownloadURL
|
|
14
|
+
*/
|
|
15
15
|
getDownloadURL(input: DownloadAPI_GetDownloadURL_Request, options?: RpcOptions): UnaryCall<DownloadAPI_GetDownloadURL_Request, DownloadAPI_GetDownloadURL_Response>;
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
@@ -30,8 +30,8 @@ export declare class DownloadClient implements IDownloadClient, ServiceInfo {
|
|
|
30
30
|
};
|
|
31
31
|
constructor(_transport: RpcTransport);
|
|
32
32
|
/**
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
* @generated from protobuf rpc: GetDownloadURL
|
|
34
|
+
*/
|
|
35
35
|
getDownloadURL(input: DownloadAPI_GetDownloadURL_Request, options?: RpcOptions): UnaryCall<DownloadAPI_GetDownloadURL_Request, DownloadAPI_GetDownloadURL_Response>;
|
|
36
36
|
}
|
|
37
37
|
//# sourceMappingURL=protocol.client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protocol.client.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAG5D,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,YAAY,CAAC;AACtE,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,YAAY,CAAC;AACrE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D;;;;;;GAMG;AACH,MAAM,WAAW,eAAe;
|
|
1
|
+
{"version":3,"file":"protocol.client.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAG5D,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,YAAY,CAAC;AACtE,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,YAAY,CAAC;AACrE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D;;;;;;GAMG;AACH,MAAM,WAAW,eAAe;IAC5B;;OAEG;IACH,cAAc,CAAC,KAAK,EAAE,kCAAkC,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC,kCAAkC,EAAE,mCAAmC,CAAC,CAAC;CACvK;AACD;;;;;;GAMG;AACH,qBAAa,cAAe,YAAW,eAAe,EAAE,WAAW;IAInD,OAAO,CAAC,QAAQ,CAAC,UAAU;IAHvC,QAAQ,SAAqB;IAC7B,OAAO,4DAAoB;IAC3B,OAAO;;MAAoB;gBACE,UAAU,EAAE,YAAY;IAErD;;OAEG;IACH,cAAc,CAAC,KAAK,EAAE,kCAAkC,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC,kCAAkC,EAAE,mCAAmC,CAAC;CAItK"}
|
package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts
CHANGED
|
@@ -15,16 +15,16 @@ export interface DownloadAPI_GetDownloadURL {
|
|
|
15
15
|
*/
|
|
16
16
|
export interface DownloadAPI_GetDownloadURL_Request {
|
|
17
17
|
/**
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
19
|
+
*/
|
|
20
20
|
resourceId: bigint;
|
|
21
21
|
/**
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
* Pass `true` here if the blob will be downloaded from internal network,
|
|
23
|
+
* e.g. controllers could use this if they are trying to download something from internal network.
|
|
24
|
+
* For backward compatibility, by default pl treats all requests as from external network.
|
|
25
|
+
*
|
|
26
|
+
* @generated from protobuf field: bool is_internal_use = 2
|
|
27
|
+
*/
|
|
28
28
|
isInternalUse: boolean;
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
@@ -32,12 +32,12 @@ export interface DownloadAPI_GetDownloadURL_Request {
|
|
|
32
32
|
*/
|
|
33
33
|
export interface DownloadAPI_GetDownloadURL_HTTPHeader {
|
|
34
34
|
/**
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
* @generated from protobuf field: string Name = 1
|
|
36
|
+
*/
|
|
37
37
|
name: string;
|
|
38
38
|
/**
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
* @generated from protobuf field: string Value = 2
|
|
40
|
+
*/
|
|
41
41
|
value: string;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
@@ -45,12 +45,12 @@ export interface DownloadAPI_GetDownloadURL_HTTPHeader {
|
|
|
45
45
|
*/
|
|
46
46
|
export interface DownloadAPI_GetDownloadURL_Response {
|
|
47
47
|
/**
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
* @generated from protobuf field: string download_url = 1
|
|
49
|
+
*/
|
|
50
50
|
downloadUrl: string;
|
|
51
51
|
/**
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
* @generated from protobuf field: repeated MiLaboratories.Controller.Shared.DownloadAPI.GetDownloadURL.HTTPHeader headers = 2
|
|
53
|
+
*/
|
|
54
54
|
headers: DownloadAPI_GetDownloadURL_HTTPHeader[];
|
|
55
55
|
}
|
|
56
56
|
declare class DownloadAPI$Type extends MessageType<DownloadAPI> {
|
package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEvD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD;;GAEG;AACH,MAAM,WAAW,WAAW;CAC3B;AACD;;GAEG;AACH,MAAM,WAAW,0BAA0B;CAC1C;AACD;;GAEG;AACH,MAAM,WAAW,kCAAkC;
|
|
1
|
+
{"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts"],"names":[],"mappings":"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"}
|
package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { JsonValue } from '@protobuf-ts/runtime';
|
|
|
13
13
|
*/
|
|
14
14
|
export interface ILSClient {
|
|
15
15
|
/**
|
|
16
|
-
* @generated from protobuf rpc: List
|
|
16
|
+
* @generated from protobuf rpc: List
|
|
17
17
|
*/
|
|
18
18
|
list(input: LsAPI_List_Request, options?: RpcOptions): UnaryCall<LsAPI_List_Request, LsAPI_List_Response>;
|
|
19
19
|
}
|
|
@@ -36,7 +36,7 @@ export declare class LSClient implements ILSClient, ServiceInfo {
|
|
|
36
36
|
};
|
|
37
37
|
constructor(_transport: RpcTransport);
|
|
38
38
|
/**
|
|
39
|
-
* @generated from protobuf rpc: List
|
|
39
|
+
* @generated from protobuf rpc: List
|
|
40
40
|
*/
|
|
41
41
|
list(input: LsAPI_List_Request, options?: RpcOptions): UnaryCall<LsAPI_List_Request, LsAPI_List_Response>;
|
|
42
42
|
}
|
|
@@ -13,20 +13,20 @@ export interface LsAPI_ListItem {
|
|
|
13
13
|
/**
|
|
14
14
|
* name of the item in storage, without any prefixes
|
|
15
15
|
*
|
|
16
|
-
* @generated from protobuf field: string name = 1
|
|
16
|
+
* @generated from protobuf field: string name = 1
|
|
17
17
|
*/
|
|
18
18
|
name: string;
|
|
19
19
|
/**
|
|
20
20
|
* size of item in bytes
|
|
21
21
|
* is always zero for directories (is_dir = true)
|
|
22
22
|
*
|
|
23
|
-
* @generated from protobuf field: uint64 size = 2
|
|
23
|
+
* @generated from protobuf field: uint64 size = 2
|
|
24
24
|
*/
|
|
25
25
|
size: bigint;
|
|
26
26
|
/**
|
|
27
27
|
* is_dir is true for item, that can have subitems.
|
|
28
28
|
*
|
|
29
|
-
* @generated from protobuf field: bool is_dir = 3
|
|
29
|
+
* @generated from protobuf field: bool is_dir = 3
|
|
30
30
|
*/
|
|
31
31
|
isDir: boolean;
|
|
32
32
|
/**
|
|
@@ -34,20 +34,20 @@ export interface LsAPI_ListItem {
|
|
|
34
34
|
* it is <directory> + <name>
|
|
35
35
|
* The <delimiter>, used in names, is storage-specific and is NOT guaranteed to be '/'.
|
|
36
36
|
*
|
|
37
|
-
* @generated from protobuf field: string full_name = 10
|
|
37
|
+
* @generated from protobuf field: string full_name = 10
|
|
38
38
|
*/
|
|
39
39
|
fullName: string;
|
|
40
40
|
/**
|
|
41
41
|
* directory, the item is located in. The value here is always a prefix of name:
|
|
42
42
|
* name.HasPrefix(directory) is always true.
|
|
43
43
|
*
|
|
44
|
-
* @generated from protobuf field: string directory = 11
|
|
44
|
+
* @generated from protobuf field: string directory = 11
|
|
45
45
|
*/
|
|
46
46
|
directory: string;
|
|
47
47
|
/**
|
|
48
48
|
* last_modified keeps the item last modification timestamp
|
|
49
49
|
*
|
|
50
|
-
* @generated from protobuf field: google.protobuf.Timestamp last_modified = 12
|
|
50
|
+
* @generated from protobuf field: google.protobuf.Timestamp last_modified = 12
|
|
51
51
|
*/
|
|
52
52
|
lastModified?: Timestamp;
|
|
53
53
|
/**
|
|
@@ -59,7 +59,7 @@ export interface LsAPI_ListItem {
|
|
|
59
59
|
* Anyway, client should not try to interpret this field, but should provide it to the Platform
|
|
60
60
|
* in operations with given item (like BlobImportInternal) to help Platform with deduplication.
|
|
61
61
|
*
|
|
62
|
-
* @generated from protobuf field: string version = 13
|
|
62
|
+
* @generated from protobuf field: string version = 13
|
|
63
63
|
*/
|
|
64
64
|
version: string;
|
|
65
65
|
}
|
|
@@ -75,14 +75,14 @@ export interface LsAPI_List_Request {
|
|
|
75
75
|
/**
|
|
76
76
|
* resource_id of 'LS/<Storage>' resource
|
|
77
77
|
*
|
|
78
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
78
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
79
79
|
*/
|
|
80
80
|
resourceId: bigint;
|
|
81
81
|
/**
|
|
82
82
|
* location to list, absolute to storage root. Only items, that have <full_name> starting
|
|
83
83
|
* from <location> are included into list response.
|
|
84
84
|
*
|
|
85
|
-
* @generated from protobuf field: string location = 2
|
|
85
|
+
* @generated from protobuf field: string location = 2
|
|
86
86
|
*/
|
|
87
87
|
location: string;
|
|
88
88
|
}
|
|
@@ -96,14 +96,14 @@ export interface LsAPI_List_Response {
|
|
|
96
96
|
* item is located, and the item name itself.
|
|
97
97
|
* The delimiter, used in names, is storage-specific and is NOT guaranteed to be '/'.
|
|
98
98
|
*
|
|
99
|
-
* @generated from protobuf field: repeated MiLaboratories.Controller.Shared.LsAPI.ListItem items = 1
|
|
99
|
+
* @generated from protobuf field: repeated MiLaboratories.Controller.Shared.LsAPI.ListItem items = 1
|
|
100
100
|
*/
|
|
101
101
|
items: LsAPI_ListItem[];
|
|
102
102
|
/**
|
|
103
103
|
* delimiter is path separator, used in this storage. Client can use it to parse item names into parts,
|
|
104
104
|
* to extract directory names.
|
|
105
105
|
*
|
|
106
|
-
* @generated from protobuf field: string delimiter = 2
|
|
106
|
+
* @generated from protobuf field: string delimiter = 2
|
|
107
107
|
*/
|
|
108
108
|
delimiter: string;
|
|
109
109
|
}
|
|
@@ -10,12 +10,12 @@ import { JsonValue } from '@protobuf-ts/runtime';
|
|
|
10
10
|
*/
|
|
11
11
|
export interface IProgressClient {
|
|
12
12
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
* @generated from protobuf rpc: GetStatus
|
|
14
|
+
*/
|
|
15
15
|
getStatus(input: ProgressAPI_GetStatus_Request, options?: RpcOptions): UnaryCall<ProgressAPI_GetStatus_Request, ProgressAPI_GetStatus_Response>;
|
|
16
16
|
/**
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
* @generated from protobuf rpc: RealtimeStatus
|
|
18
|
+
*/
|
|
19
19
|
realtimeStatus(input: ProgressAPI_RealtimeStatus_Request, options?: RpcOptions): ServerStreamingCall<ProgressAPI_RealtimeStatus_Request, ProgressAPI_RealtimeStatus_Response>;
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
@@ -34,12 +34,12 @@ export declare class ProgressClient implements IProgressClient, ServiceInfo {
|
|
|
34
34
|
};
|
|
35
35
|
constructor(_transport: RpcTransport);
|
|
36
36
|
/**
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
* @generated from protobuf rpc: GetStatus
|
|
38
|
+
*/
|
|
39
39
|
getStatus(input: ProgressAPI_GetStatus_Request, options?: RpcOptions): UnaryCall<ProgressAPI_GetStatus_Request, ProgressAPI_GetStatus_Response>;
|
|
40
40
|
/**
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
* @generated from protobuf rpc: RealtimeStatus
|
|
42
|
+
*/
|
|
43
43
|
realtimeStatus(input: ProgressAPI_RealtimeStatus_Request, options?: RpcOptions): ServerStreamingCall<ProgressAPI_RealtimeStatus_Request, ProgressAPI_RealtimeStatus_Response>;
|
|
44
44
|
}
|
|
45
45
|
//# sourceMappingURL=protocol.client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protocol.client.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAE5D,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,YAAY,CAAC;AACtE,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,YAAY,CAAC;AACrE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAEpE,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,YAAY,CAAC;AACjE,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAChE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D;;;;;;GAMG;AACH,MAAM,WAAW,eAAe;
|
|
1
|
+
{"version":3,"file":"protocol.client.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAE5D,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,YAAY,CAAC;AACtE,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,YAAY,CAAC;AACrE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAEpE,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,YAAY,CAAC;AACjE,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAChE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D;;;;;;GAMG;AACH,MAAM,WAAW,eAAe;IAC5B;;OAEG;IACH,SAAS,CAAC,KAAK,EAAE,6BAA6B,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC,6BAA6B,EAAE,8BAA8B,CAAC,CAAC;IAChJ;;OAEG;IACH,cAAc,CAAC,KAAK,EAAE,kCAAkC,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,mBAAmB,CAAC,kCAAkC,EAAE,mCAAmC,CAAC,CAAC;CACjL;AACD;;;;;;GAMG;AACH,qBAAa,cAAe,YAAW,eAAe,EAAE,WAAW;IAInD,OAAO,CAAC,QAAQ,CAAC,UAAU;IAHvC,QAAQ,SAAqB;IAC7B,OAAO,4DAAoB;IAC3B,OAAO;;MAAoB;gBACE,UAAU,EAAE,YAAY;IAErD;;OAEG;IACH,SAAS,CAAC,KAAK,EAAE,6BAA6B,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC,6BAA6B,EAAE,8BAA8B,CAAC;IAI/I;;OAEG;IACH,cAAc,CAAC,KAAK,EAAE,kCAAkC,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,mBAAmB,CAAC,kCAAkC,EAAE,mCAAmC,CAAC;CAIhL"}
|
package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts
CHANGED
|
@@ -11,26 +11,26 @@ export interface ProgressAPI {
|
|
|
11
11
|
*/
|
|
12
12
|
export interface ProgressAPI_Report {
|
|
13
13
|
/**
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
* @generated from protobuf field: float progress = 1
|
|
15
|
+
*/
|
|
16
16
|
progress: number;
|
|
17
17
|
/**
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
* @generated from protobuf field: uint64 bytes_processed = 2
|
|
19
|
+
*/
|
|
20
20
|
bytesProcessed: bigint;
|
|
21
21
|
/**
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
* @generated from protobuf field: uint64 bytes_total = 3
|
|
23
|
+
*/
|
|
24
24
|
bytesTotal: bigint;
|
|
25
25
|
/**
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
* @generated from protobuf field: bool done = 4
|
|
27
|
+
*/
|
|
28
28
|
done: boolean;
|
|
29
29
|
/**
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
30
|
+
* Name of current progress stage (if any)
|
|
31
|
+
*
|
|
32
|
+
* @generated from protobuf field: string name = 5
|
|
33
|
+
*/
|
|
34
34
|
name: string;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
@@ -43,8 +43,8 @@ export interface ProgressAPI_GetStatus {
|
|
|
43
43
|
*/
|
|
44
44
|
export interface ProgressAPI_GetStatus_Request {
|
|
45
45
|
/**
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
47
|
+
*/
|
|
48
48
|
resourceId: bigint;
|
|
49
49
|
}
|
|
50
50
|
/**
|
|
@@ -52,8 +52,8 @@ export interface ProgressAPI_GetStatus_Request {
|
|
|
52
52
|
*/
|
|
53
53
|
export interface ProgressAPI_GetStatus_Response {
|
|
54
54
|
/**
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
* @generated from protobuf field: MiLaboratories.Controller.Shared.ProgressAPI.Report report = 1
|
|
56
|
+
*/
|
|
57
57
|
report?: ProgressAPI_Report;
|
|
58
58
|
}
|
|
59
59
|
/**
|
|
@@ -66,12 +66,12 @@ export interface ProgressAPI_RealtimeStatus {
|
|
|
66
66
|
*/
|
|
67
67
|
export interface ProgressAPI_RealtimeStatus_Request {
|
|
68
68
|
/**
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
70
|
+
*/
|
|
71
71
|
resourceId: bigint;
|
|
72
72
|
/**
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
* @generated from protobuf field: google.protobuf.Duration update_interval = 2
|
|
74
|
+
*/
|
|
75
75
|
updateInterval?: Duration;
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
@@ -79,8 +79,8 @@ export interface ProgressAPI_RealtimeStatus_Request {
|
|
|
79
79
|
*/
|
|
80
80
|
export interface ProgressAPI_RealtimeStatus_Response {
|
|
81
81
|
/**
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
* @generated from protobuf field: MiLaboratories.Controller.Shared.ProgressAPI.Report report = 1
|
|
83
|
+
*/
|
|
84
84
|
report?: ProgressAPI_Report;
|
|
85
85
|
}
|
|
86
86
|
declare class ProgressAPI$Type extends MessageType<ProgressAPI> {
|
package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEvD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,+CAA+C,CAAC;AACzE;;GAEG;AACH,MAAM,WAAW,WAAW;CAC3B;AACD;;GAEG;AACH,MAAM,WAAW,kBAAkB;
|
|
1
|
+
{"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,7 +15,7 @@ export interface IStreamingClient {
|
|
|
15
15
|
* one single chunk of binary data from data source. See StreamingAPI.Binary message
|
|
16
16
|
* for more info on available options.
|
|
17
17
|
*
|
|
18
|
-
* @generated from protobuf rpc: StreamBinary
|
|
18
|
+
* @generated from protobuf rpc: StreamBinary
|
|
19
19
|
*/
|
|
20
20
|
streamBinary(input: StreamingAPI_StreamBinary, options?: RpcOptions): ServerStreamingCall<StreamingAPI_StreamBinary, StreamingAPI_Response>;
|
|
21
21
|
/**
|
|
@@ -24,14 +24,14 @@ export interface IStreamingClient {
|
|
|
24
24
|
* call and has to send new calls to the server to get fresh data from remote item.
|
|
25
25
|
* Each response (each chunk from server) keeps not more than 3.9MiB of data.
|
|
26
26
|
*
|
|
27
|
-
* @generated from protobuf rpc: ReadBinary
|
|
27
|
+
* @generated from protobuf rpc: ReadBinary
|
|
28
28
|
*/
|
|
29
29
|
readBinary(input: StreamingAPI_ReadBinary, options?: RpcOptions): UnaryCall<StreamingAPI_ReadBinary, StreamingAPI_Response>;
|
|
30
30
|
/**
|
|
31
31
|
* StreamText provides stream of textual file, splitting the data by newline symbol.
|
|
32
32
|
* Each response message keeps one single line of text from data source.
|
|
33
33
|
*
|
|
34
|
-
* @generated from protobuf rpc: StreamText
|
|
34
|
+
* @generated from protobuf rpc: StreamText
|
|
35
35
|
*/
|
|
36
36
|
streamText(input: StreamingAPI_StreamText, options?: RpcOptions): ServerStreamingCall<StreamingAPI_StreamText, StreamingAPI_Response>;
|
|
37
37
|
/**
|
|
@@ -40,7 +40,7 @@ export interface IStreamingClient {
|
|
|
40
40
|
* call and has to send new calls to the server to get fresh data from remote item.
|
|
41
41
|
* Each response (each chunk from server) keeps not more than 3.9MiB of data.
|
|
42
42
|
*
|
|
43
|
-
* @generated from protobuf rpc: ReadText
|
|
43
|
+
* @generated from protobuf rpc: ReadText
|
|
44
44
|
*/
|
|
45
45
|
readText(input: StreamingAPI_ReadText, options?: RpcOptions): UnaryCall<StreamingAPI_ReadText, StreamingAPI_Response>;
|
|
46
46
|
/**
|
|
@@ -53,7 +53,7 @@ export interface IStreamingClient {
|
|
|
53
53
|
* This means, that use of this <new_offset> in ReadText() will return you the same line
|
|
54
54
|
* returned last in LastLines() data.
|
|
55
55
|
*
|
|
56
|
-
* @generated from protobuf rpc: LastLines
|
|
56
|
+
* @generated from protobuf rpc: LastLines
|
|
57
57
|
*/
|
|
58
58
|
lastLines(input: StreamingAPI_LastLines, options?: RpcOptions): UnaryCall<StreamingAPI_LastLines, StreamingAPI_Response>;
|
|
59
59
|
}
|
|
@@ -78,7 +78,7 @@ export declare class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
78
78
|
* one single chunk of binary data from data source. See StreamingAPI.Binary message
|
|
79
79
|
* for more info on available options.
|
|
80
80
|
*
|
|
81
|
-
* @generated from protobuf rpc: StreamBinary
|
|
81
|
+
* @generated from protobuf rpc: StreamBinary
|
|
82
82
|
*/
|
|
83
83
|
streamBinary(input: StreamingAPI_StreamBinary, options?: RpcOptions): ServerStreamingCall<StreamingAPI_StreamBinary, StreamingAPI_Response>;
|
|
84
84
|
/**
|
|
@@ -87,14 +87,14 @@ export declare class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
87
87
|
* call and has to send new calls to the server to get fresh data from remote item.
|
|
88
88
|
* Each response (each chunk from server) keeps not more than 3.9MiB of data.
|
|
89
89
|
*
|
|
90
|
-
* @generated from protobuf rpc: ReadBinary
|
|
90
|
+
* @generated from protobuf rpc: ReadBinary
|
|
91
91
|
*/
|
|
92
92
|
readBinary(input: StreamingAPI_ReadBinary, options?: RpcOptions): UnaryCall<StreamingAPI_ReadBinary, StreamingAPI_Response>;
|
|
93
93
|
/**
|
|
94
94
|
* StreamText provides stream of textual file, splitting the data by newline symbol.
|
|
95
95
|
* Each response message keeps one single line of text from data source.
|
|
96
96
|
*
|
|
97
|
-
* @generated from protobuf rpc: StreamText
|
|
97
|
+
* @generated from protobuf rpc: StreamText
|
|
98
98
|
*/
|
|
99
99
|
streamText(input: StreamingAPI_StreamText, options?: RpcOptions): ServerStreamingCall<StreamingAPI_StreamText, StreamingAPI_Response>;
|
|
100
100
|
/**
|
|
@@ -103,7 +103,7 @@ export declare class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
103
103
|
* call and has to send new calls to the server to get fresh data from remote item.
|
|
104
104
|
* Each response (each chunk from server) keeps not more than 3.9MiB of data.
|
|
105
105
|
*
|
|
106
|
-
* @generated from protobuf rpc: ReadText
|
|
106
|
+
* @generated from protobuf rpc: ReadText
|
|
107
107
|
*/
|
|
108
108
|
readText(input: StreamingAPI_ReadText, options?: RpcOptions): UnaryCall<StreamingAPI_ReadText, StreamingAPI_Response>;
|
|
109
109
|
/**
|
|
@@ -116,7 +116,7 @@ export declare class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
116
116
|
* This means, that use of this <new_offset> in ReadText() will return you the same line
|
|
117
117
|
* returned last in LastLines() data.
|
|
118
118
|
*
|
|
119
|
-
* @generated from protobuf rpc: LastLines
|
|
119
|
+
* @generated from protobuf rpc: LastLines
|
|
120
120
|
*/
|
|
121
121
|
lastLines(input: StreamingAPI_LastLines, options?: RpcOptions): UnaryCall<StreamingAPI_LastLines, StreamingAPI_Response>;
|
|
122
122
|
}
|