cecon-interfaces 1.9.98 → 1.9.99

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.
@@ -9,6 +9,8 @@ export declare class GlobalSettingFirebankEntity implements IGlobalSettingFireba
9
9
  id: string;
10
10
  password: string;
11
11
  userName: string;
12
+ withDrawScheduledTax: number;
13
+ withDrawTax: number;
12
14
  withdrawAutoInterval: number;
13
15
  withdrawAutoMaxAmount: number;
14
16
  constructor(data?: Partial<GlobalSettingFirebankEntity>);
@@ -12,6 +12,8 @@ var GlobalSettingFirebankEntity = /** @class */ (function () {
12
12
  this.id = 'FIREBANK';
13
13
  this.password = '';
14
14
  this.userName = '';
15
+ this.withDrawScheduledTax = 1.16;
16
+ this.withDrawTax = 0.97;
15
17
  // Interval in seconds (default to 300 seconds = 5 minutes)
16
18
  this.withdrawAutoInterval = 300;
17
19
  this.withdrawAutoMaxAmount = 0;
@@ -3,15 +3,17 @@ export interface IGlobalSettingFirebank {
3
3
  apiKey: string;
4
4
  baseUrl: string;
5
5
  basicAuth64: string;
6
+ fee: number;
7
+ feeMode: 'PERCENTAGE' | 'FIXED';
6
8
  id: string;
7
9
  password: string;
8
10
  userName: string;
9
- fee: number;
10
- feeMode: 'PERCENTAGE' | 'FIXED';
11
- withdrawAutoMaxAmount: number;
11
+ withDrawScheduledTax: number;
12
+ withDrawTax: number;
12
13
  /**
13
14
  * Intervalo em segundos (ou milissegundos, conforme implementação) que define o tempo mínimo entre saques automáticos.
14
15
  * Exemplo: 60 para 1 minuto, 3600 para 1 hora.
15
16
  */
16
17
  withdrawAutoInterval: number;
18
+ withdrawAutoMaxAmount: number;
17
19
  }
@@ -28,7 +28,7 @@ export interface ITransaction {
28
28
  payer: ITransactionPayer;
29
29
  posId: string;
30
30
  provider: ETransactionProvider;
31
- referenceId: 'goLive' | 'engine_mobyo_fee' | 'withdraw' | string;
31
+ referenceId: string;
32
32
  resumeVersion: string;
33
33
  receipt: string | null;
34
34
  saleChannel: ENatipaySaleChannel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.9.98",
3
+ "version": "1.9.99",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",