@experts_hub/shared 1.0.725 → 1.0.727
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/index.d.mts
CHANGED
|
@@ -1902,6 +1902,7 @@ declare class WalletTransaction extends BaseEntity {
|
|
|
1902
1902
|
walletId: number;
|
|
1903
1903
|
wallet: Wallet;
|
|
1904
1904
|
amount: number;
|
|
1905
|
+
markUpAmount: number;
|
|
1905
1906
|
balanceBefore: number;
|
|
1906
1907
|
balanceAfter: number;
|
|
1907
1908
|
type: WalletTransactionTypeEnum;
|
|
@@ -5273,6 +5274,7 @@ declare class PublicDataVendorApiConfiguration extends BaseEntity {
|
|
|
5273
5274
|
vendorName: string;
|
|
5274
5275
|
vendorApiKey: string;
|
|
5275
5276
|
vendorApiSecretKey: string;
|
|
5277
|
+
slug: string;
|
|
5276
5278
|
isActive: boolean;
|
|
5277
5279
|
}
|
|
5278
5280
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1902,6 +1902,7 @@ declare class WalletTransaction extends BaseEntity {
|
|
|
1902
1902
|
walletId: number;
|
|
1903
1903
|
wallet: Wallet;
|
|
1904
1904
|
amount: number;
|
|
1905
|
+
markUpAmount: number;
|
|
1905
1906
|
balanceBefore: number;
|
|
1906
1907
|
balanceAfter: number;
|
|
1907
1908
|
type: WalletTransactionTypeEnum;
|
|
@@ -5273,6 +5274,7 @@ declare class PublicDataVendorApiConfiguration extends BaseEntity {
|
|
|
5273
5274
|
vendorName: string;
|
|
5274
5275
|
vendorApiKey: string;
|
|
5275
5276
|
vendorApiSecretKey: string;
|
|
5277
|
+
slug: string;
|
|
5276
5278
|
isActive: boolean;
|
|
5277
5279
|
}
|
|
5278
5280
|
|
package/dist/index.js
CHANGED
|
@@ -6474,6 +6474,9 @@ __decorateClass([
|
|
|
6474
6474
|
__decorateClass([
|
|
6475
6475
|
(0, import_typeorm72.Column)({ name: "amount", type: "bigint", nullable: true })
|
|
6476
6476
|
], WalletTransaction.prototype, "amount", 2);
|
|
6477
|
+
__decorateClass([
|
|
6478
|
+
(0, import_typeorm72.Column)({ name: "mark_up_amount", type: "bigint", nullable: true })
|
|
6479
|
+
], WalletTransaction.prototype, "markUpAmount", 2);
|
|
6477
6480
|
__decorateClass([
|
|
6478
6481
|
(0, import_typeorm72.Column)({ name: "balance_before", type: "bigint", nullable: true })
|
|
6479
6482
|
], WalletTransaction.prototype, "balanceBefore", 2);
|
|
@@ -15460,8 +15463,11 @@ __decorateClass([
|
|
|
15460
15463
|
(0, import_typeorm103.Column)({ name: "vendor_api_key", type: "varchar", length: 255 })
|
|
15461
15464
|
], PublicDataVendorApiConfiguration.prototype, "vendorApiKey", 2);
|
|
15462
15465
|
__decorateClass([
|
|
15463
|
-
(0, import_typeorm103.Column)({ name: "vendor_api_secret_key", type: "
|
|
15466
|
+
(0, import_typeorm103.Column)({ name: "vendor_api_secret_key", type: "text" })
|
|
15464
15467
|
], PublicDataVendorApiConfiguration.prototype, "vendorApiSecretKey", 2);
|
|
15468
|
+
__decorateClass([
|
|
15469
|
+
(0, import_typeorm103.Column)({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
15470
|
+
], PublicDataVendorApiConfiguration.prototype, "slug", 2);
|
|
15465
15471
|
__decorateClass([
|
|
15466
15472
|
(0, import_typeorm103.Column)({ name: "is_active", type: "boolean", default: true })
|
|
15467
15473
|
], PublicDataVendorApiConfiguration.prototype, "isActive", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -6264,6 +6264,9 @@ __decorateClass([
|
|
|
6264
6264
|
__decorateClass([
|
|
6265
6265
|
Column72({ name: "amount", type: "bigint", nullable: true })
|
|
6266
6266
|
], WalletTransaction.prototype, "amount", 2);
|
|
6267
|
+
__decorateClass([
|
|
6268
|
+
Column72({ name: "mark_up_amount", type: "bigint", nullable: true })
|
|
6269
|
+
], WalletTransaction.prototype, "markUpAmount", 2);
|
|
6267
6270
|
__decorateClass([
|
|
6268
6271
|
Column72({ name: "balance_before", type: "bigint", nullable: true })
|
|
6269
6272
|
], WalletTransaction.prototype, "balanceBefore", 2);
|
|
@@ -15647,8 +15650,11 @@ __decorateClass([
|
|
|
15647
15650
|
Column100({ name: "vendor_api_key", type: "varchar", length: 255 })
|
|
15648
15651
|
], PublicDataVendorApiConfiguration.prototype, "vendorApiKey", 2);
|
|
15649
15652
|
__decorateClass([
|
|
15650
|
-
Column100({ name: "vendor_api_secret_key", type: "
|
|
15653
|
+
Column100({ name: "vendor_api_secret_key", type: "text" })
|
|
15651
15654
|
], PublicDataVendorApiConfiguration.prototype, "vendorApiSecretKey", 2);
|
|
15655
|
+
__decorateClass([
|
|
15656
|
+
Column100({ name: "slug", type: "varchar", nullable: true, unique: true })
|
|
15657
|
+
], PublicDataVendorApiConfiguration.prototype, "slug", 2);
|
|
15652
15658
|
__decorateClass([
|
|
15653
15659
|
Column100({ name: "is_active", type: "boolean", default: true })
|
|
15654
15660
|
], PublicDataVendorApiConfiguration.prototype, "isActive", 2);
|