@30nama/sdk 1.8.5 → 1.8.7
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/api/index.js +81 -97
- package/dist/api/index.js.map +1 -1
- package/dist/api/request.js +56 -70
- package/dist/api/request.js.map +1 -1
- package/dist/api/services/biography.js +41 -67
- package/dist/api/services/biography.js.map +1 -1
- package/dist/api/services/index.js +7 -23
- package/dist/api/services/index.js.map +1 -1
- package/dist/api/services/news.js +41 -67
- package/dist/api/services/news.js.map +1 -1
- package/dist/api/services/operator.js +201 -281
- package/dist/api/services/operator.js.map +1 -1
- package/dist/api/services/soundtrack.js +17 -34
- package/dist/api/services/soundtrack.js.map +1 -1
- package/dist/api/services/stream.js +51 -77
- package/dist/api/services/stream.js.map +1 -1
- package/dist/api/services/support.js +41 -67
- package/dist/api/services/support.js.map +1 -1
- package/dist/api/services/videoContent.js +291 -389
- package/dist/api/services/videoContent.js.map +1 -1
- package/dist/api/types.js +1 -2
- package/dist/core.js +13 -35
- package/dist/core.js.map +1 -1
- package/dist/entities/BaseEntity.js +2 -5
- package/dist/entities/BaseEntity.js.map +1 -1
- package/dist/entities/IArticle.d.ts +11 -31
- package/dist/entities/IArticle.js +10 -6
- package/dist/entities/IArticle.js.map +1 -1
- package/dist/entities/IAttachment.js +1 -2
- package/dist/entities/IBiography.js +14 -6
- package/dist/entities/IBiography.js.map +1 -1
- package/dist/entities/IBoxOffice.js +20 -6
- package/dist/entities/IBoxOffice.js.map +1 -1
- package/dist/entities/ICollection.js +9 -6
- package/dist/entities/ICollection.js.map +1 -1
- package/dist/entities/ICollector.js +1 -2
- package/dist/entities/IOperator.js +2 -5
- package/dist/entities/IOperator.js.map +1 -1
- package/dist/entities/IPerson.js +1 -2
- package/dist/entities/IRating.js +1 -2
- package/dist/entities/ISoundTrack.js +1 -2
- package/dist/entities/IStream.js +1 -2
- package/dist/entities/ITitle.js +34 -8
- package/dist/entities/ITitle.js.map +1 -1
- package/dist/entities/IVideoContent.js +26 -6
- package/dist/entities/IVideoContent.js.map +1 -1
- package/dist/entities/index.js +12 -28
- package/dist/entities/index.js.map +1 -1
- package/dist/index.js +7 -8
- package/dist/index.js.map +1 -1
- package/dist/pattern/index.js +10 -9
- package/dist/pattern/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,84 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.streamGetEpisodes = streamGetEpisodes;
|
|
13
|
-
exports.streamGetContinueWatching = streamGetContinueWatching;
|
|
14
|
-
exports.streamDeleteContinueWatching = streamDeleteContinueWatching;
|
|
15
|
-
exports.streamGenerateStreamLink = streamGenerateStreamLink;
|
|
16
|
-
exports.streamSave = streamSave;
|
|
17
|
-
const request_1 = require("../request");
|
|
1
|
+
import request from '../request';
|
|
18
2
|
const servicePath = 'stream';
|
|
19
|
-
function streamGetEpisodes(video_content_id) {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
return response;
|
|
28
|
-
});
|
|
3
|
+
export async function streamGetEpisodes(video_content_id) {
|
|
4
|
+
const This = this;
|
|
5
|
+
This.log('info', 'Running action: streamGetEpisodes');
|
|
6
|
+
const req = new request(`stream-seasons-episodes/${video_content_id}`, this);
|
|
7
|
+
req.withService(servicePath);
|
|
8
|
+
req.withMethod('get');
|
|
9
|
+
const response = (await req.execute());
|
|
10
|
+
return response;
|
|
29
11
|
}
|
|
30
|
-
function streamGetContinueWatching() {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
return response;
|
|
39
|
-
});
|
|
12
|
+
export async function streamGetContinueWatching(type = 'all', limit) {
|
|
13
|
+
const This = this;
|
|
14
|
+
This.log('info', 'Running action: streamGetContinueWatching');
|
|
15
|
+
const req = new request(`show-archive-list`, this);
|
|
16
|
+
req.withService(servicePath);
|
|
17
|
+
req.withMethod('get');
|
|
18
|
+
const response = (await req.execute({ type, limit }));
|
|
19
|
+
return response;
|
|
40
20
|
}
|
|
41
|
-
function streamDeleteContinueWatching(id) {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
return response;
|
|
50
|
-
});
|
|
21
|
+
export async function streamDeleteContinueWatching(id) {
|
|
22
|
+
const This = this;
|
|
23
|
+
This.log('info', 'Running action: streamDeleteContinueWatching');
|
|
24
|
+
const req = new request(`delete-content/${id}`, this);
|
|
25
|
+
req.withService(servicePath);
|
|
26
|
+
req.withMethod('put');
|
|
27
|
+
const response = (await req.execute());
|
|
28
|
+
return response;
|
|
51
29
|
}
|
|
52
|
-
function streamGenerateStreamLink(video_content_id, season_number, episode_number) {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
return response;
|
|
65
|
-
});
|
|
30
|
+
export async function streamGenerateStreamLink(video_content_id, season_number, episode_number) {
|
|
31
|
+
const This = this;
|
|
32
|
+
This.log('info', 'Running action: streamGenerateStreamLink');
|
|
33
|
+
const req = new request(`generate-stream-link`, this);
|
|
34
|
+
req.withService(servicePath);
|
|
35
|
+
req.withMethod('get');
|
|
36
|
+
const response = (await req.execute({
|
|
37
|
+
video_content_id,
|
|
38
|
+
season_number,
|
|
39
|
+
episode_number
|
|
40
|
+
}));
|
|
41
|
+
return response;
|
|
66
42
|
}
|
|
67
|
-
function streamSave(stream_content_id, time, duration, video_content_id, profile_id) {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
return response;
|
|
82
|
-
});
|
|
43
|
+
export async function streamSave(stream_content_id, time, duration, video_content_id, profile_id) {
|
|
44
|
+
const This = this;
|
|
45
|
+
This.log('info', 'Running action: streamSave');
|
|
46
|
+
const req = new request(`save-stream-log`, this);
|
|
47
|
+
req.withService(servicePath);
|
|
48
|
+
req.withMethod('post');
|
|
49
|
+
const response = (await req.execute({
|
|
50
|
+
stream_content_id,
|
|
51
|
+
time,
|
|
52
|
+
duration,
|
|
53
|
+
video_content_id,
|
|
54
|
+
profile_id
|
|
55
|
+
}));
|
|
56
|
+
return response;
|
|
83
57
|
}
|
|
84
58
|
//# sourceMappingURL=stream.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stream.js","sourceRoot":"","sources":["../../../src/api/services/stream.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stream.js","sourceRoot":"","sources":["../../../src/api/services/stream.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,74 +1,48 @@
|
|
|
1
|
-
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.supportCommonQuestions = supportCommonQuestions;
|
|
13
|
-
exports.supportDMCA = supportDMCA;
|
|
14
|
-
exports.supportRules = supportRules;
|
|
15
|
-
exports.supportTrainingCenter = supportTrainingCenter;
|
|
16
|
-
exports.supportTrainingDetail = supportTrainingDetail;
|
|
17
|
-
const request_1 = require("../request");
|
|
1
|
+
import request from '../request';
|
|
18
2
|
const servicePath = 'supportersystem';
|
|
19
|
-
function supportCommonQuestions() {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
return response;
|
|
28
|
-
});
|
|
3
|
+
export async function supportCommonQuestions() {
|
|
4
|
+
const This = this;
|
|
5
|
+
This.log('info', 'Running action: supportCommonQuestions');
|
|
6
|
+
const req = new request(`system/common/questions`, this);
|
|
7
|
+
req.withService(servicePath);
|
|
8
|
+
req.withMethod('get');
|
|
9
|
+
const response = (await req.execute());
|
|
10
|
+
return response;
|
|
29
11
|
}
|
|
30
|
-
function supportDMCA() {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
return response;
|
|
39
|
-
});
|
|
12
|
+
export async function supportDMCA() {
|
|
13
|
+
const This = this;
|
|
14
|
+
This.log('info', 'Running action: supportDMCA');
|
|
15
|
+
const req = new request(`system/dmca`, this);
|
|
16
|
+
req.withService(servicePath);
|
|
17
|
+
req.withMethod('get');
|
|
18
|
+
const response = (await req.execute());
|
|
19
|
+
return response;
|
|
40
20
|
}
|
|
41
|
-
function supportRules() {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
return response;
|
|
50
|
-
});
|
|
21
|
+
export async function supportRules() {
|
|
22
|
+
const This = this;
|
|
23
|
+
This.log('info', 'Running action: supportRules');
|
|
24
|
+
const req = new request(`system/rules`, this);
|
|
25
|
+
req.withService(servicePath);
|
|
26
|
+
req.withMethod('get');
|
|
27
|
+
const response = (await req.execute());
|
|
28
|
+
return response;
|
|
51
29
|
}
|
|
52
|
-
function supportTrainingCenter(search, page) {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
return response;
|
|
61
|
-
});
|
|
30
|
+
export async function supportTrainingCenter(search, page) {
|
|
31
|
+
const This = this;
|
|
32
|
+
This.log('info', 'Running action: supportTrainingCenter');
|
|
33
|
+
const req = new request(`system/training/center`, this);
|
|
34
|
+
req.withService(servicePath);
|
|
35
|
+
req.withMethod('get');
|
|
36
|
+
const response = (await req.execute({ search, page }));
|
|
37
|
+
return response;
|
|
62
38
|
}
|
|
63
|
-
function supportTrainingDetail(id) {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
return response;
|
|
72
|
-
});
|
|
39
|
+
export async function supportTrainingDetail(id) {
|
|
40
|
+
const This = this;
|
|
41
|
+
This.log('info', 'Running action: supportRules');
|
|
42
|
+
const req = new request(`system/training/${id}`, this);
|
|
43
|
+
req.withService(servicePath);
|
|
44
|
+
req.withMethod('get');
|
|
45
|
+
const response = (await req.execute());
|
|
46
|
+
return response;
|
|
73
47
|
}
|
|
74
48
|
//# sourceMappingURL=support.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"support.js","sourceRoot":"","sources":["../../../src/api/services/support.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"support.js","sourceRoot":"","sources":["../../../src/api/services/support.ts"],"names":[],"mappings":"AACA,OAAO,OAAO,MAAM,YAAY,CAAA;AAEhC,MAAM,WAAW,GAAG,iBAAiB,CAAA;AAErC,MAAM,CAAC,KAAK,UAAU,sBAAsB;IACxC,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,wCAAwC,CAAC,CAAA;IAC1D,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,yBAAyB,EAAE,IAAI,CAAC,CAAA;IACxD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;IACtG,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,WAAW;IAC7B,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,6BAA6B,CAAC,CAAA;IAC/C,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,aAAa,EAAE,IAAI,CAAC,CAAA;IAC5C,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;IACtG,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,YAAY;IAC9B,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,8BAA8B,CAAC,CAAA;IAChD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,cAAc,EAAE,IAAI,CAAC,CAAA;IAC7C,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;IACtG,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,qBAAqB,CAAY,MAAe,EAAE,IAAa;IACjF,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,uCAAuC,CAAC,CAAA;IACzD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,wBAAwB,EAAE,IAAI,CAAC,CAAA;IACvD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAOtC,CAAA;IACf,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,qBAAqB,CAAY,EAAU;IAC7D,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,8BAA8B,CAAC,CAAA;IAChD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,mBAAmB,EAAE,EAAE,EAAE,IAAI,CAAC,CAAA;IACtD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAmH,CAAA;IACxJ,OAAO,QAAQ,CAAA;AACnB,CAAC"}
|