Skip to content

Commit 82a29a5

Browse files
author
haikalpribadi
committed
Replaced the term 'DataType' with 'ValueType'
1 parent e608f85 commit 82a29a5

File tree

3 files changed

+24
-21
lines changed

3 files changed

+24
-21
lines changed

.circleci/config.yml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -134,19 +134,21 @@ workflows:
134134
filters:
135135
branches:
136136
only: master
137-
- sync-dependencies-snapshot:
137+
# - sync-dependencies-snapshot:
138+
# filters:
139+
# branches:
140+
# only: master
141+
# requires:
142+
# - build
143+
# - deploy-maven-snapshot
144+
- release-approval:
138145
filters:
139146
branches:
140147
only: master
141148
requires:
149+
# - sync-dependencies-snapshot
142150
- build
143151
- deploy-maven-snapshot
144-
- release-approval:
145-
filters:
146-
branches:
147-
only: master
148-
requires:
149-
- sync-dependencies-snapshot
150152

151153

152154
protocol-release:
@@ -168,15 +170,16 @@ workflows:
168170
only: protocol-release-branch
169171
requires:
170172
- deploy-approval
171-
- sync-dependencies-release:
172-
filters:
173-
branches:
174-
only: protocol-release-branch
175-
requires:
176-
- deploy-maven
173+
# - sync-dependencies-release:
174+
# filters:
175+
# branches:
176+
# only: protocol-release-branch
177+
# requires:
178+
# - deploy-maven
177179
- release-cleanup:
178180
filters:
179181
branches:
180182
only: protocol-release-branch
181183
requires:
182-
- sync-dependencies-release
184+
# - sync-dependencies-release
185+
- deploy-maven

session/Concept.proto

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ message Method {
6060
// AttributeType method requests
6161
AttributeType.Create.Req attributeType_create_req = 800;
6262
AttributeType.Attribute.Req attributeType_attribute_req = 801;
63-
AttributeType.DataType.Req attributeType_dataType_req = 802;
63+
AttributeType.ValueType.Req attributeType_valueType_req = 802;
6464
AttributeType.GetRegex.Req attributeType_getRegex_req = 803;
6565
AttributeType.SetRegex.Req attributeType_setRegex_req = 804;
6666

@@ -115,7 +115,7 @@ message Method {
115115
// AttributeType method responses
116116
AttributeType.Create.Res attributeType_create_res = 800;
117117
AttributeType.Attribute.Res attributeType_attribute_res = 801;
118-
AttributeType.DataType.Res attributeType_dataType_res = 802;
118+
AttributeType.ValueType.Res attributeType_valueType_res = 802;
119119
AttributeType.GetRegex.Res attributeType_getRegex_res = 803;
120120
AttributeType.SetRegex.Res attributeType_setRegex_res = 804;
121121

@@ -217,7 +217,7 @@ message Concept {
217217
Thing.Type.Res type_res = 5;
218218
Thing.IsInferred.Res inferred_res = 6;
219219
Attribute.Value.Res value_res = 7;
220-
AttributeType.DataType.Res dataType_res = 8;
220+
AttributeType.ValueType.Res valueType_res = 8;
221221
SchemaConcept.GetLabel.Res label_res = 9;
222222
SchemaConcept.IsImplicit.Res isImplicit_res = 10;
223223

@@ -502,7 +502,7 @@ message RelationType {
502502

503503
message AttributeType {
504504

505-
enum DATA_TYPE {
505+
enum VALUE_TYPE {
506506
STRING = 0;
507507
BOOLEAN = 1;
508508
INTEGER = 2;
@@ -533,11 +533,11 @@ message AttributeType {
533533
}
534534
}
535535

536-
message DataType {
536+
message ValueType {
537537
message Req {}
538538
message Res {
539539
oneof res {
540-
DATA_TYPE dataType = 1;
540+
VALUE_TYPE valueType = 1;
541541
Null null = 2;
542542
}
543543
}

session/Session.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ message Transaction {
205205
message PutAttributeType {
206206
message Req {
207207
string label = 1;
208-
AttributeType.DATA_TYPE dataType = 2;
208+
AttributeType.VALUE_TYPE valueType = 2;
209209
}
210210
message Res {
211211
Concept attributeType = 1;

0 commit comments

Comments
 (0)