@tolinax/ayoune-interfaces 2024.77.0 → 2024.79.0

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.
@@ -7,6 +7,7 @@ export interface IDocument extends IDefaultFields {
7
7
  _consumerID: ObjectId;
8
8
  project: ObjectId;
9
9
  name?: string;
10
+ slug?: string;
10
11
  originalname?: string;
11
12
  source?: string;
12
13
  encoding?: string;
@@ -26,10 +26,13 @@ export interface IDownload extends IDefaultFields {
26
26
  _clientID?: ObjectId[];
27
27
  _subID?: ObjectId[];
28
28
  _product: ObjectId;
29
+ productName?: string;
29
30
  name?: string;
31
+ slug?: string;
30
32
  downloadFileName?: string;
31
33
  downloadType?: string;
32
34
  appId?: string;
35
+ forSale?: boolean;
33
36
  autoUpdate?: boolean;
34
37
  protected?: boolean;
35
38
  maxDownloads?: number;
@@ -15,10 +15,13 @@ export interface IDownloadList extends IDefaultFields {
15
15
  _clientID?: ObjectId[];
16
16
  _subID?: ObjectId[];
17
17
  _product: ObjectId;
18
+ productName?: string;
18
19
  name?: string;
20
+ slug?: string;
19
21
  downloadFileName?: string;
20
22
  protected?: boolean;
21
23
  coverFileId?: string;
24
+ forSale?: boolean;
22
25
  coverFileName?: string;
23
26
  coverFileUrl?: string;
24
27
  tags?: any[];
@@ -4,5 +4,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
4
4
  export interface IDownloadLog extends IGeoIPLocationTracking, IaYOUneTrackingParams, IDefaultFields {
5
5
  _customerID: ObjectId;
6
6
  _consumerID?: ObjectId;
7
- download?: string;
7
+ type?: string;
8
+ _download?: ObjectId;
9
+ _list?: ObjectId;
8
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.77.0",
3
+ "version": "2024.79.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",