@furo/open-models 1.8.0 → 1.9.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.
- package/custom-elements.json +5979 -4283
- package/dist/FieldNode.d.ts +4 -4
- package/dist/FieldNode.js +4 -4
- package/dist/FieldNode.js.map +1 -1
- package/dist/Registry.d.ts +1 -1
- package/dist/RpcStatusApplier.d.ts +2 -2
- package/dist/RpcStatusApplier.js +1 -1
- package/dist/index.d.ts +36 -36
- package/dist/index.js +33 -33
- package/dist/primitives/BOOLEAN.d.ts +1 -1
- package/dist/primitives/BOOLEAN.js +3 -3
- package/dist/primitives/BYTES.d.ts +2 -2
- package/dist/primitives/BYTES.js +3 -3
- package/dist/primitives/DOUBLE.d.ts +2 -2
- package/dist/primitives/DOUBLE.js +3 -3
- package/dist/primitives/ENUM.d.ts +1 -1
- package/dist/primitives/ENUM.js +2 -2
- package/dist/primitives/FLOAT.d.ts +2 -2
- package/dist/primitives/FLOAT.js +6 -6
- package/dist/primitives/FLOAT.js.map +1 -1
- package/dist/primitives/INT32.d.ts +2 -2
- package/dist/primitives/INT32.js +3 -3
- package/dist/primitives/INT64.d.ts +2 -2
- package/dist/primitives/INT64.js +3 -3
- package/dist/primitives/SINT32.d.ts +18 -0
- package/dist/primitives/SINT32.js +103 -0
- package/dist/primitives/SINT32.js.map +1 -0
- package/dist/primitives/SINT64.d.ts +17 -0
- package/dist/primitives/SINT64.js +93 -0
- package/dist/primitives/SINT64.js.map +1 -0
- package/dist/primitives/STRING.d.ts +2 -2
- package/dist/primitives/STRING.js +3 -3
- package/dist/primitives/UINT32.d.ts +2 -2
- package/dist/primitives/UINT32.js +3 -3
- package/dist/primitives/UINT64.d.ts +2 -2
- package/dist/primitives/UINT64.js +3 -3
- package/dist/proxies/ARRAY.d.ts +1 -1
- package/dist/proxies/ARRAY.js +1 -1
- package/dist/proxies/MAP.d.ts +1 -1
- package/dist/proxies/MAP.js +2 -2
- package/dist/proxies/RECURSION.d.ts +1 -1
- package/dist/proxies/RECURSION.js +1 -1
- package/dist/well_known/ANY.d.ts +1 -1
- package/dist/well_known/ANY.js +2 -2
- package/dist/well_known/BoolValue.d.ts +2 -2
- package/dist/well_known/BoolValue.js +3 -3
- package/dist/well_known/BytesValue.d.ts +2 -2
- package/dist/well_known/BytesValue.js +3 -3
- package/dist/well_known/DoubleValue.d.ts +2 -2
- package/dist/well_known/DoubleValue.js +3 -3
- package/dist/well_known/Duration.d.ts +2 -2
- package/dist/well_known/Duration.js +3 -3
- package/dist/well_known/EMPTY.d.ts +1 -1
- package/dist/well_known/EMPTY.js +2 -2
- package/dist/well_known/FieldMask.d.ts +2 -2
- package/dist/well_known/FieldMask.js +3 -3
- package/dist/well_known/FloatValue.d.ts +2 -2
- package/dist/well_known/FloatValue.js +3 -3
- package/dist/well_known/Int32Value.d.ts +2 -2
- package/dist/well_known/Int32Value.js +3 -3
- package/dist/well_known/Int64Value.d.ts +2 -2
- package/dist/well_known/Int64Value.js +3 -3
- package/dist/well_known/StringValue.d.ts +2 -2
- package/dist/well_known/StringValue.js +3 -3
- package/dist/well_known/Struct.d.ts +2 -2
- package/dist/well_known/Struct.js +3 -3
- package/dist/well_known/Timestamp.d.ts +2 -2
- package/dist/well_known/Timestamp.js +3 -3
- package/dist/well_known/UInt32Value.d.ts +2 -2
- package/dist/well_known/UInt32Value.js +3 -3
- package/dist/well_known/UInt64Value.d.ts +2 -2
- package/dist/well_known/UInt64Value.js +3 -3
- package/package.json +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { FieldConstraints } from '../FieldConstraints';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { FieldConstraints } from '../FieldConstraints.js';
|
|
3
3
|
export declare class FloatValue extends FieldNode {
|
|
4
4
|
get value(): number;
|
|
5
5
|
set value(value: number);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { Registry } from '../Registry';
|
|
3
|
-
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { Registry } from '../Registry.js';
|
|
3
|
+
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS.js';
|
|
4
4
|
export class FloatValue extends FieldNode {
|
|
5
5
|
get value() {
|
|
6
6
|
return this._value;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { FieldConstraints } from '../FieldConstraints';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { FieldConstraints } from '../FieldConstraints.js';
|
|
3
3
|
export declare class Int32Value extends FieldNode {
|
|
4
4
|
get value(): number;
|
|
5
5
|
set value(value: number);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { Registry } from '../Registry';
|
|
3
|
-
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { Registry } from '../Registry.js';
|
|
3
|
+
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS.js';
|
|
4
4
|
export class Int32Value extends FieldNode {
|
|
5
5
|
get value() {
|
|
6
6
|
return this._value;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { FieldConstraints } from '../FieldConstraints';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { FieldConstraints } from '../FieldConstraints.js';
|
|
3
3
|
export declare class Int64Value extends FieldNode {
|
|
4
4
|
get value(): bigint;
|
|
5
5
|
set value(value: bigint);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { Registry } from '../Registry';
|
|
3
|
-
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { Registry } from '../Registry.js';
|
|
3
|
+
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS.js';
|
|
4
4
|
export class Int64Value extends FieldNode {
|
|
5
5
|
get value() {
|
|
6
6
|
return this._value;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { FieldConstraints } from '../FieldConstraints';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { FieldConstraints } from '../FieldConstraints.js';
|
|
3
3
|
export declare class StringValue extends FieldNode {
|
|
4
4
|
get value(): string;
|
|
5
5
|
set value(value: string);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { Registry } from '../Registry';
|
|
3
|
-
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { Registry } from '../Registry.js';
|
|
3
|
+
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS.js';
|
|
4
4
|
export class StringValue extends FieldNode {
|
|
5
5
|
get value() {
|
|
6
6
|
return this._value;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { FieldConstraints } from '../FieldConstraints';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { FieldConstraints } from '../FieldConstraints.js';
|
|
3
3
|
export type JSONValue = string | number | boolean | null | {
|
|
4
4
|
[x: string]: JSONValue;
|
|
5
5
|
} | Array<JSONValue>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { Registry } from '../Registry';
|
|
3
|
-
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { Registry } from '../Registry.js';
|
|
3
|
+
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS.js';
|
|
4
4
|
/**
|
|
5
5
|
* Struct represents a structured data value, consisting of fields which map to dynamically typed values. In some languages, Struct might be supported by a native representation. For example, in scripting languages like JS a struct is represented as an object. The details of that representation are described together with the proto support for the language.
|
|
6
6
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { FieldConstraints } from '../FieldConstraints';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { FieldConstraints } from '../FieldConstraints.js';
|
|
3
3
|
export declare class Timestamp extends FieldNode {
|
|
4
4
|
get value(): string;
|
|
5
5
|
set value(value: string);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { Registry } from '../Registry';
|
|
3
|
-
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { Registry } from '../Registry.js';
|
|
3
|
+
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS.js';
|
|
4
4
|
export class Timestamp extends FieldNode {
|
|
5
5
|
get value() {
|
|
6
6
|
return this._value;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { FieldConstraints } from '../FieldConstraints';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { FieldConstraints } from '../FieldConstraints.js';
|
|
3
3
|
export declare class UInt32Value extends FieldNode {
|
|
4
4
|
get value(): number;
|
|
5
5
|
set value(value: number);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { Registry } from '../Registry';
|
|
3
|
-
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { Registry } from '../Registry.js';
|
|
3
|
+
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS.js';
|
|
4
4
|
export class UInt32Value extends FieldNode {
|
|
5
5
|
get value() {
|
|
6
6
|
return this._value;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { FieldConstraints } from '../FieldConstraints';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { FieldConstraints } from '../FieldConstraints.js';
|
|
3
3
|
export declare class UInt64Value extends FieldNode {
|
|
4
4
|
get value(): number;
|
|
5
5
|
set value(value: number);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FieldNode } from '../FieldNode';
|
|
2
|
-
import { Registry } from '../Registry';
|
|
3
|
-
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS';
|
|
1
|
+
import { FieldNode } from '../FieldNode.js';
|
|
2
|
+
import { Registry } from '../Registry.js';
|
|
3
|
+
import { OPEN_MODELS_OPTIONS } from '../OPEN_MODELS_OPTIONS.js';
|
|
4
4
|
export class UInt64Value extends FieldNode {
|
|
5
5
|
get value() {
|
|
6
6
|
return this._value;
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"homepage": "https://github.com/eclipse/eclipsefuro-web/tree/main/packages",
|
|
6
6
|
"repository": "git@github.com:eclipse/eclipsefuro-web.git",
|
|
7
7
|
"author": "eclipse furo",
|
|
8
|
-
"version": "1.
|
|
8
|
+
"version": "1.9.0",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"main": "dist/index.js",
|
|
11
11
|
"module": "dist/index.js",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@bufbuild/protobuf": "^2.0.0",
|
|
46
46
|
"@bufbuild/protoc-gen-es": "^2.0.0",
|
|
47
47
|
"@custom-elements-manifest/analyzer": "^0.10.3",
|
|
48
|
-
"@furo/fbp": "^6.
|
|
48
|
+
"@furo/fbp": "^6.15.0",
|
|
49
49
|
"@open-wc/eslint-config": "^12.0.3",
|
|
50
50
|
"@open-wc/testing": "^4.0.0",
|
|
51
51
|
"@rollup/plugin-json": "^6.1.0",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"prettier --write"
|
|
84
84
|
]
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "e6572d6f6036a5ea32c9bfc9875d5147c241d52e"
|
|
87
87
|
}
|