@milaboratories/pl-client 2.12.0 → 2.12.1
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/proto/github.com/googleapis/googleapis/google/rpc/status.cjs.map +1 -1
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.js.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.cjs +26 -2
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.cjs.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.cjs.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.js.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +12 -0
- 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.js +26 -2
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.js.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.cjs.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.js.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.cjs.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.js.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.cjs.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.js.map +1 -1
- package/dist/proto/google/protobuf/any.cjs.map +1 -1
- package/dist/proto/google/protobuf/any.d.ts +9 -5
- package/dist/proto/google/protobuf/any.d.ts.map +1 -1
- package/dist/proto/google/protobuf/any.js.map +1 -1
- package/dist/proto/google/protobuf/descriptor.d.ts +881 -46
- package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.cjs.map +1 -1
- package/dist/proto/google/protobuf/duration.d.ts +0 -1
- package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.js.map +1 -1
- package/dist/proto/google/protobuf/struct.d.ts +1 -1
- package/dist/proto/google/protobuf/timestamp.cjs.map +1 -1
- package/dist/proto/google/protobuf/timestamp.d.ts +1 -4
- package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/proto/google/protobuf/timestamp.js.map +1 -1
- package/dist/proto/google/protobuf/wrappers.d.ts +27 -0
- package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +38 -2
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +1 -1
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +1 -1
- package/src/proto/google/api/http.ts +1 -1
- package/src/proto/google/protobuf/any.ts +10 -6
- package/src/proto/google/protobuf/descriptor.ts +1469 -77
- package/src/proto/google/protobuf/duration.ts +1 -2
- package/src/proto/google/protobuf/empty.ts +1 -1
- package/src/proto/google/protobuf/struct.ts +2 -2
- package/src/proto/google/protobuf/timestamp.ts +2 -5
- package/src/proto/google/protobuf/wrappers.ts +38 -5
|
@@ -12,6 +12,9 @@ import { MessageType } from "@protobuf-ts/runtime";
|
|
|
12
12
|
*
|
|
13
13
|
* The JSON representation for `DoubleValue` is JSON number.
|
|
14
14
|
*
|
|
15
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
16
|
+
* has no plan to be removed.
|
|
17
|
+
*
|
|
15
18
|
* @generated from protobuf message google.protobuf.DoubleValue
|
|
16
19
|
*/
|
|
17
20
|
export interface DoubleValue {
|
|
@@ -27,6 +30,9 @@ export interface DoubleValue {
|
|
|
27
30
|
*
|
|
28
31
|
* The JSON representation for `FloatValue` is JSON number.
|
|
29
32
|
*
|
|
33
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
34
|
+
* has no plan to be removed.
|
|
35
|
+
*
|
|
30
36
|
* @generated from protobuf message google.protobuf.FloatValue
|
|
31
37
|
*/
|
|
32
38
|
export interface FloatValue {
|
|
@@ -42,6 +48,9 @@ export interface FloatValue {
|
|
|
42
48
|
*
|
|
43
49
|
* The JSON representation for `Int64Value` is JSON string.
|
|
44
50
|
*
|
|
51
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
52
|
+
* has no plan to be removed.
|
|
53
|
+
*
|
|
45
54
|
* @generated from protobuf message google.protobuf.Int64Value
|
|
46
55
|
*/
|
|
47
56
|
export interface Int64Value {
|
|
@@ -57,6 +66,9 @@ export interface Int64Value {
|
|
|
57
66
|
*
|
|
58
67
|
* The JSON representation for `UInt64Value` is JSON string.
|
|
59
68
|
*
|
|
69
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
70
|
+
* has no plan to be removed.
|
|
71
|
+
*
|
|
60
72
|
* @generated from protobuf message google.protobuf.UInt64Value
|
|
61
73
|
*/
|
|
62
74
|
export interface UInt64Value {
|
|
@@ -72,6 +84,9 @@ export interface UInt64Value {
|
|
|
72
84
|
*
|
|
73
85
|
* The JSON representation for `Int32Value` is JSON number.
|
|
74
86
|
*
|
|
87
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
88
|
+
* has no plan to be removed.
|
|
89
|
+
*
|
|
75
90
|
* @generated from protobuf message google.protobuf.Int32Value
|
|
76
91
|
*/
|
|
77
92
|
export interface Int32Value {
|
|
@@ -87,6 +102,9 @@ export interface Int32Value {
|
|
|
87
102
|
*
|
|
88
103
|
* The JSON representation for `UInt32Value` is JSON number.
|
|
89
104
|
*
|
|
105
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
106
|
+
* has no plan to be removed.
|
|
107
|
+
*
|
|
90
108
|
* @generated from protobuf message google.protobuf.UInt32Value
|
|
91
109
|
*/
|
|
92
110
|
export interface UInt32Value {
|
|
@@ -102,6 +120,9 @@ export interface UInt32Value {
|
|
|
102
120
|
*
|
|
103
121
|
* The JSON representation for `BoolValue` is JSON `true` and `false`.
|
|
104
122
|
*
|
|
123
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
124
|
+
* has no plan to be removed.
|
|
125
|
+
*
|
|
105
126
|
* @generated from protobuf message google.protobuf.BoolValue
|
|
106
127
|
*/
|
|
107
128
|
export interface BoolValue {
|
|
@@ -117,6 +138,9 @@ export interface BoolValue {
|
|
|
117
138
|
*
|
|
118
139
|
* The JSON representation for `StringValue` is JSON string.
|
|
119
140
|
*
|
|
141
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
142
|
+
* has no plan to be removed.
|
|
143
|
+
*
|
|
120
144
|
* @generated from protobuf message google.protobuf.StringValue
|
|
121
145
|
*/
|
|
122
146
|
export interface StringValue {
|
|
@@ -132,6 +156,9 @@ export interface StringValue {
|
|
|
132
156
|
*
|
|
133
157
|
* The JSON representation for `BytesValue` is JSON string.
|
|
134
158
|
*
|
|
159
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
160
|
+
* has no plan to be removed.
|
|
161
|
+
*
|
|
135
162
|
* @generated from protobuf message google.protobuf.BytesValue
|
|
136
163
|
*/
|
|
137
164
|
export interface BytesValue {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wrappers.d.ts","sourceRoot":"","sources":["../../../../src/proto/google/protobuf/wrappers.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"wrappers.d.ts","sourceRoot":"","sources":["../../../../src/proto/google/protobuf/wrappers.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/googleapis/googleapis/google/rpc/status.proto" (package "google.rpc", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
//
|
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/plapi/plapiproto/api.proto" (package "MiLaboratories.PL.API", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/plapi/plapiproto/api.proto" (package "MiLaboratories.PL.API", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
@@ -3051,6 +3051,18 @@ export interface MaintenanceAPI_Ping_Response {
|
|
|
3051
3051
|
* @generated from protobuf field: string instance_id = 5
|
|
3052
3052
|
*/
|
|
3053
3053
|
instanceId: string;
|
|
3054
|
+
/**
|
|
3055
|
+
* @generated from protobuf field: string platform = 6
|
|
3056
|
+
*/
|
|
3057
|
+
platform: string; // <os>-<arch>
|
|
3058
|
+
/**
|
|
3059
|
+
* @generated from protobuf field: string os = 7
|
|
3060
|
+
*/
|
|
3061
|
+
os: string; // linux / windows / macosx
|
|
3062
|
+
/**
|
|
3063
|
+
* @generated from protobuf field: string arch = 8
|
|
3064
|
+
*/
|
|
3065
|
+
arch: string; // x64 / aarch64
|
|
3054
3066
|
}
|
|
3055
3067
|
/**
|
|
3056
3068
|
* @generated from protobuf enum MiLaboratories.PL.API.MaintenanceAPI.Ping.Response.Compression
|
|
@@ -15520,7 +15532,10 @@ class MaintenanceAPI_Ping_Response$Type extends MessageType<MaintenanceAPI_Ping_
|
|
|
15520
15532
|
{ no: 2, name: "core_full_version", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
15521
15533
|
{ no: 3, name: "server_info", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
15522
15534
|
{ no: 4, name: "compression", kind: "enum", T: () => ["MiLaboratories.PL.API.MaintenanceAPI.Ping.Response.Compression", MaintenanceAPI_Ping_Response_Compression] },
|
|
15523
|
-
{ no: 5, name: "instance_id", kind: "scalar", T: 9 /*ScalarType.STRING*/ }
|
|
15535
|
+
{ no: 5, name: "instance_id", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
15536
|
+
{ no: 6, name: "platform", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
15537
|
+
{ no: 7, name: "os", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
15538
|
+
{ no: 8, name: "arch", kind: "scalar", T: 9 /*ScalarType.STRING*/ }
|
|
15524
15539
|
]);
|
|
15525
15540
|
}
|
|
15526
15541
|
create(value?: PartialMessage<MaintenanceAPI_Ping_Response>): MaintenanceAPI_Ping_Response {
|
|
@@ -15530,6 +15545,9 @@ class MaintenanceAPI_Ping_Response$Type extends MessageType<MaintenanceAPI_Ping_
|
|
|
15530
15545
|
message.serverInfo = "";
|
|
15531
15546
|
message.compression = 0;
|
|
15532
15547
|
message.instanceId = "";
|
|
15548
|
+
message.platform = "";
|
|
15549
|
+
message.os = "";
|
|
15550
|
+
message.arch = "";
|
|
15533
15551
|
if (value !== undefined)
|
|
15534
15552
|
reflectionMergePartial<MaintenanceAPI_Ping_Response>(this, message, value);
|
|
15535
15553
|
return message;
|
|
@@ -15554,6 +15572,15 @@ class MaintenanceAPI_Ping_Response$Type extends MessageType<MaintenanceAPI_Ping_
|
|
|
15554
15572
|
case /* string instance_id */ 5:
|
|
15555
15573
|
message.instanceId = reader.string();
|
|
15556
15574
|
break;
|
|
15575
|
+
case /* string platform */ 6:
|
|
15576
|
+
message.platform = reader.string();
|
|
15577
|
+
break;
|
|
15578
|
+
case /* string os */ 7:
|
|
15579
|
+
message.os = reader.string();
|
|
15580
|
+
break;
|
|
15581
|
+
case /* string arch */ 8:
|
|
15582
|
+
message.arch = reader.string();
|
|
15583
|
+
break;
|
|
15557
15584
|
default:
|
|
15558
15585
|
let u = options.readUnknownField;
|
|
15559
15586
|
if (u === "throw")
|
|
@@ -15581,6 +15608,15 @@ class MaintenanceAPI_Ping_Response$Type extends MessageType<MaintenanceAPI_Ping_
|
|
|
15581
15608
|
/* string instance_id = 5; */
|
|
15582
15609
|
if (message.instanceId !== "")
|
|
15583
15610
|
writer.tag(5, WireType.LengthDelimited).string(message.instanceId);
|
|
15611
|
+
/* string platform = 6; */
|
|
15612
|
+
if (message.platform !== "")
|
|
15613
|
+
writer.tag(6, WireType.LengthDelimited).string(message.platform);
|
|
15614
|
+
/* string os = 7; */
|
|
15615
|
+
if (message.os !== "")
|
|
15616
|
+
writer.tag(7, WireType.LengthDelimited).string(message.os);
|
|
15617
|
+
/* string arch = 8; */
|
|
15618
|
+
if (message.arch !== "")
|
|
15619
|
+
writer.tag(8, WireType.LengthDelimited).string(message.arch);
|
|
15584
15620
|
let u = options.writeUnknownFields;
|
|
15585
15621
|
if (u !== false)
|
|
15586
15622
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/plapi/plapiproto/api_types.proto" (package "MiLaboratories.PL.API", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/plapi/plapiproto/base_types.proto" (package "MiLaboratories.PL.Base", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/plapi/plapiproto/import.proto" (package "MiLaboratories.PL._Stub", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/plapi/plapiproto/resource_types.proto" (package "MiLaboratories.PL.RTypes", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "google/api/http.proto" (package "google.api", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
//
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "google/protobuf/any.proto" (package "google.protobuf", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
//
|
|
@@ -73,8 +73,12 @@ import { MessageType } from "@protobuf-ts/runtime";
|
|
|
73
73
|
* if (any.is(Foo.class)) {
|
|
74
74
|
* foo = any.unpack(Foo.class);
|
|
75
75
|
* }
|
|
76
|
+
* // or ...
|
|
77
|
+
* if (any.isSameTypeAs(Foo.getDefaultInstance())) {
|
|
78
|
+
* foo = any.unpack(Foo.getDefaultInstance());
|
|
79
|
+
* }
|
|
76
80
|
*
|
|
77
|
-
*
|
|
81
|
+
* Example 3: Pack and unpack a message in Python.
|
|
78
82
|
*
|
|
79
83
|
* foo = Foo(...)
|
|
80
84
|
* any = Any()
|
|
@@ -84,7 +88,7 @@ import { MessageType } from "@protobuf-ts/runtime";
|
|
|
84
88
|
* any.Unpack(foo)
|
|
85
89
|
* ...
|
|
86
90
|
*
|
|
87
|
-
*
|
|
91
|
+
* Example 4: Pack and unpack a message in Go
|
|
88
92
|
*
|
|
89
93
|
* foo := &pb.Foo{...}
|
|
90
94
|
* any, err := anypb.New(foo)
|
|
@@ -103,9 +107,8 @@ import { MessageType } from "@protobuf-ts/runtime";
|
|
|
103
107
|
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
104
108
|
* name "y.z".
|
|
105
109
|
*
|
|
106
|
-
*
|
|
107
110
|
* JSON
|
|
108
|
-
*
|
|
111
|
+
* ====
|
|
109
112
|
* The JSON representation of an `Any` value uses the regular
|
|
110
113
|
* representation of the deserialized, embedded message, with an
|
|
111
114
|
* additional field `@type` which contains the type URL. Example:
|
|
@@ -160,7 +163,8 @@ export interface Any {
|
|
|
160
163
|
*
|
|
161
164
|
* Note: this functionality is not currently available in the official
|
|
162
165
|
* protobuf release, and it is not used for type URLs beginning with
|
|
163
|
-
* type.googleapis.com.
|
|
166
|
+
* type.googleapis.com. As of May 2023, there are no widely used type server
|
|
167
|
+
* implementations and no plans to implement one.
|
|
164
168
|
*
|
|
165
169
|
* Schemes other than `http`, `https` (or the empty scheme) might be
|
|
166
170
|
* used with implementation specific semantics.
|