Skip to content

Commit b00999f

Browse files
author
Xziy
committed
local processing
1 parent 21742db commit b00999f

File tree

5 files changed

+0
-26
lines changed

5 files changed

+0
-26
lines changed

adapters/bonusprogram/BonusProgramAdapter.d.ts

-4
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ export default abstract class BonusProgramAdapter {
3232
*/
3333
abstract readonly decimals: number;
3434
abstract readonly description: string;
35-
/**
36-
* The site will calculation record transactions
37-
*/
38-
abstract readonly localProcessing: boolean;
3935
constructor(config?: ConfigBonusProgramAdapter);
4036
/**
4137
* method for set ORMid

adapters/bonusprogram/BonusProgramAdapter.ts

-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ export default abstract class BonusProgramAdapter {
4646
public abstract readonly decimals: number;
4747
public abstract readonly description: string;
4848

49-
/**
50-
* The site will calculation record transactions
51-
*/
52-
public abstract readonly localProcessing: boolean;
53-
5449
public constructor(config?: ConfigBonusProgramAdapter) {
5550
this.config = config;
5651
}

models/BonusProgram.d.ts

-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ declare let attributes: {
2424
/** user option */
2525
enable: boolean;
2626
automaticUserRegistration: boolean;
27-
/**
28-
* The site will record transactions
29-
*/
30-
localProcessing: boolean;
3127
customData: {
3228
[key: string]: string | boolean | number;
3329
} | string;

models/BonusProgram.js

-6
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@ let attributes = {
4343
automaticUserRegistration: {
4444
type: "boolean",
4545
},
46-
/**
47-
* The site will record transactions
48-
*/
49-
localProcessing: {
50-
type: "boolean",
51-
},
5246
customData: "json",
5347
};
5448
let Model = {

models/BonusProgram.ts

-7
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,6 @@ let attributes = {
6161
type: "boolean",
6262
} as unknown as boolean,
6363

64-
/**
65-
* The site will record transactions
66-
*/
67-
localProcessing: {
68-
type: "boolean",
69-
} as unknown as boolean,
70-
7164
customData: "json" as unknown as {
7265
[key: string]: string | boolean | number;
7366
} | string,

0 commit comments

Comments
 (0)