sass-cms-template-common 0.0.11 → 0.0.12
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 +32 -2
- package/dist/index.js +1367 -1300
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +22 -0
- package/dist/server.js +2 -2
- package/dist/{services-BLy9bEvH.js → services-BjcJgeV1.js} +64 -59
- package/dist/services-BjcJgeV1.js.map +1 -0
- package/package.json +1 -1
- package/dist/services-BLy9bEvH.js.map +0 -1
package/dist/server.d.ts
CHANGED
|
@@ -4397,6 +4397,28 @@ export declare interface TagUpdateInput {
|
|
|
4397
4397
|
*/
|
|
4398
4398
|
export declare function toSiteWallClock(epochMs: number, gmtRedaction: string | null | undefined): number;
|
|
4399
4399
|
|
|
4400
|
+
/**
|
|
4401
|
+
* Normaliza un valor a un `data-testid` estable en kebab-case ASCII.
|
|
4402
|
+
*
|
|
4403
|
+
* Equivalente React del pipe `toTestId` del CMS Angular (`cmsmedios-ux`):
|
|
4404
|
+
* pasa a minúsculas, quita tildes/acentos y convierte cualquier separador
|
|
4405
|
+
* (espacios, puntos, guiones bajos, barras) en un único guion.
|
|
4406
|
+
*
|
|
4407
|
+
* IMPORTANTE: el valor que se le pasa debe ser **independiente del idioma**
|
|
4408
|
+
* (una clave i18n, un `id`/`value`/`slug`, un código o enum interno), nunca el
|
|
4409
|
+
* texto traducido: si no, el `data-testid` cambiaría según el idioma del usuario
|
|
4410
|
+
* y las pruebas no podrían apuntarlo de forma estable.
|
|
4411
|
+
*
|
|
4412
|
+
* @param value Valor de origen (clave i18n, id, código o índice).
|
|
4413
|
+
* @returns El `data-testid` normalizado, o `''` si el valor es vacío/nulo.
|
|
4414
|
+
*
|
|
4415
|
+
* @example
|
|
4416
|
+
* toTestId('modal.deactivate.title') // 'modal-deactivate-title'
|
|
4417
|
+
* toTestId('Próximo evento') // 'proximo-evento'
|
|
4418
|
+
* toTestId(3) // '3'
|
|
4419
|
+
*/
|
|
4420
|
+
export declare function toTestId(value: string | number | null | undefined): string;
|
|
4421
|
+
|
|
4400
4422
|
/**
|
|
4401
4423
|
* Cuerpo de la respuesta de POST /transcribe/get.
|
|
4402
4424
|
*
|
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-BjcJgeV1.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,7 @@ var q = class {
|
|
|
1307
1312
|
return console.error("[/copilot/actions]", e), Promise.reject(e);
|
|
1308
1313
|
}
|
|
1309
1314
|
};
|
|
1310
|
-
},
|
|
1315
|
+
}, ue = class {
|
|
1311
1316
|
props;
|
|
1312
1317
|
authentication;
|
|
1313
1318
|
constructor(e) {
|
|
@@ -1473,7 +1478,7 @@ var q = class {
|
|
|
1473
1478
|
return console.error("[/comments/user/get]", e), Promise.reject(e);
|
|
1474
1479
|
}
|
|
1475
1480
|
};
|
|
1476
|
-
},
|
|
1481
|
+
}, de = class {
|
|
1477
1482
|
props;
|
|
1478
1483
|
authentication;
|
|
1479
1484
|
constructor(e) {
|
|
@@ -1549,7 +1554,7 @@ var q = class {
|
|
|
1549
1554
|
return console.error("[/contributions/paymentGateways/get]", e), Promise.reject(e);
|
|
1550
1555
|
}
|
|
1551
1556
|
};
|
|
1552
|
-
},
|
|
1557
|
+
}, fe = class {
|
|
1553
1558
|
props;
|
|
1554
1559
|
authentication;
|
|
1555
1560
|
constructor(e) {
|
|
@@ -1605,7 +1610,7 @@ var q = class {
|
|
|
1605
1610
|
return console.error("[/sections/update]", e), Promise.reject(e);
|
|
1606
1611
|
}
|
|
1607
1612
|
};
|
|
1608
|
-
},
|
|
1613
|
+
}, pe = class {
|
|
1609
1614
|
props;
|
|
1610
1615
|
authentication;
|
|
1611
1616
|
constructor(e) {
|
|
@@ -1891,7 +1896,7 @@ var q = class {
|
|
|
1891
1896
|
return console.error("[/productivityPlan/reviewr/detail]", e), Promise.reject(e);
|
|
1892
1897
|
}
|
|
1893
1898
|
};
|
|
1894
|
-
},
|
|
1899
|
+
}, me = class {
|
|
1895
1900
|
props;
|
|
1896
1901
|
authentication;
|
|
1897
1902
|
constructor(e) {
|
|
@@ -1914,7 +1919,7 @@ var q = class {
|
|
|
1914
1919
|
return console.error("[/events/get]", e), Promise.reject(e);
|
|
1915
1920
|
}
|
|
1916
1921
|
};
|
|
1917
|
-
},
|
|
1922
|
+
}, he = class {
|
|
1918
1923
|
props;
|
|
1919
1924
|
authentication;
|
|
1920
1925
|
constructor(e) {
|
|
@@ -1940,7 +1945,7 @@ var q = class {
|
|
|
1940
1945
|
return console.error("[/fileExplorer/getFolders]", e), Promise.reject(e);
|
|
1941
1946
|
}
|
|
1942
1947
|
};
|
|
1943
|
-
},
|
|
1948
|
+
}, ge = class {
|
|
1944
1949
|
props;
|
|
1945
1950
|
authentication;
|
|
1946
1951
|
constructor(e) {
|
|
@@ -1956,7 +1961,7 @@ var q = class {
|
|
|
1956
1961
|
return console.error("[/updateCDN]", e), Promise.reject(e);
|
|
1957
1962
|
}
|
|
1958
1963
|
};
|
|
1959
|
-
},
|
|
1964
|
+
}, _e = class {
|
|
1960
1965
|
props;
|
|
1961
1966
|
authentication;
|
|
1962
1967
|
constructor(e) {
|
|
@@ -2152,7 +2157,7 @@ var q = class {
|
|
|
2152
2157
|
return console.error("[/images/ckeditor/getImageComparation]", e), Promise.reject(e);
|
|
2153
2158
|
}
|
|
2154
2159
|
};
|
|
2155
|
-
},
|
|
2160
|
+
}, ve = class {
|
|
2156
2161
|
props;
|
|
2157
2162
|
authentication;
|
|
2158
2163
|
constructor(e) {
|
|
@@ -2725,7 +2730,7 @@ var q = class {
|
|
|
2725
2730
|
return console.error("[/news/searchConsole/inspection]", e), Promise.reject(e);
|
|
2726
2731
|
}
|
|
2727
2732
|
};
|
|
2728
|
-
},
|
|
2733
|
+
}, ye = class {
|
|
2729
2734
|
props;
|
|
2730
2735
|
authentication;
|
|
2731
2736
|
constructor(e) {
|
|
@@ -2755,7 +2760,7 @@ var q = class {
|
|
|
2755
2760
|
return console.error("[/notification/topics]", e), Promise.reject(e);
|
|
2756
2761
|
}
|
|
2757
2762
|
};
|
|
2758
|
-
},
|
|
2763
|
+
}, be = class {
|
|
2759
2764
|
props;
|
|
2760
2765
|
authentication;
|
|
2761
2766
|
constructor(e) {
|
|
@@ -2831,7 +2836,7 @@ var q = class {
|
|
|
2831
2836
|
return console.error("[/people/adminConfiguration]", e), Promise.reject(e);
|
|
2832
2837
|
}
|
|
2833
2838
|
};
|
|
2834
|
-
},
|
|
2839
|
+
}, $ = class {
|
|
2835
2840
|
props;
|
|
2836
2841
|
authentication;
|
|
2837
2842
|
constructor(e) {
|
|
@@ -2887,7 +2892,7 @@ var q = class {
|
|
|
2887
2892
|
return console.error("[/planning/activity/copy]", e), Promise.reject(e);
|
|
2888
2893
|
}
|
|
2889
2894
|
};
|
|
2890
|
-
},
|
|
2895
|
+
}, xe = class {
|
|
2891
2896
|
props;
|
|
2892
2897
|
authentication;
|
|
2893
2898
|
constructor(e) {
|
|
@@ -3045,7 +3050,7 @@ var q = class {
|
|
|
3045
3050
|
return console.error("[/polls/publish/now]", e), Promise.reject(e);
|
|
3046
3051
|
}
|
|
3047
3052
|
};
|
|
3048
|
-
},
|
|
3053
|
+
}, Se = class {
|
|
3049
3054
|
props;
|
|
3050
3055
|
authentication;
|
|
3051
3056
|
constructor(e) {
|
|
@@ -3213,7 +3218,7 @@ var q = class {
|
|
|
3213
3218
|
return console.error("[/recipes/publish/schedule]", e), Promise.reject(e);
|
|
3214
3219
|
}
|
|
3215
3220
|
};
|
|
3216
|
-
},
|
|
3221
|
+
}, Ce = class {
|
|
3217
3222
|
props;
|
|
3218
3223
|
authentication;
|
|
3219
3224
|
constructor(e) {
|
|
@@ -3309,7 +3314,7 @@ var q = class {
|
|
|
3309
3314
|
return console.error("[/users/actions/resetMfa]", e), Promise.reject(e);
|
|
3310
3315
|
}
|
|
3311
3316
|
};
|
|
3312
|
-
},
|
|
3317
|
+
}, we = class {
|
|
3313
3318
|
props;
|
|
3314
3319
|
authentication;
|
|
3315
3320
|
constructor(e) {
|
|
@@ -3366,7 +3371,7 @@ var q = class {
|
|
|
3366
3371
|
return console.error("[/zones/order]", e), Promise.reject(e);
|
|
3367
3372
|
}
|
|
3368
3373
|
};
|
|
3369
|
-
},
|
|
3374
|
+
}, Te = class {
|
|
3370
3375
|
props;
|
|
3371
3376
|
authentication;
|
|
3372
3377
|
constructor(e) {
|
|
@@ -3399,7 +3404,7 @@ var q = class {
|
|
|
3399
3404
|
return console.error("[/workpaper/status]", e), Promise.reject(e);
|
|
3400
3405
|
}
|
|
3401
3406
|
};
|
|
3402
|
-
},
|
|
3407
|
+
}, Ee = class {
|
|
3403
3408
|
props;
|
|
3404
3409
|
authentication;
|
|
3405
3410
|
constructor(e) {
|
|
@@ -3443,7 +3448,7 @@ var q = class {
|
|
|
3443
3448
|
return console.error("[/vods/playlist/create]", e), Promise.reject(e);
|
|
3444
3449
|
}
|
|
3445
3450
|
};
|
|
3446
|
-
},
|
|
3451
|
+
}, De = class {
|
|
3447
3452
|
props;
|
|
3448
3453
|
authentication;
|
|
3449
3454
|
constructor(e) {
|
|
@@ -3805,7 +3810,7 @@ var q = class {
|
|
|
3805
3810
|
return console.error("[/videos/nativos/download]", e), Promise.reject(e);
|
|
3806
3811
|
}
|
|
3807
3812
|
};
|
|
3808
|
-
},
|
|
3813
|
+
}, Oe = class {
|
|
3809
3814
|
props;
|
|
3810
3815
|
authentication;
|
|
3811
3816
|
constructor(e) {
|
|
@@ -3922,7 +3927,7 @@ var q = class {
|
|
|
3922
3927
|
return console.error("[/trivias/edit/inline]", e), Promise.reject(e);
|
|
3923
3928
|
}
|
|
3924
3929
|
};
|
|
3925
|
-
},
|
|
3930
|
+
}, ke = class {
|
|
3926
3931
|
props;
|
|
3927
3932
|
authentication;
|
|
3928
3933
|
constructor(e) {
|
|
@@ -3938,7 +3943,7 @@ var q = class {
|
|
|
3938
3943
|
return console.error("[/transcribe/get]", e), Promise.reject(e);
|
|
3939
3944
|
}
|
|
3940
3945
|
};
|
|
3941
|
-
},
|
|
3946
|
+
}, Ae = class {
|
|
3942
3947
|
props;
|
|
3943
3948
|
authentication;
|
|
3944
3949
|
constructor(e) {
|
|
@@ -4044,7 +4049,7 @@ var q = class {
|
|
|
4044
4049
|
return console.error("[/tags/changeStatus]", e), Promise.reject(e);
|
|
4045
4050
|
}
|
|
4046
4051
|
};
|
|
4047
|
-
},
|
|
4052
|
+
}, je = class {
|
|
4048
4053
|
props;
|
|
4049
4054
|
authentication;
|
|
4050
4055
|
publications;
|
|
@@ -4053,7 +4058,7 @@ var q = class {
|
|
|
4053
4058
|
sites;
|
|
4054
4059
|
auth;
|
|
4055
4060
|
constructor(e) {
|
|
4056
|
-
this.props = e, this.authentication = e.authentication, this.publications = new
|
|
4061
|
+
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
4062
|
}
|
|
4058
4063
|
getDefaultPublication = () => this.publications.getDefaultPublication();
|
|
4059
4064
|
getProfile = () => this.profileServices.getProfile();
|
|
@@ -4071,11 +4076,11 @@ var q = class {
|
|
|
4071
4076
|
title: e.title,
|
|
4072
4077
|
publications: t.publications.filter((t) => t.site === e.name)
|
|
4073
4078
|
})).filter((e) => e.publications.length > 0),
|
|
4074
|
-
modules:
|
|
4079
|
+
modules: q(n.modules, r)
|
|
4075
4080
|
};
|
|
4076
4081
|
};
|
|
4077
4082
|
};
|
|
4078
4083
|
//#endregion
|
|
4079
|
-
export {
|
|
4084
|
+
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
4085
|
|
|
4081
|
-
//# sourceMappingURL=services-
|
|
4086
|
+
//# sourceMappingURL=services-BjcJgeV1.js.map
|