@30nama/sdk 1.0.7 → 1.0.8
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/entities/IBoxOffice.d.ts +1 -9
- package/dist/entities/IBoxOffice.js.map +1 -1
- package/dist/entities/ITitle.d.ts +1 -17
- package/dist/entities/ITitle.js.map +1 -1
- package/dist/entities/IVideoContent.d.ts +1 -2
- package/dist/entities/index.d.ts +4 -0
- package/dist/entities/index.js +4 -0
- package/dist/entities/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,15 +2,7 @@ import BaseEntity from './BaseEntity';
|
|
|
2
2
|
import { IAttachment } from './IAttachment';
|
|
3
3
|
import { IGenre } from './ICollector';
|
|
4
4
|
import { IRating } from './IRating';
|
|
5
|
-
|
|
6
|
-
export type VideoContentInfoData = {
|
|
7
|
-
title: string;
|
|
8
|
-
description?: string;
|
|
9
|
-
};
|
|
10
|
-
export type VideoContentInfo = {
|
|
11
|
-
[key in ISOLocales]: VideoContentInfoData;
|
|
12
|
-
};
|
|
13
|
-
export type VideoContentOption = 'featured' | 'persian-subtitle' | 'streams';
|
|
5
|
+
import { VideoContentInfo, VideoContentOption } from './IVideoContent';
|
|
14
6
|
type SeriesMeta = {
|
|
15
7
|
air_status: string;
|
|
16
8
|
air_days: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IBoxOffice.js","sourceRoot":"","sources":["../../src/entities/IBoxOffice.ts"],"names":[],"mappings":";;;AAAA,6CAAqC;
|
|
1
|
+
{"version":3,"file":"IBoxOffice.js","sourceRoot":"","sources":["../../src/entities/IBoxOffice.ts"],"names":[],"mappings":";;;AAAA,6CAAqC;AAcrC,MAAa,UAAW,SAAQ,oBAAU;IAmBtC,YAAY,OAA4B;QACpC,KAAK,EAAE,CAAA;QACP,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,CAAA;IAChC,CAAC;CACJ;AAvBD,gCAuBC"}
|
|
@@ -2,22 +2,7 @@ import BaseEntity from './BaseEntity';
|
|
|
2
2
|
import { IAttachment } from './IAttachment';
|
|
3
3
|
import { IGenre } from './ICollector';
|
|
4
4
|
import { IRating } from './IRating';
|
|
5
|
-
|
|
6
|
-
export type VideoContentInfoData = {
|
|
7
|
-
title: string;
|
|
8
|
-
description?: string;
|
|
9
|
-
};
|
|
10
|
-
export type VideoContentInfo = {
|
|
11
|
-
[key in ISOLocales]: VideoContentInfoData;
|
|
12
|
-
};
|
|
13
|
-
export type VideoContentOption = 'featured' | 'persian-subtitle' | 'streams';
|
|
14
|
-
type SeriesMeta = {
|
|
15
|
-
air_status: string;
|
|
16
|
-
air_days: string[];
|
|
17
|
-
last_episode_date?: string;
|
|
18
|
-
last_episode: string;
|
|
19
|
-
next_episode_date?: string;
|
|
20
|
-
};
|
|
5
|
+
import { SeriesMeta, VideoContentInfo, VideoContentOption } from './IVideoContent';
|
|
21
6
|
export declare class ITitle extends BaseEntity {
|
|
22
7
|
id: string;
|
|
23
8
|
info: VideoContentInfo;
|
|
@@ -50,4 +35,3 @@ export declare class IHeroTitle extends BaseEntity {
|
|
|
50
35
|
download_id?: string;
|
|
51
36
|
constructor(partial: Partial<ITitle>);
|
|
52
37
|
}
|
|
53
|
-
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ITitle.js","sourceRoot":"","sources":["../../src/entities/ITitle.ts"],"names":[],"mappings":";;;AAAA,6CAAqC;
|
|
1
|
+
{"version":3,"file":"ITitle.js","sourceRoot":"","sources":["../../src/entities/ITitle.ts"],"names":[],"mappings":";;;AAAA,6CAAqC;AAMrC,MAAa,MAAO,SAAQ,oBAAU;IAelC,YAAY,OAAwB;QAChC,KAAK,EAAE,CAAA;QACP,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,CAAA;IAChC,CAAC;CACJ;AAnBD,wBAmBC;AAED,MAAa,UAAW,SAAQ,oBAAU;IActC,YAAY,OAAwB;QAChC,KAAK,EAAE,CAAA;QACP,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,CAAA;IAChC,CAAC;CACJ;AAlBD,gCAkBC"}
|
|
@@ -13,7 +13,7 @@ export type VideoContentInfo = {
|
|
|
13
13
|
[key in ISOLocales]: VideoContentInfoData;
|
|
14
14
|
};
|
|
15
15
|
export type VideoContentOption = 'featured' | 'persian-subtitle' | 'streams';
|
|
16
|
-
type SeriesMeta = {
|
|
16
|
+
export type SeriesMeta = {
|
|
17
17
|
air_status: string;
|
|
18
18
|
air_days: string[];
|
|
19
19
|
last_episode_date?: string;
|
|
@@ -58,4 +58,3 @@ export declare class IVideoContent extends BaseEntity {
|
|
|
58
58
|
}[];
|
|
59
59
|
constructor(partial: Partial<IVideoContent>);
|
|
60
60
|
}
|
|
61
|
-
export {};
|
package/dist/entities/index.d.ts
CHANGED
package/dist/entities/index.js
CHANGED
|
@@ -18,4 +18,8 @@ __exportStar(require("./IVideoContent"), exports);
|
|
|
18
18
|
__exportStar(require("./IRating"), exports);
|
|
19
19
|
__exportStar(require("./IAttachment"), exports);
|
|
20
20
|
__exportStar(require("./ICollector"), exports);
|
|
21
|
+
__exportStar(require("./ICollection"), exports);
|
|
22
|
+
__exportStar(require("./IBoxOffice"), exports);
|
|
23
|
+
__exportStar(require("./IPerson"), exports);
|
|
24
|
+
__exportStar(require("./ITitle"), exports);
|
|
21
25
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA+B;AAC/B,4CAAyB;AACzB,gDAA6B;AAC7B,+CAA4B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA+B;AAC/B,4CAAyB;AACzB,gDAA6B;AAC7B,+CAA4B;AAC5B,gDAA6B;AAC7B,+CAA4B;AAC5B,4CAAyB;AACzB,2CAAwB"}
|