@milaboratories/pl-client 2.7.14 → 2.8.0

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.
Files changed (61) hide show
  1. package/dist/core/client.d.ts +4 -1
  2. package/dist/core/client.d.ts.map +1 -1
  3. package/dist/core/ll_client.d.ts +12 -2
  4. package/dist/core/ll_client.d.ts.map +1 -1
  5. package/dist/index.js +1 -1
  6. package/dist/index.js.map +1 -1
  7. package/dist/index.mjs +4341 -4316
  8. package/dist/index.mjs.map +1 -1
  9. package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +15 -15
  10. package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts.map +1 -1
  11. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts +4 -4
  12. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts.map +1 -1
  13. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts +59 -59
  14. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts.map +1 -1
  15. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts +72 -72
  16. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts.map +1 -1
  17. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +152 -152
  18. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts.map +1 -1
  19. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +156 -156
  20. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts.map +1 -1
  21. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +790 -773
  22. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -1
  23. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts +163 -163
  24. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts.map +1 -1
  25. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts +22 -22
  26. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts.map +1 -1
  27. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +32 -32
  28. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts.map +1 -1
  29. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +78 -78
  30. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts.map +1 -1
  31. package/dist/proto/google/protobuf/any.d.ts +52 -52
  32. package/dist/proto/google/protobuf/any.d.ts.map +1 -1
  33. package/dist/proto/google/protobuf/duration.d.ts +19 -19
  34. package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
  35. package/dist/proto/google/protobuf/empty.d.ts.map +1 -1
  36. package/dist/proto/google/protobuf/struct.d.ts +56 -56
  37. package/dist/proto/google/protobuf/struct.d.ts.map +1 -1
  38. package/dist/proto/google/protobuf/timestamp.d.ts +25 -25
  39. package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
  40. package/dist/proto/google/protobuf/wrappers.d.ts +72 -72
  41. package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
  42. package/package.json +3 -3
  43. package/src/core/client.ts +31 -35
  44. package/src/core/ll_client.ts +48 -23
  45. package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +72 -75
  46. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +21 -22
  47. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +276 -291
  48. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +54 -59
  49. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +470 -491
  50. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +238 -263
  51. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +11058 -11752
  52. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +1115 -1156
  53. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +126 -132
  54. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +201 -204
  55. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +541 -560
  56. package/src/proto/google/protobuf/any.ts +140 -150
  57. package/src/proto/google/protobuf/duration.ts +103 -108
  58. package/src/proto/google/protobuf/empty.ts +39 -42
  59. package/src/proto/google/protobuf/struct.ts +323 -337
  60. package/src/proto/google/protobuf/timestamp.ts +124 -132
  61. package/src/proto/google/protobuf/wrappers.ts +492 -537
@@ -1,4 +1,4 @@
1
- // @generated by protobuf-ts 2.9.5 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
1
+ // @generated by protobuf-ts 2.9.6 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
2
2
  // @generated from protobuf file "google/protobuf/empty.proto" (package "google.protobuf", syntax proto3)
3
3
  // tslint:disable
4
4
  //
@@ -32,14 +32,14 @@
32
32
  // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33
33
  // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
34
  //
35
- import type { BinaryWriteOptions } from '@protobuf-ts/runtime';
36
- import type { IBinaryWriter } from '@protobuf-ts/runtime';
37
- import type { BinaryReadOptions } from '@protobuf-ts/runtime';
38
- import type { IBinaryReader } from '@protobuf-ts/runtime';
39
- import { UnknownFieldHandler } from '@protobuf-ts/runtime';
40
- import type { PartialMessage } from '@protobuf-ts/runtime';
41
- import { reflectionMergePartial } from '@protobuf-ts/runtime';
42
- import { MessageType } from '@protobuf-ts/runtime';
35
+ import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
36
+ import type { IBinaryWriter } from "@protobuf-ts/runtime";
37
+ import type { BinaryReadOptions } from "@protobuf-ts/runtime";
38
+ import type { IBinaryReader } from "@protobuf-ts/runtime";
39
+ import { UnknownFieldHandler } from "@protobuf-ts/runtime";
40
+ import type { PartialMessage } from "@protobuf-ts/runtime";
41
+ import { reflectionMergePartial } from "@protobuf-ts/runtime";
42
+ import { MessageType } from "@protobuf-ts/runtime";
43
43
  /**
44
44
  * A generic empty message that you can re-use to avoid defining duplicated
45
45
  * empty messages in your APIs. A typical example is to use it as the request
@@ -56,40 +56,37 @@ export interface Empty {
56
56
  }
57
57
  // @generated message type with reflection information, may provide speed optimized methods
58
58
  class Empty$Type extends MessageType<Empty> {
59
- constructor() {
60
- super('google.protobuf.Empty', []);
61
- }
62
-
63
- create(value?: PartialMessage<Empty>): Empty {
64
- const message = globalThis.Object.create((this.messagePrototype!));
65
- if (value !== undefined)
66
- reflectionMergePartial<Empty>(this, message, value);
67
- return message;
68
- }
69
-
70
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Empty): Empty {
71
- const message = target ?? this.create(), end = reader.pos + length;
72
- while (reader.pos < end) {
73
- const [fieldNo, wireType] = reader.tag();
74
- switch (fieldNo) {
75
- default:
76
- const u = options.readUnknownField;
77
- if (u === 'throw')
78
- throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
79
- const d = reader.skip(wireType);
80
- if (u !== false)
81
- (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
82
- }
59
+ constructor() {
60
+ super("google.protobuf.Empty", []);
61
+ }
62
+ create(value?: PartialMessage<Empty>): Empty {
63
+ const message = globalThis.Object.create((this.messagePrototype!));
64
+ if (value !== undefined)
65
+ reflectionMergePartial<Empty>(this, message, value);
66
+ return message;
67
+ }
68
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Empty): Empty {
69
+ let message = target ?? this.create(), end = reader.pos + length;
70
+ while (reader.pos < end) {
71
+ let [fieldNo, wireType] = reader.tag();
72
+ switch (fieldNo) {
73
+ default:
74
+ let u = options.readUnknownField;
75
+ if (u === "throw")
76
+ throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
77
+ let d = reader.skip(wireType);
78
+ if (u !== false)
79
+ (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
80
+ }
81
+ }
82
+ return message;
83
+ }
84
+ internalBinaryWrite(message: Empty, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
85
+ let u = options.writeUnknownFields;
86
+ if (u !== false)
87
+ (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
88
+ return writer;
83
89
  }
84
- return message;
85
- }
86
-
87
- internalBinaryWrite(message: Empty, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
88
- const u = options.writeUnknownFields;
89
- if (u !== false)
90
- (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
91
- return writer;
92
- }
93
90
  }
94
91
  /**
95
92
  * @generated MessageType for protobuf message google.protobuf.Empty