@kamino-finance/kamino-db 8.0.26 → 8.0.28
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/models/kswap/{KSwapInstruction.d.ts → KSwapInstructionEntity.d.ts} +2 -2
- package/dist/models/kswap/{KSwapInstruction.js → KSwapInstructionEntity.js} +1 -1
- package/dist/models/kswap/KSwapInstructionEntity.js.map +1 -0
- package/dist/models/kswap/index.d.ts +1 -1
- package/dist/models/kswap/index.js +1 -1
- package/dist/models/kswap/index.js.map +1 -1
- package/package.json +1 -1
- package/src/models/kswap/{KSwapInstruction.ts → KSwapInstructionEntity.ts} +2 -2
- package/src/models/kswap/index.ts +1 -1
- package/dist/models/kswap/KSwapInstruction.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface KSwapInstructionEntity {
|
|
2
2
|
id: bigint;
|
|
3
3
|
in_amount: string;
|
|
4
4
|
out_amount: string;
|
|
@@ -9,6 +9,6 @@ export interface KSwapInstruction {
|
|
|
9
9
|
owner_id: number;
|
|
10
10
|
searcher_owner_id: number | null;
|
|
11
11
|
raw_instruction_id: string;
|
|
12
|
-
referral_code_id: string;
|
|
12
|
+
referral_code_id: string | null;
|
|
13
13
|
swap_program_account_id: number;
|
|
14
14
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KSwapInstructionEntity.js","sourceRoot":"","sources":["../../../src/models/kswap/KSwapInstructionEntity.ts"],"names":[],"mappings":"","sourcesContent":["export interface KSwapInstructionEntity {\n id: bigint;\n in_amount: string;\n out_amount: string;\n in_token_mint_id: number;\n out_token_mint_id: number;\n volume_usd: string;\n sol_price: string;\n owner_id: number;\n searcher_owner_id: number | null;\n raw_instruction_id: string;\n referral_code_id: string | null;\n swap_program_account_id: number;\n}\n"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './KswapTokenEntity';
|
|
2
|
-
export * from './
|
|
2
|
+
export * from './KSwapInstructionEntity';
|
|
@@ -15,5 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./KswapTokenEntity"), exports);
|
|
18
|
-
__exportStar(require("./
|
|
18
|
+
__exportStar(require("./KSwapInstructionEntity"), exports);
|
|
19
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/kswap/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/kswap/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,2DAAyC","sourcesContent":["export * from './KswapTokenEntity';\nexport * from './KSwapInstructionEntity';\n"]}
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface KSwapInstructionEntity {
|
|
2
2
|
id: bigint;
|
|
3
3
|
in_amount: string;
|
|
4
4
|
out_amount: string;
|
|
@@ -9,6 +9,6 @@ export interface KSwapInstruction {
|
|
|
9
9
|
owner_id: number;
|
|
10
10
|
searcher_owner_id: number | null;
|
|
11
11
|
raw_instruction_id: string;
|
|
12
|
-
referral_code_id: string;
|
|
12
|
+
referral_code_id: string | null;
|
|
13
13
|
swap_program_account_id: number;
|
|
14
14
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './KswapTokenEntity';
|
|
2
|
-
export * from './
|
|
2
|
+
export * from './KSwapInstructionEntity';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"KSwapInstruction.js","sourceRoot":"","sources":["../../../src/models/kswap/KSwapInstruction.ts"],"names":[],"mappings":"","sourcesContent":["export interface KSwapInstruction {\n id: bigint;\n in_amount: string;\n out_amount: string;\n in_token_mint_id: number;\n out_token_mint_id: number;\n volume_usd: string;\n sol_price: string;\n owner_id: number;\n searcher_owner_id: number | null;\n raw_instruction_id: string;\n referral_code_id: string;\n swap_program_account_id: number;\n}\n"]}
|