@eide/foir-proto-ts 0.47.0 → 0.48.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/package.json
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
6
|
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
-
import type { Value } from "@bufbuild/protobuf/wkt";
|
|
8
7
|
|
|
9
8
|
/**
|
|
10
9
|
* Describes the file expressions/v1/expressions.proto.
|
|
@@ -62,11 +61,14 @@ export declare type RuleExpression = Message<"expressions.v1.RuleExpression"> &
|
|
|
62
61
|
logicalOperator?: string | undefined;
|
|
63
62
|
|
|
64
63
|
/**
|
|
65
|
-
* Literal fields.
|
|
64
|
+
* Literal fields. JSON-encoded raw value (e.g. "true", "\"hello\"", "42",
|
|
65
|
+
* "[1,2,3]"). Stored as a string instead of google.protobuf.Value so
|
|
66
|
+
* protobuf-es clients can construct the message without manually wrapping
|
|
67
|
+
* primitives in the Value WKT's `kind` oneof.
|
|
66
68
|
*
|
|
67
|
-
* @generated from field: optional
|
|
69
|
+
* @generated from field: optional string value = 8;
|
|
68
70
|
*/
|
|
69
|
-
value?:
|
|
71
|
+
value?: string | undefined;
|
|
70
72
|
};
|
|
71
73
|
|
|
72
74
|
/**
|
|
@@ -96,11 +98,11 @@ export declare type RuleOperand = Message<"expressions.v1.RuleOperand"> & {
|
|
|
96
98
|
path?: string | undefined;
|
|
97
99
|
|
|
98
100
|
/**
|
|
99
|
-
* For literal
|
|
101
|
+
* For literal: JSON-encoded raw value (see RuleExpression.value)
|
|
100
102
|
*
|
|
101
|
-
* @generated from field: optional
|
|
103
|
+
* @generated from field: optional string value = 3;
|
|
102
104
|
*/
|
|
103
|
-
value?:
|
|
105
|
+
value?: string | undefined;
|
|
104
106
|
|
|
105
107
|
/**
|
|
106
108
|
* For literal: "string", "number", "boolean", "array", "null"
|
|
@@ -3,13 +3,12 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
-
import { file_google_protobuf_struct } from "@bufbuild/protobuf/wkt";
|
|
7
6
|
|
|
8
7
|
/**
|
|
9
8
|
* Describes the file expressions/v1/expressions.proto.
|
|
10
9
|
*/
|
|
11
10
|
export const file_expressions_v1_expressions = /*@__PURE__*/
|
|
12
|
-
fileDesc("
|
|
11
|
+
fileDesc("CiBleHByZXNzaW9ucy92MS9leHByZXNzaW9ucy5wcm90bxIOZXhwcmVzc2lvbnMudjEiyAIKDlJ1bGVFeHByZXNzaW9uEgwKBHR5cGUYASABKAkSCgoCaWQYAiABKAkSLgoEbGVmdBgDIAEoCzIbLmV4cHJlc3Npb25zLnYxLlJ1bGVPcGVyYW5kSACIAQESFQoIb3BlcmF0b3IYBCABKAlIAYgBARIvCgVyaWdodBgFIAEoCzIbLmV4cHJlc3Npb25zLnYxLlJ1bGVPcGVyYW5kSAKIAQESMgoKY29uZGl0aW9ucxgGIAMoCzIeLmV4cHJlc3Npb25zLnYxLlJ1bGVFeHByZXNzaW9uEh0KEGxvZ2ljYWxfb3BlcmF0b3IYByABKAlIA4gBARISCgV2YWx1ZRgIIAEoCUgEiAEBQgcKBV9sZWZ0QgsKCV9vcGVyYXRvckIICgZfcmlnaHRCEwoRX2xvZ2ljYWxfb3BlcmF0b3JCCAoGX3ZhbHVlIu8BCgtSdWxlT3BlcmFuZBIMCgR0eXBlGAEgASgJEhEKBHBhdGgYAiABKAlIAIgBARISCgV2YWx1ZRgDIAEoCUgBiAEBEhcKCnZhbHVlX3R5cGUYBCABKAlIAogBARIVCghmdW5jdGlvbhgFIAEoCUgDiAEBEi4KCWFyZ3VtZW50cxgGIAMoCzIbLmV4cHJlc3Npb25zLnYxLlJ1bGVPcGVyYW5kEhIKBWxhYmVsGAcgASgJSASIAQFCBwoFX3BhdGhCCAoGX3ZhbHVlQg0KC192YWx1ZV90eXBlQgsKCV9mdW5jdGlvbkIICgZfbGFiZWxCQ1pBZ2l0aHViLmNvbS9laWRlc3R1ZGlvL2ZvaXIvZ2VuL3Byb3RvL2V4cHJlc3Npb25zL3YxO2V4cHJlc3Npb25zdjFiBnByb3RvMw");
|
|
13
12
|
|
|
14
13
|
/**
|
|
15
14
|
* Describes the message expressions.v1.RuleExpression.
|