@aldiokta/protocgen 1.1.63 → 1.1.65
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/accurate_oauth/accurate_oauth_grpc_pb.js +210 -0
- package/prisca/v1/accurate_oauth/accurate_oauth_pb.js +2330 -0
- package/prisca/v1/bidding/bidding_pb.js +43 -13
- package/prisca/v1/core/auth/auth_grpc_pb.js +99 -0
- package/prisca/v1/core/auth/auth_pb.js +2347 -851
- package/prisca/v1/core/file_upload/file_upload_grpc_pb.js +33 -0
- package/prisca/v1/core/file_upload/file_upload_pb.js +304 -0
- package/prisca/v1/core/messaging/notification_event_grpc_pb.js +211 -0
- package/prisca/v1/core/messaging/notification_event_pb.js +3015 -0
- package/prisca/v1/core/user_device/user_device_grpc_pb.js +144 -0
- package/prisca/v1/core/user_device/user_device_pb.js +2255 -0
- package/prisca/v1/general_ledger_account/general_ledger_account_grpc_pb.js +41 -0
- package/prisca/v1/general_ledger_account/general_ledger_account_pb.js +991 -0
- package/prisca/v1/good_receipt/good_receipt_pb.js +61 -1
- package/prisca/v1/invoice/invoice_pb.js +61 -1
- package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +0 -1
- package/prisca/v1/purchase_order/purchase_order_pb.js +154 -138
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +0 -1
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +18 -71
- package/prisca/v1/quotation/quotation_grpc_pb.js +33 -0
- package/prisca/v1/quotation/quotation_pb.js +1030 -131
- package/prisca/v1/request_for_quotation/request_for_quotation_grpc_pb.js +33 -0
- package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +603 -4
- package/prisca/v1/valuation/valuation_pb.js +93 -3
- package/prisca/v1/vendor_domain/vendor_domain_grpc_pb.js +66 -0
- package/prisca/v1/vendor_domain/vendor_domain_pb.js +940 -0
|
@@ -97,6 +97,28 @@ function deserialize_GetListGeneralLedgerAccountResponse(buffer_arg) {
|
|
|
97
97
|
return prisca_v1_general_ledger_account_general_ledger_account_pb.GetListGeneralLedgerAccountResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
+
function serialize_SyncGlFromAccurateRequest(arg) {
|
|
101
|
+
if (!(arg instanceof prisca_v1_general_ledger_account_general_ledger_account_pb.SyncGlFromAccurateRequest)) {
|
|
102
|
+
throw new Error('Expected argument of type SyncGlFromAccurateRequest');
|
|
103
|
+
}
|
|
104
|
+
return Buffer.from(arg.serializeBinary());
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
function deserialize_SyncGlFromAccurateRequest(buffer_arg) {
|
|
108
|
+
return prisca_v1_general_ledger_account_general_ledger_account_pb.SyncGlFromAccurateRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function serialize_SyncGlFromAccurateResponse(arg) {
|
|
112
|
+
if (!(arg instanceof prisca_v1_general_ledger_account_general_ledger_account_pb.SyncGlFromAccurateResponse)) {
|
|
113
|
+
throw new Error('Expected argument of type SyncGlFromAccurateResponse');
|
|
114
|
+
}
|
|
115
|
+
return Buffer.from(arg.serializeBinary());
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
function deserialize_SyncGlFromAccurateResponse(buffer_arg) {
|
|
119
|
+
return prisca_v1_general_ledger_account_general_ledger_account_pb.SyncGlFromAccurateResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
120
|
+
}
|
|
121
|
+
|
|
100
122
|
function serialize_UpdateGeneralLedgerAccountRequest(arg) {
|
|
101
123
|
if (!(arg instanceof prisca_v1_general_ledger_account_general_ledger_account_pb.UpdateGeneralLedgerAccountRequest)) {
|
|
102
124
|
throw new Error('Expected argument of type UpdateGeneralLedgerAccountRequest');
|
|
@@ -212,3 +234,22 @@ var GeneralLedgerAccountServiceService = exports.GeneralLedgerAccountServiceServ
|
|
|
212
234
|
};
|
|
213
235
|
|
|
214
236
|
exports.GeneralLedgerAccountServiceClient = grpc.makeGenericClientConstructor(GeneralLedgerAccountServiceService, 'GeneralLedgerAccountService');
|
|
237
|
+
// GlAccurateSyncService orchestrates the pull-mode sync. It lives in
|
|
238
|
+
// prisca-v2-core-service (alongside the inbound webhook handler) because the
|
|
239
|
+
// orchestrator needs local access to webhook_builder. PR domain stays pure-CRUD
|
|
240
|
+
// and only exposes UpsertFromAccurate.
|
|
241
|
+
var GlAccurateSyncServiceService = exports.GlAccurateSyncServiceService = {
|
|
242
|
+
syncFromAccurate: {
|
|
243
|
+
path: '/GlAccurateSyncService/SyncFromAccurate',
|
|
244
|
+
requestStream: false,
|
|
245
|
+
responseStream: false,
|
|
246
|
+
requestType: prisca_v1_general_ledger_account_general_ledger_account_pb.SyncGlFromAccurateRequest,
|
|
247
|
+
responseType: prisca_v1_general_ledger_account_general_ledger_account_pb.SyncGlFromAccurateResponse,
|
|
248
|
+
requestSerialize: serialize_SyncGlFromAccurateRequest,
|
|
249
|
+
requestDeserialize: deserialize_SyncGlFromAccurateRequest,
|
|
250
|
+
responseSerialize: serialize_SyncGlFromAccurateResponse,
|
|
251
|
+
responseDeserialize: deserialize_SyncGlFromAccurateResponse,
|
|
252
|
+
},
|
|
253
|
+
};
|
|
254
|
+
|
|
255
|
+
exports.GlAccurateSyncServiceClient = grpc.makeGenericClientConstructor(GlAccurateSyncServiceService, 'GlAccurateSyncService');
|