@kernelminds/scailo-sdk 0.0.107 → 0.0.108
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/lib/cjs/src/forms_fields_data.scailo_pb.js +62 -1
- package/lib/cjs/types/src/forms_fields_data.scailo_pb.d.ts +50 -0
- package/lib/cjs/types/src/forms_fields_data.scailo_pb.d.ts.map +1 -1
- package/lib/esm/src/forms_fields_data.scailo_pb.js +62 -1
- package/lib/esm/types/src/forms_fields_data.scailo_pb.d.ts +50 -0
- package/lib/esm/types/src/forms_fields_data.scailo_pb.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -4,10 +4,64 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
// @ts-nocheck
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.FormFieldDatumFilterRequest = exports.FormFieldDatumHistoryRequest = exports.FormFieldDatumList = exports.FormFieldDatumCreateRequest = exports.FormFieldDatum = void 0;
|
|
7
|
+
exports.FormFieldDatumFilterRequest = exports.FormFieldDatumHistoryRequest = exports.FormFieldDatumList = exports.FormFieldDatumCreateRequest = exports.FormFieldDatum = exports.FORM_FIELD_FILTER_OPERATOR = void 0;
|
|
8
8
|
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
9
|
const base_scailo_pb_js_1 = require("./base.scailo_pb.js");
|
|
10
10
|
const forms_fields_scailo_pb_js_1 = require("./forms_fields.scailo_pb.js");
|
|
11
|
+
/**
|
|
12
|
+
*
|
|
13
|
+
* Describes the form field filter operator
|
|
14
|
+
*
|
|
15
|
+
* @generated from enum Scailo.FORM_FIELD_FILTER_OPERATOR
|
|
16
|
+
*/
|
|
17
|
+
var FORM_FIELD_FILTER_OPERATOR;
|
|
18
|
+
(function (FORM_FIELD_FILTER_OPERATOR) {
|
|
19
|
+
/**
|
|
20
|
+
* The default operator which uses similarity to filter. Returns all records that are similar to the given value
|
|
21
|
+
*
|
|
22
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED = 0;
|
|
23
|
+
*/
|
|
24
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED"] = 0] = "FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED";
|
|
25
|
+
/**
|
|
26
|
+
* The operator uses equality. Returns all records that match the given value
|
|
27
|
+
*
|
|
28
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_EQUALITY = 10;
|
|
29
|
+
*/
|
|
30
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_EQUALITY"] = 10] = "FORM_FIELD_FILTER_OPERATOR_EQUALITY";
|
|
31
|
+
/**
|
|
32
|
+
* The operator uses less than. Returns all records that are less than the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically less than the given value.
|
|
33
|
+
*
|
|
34
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_LESS_THAN = 20;
|
|
35
|
+
*/
|
|
36
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_LESS_THAN"] = 20] = "FORM_FIELD_FILTER_OPERATOR_LESS_THAN";
|
|
37
|
+
/**
|
|
38
|
+
* The operator uses less than or equal. Returns all records that are less than or equal to the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically less than or equal to the given value.
|
|
39
|
+
*
|
|
40
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL = 21;
|
|
41
|
+
*/
|
|
42
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL"] = 21] = "FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL";
|
|
43
|
+
/**
|
|
44
|
+
* The operator uses greater than. Returns all records that are greater than the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically greater than the given value.
|
|
45
|
+
*
|
|
46
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_GREATER_THAN = 30;
|
|
47
|
+
*/
|
|
48
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_GREATER_THAN"] = 30] = "FORM_FIELD_FILTER_OPERATOR_GREATER_THAN";
|
|
49
|
+
/**
|
|
50
|
+
* The operator uses greater than or equal. Returns all records that are greater than or equal to the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically greater than or equal to the given value.
|
|
51
|
+
*
|
|
52
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL = 31;
|
|
53
|
+
*/
|
|
54
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL"] = 31] = "FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL";
|
|
55
|
+
})(FORM_FIELD_FILTER_OPERATOR || (exports.FORM_FIELD_FILTER_OPERATOR = FORM_FIELD_FILTER_OPERATOR = {}));
|
|
56
|
+
// Retrieve enum metadata with: proto3.getEnumType(FORM_FIELD_FILTER_OPERATOR)
|
|
57
|
+
protobuf_1.proto3.util.setEnumType(FORM_FIELD_FILTER_OPERATOR, "Scailo.FORM_FIELD_FILTER_OPERATOR", [
|
|
58
|
+
{ no: 0, name: "FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED" },
|
|
59
|
+
{ no: 10, name: "FORM_FIELD_FILTER_OPERATOR_EQUALITY" },
|
|
60
|
+
{ no: 20, name: "FORM_FIELD_FILTER_OPERATOR_LESS_THAN" },
|
|
61
|
+
{ no: 21, name: "FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL" },
|
|
62
|
+
{ no: 30, name: "FORM_FIELD_FILTER_OPERATOR_GREATER_THAN" },
|
|
63
|
+
{ no: 31, name: "FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL" },
|
|
64
|
+
]);
|
|
11
65
|
/**
|
|
12
66
|
*
|
|
13
67
|
* Describes the data stored in an individual form field data row of each dynamic form
|
|
@@ -231,6 +285,12 @@ class FormFieldDatumFilterRequest extends protobuf_1.Message {
|
|
|
231
285
|
* @generated from field: string value = 2;
|
|
232
286
|
*/
|
|
233
287
|
this.value = "";
|
|
288
|
+
/**
|
|
289
|
+
* The operator to be used
|
|
290
|
+
*
|
|
291
|
+
* @generated from field: Scailo.FORM_FIELD_FILTER_OPERATOR operator = 10;
|
|
292
|
+
*/
|
|
293
|
+
this.operator = FORM_FIELD_FILTER_OPERATOR.FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED;
|
|
234
294
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
235
295
|
}
|
|
236
296
|
static fromBinary(bytes, options) {
|
|
@@ -252,4 +312,5 @@ FormFieldDatumFilterRequest.typeName = "Scailo.FormFieldDatumFilterRequest";
|
|
|
252
312
|
FormFieldDatumFilterRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
253
313
|
{ no: 1, name: "form_field_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
254
314
|
{ no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
315
|
+
{ no: 10, name: "operator", kind: "enum", T: protobuf_1.proto3.getEnumType(FORM_FIELD_FILTER_OPERATOR) },
|
|
255
316
|
]);
|
|
@@ -2,6 +2,50 @@ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialM
|
|
|
2
2
|
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
3
|
import { EmployeeMetadata } from "./base.scailo_pb.js";
|
|
4
4
|
import { FormField } from "./forms_fields.scailo_pb.js";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* Describes the form field filter operator
|
|
8
|
+
*
|
|
9
|
+
* @generated from enum Scailo.FORM_FIELD_FILTER_OPERATOR
|
|
10
|
+
*/
|
|
11
|
+
export declare enum FORM_FIELD_FILTER_OPERATOR {
|
|
12
|
+
/**
|
|
13
|
+
* The default operator which uses similarity to filter. Returns all records that are similar to the given value
|
|
14
|
+
*
|
|
15
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED = 0;
|
|
16
|
+
*/
|
|
17
|
+
FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED = 0,
|
|
18
|
+
/**
|
|
19
|
+
* The operator uses equality. Returns all records that match the given value
|
|
20
|
+
*
|
|
21
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_EQUALITY = 10;
|
|
22
|
+
*/
|
|
23
|
+
FORM_FIELD_FILTER_OPERATOR_EQUALITY = 10,
|
|
24
|
+
/**
|
|
25
|
+
* The operator uses less than. Returns all records that are less than the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically less than the given value.
|
|
26
|
+
*
|
|
27
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_LESS_THAN = 20;
|
|
28
|
+
*/
|
|
29
|
+
FORM_FIELD_FILTER_OPERATOR_LESS_THAN = 20,
|
|
30
|
+
/**
|
|
31
|
+
* The operator uses less than or equal. Returns all records that are less than or equal to the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically less than or equal to the given value.
|
|
32
|
+
*
|
|
33
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL = 21;
|
|
34
|
+
*/
|
|
35
|
+
FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL = 21,
|
|
36
|
+
/**
|
|
37
|
+
* The operator uses greater than. Returns all records that are greater than the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically greater than the given value.
|
|
38
|
+
*
|
|
39
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_GREATER_THAN = 30;
|
|
40
|
+
*/
|
|
41
|
+
FORM_FIELD_FILTER_OPERATOR_GREATER_THAN = 30,
|
|
42
|
+
/**
|
|
43
|
+
* The operator uses greater than or equal. Returns all records that are greater than or equal to the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically greater than or equal to the given value.
|
|
44
|
+
*
|
|
45
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL = 31;
|
|
46
|
+
*/
|
|
47
|
+
FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL = 31
|
|
48
|
+
}
|
|
5
49
|
/**
|
|
6
50
|
*
|
|
7
51
|
* Describes the data stored in an individual form field data row of each dynamic form
|
|
@@ -169,6 +213,12 @@ export declare class FormFieldDatumFilterRequest extends Message<FormFieldDatumF
|
|
|
169
213
|
* @generated from field: string value = 2;
|
|
170
214
|
*/
|
|
171
215
|
value: string;
|
|
216
|
+
/**
|
|
217
|
+
* The operator to be used
|
|
218
|
+
*
|
|
219
|
+
* @generated from field: Scailo.FORM_FIELD_FILTER_OPERATOR operator = 10;
|
|
220
|
+
*/
|
|
221
|
+
operator: FORM_FIELD_FILTER_OPERATOR;
|
|
172
222
|
constructor(data?: PartialMessage<FormFieldDatumFilterRequest>);
|
|
173
223
|
static readonly runtime: typeof proto3;
|
|
174
224
|
static readonly typeName = "Scailo.FormFieldDatumFilterRequest";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"forms_fields_data.scailo_pb.d.ts","sourceRoot":"","sources":["../../../../src/forms_fields_data.scailo_pb.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"forms_fields_data.scailo_pb.d.ts","sourceRoot":"","sources":["../../../../src/forms_fields_data.scailo_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,10 +4,64 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
// @ts-nocheck
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.FormFieldDatumFilterRequest = exports.FormFieldDatumHistoryRequest = exports.FormFieldDatumList = exports.FormFieldDatumCreateRequest = exports.FormFieldDatum = void 0;
|
|
7
|
+
exports.FormFieldDatumFilterRequest = exports.FormFieldDatumHistoryRequest = exports.FormFieldDatumList = exports.FormFieldDatumCreateRequest = exports.FormFieldDatum = exports.FORM_FIELD_FILTER_OPERATOR = void 0;
|
|
8
8
|
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
9
|
const base_scailo_pb_js_1 = require("./base.scailo_pb.js");
|
|
10
10
|
const forms_fields_scailo_pb_js_1 = require("./forms_fields.scailo_pb.js");
|
|
11
|
+
/**
|
|
12
|
+
*
|
|
13
|
+
* Describes the form field filter operator
|
|
14
|
+
*
|
|
15
|
+
* @generated from enum Scailo.FORM_FIELD_FILTER_OPERATOR
|
|
16
|
+
*/
|
|
17
|
+
var FORM_FIELD_FILTER_OPERATOR;
|
|
18
|
+
(function (FORM_FIELD_FILTER_OPERATOR) {
|
|
19
|
+
/**
|
|
20
|
+
* The default operator which uses similarity to filter. Returns all records that are similar to the given value
|
|
21
|
+
*
|
|
22
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED = 0;
|
|
23
|
+
*/
|
|
24
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED"] = 0] = "FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED";
|
|
25
|
+
/**
|
|
26
|
+
* The operator uses equality. Returns all records that match the given value
|
|
27
|
+
*
|
|
28
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_EQUALITY = 10;
|
|
29
|
+
*/
|
|
30
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_EQUALITY"] = 10] = "FORM_FIELD_FILTER_OPERATOR_EQUALITY";
|
|
31
|
+
/**
|
|
32
|
+
* The operator uses less than. Returns all records that are less than the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically less than the given value.
|
|
33
|
+
*
|
|
34
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_LESS_THAN = 20;
|
|
35
|
+
*/
|
|
36
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_LESS_THAN"] = 20] = "FORM_FIELD_FILTER_OPERATOR_LESS_THAN";
|
|
37
|
+
/**
|
|
38
|
+
* The operator uses less than or equal. Returns all records that are less than or equal to the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically less than or equal to the given value.
|
|
39
|
+
*
|
|
40
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL = 21;
|
|
41
|
+
*/
|
|
42
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL"] = 21] = "FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL";
|
|
43
|
+
/**
|
|
44
|
+
* The operator uses greater than. Returns all records that are greater than the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically greater than the given value.
|
|
45
|
+
*
|
|
46
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_GREATER_THAN = 30;
|
|
47
|
+
*/
|
|
48
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_GREATER_THAN"] = 30] = "FORM_FIELD_FILTER_OPERATOR_GREATER_THAN";
|
|
49
|
+
/**
|
|
50
|
+
* The operator uses greater than or equal. Returns all records that are greater than or equal to the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically greater than or equal to the given value.
|
|
51
|
+
*
|
|
52
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL = 31;
|
|
53
|
+
*/
|
|
54
|
+
FORM_FIELD_FILTER_OPERATOR[FORM_FIELD_FILTER_OPERATOR["FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL"] = 31] = "FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL";
|
|
55
|
+
})(FORM_FIELD_FILTER_OPERATOR || (exports.FORM_FIELD_FILTER_OPERATOR = FORM_FIELD_FILTER_OPERATOR = {}));
|
|
56
|
+
// Retrieve enum metadata with: proto3.getEnumType(FORM_FIELD_FILTER_OPERATOR)
|
|
57
|
+
protobuf_1.proto3.util.setEnumType(FORM_FIELD_FILTER_OPERATOR, "Scailo.FORM_FIELD_FILTER_OPERATOR", [
|
|
58
|
+
{ no: 0, name: "FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED" },
|
|
59
|
+
{ no: 10, name: "FORM_FIELD_FILTER_OPERATOR_EQUALITY" },
|
|
60
|
+
{ no: 20, name: "FORM_FIELD_FILTER_OPERATOR_LESS_THAN" },
|
|
61
|
+
{ no: 21, name: "FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL" },
|
|
62
|
+
{ no: 30, name: "FORM_FIELD_FILTER_OPERATOR_GREATER_THAN" },
|
|
63
|
+
{ no: 31, name: "FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL" },
|
|
64
|
+
]);
|
|
11
65
|
/**
|
|
12
66
|
*
|
|
13
67
|
* Describes the data stored in an individual form field data row of each dynamic form
|
|
@@ -241,6 +295,12 @@ class FormFieldDatumFilterRequest extends protobuf_1.Message {
|
|
|
241
295
|
* @generated from field: string value = 2;
|
|
242
296
|
*/
|
|
243
297
|
value = "";
|
|
298
|
+
/**
|
|
299
|
+
* The operator to be used
|
|
300
|
+
*
|
|
301
|
+
* @generated from field: Scailo.FORM_FIELD_FILTER_OPERATOR operator = 10;
|
|
302
|
+
*/
|
|
303
|
+
operator = FORM_FIELD_FILTER_OPERATOR.FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED;
|
|
244
304
|
constructor(data) {
|
|
245
305
|
super();
|
|
246
306
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
@@ -250,6 +310,7 @@ class FormFieldDatumFilterRequest extends protobuf_1.Message {
|
|
|
250
310
|
static fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
251
311
|
{ no: 1, name: "form_field_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
252
312
|
{ no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
313
|
+
{ no: 10, name: "operator", kind: "enum", T: protobuf_1.proto3.getEnumType(FORM_FIELD_FILTER_OPERATOR) },
|
|
253
314
|
]);
|
|
254
315
|
static fromBinary(bytes, options) {
|
|
255
316
|
return new FormFieldDatumFilterRequest().fromBinary(bytes, options);
|
|
@@ -2,6 +2,50 @@ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialM
|
|
|
2
2
|
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
3
|
import { EmployeeMetadata } from "./base.scailo_pb.js";
|
|
4
4
|
import { FormField } from "./forms_fields.scailo_pb.js";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* Describes the form field filter operator
|
|
8
|
+
*
|
|
9
|
+
* @generated from enum Scailo.FORM_FIELD_FILTER_OPERATOR
|
|
10
|
+
*/
|
|
11
|
+
export declare enum FORM_FIELD_FILTER_OPERATOR {
|
|
12
|
+
/**
|
|
13
|
+
* The default operator which uses similarity to filter. Returns all records that are similar to the given value
|
|
14
|
+
*
|
|
15
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED = 0;
|
|
16
|
+
*/
|
|
17
|
+
FORM_FIELD_FILTER_OPERATOR_SIMILARITY_UNSPECIFIED = 0,
|
|
18
|
+
/**
|
|
19
|
+
* The operator uses equality. Returns all records that match the given value
|
|
20
|
+
*
|
|
21
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_EQUALITY = 10;
|
|
22
|
+
*/
|
|
23
|
+
FORM_FIELD_FILTER_OPERATOR_EQUALITY = 10,
|
|
24
|
+
/**
|
|
25
|
+
* The operator uses less than. Returns all records that are less than the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically less than the given value.
|
|
26
|
+
*
|
|
27
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_LESS_THAN = 20;
|
|
28
|
+
*/
|
|
29
|
+
FORM_FIELD_FILTER_OPERATOR_LESS_THAN = 20,
|
|
30
|
+
/**
|
|
31
|
+
* The operator uses less than or equal. Returns all records that are less than or equal to the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically less than or equal to the given value.
|
|
32
|
+
*
|
|
33
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL = 21;
|
|
34
|
+
*/
|
|
35
|
+
FORM_FIELD_FILTER_OPERATOR_LESS_THAN_OR_EQUAL = 21,
|
|
36
|
+
/**
|
|
37
|
+
* The operator uses greater than. Returns all records that are greater than the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically greater than the given value.
|
|
38
|
+
*
|
|
39
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_GREATER_THAN = 30;
|
|
40
|
+
*/
|
|
41
|
+
FORM_FIELD_FILTER_OPERATOR_GREATER_THAN = 30,
|
|
42
|
+
/**
|
|
43
|
+
* The operator uses greater than or equal. Returns all records that are greater than or equal to the given value. Useful for comparing numbers and dates. For strings, it returns all records that are lexicographically greater than or equal to the given value.
|
|
44
|
+
*
|
|
45
|
+
* @generated from enum value: FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL = 31;
|
|
46
|
+
*/
|
|
47
|
+
FORM_FIELD_FILTER_OPERATOR_GREATER_THAN_OR_EQUAL = 31
|
|
48
|
+
}
|
|
5
49
|
/**
|
|
6
50
|
*
|
|
7
51
|
* Describes the data stored in an individual form field data row of each dynamic form
|
|
@@ -169,6 +213,12 @@ export declare class FormFieldDatumFilterRequest extends Message<FormFieldDatumF
|
|
|
169
213
|
* @generated from field: string value = 2;
|
|
170
214
|
*/
|
|
171
215
|
value: string;
|
|
216
|
+
/**
|
|
217
|
+
* The operator to be used
|
|
218
|
+
*
|
|
219
|
+
* @generated from field: Scailo.FORM_FIELD_FILTER_OPERATOR operator = 10;
|
|
220
|
+
*/
|
|
221
|
+
operator: FORM_FIELD_FILTER_OPERATOR;
|
|
172
222
|
constructor(data?: PartialMessage<FormFieldDatumFilterRequest>);
|
|
173
223
|
static readonly runtime: typeof proto3;
|
|
174
224
|
static readonly typeName = "Scailo.FormFieldDatumFilterRequest";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"forms_fields_data.scailo_pb.d.ts","sourceRoot":"","sources":["../../../../src/forms_fields_data.scailo_pb.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"forms_fields_data.scailo_pb.d.ts","sourceRoot":"","sources":["../../../../src/forms_fields_data.scailo_pb.ts"],"names":[],"mappings":"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"}
|