sass-cms-template-common 0.0.11 → 0.0.13
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 +111 -55
- package/dist/index.js +1448 -1418
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +82 -1
- package/dist/server.js +2 -2
- package/dist/{services-BLy9bEvH.js → services-DS4p6Tpl.js} +74 -59
- package/dist/services-DS4p6Tpl.js.map +1 -0
- package/package.json +1 -1
- package/dist/services-BLy9bEvH.js.map +0 -1
package/dist/server.d.ts
CHANGED
|
@@ -583,6 +583,13 @@ export declare class CmsCopilotServices {
|
|
|
583
583
|
* oportunidad: `save` | `like` | `dislike` | `assign` (permiso COPILOT_ACTION).
|
|
584
584
|
*/
|
|
585
585
|
executeAction: (input: CopilotActionInput) => Promise<CopilotActionResponse>;
|
|
586
|
+
/**
|
|
587
|
+
* POST /copilot/snooze — "recordar luego" de una oportunidad de la campanita
|
|
588
|
+
* (permiso COPILOT_VIEW). La oportunidad desaparece de la campanita para el
|
|
589
|
+
* usuario y reaparece sola al vencer el plazo configurado.
|
|
590
|
+
* @param opportunityId - Id de la oportunidad a posponer.
|
|
591
|
+
*/
|
|
592
|
+
snooze: (opportunityId: string) => Promise<CopilotSnoozeResponse>;
|
|
586
593
|
}
|
|
587
594
|
|
|
588
595
|
/**
|
|
@@ -1819,7 +1826,8 @@ export declare interface CopilotOpportunitiesResponse extends CmsResponse {
|
|
|
1819
1826
|
*
|
|
1820
1827
|
* La doc del gateway lista `id`, `topic` y `created_at`, pero el microservicio
|
|
1821
1828
|
* (observado en dev) puede omitirlos: solo `title`, `status` y `score` están
|
|
1822
|
-
* garantizados. El consumidor debe tolerar los faltantes.
|
|
1829
|
+
* garantizados. El consumidor debe tolerar los faltantes. En dev (2026-07-06) el
|
|
1830
|
+
* micro también entrega `source`, `type`, `reasons` e `is_followed`.
|
|
1823
1831
|
*/
|
|
1824
1832
|
export declare interface CopilotOpportunity {
|
|
1825
1833
|
id?: string;
|
|
@@ -1831,8 +1839,23 @@ export declare interface CopilotOpportunity {
|
|
|
1831
1839
|
score?: number;
|
|
1832
1840
|
/** Fecha de creación (ISO 8601, p. ej. "2026-06-26T10:15:00Z"). */
|
|
1833
1841
|
created_at?: string;
|
|
1842
|
+
/** Fuente detectada (p. ej. "rss"). Verificado en dev 2026-07-06. */
|
|
1843
|
+
source?: CopilotOpportunitySource;
|
|
1844
|
+
/** Subtipo de match del micro (p. ej. "rss_match"). */
|
|
1845
|
+
type?: string;
|
|
1846
|
+
/** Motivos por los que el micro la propuso (para tooltip/detalle). */
|
|
1847
|
+
reasons?: string[];
|
|
1848
|
+
/** Si el editor ya la siguió/guardó (acción "save" de `copilot/actions`). */
|
|
1849
|
+
is_followed?: boolean;
|
|
1834
1850
|
}
|
|
1835
1851
|
|
|
1852
|
+
/**
|
|
1853
|
+
* Fuente de la que el microservicio detectó la oportunidad. Valor observado en
|
|
1854
|
+
* dev hoy: `"rss"`. Se deja abierto (passthrough) para no romper cuando el micro
|
|
1855
|
+
* agregue fuentes nuevas.
|
|
1856
|
+
*/
|
|
1857
|
+
declare type CopilotOpportunitySource = 'rss' | 'gtrends' | 'sconsole' | 'x' | (string & {});
|
|
1858
|
+
|
|
1836
1859
|
/**
|
|
1837
1860
|
* Estado de una oportunidad tal como lo entrega el microservicio (passthrough).
|
|
1838
1861
|
* El único valor documentado hoy es `"open"`; se deja abierto para no romper
|
|
@@ -1840,6 +1863,18 @@ export declare interface CopilotOpportunity {
|
|
|
1840
1863
|
*/
|
|
1841
1864
|
export declare type CopilotOpportunityStatus = 'open' | (string & {});
|
|
1842
1865
|
|
|
1866
|
+
/**
|
|
1867
|
+
* Cuerpo de la respuesta de POST /copilot/snooze (NAA-4645). El "recordar luego"
|
|
1868
|
+
* de la campanita: la oportunidad se oculta para ese usuario y reaparece sola al
|
|
1869
|
+
* vencer el plazo configurado.
|
|
1870
|
+
*/
|
|
1871
|
+
export declare interface CopilotSnoozeResponse extends CmsResponse {
|
|
1872
|
+
copilotEnabled?: boolean;
|
|
1873
|
+
opportunity_id?: string;
|
|
1874
|
+
/** Momento hasta el cual la oportunidad queda oculta (ISO 8601 o epoch). */
|
|
1875
|
+
snoozed_until?: string | number;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1843
1878
|
/** POST /dashboard/countNotificatio */
|
|
1844
1879
|
export declare interface CountNotificationsResponse {
|
|
1845
1880
|
status: string;
|
|
@@ -1847,10 +1882,32 @@ export declare interface CountNotificationsResponse {
|
|
|
1847
1882
|
unreadNotifications?: number;
|
|
1848
1883
|
}
|
|
1849
1884
|
|
|
1885
|
+
/**
|
|
1886
|
+
* Oportunidad editorial copilot presente en POST /dashboard/notification
|
|
1887
|
+
* (NAA-4645). El back manda hasta 3, ordenadas por `score` desc, y solo si hay.
|
|
1888
|
+
*/
|
|
1889
|
+
export declare interface DashboardCopilotOpportunity {
|
|
1890
|
+
/** Id de la oportunidad (opportunity_id, requerido para el snooze). */
|
|
1891
|
+
id?: string;
|
|
1892
|
+
title: string;
|
|
1893
|
+
/** Tema/categoría de la oportunidad. */
|
|
1894
|
+
topic?: string;
|
|
1895
|
+
/** Puntaje de coincidencia editorial (0-100). */
|
|
1896
|
+
score?: number;
|
|
1897
|
+
/** Fecha de creación (ISO 8601, p. ej. "2026-06-26T10:15:00Z"). */
|
|
1898
|
+
created_at?: string;
|
|
1899
|
+
isRead?: boolean;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1850
1902
|
/** Cuerpo de la respuesta de POST /dashboard/countNotifications. */
|
|
1851
1903
|
export declare interface DashboardCountNotificationsResponse extends CmsResponse {
|
|
1852
1904
|
/** Total de notificaciones no leídas del usuario autenticado. */
|
|
1853
1905
|
unreadNotifications?: number;
|
|
1906
|
+
/**
|
|
1907
|
+
* Oportunidades copilot no leídas (NAA-4645). Ya está **sumado** dentro de
|
|
1908
|
+
* `unreadNotifications`; solo aparece si copilot aplica al usuario/publicación.
|
|
1909
|
+
*/
|
|
1910
|
+
copilotOpportunities?: number;
|
|
1854
1911
|
}
|
|
1855
1912
|
|
|
1856
1913
|
/** Actividad vencida o por vencer presente en POST /dashboard/notification. */
|
|
@@ -1895,6 +1952,8 @@ export declare interface DashboardNotificationsResponse extends CmsResponse {
|
|
|
1895
1952
|
newsTask?: DashboardNewsTask[];
|
|
1896
1953
|
/** Actividades vencidas o por vencer. */
|
|
1897
1954
|
expireTask?: DashboardExpireTask[];
|
|
1955
|
+
/** Oportunidades editoriales copilot (hasta 3, por `score` desc). NAA-4645. */
|
|
1956
|
+
copilot?: DashboardCopilotOpportunity[];
|
|
1898
1957
|
}
|
|
1899
1958
|
|
|
1900
1959
|
/** Evento de encoder de video presente en POST /dashboard/notification. */
|
|
@@ -4397,6 +4456,28 @@ export declare interface TagUpdateInput {
|
|
|
4397
4456
|
*/
|
|
4398
4457
|
export declare function toSiteWallClock(epochMs: number, gmtRedaction: string | null | undefined): number;
|
|
4399
4458
|
|
|
4459
|
+
/**
|
|
4460
|
+
* Normaliza un valor a un `data-testid` estable en kebab-case ASCII.
|
|
4461
|
+
*
|
|
4462
|
+
* Equivalente React del pipe `toTestId` del CMS Angular (`cmsmedios-ux`):
|
|
4463
|
+
* pasa a minúsculas, quita tildes/acentos y convierte cualquier separador
|
|
4464
|
+
* (espacios, puntos, guiones bajos, barras) en un único guion.
|
|
4465
|
+
*
|
|
4466
|
+
* IMPORTANTE: el valor que se le pasa debe ser **independiente del idioma**
|
|
4467
|
+
* (una clave i18n, un `id`/`value`/`slug`, un código o enum interno), nunca el
|
|
4468
|
+
* texto traducido: si no, el `data-testid` cambiaría según el idioma del usuario
|
|
4469
|
+
* y las pruebas no podrían apuntarlo de forma estable.
|
|
4470
|
+
*
|
|
4471
|
+
* @param value Valor de origen (clave i18n, id, código o índice).
|
|
4472
|
+
* @returns El `data-testid` normalizado, o `''` si el valor es vacío/nulo.
|
|
4473
|
+
*
|
|
4474
|
+
* @example
|
|
4475
|
+
* toTestId('modal.deactivate.title') // 'modal-deactivate-title'
|
|
4476
|
+
* toTestId('Próximo evento') // 'proximo-evento'
|
|
4477
|
+
* toTestId(3) // '3'
|
|
4478
|
+
*/
|
|
4479
|
+
export declare function toTestId(value: string | number | null | undefined): string;
|
|
4480
|
+
|
|
4400
4481
|
/**
|
|
4401
4482
|
* Cuerpo de la respuesta de POST /transcribe/get.
|
|
4402
4483
|
*
|
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, I as s, J as c, K 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, b as T, c as E, d as D, et as O, f as k, g as A, h as j, i as M, j as N, k as P, l as F, m as I, n as L, nt as R, o as z, p as B, q as V, r as H,
|
|
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, I as s, J as c, K 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, b as T, c as E, d as D, et as O, f as k, g as A, h as j, i as M, j as N, k as P, l as F, m as I, n as L, nt as R, o as z, p as B, q as V, r as H, rt as U, s as W, t as G, tt as K, u as q, v as J, w as Y, x as X, y as Z, z as Q } from "./services-DS4p6Tpl.js";
|
|
2
|
+
export { i as CmsAudiosServices, t as CmsAuthLoginServices, o as CmsAuthServices, a as CmsCategoriesServices, v as CmsCkeditorServices, r as CmsCommentsServices, G as CmsCommonServices, _ as CmsContributionsServices, Y as CmsCopilotServices, m as CmsDashboardServices, Z as CmsEventsServices, J as CmsFileExplorerServices, C as CmsGeneralServices, A as CmsImagesServices, j as CmsNewsServices, I as CmsNotificationServices, B as CmsPeopleServices, k as CmsPlanningServices, D as CmsPollsServices, p as CmsPreviewServices, T as CmsProductivityPlanServices, f as CmsProfileServices, d as CmsPublicationsServices, q as CmsRecipesServices, X as CmsSectionsServices, N as CmsSitesServices, L as CmsTagsServices, H as CmsTranscribeServices, M as CmsTriviasServices, P as CmsUploadServices, F as CmsUsersServices, w as CmsVideosServices, z as CmsVodsServices, W as CmsWorkpaperServices, E as CmsZonesServices, U as commonErrorsEn, R as commonErrorsEs, K as commonErrorsPt, s as filterModulesByPermissions, l as findPublicationBySlug, V as findPublicationLabel, g as formatSiteDateTime, c as getAllPublications, h as getCommonError, x as getDefaultPublicationSlug, Q as getSiteNow, u as hasModulePermission, e as normalizeErrorCode, n as parseGmtOffsetMinutes, b as parsePublicationSlug, O as resolveErrorSeverity, y as toSiteWallClock, S as toTestId };
|
|
@@ -702,70 +702,75 @@ function te(e) {
|
|
|
702
702
|
return t && k.has(t) ? "warning" : "error";
|
|
703
703
|
}
|
|
704
704
|
//#endregion
|
|
705
|
+
//#region src/lib/utils/toTestId.ts
|
|
706
|
+
function j(e) {
|
|
707
|
+
return e == null || e === "" ? "" : String(e).trim().toLowerCase().normalize("NFD").replace(/[̀-ͯ]/g, "").replace(/[\s._/\\]+/g, "-").replace(/[^a-z0-9-]/g, "").replace(/-+/g, "-").replace(/^-+|-+$/g, "");
|
|
708
|
+
}
|
|
709
|
+
//#endregion
|
|
705
710
|
//#region src/lib/utils/site-selector.ts
|
|
706
|
-
var
|
|
707
|
-
function
|
|
711
|
+
var M = i.menuSurface, N = i.secondary, P = i.surface, F = "bluestack-es";
|
|
712
|
+
function I(e) {
|
|
708
713
|
return e.flatMap((e) => e.publications);
|
|
709
714
|
}
|
|
710
|
-
function I(e, t) {
|
|
711
|
-
return F(e).find((e) => String(e.id) === t);
|
|
712
|
-
}
|
|
713
715
|
function L(e, t) {
|
|
714
|
-
return
|
|
716
|
+
return I(e).find((e) => String(e.id) === t);
|
|
715
717
|
}
|
|
716
|
-
function R(e) {
|
|
717
|
-
|
|
718
|
-
return t ? String(t.id) : "1";
|
|
718
|
+
function R(e, t) {
|
|
719
|
+
return I(e).find((e) => String(e.id) === t)?.description ?? "Seleccionar publicación";
|
|
719
720
|
}
|
|
720
721
|
function z(e) {
|
|
722
|
+
let t = I(e)[0];
|
|
723
|
+
return t ? String(t.id) : "1";
|
|
724
|
+
}
|
|
725
|
+
function B(e) {
|
|
721
726
|
let t = Number(e);
|
|
722
727
|
return Number.isFinite(t) && t > 0 ? t : 1;
|
|
723
728
|
}
|
|
724
729
|
//#endregion
|
|
725
730
|
//#region src/lib/utils/site-time.ts
|
|
726
|
-
function
|
|
731
|
+
function V(e) {
|
|
727
732
|
if (!e) return 0;
|
|
728
733
|
let t = String(e).trim().replace(/^(GMT|UTC)/i, "").trim().match(/^([+-]?)(\d{1,2})(?::(\d{2}))?$/);
|
|
729
734
|
if (!t) return 0;
|
|
730
735
|
let n = t[1] === "-" ? -1 : 1, r = Number(t[2]), i = t[3] ? Number(t[3]) : 0;
|
|
731
736
|
return n * (r * 60 + i);
|
|
732
737
|
}
|
|
733
|
-
function
|
|
734
|
-
return e +
|
|
738
|
+
function H(e, t) {
|
|
739
|
+
return e + V(t) * 6e4;
|
|
735
740
|
}
|
|
736
|
-
var
|
|
741
|
+
var U = {
|
|
737
742
|
day: "2-digit",
|
|
738
743
|
month: "2-digit",
|
|
739
744
|
year: "numeric",
|
|
740
745
|
hour: "2-digit",
|
|
741
746
|
minute: "2-digit"
|
|
742
747
|
};
|
|
743
|
-
function
|
|
744
|
-
let i =
|
|
748
|
+
function W(e, t, n, r = U) {
|
|
749
|
+
let i = H(e, t);
|
|
745
750
|
return new Intl.DateTimeFormat(n, {
|
|
746
751
|
...r,
|
|
747
752
|
timeZone: "UTC"
|
|
748
753
|
}).format(i);
|
|
749
754
|
}
|
|
750
|
-
function
|
|
751
|
-
return
|
|
755
|
+
function G(e, t, n = U) {
|
|
756
|
+
return W(Date.now(), e, t, n);
|
|
752
757
|
}
|
|
753
758
|
//#endregion
|
|
754
759
|
//#region src/lib/utils/permissions.ts
|
|
755
|
-
function
|
|
760
|
+
function K(e, t) {
|
|
756
761
|
if (!e) return !1;
|
|
757
762
|
if (e.isAdmin) return !0;
|
|
758
763
|
let n = t.toUpperCase();
|
|
759
764
|
return n === "ALL_VIEWS" ? !0 : (e.operations ?? []).some((e) => typeof e?.name == "string" && e.name.toUpperCase() === n);
|
|
760
765
|
}
|
|
761
|
-
function
|
|
766
|
+
function q(e, t) {
|
|
762
767
|
if (!t || t.isAdmin) return e;
|
|
763
768
|
let n = new Set((t.operations ?? []).map((e) => typeof e?.name == "string" ? e.name.toUpperCase() : "").filter(Boolean));
|
|
764
769
|
return e.filter((e) => n.has(`${e.module.toUpperCase()}_VIEW`));
|
|
765
770
|
}
|
|
766
771
|
//#endregion
|
|
767
772
|
//#region src/lib/services/auth.ts
|
|
768
|
-
var
|
|
773
|
+
var J = class {
|
|
769
774
|
props;
|
|
770
775
|
authentication;
|
|
771
776
|
constructor(e) {
|
|
@@ -816,7 +821,7 @@ var q = class {
|
|
|
816
821
|
return console.error("[/auth/create]", e), Promise.reject(e);
|
|
817
822
|
}
|
|
818
823
|
};
|
|
819
|
-
},
|
|
824
|
+
}, Y = class {
|
|
820
825
|
props;
|
|
821
826
|
authentication;
|
|
822
827
|
constructor(e) {
|
|
@@ -836,7 +841,7 @@ var q = class {
|
|
|
836
841
|
return console.error("[/dashboard/notification]", e), Promise.reject(e);
|
|
837
842
|
}
|
|
838
843
|
};
|
|
839
|
-
},
|
|
844
|
+
}, X = class {
|
|
840
845
|
props;
|
|
841
846
|
authentication;
|
|
842
847
|
constructor(e) {
|
|
@@ -974,7 +979,7 @@ var q = class {
|
|
|
974
979
|
return console.error("[/profile/twoFactor/showOtc]", e), Promise.reject(e);
|
|
975
980
|
}
|
|
976
981
|
};
|
|
977
|
-
},
|
|
982
|
+
}, Z = class {
|
|
978
983
|
props;
|
|
979
984
|
authentication;
|
|
980
985
|
constructor(e) {
|
|
@@ -994,7 +999,7 @@ var q = class {
|
|
|
994
999
|
return console.error("[/publications/default]", e), Promise.reject(e);
|
|
995
1000
|
}
|
|
996
1001
|
};
|
|
997
|
-
},
|
|
1002
|
+
}, Q = class {
|
|
998
1003
|
props;
|
|
999
1004
|
authentication;
|
|
1000
1005
|
constructor(e) {
|
|
@@ -1007,7 +1012,7 @@ var q = class {
|
|
|
1007
1012
|
return console.error("[/sites/get]", e), Promise.reject(e);
|
|
1008
1013
|
}
|
|
1009
1014
|
};
|
|
1010
|
-
},
|
|
1015
|
+
}, ne = class {
|
|
1011
1016
|
props;
|
|
1012
1017
|
constructor(e) {
|
|
1013
1018
|
this.props = e;
|
|
@@ -1109,7 +1114,7 @@ var q = class {
|
|
|
1109
1114
|
}
|
|
1110
1115
|
}
|
|
1111
1116
|
};
|
|
1112
|
-
},
|
|
1117
|
+
}, re = (e) => btoa(e), ie = class {
|
|
1113
1118
|
props;
|
|
1114
1119
|
authentication;
|
|
1115
1120
|
constructor(e) {
|
|
@@ -1118,7 +1123,7 @@ var q = class {
|
|
|
1118
1123
|
authParams = () => {
|
|
1119
1124
|
let { token: e, browserId: t, publication: n, siteName: r, project: i } = this.authentication;
|
|
1120
1125
|
return {
|
|
1121
|
-
token:
|
|
1126
|
+
token: re(e),
|
|
1122
1127
|
browserId: t,
|
|
1123
1128
|
publication: n,
|
|
1124
1129
|
siteName: r,
|
|
@@ -1147,7 +1152,7 @@ var q = class {
|
|
|
1147
1152
|
...n ?? {}
|
|
1148
1153
|
}
|
|
1149
1154
|
});
|
|
1150
|
-
},
|
|
1155
|
+
}, ae = class {
|
|
1151
1156
|
props;
|
|
1152
1157
|
authentication;
|
|
1153
1158
|
constructor(e) {
|
|
@@ -1177,7 +1182,7 @@ var q = class {
|
|
|
1177
1182
|
...t
|
|
1178
1183
|
});
|
|
1179
1184
|
};
|
|
1180
|
-
},
|
|
1185
|
+
}, oe = class {
|
|
1181
1186
|
props;
|
|
1182
1187
|
authentication;
|
|
1183
1188
|
constructor(e) {
|
|
@@ -1200,7 +1205,7 @@ var q = class {
|
|
|
1200
1205
|
return console.error("[/audios/adminConfiguration]", e), Promise.reject(e);
|
|
1201
1206
|
}
|
|
1202
1207
|
};
|
|
1203
|
-
},
|
|
1208
|
+
}, se = class {
|
|
1204
1209
|
props;
|
|
1205
1210
|
authentication;
|
|
1206
1211
|
constructor(e) {
|
|
@@ -1236,7 +1241,7 @@ var q = class {
|
|
|
1236
1241
|
return console.error("[/categories/test]", e), Promise.reject(e);
|
|
1237
1242
|
}
|
|
1238
1243
|
};
|
|
1239
|
-
},
|
|
1244
|
+
}, ce = class {
|
|
1240
1245
|
props;
|
|
1241
1246
|
authentication;
|
|
1242
1247
|
constructor(e) {
|
|
@@ -1279,7 +1284,7 @@ var q = class {
|
|
|
1279
1284
|
return console.error("[/ckeditor/audioCode]", e), Promise.reject(e);
|
|
1280
1285
|
}
|
|
1281
1286
|
};
|
|
1282
|
-
},
|
|
1287
|
+
}, le = class {
|
|
1283
1288
|
props;
|
|
1284
1289
|
authentication;
|
|
1285
1290
|
constructor(e) {
|
|
@@ -1307,7 +1312,17 @@ var q = class {
|
|
|
1307
1312
|
return console.error("[/copilot/actions]", e), Promise.reject(e);
|
|
1308
1313
|
}
|
|
1309
1314
|
};
|
|
1310
|
-
|
|
1315
|
+
snooze = async (e) => {
|
|
1316
|
+
try {
|
|
1317
|
+
return (await this.props.axiosApi.post("/copilot/snooze", {
|
|
1318
|
+
authentication: this.authentication,
|
|
1319
|
+
opportunity_id: e
|
|
1320
|
+
})).data;
|
|
1321
|
+
} catch (e) {
|
|
1322
|
+
return console.error("[/copilot/snooze]", e), Promise.reject(e);
|
|
1323
|
+
}
|
|
1324
|
+
};
|
|
1325
|
+
}, ue = class {
|
|
1311
1326
|
props;
|
|
1312
1327
|
authentication;
|
|
1313
1328
|
constructor(e) {
|
|
@@ -1473,7 +1488,7 @@ var q = class {
|
|
|
1473
1488
|
return console.error("[/comments/user/get]", e), Promise.reject(e);
|
|
1474
1489
|
}
|
|
1475
1490
|
};
|
|
1476
|
-
},
|
|
1491
|
+
}, de = class {
|
|
1477
1492
|
props;
|
|
1478
1493
|
authentication;
|
|
1479
1494
|
constructor(e) {
|
|
@@ -1549,7 +1564,7 @@ var q = class {
|
|
|
1549
1564
|
return console.error("[/contributions/paymentGateways/get]", e), Promise.reject(e);
|
|
1550
1565
|
}
|
|
1551
1566
|
};
|
|
1552
|
-
},
|
|
1567
|
+
}, fe = class {
|
|
1553
1568
|
props;
|
|
1554
1569
|
authentication;
|
|
1555
1570
|
constructor(e) {
|
|
@@ -1605,7 +1620,7 @@ var q = class {
|
|
|
1605
1620
|
return console.error("[/sections/update]", e), Promise.reject(e);
|
|
1606
1621
|
}
|
|
1607
1622
|
};
|
|
1608
|
-
},
|
|
1623
|
+
}, pe = class {
|
|
1609
1624
|
props;
|
|
1610
1625
|
authentication;
|
|
1611
1626
|
constructor(e) {
|
|
@@ -1891,7 +1906,7 @@ var q = class {
|
|
|
1891
1906
|
return console.error("[/productivityPlan/reviewr/detail]", e), Promise.reject(e);
|
|
1892
1907
|
}
|
|
1893
1908
|
};
|
|
1894
|
-
},
|
|
1909
|
+
}, me = class {
|
|
1895
1910
|
props;
|
|
1896
1911
|
authentication;
|
|
1897
1912
|
constructor(e) {
|
|
@@ -1914,7 +1929,7 @@ var q = class {
|
|
|
1914
1929
|
return console.error("[/events/get]", e), Promise.reject(e);
|
|
1915
1930
|
}
|
|
1916
1931
|
};
|
|
1917
|
-
},
|
|
1932
|
+
}, he = class {
|
|
1918
1933
|
props;
|
|
1919
1934
|
authentication;
|
|
1920
1935
|
constructor(e) {
|
|
@@ -1940,7 +1955,7 @@ var q = class {
|
|
|
1940
1955
|
return console.error("[/fileExplorer/getFolders]", e), Promise.reject(e);
|
|
1941
1956
|
}
|
|
1942
1957
|
};
|
|
1943
|
-
},
|
|
1958
|
+
}, ge = class {
|
|
1944
1959
|
props;
|
|
1945
1960
|
authentication;
|
|
1946
1961
|
constructor(e) {
|
|
@@ -1956,7 +1971,7 @@ var q = class {
|
|
|
1956
1971
|
return console.error("[/updateCDN]", e), Promise.reject(e);
|
|
1957
1972
|
}
|
|
1958
1973
|
};
|
|
1959
|
-
},
|
|
1974
|
+
}, _e = class {
|
|
1960
1975
|
props;
|
|
1961
1976
|
authentication;
|
|
1962
1977
|
constructor(e) {
|
|
@@ -2152,7 +2167,7 @@ var q = class {
|
|
|
2152
2167
|
return console.error("[/images/ckeditor/getImageComparation]", e), Promise.reject(e);
|
|
2153
2168
|
}
|
|
2154
2169
|
};
|
|
2155
|
-
},
|
|
2170
|
+
}, ve = class {
|
|
2156
2171
|
props;
|
|
2157
2172
|
authentication;
|
|
2158
2173
|
constructor(e) {
|
|
@@ -2725,7 +2740,7 @@ var q = class {
|
|
|
2725
2740
|
return console.error("[/news/searchConsole/inspection]", e), Promise.reject(e);
|
|
2726
2741
|
}
|
|
2727
2742
|
};
|
|
2728
|
-
},
|
|
2743
|
+
}, ye = class {
|
|
2729
2744
|
props;
|
|
2730
2745
|
authentication;
|
|
2731
2746
|
constructor(e) {
|
|
@@ -2755,7 +2770,7 @@ var q = class {
|
|
|
2755
2770
|
return console.error("[/notification/topics]", e), Promise.reject(e);
|
|
2756
2771
|
}
|
|
2757
2772
|
};
|
|
2758
|
-
},
|
|
2773
|
+
}, be = class {
|
|
2759
2774
|
props;
|
|
2760
2775
|
authentication;
|
|
2761
2776
|
constructor(e) {
|
|
@@ -2831,7 +2846,7 @@ var q = class {
|
|
|
2831
2846
|
return console.error("[/people/adminConfiguration]", e), Promise.reject(e);
|
|
2832
2847
|
}
|
|
2833
2848
|
};
|
|
2834
|
-
},
|
|
2849
|
+
}, $ = class {
|
|
2835
2850
|
props;
|
|
2836
2851
|
authentication;
|
|
2837
2852
|
constructor(e) {
|
|
@@ -2887,7 +2902,7 @@ var q = class {
|
|
|
2887
2902
|
return console.error("[/planning/activity/copy]", e), Promise.reject(e);
|
|
2888
2903
|
}
|
|
2889
2904
|
};
|
|
2890
|
-
},
|
|
2905
|
+
}, xe = class {
|
|
2891
2906
|
props;
|
|
2892
2907
|
authentication;
|
|
2893
2908
|
constructor(e) {
|
|
@@ -3045,7 +3060,7 @@ var q = class {
|
|
|
3045
3060
|
return console.error("[/polls/publish/now]", e), Promise.reject(e);
|
|
3046
3061
|
}
|
|
3047
3062
|
};
|
|
3048
|
-
},
|
|
3063
|
+
}, Se = class {
|
|
3049
3064
|
props;
|
|
3050
3065
|
authentication;
|
|
3051
3066
|
constructor(e) {
|
|
@@ -3213,7 +3228,7 @@ var q = class {
|
|
|
3213
3228
|
return console.error("[/recipes/publish/schedule]", e), Promise.reject(e);
|
|
3214
3229
|
}
|
|
3215
3230
|
};
|
|
3216
|
-
},
|
|
3231
|
+
}, Ce = class {
|
|
3217
3232
|
props;
|
|
3218
3233
|
authentication;
|
|
3219
3234
|
constructor(e) {
|
|
@@ -3309,7 +3324,7 @@ var q = class {
|
|
|
3309
3324
|
return console.error("[/users/actions/resetMfa]", e), Promise.reject(e);
|
|
3310
3325
|
}
|
|
3311
3326
|
};
|
|
3312
|
-
},
|
|
3327
|
+
}, we = class {
|
|
3313
3328
|
props;
|
|
3314
3329
|
authentication;
|
|
3315
3330
|
constructor(e) {
|
|
@@ -3366,7 +3381,7 @@ var q = class {
|
|
|
3366
3381
|
return console.error("[/zones/order]", e), Promise.reject(e);
|
|
3367
3382
|
}
|
|
3368
3383
|
};
|
|
3369
|
-
},
|
|
3384
|
+
}, Te = class {
|
|
3370
3385
|
props;
|
|
3371
3386
|
authentication;
|
|
3372
3387
|
constructor(e) {
|
|
@@ -3399,7 +3414,7 @@ var q = class {
|
|
|
3399
3414
|
return console.error("[/workpaper/status]", e), Promise.reject(e);
|
|
3400
3415
|
}
|
|
3401
3416
|
};
|
|
3402
|
-
},
|
|
3417
|
+
}, Ee = class {
|
|
3403
3418
|
props;
|
|
3404
3419
|
authentication;
|
|
3405
3420
|
constructor(e) {
|
|
@@ -3443,7 +3458,7 @@ var q = class {
|
|
|
3443
3458
|
return console.error("[/vods/playlist/create]", e), Promise.reject(e);
|
|
3444
3459
|
}
|
|
3445
3460
|
};
|
|
3446
|
-
},
|
|
3461
|
+
}, De = class {
|
|
3447
3462
|
props;
|
|
3448
3463
|
authentication;
|
|
3449
3464
|
constructor(e) {
|
|
@@ -3805,7 +3820,7 @@ var q = class {
|
|
|
3805
3820
|
return console.error("[/videos/nativos/download]", e), Promise.reject(e);
|
|
3806
3821
|
}
|
|
3807
3822
|
};
|
|
3808
|
-
},
|
|
3823
|
+
}, Oe = class {
|
|
3809
3824
|
props;
|
|
3810
3825
|
authentication;
|
|
3811
3826
|
constructor(e) {
|
|
@@ -3922,7 +3937,7 @@ var q = class {
|
|
|
3922
3937
|
return console.error("[/trivias/edit/inline]", e), Promise.reject(e);
|
|
3923
3938
|
}
|
|
3924
3939
|
};
|
|
3925
|
-
},
|
|
3940
|
+
}, ke = class {
|
|
3926
3941
|
props;
|
|
3927
3942
|
authentication;
|
|
3928
3943
|
constructor(e) {
|
|
@@ -3938,7 +3953,7 @@ var q = class {
|
|
|
3938
3953
|
return console.error("[/transcribe/get]", e), Promise.reject(e);
|
|
3939
3954
|
}
|
|
3940
3955
|
};
|
|
3941
|
-
},
|
|
3956
|
+
}, Ae = class {
|
|
3942
3957
|
props;
|
|
3943
3958
|
authentication;
|
|
3944
3959
|
constructor(e) {
|
|
@@ -4044,7 +4059,7 @@ var q = class {
|
|
|
4044
4059
|
return console.error("[/tags/changeStatus]", e), Promise.reject(e);
|
|
4045
4060
|
}
|
|
4046
4061
|
};
|
|
4047
|
-
},
|
|
4062
|
+
}, je = class {
|
|
4048
4063
|
props;
|
|
4049
4064
|
authentication;
|
|
4050
4065
|
publications;
|
|
@@ -4053,7 +4068,7 @@ var q = class {
|
|
|
4053
4068
|
sites;
|
|
4054
4069
|
auth;
|
|
4055
4070
|
constructor(e) {
|
|
4056
|
-
this.props = e, this.authentication = e.authentication, this.publications = new
|
|
4071
|
+
this.props = e, this.authentication = e.authentication, this.publications = new Z(e), this.profileServices = new X(e), this.dashboard = new Y(e), this.sites = new Q(e), this.auth = new J(e);
|
|
4057
4072
|
}
|
|
4058
4073
|
getDefaultPublication = () => this.publications.getDefaultPublication();
|
|
4059
4074
|
getProfile = () => this.profileServices.getProfile();
|
|
@@ -4071,11 +4086,11 @@ var q = class {
|
|
|
4071
4086
|
title: e.title,
|
|
4072
4087
|
publications: t.publications.filter((t) => t.site === e.name)
|
|
4073
4088
|
})).filter((e) => e.publications.length > 0),
|
|
4074
|
-
modules:
|
|
4089
|
+
modules: q(n.modules, r)
|
|
4075
4090
|
};
|
|
4076
4091
|
};
|
|
4077
4092
|
};
|
|
4078
4093
|
//#endregion
|
|
4079
|
-
export {
|
|
4094
|
+
export { A as $, ne as A, V as B, ue as C, oe as D, se as E, J as F, M as G, F as H, q as I, I as J, L as K, K as L, Z as M, X as N, ae as O, Y as P, ee as Q, W as R, de as S, ce as T, P as U, H as V, N as W, B as X, z as Y, j as Z, ge as _, d as _t, De as a, i as at, pe as b, we as c, l as ct, xe as d, b as dt, te as et, $ as f, h as ft, _e as g, S as gt, ve as h, s as ht, Oe as i, C as it, Q as j, ie as k, Ce as l, c as lt, ye as m, o as mt, Ae as n, E as nt, Ee as o, y as ot, be as p, a as pt, R as q, ke as r, T as rt, Te as s, _ as st, je as t, D as tt, Se as u, w as ut, he as v, p as vt, le as w, fe as x, me as y, G as z };
|
|
4080
4095
|
|
|
4081
|
-
//# sourceMappingURL=services-
|
|
4096
|
+
//# sourceMappingURL=services-DS4p6Tpl.js.map
|