@aldiokta/protocgen 1.0.101 → 1.1.1

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.
Files changed (41) hide show
  1. package/cherry/v1/core/access_manager/access_manager_grpc_pb.js +1 -0
  2. package/cherry/v1/core/access_manager/access_manager_pb.js +240 -0
  3. package/cherry/v1/core/attribute/attribute_grpc_pb.js +309 -0
  4. package/cherry/v1/core/attribute/attribute_pb.js +4432 -0
  5. package/cherry/v1/core/auth/auth_grpc_pb.js +364 -0
  6. package/cherry/v1/core/auth/auth_pb.js +3766 -0
  7. package/cherry/v1/core/company/company_grpc_pb.js +177 -0
  8. package/cherry/v1/core/company/company_pb.js +2875 -0
  9. package/cherry/v1/core/employee/employee_grpc_pb.js +206 -0
  10. package/cherry/v1/core/employee/employee_pb.js +4283 -0
  11. package/cherry/v1/core/employee_personal/employee_personal_grpc_pb.js +177 -0
  12. package/cherry/v1/core/employee_personal/employee_personal_pb.js +2961 -0
  13. package/cherry/v1/core/job_grade/job_grade_grpc_pb.js +178 -0
  14. package/cherry/v1/core/job_grade/job_grade_pb.js +2605 -0
  15. package/cherry/v1/core/job_position/job_position_grpc_pb.js +181 -0
  16. package/cherry/v1/core/job_position/job_position_pb.js +3762 -0
  17. package/cherry/v1/core/job_title/job_title_grpc_pb.js +178 -0
  18. package/cherry/v1/core/job_title/job_title_pb.js +2958 -0
  19. package/cherry/v1/core/link_data_source/link_data_source_grpc_pb.js +177 -0
  20. package/cherry/v1/core/link_data_source/link_data_source_pb.js +2642 -0
  21. package/cherry/v1/core/location/location_grpc_pb.js +837 -0
  22. package/cherry/v1/core/location/location_pb.js +10879 -0
  23. package/cherry/v1/core/organization/organization_grpc_pb.js +180 -0
  24. package/cherry/v1/core/organization/organization_pb.js +3032 -0
  25. package/cherry/v1/core/organization_level/organization_level_grpc_pb.js +178 -0
  26. package/cherry/v1/core/organization_level/organization_level_pb.js +2545 -0
  27. package/cherry/v1/core/transaction_builder/transaction_builder_grpc_pb.js +254 -0
  28. package/cherry/v1/core/transaction_builder/transaction_builder_pb.js +7419 -0
  29. package/cherry/v1/core/users/users_grpc_pb.js +45 -0
  30. package/cherry/v1/core/users/users_pb.js +1246 -0
  31. package/cherry/v1/core/work_location/work_location_grpc_pb.js +179 -0
  32. package/cherry/v1/core/work_location/work_location_pb.js +3972 -0
  33. package/cherry/v1/global/meta/meta_grpc_pb.js +1 -0
  34. package/cherry/v1/global/meta/meta_pb.js +1179 -0
  35. package/package.json +1 -1
  36. package/prisca/v1/core/incoterm/incoterm_grpc_pb.js +144 -0
  37. package/prisca/v1/core/incoterm/incoterm_pb.js +2497 -0
  38. package/prisca/v1/core/term_of_payment/term_of_payment_grpc_pb.js +144 -0
  39. package/prisca/v1/core/term_of_payment/term_of_payment_pb.js +2105 -0
  40. package/prisca/v1/core/workflow/workflow_pb.js +128 -32
  41. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +182 -2
@@ -0,0 +1 @@
1
+ // GENERATED CODE -- NO SERVICES IN PROTO
@@ -0,0 +1,240 @@
1
+ // source: cherry/v1/core/access_manager/access_manager.proto
2
+ /**
3
+ * @fileoverview
4
+ * @enhanceable
5
+ * @suppress {missingRequire} reports error on implicit type usages.
6
+ * @suppress {messageConventions} JS Compiler reports an error if a variable or
7
+ * field starts with 'MSG_' and isn't a translatable message.
8
+ * @public
9
+ */
10
+ // GENERATED CODE -- DO NOT EDIT!
11
+ /* eslint-disable */
12
+ // @ts-nocheck
13
+
14
+ var jspb = require('google-protobuf');
15
+ var goog = jspb;
16
+ var global =
17
+ (typeof globalThis !== 'undefined' && globalThis) ||
18
+ (typeof window !== 'undefined' && window) ||
19
+ (typeof global !== 'undefined' && global) ||
20
+ (typeof self !== 'undefined' && self) ||
21
+ (function () { return this; }).call(null) ||
22
+ Function('return this')();
23
+
24
+ var cherry_v1_global_meta_meta_pb = require('../../../../cherry/v1/global/meta/meta_pb.js');
25
+ goog.object.extend(proto, cherry_v1_global_meta_meta_pb);
26
+ var cherry_v1_core_users_users_pb = require('../../../../cherry/v1/core/users/users_pb.js');
27
+ goog.object.extend(proto, cherry_v1_core_users_users_pb);
28
+ goog.exportSymbol('proto.Role', null, global);
29
+ /**
30
+ * Generated by JsPbCodeGenerator.
31
+ * @param {Array=} opt_data Optional initial data array, typically from a
32
+ * server response, or constructed directly in Javascript. The array is used
33
+ * in place and becomes part of the constructed object. It is not cloned.
34
+ * If no data is provided, the constructed object will be empty, but still
35
+ * valid.
36
+ * @extends {jspb.Message}
37
+ * @constructor
38
+ */
39
+ proto.Role = function(opt_data) {
40
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
41
+ };
42
+ goog.inherits(proto.Role, jspb.Message);
43
+ if (goog.DEBUG && !COMPILED) {
44
+ /**
45
+ * @public
46
+ * @override
47
+ */
48
+ proto.Role.displayName = 'proto.Role';
49
+ }
50
+
51
+
52
+
53
+ if (jspb.Message.GENERATE_TO_OBJECT) {
54
+ /**
55
+ * Creates an object representation of this proto.
56
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
57
+ * Optional fields that are not set will be set to undefined.
58
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
59
+ * For the list of reserved names please see:
60
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
61
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
62
+ * JSPB instance for transitional soy proto support:
63
+ * http://goto/soy-param-migration
64
+ * @return {!Object}
65
+ */
66
+ proto.Role.prototype.toObject = function(opt_includeInstance) {
67
+ return proto.Role.toObject(opt_includeInstance, this);
68
+ };
69
+
70
+
71
+ /**
72
+ * Static version of the {@see toObject} method.
73
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
74
+ * the JSPB instance for transitional soy proto support:
75
+ * http://goto/soy-param-migration
76
+ * @param {!proto.Role} msg The msg instance to transform.
77
+ * @return {!Object}
78
+ * @suppress {unusedLocalVariables} f is only used for nested messages
79
+ */
80
+ proto.Role.toObject = function(includeInstance, msg) {
81
+ var f, obj = {
82
+ name: jspb.Message.getFieldWithDefault(msg, 1, ""),
83
+ description: jspb.Message.getFieldWithDefault(msg, 2, ""),
84
+ referencesId: jspb.Message.getFieldWithDefault(msg, 3, "")
85
+ };
86
+
87
+ if (includeInstance) {
88
+ obj.$jspbMessageInstance = msg;
89
+ }
90
+ return obj;
91
+ };
92
+ }
93
+
94
+
95
+ /**
96
+ * Deserializes binary data (in protobuf wire format).
97
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
98
+ * @return {!proto.Role}
99
+ */
100
+ proto.Role.deserializeBinary = function(bytes) {
101
+ var reader = new jspb.BinaryReader(bytes);
102
+ var msg = new proto.Role;
103
+ return proto.Role.deserializeBinaryFromReader(msg, reader);
104
+ };
105
+
106
+
107
+ /**
108
+ * Deserializes binary data (in protobuf wire format) from the
109
+ * given reader into the given message object.
110
+ * @param {!proto.Role} msg The message object to deserialize into.
111
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
112
+ * @return {!proto.Role}
113
+ */
114
+ proto.Role.deserializeBinaryFromReader = function(msg, reader) {
115
+ while (reader.nextField()) {
116
+ if (reader.isEndGroup()) {
117
+ break;
118
+ }
119
+ var field = reader.getFieldNumber();
120
+ switch (field) {
121
+ case 1:
122
+ var value = /** @type {string} */ (reader.readString());
123
+ msg.setName(value);
124
+ break;
125
+ case 2:
126
+ var value = /** @type {string} */ (reader.readString());
127
+ msg.setDescription(value);
128
+ break;
129
+ case 3:
130
+ var value = /** @type {string} */ (reader.readString());
131
+ msg.setReferencesId(value);
132
+ break;
133
+ default:
134
+ reader.skipField();
135
+ break;
136
+ }
137
+ }
138
+ return msg;
139
+ };
140
+
141
+
142
+ /**
143
+ * Serializes the message to binary data (in protobuf wire format).
144
+ * @return {!Uint8Array}
145
+ */
146
+ proto.Role.prototype.serializeBinary = function() {
147
+ var writer = new jspb.BinaryWriter();
148
+ proto.Role.serializeBinaryToWriter(this, writer);
149
+ return writer.getResultBuffer();
150
+ };
151
+
152
+
153
+ /**
154
+ * Serializes the given message to binary data (in protobuf wire
155
+ * format), writing to the given BinaryWriter.
156
+ * @param {!proto.Role} message
157
+ * @param {!jspb.BinaryWriter} writer
158
+ * @suppress {unusedLocalVariables} f is only used for nested messages
159
+ */
160
+ proto.Role.serializeBinaryToWriter = function(message, writer) {
161
+ var f = undefined;
162
+ f = message.getName();
163
+ if (f.length > 0) {
164
+ writer.writeString(
165
+ 1,
166
+ f
167
+ );
168
+ }
169
+ f = message.getDescription();
170
+ if (f.length > 0) {
171
+ writer.writeString(
172
+ 2,
173
+ f
174
+ );
175
+ }
176
+ f = message.getReferencesId();
177
+ if (f.length > 0) {
178
+ writer.writeString(
179
+ 3,
180
+ f
181
+ );
182
+ }
183
+ };
184
+
185
+
186
+ /**
187
+ * optional string name = 1;
188
+ * @return {string}
189
+ */
190
+ proto.Role.prototype.getName = function() {
191
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
192
+ };
193
+
194
+
195
+ /**
196
+ * @param {string} value
197
+ * @return {!proto.Role} returns this
198
+ */
199
+ proto.Role.prototype.setName = function(value) {
200
+ return jspb.Message.setProto3StringField(this, 1, value);
201
+ };
202
+
203
+
204
+ /**
205
+ * optional string description = 2;
206
+ * @return {string}
207
+ */
208
+ proto.Role.prototype.getDescription = function() {
209
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
210
+ };
211
+
212
+
213
+ /**
214
+ * @param {string} value
215
+ * @return {!proto.Role} returns this
216
+ */
217
+ proto.Role.prototype.setDescription = function(value) {
218
+ return jspb.Message.setProto3StringField(this, 2, value);
219
+ };
220
+
221
+
222
+ /**
223
+ * optional string references_id = 3;
224
+ * @return {string}
225
+ */
226
+ proto.Role.prototype.getReferencesId = function() {
227
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
228
+ };
229
+
230
+
231
+ /**
232
+ * @param {string} value
233
+ * @return {!proto.Role} returns this
234
+ */
235
+ proto.Role.prototype.setReferencesId = function(value) {
236
+ return jspb.Message.setProto3StringField(this, 3, value);
237
+ };
238
+
239
+
240
+ goog.object.extend(exports, proto);
@@ -0,0 +1,309 @@
1
+ // GENERATED CODE -- DO NOT EDIT!
2
+
3
+ 'use strict';
4
+ var grpc = require('@grpc/grpc-js');
5
+ var cherry_v1_core_attribute_attribute_pb = require('../../../../cherry/v1/core/attribute/attribute_pb.js');
6
+ var cherry_v1_global_meta_meta_pb = require('../../../../cherry/v1/global/meta/meta_pb.js');
7
+
8
+ function serialize_AttributeValueGetByIdRequest(arg) {
9
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.AttributeValueGetByIdRequest)) {
10
+ throw new Error('Expected argument of type AttributeValueGetByIdRequest');
11
+ }
12
+ return Buffer.from(arg.serializeBinary());
13
+ }
14
+
15
+ function deserialize_AttributeValueGetByIdRequest(buffer_arg) {
16
+ return cherry_v1_core_attribute_attribute_pb.AttributeValueGetByIdRequest.deserializeBinary(new Uint8Array(buffer_arg));
17
+ }
18
+
19
+ function serialize_AttributeValueGetByIdResponse(arg) {
20
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.AttributeValueGetByIdResponse)) {
21
+ throw new Error('Expected argument of type AttributeValueGetByIdResponse');
22
+ }
23
+ return Buffer.from(arg.serializeBinary());
24
+ }
25
+
26
+ function deserialize_AttributeValueGetByIdResponse(buffer_arg) {
27
+ return cherry_v1_core_attribute_attribute_pb.AttributeValueGetByIdResponse.deserializeBinary(new Uint8Array(buffer_arg));
28
+ }
29
+
30
+ function serialize_CreateAttributeValueRequest(arg) {
31
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.CreateAttributeValueRequest)) {
32
+ throw new Error('Expected argument of type CreateAttributeValueRequest');
33
+ }
34
+ return Buffer.from(arg.serializeBinary());
35
+ }
36
+
37
+ function deserialize_CreateAttributeValueRequest(buffer_arg) {
38
+ return cherry_v1_core_attribute_attribute_pb.CreateAttributeValueRequest.deserializeBinary(new Uint8Array(buffer_arg));
39
+ }
40
+
41
+ function serialize_CreateAttributeValueResponse(arg) {
42
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.CreateAttributeValueResponse)) {
43
+ throw new Error('Expected argument of type CreateAttributeValueResponse');
44
+ }
45
+ return Buffer.from(arg.serializeBinary());
46
+ }
47
+
48
+ function deserialize_CreateAttributeValueResponse(buffer_arg) {
49
+ return cherry_v1_core_attribute_attribute_pb.CreateAttributeValueResponse.deserializeBinary(new Uint8Array(buffer_arg));
50
+ }
51
+
52
+ function serialize_DeleteAttributeValueRequest(arg) {
53
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.DeleteAttributeValueRequest)) {
54
+ throw new Error('Expected argument of type DeleteAttributeValueRequest');
55
+ }
56
+ return Buffer.from(arg.serializeBinary());
57
+ }
58
+
59
+ function deserialize_DeleteAttributeValueRequest(buffer_arg) {
60
+ return cherry_v1_core_attribute_attribute_pb.DeleteAttributeValueRequest.deserializeBinary(new Uint8Array(buffer_arg));
61
+ }
62
+
63
+ function serialize_DeleteAttributeValueResponse(arg) {
64
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.DeleteAttributeValueResponse)) {
65
+ throw new Error('Expected argument of type DeleteAttributeValueResponse');
66
+ }
67
+ return Buffer.from(arg.serializeBinary());
68
+ }
69
+
70
+ function deserialize_DeleteAttributeValueResponse(buffer_arg) {
71
+ return cherry_v1_core_attribute_attribute_pb.DeleteAttributeValueResponse.deserializeBinary(new Uint8Array(buffer_arg));
72
+ }
73
+
74
+ function serialize_GetAttributeAddressRequest(arg) {
75
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetAttributeAddressRequest)) {
76
+ throw new Error('Expected argument of type GetAttributeAddressRequest');
77
+ }
78
+ return Buffer.from(arg.serializeBinary());
79
+ }
80
+
81
+ function deserialize_GetAttributeAddressRequest(buffer_arg) {
82
+ return cherry_v1_core_attribute_attribute_pb.GetAttributeAddressRequest.deserializeBinary(new Uint8Array(buffer_arg));
83
+ }
84
+
85
+ function serialize_GetAttributeAddressResponse(arg) {
86
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetAttributeAddressResponse)) {
87
+ throw new Error('Expected argument of type GetAttributeAddressResponse');
88
+ }
89
+ return Buffer.from(arg.serializeBinary());
90
+ }
91
+
92
+ function deserialize_GetAttributeAddressResponse(buffer_arg) {
93
+ return cherry_v1_core_attribute_attribute_pb.GetAttributeAddressResponse.deserializeBinary(new Uint8Array(buffer_arg));
94
+ }
95
+
96
+ function serialize_GetAttributeEducationRequest(arg) {
97
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetAttributeEducationRequest)) {
98
+ throw new Error('Expected argument of type GetAttributeEducationRequest');
99
+ }
100
+ return Buffer.from(arg.serializeBinary());
101
+ }
102
+
103
+ function deserialize_GetAttributeEducationRequest(buffer_arg) {
104
+ return cherry_v1_core_attribute_attribute_pb.GetAttributeEducationRequest.deserializeBinary(new Uint8Array(buffer_arg));
105
+ }
106
+
107
+ function serialize_GetAttributeEducationResponse(arg) {
108
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetAttributeEducationResponse)) {
109
+ throw new Error('Expected argument of type GetAttributeEducationResponse');
110
+ }
111
+ return Buffer.from(arg.serializeBinary());
112
+ }
113
+
114
+ function deserialize_GetAttributeEducationResponse(buffer_arg) {
115
+ return cherry_v1_core_attribute_attribute_pb.GetAttributeEducationResponse.deserializeBinary(new Uint8Array(buffer_arg));
116
+ }
117
+
118
+ function serialize_GetAttributePersonalDataRequest(arg) {
119
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetAttributePersonalDataRequest)) {
120
+ throw new Error('Expected argument of type GetAttributePersonalDataRequest');
121
+ }
122
+ return Buffer.from(arg.serializeBinary());
123
+ }
124
+
125
+ function deserialize_GetAttributePersonalDataRequest(buffer_arg) {
126
+ return cherry_v1_core_attribute_attribute_pb.GetAttributePersonalDataRequest.deserializeBinary(new Uint8Array(buffer_arg));
127
+ }
128
+
129
+ function serialize_GetAttributePersonalDataResponse(arg) {
130
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetAttributePersonalDataResponse)) {
131
+ throw new Error('Expected argument of type GetAttributePersonalDataResponse');
132
+ }
133
+ return Buffer.from(arg.serializeBinary());
134
+ }
135
+
136
+ function deserialize_GetAttributePersonalDataResponse(buffer_arg) {
137
+ return cherry_v1_core_attribute_attribute_pb.GetAttributePersonalDataResponse.deserializeBinary(new Uint8Array(buffer_arg));
138
+ }
139
+
140
+ function serialize_GetAttributeRelativeRequest(arg) {
141
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetAttributeRelativeRequest)) {
142
+ throw new Error('Expected argument of type GetAttributeRelativeRequest');
143
+ }
144
+ return Buffer.from(arg.serializeBinary());
145
+ }
146
+
147
+ function deserialize_GetAttributeRelativeRequest(buffer_arg) {
148
+ return cherry_v1_core_attribute_attribute_pb.GetAttributeRelativeRequest.deserializeBinary(new Uint8Array(buffer_arg));
149
+ }
150
+
151
+ function serialize_GetAttributeRelativeResponse(arg) {
152
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetAttributeRelativeResponse)) {
153
+ throw new Error('Expected argument of type GetAttributeRelativeResponse');
154
+ }
155
+ return Buffer.from(arg.serializeBinary());
156
+ }
157
+
158
+ function deserialize_GetAttributeRelativeResponse(buffer_arg) {
159
+ return cherry_v1_core_attribute_attribute_pb.GetAttributeRelativeResponse.deserializeBinary(new Uint8Array(buffer_arg));
160
+ }
161
+
162
+ function serialize_GetListAttributeValueRequest(arg) {
163
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetListAttributeValueRequest)) {
164
+ throw new Error('Expected argument of type GetListAttributeValueRequest');
165
+ }
166
+ return Buffer.from(arg.serializeBinary());
167
+ }
168
+
169
+ function deserialize_GetListAttributeValueRequest(buffer_arg) {
170
+ return cherry_v1_core_attribute_attribute_pb.GetListAttributeValueRequest.deserializeBinary(new Uint8Array(buffer_arg));
171
+ }
172
+
173
+ function serialize_GetListAttributeValueResponse(arg) {
174
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.GetListAttributeValueResponse)) {
175
+ throw new Error('Expected argument of type GetListAttributeValueResponse');
176
+ }
177
+ return Buffer.from(arg.serializeBinary());
178
+ }
179
+
180
+ function deserialize_GetListAttributeValueResponse(buffer_arg) {
181
+ return cherry_v1_core_attribute_attribute_pb.GetListAttributeValueResponse.deserializeBinary(new Uint8Array(buffer_arg));
182
+ }
183
+
184
+ function serialize_UpdateAttributeValueRequest(arg) {
185
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.UpdateAttributeValueRequest)) {
186
+ throw new Error('Expected argument of type UpdateAttributeValueRequest');
187
+ }
188
+ return Buffer.from(arg.serializeBinary());
189
+ }
190
+
191
+ function deserialize_UpdateAttributeValueRequest(buffer_arg) {
192
+ return cherry_v1_core_attribute_attribute_pb.UpdateAttributeValueRequest.deserializeBinary(new Uint8Array(buffer_arg));
193
+ }
194
+
195
+ function serialize_UpdateAttributeValueResponse(arg) {
196
+ if (!(arg instanceof cherry_v1_core_attribute_attribute_pb.UpdateAttributeValueResponse)) {
197
+ throw new Error('Expected argument of type UpdateAttributeValueResponse');
198
+ }
199
+ return Buffer.from(arg.serializeBinary());
200
+ }
201
+
202
+ function deserialize_UpdateAttributeValueResponse(buffer_arg) {
203
+ return cherry_v1_core_attribute_attribute_pb.UpdateAttributeValueResponse.deserializeBinary(new Uint8Array(buffer_arg));
204
+ }
205
+
206
+
207
+ var AttributeServiceService = exports.AttributeServiceService = {
208
+ createAttributeValue: {
209
+ path: '/AttributeService/CreateAttributeValue',
210
+ requestStream: false,
211
+ responseStream: false,
212
+ requestType: cherry_v1_core_attribute_attribute_pb.CreateAttributeValueRequest,
213
+ responseType: cherry_v1_core_attribute_attribute_pb.CreateAttributeValueResponse,
214
+ requestSerialize: serialize_CreateAttributeValueRequest,
215
+ requestDeserialize: deserialize_CreateAttributeValueRequest,
216
+ responseSerialize: serialize_CreateAttributeValueResponse,
217
+ responseDeserialize: deserialize_CreateAttributeValueResponse,
218
+ },
219
+ getAttributeValueById: {
220
+ path: '/AttributeService/GetAttributeValueById',
221
+ requestStream: false,
222
+ responseStream: false,
223
+ requestType: cherry_v1_core_attribute_attribute_pb.AttributeValueGetByIdRequest,
224
+ responseType: cherry_v1_core_attribute_attribute_pb.AttributeValueGetByIdResponse,
225
+ requestSerialize: serialize_AttributeValueGetByIdRequest,
226
+ requestDeserialize: deserialize_AttributeValueGetByIdRequest,
227
+ responseSerialize: serialize_AttributeValueGetByIdResponse,
228
+ responseDeserialize: deserialize_AttributeValueGetByIdResponse,
229
+ },
230
+ updateAttributeValue: {
231
+ path: '/AttributeService/UpdateAttributeValue',
232
+ requestStream: false,
233
+ responseStream: false,
234
+ requestType: cherry_v1_core_attribute_attribute_pb.UpdateAttributeValueRequest,
235
+ responseType: cherry_v1_core_attribute_attribute_pb.UpdateAttributeValueResponse,
236
+ requestSerialize: serialize_UpdateAttributeValueRequest,
237
+ requestDeserialize: deserialize_UpdateAttributeValueRequest,
238
+ responseSerialize: serialize_UpdateAttributeValueResponse,
239
+ responseDeserialize: deserialize_UpdateAttributeValueResponse,
240
+ },
241
+ deleteAttributeValue: {
242
+ path: '/AttributeService/DeleteAttributeValue',
243
+ requestStream: false,
244
+ responseStream: false,
245
+ requestType: cherry_v1_core_attribute_attribute_pb.DeleteAttributeValueRequest,
246
+ responseType: cherry_v1_core_attribute_attribute_pb.DeleteAttributeValueResponse,
247
+ requestSerialize: serialize_DeleteAttributeValueRequest,
248
+ requestDeserialize: deserialize_DeleteAttributeValueRequest,
249
+ responseSerialize: serialize_DeleteAttributeValueResponse,
250
+ responseDeserialize: deserialize_DeleteAttributeValueResponse,
251
+ },
252
+ getListAttributeValue: {
253
+ path: '/AttributeService/GetListAttributeValue',
254
+ requestStream: false,
255
+ responseStream: false,
256
+ requestType: cherry_v1_core_attribute_attribute_pb.GetListAttributeValueRequest,
257
+ responseType: cherry_v1_core_attribute_attribute_pb.GetListAttributeValueResponse,
258
+ requestSerialize: serialize_GetListAttributeValueRequest,
259
+ requestDeserialize: deserialize_GetListAttributeValueRequest,
260
+ responseSerialize: serialize_GetListAttributeValueResponse,
261
+ responseDeserialize: deserialize_GetListAttributeValueResponse,
262
+ },
263
+ getAttributePersonalData: {
264
+ path: '/AttributeService/GetAttributePersonalData',
265
+ requestStream: false,
266
+ responseStream: false,
267
+ requestType: cherry_v1_core_attribute_attribute_pb.GetAttributePersonalDataRequest,
268
+ responseType: cherry_v1_core_attribute_attribute_pb.GetAttributePersonalDataResponse,
269
+ requestSerialize: serialize_GetAttributePersonalDataRequest,
270
+ requestDeserialize: deserialize_GetAttributePersonalDataRequest,
271
+ responseSerialize: serialize_GetAttributePersonalDataResponse,
272
+ responseDeserialize: deserialize_GetAttributePersonalDataResponse,
273
+ },
274
+ getAttributeAddress: {
275
+ path: '/AttributeService/GetAttributeAddress',
276
+ requestStream: false,
277
+ responseStream: false,
278
+ requestType: cherry_v1_core_attribute_attribute_pb.GetAttributeAddressRequest,
279
+ responseType: cherry_v1_core_attribute_attribute_pb.GetAttributeAddressResponse,
280
+ requestSerialize: serialize_GetAttributeAddressRequest,
281
+ requestDeserialize: deserialize_GetAttributeAddressRequest,
282
+ responseSerialize: serialize_GetAttributeAddressResponse,
283
+ responseDeserialize: deserialize_GetAttributeAddressResponse,
284
+ },
285
+ getAttributeRelative: {
286
+ path: '/AttributeService/GetAttributeRelative',
287
+ requestStream: false,
288
+ responseStream: false,
289
+ requestType: cherry_v1_core_attribute_attribute_pb.GetAttributeRelativeRequest,
290
+ responseType: cherry_v1_core_attribute_attribute_pb.GetAttributeRelativeResponse,
291
+ requestSerialize: serialize_GetAttributeRelativeRequest,
292
+ requestDeserialize: deserialize_GetAttributeRelativeRequest,
293
+ responseSerialize: serialize_GetAttributeRelativeResponse,
294
+ responseDeserialize: deserialize_GetAttributeRelativeResponse,
295
+ },
296
+ getAttributeEducation: {
297
+ path: '/AttributeService/GetAttributeEducation',
298
+ requestStream: false,
299
+ responseStream: false,
300
+ requestType: cherry_v1_core_attribute_attribute_pb.GetAttributeEducationRequest,
301
+ responseType: cherry_v1_core_attribute_attribute_pb.GetAttributeEducationResponse,
302
+ requestSerialize: serialize_GetAttributeEducationRequest,
303
+ requestDeserialize: deserialize_GetAttributeEducationRequest,
304
+ responseSerialize: serialize_GetAttributeEducationResponse,
305
+ responseDeserialize: deserialize_GetAttributeEducationResponse,
306
+ },
307
+ };
308
+
309
+ exports.AttributeServiceClient = grpc.makeGenericClientConstructor(AttributeServiceService, 'AttributeService');