@aldiokta/protocgen 1.0.60 → 1.0.62
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 +1 -1
- package/prisca/v1/core/auth/auth_grpc_pb.js +1 -1
- package/prisca/v1/core/company/company_grpc_pb.js +1 -1
- package/prisca/v1/core/currency/currency_grpc_pb.js +1 -1
- package/prisca/v1/core/department_material/department_material_grpc_pb.js +1 -1
- package/prisca/v1/core/employee/employee_grpc_pb.js +1 -1
- package/prisca/v1/core/job_grade/job_grade_grpc_pb.js +1 -1
- package/prisca/v1/core/job_position/job_position_grpc_pb.js +1 -1
- package/prisca/v1/core/job_title/job_title_grpc_pb.js +1 -1
- package/prisca/v1/core/line_of_activity/line_of_activity_grpc_pb.js +45 -0
- package/prisca/v1/core/line_of_activity/line_of_activity_pb.js +1158 -0
- package/prisca/v1/core/line_of_approval/line_of_approval_grpc_pb.js +2 -1
- package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +116 -33
- package/prisca/v1/core/link_data_source/link_data_source_grpc_pb.js +1 -1
- package/prisca/v1/core/location/location_grpc_pb.js +1 -1
- package/prisca/v1/core/material/material_grpc_pb.js +1 -1
- package/prisca/v1/core/material_group/material_group_grpc_pb.js +1 -1
- package/prisca/v1/core/material_type/material_type_grpc_pb.js +1 -1
- package/prisca/v1/core/material_type/material_type_pb.js +136 -25
- package/prisca/v1/core/messaging/email_template_grpc_pb.js +1 -1
- package/prisca/v1/core/messaging/email_template_pb.js +6 -6
- package/prisca/v1/core/messaging/messaging_grpc_pb.js +1 -1
- package/prisca/v1/core/number_range/number_range_grpc_pb.js +1 -1
- package/prisca/v1/core/organization/organization_grpc_pb.js +1 -1
- package/prisca/v1/core/organization_level/organization_level_grpc_pb.js +1 -1
- package/prisca/v1/core/procurement/procurement_grpc_pb.js +1 -1
- package/prisca/v1/core/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +1 -1
- package/prisca/v1/core/report/report_grpc_pb.js +178 -0
- package/prisca/v1/core/report/report_pb.js +2642 -0
- package/prisca/v1/core/report/user_report_grpc_pb.js +179 -0
- package/prisca/v1/core/report/user_report_pb.js +2516 -0
- package/prisca/v1/core/tax_code/tax_code_grpc_pb.js +56 -56
- package/prisca/v1/core/tax_code/tax_code_pb.js +402 -402
- package/prisca/v1/core/transaction_builder/transaction_builder_grpc_pb.js +1 -1
- package/prisca/v1/core/transaction_builder/transaction_builder_pb.js +31 -1
- package/prisca/v1/core/unit_of_measurement/unit_of_measurement_grpc_pb.js +1 -1
- package/prisca/v1/core/users_role/users_role_grpc_pb.js +1 -1
- package/prisca/v1/core/work_location/work_location_grpc_pb.js +1 -1
- package/prisca/v1/core/workflow/workflow_grpc_pb.js +1 -1
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +132 -0
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +2556 -941
package/package.json
CHANGED
|
@@ -174,4 +174,4 @@ var CompanyServiceService = exports.CompanyServiceService = {
|
|
|
174
174
|
},
|
|
175
175
|
};
|
|
176
176
|
|
|
177
|
-
exports.CompanyServiceClient = grpc.makeGenericClientConstructor(CompanyServiceService);
|
|
177
|
+
exports.CompanyServiceClient = grpc.makeGenericClientConstructor(CompanyServiceService, 'CompanyService');
|
|
@@ -174,4 +174,4 @@ var CurrencyServiceService = exports.CurrencyServiceService = {
|
|
|
174
174
|
},
|
|
175
175
|
};
|
|
176
176
|
|
|
177
|
-
exports.CurrencyServiceClient = grpc.makeGenericClientConstructor(CurrencyServiceService);
|
|
177
|
+
exports.CurrencyServiceClient = grpc.makeGenericClientConstructor(CurrencyServiceService, 'CurrencyService');
|
|
@@ -141,4 +141,4 @@ var DepartmentMaterialServiceService = exports.DepartmentMaterialServiceService
|
|
|
141
141
|
},
|
|
142
142
|
};
|
|
143
143
|
|
|
144
|
-
exports.DepartmentMaterialServiceClient = grpc.makeGenericClientConstructor(DepartmentMaterialServiceService);
|
|
144
|
+
exports.DepartmentMaterialServiceClient = grpc.makeGenericClientConstructor(DepartmentMaterialServiceService, 'DepartmentMaterialService');
|
|
@@ -181,4 +181,4 @@ var EmployeeServiceService = exports.EmployeeServiceService = {
|
|
|
181
181
|
},
|
|
182
182
|
};
|
|
183
183
|
|
|
184
|
-
exports.EmployeeServiceClient = grpc.makeGenericClientConstructor(EmployeeServiceService);
|
|
184
|
+
exports.EmployeeServiceClient = grpc.makeGenericClientConstructor(EmployeeServiceService, 'EmployeeService');
|
|
@@ -175,4 +175,4 @@ var JobGradeServiceService = exports.JobGradeServiceService = {
|
|
|
175
175
|
},
|
|
176
176
|
};
|
|
177
177
|
|
|
178
|
-
exports.JobGradeServiceClient = grpc.makeGenericClientConstructor(JobGradeServiceService);
|
|
178
|
+
exports.JobGradeServiceClient = grpc.makeGenericClientConstructor(JobGradeServiceService, 'JobGradeService');
|
|
@@ -178,4 +178,4 @@ var JobPositionServiceService = exports.JobPositionServiceService = {
|
|
|
178
178
|
},
|
|
179
179
|
};
|
|
180
180
|
|
|
181
|
-
exports.JobPositionServiceClient = grpc.makeGenericClientConstructor(JobPositionServiceService);
|
|
181
|
+
exports.JobPositionServiceClient = grpc.makeGenericClientConstructor(JobPositionServiceService, 'JobPositionService');
|
|
@@ -175,4 +175,4 @@ var JobTitleServiceService = exports.JobTitleServiceService = {
|
|
|
175
175
|
},
|
|
176
176
|
};
|
|
177
177
|
|
|
178
|
-
exports.JobTitleServiceClient = grpc.makeGenericClientConstructor(JobTitleServiceService);
|
|
178
|
+
exports.JobTitleServiceClient = grpc.makeGenericClientConstructor(JobTitleServiceService, 'JobTitleService');
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// GENERATED CODE -- DO NOT EDIT!
|
|
2
|
+
|
|
3
|
+
'use strict';
|
|
4
|
+
var grpc = require('@grpc/grpc-js');
|
|
5
|
+
var prisca_v1_core_line_of_activity_line_of_activity_pb = require('../../../../prisca/v1/core/line_of_activity/line_of_activity_pb.js');
|
|
6
|
+
var prisca_v1_global_meta_meta_pb = require('../../../../prisca/v1/global/meta/meta_pb.js');
|
|
7
|
+
|
|
8
|
+
function serialize_ActivityRequest(arg) {
|
|
9
|
+
if (!(arg instanceof prisca_v1_core_line_of_activity_line_of_activity_pb.ActivityRequest)) {
|
|
10
|
+
throw new Error('Expected argument of type ActivityRequest');
|
|
11
|
+
}
|
|
12
|
+
return Buffer.from(arg.serializeBinary());
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
function deserialize_ActivityRequest(buffer_arg) {
|
|
16
|
+
return prisca_v1_core_line_of_activity_line_of_activity_pb.ActivityRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function serialize_ActivityResponse(arg) {
|
|
20
|
+
if (!(arg instanceof prisca_v1_core_line_of_activity_line_of_activity_pb.ActivityResponse)) {
|
|
21
|
+
throw new Error('Expected argument of type ActivityResponse');
|
|
22
|
+
}
|
|
23
|
+
return Buffer.from(arg.serializeBinary());
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function deserialize_ActivityResponse(buffer_arg) {
|
|
27
|
+
return prisca_v1_core_line_of_activity_line_of_activity_pb.ActivityResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
var ActivityServiceService = exports.ActivityServiceService = {
|
|
32
|
+
getActivityLineOfApproval: {
|
|
33
|
+
path: '/ActivityService/GetActivityLineOfApproval',
|
|
34
|
+
requestStream: false,
|
|
35
|
+
responseStream: false,
|
|
36
|
+
requestType: prisca_v1_core_line_of_activity_line_of_activity_pb.ActivityRequest,
|
|
37
|
+
responseType: prisca_v1_core_line_of_activity_line_of_activity_pb.ActivityResponse,
|
|
38
|
+
requestSerialize: serialize_ActivityRequest,
|
|
39
|
+
requestDeserialize: deserialize_ActivityRequest,
|
|
40
|
+
responseSerialize: serialize_ActivityResponse,
|
|
41
|
+
responseDeserialize: deserialize_ActivityResponse,
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
exports.ActivityServiceClient = grpc.makeGenericClientConstructor(ActivityServiceService, 'ActivityService');
|