@postpaybr/protos 1.1.10 → 1.1.14
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/dist/typescript/account-entry.d.ts +4 -15
- package/dist/typescript/account-entry.js +11 -11
- package/dist/typescript/address.d.ts +1 -1
- package/dist/typescript/address.js +8 -13
- package/dist/typescript/admin-card-verification.d.ts +16 -19
- package/dist/typescript/admin-card-verification.js +12 -11
- package/dist/typescript/administrator.d.ts +10 -17
- package/dist/typescript/administrator.js +21 -20
- package/dist/typescript/anticipation.d.ts +7 -7
- package/dist/typescript/anticipation.js +14 -13
- package/dist/typescript/asset.d.ts +3 -3
- package/dist/typescript/asset.js +8 -13
- package/dist/typescript/auth.d.ts +2 -2
- package/dist/typescript/auth.js +8 -8
- package/dist/typescript/bank-account.d.ts +5 -8
- package/dist/typescript/bank-account.js +12 -12
- package/dist/typescript/card-vault.d.ts +1 -1
- package/dist/typescript/card-vault.js +8 -8
- package/dist/typescript/card-verification.d.ts +1 -1
- package/dist/typescript/card-verification.js +8 -11
- package/dist/typescript/card.d.ts +5 -20
- package/dist/typescript/card.js +17 -16
- package/dist/typescript/charge-schedule.d.ts +4 -16
- package/dist/typescript/charge-schedule.js +8 -8
- package/dist/typescript/charge.d.ts +112 -100
- package/dist/typescript/charge.js +38 -38
- package/dist/typescript/common.d.ts +122 -0
- package/dist/typescript/common.js +11 -0
- package/dist/typescript/context.d.ts +16 -46
- package/dist/typescript/context.js +16 -15
- package/dist/typescript/customer.d.ts +6 -15
- package/dist/typescript/customer.js +21 -21
- package/dist/typescript/daily-balance.d.ts +5 -8
- package/dist/typescript/daily-balance.js +8 -8
- package/dist/typescript/document-verification.d.ts +18 -20
- package/dist/typescript/document-verification.js +14 -13
- package/dist/typescript/email.d.ts +2 -2
- package/dist/typescript/email.js +13 -13
- package/dist/typescript/expo-push.d.ts +2 -3
- package/dist/typescript/expo-push.js +8 -8
- package/dist/typescript/fee.d.ts +6 -7
- package/dist/typescript/fee.js +11 -11
- package/dist/typescript/location.d.ts +1 -1
- package/dist/typescript/location.js +8 -8
- package/dist/typescript/notification.d.ts +39 -48
- package/dist/typescript/notification.js +19 -18
- package/dist/typescript/order.d.ts +38 -36
- package/dist/typescript/order.js +18 -17
- package/dist/typescript/payable.d.ts +39 -40
- package/dist/typescript/payable.js +21 -20
- package/dist/typescript/payer.d.ts +1 -1
- package/dist/typescript/payer.js +8 -8
- package/dist/typescript/payment-calculator.d.ts +7 -60
- package/dist/typescript/payment-calculator.js +13 -12
- package/dist/typescript/payment-card.d.ts +25 -81
- package/dist/typescript/payment-card.js +9 -12
- package/dist/typescript/payment-gateway.d.ts +9 -19
- package/dist/typescript/payment-gateway.js +15 -14
- package/dist/typescript/payment-pix.d.ts +3 -78
- package/dist/typescript/payment-pix.js +10 -10
- package/dist/typescript/receipt.d.ts +20 -43
- package/dist/typescript/receipt.js +17 -16
- package/dist/typescript/recipient-payment-gateway.d.ts +14 -23
- package/dist/typescript/recipient-payment-gateway.js +14 -13
- package/dist/typescript/recipient.d.ts +18 -25
- package/dist/typescript/recipient.js +20 -19
- package/dist/typescript/role.d.ts +3 -9
- package/dist/typescript/role.js +14 -13
- package/dist/typescript/sms.d.ts +1 -1
- package/dist/typescript/sms.js +8 -8
- package/dist/typescript/tax.d.ts +38 -60
- package/dist/typescript/tax.js +20 -19
- package/dist/typescript/transfer.d.ts +38 -19
- package/dist/typescript/transfer.js +9 -8
- package/dist/typescript/two-factor.d.ts +7 -8
- package/dist/typescript/two-factor.js +14 -13
- package/dist/typescript/user.d.ts +16 -19
- package/dist/typescript/user.js +24 -24
- package/dist/typescript/wallet.d.ts +1 -1
- package/dist/typescript/wallet.js +8 -8
- package/package.json +4 -3
- package/src/protos/account-entry.proto +3 -15
- package/src/protos/admin-card-verification.proto +0 -2
- package/src/protos/administrator.proto +4 -11
- package/src/protos/bank-account.proto +4 -5
- package/src/protos/charge.proto +12 -47
- package/src/protos/common.proto +140 -0
- package/src/protos/context.proto +8 -49
- package/src/protos/customer.proto +5 -15
- package/src/protos/daily-balance.proto +3 -6
- package/src/protos/document-verification.proto +5 -6
- package/src/protos/expo-push.proto +3 -3
- package/src/protos/fee.proto +3 -3
- package/src/protos/notification.proto +4 -12
- package/src/protos/order.proto +6 -16
- package/src/protos/payment-calculator.proto +11 -87
- package/src/protos/payment-card.proto +7 -90
- package/src/protos/payment-gateway.proto +4 -14
- package/src/protos/payment-pix.proto +5 -95
- package/src/protos/receipt.proto +7 -44
- package/src/protos/recipient-payment-gateway.proto +5 -15
- package/src/protos/recipient.proto +4 -9
- package/src/protos/role.proto +6 -11
- package/src/protos/tax.proto +12 -41
- package/src/protos/user.proto +4 -9
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
5
|
-
// protoc v6.
|
|
4
|
+
// protoc-gen-ts_proto v2.11.2
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: bank-account.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.BANK_ACCOUNT_SERVICE_NAME = exports.BANK_ACCOUNT_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
9
|
exports.BankAccountServiceControllerMethods = BankAccountServiceControllerMethods;
|
|
10
10
|
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
-
exports.protobufPackage =
|
|
12
|
-
exports.BANK_ACCOUNT_PACKAGE_NAME =
|
|
11
|
+
exports.protobufPackage = "bankAccount";
|
|
12
|
+
exports.BANK_ACCOUNT_PACKAGE_NAME = "bankAccount";
|
|
13
13
|
function BankAccountServiceControllerMethods() {
|
|
14
14
|
return function (constructor) {
|
|
15
15
|
const grpcMethods = [
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
"createBankAccount",
|
|
17
|
+
"getBankAccountByRecipientId",
|
|
18
|
+
"getMainAccount",
|
|
19
|
+
"getAllBankAccounts",
|
|
20
|
+
"getBankAccount",
|
|
21
21
|
];
|
|
22
22
|
for (const method of grpcMethods) {
|
|
23
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
24
|
-
(0, microservices_1.GrpcMethod)(
|
|
24
|
+
(0, microservices_1.GrpcMethod)("BankAccountService", method)(constructor.prototype[method], method, descriptor);
|
|
25
25
|
}
|
|
26
26
|
const grpcStreamMethods = [];
|
|
27
27
|
for (const method of grpcStreamMethods) {
|
|
28
28
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
29
|
-
(0, microservices_1.GrpcStreamMethod)(
|
|
29
|
+
(0, microservices_1.GrpcStreamMethod)("BankAccountService", method)(constructor.prototype[method], method, descriptor);
|
|
30
30
|
}
|
|
31
31
|
};
|
|
32
32
|
}
|
|
33
|
-
exports.BANK_ACCOUNT_SERVICE_NAME =
|
|
33
|
+
exports.BANK_ACCOUNT_SERVICE_NAME = "BankAccountService";
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
5
|
-
// protoc
|
|
4
|
+
// protoc-gen-ts_proto v2.11.2
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: card-vault.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.CARD_VAULT_SERVICE_NAME = exports.CARD_VAULT_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
9
|
exports.CardVaultServiceControllerMethods = CardVaultServiceControllerMethods;
|
|
10
10
|
/* eslint-disable */
|
|
11
11
|
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
-
exports.protobufPackage =
|
|
13
|
-
exports.CARD_VAULT_PACKAGE_NAME =
|
|
12
|
+
exports.protobufPackage = "cardVault";
|
|
13
|
+
exports.CARD_VAULT_PACKAGE_NAME = "cardVault";
|
|
14
14
|
function CardVaultServiceControllerMethods() {
|
|
15
15
|
return function (constructor) {
|
|
16
|
-
const grpcMethods = [
|
|
16
|
+
const grpcMethods = ["getCardDetails", "deleteCard"];
|
|
17
17
|
for (const method of grpcMethods) {
|
|
18
18
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
19
|
-
(0, microservices_1.GrpcMethod)(
|
|
19
|
+
(0, microservices_1.GrpcMethod)("CardVaultService", method)(constructor.prototype[method], method, descriptor);
|
|
20
20
|
}
|
|
21
21
|
const grpcStreamMethods = [];
|
|
22
22
|
for (const method of grpcStreamMethods) {
|
|
23
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
24
|
-
(0, microservices_1.GrpcStreamMethod)(
|
|
24
|
+
(0, microservices_1.GrpcStreamMethod)("CardVaultService", method)(constructor.prototype[method], method, descriptor);
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
27
|
}
|
|
28
|
-
exports.CARD_VAULT_SERVICE_NAME =
|
|
28
|
+
exports.CARD_VAULT_SERVICE_NAME = "CardVaultService";
|
|
@@ -1,31 +1,28 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
5
|
-
// protoc
|
|
4
|
+
// protoc-gen-ts_proto v2.11.2
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: card-verification.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.CARD_VERIFICATION_SERVICE_NAME = exports.CARD_VERIFICATION_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
9
|
exports.CardVerificationServiceControllerMethods = CardVerificationServiceControllerMethods;
|
|
10
10
|
/* eslint-disable */
|
|
11
11
|
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
-
exports.protobufPackage =
|
|
13
|
-
exports.CARD_VERIFICATION_PACKAGE_NAME =
|
|
12
|
+
exports.protobufPackage = "cardVerification";
|
|
13
|
+
exports.CARD_VERIFICATION_PACKAGE_NAME = "cardVerification";
|
|
14
14
|
function CardVerificationServiceControllerMethods() {
|
|
15
15
|
return function (constructor) {
|
|
16
|
-
const grpcMethods = [
|
|
17
|
-
'createCardVerification',
|
|
18
|
-
'checkVerifyCardCode',
|
|
19
|
-
];
|
|
16
|
+
const grpcMethods = ["createCardVerification", "checkVerifyCardCode"];
|
|
20
17
|
for (const method of grpcMethods) {
|
|
21
18
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
22
|
-
(0, microservices_1.GrpcMethod)(
|
|
19
|
+
(0, microservices_1.GrpcMethod)("CardVerificationService", method)(constructor.prototype[method], method, descriptor);
|
|
23
20
|
}
|
|
24
21
|
const grpcStreamMethods = [];
|
|
25
22
|
for (const method of grpcStreamMethods) {
|
|
26
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
27
|
-
(0, microservices_1.GrpcStreamMethod)(
|
|
24
|
+
(0, microservices_1.GrpcStreamMethod)("CardVerificationService", method)(constructor.prototype[method], method, descriptor);
|
|
28
25
|
}
|
|
29
26
|
};
|
|
30
27
|
}
|
|
31
|
-
exports.CARD_VERIFICATION_SERVICE_NAME =
|
|
28
|
+
exports.CARD_VERIFICATION_SERVICE_NAME = "CardVerificationService";
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
1
|
+
import { Observable } from "rxjs";
|
|
3
2
|
export declare const protobufPackage = "card";
|
|
4
3
|
export interface CreateCardRequest {
|
|
5
4
|
customerId: string;
|
|
@@ -8,7 +7,7 @@ export interface CreateCardRequest {
|
|
|
8
7
|
export interface CreateCardResponse {
|
|
9
8
|
id: string;
|
|
10
9
|
shadowNumber: string;
|
|
11
|
-
brand:
|
|
10
|
+
brand: string;
|
|
12
11
|
expiration: string;
|
|
13
12
|
isCredit: boolean;
|
|
14
13
|
isDebit: boolean;
|
|
@@ -32,7 +31,7 @@ export interface UpdateCardNicknameRequest {
|
|
|
32
31
|
export interface UpdateCardNicknameResponse {
|
|
33
32
|
id: string;
|
|
34
33
|
nickname?: string | undefined;
|
|
35
|
-
brand:
|
|
34
|
+
brand: string;
|
|
36
35
|
shadowNumber: string;
|
|
37
36
|
vaultToken: string;
|
|
38
37
|
vaultTokenCvv: string;
|
|
@@ -58,7 +57,7 @@ export interface GetCardsByTypeResponse {
|
|
|
58
57
|
export interface CardDetails {
|
|
59
58
|
id: string;
|
|
60
59
|
nickname?: string | undefined;
|
|
61
|
-
brand:
|
|
60
|
+
brand: string;
|
|
62
61
|
shadowNumber: string;
|
|
63
62
|
vaultToken: string;
|
|
64
63
|
vaultTokenCvv: string;
|
|
@@ -79,20 +78,6 @@ export interface GetVaultCardDetailsResponse {
|
|
|
79
78
|
token: string;
|
|
80
79
|
cvv: string;
|
|
81
80
|
}
|
|
82
|
-
export interface TokenizeCardRequest {
|
|
83
|
-
ccn: string;
|
|
84
|
-
cvv: string;
|
|
85
|
-
expMonth: number;
|
|
86
|
-
expYear: number;
|
|
87
|
-
cardType: string;
|
|
88
|
-
fullName: string;
|
|
89
|
-
referenceId: string;
|
|
90
|
-
cvvTtl: number;
|
|
91
|
-
}
|
|
92
|
-
export interface TokenizeCardResponse {
|
|
93
|
-
vaultToken: string;
|
|
94
|
-
vaultTokenCvv: string;
|
|
95
|
-
}
|
|
96
81
|
export interface GetAllCardsByCustomerIdRequest {
|
|
97
82
|
customerId: string;
|
|
98
83
|
}
|
|
@@ -118,7 +103,7 @@ export interface ValidateCVVResponse {
|
|
|
118
103
|
isValid: boolean;
|
|
119
104
|
remainingAttempts: number;
|
|
120
105
|
isBlocked: boolean;
|
|
121
|
-
blockedUntil?:
|
|
106
|
+
blockedUntil?: string | undefined;
|
|
122
107
|
}
|
|
123
108
|
export declare const CARD_PACKAGE_NAME = "card";
|
|
124
109
|
export interface CardServiceClient {
|
package/dist/typescript/card.js
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
5
|
-
// protoc v6.33.
|
|
4
|
+
// protoc-gen-ts_proto v2.11.2
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: card.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.CARD_SERVICE_NAME = exports.CARD_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
9
|
exports.CardServiceControllerMethods = CardServiceControllerMethods;
|
|
10
|
+
/* eslint-disable */
|
|
10
11
|
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
-
exports.protobufPackage =
|
|
12
|
-
exports.CARD_PACKAGE_NAME =
|
|
12
|
+
exports.protobufPackage = "card";
|
|
13
|
+
exports.CARD_PACKAGE_NAME = "card";
|
|
13
14
|
function CardServiceControllerMethods() {
|
|
14
15
|
return function (constructor) {
|
|
15
16
|
const grpcMethods = [
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
17
|
+
"createCard",
|
|
18
|
+
"updateCardNickname",
|
|
19
|
+
"deleteCard",
|
|
20
|
+
"getCardsByType",
|
|
21
|
+
"getVaultCardDetails",
|
|
22
|
+
"getAllCardsByCustomerId",
|
|
23
|
+
"getCardById",
|
|
24
|
+
"validateCardNumber",
|
|
25
|
+
"validateCvv",
|
|
25
26
|
];
|
|
26
27
|
for (const method of grpcMethods) {
|
|
27
28
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
28
|
-
(0, microservices_1.GrpcMethod)(
|
|
29
|
+
(0, microservices_1.GrpcMethod)("CardService", method)(constructor.prototype[method], method, descriptor);
|
|
29
30
|
}
|
|
30
31
|
const grpcStreamMethods = [];
|
|
31
32
|
for (const method of grpcStreamMethods) {
|
|
32
33
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
33
|
-
(0, microservices_1.GrpcStreamMethod)(
|
|
34
|
+
(0, microservices_1.GrpcStreamMethod)("CardService", method)(constructor.prototype[method], method, descriptor);
|
|
34
35
|
}
|
|
35
36
|
};
|
|
36
37
|
}
|
|
37
|
-
exports.CARD_SERVICE_NAME =
|
|
38
|
+
exports.CARD_SERVICE_NAME = "CardService";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Observable } from
|
|
1
|
+
import { Observable } from "rxjs";
|
|
2
2
|
export declare const protobufPackage = "chargeSchedule";
|
|
3
3
|
export interface CreateChargeScheduleRequest {
|
|
4
4
|
chargeId: string;
|
|
@@ -9,27 +9,15 @@ export interface CreateChargeScheduleResponse {
|
|
|
9
9
|
}
|
|
10
10
|
export interface ChargeSchedule {
|
|
11
11
|
id: string;
|
|
12
|
-
executionDate:
|
|
12
|
+
executionDate: string;
|
|
13
13
|
isExecuted: boolean;
|
|
14
14
|
}
|
|
15
|
-
export interface HealthCheckRequest {
|
|
16
|
-
}
|
|
17
|
-
export interface HealthCheckResponse {
|
|
18
|
-
status: string;
|
|
19
|
-
details: {
|
|
20
|
-
[key: string]: string;
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
export interface HealthCheckResponse_DetailsEntry {
|
|
24
|
-
key: string;
|
|
25
|
-
value: string;
|
|
26
|
-
}
|
|
27
15
|
export declare const CHARGE_SCHEDULE_PACKAGE_NAME = "chargeSchedule";
|
|
28
16
|
export interface ChargeScheduleServiceClient {
|
|
29
|
-
|
|
17
|
+
createChargeSchedule(request: CreateChargeScheduleRequest): Observable<CreateChargeScheduleResponse>;
|
|
30
18
|
}
|
|
31
19
|
export interface ChargeScheduleServiceController {
|
|
32
|
-
|
|
20
|
+
createChargeSchedule(request: CreateChargeScheduleRequest): Promise<CreateChargeScheduleResponse> | Observable<CreateChargeScheduleResponse> | CreateChargeScheduleResponse;
|
|
33
21
|
}
|
|
34
22
|
export declare function ChargeScheduleServiceControllerMethods(): (constructor: Function) => void;
|
|
35
23
|
export declare const CHARGE_SCHEDULE_SERVICE_NAME = "ChargeScheduleService";
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
5
|
-
// protoc
|
|
4
|
+
// protoc-gen-ts_proto v2.11.2
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: charge-schedule.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.CHARGE_SCHEDULE_SERVICE_NAME = exports.CHARGE_SCHEDULE_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
9
|
exports.ChargeScheduleServiceControllerMethods = ChargeScheduleServiceControllerMethods;
|
|
10
10
|
/* eslint-disable */
|
|
11
11
|
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
-
exports.protobufPackage =
|
|
13
|
-
exports.CHARGE_SCHEDULE_PACKAGE_NAME =
|
|
12
|
+
exports.protobufPackage = "chargeSchedule";
|
|
13
|
+
exports.CHARGE_SCHEDULE_PACKAGE_NAME = "chargeSchedule";
|
|
14
14
|
function ChargeScheduleServiceControllerMethods() {
|
|
15
15
|
return function (constructor) {
|
|
16
|
-
const grpcMethods = [
|
|
16
|
+
const grpcMethods = ["createChargeSchedule"];
|
|
17
17
|
for (const method of grpcMethods) {
|
|
18
18
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
19
|
-
(0, microservices_1.GrpcMethod)(
|
|
19
|
+
(0, microservices_1.GrpcMethod)("ChargeScheduleService", method)(constructor.prototype[method], method, descriptor);
|
|
20
20
|
}
|
|
21
21
|
const grpcStreamMethods = [];
|
|
22
22
|
for (const method of grpcStreamMethods) {
|
|
23
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
24
|
-
(0, microservices_1.GrpcStreamMethod)(
|
|
24
|
+
(0, microservices_1.GrpcStreamMethod)("ChargeScheduleService", method)(constructor.prototype[method], method, descriptor);
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
27
|
}
|
|
28
|
-
exports.CHARGE_SCHEDULE_SERVICE_NAME =
|
|
28
|
+
exports.CHARGE_SCHEDULE_SERVICE_NAME = "ChargeScheduleService";
|