Skip to content

Commit 8d26db4

Browse files
committed
chore: fix reuse
1 parent 8111feb commit 8d26db4

File tree

11 files changed

+36
-66
lines changed

11 files changed

+36
-66
lines changed

code/config/config.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

code/models/index.js

Lines changed: 0 additions & 43 deletions
This file was deleted.

code/src/api/v2/controllers/getServerSideEvents.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
import { Request, Response } from "express";
26

37
const clients: Map<string, Response> = new Map();

code/src/database/controllers/image.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
import {
26
ImageAttributes,
37
ImageIdentifier,

code/src/database/controllers/task.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
import {
26
TaskAttributes,
37
TaskCreationAttributes,

code/src/database/controllers/thread-answer.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
import {
26
ThreadAnswerAttributes,
37
ThreadAnswerIdentifier,

code/src/database/controllers/thread.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
import {
26
ThreadAttributes,
37
ThreadIdentifier,

code/src/database/models/image.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
import { Sequelize, Model, DataTypes } from "sequelize";
26
import { TaskModel } from "./task.js";
37

code/src/database/models/task.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
import { Sequelize, Model, DataTypes } from "sequelize";
26

37
export type TaskStatus = "created" | "active" | "failed" | "completed";

code/src/database/models/thread-answer.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
import { Sequelize, Model, DataTypes } from "sequelize";
26
import { WeaveUser } from "@inditextech/weave-types";
37
import { ThreadModel } from "./thread.js";

0 commit comments

Comments
 (0)