@postpaybr/protos 1.1.7 → 1.1.8
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 +1 -1
- package/dist/typescript/account-entry.js +11 -7
- package/dist/typescript/address.js +11 -7
- package/dist/typescript/admin-card-verification.d.ts +1 -1
- package/dist/typescript/admin-card-verification.js +11 -7
- package/dist/typescript/administrator.d.ts +1 -1
- package/dist/typescript/administrator.js +11 -7
- package/dist/typescript/anticipation.d.ts +1 -1
- package/dist/typescript/anticipation.js +11 -7
- package/dist/typescript/asset.js +11 -7
- package/dist/typescript/auth.js +11 -7
- package/dist/typescript/bank-account.d.ts +1 -1
- package/dist/typescript/bank-account.js +11 -7
- package/dist/typescript/card-vault.js +11 -7
- package/dist/typescript/card-verification.js +11 -7
- package/dist/typescript/card.d.ts +1 -1
- package/dist/typescript/card.js +11 -7
- package/dist/typescript/charge-schedule.js +11 -7
- package/dist/typescript/charge.d.ts +1 -1
- package/dist/typescript/charge.js +11 -7
- package/dist/typescript/context.d.ts +1 -1
- package/dist/typescript/context.js +11 -7
- package/dist/typescript/customer.js +11 -7
- package/dist/typescript/daily-balance.js +11 -7
- package/dist/typescript/document-verification.d.ts +1 -1
- package/dist/typescript/document-verification.js +11 -7
- package/dist/typescript/email.js +11 -7
- package/dist/typescript/expo-push.js +11 -7
- package/dist/typescript/fee.d.ts +1 -1
- package/dist/typescript/fee.js +11 -7
- package/dist/typescript/location.js +11 -7
- package/dist/typescript/notification.d.ts +2 -2
- package/dist/typescript/notification.js +11 -7
- package/dist/typescript/order.d.ts +1 -1
- package/dist/typescript/order.js +11 -7
- package/dist/typescript/payable.d.ts +1 -1
- package/dist/typescript/payable.js +11 -7
- package/dist/typescript/payer.js +11 -7
- package/dist/typescript/payment-calculator.d.ts +1 -1
- package/dist/typescript/payment-calculator.js +11 -7
- package/dist/typescript/payment-card.d.ts +2 -2
- package/dist/typescript/payment-card.js +11 -7
- package/dist/typescript/payment-gateway.d.ts +1 -1
- package/dist/typescript/payment-gateway.js +11 -7
- package/dist/typescript/payment-pix.d.ts +1 -1
- package/dist/typescript/payment-pix.js +11 -7
- package/dist/typescript/receipt.d.ts +1 -1
- package/dist/typescript/receipt.js +11 -7
- package/dist/typescript/recipient-payment-gateway.d.ts +1 -1
- package/dist/typescript/recipient-payment-gateway.js +11 -7
- package/dist/typescript/recipient.d.ts +2 -2
- package/dist/typescript/recipient.js +11 -7
- package/dist/typescript/role.d.ts +1 -1
- package/dist/typescript/role.js +11 -7
- package/dist/typescript/sms.js +11 -7
- package/dist/typescript/tax.d.ts +1 -1
- package/dist/typescript/tax.js +11 -7
- package/dist/typescript/transfer.d.ts +1 -1
- package/dist/typescript/transfer.js +11 -7
- package/dist/typescript/two-factor.d.ts +1 -1
- package/dist/typescript/two-factor.js +11 -7
- package/dist/typescript/user.d.ts +2 -2
- package/dist/typescript/user.js +11 -7
- package/dist/typescript/wallet.js +11 -7
- package/package.json +13 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccountEntryType, ChargeMetadata, GatewayIdentification, PaymentMethods } from '@postpaybr/contracts/types';
|
|
1
|
+
import { AccountEntryType, ChargeMetadata, GatewayIdentification, PaymentMethods } from '@postpaybr/contracts/dist/types';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export declare const protobufPackage = "accountEntry";
|
|
4
4
|
export interface CreateAccountEntryRequest {
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v6.32.0
|
|
5
6
|
// source: account-entry.proto
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ACCOUNT_ENTRY_SERVICE_NAME = exports.ACCOUNT_ENTRY_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AccountEntryServiceControllerMethods = AccountEntryServiceControllerMethods;
|
|
10
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
+
exports.protobufPackage = 'accountEntry';
|
|
12
|
+
exports.ACCOUNT_ENTRY_PACKAGE_NAME = 'accountEntry';
|
|
13
|
+
function AccountEntryServiceControllerMethods() {
|
|
10
14
|
return function (constructor) {
|
|
11
15
|
const grpcMethods = [
|
|
12
16
|
'createAccountEntry',
|
|
@@ -16,13 +20,13 @@ export function AccountEntryServiceControllerMethods() {
|
|
|
16
20
|
];
|
|
17
21
|
for (const method of grpcMethods) {
|
|
18
22
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
19
|
-
GrpcMethod('AccountEntryService', method)(constructor.prototype[method], method, descriptor);
|
|
23
|
+
(0, microservices_1.GrpcMethod)('AccountEntryService', method)(constructor.prototype[method], method, descriptor);
|
|
20
24
|
}
|
|
21
25
|
const grpcStreamMethods = [];
|
|
22
26
|
for (const method of grpcStreamMethods) {
|
|
23
27
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
24
|
-
GrpcStreamMethod('AccountEntryService', method)(constructor.prototype[method], method, descriptor);
|
|
28
|
+
(0, microservices_1.GrpcStreamMethod)('AccountEntryService', method)(constructor.prototype[method], method, descriptor);
|
|
25
29
|
}
|
|
26
30
|
};
|
|
27
31
|
}
|
|
28
|
-
|
|
32
|
+
exports.ACCOUNT_ENTRY_SERVICE_NAME = 'AccountEntryService';
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v6.32.0
|
|
5
6
|
// source: address.proto
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ADDRESS_SERVICE_NAME = exports.ADDRESS_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AddressServiceControllerMethods = AddressServiceControllerMethods;
|
|
6
10
|
/* eslint-disable */
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
+
exports.protobufPackage = 'address';
|
|
13
|
+
exports.ADDRESS_PACKAGE_NAME = 'address';
|
|
14
|
+
function AddressServiceControllerMethods() {
|
|
11
15
|
return function (constructor) {
|
|
12
16
|
const grpcMethods = [
|
|
13
17
|
'createAddress',
|
|
@@ -17,13 +21,13 @@ export function AddressServiceControllerMethods() {
|
|
|
17
21
|
];
|
|
18
22
|
for (const method of grpcMethods) {
|
|
19
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
20
|
-
GrpcMethod('AddressService', method)(constructor.prototype[method], method, descriptor);
|
|
24
|
+
(0, microservices_1.GrpcMethod)('AddressService', method)(constructor.prototype[method], method, descriptor);
|
|
21
25
|
}
|
|
22
26
|
const grpcStreamMethods = [];
|
|
23
27
|
for (const method of grpcStreamMethods) {
|
|
24
28
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
25
|
-
GrpcStreamMethod('AddressService', method)(constructor.prototype[method], method, descriptor);
|
|
29
|
+
(0, microservices_1.GrpcStreamMethod)('AddressService', method)(constructor.prototype[method], method, descriptor);
|
|
26
30
|
}
|
|
27
31
|
};
|
|
28
32
|
}
|
|
29
|
-
|
|
33
|
+
exports.ADDRESS_SERVICE_NAME = 'AddressService';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CardChallenge, CardRejectionReason, VerificationStatus } from '@postpaybr/contracts/types';
|
|
1
|
+
import { CardChallenge, CardRejectionReason, VerificationStatus } from '@postpaybr/contracts/dist/types';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export declare const protobufPackage = "adminCardVerification";
|
|
4
4
|
export interface CreateCardVerificationRequest {
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v3.20.3
|
|
5
6
|
// source: admin-card-verification.proto
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ADMIN_CARD_VERIFICATION_SERVICE_NAME = exports.ADMIN_CARD_VERIFICATION_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AdminCardVerificationServiceControllerMethods = AdminCardVerificationServiceControllerMethods;
|
|
10
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
+
exports.protobufPackage = 'adminCardVerification';
|
|
12
|
+
exports.ADMIN_CARD_VERIFICATION_PACKAGE_NAME = 'adminCardVerification';
|
|
13
|
+
function AdminCardVerificationServiceControllerMethods() {
|
|
10
14
|
return function (constructor) {
|
|
11
15
|
const grpcMethods = [
|
|
12
16
|
'initiateCardVerification',
|
|
@@ -16,13 +20,13 @@ export function AdminCardVerificationServiceControllerMethods() {
|
|
|
16
20
|
];
|
|
17
21
|
for (const method of grpcMethods) {
|
|
18
22
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
19
|
-
GrpcMethod('AdminCardVerificationService', method)(constructor.prototype[method], method, descriptor);
|
|
23
|
+
(0, microservices_1.GrpcMethod)('AdminCardVerificationService', method)(constructor.prototype[method], method, descriptor);
|
|
20
24
|
}
|
|
21
25
|
const grpcStreamMethods = [];
|
|
22
26
|
for (const method of grpcStreamMethods) {
|
|
23
27
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
24
|
-
GrpcStreamMethod('AdminCardVerificationService', method)(constructor.prototype[method], method, descriptor);
|
|
28
|
+
(0, microservices_1.GrpcStreamMethod)('AdminCardVerificationService', method)(constructor.prototype[method], method, descriptor);
|
|
25
29
|
}
|
|
26
30
|
};
|
|
27
31
|
}
|
|
28
|
-
|
|
32
|
+
exports.ADMIN_CARD_VERIFICATION_SERVICE_NAME = 'AdminCardVerificationService';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HolderType, RecipientLegalType, UserStatus } from '@postpaybr/contracts/enums';
|
|
1
|
+
import { HolderType, RecipientLegalType, UserStatus } from '@postpaybr/contracts/dist/enums';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export declare const protobufPackage = "administrator";
|
|
4
4
|
export interface CreateAdministratorRequest {
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v6.32.1
|
|
5
6
|
// source: administrator.proto
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ADMINISTRATOR_SERVICE_NAME = exports.ADMINISTRATOR_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AdministratorServiceControllerMethods = AdministratorServiceControllerMethods;
|
|
10
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
+
exports.protobufPackage = 'administrator';
|
|
12
|
+
exports.ADMINISTRATOR_PACKAGE_NAME = 'administrator';
|
|
13
|
+
function AdministratorServiceControllerMethods() {
|
|
10
14
|
return function (constructor) {
|
|
11
15
|
const grpcMethods = [
|
|
12
16
|
'createAdministrator',
|
|
@@ -25,13 +29,13 @@ export function AdministratorServiceControllerMethods() {
|
|
|
25
29
|
];
|
|
26
30
|
for (const method of grpcMethods) {
|
|
27
31
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
28
|
-
GrpcMethod('AdministratorService', method)(constructor.prototype[method], method, descriptor);
|
|
32
|
+
(0, microservices_1.GrpcMethod)('AdministratorService', method)(constructor.prototype[method], method, descriptor);
|
|
29
33
|
}
|
|
30
34
|
const grpcStreamMethods = [];
|
|
31
35
|
for (const method of grpcStreamMethods) {
|
|
32
36
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
33
|
-
GrpcStreamMethod('AdministratorService', method)(constructor.prototype[method], method, descriptor);
|
|
37
|
+
(0, microservices_1.GrpcStreamMethod)('AdministratorService', method)(constructor.prototype[method], method, descriptor);
|
|
34
38
|
}
|
|
35
39
|
};
|
|
36
40
|
}
|
|
37
|
-
|
|
41
|
+
exports.ADMINISTRATOR_SERVICE_NAME = 'AdministratorService';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AnticipationStatus } from '@postpaybr/contracts/types';
|
|
1
|
+
import { AnticipationStatus } from '@postpaybr/contracts/dist/types';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export declare const protobufPackage = "anticipation";
|
|
4
4
|
export interface SimulateAnticipationsRequest {
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v3.20.3
|
|
5
6
|
// source: anticipation.proto
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ANTICIPATION_SERVICE_NAME = exports.ANTICIPATION_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AnticipationServiceControllerMethods = AnticipationServiceControllerMethods;
|
|
10
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
+
exports.protobufPackage = 'anticipation';
|
|
12
|
+
exports.ANTICIPATION_PACKAGE_NAME = 'anticipation';
|
|
13
|
+
function AnticipationServiceControllerMethods() {
|
|
10
14
|
return function (constructor) {
|
|
11
15
|
const grpcMethods = [
|
|
12
16
|
'simulateAnticipations',
|
|
@@ -18,13 +22,13 @@ export function AnticipationServiceControllerMethods() {
|
|
|
18
22
|
];
|
|
19
23
|
for (const method of grpcMethods) {
|
|
20
24
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
21
|
-
GrpcMethod('AnticipationService', method)(constructor.prototype[method], method, descriptor);
|
|
25
|
+
(0, microservices_1.GrpcMethod)('AnticipationService', method)(constructor.prototype[method], method, descriptor);
|
|
22
26
|
}
|
|
23
27
|
const grpcStreamMethods = [];
|
|
24
28
|
for (const method of grpcStreamMethods) {
|
|
25
29
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
26
|
-
GrpcStreamMethod('AnticipationService', method)(constructor.prototype[method], method, descriptor);
|
|
30
|
+
(0, microservices_1.GrpcStreamMethod)('AnticipationService', method)(constructor.prototype[method], method, descriptor);
|
|
27
31
|
}
|
|
28
32
|
};
|
|
29
33
|
}
|
|
30
|
-
|
|
34
|
+
exports.ANTICIPATION_SERVICE_NAME = 'AnticipationService';
|
package/dist/typescript/asset.js
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v3.20.3
|
|
5
6
|
// source: asset.proto
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ASSET_SERVICE_NAME = exports.ASSET_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AssetServiceControllerMethods = AssetServiceControllerMethods;
|
|
6
10
|
/* eslint-disable */
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
+
exports.protobufPackage = 'asset';
|
|
13
|
+
exports.ASSET_PACKAGE_NAME = 'asset';
|
|
14
|
+
function AssetServiceControllerMethods() {
|
|
11
15
|
return function (constructor) {
|
|
12
16
|
const grpcMethods = [
|
|
13
17
|
'writeFile',
|
|
@@ -17,13 +21,13 @@ export function AssetServiceControllerMethods() {
|
|
|
17
21
|
];
|
|
18
22
|
for (const method of grpcMethods) {
|
|
19
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
20
|
-
GrpcMethod('AssetService', method)(constructor.prototype[method], method, descriptor);
|
|
24
|
+
(0, microservices_1.GrpcMethod)('AssetService', method)(constructor.prototype[method], method, descriptor);
|
|
21
25
|
}
|
|
22
26
|
const grpcStreamMethods = [];
|
|
23
27
|
for (const method of grpcStreamMethods) {
|
|
24
28
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
25
|
-
GrpcStreamMethod('AssetService', method)(constructor.prototype[method], method, descriptor);
|
|
29
|
+
(0, microservices_1.GrpcStreamMethod)('AssetService', method)(constructor.prototype[method], method, descriptor);
|
|
26
30
|
}
|
|
27
31
|
};
|
|
28
32
|
}
|
|
29
|
-
|
|
33
|
+
exports.ASSET_SERVICE_NAME = 'AssetService';
|
package/dist/typescript/auth.js
CHANGED
|
@@ -1,24 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.6.0
|
|
4
5
|
// protoc v3.20.3
|
|
5
6
|
// source: auth.proto
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.AUTH_SERVICE_NAME = exports.AUTH_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AuthServiceControllerMethods = AuthServiceControllerMethods;
|
|
6
10
|
/* eslint-disable */
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
+
exports.protobufPackage = 'auth';
|
|
13
|
+
exports.AUTH_PACKAGE_NAME = 'auth';
|
|
14
|
+
function AuthServiceControllerMethods() {
|
|
11
15
|
return function (constructor) {
|
|
12
16
|
const grpcMethods = ['signIn', 'refreshAccessToken'];
|
|
13
17
|
for (const method of grpcMethods) {
|
|
14
18
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
15
|
-
GrpcMethod('AuthService', method)(constructor.prototype[method], method, descriptor);
|
|
19
|
+
(0, microservices_1.GrpcMethod)('AuthService', method)(constructor.prototype[method], method, descriptor);
|
|
16
20
|
}
|
|
17
21
|
const grpcStreamMethods = [];
|
|
18
22
|
for (const method of grpcStreamMethods) {
|
|
19
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
20
|
-
GrpcStreamMethod('AuthService', method)(constructor.prototype[method], method, descriptor);
|
|
24
|
+
(0, microservices_1.GrpcStreamMethod)('AuthService', method)(constructor.prototype[method], method, descriptor);
|
|
21
25
|
}
|
|
22
26
|
};
|
|
23
27
|
}
|
|
24
|
-
|
|
28
|
+
exports.AUTH_SERVICE_NAME = 'AuthService';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BankAccountType, HolderType } from '@postpaybr/contracts/enums';
|
|
1
|
+
import { BankAccountType, HolderType } from '@postpaybr/contracts/dist/enums';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export declare const protobufPackage = "bankAccount";
|
|
4
4
|
export interface CreateBankAccountRequest {
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v6.32.0
|
|
5
6
|
// source: bank-account.proto
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.BANK_ACCOUNT_SERVICE_NAME = exports.BANK_ACCOUNT_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.BankAccountServiceControllerMethods = BankAccountServiceControllerMethods;
|
|
10
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
+
exports.protobufPackage = 'bankAccount';
|
|
12
|
+
exports.BANK_ACCOUNT_PACKAGE_NAME = 'bankAccount';
|
|
13
|
+
function BankAccountServiceControllerMethods() {
|
|
10
14
|
return function (constructor) {
|
|
11
15
|
const grpcMethods = [
|
|
12
16
|
'createBankAccount',
|
|
@@ -17,13 +21,13 @@ export function BankAccountServiceControllerMethods() {
|
|
|
17
21
|
];
|
|
18
22
|
for (const method of grpcMethods) {
|
|
19
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
20
|
-
GrpcMethod('BankAccountService', method)(constructor.prototype[method], method, descriptor);
|
|
24
|
+
(0, microservices_1.GrpcMethod)('BankAccountService', method)(constructor.prototype[method], method, descriptor);
|
|
21
25
|
}
|
|
22
26
|
const grpcStreamMethods = [];
|
|
23
27
|
for (const method of grpcStreamMethods) {
|
|
24
28
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
25
|
-
GrpcStreamMethod('BankAccountService', method)(constructor.prototype[method], method, descriptor);
|
|
29
|
+
(0, microservices_1.GrpcStreamMethod)('BankAccountService', method)(constructor.prototype[method], method, descriptor);
|
|
26
30
|
}
|
|
27
31
|
};
|
|
28
32
|
}
|
|
29
|
-
|
|
33
|
+
exports.BANK_ACCOUNT_SERVICE_NAME = 'BankAccountService';
|
|
@@ -1,24 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v3.20.3
|
|
5
6
|
// source: card-vault.proto
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.CARD_VAULT_SERVICE_NAME = exports.CARD_VAULT_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.CardVaultServiceControllerMethods = CardVaultServiceControllerMethods;
|
|
6
10
|
/* eslint-disable */
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
+
exports.protobufPackage = 'cardVault';
|
|
13
|
+
exports.CARD_VAULT_PACKAGE_NAME = 'cardVault';
|
|
14
|
+
function CardVaultServiceControllerMethods() {
|
|
11
15
|
return function (constructor) {
|
|
12
16
|
const grpcMethods = ['getCardDetails', 'deleteCard'];
|
|
13
17
|
for (const method of grpcMethods) {
|
|
14
18
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
15
|
-
GrpcMethod('CardVaultService', method)(constructor.prototype[method], method, descriptor);
|
|
19
|
+
(0, microservices_1.GrpcMethod)('CardVaultService', method)(constructor.prototype[method], method, descriptor);
|
|
16
20
|
}
|
|
17
21
|
const grpcStreamMethods = [];
|
|
18
22
|
for (const method of grpcStreamMethods) {
|
|
19
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
20
|
-
GrpcStreamMethod('CardVaultService', method)(constructor.prototype[method], method, descriptor);
|
|
24
|
+
(0, microservices_1.GrpcStreamMethod)('CardVaultService', method)(constructor.prototype[method], method, descriptor);
|
|
21
25
|
}
|
|
22
26
|
};
|
|
23
27
|
}
|
|
24
|
-
|
|
28
|
+
exports.CARD_VAULT_SERVICE_NAME = 'CardVaultService';
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.0
|
|
4
5
|
// protoc v3.20.3
|
|
5
6
|
// source: card-verification.proto
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.CARD_VERIFICATION_SERVICE_NAME = exports.CARD_VERIFICATION_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.CardVerificationServiceControllerMethods = CardVerificationServiceControllerMethods;
|
|
6
10
|
/* eslint-disable */
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
+
exports.protobufPackage = 'cardVerification';
|
|
13
|
+
exports.CARD_VERIFICATION_PACKAGE_NAME = 'cardVerification';
|
|
14
|
+
function CardVerificationServiceControllerMethods() {
|
|
11
15
|
return function (constructor) {
|
|
12
16
|
const grpcMethods = [
|
|
13
17
|
'createCardVerification',
|
|
@@ -15,13 +19,13 @@ export function CardVerificationServiceControllerMethods() {
|
|
|
15
19
|
];
|
|
16
20
|
for (const method of grpcMethods) {
|
|
17
21
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
18
|
-
GrpcMethod('CardVerificationService', method)(constructor.prototype[method], method, descriptor);
|
|
22
|
+
(0, microservices_1.GrpcMethod)('CardVerificationService', method)(constructor.prototype[method], method, descriptor);
|
|
19
23
|
}
|
|
20
24
|
const grpcStreamMethods = [];
|
|
21
25
|
for (const method of grpcStreamMethods) {
|
|
22
26
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
23
|
-
GrpcStreamMethod('CardVerificationService', method)(constructor.prototype[method], method, descriptor);
|
|
27
|
+
(0, microservices_1.GrpcStreamMethod)('CardVerificationService', method)(constructor.prototype[method], method, descriptor);
|
|
24
28
|
}
|
|
25
29
|
};
|
|
26
30
|
}
|
|
27
|
-
|
|
31
|
+
exports.CARD_VERIFICATION_SERVICE_NAME = 'CardVerificationService';
|
package/dist/typescript/card.js
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.7
|
|
4
5
|
// protoc v6.33.4
|
|
5
6
|
// source: card.proto
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.CARD_SERVICE_NAME = exports.CARD_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.CardServiceControllerMethods = CardServiceControllerMethods;
|
|
10
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
+
exports.protobufPackage = 'card';
|
|
12
|
+
exports.CARD_PACKAGE_NAME = 'card';
|
|
13
|
+
function CardServiceControllerMethods() {
|
|
10
14
|
return function (constructor) {
|
|
11
15
|
const grpcMethods = [
|
|
12
16
|
'createCard',
|
|
@@ -21,13 +25,13 @@ export function CardServiceControllerMethods() {
|
|
|
21
25
|
];
|
|
22
26
|
for (const method of grpcMethods) {
|
|
23
27
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
24
|
-
GrpcMethod('CardService', method)(constructor.prototype[method], method, descriptor);
|
|
28
|
+
(0, microservices_1.GrpcMethod)('CardService', method)(constructor.prototype[method], method, descriptor);
|
|
25
29
|
}
|
|
26
30
|
const grpcStreamMethods = [];
|
|
27
31
|
for (const method of grpcStreamMethods) {
|
|
28
32
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
29
|
-
GrpcStreamMethod('CardService', method)(constructor.prototype[method], method, descriptor);
|
|
33
|
+
(0, microservices_1.GrpcStreamMethod)('CardService', method)(constructor.prototype[method], method, descriptor);
|
|
30
34
|
}
|
|
31
35
|
};
|
|
32
36
|
}
|
|
33
|
-
|
|
37
|
+
exports.CARD_SERVICE_NAME = 'CardService';
|
|
@@ -1,24 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.6.0
|
|
4
5
|
// protoc v3.20.3
|
|
5
6
|
// source: charge-schedule.proto
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.CHARGE_SCHEDULE_SERVICE_NAME = exports.CHARGE_SCHEDULE_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.ChargeScheduleServiceControllerMethods = ChargeScheduleServiceControllerMethods;
|
|
6
10
|
/* eslint-disable */
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
+
exports.protobufPackage = 'chargeSchedule';
|
|
13
|
+
exports.CHARGE_SCHEDULE_PACKAGE_NAME = 'chargeSchedule';
|
|
14
|
+
function ChargeScheduleServiceControllerMethods() {
|
|
11
15
|
return function (constructor) {
|
|
12
16
|
const grpcMethods = ['CreateChargeSchedule'];
|
|
13
17
|
for (const method of grpcMethods) {
|
|
14
18
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
15
|
-
GrpcMethod('ChargeScheduleService', method)(constructor.prototype[method], method, descriptor);
|
|
19
|
+
(0, microservices_1.GrpcMethod)('ChargeScheduleService', method)(constructor.prototype[method], method, descriptor);
|
|
16
20
|
}
|
|
17
21
|
const grpcStreamMethods = [];
|
|
18
22
|
for (const method of grpcStreamMethods) {
|
|
19
23
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
20
|
-
GrpcStreamMethod('ChargeScheduleService', method)(constructor.prototype[method], method, descriptor);
|
|
24
|
+
(0, microservices_1.GrpcStreamMethod)('ChargeScheduleService', method)(constructor.prototype[method], method, descriptor);
|
|
21
25
|
}
|
|
22
26
|
};
|
|
23
27
|
}
|
|
24
|
-
|
|
28
|
+
exports.CHARGE_SCHEDULE_SERVICE_NAME = 'ChargeScheduleService';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { brandType, ChargeMetadata, ChargeStatus, ChargeSummaryStatus, ChargeType, FailureReason, GatewayIdentification, taxMeta, OrderType, PayableStatus, PaymentMethods, TaxPayload, TaxTypes } from '@postpaybr/contracts/types';
|
|
1
|
+
import { brandType, ChargeMetadata, ChargeStatus, ChargeSummaryStatus, ChargeType, FailureReason, GatewayIdentification, taxMeta, OrderType, PayableStatus, PaymentMethods, TaxPayload, TaxTypes } from '@postpaybr/contracts/dist/types';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export declare const protobufPackage = "charge";
|
|
4
4
|
export interface DateFilter {
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.7
|
|
4
5
|
// protoc v6.33.1
|
|
5
6
|
// source: charge.proto
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.CHARGE_SERVICE_NAME = exports.CHARGE_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.ChargeServiceControllerMethods = ChargeServiceControllerMethods;
|
|
10
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
+
exports.protobufPackage = 'charge';
|
|
12
|
+
exports.CHARGE_PACKAGE_NAME = 'charge';
|
|
13
|
+
function ChargeServiceControllerMethods() {
|
|
10
14
|
return function (constructor) {
|
|
11
15
|
const grpcMethods = [
|
|
12
16
|
'createCharge',
|
|
@@ -43,13 +47,13 @@ export function ChargeServiceControllerMethods() {
|
|
|
43
47
|
];
|
|
44
48
|
for (const method of grpcMethods) {
|
|
45
49
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
46
|
-
GrpcMethod('ChargeService', method)(constructor.prototype[method], method, descriptor);
|
|
50
|
+
(0, microservices_1.GrpcMethod)('ChargeService', method)(constructor.prototype[method], method, descriptor);
|
|
47
51
|
}
|
|
48
52
|
const grpcStreamMethods = [];
|
|
49
53
|
for (const method of grpcStreamMethods) {
|
|
50
54
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
51
|
-
GrpcStreamMethod('ChargeService', method)(constructor.prototype[method], method, descriptor);
|
|
55
|
+
(0, microservices_1.GrpcStreamMethod)('ChargeService', method)(constructor.prototype[method], method, descriptor);
|
|
52
56
|
}
|
|
53
57
|
};
|
|
54
58
|
}
|
|
55
|
-
|
|
59
|
+
exports.CHARGE_SERVICE_NAME = 'ChargeService';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { brandType, GatewayIdentification, taxMeta, MetaType, OrderType, PaymentMethods, PaymentScheduleType, TaxStatus, TaxTypes } from '@postpaybr/contracts/types';
|
|
1
|
+
import { brandType, GatewayIdentification, taxMeta, MetaType, OrderType, PaymentMethods, PaymentScheduleType, TaxStatus, TaxTypes } from '@postpaybr/contracts/dist/types';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export declare const protobufPackage = "context";
|
|
4
4
|
export interface LocationDetails {
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.7.7
|
|
4
5
|
// protoc v6.33.1
|
|
5
6
|
// source: context.proto
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.CONTEXT_SERVICE_NAME = exports.CONTEXT_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.ContextServiceControllerMethods = ContextServiceControllerMethods;
|
|
10
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
11
|
+
exports.protobufPackage = 'context';
|
|
12
|
+
exports.CONTEXT_PACKAGE_NAME = 'context';
|
|
13
|
+
function ContextServiceControllerMethods() {
|
|
10
14
|
return function (constructor) {
|
|
11
15
|
const grpcMethods = [
|
|
12
16
|
'getContext',
|
|
@@ -20,13 +24,13 @@ export function ContextServiceControllerMethods() {
|
|
|
20
24
|
];
|
|
21
25
|
for (const method of grpcMethods) {
|
|
22
26
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
23
|
-
GrpcMethod('ContextService', method)(constructor.prototype[method], method, descriptor);
|
|
27
|
+
(0, microservices_1.GrpcMethod)('ContextService', method)(constructor.prototype[method], method, descriptor);
|
|
24
28
|
}
|
|
25
29
|
const grpcStreamMethods = [];
|
|
26
30
|
for (const method of grpcStreamMethods) {
|
|
27
31
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
28
|
-
GrpcStreamMethod('ContextService', method)(constructor.prototype[method], method, descriptor);
|
|
32
|
+
(0, microservices_1.GrpcStreamMethod)('ContextService', method)(constructor.prototype[method], method, descriptor);
|
|
29
33
|
}
|
|
30
34
|
};
|
|
31
35
|
}
|
|
32
|
-
|
|
36
|
+
exports.CONTEXT_SERVICE_NAME = 'ContextService';
|