@explo-tech/fido-api 3.5.3 → 3.5.5

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/models/Commit.ts CHANGED
@@ -6,5 +6,7 @@ export type Commit = {
6
6
  readonly id?: string;
7
7
  commitMessage: string;
8
8
  readonly parentId: string | null;
9
+ readonly userId?: number;
10
+ readonly createdAt?: string;
9
11
  };
10
12
 
@@ -9,5 +9,6 @@ export type CreateCommitRequest = {
9
9
  commitMessage: string;
10
10
  parentCommitId: UUID;
11
11
  changes: Array<ResourceChange>;
12
+ userId: number | null;
12
13
  };
13
14
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@explo-tech/fido-api",
3
3
  "description": "Fido api",
4
4
  "homepage": "https://github.com/trust-kaz/fido",
5
- "version": "3.5.3",
5
+ "version": "3.5.5",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"