@stoker-platform/types 0.5.37 → 0.5.38

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/types",
3
- "version": "0.5.37",
3
+ "version": "0.5.38",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "src/main.ts",
@@ -21,7 +21,7 @@ export interface StokerRelationObject {
21
21
  }
22
22
  export type StokerRelationArray = string[]
23
23
 
24
- export interface StokerRecord {
24
+ export interface SystemFields {
25
25
  Collection_Path: string[]
26
26
  Last_Write_At: Timestamp | FieldValue
27
27
  Last_Save_At: Timestamp | FieldValue
@@ -32,6 +32,9 @@ export interface StokerRecord {
32
32
  Created_At: Timestamp | FieldValue
33
33
  Saved_At: Timestamp | FieldValue
34
34
  Created_By: string
35
+ }
36
+
37
+ export interface StokerRecord extends SystemFields {
35
38
  [key: string]: any
36
39
  }
37
40
  /* eslint-enable @typescript-eslint/no-explicit-any */