fac-shared-db 1.1.0 → 1.1.1
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.
|
@@ -11,8 +11,6 @@ export interface IAcoesConfig extends Document {
|
|
|
11
11
|
nome: string;
|
|
12
12
|
maxParticipantes: number;
|
|
13
13
|
}[];
|
|
14
|
-
/** ID do bot externo de marcar ação (DM) */
|
|
15
|
-
marcarAcaoBotUserId: string;
|
|
16
14
|
/** Calendário semanal de ações (dia 0=domingo .. 6=sábado) */
|
|
17
15
|
calendarioSemanal: {
|
|
18
16
|
dia: number;
|
|
@@ -18,7 +18,6 @@ const AcoesConfigSchema = new Schema({
|
|
|
18
18
|
{ chave: "madereira", nome: "Madereira", maxParticipantes: 10 },
|
|
19
19
|
],
|
|
20
20
|
},
|
|
21
|
-
marcarAcaoBotUserId: { type: String, default: "1479954523886718997" },
|
|
22
21
|
calendarioSemanal: {
|
|
23
22
|
type: [{
|
|
24
23
|
dia: { type: Number, required: true },
|