sass-cms-template-common 0.0.17 → 0.0.19
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/index.d.ts +186 -27
- package/dist/index.js +2315 -2079
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +55 -0
- package/dist/server.js +2 -2
- package/dist/{services-BnR5D-30.js → services-DiR0yIFz.js} +82 -35
- package/dist/services-DiR0yIFz.js.map +1 -0
- package/package.json +1 -1
- package/dist/services-BnR5D-30.js.map +0 -1
package/dist/server.d.ts
CHANGED
|
@@ -2006,10 +2006,34 @@ export declare interface DashboardNotificationsResponse extends CmsResponse {
|
|
|
2006
2006
|
newsTask?: DashboardNewsTask[];
|
|
2007
2007
|
/** Actividades vencidas o por vencer. */
|
|
2008
2008
|
expireTask?: DashboardExpireTask[];
|
|
2009
|
+
/** Avisos de desasignación de tarea de planning (`person_remove`). */
|
|
2010
|
+
unassignTask?: DashboardUnassignTask[];
|
|
2009
2011
|
/** Oportunidades editoriales copilot (hasta 3, por `score` desc). NAA-4645. */
|
|
2010
2012
|
copilot?: DashboardCopilotOpportunity[];
|
|
2011
2013
|
}
|
|
2012
2014
|
|
|
2015
|
+
/**
|
|
2016
|
+
* Aviso de desasignación de tarea de planning presente en POST
|
|
2017
|
+
* /dashboard/notification (array `unassignTask`, mismos campos que `newsTask`).
|
|
2018
|
+
* El back lo despacha solo cuando corresponde (cambio de responsable). El autor
|
|
2019
|
+
* de la desasignación es OPCIONAL: puede venir como `userName` o `userCreation`,
|
|
2020
|
+
* con `userLogin` entre paréntesis. Si no llega ninguno, se usa el texto genérico.
|
|
2021
|
+
*/
|
|
2022
|
+
export declare interface DashboardUnassignTask {
|
|
2023
|
+
id?: string;
|
|
2024
|
+
/** Título de la tarea de la que se desasignó al usuario. */
|
|
2025
|
+
title?: string;
|
|
2026
|
+
/** Autor de la desasignación (nombre). Opcional. */
|
|
2027
|
+
userName?: string;
|
|
2028
|
+
userCreation?: string;
|
|
2029
|
+
/** Login del autor (se muestra entre paréntesis). Opcional. */
|
|
2030
|
+
userLogin?: string;
|
|
2031
|
+
/** Timestamp del aviso (epoch ms o `{ time }`). */
|
|
2032
|
+
timeStamp?: unknown;
|
|
2033
|
+
isRead?: boolean;
|
|
2034
|
+
[key: string]: unknown;
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2013
2037
|
/** Evento de encoder de video presente en POST /dashboard/notification. */
|
|
2014
2038
|
export declare interface DashboardVideoNotification {
|
|
2015
2039
|
actionId?: number;
|
|
@@ -2160,6 +2184,25 @@ export declare function findPublicationBySlug(sites: SiteSection[], slug: string
|
|
|
2160
2184
|
|
|
2161
2185
|
export declare function findPublicationLabel(sites: SiteSection[], publicationId: string): string;
|
|
2162
2186
|
|
|
2187
|
+
/**
|
|
2188
|
+
* Formatea un instante como tiempo transcurrido hasta "ahora": "hace 18 minutos",
|
|
2189
|
+
* "hace 3 días", "hace 3 meses". Elige sola la unidad más significativa y se
|
|
2190
|
+
* traduce al idioma del `localeTag` vía `Intl.RelativeTimeFormat` (no requiere
|
|
2191
|
+
* claves i18n propias).
|
|
2192
|
+
*
|
|
2193
|
+
* La cuenta es una resta de instantes UTC, así que NO depende del GMT del sitio
|
|
2194
|
+
* ni de la zona del navegador (a diferencia de `formatSiteDateTime`).
|
|
2195
|
+
*
|
|
2196
|
+
* @param epochMs Instante en milisegundos (UTC).
|
|
2197
|
+
* @param localeTag Tag BCP 47 (p. ej. `"es-AR"`); usar `getIntlLocaleTag(locale)`.
|
|
2198
|
+
* @param options `nowMs` (referencia de "ahora", por defecto `Date.now()`) y
|
|
2199
|
+
* `style` (por defecto `"long"`).
|
|
2200
|
+
*/
|
|
2201
|
+
export declare function formatRelativeTime(epochMs: number, localeTag: string, options?: {
|
|
2202
|
+
nowMs?: number;
|
|
2203
|
+
style?: RelativeTimeStyle;
|
|
2204
|
+
}): string;
|
|
2205
|
+
|
|
2163
2206
|
/**
|
|
2164
2207
|
* Formatea un instante (epoch ms) en la zona horaria del sitio, de forma
|
|
2165
2208
|
* estable entre navegadores.
|
|
@@ -2658,6 +2701,15 @@ export declare type NavLinkItem = {
|
|
|
2658
2701
|
accent?: 'ai';
|
|
2659
2702
|
/** Si el href apunta al admin legacy (JSP/Angular), se prefija con `legacyBaseUrl`. */
|
|
2660
2703
|
legacy?: boolean;
|
|
2704
|
+
/**
|
|
2705
|
+
* Si el href es una página del admin viejo JSP (OpenCMS). Estos NO se abren
|
|
2706
|
+
* como enlace directo: requieren el form POST autenticado
|
|
2707
|
+
* (`submitLegacyAdminPage`) al endpoint `adminBack/login` del CMS
|
|
2708
|
+
* (`cmsBaseUrl`, p. ej. `https://dev.cms-medios.com`), igual que el
|
|
2709
|
+
* `openExternalPage()` de cmsmedios. Abre en pestaña nueva. Tiene prioridad
|
|
2710
|
+
* sobre `legacy` (que apunta al Angular master).
|
|
2711
|
+
*/
|
|
2712
|
+
jsp?: boolean;
|
|
2661
2713
|
/**
|
|
2662
2714
|
* Si la ruta del Angular master exige el id de publicación al final
|
|
2663
2715
|
* (p. ej. `/admin/tags/:idPub`, `/admin/planning/:idPub`), se le agrega
|
|
@@ -4257,6 +4309,9 @@ export declare interface RecipesPublishCheckResponse extends CmsResponse {
|
|
|
4257
4309
|
[key: string]: unknown;
|
|
4258
4310
|
}
|
|
4259
4311
|
|
|
4312
|
+
/** Estilo del texto relativo (`Intl.RelativeTimeFormat`). */
|
|
4313
|
+
export declare type RelativeTimeStyle = 'long' | 'short' | 'narrow';
|
|
4314
|
+
|
|
4260
4315
|
/** Devuelve la severidad de toast para un código de error (`warning`/`error`). */
|
|
4261
4316
|
export declare function resolveErrorSeverity(errorCode: string | number | Array<string | number> | null | undefined): CmsErrorSeverity;
|
|
4262
4317
|
|
package/dist/server.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as e, A as t, B as n, C as r, D as i, E as a, F as o,
|
|
2
|
-
export { i as CmsAudiosServices, t as CmsAuthLoginServices, o as CmsAuthServices, a as CmsCategoriesServices, v as CmsCkeditorServices, r as CmsCommentsServices,
|
|
1
|
+
import { $ as e, A as t, B as n, C as r, D as i, E as a, F as o, H as s, I as c, J as l, L as u, M as d, N as f, O as p, P as m, Q as h, R as g, S as _, T as v, V as y, X as b, Y as x, Z as S, _ as C, a as w, at as T, b as E, c as D, ct as O, d as k, dt as A, et as j, f as M, g as N, h as P, i as F, it as I, j as L, k as R, l as z, lt as B, m as V, n as H, nt as U, o as W, ot as G, p as K, q, r as J, rt as Y, s as X, st as Z, t as Q, tt as $, u as ee, ut as te, v as ne, w as re, x as ie, y as ae, z as oe } from "./services-DiR0yIFz.js";
|
|
2
|
+
export { i as CmsAudiosServices, t as CmsAuthLoginServices, o as CmsAuthServices, a as CmsCategoriesServices, v as CmsCkeditorServices, r as CmsCommentsServices, Q as CmsCommonServices, _ as CmsContributionsServices, re as CmsCopilotServices, m as CmsDashboardServices, ae as CmsEventsServices, ne as CmsFileExplorerServices, C as CmsGeneralServices, N as CmsImagesServices, P as CmsNewsServices, V as CmsNotificationServices, K as CmsPeopleServices, M as CmsPlanningServices, k as CmsPollsServices, p as CmsPreviewServices, E as CmsProductivityPlanServices, f as CmsProfileServices, d as CmsPublicationsServices, ee as CmsRecipesServices, ie as CmsSectionsServices, L as CmsSitesServices, H as CmsTagsServices, J as CmsTranscribeServices, F as CmsTriviasServices, R as CmsUploadServices, z as CmsUsersServices, w as CmsVideosServices, W as CmsVodsServices, X as CmsWorkpaperServices, D as CmsZonesServices, $ as NETWORK_ERROR_CODES, U as classifyNetworkError, e as cmsNetworkBridge, A as commonErrorsEn, te as commonErrorsEs, B as commonErrorsPt, c as filterModulesByPermissions, q as findPublicationBySlug, l as findPublicationLabel, g as formatRelativeTime, oe as formatSiteDateTime, x as getAllPublications, G as getCommonError, b as getDefaultPublicationSlug, Y as getNetworkErrorCodeFromResult, n as getSiteNow, u as hasModulePermission, I as isNetworkErrorCode, T as isRetryableNetworkCode, Z as normalizeErrorCode, y as parseGmtOffsetMinutes, S as parsePublicationSlug, O as resolveErrorSeverity, j as resumeAxiosOnNetworkError, s as toSiteWallClock, h as toTestId };
|
|
@@ -214,6 +214,7 @@ var r = t("", {
|
|
|
214
214
|
}, a = {
|
|
215
215
|
sm: "8px",
|
|
216
216
|
md: "10px",
|
|
217
|
+
flyout: "12px",
|
|
217
218
|
lg: "14px",
|
|
218
219
|
accountMenu: "16px",
|
|
219
220
|
xl: "28px",
|
|
@@ -225,7 +226,7 @@ var r = t("", {
|
|
|
225
226
|
menuSoft: "0 10px 30px rgba(0, 0, 0, 0.18)",
|
|
226
227
|
accountMenu: "0 10px 30px rgba(25, 28, 32, 0.18)",
|
|
227
228
|
menuDropdown: "0px 4px 4px 0px rgba(0, 0, 0, 0.30), 0px 8px 12px 6px rgba(0, 0, 0, 0.15)",
|
|
228
|
-
flyout: "
|
|
229
|
+
flyout: "0 6px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.10)"
|
|
229
230
|
}, s = {
|
|
230
231
|
buttonHeight: 40,
|
|
231
232
|
buttonHeightSm: 34,
|
|
@@ -358,6 +359,10 @@ var r = t("", {
|
|
|
358
359
|
bg: i.secondary,
|
|
359
360
|
on: i.onSecondaryContainer
|
|
360
361
|
},
|
|
362
|
+
unassigned: {
|
|
363
|
+
bg: i.secondary,
|
|
364
|
+
on: i.onSecondaryContainer
|
|
365
|
+
},
|
|
361
366
|
...m.values
|
|
362
367
|
}, h = t("editorial-opportunity", {
|
|
363
368
|
accent: {
|
|
@@ -903,9 +908,51 @@ function K(e, t, n, r = G) {
|
|
|
903
908
|
function fe(e, t, n = G) {
|
|
904
909
|
return K(Date.now(), e, t, n);
|
|
905
910
|
}
|
|
911
|
+
var pe = [
|
|
912
|
+
{
|
|
913
|
+
amount: 60,
|
|
914
|
+
unit: "second"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
amount: 60,
|
|
918
|
+
unit: "minute"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
amount: 24,
|
|
922
|
+
unit: "hour"
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
amount: 7,
|
|
926
|
+
unit: "day"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
amount: 4.34524,
|
|
930
|
+
unit: "week"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
amount: 12,
|
|
934
|
+
unit: "month"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
amount: Infinity,
|
|
938
|
+
unit: "year"
|
|
939
|
+
}
|
|
940
|
+
];
|
|
941
|
+
function me(e, t, n = {}) {
|
|
942
|
+
let { nowMs: r = Date.now(), style: i = "long" } = n, a = new Intl.RelativeTimeFormat(t, {
|
|
943
|
+
numeric: "always",
|
|
944
|
+
style: i
|
|
945
|
+
}), o = (e - r) / 1e3;
|
|
946
|
+
o > -1 && (o = -1);
|
|
947
|
+
for (let e of pe) {
|
|
948
|
+
if (Math.abs(o) < e.amount) return a.format(Math.round(o), e.unit);
|
|
949
|
+
o /= e.amount;
|
|
950
|
+
}
|
|
951
|
+
return a.format(Math.round(o), "year");
|
|
952
|
+
}
|
|
906
953
|
//#endregion
|
|
907
954
|
//#region src/lib/utils/permissions.ts
|
|
908
|
-
function
|
|
955
|
+
function he(e, t) {
|
|
909
956
|
if (!e) return !1;
|
|
910
957
|
if (e.isAdmin) return !0;
|
|
911
958
|
let n = t.toUpperCase();
|
|
@@ -1160,7 +1207,7 @@ var J = class {
|
|
|
1160
1207
|
return console.error("[/sites/get]", e), Promise.reject(e);
|
|
1161
1208
|
}
|
|
1162
1209
|
};
|
|
1163
|
-
},
|
|
1210
|
+
}, ge = class {
|
|
1164
1211
|
props;
|
|
1165
1212
|
constructor(e) {
|
|
1166
1213
|
this.props = e;
|
|
@@ -1262,7 +1309,7 @@ var J = class {
|
|
|
1262
1309
|
}
|
|
1263
1310
|
}
|
|
1264
1311
|
};
|
|
1265
|
-
},
|
|
1312
|
+
}, _e = (e) => btoa(e), ve = class {
|
|
1266
1313
|
props;
|
|
1267
1314
|
authentication;
|
|
1268
1315
|
constructor(e) {
|
|
@@ -1271,7 +1318,7 @@ var J = class {
|
|
|
1271
1318
|
authParams = () => {
|
|
1272
1319
|
let { token: e, browserId: t, publication: n, siteName: r, project: i } = this.authentication;
|
|
1273
1320
|
return {
|
|
1274
|
-
token:
|
|
1321
|
+
token: _e(e),
|
|
1275
1322
|
browserId: t,
|
|
1276
1323
|
publication: n,
|
|
1277
1324
|
siteName: r,
|
|
@@ -1300,7 +1347,7 @@ var J = class {
|
|
|
1300
1347
|
...n ?? {}
|
|
1301
1348
|
}
|
|
1302
1349
|
});
|
|
1303
|
-
},
|
|
1350
|
+
}, ye = class {
|
|
1304
1351
|
props;
|
|
1305
1352
|
authentication;
|
|
1306
1353
|
constructor(e) {
|
|
@@ -1330,7 +1377,7 @@ var J = class {
|
|
|
1330
1377
|
...t
|
|
1331
1378
|
});
|
|
1332
1379
|
};
|
|
1333
|
-
},
|
|
1380
|
+
}, be = class {
|
|
1334
1381
|
props;
|
|
1335
1382
|
authentication;
|
|
1336
1383
|
constructor(e) {
|
|
@@ -1353,7 +1400,7 @@ var J = class {
|
|
|
1353
1400
|
return console.error("[/audios/adminConfiguration]", e), Promise.reject(e);
|
|
1354
1401
|
}
|
|
1355
1402
|
};
|
|
1356
|
-
},
|
|
1403
|
+
}, xe = class {
|
|
1357
1404
|
props;
|
|
1358
1405
|
authentication;
|
|
1359
1406
|
constructor(e) {
|
|
@@ -1389,7 +1436,7 @@ var J = class {
|
|
|
1389
1436
|
return console.error("[/categories/test]", e), Promise.reject(e);
|
|
1390
1437
|
}
|
|
1391
1438
|
};
|
|
1392
|
-
},
|
|
1439
|
+
}, Se = class {
|
|
1393
1440
|
props;
|
|
1394
1441
|
authentication;
|
|
1395
1442
|
constructor(e) {
|
|
@@ -1432,7 +1479,7 @@ var J = class {
|
|
|
1432
1479
|
return console.error("[/ckeditor/audioCode]", e), Promise.reject(e);
|
|
1433
1480
|
}
|
|
1434
1481
|
};
|
|
1435
|
-
},
|
|
1482
|
+
}, Ce = class {
|
|
1436
1483
|
props;
|
|
1437
1484
|
authentication;
|
|
1438
1485
|
constructor(e) {
|
|
@@ -1470,7 +1517,7 @@ var J = class {
|
|
|
1470
1517
|
return console.error("[/copilot/snooze]", e), Promise.reject(e);
|
|
1471
1518
|
}
|
|
1472
1519
|
};
|
|
1473
|
-
},
|
|
1520
|
+
}, we = class {
|
|
1474
1521
|
props;
|
|
1475
1522
|
authentication;
|
|
1476
1523
|
constructor(e) {
|
|
@@ -1636,7 +1683,7 @@ var J = class {
|
|
|
1636
1683
|
return console.error("[/comments/user/get]", e), Promise.reject(e);
|
|
1637
1684
|
}
|
|
1638
1685
|
};
|
|
1639
|
-
},
|
|
1686
|
+
}, Te = class {
|
|
1640
1687
|
props;
|
|
1641
1688
|
authentication;
|
|
1642
1689
|
constructor(e) {
|
|
@@ -1712,7 +1759,7 @@ var J = class {
|
|
|
1712
1759
|
return console.error("[/contributions/paymentGateways/get]", e), Promise.reject(e);
|
|
1713
1760
|
}
|
|
1714
1761
|
};
|
|
1715
|
-
},
|
|
1762
|
+
}, Ee = class {
|
|
1716
1763
|
props;
|
|
1717
1764
|
authentication;
|
|
1718
1765
|
constructor(e) {
|
|
@@ -1768,7 +1815,7 @@ var J = class {
|
|
|
1768
1815
|
return console.error("[/sections/update]", e), Promise.reject(e);
|
|
1769
1816
|
}
|
|
1770
1817
|
};
|
|
1771
|
-
},
|
|
1818
|
+
}, De = class {
|
|
1772
1819
|
props;
|
|
1773
1820
|
authentication;
|
|
1774
1821
|
constructor(e) {
|
|
@@ -2054,7 +2101,7 @@ var J = class {
|
|
|
2054
2101
|
return console.error("[/productivityPlan/reviewr/detail]", e), Promise.reject(e);
|
|
2055
2102
|
}
|
|
2056
2103
|
};
|
|
2057
|
-
},
|
|
2104
|
+
}, Oe = class {
|
|
2058
2105
|
props;
|
|
2059
2106
|
authentication;
|
|
2060
2107
|
constructor(e) {
|
|
@@ -2077,7 +2124,7 @@ var J = class {
|
|
|
2077
2124
|
return console.error("[/events/get]", e), Promise.reject(e);
|
|
2078
2125
|
}
|
|
2079
2126
|
};
|
|
2080
|
-
},
|
|
2127
|
+
}, ke = class {
|
|
2081
2128
|
props;
|
|
2082
2129
|
authentication;
|
|
2083
2130
|
constructor(e) {
|
|
@@ -2103,7 +2150,7 @@ var J = class {
|
|
|
2103
2150
|
return console.error("[/fileExplorer/getFolders]", e), Promise.reject(e);
|
|
2104
2151
|
}
|
|
2105
2152
|
};
|
|
2106
|
-
},
|
|
2153
|
+
}, Ae = class {
|
|
2107
2154
|
props;
|
|
2108
2155
|
authentication;
|
|
2109
2156
|
constructor(e) {
|
|
@@ -2119,7 +2166,7 @@ var J = class {
|
|
|
2119
2166
|
return console.error("[/updateCDN]", e), Promise.reject(e);
|
|
2120
2167
|
}
|
|
2121
2168
|
};
|
|
2122
|
-
},
|
|
2169
|
+
}, je = class {
|
|
2123
2170
|
props;
|
|
2124
2171
|
authentication;
|
|
2125
2172
|
constructor(e) {
|
|
@@ -2315,7 +2362,7 @@ var J = class {
|
|
|
2315
2362
|
return console.error("[/images/ckeditor/getImageComparation]", e), Promise.reject(e);
|
|
2316
2363
|
}
|
|
2317
2364
|
};
|
|
2318
|
-
},
|
|
2365
|
+
}, Me = class {
|
|
2319
2366
|
props;
|
|
2320
2367
|
authentication;
|
|
2321
2368
|
constructor(e) {
|
|
@@ -2888,7 +2935,7 @@ var J = class {
|
|
|
2888
2935
|
return console.error("[/news/searchConsole/inspection]", e), Promise.reject(e);
|
|
2889
2936
|
}
|
|
2890
2937
|
};
|
|
2891
|
-
},
|
|
2938
|
+
}, Ne = class {
|
|
2892
2939
|
props;
|
|
2893
2940
|
authentication;
|
|
2894
2941
|
constructor(e) {
|
|
@@ -2918,7 +2965,7 @@ var J = class {
|
|
|
2918
2965
|
return console.error("[/notification/topics]", e), Promise.reject(e);
|
|
2919
2966
|
}
|
|
2920
2967
|
};
|
|
2921
|
-
},
|
|
2968
|
+
}, Pe = class {
|
|
2922
2969
|
props;
|
|
2923
2970
|
authentication;
|
|
2924
2971
|
constructor(e) {
|
|
@@ -2994,7 +3041,7 @@ var J = class {
|
|
|
2994
3041
|
return console.error("[/people/adminConfiguration]", e), Promise.reject(e);
|
|
2995
3042
|
}
|
|
2996
3043
|
};
|
|
2997
|
-
},
|
|
3044
|
+
}, $ = class {
|
|
2998
3045
|
props;
|
|
2999
3046
|
authentication;
|
|
3000
3047
|
constructor(e) {
|
|
@@ -3050,7 +3097,7 @@ var J = class {
|
|
|
3050
3097
|
return console.error("[/planning/activity/copy]", e), Promise.reject(e);
|
|
3051
3098
|
}
|
|
3052
3099
|
};
|
|
3053
|
-
},
|
|
3100
|
+
}, Fe = class {
|
|
3054
3101
|
props;
|
|
3055
3102
|
authentication;
|
|
3056
3103
|
constructor(e) {
|
|
@@ -3208,7 +3255,7 @@ var J = class {
|
|
|
3208
3255
|
return console.error("[/polls/publish/now]", e), Promise.reject(e);
|
|
3209
3256
|
}
|
|
3210
3257
|
};
|
|
3211
|
-
},
|
|
3258
|
+
}, Ie = class {
|
|
3212
3259
|
props;
|
|
3213
3260
|
authentication;
|
|
3214
3261
|
constructor(e) {
|
|
@@ -3376,7 +3423,7 @@ var J = class {
|
|
|
3376
3423
|
return console.error("[/recipes/publish/schedule]", e), Promise.reject(e);
|
|
3377
3424
|
}
|
|
3378
3425
|
};
|
|
3379
|
-
},
|
|
3426
|
+
}, Le = class {
|
|
3380
3427
|
props;
|
|
3381
3428
|
authentication;
|
|
3382
3429
|
constructor(e) {
|
|
@@ -3472,7 +3519,7 @@ var J = class {
|
|
|
3472
3519
|
return console.error("[/users/actions/resetMfa]", e), Promise.reject(e);
|
|
3473
3520
|
}
|
|
3474
3521
|
};
|
|
3475
|
-
},
|
|
3522
|
+
}, Re = class {
|
|
3476
3523
|
props;
|
|
3477
3524
|
authentication;
|
|
3478
3525
|
constructor(e) {
|
|
@@ -3529,7 +3576,7 @@ var J = class {
|
|
|
3529
3576
|
return console.error("[/zones/order]", e), Promise.reject(e);
|
|
3530
3577
|
}
|
|
3531
3578
|
};
|
|
3532
|
-
},
|
|
3579
|
+
}, ze = class {
|
|
3533
3580
|
props;
|
|
3534
3581
|
authentication;
|
|
3535
3582
|
constructor(e) {
|
|
@@ -3562,7 +3609,7 @@ var J = class {
|
|
|
3562
3609
|
return console.error("[/workpaper/status]", e), Promise.reject(e);
|
|
3563
3610
|
}
|
|
3564
3611
|
};
|
|
3565
|
-
},
|
|
3612
|
+
}, Be = class {
|
|
3566
3613
|
props;
|
|
3567
3614
|
authentication;
|
|
3568
3615
|
constructor(e) {
|
|
@@ -3606,7 +3653,7 @@ var J = class {
|
|
|
3606
3653
|
return console.error("[/vods/playlist/create]", e), Promise.reject(e);
|
|
3607
3654
|
}
|
|
3608
3655
|
};
|
|
3609
|
-
},
|
|
3656
|
+
}, Ve = class {
|
|
3610
3657
|
props;
|
|
3611
3658
|
authentication;
|
|
3612
3659
|
constructor(e) {
|
|
@@ -3968,7 +4015,7 @@ var J = class {
|
|
|
3968
4015
|
return console.error("[/videos/nativos/download]", e), Promise.reject(e);
|
|
3969
4016
|
}
|
|
3970
4017
|
};
|
|
3971
|
-
},
|
|
4018
|
+
}, He = class {
|
|
3972
4019
|
props;
|
|
3973
4020
|
authentication;
|
|
3974
4021
|
constructor(e) {
|
|
@@ -4085,7 +4132,7 @@ var J = class {
|
|
|
4085
4132
|
return console.error("[/trivias/edit/inline]", e), Promise.reject(e);
|
|
4086
4133
|
}
|
|
4087
4134
|
};
|
|
4088
|
-
},
|
|
4135
|
+
}, Ue = class {
|
|
4089
4136
|
props;
|
|
4090
4137
|
authentication;
|
|
4091
4138
|
constructor(e) {
|
|
@@ -4101,7 +4148,7 @@ var J = class {
|
|
|
4101
4148
|
return console.error("[/transcribe/get]", e), Promise.reject(e);
|
|
4102
4149
|
}
|
|
4103
4150
|
};
|
|
4104
|
-
},
|
|
4151
|
+
}, We = class {
|
|
4105
4152
|
props;
|
|
4106
4153
|
authentication;
|
|
4107
4154
|
constructor(e) {
|
|
@@ -4207,7 +4254,7 @@ var J = class {
|
|
|
4207
4254
|
return console.error("[/tags/changeStatus]", e), Promise.reject(e);
|
|
4208
4255
|
}
|
|
4209
4256
|
};
|
|
4210
|
-
},
|
|
4257
|
+
}, Ge = class {
|
|
4211
4258
|
props;
|
|
4212
4259
|
authentication;
|
|
4213
4260
|
publications;
|
|
@@ -4239,6 +4286,6 @@ var J = class {
|
|
|
4239
4286
|
};
|
|
4240
4287
|
};
|
|
4241
4288
|
//#endregion
|
|
4242
|
-
export {
|
|
4289
|
+
export { j as $, ge as A, fe as B, we as C, s as Ct, be as D, xe as E, p as Et, J as F, F as G, W as H, q as I, B as J, P as K, he as L, Z as M, X as N, ye as O, Y as P, N as Q, me as R, Te as S, o as St, Se as T, d as Tt, L as U, U as V, I as W, V as X, R as Y, H as Z, Ae as _, c as _t, Ve as a, ue as at, De as b, ee as bt, Re as c, se as ct, Fe as d, x as dt, M as et, $ as f, y as ft, je as g, l as gt, Me as h, g as ht, He as i, le as it, Q as j, ve as k, Le as l, C as lt, Ne as m, te as mt, We as n, D as nt, Be as o, oe as ot, Pe as p, i as pt, z as q, Ue as r, de as rt, ze as s, w as st, Ge as t, T as tt, Ie as u, S as ut, ke as v, b as vt, Ce as w, re as wt, Ee as x, a as xt, Oe as y, ne as yt, K as z };
|
|
4243
4290
|
|
|
4244
|
-
//# sourceMappingURL=services-
|
|
4291
|
+
//# sourceMappingURL=services-DiR0yIFz.js.map
|