@milaboratories/pl-client 2.11.10 → 2.11.12

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 (45) hide show
  1. package/dist/core/client.cjs +3 -0
  2. package/dist/core/client.cjs.map +1 -1
  3. package/dist/core/client.d.ts +2 -1
  4. package/dist/core/client.d.ts.map +1 -1
  5. package/dist/core/client.js +3 -0
  6. package/dist/core/client.js.map +1 -1
  7. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.cjs +759 -124
  8. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.cjs.map +1 -1
  9. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.cjs +7 -0
  10. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.cjs.map +1 -1
  11. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +10 -0
  12. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts.map +1 -1
  13. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.js +7 -0
  14. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.js.map +1 -1
  15. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +270 -0
  16. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -1
  17. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.js +752 -125
  18. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.js.map +1 -1
  19. package/dist/proto/google/protobuf/any.cjs.map +1 -1
  20. package/dist/proto/google/protobuf/any.d.ts +5 -9
  21. package/dist/proto/google/protobuf/any.d.ts.map +1 -1
  22. package/dist/proto/google/protobuf/any.js.map +1 -1
  23. package/dist/proto/google/protobuf/descriptor.d.ts +45 -878
  24. package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
  25. package/dist/proto/google/protobuf/duration.cjs.map +1 -1
  26. package/dist/proto/google/protobuf/duration.d.ts +1 -0
  27. package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
  28. package/dist/proto/google/protobuf/duration.js.map +1 -1
  29. package/dist/proto/google/protobuf/struct.d.ts +1 -1
  30. package/dist/proto/google/protobuf/timestamp.cjs.map +1 -1
  31. package/dist/proto/google/protobuf/timestamp.d.ts +4 -1
  32. package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
  33. package/dist/proto/google/protobuf/timestamp.js.map +1 -1
  34. package/dist/proto/google/protobuf/wrappers.d.ts +0 -27
  35. package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
  36. package/package.json +5 -5
  37. package/src/core/client.ts +5 -1
  38. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +13 -0
  39. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +859 -82
  40. package/src/proto/google/protobuf/any.ts +5 -9
  41. package/src/proto/google/protobuf/descriptor.ts +75 -1465
  42. package/src/proto/google/protobuf/duration.ts +1 -0
  43. package/src/proto/google/protobuf/struct.ts +1 -1
  44. package/src/proto/google/protobuf/timestamp.ts +4 -1
  45. package/src/proto/google/protobuf/wrappers.ts +4 -37
@@ -107,6 +107,7 @@ import { MessageType } from "@protobuf-ts/runtime";
107
107
  * microsecond should be expressed in JSON format as "3.000001s".
108
108
  *
109
109
  *
110
+ *
110
111
  * @generated from protobuf message google.protobuf.Duration
111
112
  */
112
113
  export interface Duration {
@@ -156,7 +156,7 @@ export interface ListValue {
156
156
  * `NullValue` is a singleton enumeration to represent the null value for the
157
157
  * `Value` type union.
158
158
  *
159
- * The JSON representation for `NullValue` is JSON `null`.
159
+ * The JSON representation for `NullValue` is JSON `null`.
160
160
  *
161
161
  * @generated from protobuf enum google.protobuf.NullValue
162
162
  */
@@ -97,6 +97,7 @@ import { MessageType } from "@protobuf-ts/runtime";
97
97
  * Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
98
98
  * .setNanos((int) ((millis % 1000) * 1000000)).build();
99
99
  *
100
+ *
100
101
  * Example 5: Compute Timestamp from Java `Instant.now()`.
101
102
  *
102
103
  * Instant now = Instant.now();
@@ -105,6 +106,7 @@ import { MessageType } from "@protobuf-ts/runtime";
105
106
  * Timestamp.newBuilder().setSeconds(now.getEpochSecond())
106
107
  * .setNanos(now.getNano()).build();
107
108
  *
109
+ *
108
110
  * Example 6: Compute Timestamp from current time in Python.
109
111
  *
110
112
  * timestamp = Timestamp()
@@ -134,10 +136,11 @@ import { MessageType } from "@protobuf-ts/runtime";
134
136
  * [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
135
137
  * the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
136
138
  * the Joda Time's [`ISODateTimeFormat.dateTime()`](
137
- * http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
139
+ * http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
138
140
  * ) to obtain a formatter capable of generating timestamps in this format.
139
141
  *
140
142
  *
143
+ *
141
144
  * @generated from protobuf message google.protobuf.Timestamp
142
145
  */
143
146
  export interface Timestamp {
@@ -32,17 +32,11 @@
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
- // Wrappers for primitive (non-message) types. These types were needed
36
- // for legacy reasons and are not recommended for use in new APIs.
37
35
  //
38
- // Historically these wrappers were useful to have presence on proto3 primitive
39
- // fields, but proto3 syntax has been updated to support the `optional` keyword.
40
- // Using that keyword is now the strongly preferred way to add presence to
41
- // proto3 primitive fields.
42
- //
43
- // A secondary usecase was to embed primitives in the `google.protobuf.Any`
44
- // type: it is now recommended that you embed your value in your own wrapper
45
- // message which can be specifically documented.
36
+ // Wrappers for primitive (non-message) types. These types are useful
37
+ // for embedding primitives in the `google.protobuf.Any` type and for places
38
+ // where we need to distinguish between the absence of a primitive
39
+ // typed field and its default value.
46
40
  //
47
41
  // These wrappers have no meaningful use within repeated fields as they lack
48
42
  // the ability to detect presence on individual elements.
@@ -68,9 +62,6 @@ import { MessageType } from "@protobuf-ts/runtime";
68
62
  *
69
63
  * The JSON representation for `DoubleValue` is JSON number.
70
64
  *
71
- * Not recommended for use in new APIs, but still useful for legacy APIs and
72
- * has no plan to be removed.
73
- *
74
65
  * @generated from protobuf message google.protobuf.DoubleValue
75
66
  */
76
67
  export interface DoubleValue {
@@ -86,9 +77,6 @@ export interface DoubleValue {
86
77
  *
87
78
  * The JSON representation for `FloatValue` is JSON number.
88
79
  *
89
- * Not recommended for use in new APIs, but still useful for legacy APIs and
90
- * has no plan to be removed.
91
- *
92
80
  * @generated from protobuf message google.protobuf.FloatValue
93
81
  */
94
82
  export interface FloatValue {
@@ -104,9 +92,6 @@ export interface FloatValue {
104
92
  *
105
93
  * The JSON representation for `Int64Value` is JSON string.
106
94
  *
107
- * Not recommended for use in new APIs, but still useful for legacy APIs and
108
- * has no plan to be removed.
109
- *
110
95
  * @generated from protobuf message google.protobuf.Int64Value
111
96
  */
112
97
  export interface Int64Value {
@@ -122,9 +107,6 @@ export interface Int64Value {
122
107
  *
123
108
  * The JSON representation for `UInt64Value` is JSON string.
124
109
  *
125
- * Not recommended for use in new APIs, but still useful for legacy APIs and
126
- * has no plan to be removed.
127
- *
128
110
  * @generated from protobuf message google.protobuf.UInt64Value
129
111
  */
130
112
  export interface UInt64Value {
@@ -140,9 +122,6 @@ export interface UInt64Value {
140
122
  *
141
123
  * The JSON representation for `Int32Value` is JSON number.
142
124
  *
143
- * Not recommended for use in new APIs, but still useful for legacy APIs and
144
- * has no plan to be removed.
145
- *
146
125
  * @generated from protobuf message google.protobuf.Int32Value
147
126
  */
148
127
  export interface Int32Value {
@@ -158,9 +137,6 @@ export interface Int32Value {
158
137
  *
159
138
  * The JSON representation for `UInt32Value` is JSON number.
160
139
  *
161
- * Not recommended for use in new APIs, but still useful for legacy APIs and
162
- * has no plan to be removed.
163
- *
164
140
  * @generated from protobuf message google.protobuf.UInt32Value
165
141
  */
166
142
  export interface UInt32Value {
@@ -176,9 +152,6 @@ export interface UInt32Value {
176
152
  *
177
153
  * The JSON representation for `BoolValue` is JSON `true` and `false`.
178
154
  *
179
- * Not recommended for use in new APIs, but still useful for legacy APIs and
180
- * has no plan to be removed.
181
- *
182
155
  * @generated from protobuf message google.protobuf.BoolValue
183
156
  */
184
157
  export interface BoolValue {
@@ -194,9 +167,6 @@ export interface BoolValue {
194
167
  *
195
168
  * The JSON representation for `StringValue` is JSON string.
196
169
  *
197
- * Not recommended for use in new APIs, but still useful for legacy APIs and
198
- * has no plan to be removed.
199
- *
200
170
  * @generated from protobuf message google.protobuf.StringValue
201
171
  */
202
172
  export interface StringValue {
@@ -212,9 +182,6 @@ export interface StringValue {
212
182
  *
213
183
  * The JSON representation for `BytesValue` is JSON string.
214
184
  *
215
- * Not recommended for use in new APIs, but still useful for legacy APIs and
216
- * has no plan to be removed.
217
- *
218
185
  * @generated from protobuf message google.protobuf.BytesValue
219
186
  */
220
187
  export interface BytesValue {