sass-template-common 0.9.237 → 0.9.239

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.
@@ -233,6 +233,19 @@ export declare type BucketOriginConfig = {
233
233
  menu?: boolean;
234
234
  /** Sirve los banners (home/seccion/nota) desde el bucket. */
235
235
  banners?: boolean;
236
+ /**
237
+ * Referer exigido por la bucket policy (`aws:Referer`). Sin este header el
238
+ * bucket devuelve 403 aunque la ruta/archivo exista. Default: el mismo
239
+ * valor que usa `getRankingS3` (bucket propio de Debate).
240
+ */
241
+ referer?: string;
242
+ /**
243
+ * Segmento de sitio a usar en la ruta del bucket cuando el sitio no tiene
244
+ * `servicePrefix` (ej. soyfutbol). Sin este valor, y sin `servicePrefix`,
245
+ * se usa `clientName` como fallback para que la ruta quede bien formada
246
+ * (ej. `debate/debate/menu/...` en vez de `debate//menu/...`).
247
+ */
248
+ forceSite?: string;
236
249
  };
237
250
 
238
251
  export declare const buildTagUrl: (tag: Tag, paths: RoutePathConfig) => string;