@experts_hub/shared 1.0.725 → 1.0.726

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.
@@ -3,5 +3,6 @@ export declare class PublicDataVendorApiConfiguration extends BaseEntity {
3
3
  vendorName: string;
4
4
  vendorApiKey: string;
5
5
  vendorApiSecretKey: string;
6
+ slug: string;
6
7
  isActive: boolean;
7
8
  }
package/dist/index.d.mts CHANGED
@@ -5273,6 +5273,7 @@ declare class PublicDataVendorApiConfiguration extends BaseEntity {
5273
5273
  vendorName: string;
5274
5274
  vendorApiKey: string;
5275
5275
  vendorApiSecretKey: string;
5276
+ slug: string;
5276
5277
  isActive: boolean;
5277
5278
  }
5278
5279
 
package/dist/index.d.ts CHANGED
@@ -5273,6 +5273,7 @@ declare class PublicDataVendorApiConfiguration extends BaseEntity {
5273
5273
  vendorName: string;
5274
5274
  vendorApiKey: string;
5275
5275
  vendorApiSecretKey: string;
5276
+ slug: string;
5276
5277
  isActive: boolean;
5277
5278
  }
5278
5279
 
package/dist/index.js CHANGED
@@ -15460,8 +15460,11 @@ __decorateClass([
15460
15460
  (0, import_typeorm103.Column)({ name: "vendor_api_key", type: "varchar", length: 255 })
15461
15461
  ], PublicDataVendorApiConfiguration.prototype, "vendorApiKey", 2);
15462
15462
  __decorateClass([
15463
- (0, import_typeorm103.Column)({ name: "vendor_api_secret_key", type: "varchar", length: 255 })
15463
+ (0, import_typeorm103.Column)({ name: "vendor_api_secret_key", type: "text" })
15464
15464
  ], PublicDataVendorApiConfiguration.prototype, "vendorApiSecretKey", 2);
15465
+ __decorateClass([
15466
+ (0, import_typeorm103.Column)({ name: "slug", type: "varchar", nullable: true, unique: true })
15467
+ ], PublicDataVendorApiConfiguration.prototype, "slug", 2);
15465
15468
  __decorateClass([
15466
15469
  (0, import_typeorm103.Column)({ name: "is_active", type: "boolean", default: true })
15467
15470
  ], PublicDataVendorApiConfiguration.prototype, "isActive", 2);
package/dist/index.mjs CHANGED
@@ -15647,8 +15647,11 @@ __decorateClass([
15647
15647
  Column100({ name: "vendor_api_key", type: "varchar", length: 255 })
15648
15648
  ], PublicDataVendorApiConfiguration.prototype, "vendorApiKey", 2);
15649
15649
  __decorateClass([
15650
- Column100({ name: "vendor_api_secret_key", type: "varchar", length: 255 })
15650
+ Column100({ name: "vendor_api_secret_key", type: "text" })
15651
15651
  ], PublicDataVendorApiConfiguration.prototype, "vendorApiSecretKey", 2);
15652
+ __decorateClass([
15653
+ Column100({ name: "slug", type: "varchar", nullable: true, unique: true })
15654
+ ], PublicDataVendorApiConfiguration.prototype, "slug", 2);
15652
15655
  __decorateClass([
15653
15656
  Column100({ name: "is_active", type: "boolean", default: true })
15654
15657
  ], PublicDataVendorApiConfiguration.prototype, "isActive", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.725",
3
+ "version": "1.0.726",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",