@aldiokta/protocgen 1.1.61 → 1.1.63
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/budget/budget_pb.js +211 -1
- package/prisca/v1/budget_planning/budget_planning_grpc_pb.js +33 -0
- package/prisca/v1/budget_planning/budget_planning_pb.js +1199 -152
- package/prisca/v1/core/auth/auth_grpc_pb.js +1 -0
- package/prisca/v1/core/auth/auth_pb.js +115 -2
- package/prisca/v1/core/employee/employee_grpc_pb.js +22 -0
- package/prisca/v1/core/employee/employee_pb.js +214 -2
- package/prisca/v1/core/item_transaction/item_transaction_pb.js +519 -10
- package/prisca/v1/core/line_of_approval/line_of_approval_grpc_pb.js +22 -0
- package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +303 -1
- package/prisca/v1/core/material/material_grpc_pb.js +33 -0
- package/prisca/v1/core/material/material_pb.js +787 -1
- package/prisca/v1/core/report/report_pb.js +31 -1
- package/prisca/v1/core/users/users_pb.js +31 -1
- package/prisca/v1/down_payment/down_payment_grpc_pb.js +201 -0
- package/prisca/v1/down_payment/down_payment_pb.js +3357 -0
- package/prisca/v1/general_configuration/general_configuration_grpc_pb.js +212 -0
- package/prisca/v1/general_configuration/general_configuration_pb.js +2886 -0
- package/prisca/v1/general_ledger_account/general_ledger_account_grpc_pb.js +33 -0
- package/prisca/v1/general_ledger_account/general_ledger_account_pb.js +574 -0
- package/prisca/v1/invoice/invoice_grpc_pb.js +77 -0
- package/prisca/v1/invoice/invoice_pb.js +2657 -434
- package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +34 -0
- package/prisca/v1/purchase_order/purchase_order_pb.js +2542 -57
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +22 -0
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +743 -53
- package/prisca/v1/vendor_domain/vendor_domain_pb.js +72 -12
- package/prisca/v1/webhook_builder/webhook_builder_grpc_pb.js +245 -0
- package/prisca/v1/webhook_builder/webhook_builder_pb.js +5084 -0
- package/prisca/v1/webhook_incoming_integration/webhook_incoming_integration_grpc_pb.js +245 -0
- package/prisca/v1/webhook_incoming_integration/webhook_incoming_integration_pb.js +3499 -0
- package/prisca/v1/webhook_integration/webhook_integration_grpc_pb.js +212 -0
- package/prisca/v1/webhook_integration/webhook_integration_pb.js +2976 -0
|
@@ -509,6 +509,17 @@ var PurchaseRequisitionTrxServiceService = exports.PurchaseRequisitionTrxService
|
|
|
509
509
|
responseSerialize: serialize_GetPRItemTrackListResponse,
|
|
510
510
|
responseDeserialize: deserialize_GetPRItemTrackListResponse,
|
|
511
511
|
},
|
|
512
|
+
getPRItemTrackListForExport: {
|
|
513
|
+
path: '/PurchaseRequisitionTrxService/GetPRItemTrackListForExport',
|
|
514
|
+
requestStream: false,
|
|
515
|
+
responseStream: false,
|
|
516
|
+
requestType: prisca_v1_purchase_requisition_trx_purchase_requisition_trx_pb.GetPurchaseRequisitionTrxListRequest,
|
|
517
|
+
responseType: prisca_v1_purchase_requisition_trx_purchase_requisition_trx_pb.GetPRItemTrackListResponse,
|
|
518
|
+
requestSerialize: serialize_GetPurchaseRequisitionTrxListRequest,
|
|
519
|
+
requestDeserialize: deserialize_GetPurchaseRequisitionTrxListRequest,
|
|
520
|
+
responseSerialize: serialize_GetPRItemTrackListResponse,
|
|
521
|
+
responseDeserialize: deserialize_GetPRItemTrackListResponse,
|
|
522
|
+
},
|
|
512
523
|
getPRProgressTrackList: {
|
|
513
524
|
path: '/PurchaseRequisitionTrxService/GetPRProgressTrackList',
|
|
514
525
|
requestStream: false,
|
|
@@ -520,6 +531,17 @@ var PurchaseRequisitionTrxServiceService = exports.PurchaseRequisitionTrxService
|
|
|
520
531
|
responseSerialize: serialize_GetPRProgressTrackListResponse,
|
|
521
532
|
responseDeserialize: deserialize_GetPRProgressTrackListResponse,
|
|
522
533
|
},
|
|
534
|
+
getPRProgressTrackListForExport: {
|
|
535
|
+
path: '/PurchaseRequisitionTrxService/GetPRProgressTrackListForExport',
|
|
536
|
+
requestStream: false,
|
|
537
|
+
responseStream: false,
|
|
538
|
+
requestType: prisca_v1_purchase_requisition_trx_purchase_requisition_trx_pb.GetPurchaseRequisitionTrxListRequest,
|
|
539
|
+
responseType: prisca_v1_purchase_requisition_trx_purchase_requisition_trx_pb.GetPRProgressTrackListResponse,
|
|
540
|
+
requestSerialize: serialize_GetPurchaseRequisitionTrxListRequest,
|
|
541
|
+
requestDeserialize: deserialize_GetPurchaseRequisitionTrxListRequest,
|
|
542
|
+
responseSerialize: serialize_GetPRProgressTrackListResponse,
|
|
543
|
+
responseDeserialize: deserialize_GetPRProgressTrackListResponse,
|
|
544
|
+
},
|
|
523
545
|
getPurchaseRequisitionTrxListForExport: {
|
|
524
546
|
path: '/PurchaseRequisitionTrxService/GetPurchaseRequisitionTrxListForExport',
|
|
525
547
|
requestStream: false,
|