front-back-poker-types 5.0.190 → 5.0.192

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.
@@ -1,11 +1,11 @@
1
1
  import { Nullable } from '../types';
2
- export type RoomLogSource = 'from-back' | 'from-front';
2
+ export type RoomLogSource = 'back' | 'front';
3
3
  export type RoomLog = {
4
- id: string;
4
+ id: number;
5
5
  source: RoomLogSource;
6
6
  content: string;
7
7
  type: string;
8
- timestamp: string;
8
+ timestamp: number;
9
9
  userId: Nullable<number>;
10
10
  roomId: Nullable<number>;
11
11
  handId: Nullable<number>;
@@ -1,11 +1,11 @@
1
1
  import { Nullable } from '../types';
2
- export type RoomLogSource = 'from-back' | 'from-front';
2
+ export type RoomLogSource = 'back' | 'front';
3
3
  export type RoomLog = {
4
- id: string;
4
+ id: number;
5
5
  source: RoomLogSource;
6
6
  content: string;
7
7
  type: string;
8
- timestamp: string;
8
+ timestamp: number;
9
9
  userId: Nullable<number>;
10
10
  roomId: Nullable<number>;
11
11
  handId: Nullable<number>;
package/dist/index.d.ts CHANGED
@@ -309,13 +309,13 @@ type PostTournamentRegistrationResponse = {
309
309
  targetRoomId: number | undefined;
310
310
  };
311
311
 
312
- type RoomLogSource = 'from-back' | 'from-front';
312
+ type RoomLogSource = 'back' | 'front';
313
313
  type RoomLog = {
314
- id: string;
314
+ id: number;
315
315
  source: RoomLogSource;
316
316
  content: string;
317
317
  type: string;
318
- timestamp: string;
318
+ timestamp: number;
319
319
  userId: Nullable<number>;
320
320
  roomId: Nullable<number>;
321
321
  handId: Nullable<number>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "front-back-poker-types",
3
- "version": "5.0.190",
3
+ "version": "5.0.192",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "files": [