sass-cms-template-common 0.0.22 → 0.0.23

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/server.d.ts CHANGED
@@ -1886,6 +1886,8 @@ export declare interface CopilotOpportunitiesResponse extends CmsResponse {
1886
1886
  export declare interface CopilotOpportunity {
1887
1887
  id?: string;
1888
1888
  title: string;
1889
+ /** Descripción/resumen de la oportunidad (texto libre). */
1890
+ description?: string;
1889
1891
  /** Tema/categoría. */
1890
1892
  topic?: string;
1891
1893
  status: CopilotOpportunityStatus;
@@ -1901,6 +1903,20 @@ export declare interface CopilotOpportunity {
1901
1903
  reasons?: string[];
1902
1904
  /** Si el editor ya la siguió/guardó (acción "save" de `copilot/actions`). */
1903
1905
  is_followed?: boolean;
1906
+ /**
1907
+ * Señal de interés del editor sobre el tema (acciones like/dislike, NAA-4767):
1908
+ * `"positive"` (like) · `"negative"` (dislike) · `null`/ausente (sin señal). El
1909
+ * consumidor la usa para dejar el botón de me gusta/no me gusta ya marcado al
1910
+ * cargar el feed.
1911
+ */
1912
+ interest_signal?: string | null;
1913
+ /**
1914
+ * Redactor asignado (acción "assign"). Si viene con valor, la oportunidad está
1915
+ * asignada (el consumidor la muestra en estado "Asignado"). El micro NO
1916
+ * garantiza la forma (se observó que puede no ser string: id numérico, objeto o
1917
+ * lista): el consumidor debe evaluar solo si viene "lleno", sin asumir el tipo.
1918
+ */
1919
+ assigned_to?: unknown;
1904
1920
  }
1905
1921
 
1906
1922
  /**
@@ -4088,6 +4104,13 @@ export declare interface Publication {
4088
4104
  timeFormat: string;
4089
4105
  type: string;
4090
4106
  updateAdmin: PublicationUpdateAdmin;
4107
+ /**
4108
+ * ¿La publicación tiene habilitado el servicio de sugerencias CoPilot?
4109
+ * Lo devuelve `POST /publications/get` por publicación. Opcional: si el campo
4110
+ * no llega, se interpreta como **deshabilitado** (el gestor muestra el aviso
4111
+ * "no configurado" en lugar de la tabla de sugerencias).
4112
+ */
4113
+ copilotEnabled?: boolean;
4091
4114
  /**
4092
4115
  * Sub-sitios (multisitio) de esta publicación. Opcional: hoy el servicio no
4093
4116
  * lo devuelve y las publicaciones se listan planas. Cuando el backend lo
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, 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";
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-CBf1oWSA.js";
2
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 };
@@ -288,7 +288,7 @@ var r = t("", {
288
288
  dark: "#2C2249"
289
289
  },
290
290
  on: {
291
- light: "#4F378A",
291
+ light: "#21005D",
292
292
  dark: "#D9C6FF"
293
293
  }
294
294
  },
@@ -377,6 +377,10 @@ var r = t("", {
377
377
  light: "#ECEDF6",
378
378
  dark: "#262A33"
379
379
  },
380
+ topicHoverBg: {
381
+ light: "#D4D5DE",
382
+ dark: "#313640"
383
+ },
380
384
  topicBorder: {
381
385
  light: "#C4C6CE",
382
386
  dark: "#43474E"
@@ -4288,4 +4292,4 @@ var J = class {
4288
4292
  //#endregion
4289
4293
  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 };
4290
4294
 
4291
- //# sourceMappingURL=services-DiR0yIFz.js.map
4295
+ //# sourceMappingURL=services-CBf1oWSA.js.map