sass-cms-template-common 0.0.14 → 0.0.16
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 +84 -7
- package/dist/index.js +962 -910
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +62 -0
- package/dist/server.js +2 -2
- package/dist/{services-DB5GX5UJ.js → services-BQ1IbdWe.js} +112 -75
- package/dist/services-BQ1IbdWe.js.map +1 -0
- package/package.json +1 -1
- package/dist/services-DB5GX5UJ.js.map +0 -1
package/dist/server.d.ts
CHANGED
|
@@ -747,6 +747,44 @@ export declare class CmsImagesServices {
|
|
|
747
747
|
getImageComparation: (image: ImageComparationPair) => Promise<ImageComparationResponse>;
|
|
748
748
|
}
|
|
749
749
|
|
|
750
|
+
/**
|
|
751
|
+
* Singleton que conecta el interceptor de axios con el provider de red. El
|
|
752
|
+
* provider llama `register` al montar y `unregister` al desmontar; el
|
|
753
|
+
* interceptor usa los métodos (con fallback seguro si no hay provider).
|
|
754
|
+
*/
|
|
755
|
+
export declare const cmsNetworkBridge: {
|
|
756
|
+
register(next: CmsNetworkBridgeHandlers): void;
|
|
757
|
+
unregister(): void;
|
|
758
|
+
/** `true` si hay un `CmsNetworkProvider` montado escuchando. */
|
|
759
|
+
readonly isRegistered: boolean;
|
|
760
|
+
reportOffline(): void;
|
|
761
|
+
waitForOnline(): Promise<void>;
|
|
762
|
+
verifyConnectivity(): Promise<boolean>;
|
|
763
|
+
};
|
|
764
|
+
|
|
765
|
+
/**
|
|
766
|
+
* Puente entre el interceptor de axios (un módulo, sin React) y el
|
|
767
|
+
* `CmsNetworkProvider` (React). Replica el rol del `NetworkService` que se
|
|
768
|
+
* inyecta en el `NetworkInterceptor` del Angular legacy: el interceptor no
|
|
769
|
+
* puede usar hooks, así que el provider registra aquí sus funciones y el
|
|
770
|
+
* interceptor las consume.
|
|
771
|
+
*
|
|
772
|
+
* Módulo **server-safe** (sin React, sin `'use client'`): así lo puede importar
|
|
773
|
+
* el `lib/http/axios.ts` del gestor —que corre tanto en cliente como en
|
|
774
|
+
* servidor— sin arrastrar componentes cliente. En el servidor el bridge queda
|
|
775
|
+
* sin registrar (no hay provider) y `resumeAxiosOnNetworkError` re-lanza el
|
|
776
|
+
* error para que lo maneje el server action (`toCmsError`).
|
|
777
|
+
*/
|
|
778
|
+
/** Funciones que el `CmsNetworkProvider` registra para el interceptor. */
|
|
779
|
+
export declare interface CmsNetworkBridgeHandlers {
|
|
780
|
+
/** Marca la conexión como offline de inmediato (dispara el toast). */
|
|
781
|
+
reportOffline: () => void;
|
|
782
|
+
/** Resuelve cuando la conexión vuelve (confirmada por el ping/eventos). */
|
|
783
|
+
waitForOnline: () => Promise<void>;
|
|
784
|
+
/** Confirma por ping si hay internet real. `true` = online. */
|
|
785
|
+
verifyConnectivity: () => Promise<boolean>;
|
|
786
|
+
}
|
|
787
|
+
|
|
750
788
|
/**
|
|
751
789
|
* Servicios HTTP del módulo `news` del CMS (core + publish, unpublish, pin,
|
|
752
790
|
* massive, freshness, views y analytics).
|
|
@@ -4222,6 +4260,30 @@ export declare interface RecipesPublishCheckResponse extends CmsResponse {
|
|
|
4222
4260
|
/** Devuelve la severidad de toast para un código de error (`warning`/`error`). */
|
|
4223
4261
|
export declare function resolveErrorSeverity(errorCode: string | number | Array<string | number> | null | undefined): CmsErrorSeverity;
|
|
4224
4262
|
|
|
4263
|
+
/**
|
|
4264
|
+
* Da resiliencia de red a una petición de axios, replicando el
|
|
4265
|
+
* `NetworkInterceptor` del Angular legacy. Pensado para el `onRejected` del
|
|
4266
|
+
* interceptor de respuesta de axios del gestor:
|
|
4267
|
+
*
|
|
4268
|
+
* ```ts
|
|
4269
|
+
* api.interceptors.response.use(
|
|
4270
|
+
* (r) => r,
|
|
4271
|
+
* (error) => resumeAxiosOnNetworkError(error, (config) => api.request(config)),
|
|
4272
|
+
* );
|
|
4273
|
+
* ```
|
|
4274
|
+
*
|
|
4275
|
+
* - **En el servidor, o no es error de red, o no hay provider montado** →
|
|
4276
|
+
* re-lanza el error (lo maneja el caller / `toCmsError`).
|
|
4277
|
+
* - **Sin internet** (el navegador reporta offline, o el ping confirma que no
|
|
4278
|
+
* hay salida real, p. ej. `ERR_NAME_NOT_RESOLVED`): muestra "sin conexión"
|
|
4279
|
+
* (vía el provider), arranca el ping y, al volver la conexión, **reintenta**
|
|
4280
|
+
* la petición (retoma el servicio).
|
|
4281
|
+
* - **Con internet** (el caído era el backend: 5xx/timeout): re-lanza sin
|
|
4282
|
+
* reintentar, para no repetir a ciegas un POST. Ese caso lo cubre
|
|
4283
|
+
* `useResilientAction`/`toCmsError` en las mutaciones envueltas.
|
|
4284
|
+
*/
|
|
4285
|
+
export declare function resumeAxiosOnNetworkError<T = unknown>(error: unknown, reAttempt: (config: unknown) => Promise<T>): Promise<T>;
|
|
4286
|
+
|
|
4225
4287
|
/** Sección de una publicación del CMS (forma devuelta por get/exist). */
|
|
4226
4288
|
export declare interface Section {
|
|
4227
4289
|
id?: number;
|
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, at as T, b as E, c as D, ct as O, d as k, et as A, f as j, g as M, h as N, i as P, it as F, j as I, k as L, l as R,
|
|
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, at as T, b as E, c as D, ct as O, d as k, et as A, f as j, g as M, h as N, i as P, it as F, j as I, k as L, l as R, lt as z, m as B, n as V, nt as H, o as U, ot as W, p as G, q as K, r as q, rt as J, s as Y, st as X, t as Z, tt as Q, u as $, ut as ee, v as te, w as ne, x as re, y as ie, z as ae } from "./services-BQ1IbdWe.js";
|
|
2
|
+
export { i as CmsAudiosServices, t as CmsAuthLoginServices, o as CmsAuthServices, a as CmsCategoriesServices, v as CmsCkeditorServices, r as CmsCommentsServices, Z as CmsCommonServices, _ as CmsContributionsServices, ne as CmsCopilotServices, m as CmsDashboardServices, ie as CmsEventsServices, te as CmsFileExplorerServices, C as CmsGeneralServices, M as CmsImagesServices, N as CmsNewsServices, B as CmsNotificationServices, G as CmsPeopleServices, j as CmsPlanningServices, k as CmsPollsServices, p as CmsPreviewServices, E as CmsProductivityPlanServices, f as CmsProfileServices, d as CmsPublicationsServices, $ as CmsRecipesServices, re as CmsSectionsServices, I as CmsSitesServices, V as CmsTagsServices, q as CmsTranscribeServices, P as CmsTriviasServices, L as CmsUploadServices, R as CmsUsersServices, w as CmsVideosServices, U as CmsVodsServices, Y as CmsWorkpaperServices, D as CmsZonesServices, A as NETWORK_ERROR_CODES, Q as classifyNetworkError, h as cmsNetworkBridge, ee as commonErrorsEn, z as commonErrorsEs, O as commonErrorsPt, s as filterModulesByPermissions, l as findPublicationBySlug, K as findPublicationLabel, g as formatSiteDateTime, c as getAllPublications, T as getCommonError, x as getDefaultPublicationSlug, H as getNetworkErrorCodeFromResult, ae as getSiteNow, u as hasModulePermission, J as isNetworkErrorCode, F as isRetryableNetworkCode, W as normalizeErrorCode, n as parseGmtOffsetMinutes, b as parsePublicationSlug, X as resolveErrorSeverity, e as resumeAxiosOnNetworkError, y as toSiteWallClock, S as toTestId };
|
|
@@ -299,7 +299,7 @@ var r = t("", {
|
|
|
299
299
|
dark: "#C4C6CF"
|
|
300
300
|
}
|
|
301
301
|
}
|
|
302
|
-
},
|
|
302
|
+
}, d = n("state", u).values, f = {
|
|
303
303
|
active: {
|
|
304
304
|
bg: {
|
|
305
305
|
light: "#92F7B7",
|
|
@@ -320,7 +320,7 @@ var r = t("", {
|
|
|
320
320
|
dark: "#C4C6CF"
|
|
321
321
|
}
|
|
322
322
|
}
|
|
323
|
-
},
|
|
323
|
+
}, p = n("user-status", f).values, m = n("notification", {
|
|
324
324
|
pending: {
|
|
325
325
|
bg: {
|
|
326
326
|
light: "#FFE2D5",
|
|
@@ -351,13 +351,13 @@ var r = t("", {
|
|
|
351
351
|
dark: "#FFFFFF"
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
|
-
}),
|
|
354
|
+
}), ee = {
|
|
355
355
|
assigned: {
|
|
356
356
|
bg: i.secondary,
|
|
357
357
|
on: i.onSecondaryContainer
|
|
358
358
|
},
|
|
359
|
-
...
|
|
360
|
-
},
|
|
359
|
+
...m.values
|
|
360
|
+
}, h = t("editorial-opportunity", {
|
|
361
361
|
accent: {
|
|
362
362
|
light: "#3162E0",
|
|
363
363
|
dark: "#3B6FF0"
|
|
@@ -378,7 +378,7 @@ var r = t("", {
|
|
|
378
378
|
light: "#83521A",
|
|
379
379
|
dark: "#E5B87A"
|
|
380
380
|
}
|
|
381
|
-
}),
|
|
381
|
+
}), g = h.values, _ = {
|
|
382
382
|
high: {
|
|
383
383
|
bg: {
|
|
384
384
|
light: "#D7F5DD",
|
|
@@ -409,10 +409,10 @@ var r = t("", {
|
|
|
409
409
|
dark: "#C4C6CF"
|
|
410
410
|
}
|
|
411
411
|
}
|
|
412
|
-
},
|
|
412
|
+
}, te = n("confidence", _).values, ne = {
|
|
413
413
|
like: "#1E8E3E",
|
|
414
414
|
dislike: "#D93025"
|
|
415
|
-
},
|
|
415
|
+
}, v = t("source", {
|
|
416
416
|
rss: {
|
|
417
417
|
light: "#FB923C",
|
|
418
418
|
dark: "#FB923C"
|
|
@@ -429,26 +429,26 @@ var r = t("", {
|
|
|
429
429
|
light: "#111111",
|
|
430
430
|
dark: "#E1E2E9"
|
|
431
431
|
}
|
|
432
|
-
}),
|
|
432
|
+
}), re = v.values;
|
|
433
433
|
function y() {
|
|
434
434
|
return {
|
|
435
435
|
light: {
|
|
436
436
|
...r.light,
|
|
437
437
|
...n("state", u).light,
|
|
438
|
-
...n("user-status",
|
|
439
|
-
...p.light,
|
|
438
|
+
...n("user-status", f).light,
|
|
440
439
|
...m.light,
|
|
441
|
-
...
|
|
442
|
-
..._.light
|
|
440
|
+
...h.light,
|
|
441
|
+
...n("confidence", _).light,
|
|
442
|
+
...v.light
|
|
443
443
|
},
|
|
444
444
|
dark: {
|
|
445
445
|
...r.dark,
|
|
446
446
|
...n("state", u).dark,
|
|
447
|
-
...n("user-status",
|
|
448
|
-
...p.dark,
|
|
447
|
+
...n("user-status", f).dark,
|
|
449
448
|
...m.dark,
|
|
450
|
-
...
|
|
451
|
-
..._.dark
|
|
449
|
+
...h.dark,
|
|
450
|
+
...n("confidence", _).dark,
|
|
451
|
+
...v.dark
|
|
452
452
|
}
|
|
453
453
|
};
|
|
454
454
|
}
|
|
@@ -771,19 +771,19 @@ var T = {
|
|
|
771
771
|
timeout: "net.timeout",
|
|
772
772
|
unavailable: "net.unavailable",
|
|
773
773
|
server: "net.server"
|
|
774
|
-
}, E = new Set(Object.values(T)),
|
|
774
|
+
}, E = new Set(Object.values(T)), ce = new Set([
|
|
775
775
|
T.offline,
|
|
776
776
|
T.timeout,
|
|
777
777
|
T.unavailable,
|
|
778
778
|
T.server
|
|
779
779
|
]);
|
|
780
|
-
function
|
|
780
|
+
function le(e) {
|
|
781
781
|
return e != null && E.has(e);
|
|
782
782
|
}
|
|
783
|
-
function
|
|
784
|
-
return e != null &&
|
|
783
|
+
function ue(e) {
|
|
784
|
+
return e != null && ce.has(e);
|
|
785
785
|
}
|
|
786
|
-
function
|
|
786
|
+
function D(e) {
|
|
787
787
|
let t = e, n = e instanceof Error ? e.message : String(e), r = t?.response?.status ?? t?.status, i = t?.code;
|
|
788
788
|
return i === "ECONNABORTED" || i === "ETIMEDOUT" || /timeout/i.test(n) ? {
|
|
789
789
|
errorCode: T.timeout,
|
|
@@ -803,7 +803,7 @@ function A(e) {
|
|
|
803
803
|
error: n
|
|
804
804
|
} : null;
|
|
805
805
|
}
|
|
806
|
-
function
|
|
806
|
+
function de(e) {
|
|
807
807
|
if (typeof e != "object" || !e) return null;
|
|
808
808
|
let t = e;
|
|
809
809
|
if (t.status !== "error" && t.status !== "fail") return null;
|
|
@@ -811,62 +811,99 @@ function j(e) {
|
|
|
811
811
|
return n && E.has(n) ? n : null;
|
|
812
812
|
}
|
|
813
813
|
//#endregion
|
|
814
|
+
//#region src/lib/network/networkBridge.ts
|
|
815
|
+
var O = "__cmsNetworkBridgeHandlers__";
|
|
816
|
+
function k() {
|
|
817
|
+
return globalThis[O] ?? null;
|
|
818
|
+
}
|
|
819
|
+
function A(e) {
|
|
820
|
+
globalThis[O] = e;
|
|
821
|
+
}
|
|
822
|
+
var j = {
|
|
823
|
+
register(e) {
|
|
824
|
+
A(e);
|
|
825
|
+
},
|
|
826
|
+
unregister() {
|
|
827
|
+
A(null);
|
|
828
|
+
},
|
|
829
|
+
get isRegistered() {
|
|
830
|
+
return k() !== null;
|
|
831
|
+
},
|
|
832
|
+
reportOffline() {
|
|
833
|
+
k()?.reportOffline();
|
|
834
|
+
},
|
|
835
|
+
waitForOnline() {
|
|
836
|
+
return k()?.waitForOnline() ?? Promise.resolve();
|
|
837
|
+
},
|
|
838
|
+
verifyConnectivity() {
|
|
839
|
+
return k()?.verifyConnectivity() ?? Promise.resolve(typeof navigator > "u" || navigator.onLine);
|
|
840
|
+
}
|
|
841
|
+
};
|
|
842
|
+
async function M(e, t) {
|
|
843
|
+
if (typeof window > "u" || !D(e)) throw e;
|
|
844
|
+
let n = e?.config;
|
|
845
|
+
if (n == null || !j.isRegistered) throw e;
|
|
846
|
+
let r;
|
|
847
|
+
if (typeof navigator < "u" && !navigator.onLine ? (j.reportOffline(), r = !0) : r = !await j.verifyConnectivity(), !r) throw e;
|
|
848
|
+
return await j.waitForOnline(), t(n);
|
|
849
|
+
}
|
|
850
|
+
//#endregion
|
|
814
851
|
//#region src/lib/utils/toTestId.ts
|
|
815
|
-
function
|
|
852
|
+
function N(e) {
|
|
816
853
|
return e == null || e === "" ? "" : String(e).trim().toLowerCase().normalize("NFD").replace(/[̀-ͯ]/g, "").replace(/[\s._/\\]+/g, "-").replace(/[^a-z0-9-]/g, "").replace(/-+/g, "-").replace(/^-+|-+$/g, "");
|
|
817
854
|
}
|
|
818
855
|
//#endregion
|
|
819
856
|
//#region src/lib/utils/site-selector.ts
|
|
820
|
-
var
|
|
821
|
-
function
|
|
857
|
+
var P = i.menuSurface, F = i.secondary, I = i.surface, L = "bluestack-es";
|
|
858
|
+
function R(e) {
|
|
822
859
|
return e.flatMap((e) => e.publications);
|
|
823
860
|
}
|
|
824
|
-
function R(e, t) {
|
|
825
|
-
return L(e).find((e) => String(e.id) === t);
|
|
826
|
-
}
|
|
827
861
|
function z(e, t) {
|
|
828
|
-
return
|
|
862
|
+
return R(e).find((e) => String(e.id) === t);
|
|
829
863
|
}
|
|
830
|
-
function B(e) {
|
|
831
|
-
|
|
832
|
-
return t ? String(t.id) : "1";
|
|
864
|
+
function B(e, t) {
|
|
865
|
+
return R(e).find((e) => String(e.id) === t)?.description ?? "Seleccionar publicación";
|
|
833
866
|
}
|
|
834
867
|
function V(e) {
|
|
868
|
+
let t = R(e)[0];
|
|
869
|
+
return t ? String(t.id) : "1";
|
|
870
|
+
}
|
|
871
|
+
function H(e) {
|
|
835
872
|
let t = Number(e);
|
|
836
873
|
return Number.isFinite(t) && t > 0 ? t : 1;
|
|
837
874
|
}
|
|
838
875
|
//#endregion
|
|
839
876
|
//#region src/lib/utils/site-time.ts
|
|
840
|
-
function
|
|
877
|
+
function U(e) {
|
|
841
878
|
if (!e) return 0;
|
|
842
879
|
let t = String(e).trim().replace(/^(GMT|UTC)/i, "").trim().match(/^([+-]?)(\d{1,2})(?::(\d{2}))?$/);
|
|
843
880
|
if (!t) return 0;
|
|
844
881
|
let n = t[1] === "-" ? -1 : 1, r = Number(t[2]), i = t[3] ? Number(t[3]) : 0;
|
|
845
882
|
return n * (r * 60 + i);
|
|
846
883
|
}
|
|
847
|
-
function
|
|
848
|
-
return e +
|
|
884
|
+
function W(e, t) {
|
|
885
|
+
return e + U(t) * 6e4;
|
|
849
886
|
}
|
|
850
|
-
var
|
|
887
|
+
var G = {
|
|
851
888
|
day: "2-digit",
|
|
852
889
|
month: "2-digit",
|
|
853
890
|
year: "numeric",
|
|
854
891
|
hour: "2-digit",
|
|
855
892
|
minute: "2-digit"
|
|
856
893
|
};
|
|
857
|
-
function
|
|
858
|
-
let i =
|
|
894
|
+
function K(e, t, n, r = G) {
|
|
895
|
+
let i = W(e, t);
|
|
859
896
|
return new Intl.DateTimeFormat(n, {
|
|
860
897
|
...r,
|
|
861
898
|
timeZone: "UTC"
|
|
862
899
|
}).format(i);
|
|
863
900
|
}
|
|
864
|
-
function
|
|
865
|
-
return
|
|
901
|
+
function fe(e, t, n = G) {
|
|
902
|
+
return K(Date.now(), e, t, n);
|
|
866
903
|
}
|
|
867
904
|
//#endregion
|
|
868
905
|
//#region src/lib/utils/permissions.ts
|
|
869
|
-
function
|
|
906
|
+
function pe(e, t) {
|
|
870
907
|
if (!e) return !1;
|
|
871
908
|
if (e.isAdmin) return !0;
|
|
872
909
|
let n = t.toUpperCase();
|
|
@@ -1121,7 +1158,7 @@ var J = class {
|
|
|
1121
1158
|
return console.error("[/sites/get]", e), Promise.reject(e);
|
|
1122
1159
|
}
|
|
1123
1160
|
};
|
|
1124
|
-
},
|
|
1161
|
+
}, me = class {
|
|
1125
1162
|
props;
|
|
1126
1163
|
constructor(e) {
|
|
1127
1164
|
this.props = e;
|
|
@@ -1223,7 +1260,7 @@ var J = class {
|
|
|
1223
1260
|
}
|
|
1224
1261
|
}
|
|
1225
1262
|
};
|
|
1226
|
-
},
|
|
1263
|
+
}, he = (e) => btoa(e), ge = class {
|
|
1227
1264
|
props;
|
|
1228
1265
|
authentication;
|
|
1229
1266
|
constructor(e) {
|
|
@@ -1232,7 +1269,7 @@ var J = class {
|
|
|
1232
1269
|
authParams = () => {
|
|
1233
1270
|
let { token: e, browserId: t, publication: n, siteName: r, project: i } = this.authentication;
|
|
1234
1271
|
return {
|
|
1235
|
-
token:
|
|
1272
|
+
token: he(e),
|
|
1236
1273
|
browserId: t,
|
|
1237
1274
|
publication: n,
|
|
1238
1275
|
siteName: r,
|
|
@@ -1261,7 +1298,7 @@ var J = class {
|
|
|
1261
1298
|
...n ?? {}
|
|
1262
1299
|
}
|
|
1263
1300
|
});
|
|
1264
|
-
},
|
|
1301
|
+
}, _e = class {
|
|
1265
1302
|
props;
|
|
1266
1303
|
authentication;
|
|
1267
1304
|
constructor(e) {
|
|
@@ -1291,7 +1328,7 @@ var J = class {
|
|
|
1291
1328
|
...t
|
|
1292
1329
|
});
|
|
1293
1330
|
};
|
|
1294
|
-
},
|
|
1331
|
+
}, ve = class {
|
|
1295
1332
|
props;
|
|
1296
1333
|
authentication;
|
|
1297
1334
|
constructor(e) {
|
|
@@ -1314,7 +1351,7 @@ var J = class {
|
|
|
1314
1351
|
return console.error("[/audios/adminConfiguration]", e), Promise.reject(e);
|
|
1315
1352
|
}
|
|
1316
1353
|
};
|
|
1317
|
-
},
|
|
1354
|
+
}, ye = class {
|
|
1318
1355
|
props;
|
|
1319
1356
|
authentication;
|
|
1320
1357
|
constructor(e) {
|
|
@@ -1350,7 +1387,7 @@ var J = class {
|
|
|
1350
1387
|
return console.error("[/categories/test]", e), Promise.reject(e);
|
|
1351
1388
|
}
|
|
1352
1389
|
};
|
|
1353
|
-
},
|
|
1390
|
+
}, be = class {
|
|
1354
1391
|
props;
|
|
1355
1392
|
authentication;
|
|
1356
1393
|
constructor(e) {
|
|
@@ -1393,7 +1430,7 @@ var J = class {
|
|
|
1393
1430
|
return console.error("[/ckeditor/audioCode]", e), Promise.reject(e);
|
|
1394
1431
|
}
|
|
1395
1432
|
};
|
|
1396
|
-
},
|
|
1433
|
+
}, xe = class {
|
|
1397
1434
|
props;
|
|
1398
1435
|
authentication;
|
|
1399
1436
|
constructor(e) {
|
|
@@ -1431,7 +1468,7 @@ var J = class {
|
|
|
1431
1468
|
return console.error("[/copilot/snooze]", e), Promise.reject(e);
|
|
1432
1469
|
}
|
|
1433
1470
|
};
|
|
1434
|
-
},
|
|
1471
|
+
}, Se = class {
|
|
1435
1472
|
props;
|
|
1436
1473
|
authentication;
|
|
1437
1474
|
constructor(e) {
|
|
@@ -1597,7 +1634,7 @@ var J = class {
|
|
|
1597
1634
|
return console.error("[/comments/user/get]", e), Promise.reject(e);
|
|
1598
1635
|
}
|
|
1599
1636
|
};
|
|
1600
|
-
},
|
|
1637
|
+
}, Ce = class {
|
|
1601
1638
|
props;
|
|
1602
1639
|
authentication;
|
|
1603
1640
|
constructor(e) {
|
|
@@ -1673,7 +1710,7 @@ var J = class {
|
|
|
1673
1710
|
return console.error("[/contributions/paymentGateways/get]", e), Promise.reject(e);
|
|
1674
1711
|
}
|
|
1675
1712
|
};
|
|
1676
|
-
},
|
|
1713
|
+
}, we = class {
|
|
1677
1714
|
props;
|
|
1678
1715
|
authentication;
|
|
1679
1716
|
constructor(e) {
|
|
@@ -1729,7 +1766,7 @@ var J = class {
|
|
|
1729
1766
|
return console.error("[/sections/update]", e), Promise.reject(e);
|
|
1730
1767
|
}
|
|
1731
1768
|
};
|
|
1732
|
-
},
|
|
1769
|
+
}, Te = class {
|
|
1733
1770
|
props;
|
|
1734
1771
|
authentication;
|
|
1735
1772
|
constructor(e) {
|
|
@@ -2015,7 +2052,7 @@ var J = class {
|
|
|
2015
2052
|
return console.error("[/productivityPlan/reviewr/detail]", e), Promise.reject(e);
|
|
2016
2053
|
}
|
|
2017
2054
|
};
|
|
2018
|
-
},
|
|
2055
|
+
}, Ee = class {
|
|
2019
2056
|
props;
|
|
2020
2057
|
authentication;
|
|
2021
2058
|
constructor(e) {
|
|
@@ -2038,7 +2075,7 @@ var J = class {
|
|
|
2038
2075
|
return console.error("[/events/get]", e), Promise.reject(e);
|
|
2039
2076
|
}
|
|
2040
2077
|
};
|
|
2041
|
-
},
|
|
2078
|
+
}, De = class {
|
|
2042
2079
|
props;
|
|
2043
2080
|
authentication;
|
|
2044
2081
|
constructor(e) {
|
|
@@ -2064,7 +2101,7 @@ var J = class {
|
|
|
2064
2101
|
return console.error("[/fileExplorer/getFolders]", e), Promise.reject(e);
|
|
2065
2102
|
}
|
|
2066
2103
|
};
|
|
2067
|
-
},
|
|
2104
|
+
}, Oe = class {
|
|
2068
2105
|
props;
|
|
2069
2106
|
authentication;
|
|
2070
2107
|
constructor(e) {
|
|
@@ -2080,7 +2117,7 @@ var J = class {
|
|
|
2080
2117
|
return console.error("[/updateCDN]", e), Promise.reject(e);
|
|
2081
2118
|
}
|
|
2082
2119
|
};
|
|
2083
|
-
},
|
|
2120
|
+
}, ke = class {
|
|
2084
2121
|
props;
|
|
2085
2122
|
authentication;
|
|
2086
2123
|
constructor(e) {
|
|
@@ -2276,7 +2313,7 @@ var J = class {
|
|
|
2276
2313
|
return console.error("[/images/ckeditor/getImageComparation]", e), Promise.reject(e);
|
|
2277
2314
|
}
|
|
2278
2315
|
};
|
|
2279
|
-
},
|
|
2316
|
+
}, Ae = class {
|
|
2280
2317
|
props;
|
|
2281
2318
|
authentication;
|
|
2282
2319
|
constructor(e) {
|
|
@@ -2849,7 +2886,7 @@ var J = class {
|
|
|
2849
2886
|
return console.error("[/news/searchConsole/inspection]", e), Promise.reject(e);
|
|
2850
2887
|
}
|
|
2851
2888
|
};
|
|
2852
|
-
},
|
|
2889
|
+
}, je = class {
|
|
2853
2890
|
props;
|
|
2854
2891
|
authentication;
|
|
2855
2892
|
constructor(e) {
|
|
@@ -2879,7 +2916,7 @@ var J = class {
|
|
|
2879
2916
|
return console.error("[/notification/topics]", e), Promise.reject(e);
|
|
2880
2917
|
}
|
|
2881
2918
|
};
|
|
2882
|
-
},
|
|
2919
|
+
}, Me = class {
|
|
2883
2920
|
props;
|
|
2884
2921
|
authentication;
|
|
2885
2922
|
constructor(e) {
|
|
@@ -2955,7 +2992,7 @@ var J = class {
|
|
|
2955
2992
|
return console.error("[/people/adminConfiguration]", e), Promise.reject(e);
|
|
2956
2993
|
}
|
|
2957
2994
|
};
|
|
2958
|
-
},
|
|
2995
|
+
}, Ne = class {
|
|
2959
2996
|
props;
|
|
2960
2997
|
authentication;
|
|
2961
2998
|
constructor(e) {
|
|
@@ -3011,7 +3048,7 @@ var J = class {
|
|
|
3011
3048
|
return console.error("[/planning/activity/copy]", e), Promise.reject(e);
|
|
3012
3049
|
}
|
|
3013
3050
|
};
|
|
3014
|
-
},
|
|
3051
|
+
}, Pe = class {
|
|
3015
3052
|
props;
|
|
3016
3053
|
authentication;
|
|
3017
3054
|
constructor(e) {
|
|
@@ -3169,7 +3206,7 @@ var J = class {
|
|
|
3169
3206
|
return console.error("[/polls/publish/now]", e), Promise.reject(e);
|
|
3170
3207
|
}
|
|
3171
3208
|
};
|
|
3172
|
-
},
|
|
3209
|
+
}, $ = class {
|
|
3173
3210
|
props;
|
|
3174
3211
|
authentication;
|
|
3175
3212
|
constructor(e) {
|
|
@@ -3337,7 +3374,7 @@ var J = class {
|
|
|
3337
3374
|
return console.error("[/recipes/publish/schedule]", e), Promise.reject(e);
|
|
3338
3375
|
}
|
|
3339
3376
|
};
|
|
3340
|
-
},
|
|
3377
|
+
}, Fe = class {
|
|
3341
3378
|
props;
|
|
3342
3379
|
authentication;
|
|
3343
3380
|
constructor(e) {
|
|
@@ -3433,7 +3470,7 @@ var J = class {
|
|
|
3433
3470
|
return console.error("[/users/actions/resetMfa]", e), Promise.reject(e);
|
|
3434
3471
|
}
|
|
3435
3472
|
};
|
|
3436
|
-
},
|
|
3473
|
+
}, Ie = class {
|
|
3437
3474
|
props;
|
|
3438
3475
|
authentication;
|
|
3439
3476
|
constructor(e) {
|
|
@@ -3490,7 +3527,7 @@ var J = class {
|
|
|
3490
3527
|
return console.error("[/zones/order]", e), Promise.reject(e);
|
|
3491
3528
|
}
|
|
3492
3529
|
};
|
|
3493
|
-
},
|
|
3530
|
+
}, Le = class {
|
|
3494
3531
|
props;
|
|
3495
3532
|
authentication;
|
|
3496
3533
|
constructor(e) {
|
|
@@ -3523,7 +3560,7 @@ var J = class {
|
|
|
3523
3560
|
return console.error("[/workpaper/status]", e), Promise.reject(e);
|
|
3524
3561
|
}
|
|
3525
3562
|
};
|
|
3526
|
-
},
|
|
3563
|
+
}, Re = class {
|
|
3527
3564
|
props;
|
|
3528
3565
|
authentication;
|
|
3529
3566
|
constructor(e) {
|
|
@@ -3567,7 +3604,7 @@ var J = class {
|
|
|
3567
3604
|
return console.error("[/vods/playlist/create]", e), Promise.reject(e);
|
|
3568
3605
|
}
|
|
3569
3606
|
};
|
|
3570
|
-
},
|
|
3607
|
+
}, ze = class {
|
|
3571
3608
|
props;
|
|
3572
3609
|
authentication;
|
|
3573
3610
|
constructor(e) {
|
|
@@ -3929,7 +3966,7 @@ var J = class {
|
|
|
3929
3966
|
return console.error("[/videos/nativos/download]", e), Promise.reject(e);
|
|
3930
3967
|
}
|
|
3931
3968
|
};
|
|
3932
|
-
},
|
|
3969
|
+
}, Be = class {
|
|
3933
3970
|
props;
|
|
3934
3971
|
authentication;
|
|
3935
3972
|
constructor(e) {
|
|
@@ -4046,7 +4083,7 @@ var J = class {
|
|
|
4046
4083
|
return console.error("[/trivias/edit/inline]", e), Promise.reject(e);
|
|
4047
4084
|
}
|
|
4048
4085
|
};
|
|
4049
|
-
},
|
|
4086
|
+
}, Ve = class {
|
|
4050
4087
|
props;
|
|
4051
4088
|
authentication;
|
|
4052
4089
|
constructor(e) {
|
|
@@ -4062,7 +4099,7 @@ var J = class {
|
|
|
4062
4099
|
return console.error("[/transcribe/get]", e), Promise.reject(e);
|
|
4063
4100
|
}
|
|
4064
4101
|
};
|
|
4065
|
-
},
|
|
4102
|
+
}, He = class {
|
|
4066
4103
|
props;
|
|
4067
4104
|
authentication;
|
|
4068
4105
|
constructor(e) {
|
|
@@ -4168,7 +4205,7 @@ var J = class {
|
|
|
4168
4205
|
return console.error("[/tags/changeStatus]", e), Promise.reject(e);
|
|
4169
4206
|
}
|
|
4170
4207
|
};
|
|
4171
|
-
},
|
|
4208
|
+
}, Ue = class {
|
|
4172
4209
|
props;
|
|
4173
4210
|
authentication;
|
|
4174
4211
|
publications;
|
|
@@ -4200,6 +4237,6 @@ var J = class {
|
|
|
4200
4237
|
};
|
|
4201
4238
|
};
|
|
4202
4239
|
//#endregion
|
|
4203
|
-
export {
|
|
4240
|
+
export { M as $, me as A, U as B, Se as C, re as Ct, ve as D, ye as E, J as F, P as G, L as H, q as I, R as J, z as K, pe as L, Z as M, X as N, _e as O, Y as P, j as Q, K as R, Ce as S, s as St, be as T, p as Tt, I as U, W as V, F as W, H as X, V as Y, N as Z, Oe as _, b as _t, ze as a, oe as at, Te as b, a as bt, Ie as c, C as ct, Pe as d, y as dt, T as et, Ne as f, i as ft, ke as g, c as gt, Ae as h, l as ht, Be as i, ue as it, Q as j, ge as k, Fe as l, S as lt, je as m, g as mt, He as n, de as nt, Re as o, w as ot, Me as p, te as pt, B as q, Ve as r, le as rt, Le as s, se as st, Ue as t, D as tt, $ as u, x as ut, De as v, ne as vt, xe as w, d as wt, we as x, o as xt, Ee as y, ee as yt, fe as z };
|
|
4204
4241
|
|
|
4205
|
-
//# sourceMappingURL=services-
|
|
4242
|
+
//# sourceMappingURL=services-BQ1IbdWe.js.map
|