@barumetric/contracts 1.3.3 → 1.3.4
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/gen/ts/categories.ts +10 -10
- package/package.json +1 -1
- package/proto/categories.proto +10 -10
package/gen/ts/categories.ts
CHANGED
|
@@ -12,16 +12,16 @@ import { Empty } from "./google/protobuf/empty";
|
|
|
12
12
|
export const protobufPackage = "categories.v1";
|
|
13
13
|
|
|
14
14
|
export enum AttributeType {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
15
|
+
UNSPECIFIED = 0,
|
|
16
|
+
STRING = 1,
|
|
17
|
+
TEXT = 2,
|
|
18
|
+
INTEGER = 3,
|
|
19
|
+
FLOAT = 4,
|
|
20
|
+
BOOLEAN = 5,
|
|
21
|
+
ENUM = 6,
|
|
22
|
+
MULTI_ENUM = 7,
|
|
23
|
+
RANGE = 8,
|
|
24
|
+
DATE = 9,
|
|
25
25
|
UNRECOGNIZED = -1,
|
|
26
26
|
}
|
|
27
27
|
|
package/package.json
CHANGED
package/proto/categories.proto
CHANGED
|
@@ -132,16 +132,16 @@ message EnumValueInput {
|
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
enum AttributeType {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
135
|
+
UNSPECIFIED = 0;
|
|
136
|
+
STRING = 1;
|
|
137
|
+
TEXT = 2;
|
|
138
|
+
INTEGER = 3;
|
|
139
|
+
FLOAT = 4;
|
|
140
|
+
BOOLEAN = 5;
|
|
141
|
+
ENUM = 6;
|
|
142
|
+
MULTI_ENUM = 7;
|
|
143
|
+
RANGE = 8;
|
|
144
|
+
DATE = 9;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
// Attribute management messages
|