@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.
Files changed (53) hide show
  1. package/dist/api/index.js +81 -97
  2. package/dist/api/index.js.map +1 -1
  3. package/dist/api/request.js +56 -70
  4. package/dist/api/request.js.map +1 -1
  5. package/dist/api/services/biography.js +41 -67
  6. package/dist/api/services/biography.js.map +1 -1
  7. package/dist/api/services/index.js +7 -23
  8. package/dist/api/services/index.js.map +1 -1
  9. package/dist/api/services/news.js +41 -67
  10. package/dist/api/services/news.js.map +1 -1
  11. package/dist/api/services/operator.js +201 -281
  12. package/dist/api/services/operator.js.map +1 -1
  13. package/dist/api/services/soundtrack.js +17 -34
  14. package/dist/api/services/soundtrack.js.map +1 -1
  15. package/dist/api/services/stream.js +51 -77
  16. package/dist/api/services/stream.js.map +1 -1
  17. package/dist/api/services/support.js +41 -67
  18. package/dist/api/services/support.js.map +1 -1
  19. package/dist/api/services/videoContent.js +291 -389
  20. package/dist/api/services/videoContent.js.map +1 -1
  21. package/dist/api/types.js +1 -2
  22. package/dist/core.js +13 -35
  23. package/dist/core.js.map +1 -1
  24. package/dist/entities/BaseEntity.js +2 -5
  25. package/dist/entities/BaseEntity.js.map +1 -1
  26. package/dist/entities/IArticle.d.ts +11 -31
  27. package/dist/entities/IArticle.js +10 -6
  28. package/dist/entities/IArticle.js.map +1 -1
  29. package/dist/entities/IAttachment.js +1 -2
  30. package/dist/entities/IBiography.js +14 -6
  31. package/dist/entities/IBiography.js.map +1 -1
  32. package/dist/entities/IBoxOffice.js +20 -6
  33. package/dist/entities/IBoxOffice.js.map +1 -1
  34. package/dist/entities/ICollection.js +9 -6
  35. package/dist/entities/ICollection.js.map +1 -1
  36. package/dist/entities/ICollector.js +1 -2
  37. package/dist/entities/IOperator.js +2 -5
  38. package/dist/entities/IOperator.js.map +1 -1
  39. package/dist/entities/IPerson.js +1 -2
  40. package/dist/entities/IRating.js +1 -2
  41. package/dist/entities/ISoundTrack.js +1 -2
  42. package/dist/entities/IStream.js +1 -2
  43. package/dist/entities/ITitle.js +34 -8
  44. package/dist/entities/ITitle.js.map +1 -1
  45. package/dist/entities/IVideoContent.js +26 -6
  46. package/dist/entities/IVideoContent.js.map +1 -1
  47. package/dist/entities/index.js +12 -28
  48. package/dist/entities/index.js.map +1 -1
  49. package/dist/index.js +7 -8
  50. package/dist/index.js.map +1 -1
  51. package/dist/pattern/index.js +10 -9
  52. package/dist/pattern/index.js.map +1 -1
  53. package/package.json +1 -1
@@ -1,296 +1,216 @@
1
- "use strict";
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.operatorCheckIdentity = operatorCheckIdentity;
13
- exports.operatorLogout = operatorLogout;
14
- exports.operatorTokenRefresh = operatorTokenRefresh;
15
- exports.operatorActiveSessions = operatorActiveSessions;
16
- exports.operatorCheckSessionExistence = operatorCheckSessionExistence;
17
- exports.operatorCheckSessionsLimit = operatorCheckSessionsLimit;
18
- exports.operatorDeleteSession = operatorDeleteSession;
19
- exports.operatorOTPLoginVerify = operatorOTPLoginVerify;
20
- exports.operatorOTPSendLogin = operatorOTPSendLogin;
21
- exports.operatorQRCodeCreate = operatorQRCodeCreate;
22
- exports.operatorQRCodeVerify = operatorQRCodeVerify;
23
- exports.operatorWebLogin = operatorWebLogin;
24
- exports.operatorOTPSendRegister = operatorOTPSendRegister;
25
- exports.operatorOTPVerifyRegister = operatorOTPVerifyRegister;
26
- exports.operatorResetPasswordChange = operatorResetPasswordChange;
27
- exports.operatorResetPasswordOTPSend = operatorResetPasswordOTPSend;
28
- exports.operatorProfile = operatorProfile;
29
- exports.operatorProfileUpdate = operatorProfileUpdate;
30
- exports.operatorProfilePublicPanel = operatorProfilePublicPanel;
31
- exports.operatorOnlineProfileCreate = operatorOnlineProfileCreate;
32
- exports.operatorOnlineProfileDelete = operatorOnlineProfileDelete;
33
- exports.operatorOnlineProfileList = operatorOnlineProfileList;
34
- exports.operatorOnlineProfileUpdate = operatorOnlineProfileUpdate;
35
- const request_1 = require("../request");
1
+ import request from '../request';
36
2
  const servicePath = 'operator';
37
- function operatorCheckIdentity(identity) {
38
- return __awaiter(this, void 0, void 0, function* () {
39
- const This = this;
40
- This.log('info', 'Running action: operatorCheckIdentity');
41
- const req = new request_1.default(`auth/check`, this);
42
- req.withService(servicePath);
43
- req.withMethod('get');
44
- const response = (yield req.execute({ identity }));
45
- return response;
46
- });
47
- }
48
- function operatorLogout(session_key) {
49
- return __awaiter(this, void 0, void 0, function* () {
50
- const This = this;
51
- This.log('info', 'Running action: operatorLogout');
52
- const req = new request_1.default(`auth/logout/${session_key}`, this);
53
- req.withService(servicePath);
54
- req.withMethod('get');
55
- const response = (yield req.execute());
56
- return response;
57
- });
58
- }
59
- function operatorTokenRefresh(refresh_token) {
60
- return __awaiter(this, void 0, void 0, function* () {
61
- const This = this;
62
- This.log('info', 'Running action: operatorTokenRefresh');
63
- const req = new request_1.default(`auth/token/refresh`, this);
64
- req.withService(servicePath);
65
- req.withMethod('post');
66
- const response = (yield req.execute({ refresh_token }));
67
- return response;
68
- });
3
+ export async function operatorCheckIdentity(identity) {
4
+ const This = this;
5
+ This.log('info', 'Running action: operatorCheckIdentity');
6
+ const req = new request(`auth/check`, this);
7
+ req.withService(servicePath);
8
+ req.withMethod('get');
9
+ const response = (await req.execute({ identity }));
10
+ return response;
11
+ }
12
+ export async function operatorLogout(session_key) {
13
+ const This = this;
14
+ This.log('info', 'Running action: operatorLogout');
15
+ const req = new request(`auth/logout/${session_key}`, this);
16
+ req.withService(servicePath);
17
+ req.withMethod('get');
18
+ const response = (await req.execute());
19
+ return response;
20
+ }
21
+ export async function operatorTokenRefresh(refresh_token) {
22
+ const This = this;
23
+ This.log('info', 'Running action: operatorTokenRefresh');
24
+ const req = new request(`auth/token/refresh`, this);
25
+ req.withService(servicePath);
26
+ req.withMethod('post');
27
+ const response = (await req.execute({ refresh_token }));
28
+ return response;
69
29
  }
70
30
  // Common: Sessions
71
- function operatorActiveSessions() {
72
- return __awaiter(this, void 0, void 0, function* () {
73
- const This = this;
74
- This.log('info', 'Running action: operatorActiveSessions');
75
- const req = new request_1.default(`auth/user/active/sessions/list`, this);
76
- req.withService(servicePath);
77
- req.withMethod('get');
78
- const response = (yield req.execute());
79
- return response;
80
- });
81
- }
82
- function operatorCheckSessionExistence(session_key) {
83
- return __awaiter(this, void 0, void 0, function* () {
84
- const This = this;
85
- This.log('info', 'Running action: operatorCheckSessionExistence');
86
- const req = new request_1.default(`auth/user/check/session/existence/${session_key}`, this);
87
- req.withService(servicePath);
88
- req.withMethod('get');
89
- const response = (yield req.execute());
90
- return response;
91
- });
92
- }
93
- function operatorCheckSessionsLimit() {
94
- return __awaiter(this, void 0, void 0, function* () {
95
- const This = this;
96
- This.log('info', 'Running action: operatorCheckSessionsLimit');
97
- const req = new request_1.default(`auth/user/check/sessions/limit`, this);
98
- req.withService(servicePath);
99
- req.withMethod('get');
100
- const response = (yield req.execute());
101
- return response;
102
- });
103
- }
104
- function operatorDeleteSession(session_list) {
105
- return __awaiter(this, void 0, void 0, function* () {
106
- const This = this;
107
- This.log('info', 'Running action: operatorDeleteSession');
108
- const req = new request_1.default(`auth/user/delete/session`, this);
109
- req.withService(servicePath);
110
- req.withMethod('post');
111
- const response = (yield req.execute({ session_list }));
112
- return response;
113
- });
31
+ export async function operatorActiveSessions() {
32
+ const This = this;
33
+ This.log('info', 'Running action: operatorActiveSessions');
34
+ const req = new request(`auth/user/active/sessions/list`, this);
35
+ req.withService(servicePath);
36
+ req.withMethod('get');
37
+ const response = (await req.execute());
38
+ return response;
39
+ }
40
+ export async function operatorCheckSessionExistence(session_key) {
41
+ const This = this;
42
+ This.log('info', 'Running action: operatorCheckSessionExistence');
43
+ const req = new request(`auth/user/check/session/existence/${session_key}`, this);
44
+ req.withService(servicePath);
45
+ req.withMethod('get');
46
+ const response = (await req.execute());
47
+ return response;
48
+ }
49
+ export async function operatorCheckSessionsLimit() {
50
+ const This = this;
51
+ This.log('info', 'Running action: operatorCheckSessionsLimit');
52
+ const req = new request(`auth/user/check/sessions/limit`, this);
53
+ req.withService(servicePath);
54
+ req.withMethod('get');
55
+ const response = (await req.execute());
56
+ return response;
57
+ }
58
+ export async function operatorDeleteSession(session_list) {
59
+ const This = this;
60
+ This.log('info', 'Running action: operatorDeleteSession');
61
+ const req = new request(`auth/user/delete/session`, this);
62
+ req.withService(servicePath);
63
+ req.withMethod('post');
64
+ const response = (await req.execute({ session_list }));
65
+ return response;
114
66
  }
115
67
  // User: Login
116
- function operatorOTPLoginVerify(identity, otp_code) {
117
- return __awaiter(this, void 0, void 0, function* () {
118
- const This = this;
119
- This.log('info', 'Running action: operatorOTPLoginVerify');
120
- const req = new request_1.default(`auth/user/otp/login/verify`, this);
121
- req.withService(servicePath);
122
- req.withMethod('post');
123
- const response = (yield req.execute({ identity, otp_code }));
124
- return response;
125
- });
126
- }
127
- function operatorOTPSendLogin(identity) {
128
- return __awaiter(this, void 0, void 0, function* () {
129
- const This = this;
130
- This.log('info', 'Running action: operatorOTPSendLogin');
131
- const req = new request_1.default(`auth/user/otp/send/login`, this);
132
- req.withService(servicePath);
133
- req.withMethod('post');
134
- const response = (yield req.execute({ identity }));
135
- return response;
136
- });
137
- }
138
- function operatorQRCodeCreate() {
139
- return __awaiter(this, void 0, void 0, function* () {
140
- const This = this;
141
- This.log('info', 'Running action: operatorQRCodeCreate');
142
- const req = new request_1.default(`auth/user/qrcode/create`, this);
143
- req.withService(servicePath);
144
- req.withMethod('get');
145
- const response = (yield req.execute());
146
- return response;
147
- });
148
- }
149
- function operatorQRCodeVerify(qr_code) {
150
- return __awaiter(this, void 0, void 0, function* () {
151
- const This = this;
152
- This.log('info', 'Running action: operatorQRCodeVerify');
153
- const req = new request_1.default(`auth/user/qrcode/verify/${qr_code}`, this);
154
- req.withService(servicePath);
155
- req.withMethod('post');
156
- const response = (yield req.execute());
157
- return response;
158
- });
159
- }
160
- function operatorWebLogin(identity, password) {
161
- return __awaiter(this, void 0, void 0, function* () {
162
- const This = this;
163
- This.log('info', 'Running action: operatorWebLogin');
164
- const req = new request_1.default(`auth/user/web-login`, this);
165
- req.withService(servicePath);
166
- req.withMethod('post');
167
- const response = (yield req.execute({ identity, password }));
168
- return response;
169
- });
68
+ export async function operatorOTPLoginVerify(identity, otp_code) {
69
+ const This = this;
70
+ This.log('info', 'Running action: operatorOTPLoginVerify');
71
+ const req = new request(`auth/user/otp/login/verify`, this);
72
+ req.withService(servicePath);
73
+ req.withMethod('post');
74
+ const response = (await req.execute({ identity, otp_code }));
75
+ return response;
76
+ }
77
+ export async function operatorOTPSendLogin(identity) {
78
+ const This = this;
79
+ This.log('info', 'Running action: operatorOTPSendLogin');
80
+ const req = new request(`auth/user/otp/send/login`, this);
81
+ req.withService(servicePath);
82
+ req.withMethod('post');
83
+ const response = (await req.execute({ identity }));
84
+ return response;
85
+ }
86
+ export async function operatorQRCodeCreate() {
87
+ const This = this;
88
+ This.log('info', 'Running action: operatorQRCodeCreate');
89
+ const req = new request(`auth/user/qrcode/create`, this);
90
+ req.withService(servicePath);
91
+ req.withMethod('get');
92
+ const response = (await req.execute());
93
+ return response;
94
+ }
95
+ export async function operatorQRCodeVerify(qr_code) {
96
+ const This = this;
97
+ This.log('info', 'Running action: operatorQRCodeVerify');
98
+ const req = new request(`auth/user/qrcode/verify/${qr_code}`, this);
99
+ req.withService(servicePath);
100
+ req.withMethod('post');
101
+ const response = (await req.execute());
102
+ return response;
103
+ }
104
+ export async function operatorWebLogin(identity, password) {
105
+ const This = this;
106
+ This.log('info', 'Running action: operatorWebLogin');
107
+ const req = new request(`auth/user/web-login`, this);
108
+ req.withService(servicePath);
109
+ req.withMethod('post');
110
+ const response = (await req.execute({ identity, password }));
111
+ return response;
170
112
  }
171
113
  // User: Register
172
- function operatorOTPSendRegister(identity) {
173
- return __awaiter(this, void 0, void 0, function* () {
174
- const This = this;
175
- This.log('info', 'Running action: operatorOTPSendRegister');
176
- const req = new request_1.default(`auth/user/otp/send/register`, this);
177
- req.withService(servicePath);
178
- req.withMethod('post');
179
- const response = (yield req.execute({ identity }));
180
- return response;
181
- });
182
- }
183
- function operatorOTPVerifyRegister(identity, otp_code) {
184
- return __awaiter(this, void 0, void 0, function* () {
185
- const This = this;
186
- This.log('info', 'Running action: operatorOTPVerifyRegister');
187
- const req = new request_1.default(`auth/user/otp/verify/register`, this);
188
- req.withService(servicePath);
189
- req.withMethod('post');
190
- const response = (yield req.execute({ identity, otp_code }));
191
- return response;
192
- });
114
+ export async function operatorOTPSendRegister(identity) {
115
+ const This = this;
116
+ This.log('info', 'Running action: operatorOTPSendRegister');
117
+ const req = new request(`auth/user/otp/send/register`, this);
118
+ req.withService(servicePath);
119
+ req.withMethod('post');
120
+ const response = (await req.execute({ identity }));
121
+ return response;
122
+ }
123
+ export async function operatorOTPVerifyRegister(identity, otp_code) {
124
+ const This = this;
125
+ This.log('info', 'Running action: operatorOTPVerifyRegister');
126
+ const req = new request(`auth/user/otp/verify/register`, this);
127
+ req.withService(servicePath);
128
+ req.withMethod('post');
129
+ const response = (await req.execute({ identity, otp_code }));
130
+ return response;
193
131
  }
194
132
  // User: Reset Password
195
- function operatorResetPasswordChange(password, confirm_password) {
196
- return __awaiter(this, void 0, void 0, function* () {
197
- const This = this;
198
- This.log('info', 'Running action: operatorResetPasswordChange');
199
- const req = new request_1.default(`auth/user/reset/password/change`, this);
200
- req.withService(servicePath);
201
- req.withMethod('post');
202
- const response = (yield req.execute({ password, confirm_password }));
203
- return response;
204
- });
205
- }
206
- function operatorResetPasswordOTPSend(identity) {
207
- return __awaiter(this, void 0, void 0, function* () {
208
- const This = this;
209
- This.log('info', 'Running action: operatorResetPasswordOTPSend');
210
- const req = new request_1.default(`auth/user/reset/password/otp/send`, this);
211
- req.withService(servicePath);
212
- req.withMethod('post');
213
- const response = (yield req.execute({ identity }));
214
- return response;
215
- });
133
+ export async function operatorResetPasswordChange(password, confirm_password) {
134
+ const This = this;
135
+ This.log('info', 'Running action: operatorResetPasswordChange');
136
+ const req = new request(`auth/user/reset/password/change`, this);
137
+ req.withService(servicePath);
138
+ req.withMethod('post');
139
+ const response = (await req.execute({ password, confirm_password }));
140
+ return response;
141
+ }
142
+ export async function operatorResetPasswordOTPSend(identity) {
143
+ const This = this;
144
+ This.log('info', 'Running action: operatorResetPasswordOTPSend');
145
+ const req = new request(`auth/user/reset/password/otp/send`, this);
146
+ req.withService(servicePath);
147
+ req.withMethod('post');
148
+ const response = (await req.execute({ identity }));
149
+ return response;
216
150
  }
217
151
  // User: Display/Edit Profile
218
- function operatorProfile() {
219
- return __awaiter(this, void 0, void 0, function* () {
220
- const This = this;
221
- This.log('info', 'Running action: operatorProfile');
222
- const req = new request_1.default(`profile`, this);
223
- req.withService(servicePath);
224
- req.withMethod('get');
225
- const response = (yield req.execute());
226
- return response;
227
- });
228
- }
229
- function operatorProfileUpdate(overrides) {
230
- return __awaiter(this, void 0, void 0, function* () {
231
- const This = this;
232
- This.log('info', 'Running action: operatorProfileUpdate');
233
- const req = new request_1.default(`profile/update`, this);
234
- req.withService(servicePath);
235
- req.withMethod('put');
236
- const response = (yield req.execute(overrides));
237
- return response;
238
- });
239
- }
240
- function operatorProfilePublicPanel(user_id) {
241
- return __awaiter(this, void 0, void 0, function* () {
242
- const This = this;
243
- This.log('info', 'Running action: operatorProfilePublicPanel');
244
- const req = new request_1.default(`auth/user/profile/user/public/panel/${user_id}`, this);
245
- req.withService(servicePath);
246
- req.withMethod('get');
247
- const response = (yield req.execute());
248
- return response;
249
- });
152
+ export async function operatorProfile() {
153
+ const This = this;
154
+ This.log('info', 'Running action: operatorProfile');
155
+ const req = new request(`profile`, this);
156
+ req.withService(servicePath);
157
+ req.withMethod('get');
158
+ const response = (await req.execute());
159
+ return response;
160
+ }
161
+ export async function operatorProfileUpdate(overrides) {
162
+ const This = this;
163
+ This.log('info', 'Running action: operatorProfileUpdate');
164
+ const req = new request(`profile/update`, this);
165
+ req.withService(servicePath);
166
+ req.withMethod('put');
167
+ const response = (await req.execute(overrides));
168
+ return response;
169
+ }
170
+ export async function operatorProfilePublicPanel(user_id) {
171
+ const This = this;
172
+ This.log('info', 'Running action: operatorProfilePublicPanel');
173
+ const req = new request(`auth/user/profile/user/public/panel/${user_id}`, this);
174
+ req.withService(servicePath);
175
+ req.withMethod('get');
176
+ const response = (await req.execute());
177
+ return response;
250
178
  }
251
179
  // User: Online Profile
252
- function operatorOnlineProfileCreate(name) {
253
- return __awaiter(this, void 0, void 0, function* () {
254
- const This = this;
255
- This.log('info', 'Running action: operatorOnlineProfileCreate');
256
- const req = new request_1.default(`auth/user/profile/online/profile/create`, this);
257
- req.withService(servicePath);
258
- req.withMethod('post');
259
- const response = (yield req.execute({ name }));
260
- return response;
261
- });
262
- }
263
- function operatorOnlineProfileDelete(profile_id) {
264
- return __awaiter(this, void 0, void 0, function* () {
265
- const This = this;
266
- This.log('info', 'Running action: operatorOnlineProfileDelete');
267
- const req = new request_1.default(`auth/user/profile/online/profile/delete/${profile_id}`, this);
268
- req.withService(servicePath);
269
- req.withMethod('delete');
270
- const response = (yield req.execute());
271
- return response;
272
- });
273
- }
274
- function operatorOnlineProfileList() {
275
- return __awaiter(this, void 0, void 0, function* () {
276
- const This = this;
277
- This.log('info', 'Running action: operatorOnlineProfileList');
278
- const req = new request_1.default(`auth/user/profile/online/profile/list`, this);
279
- req.withService(servicePath);
280
- req.withMethod('get');
281
- const response = (yield req.execute());
282
- return response;
283
- });
284
- }
285
- function operatorOnlineProfileUpdate(profile_id, name) {
286
- return __awaiter(this, void 0, void 0, function* () {
287
- const This = this;
288
- This.log('info', 'Running action: operatorOnlineProfileUpdate');
289
- const req = new request_1.default(`auth/user/profile/online/profile/update/${profile_id}`, this);
290
- req.withService(servicePath);
291
- req.withMethod('post');
292
- const response = (yield req.execute({ name }));
293
- return response;
294
- });
180
+ export async function operatorOnlineProfileCreate(name) {
181
+ const This = this;
182
+ This.log('info', 'Running action: operatorOnlineProfileCreate');
183
+ const req = new request(`auth/user/profile/online/profile/create`, this);
184
+ req.withService(servicePath);
185
+ req.withMethod('post');
186
+ const response = (await req.execute({ name }));
187
+ return response;
188
+ }
189
+ export async function operatorOnlineProfileDelete(profile_id) {
190
+ const This = this;
191
+ This.log('info', 'Running action: operatorOnlineProfileDelete');
192
+ const req = new request(`auth/user/profile/online/profile/delete/${profile_id}`, this);
193
+ req.withService(servicePath);
194
+ req.withMethod('delete');
195
+ const response = (await req.execute());
196
+ return response;
197
+ }
198
+ export async function operatorOnlineProfileList() {
199
+ const This = this;
200
+ This.log('info', 'Running action: operatorOnlineProfileList');
201
+ const req = new request(`auth/user/profile/online/profile/list`, this);
202
+ req.withService(servicePath);
203
+ req.withMethod('get');
204
+ const response = (await req.execute());
205
+ return response;
206
+ }
207
+ export async function operatorOnlineProfileUpdate(profile_id, name) {
208
+ const This = this;
209
+ This.log('info', 'Running action: operatorOnlineProfileUpdate');
210
+ const req = new request(`auth/user/profile/online/profile/update/${profile_id}`, this);
211
+ req.withService(servicePath);
212
+ req.withMethod('post');
213
+ const response = (await req.execute({ name }));
214
+ return response;
295
215
  }
296
216
  //# sourceMappingURL=operator.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"operator.js","sourceRoot":"","sources":["../../../src/api/services/operator.ts"],"names":[],"mappings":";;;;;;;;;;;AAMA,sDASC;AAED,wCASC;AAED,oDASC;AAGD,wDASC;AAED,sEASC;AAED,gEASC;AAED,sDASC;AAGD,wDASC;AAED,oDASC;AAED,oDASC;AAED,oDASC;AAED,4CASC;AAGD,0DASC;AAED,8DASC;AAGD,kEASC;AAED,oEASC;AAGD,0CASC;AAED,sDASC;AAED,gEASC;AAGD,kEASC;AAED,kEASC;AAED,8DASC;AAED,kEASC;AAtQD,wCAAgC;AAGhC,MAAM,WAAW,GAAG,UAAU,CAAA;AAE9B,SAAsB,qBAAqB,CAAY,QAAgB;;QACnE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,uCAAuC,CAAC,CAAA;QACzD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,YAAY,EAAE,IAAI,CAAC,CAAA;QAC3C,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC,CAA4C,CAAA;QAC7F,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,cAAc,CAAY,WAAmB;;QAC/D,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,gCAAgC,CAAC,CAAA;QAClD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,eAAe,WAAW,EAAE,EAAE,IAAI,CAAC,CAAA;QAC3D,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAA4C,CAAA;QACjF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,oBAAoB,CAAY,aAAqB;;QACvE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,sCAAsC,CAAC,CAAA;QACxD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,oBAAoB,EAAE,IAAI,CAAC,CAAA;QACnD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC,CAAkC,CAAA;QACxF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,mBAAmB;AACnB,SAAsB,sBAAsB;;QACxC,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,wCAAwC,CAAC,CAAA;QAC1D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,gCAAgC,EAAE,IAAI,CAAC,CAAA;QAC/D,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAA+C,CAAA;QACpF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,6BAA6B,CAAY,WAAmB;;QAC9E,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,+CAA+C,CAAC,CAAA;QACjE,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,qCAAqC,WAAW,EAAE,EAAE,IAAI,CAAC,CAAA;QACjF,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAmC,CAAA;QACxE,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,0BAA0B;;QAC5C,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,4CAA4C,CAAC,CAAA;QAC9D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,gCAAgC,EAAE,IAAI,CAAC,CAAA;QAC/D,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAkC,CAAA;QACvE,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,qBAAqB,CAAY,YAAsB;;QACzE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,uCAAuC,CAAC,CAAA;QACzD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,0BAA0B,EAAE,IAAI,CAAC,CAAA;QACzD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC,CAAkC,CAAA;QACvF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,cAAc;AACd,SAAsB,sBAAsB,CAAY,QAAgB,EAAE,QAAgB;;QACtF,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,wCAAwC,CAAC,CAAA;QAC1D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,4BAA4B,EAAE,IAAI,CAAC,CAAA;QAC3D,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAkG,CAAA;QAC7J,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,oBAAoB,CAAY,QAAgB;;QAClE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,sCAAsC,CAAC,CAAA;QACxD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,0BAA0B,EAAE,IAAI,CAAC,CAAA;QACzD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAqC,CAAA;QACtF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,oBAAoB;;QACtC,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,sCAAsC,CAAC,CAAA;QACxD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,yBAAyB,EAAE,IAAI,CAAC,CAAA;QACxD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAmE,CAAA;QACxG,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,oBAAoB,CAAY,OAAe;;QACjE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,sCAAsC,CAAC,CAAA;QACxD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,2BAA2B,OAAO,EAAE,EAAE,IAAI,CAAC,CAAA;QACnE,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAkG,CAAA;QACvI,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,gBAAgB,CAAY,QAAgB,EAAE,QAAgB;;QAChF,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,kCAAkC,CAAC,CAAA;QACpD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,qBAAqB,EAAE,IAAI,CAAC,CAAA;QACpD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAkG,CAAA;QAC7J,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,iBAAiB;AACjB,SAAsB,uBAAuB,CAAY,QAAgB;;QACrE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,yCAAyC,CAAC,CAAA;QAC3D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,6BAA6B,EAAE,IAAI,CAAC,CAAA;QAC5D,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAqC,CAAA;QACtF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,yBAAyB,CAAY,QAAgB,EAAE,QAAgB;;QACzF,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,2CAA2C,CAAC,CAAA;QAC7D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,+BAA+B,EAAE,IAAI,CAAC,CAAA;QAC9D,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAkG,CAAA;QAC7J,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,uBAAuB;AACvB,SAAsB,2BAA2B,CAAY,QAAgB,EAAE,gBAAwB;;QACnG,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,6CAA6C,CAAC,CAAA;QAC/D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,iCAAiC,EAAE,IAAI,CAAC,CAAA;QAChE,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,gBAAgB,EAAE,CAAC,CAAkC,CAAA;QACrG,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,4BAA4B,CAAY,QAAgB;;QAC1E,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,8CAA8C,CAAC,CAAA;QAChE,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,mCAAmC,EAAE,IAAI,CAAC,CAAA;QAClE,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAqC,CAAA;QACtF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,6BAA6B;AAC7B,SAAsB,eAAe;;QACjC,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,iCAAiC,CAAC,CAAA;QACnD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,SAAS,EAAE,IAAI,CAAC,CAAA;QACxC,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAoC,CAAA;QACzE,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,qBAAqB,CAAY,SAAyB;;QAC5E,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,uCAAuC,CAAC,CAAA;QACzD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,gBAAgB,EAAE,IAAI,CAAC,CAAA;QAC/C,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,SAAS,CAAC,CAAkC,CAAA;QAChF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,0BAA0B,CAAY,OAAe;;QACvE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,4CAA4C,CAAC,CAAA;QAC9D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,uCAAuC,OAAO,EAAE,EAAE,IAAI,CAAC,CAAA;QAC/E,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAyC,CAAA;QAC9E,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,uBAAuB;AACvB,SAAsB,2BAA2B,CAAY,IAAY;;QACrE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,6CAA6C,CAAC,CAAA;QAC/D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,yCAAyC,EAAE,IAAI,CAAC,CAAA;QACxE,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,CAAC,CAAmC,CAAA;QAChF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,2BAA2B,CAAY,UAAkB;;QAC3E,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,6CAA6C,CAAC,CAAA;QAC/D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,2CAA2C,UAAU,EAAE,EAAE,IAAI,CAAC,CAAA;QACtF,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAA;QAExB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAmC,CAAA;QACxE,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,yBAAyB;;QAC3C,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,2CAA2C,CAAC,CAAA;QAC7D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,uCAAuC,EAAE,IAAI,CAAC,CAAA;QACtE,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAoC,CAAA;QACzE,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,2BAA2B,CAAY,UAAkB,EAAE,IAAY;;QACzF,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,6CAA6C,CAAC,CAAA;QAC/D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,2CAA2C,UAAU,EAAE,EAAE,IAAI,CAAC,CAAA;QACtF,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;QAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,CAAC,CAAmC,CAAA;QAChF,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA"}
1
+ {"version":3,"file":"operator.js","sourceRoot":"","sources":["../../../src/api/services/operator.ts"],"names":[],"mappings":"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"}
@@ -1,38 +1,21 @@
1
- "use strict";
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.soundtrackDetails = soundtrackDetails;
13
- exports.soundtrackFile = soundtrackFile;
14
- const request_1 = require("../request");
1
+ import request from '../request';
15
2
  const servicePath = 'soundtrack';
16
- function soundtrackDetails(video_content_id) {
17
- return __awaiter(this, void 0, void 0, function* () {
18
- const This = this;
19
- This.log('info', 'Running action: soundtrackDetails');
20
- const req = new request_1.default(`soundtrack/sounds_details`, this);
21
- req.withService(servicePath);
22
- req.withMethod('get');
23
- const response = (yield req.execute({ video_content_id }));
24
- return response;
25
- });
3
+ export async function soundtrackDetails(video_content_id) {
4
+ const This = this;
5
+ This.log('info', 'Running action: soundtrackDetails');
6
+ const req = new request(`soundtrack/sounds_details`, this);
7
+ req.withService(servicePath);
8
+ req.withMethod('get');
9
+ const response = (await req.execute({ video_content_id }));
10
+ return response;
26
11
  }
27
- function soundtrackFile(soundtracks_id) {
28
- return __awaiter(this, void 0, void 0, function* () {
29
- const This = this;
30
- This.log('info', 'Running action: soundtrackFile');
31
- const req = new request_1.default(`soundtrack/tracks`, this);
32
- req.withService(servicePath);
33
- req.withMethod('get');
34
- const response = (yield req.execute({ soundtracks_id }));
35
- return response;
36
- });
12
+ export async function soundtrackFile(soundtracks_id) {
13
+ const This = this;
14
+ This.log('info', 'Running action: soundtrackFile');
15
+ const req = new request(`soundtrack/tracks`, this);
16
+ req.withService(servicePath);
17
+ req.withMethod('get');
18
+ const response = (await req.execute({ soundtracks_id }));
19
+ return response;
37
20
  }
38
21
  //# sourceMappingURL=soundtrack.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"soundtrack.js","sourceRoot":"","sources":["../../../src/api/services/soundtrack.ts"],"names":[],"mappings":";;;;;;;;;;;AAMA,8CASC;AAED,wCASC;AAzBD,wCAAgC;AAGhC,MAAM,WAAW,GAAG,YAAY,CAAA;AAEhC,SAAsB,iBAAiB,CAAY,gBAAwB;;QACvE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,mCAAmC,CAAC,CAAA;QACrD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,2BAA2B,EAAE,IAAI,CAAC,CAAA;QAC1D,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,gBAAgB,EAAE,CAAC,CAAqE,CAAA;QAC9H,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,cAAc,CAAY,cAAsB;;QAClE,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,gCAAgC,CAAC,CAAA;QAClD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAA;QAClD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC,CAAyE,CAAA;QAChI,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA"}
1
+ {"version":3,"file":"soundtrack.js","sourceRoot":"","sources":["../../../src/api/services/soundtrack.ts"],"names":[],"mappings":"AACA,OAAO,OAAO,MAAM,YAAY,CAAA;AAGhC,MAAM,WAAW,GAAG,YAAY,CAAA;AAEhC,MAAM,CAAC,KAAK,UAAU,iBAAiB,CAAY,gBAAwB;IACvE,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,mCAAmC,CAAC,CAAA;IACrD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,2BAA2B,EAAE,IAAI,CAAC,CAAA;IAC1D,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,gBAAgB,EAAE,CAAC,CAAqE,CAAA;IAC9H,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,cAAc,CAAY,cAAsB;IAClE,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,gCAAgC,CAAC,CAAA;IAClD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAA;IAClD,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,cAAc,EAAE,CAAC,CAAyE,CAAA;IAChI,OAAO,QAAQ,CAAA;AACnB,CAAC"}