mezon-js-protobuf 1.7.18 → 1.7.20
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/api/api.ts +2 -2
- package/dist/mezon-js-protobuf/google/protobuf/struct.d.ts +1 -1
- package/dist/mezon-js-protobuf/google/protobuf/timestamp.d.ts +1 -1
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +863 -242
- package/dist/mezon-js-protobuf.cjs.js +1973 -1885
- package/dist/mezon-js-protobuf.esm.mjs +1973 -1885
- package/google/protobuf/struct.ts +554 -554
- package/google/protobuf/timestamp.ts +223 -223
- package/google/protobuf/wrappers.ts +670 -670
- package/package.json +1 -1
- package/rtapi/realtime.ts +12056 -11946
package/api/api.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const protobufPackage = "google.protobuf";
|
|
|
4
4
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
5
5
|
* `Value` type union.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
7
|
+
* The JSON representation for `NullValue` is JSON `null`.
|
|
8
8
|
*/
|
|
9
9
|
export declare enum NullValue {
|
|
10
10
|
/** NULL_VALUE - Null value. */
|
|
@@ -88,7 +88,7 @@ export declare const protobufPackage = "google.protobuf";
|
|
|
88
88
|
* [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
|
89
89
|
* the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
|
90
90
|
* the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
|
91
|
-
* http://joda-time
|
|
91
|
+
* http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
|
|
92
92
|
* ) to obtain a formatter capable of generating timestamps in this format.
|
|
93
93
|
*/
|
|
94
94
|
export interface Timestamp {
|