@postpaybr/protos 1.1.2 → 1.1.5

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.
Files changed (40) hide show
  1. package/package.json +9 -7
  2. package/typescript/account-entry.ts +0 -177
  3. package/typescript/address.ts +0 -133
  4. package/typescript/admin-card-verification.ts +0 -181
  5. package/typescript/administrator.ts +0 -375
  6. package/typescript/anticipation.ts +0 -187
  7. package/typescript/asset.ts +0 -123
  8. package/typescript/auth.ts +0 -84
  9. package/typescript/bank-account.ts +0 -157
  10. package/typescript/card-vault.ts +0 -92
  11. package/typescript/card-verification.ts +0 -93
  12. package/typescript/card.ts +0 -283
  13. package/typescript/charge-schedule.ts +0 -86
  14. package/typescript/charge.ts +0 -930
  15. package/typescript/context.ts +0 -296
  16. package/typescript/customer.ts +0 -425
  17. package/typescript/daily-balance.ts +0 -94
  18. package/typescript/document-verification.ts +0 -219
  19. package/typescript/email.ts +0 -183
  20. package/typescript/expo-push.ts +0 -75
  21. package/typescript/fee.ts +0 -131
  22. package/typescript/location.ts +0 -96
  23. package/typescript/notification.ts +0 -372
  24. package/typescript/order.ts +0 -311
  25. package/typescript/payable.ts +0 -414
  26. package/typescript/payer.ts +0 -68
  27. package/typescript/payment-calculator.ts +0 -252
  28. package/typescript/payment-card.ts +0 -289
  29. package/typescript/payment-gateway.ts +0 -209
  30. package/typescript/payment-pix.ts +0 -170
  31. package/typescript/receipt.ts +0 -344
  32. package/typescript/recipient-payment-gateway.ts +0 -209
  33. package/typescript/recipient.ts +0 -413
  34. package/typescript/role.ts +0 -144
  35. package/typescript/sms.ts +0 -96
  36. package/typescript/tax.ts +0 -463
  37. package/typescript/transfer.ts +0 -260
  38. package/typescript/two-factor.ts +0 -177
  39. package/typescript/user.ts +0 -413
  40. package/typescript/wallet.ts +0 -63
@@ -1,86 +0,0 @@
1
- // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
- // versions:
3
- // protoc-gen-ts_proto v2.6.0
4
- // protoc v3.20.3
5
- // source: charge-schedule.proto
6
-
7
- /* eslint-disable */
8
- import { GrpcMethod, GrpcStreamMethod } from '@nestjs/microservices';
9
- import { Observable } from 'rxjs';
10
-
11
- export const protobufPackage = 'chargeSchedule';
12
-
13
- export interface CreateChargeScheduleRequest {
14
- chargeId: string;
15
- executionDate: string;
16
- }
17
-
18
- export interface CreateChargeScheduleResponse {
19
- chargeSchedule: ChargeSchedule | undefined;
20
- }
21
-
22
- export interface ChargeSchedule {
23
- id: string;
24
- executionDate: Date;
25
- isExecuted: boolean;
26
- }
27
-
28
- export interface HealthCheckRequest {}
29
-
30
- export interface HealthCheckResponse {
31
- status: string;
32
- details: { [key: string]: string };
33
- }
34
-
35
- export interface HealthCheckResponse_DetailsEntry {
36
- key: string;
37
- value: string;
38
- }
39
-
40
- export const CHARGE_SCHEDULE_PACKAGE_NAME = 'chargeSchedule';
41
-
42
- export interface ChargeScheduleServiceClient {
43
- CreateChargeSchedule(
44
- request: CreateChargeScheduleRequest,
45
- ): Observable<CreateChargeScheduleResponse>;
46
- }
47
-
48
- export interface ChargeScheduleServiceController {
49
- CreateChargeSchedule(
50
- request: CreateChargeScheduleRequest,
51
- ):
52
- | Promise<CreateChargeScheduleResponse>
53
- | Observable<CreateChargeScheduleResponse>
54
- | CreateChargeScheduleResponse;
55
- }
56
-
57
- export function ChargeScheduleServiceControllerMethods() {
58
- return function (constructor: Function) {
59
- const grpcMethods: string[] = ['CreateChargeSchedule'];
60
- for (const method of grpcMethods) {
61
- const descriptor: any = Reflect.getOwnPropertyDescriptor(
62
- constructor.prototype,
63
- method,
64
- );
65
- GrpcMethod('ChargeScheduleService', method)(
66
- constructor.prototype[method],
67
- method,
68
- descriptor,
69
- );
70
- }
71
- const grpcStreamMethods: string[] = [];
72
- for (const method of grpcStreamMethods) {
73
- const descriptor: any = Reflect.getOwnPropertyDescriptor(
74
- constructor.prototype,
75
- method,
76
- );
77
- GrpcStreamMethod('ChargeScheduleService', method)(
78
- constructor.prototype[method],
79
- method,
80
- descriptor,
81
- );
82
- }
83
- };
84
- }
85
-
86
- export const CHARGE_SCHEDULE_SERVICE_NAME = 'ChargeScheduleService';