@caraer/client 2.0.385 → 2.0.386
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/api.ts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/esm/api.d.ts +1 -1
- package/docs/Record.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2957,9 +2957,9 @@ export interface ModelRecord {
|
|
|
2957
2957
|
'deleted'?: boolean;
|
|
2958
2958
|
'complete'?: boolean;
|
|
2959
2959
|
'uuid': string;
|
|
2960
|
+
'user'?: PublicUserDTO;
|
|
2960
2961
|
'properties'?: Array<FilledProperty>;
|
|
2961
2962
|
'objects'?: { [key: string]: any | null; };
|
|
2962
|
-
'user'?: PublicUserDTO;
|
|
2963
2963
|
}
|
|
2964
2964
|
export interface MultiLine extends PropertyFormat {
|
|
2965
2965
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -2950,11 +2950,11 @@ export interface ModelRecord {
|
|
|
2950
2950
|
'deleted'?: boolean;
|
|
2951
2951
|
'complete'?: boolean;
|
|
2952
2952
|
'uuid': string;
|
|
2953
|
+
'user'?: PublicUserDTO;
|
|
2953
2954
|
'properties'?: Array<FilledProperty>;
|
|
2954
2955
|
'objects'?: {
|
|
2955
2956
|
[key: string]: any | null;
|
|
2956
2957
|
};
|
|
2957
|
-
'user'?: PublicUserDTO;
|
|
2958
2958
|
}
|
|
2959
2959
|
export interface MultiLine extends PropertyFormat {
|
|
2960
2960
|
}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2950,11 +2950,11 @@ export interface ModelRecord {
|
|
|
2950
2950
|
'deleted'?: boolean;
|
|
2951
2951
|
'complete'?: boolean;
|
|
2952
2952
|
'uuid': string;
|
|
2953
|
+
'user'?: PublicUserDTO;
|
|
2953
2954
|
'properties'?: Array<FilledProperty>;
|
|
2954
2955
|
'objects'?: {
|
|
2955
2956
|
[key: string]: any | null;
|
|
2956
2957
|
};
|
|
2957
|
-
'user'?: PublicUserDTO;
|
|
2958
2958
|
}
|
|
2959
2959
|
export interface MultiLine extends PropertyFormat {
|
|
2960
2960
|
}
|
package/docs/Record.md
CHANGED
|
@@ -17,9 +17,9 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**deleted** | **boolean** | | [optional] [default to undefined]
|
|
18
18
|
**complete** | **boolean** | | [optional] [default to undefined]
|
|
19
19
|
**uuid** | **string** | | [default to undefined]
|
|
20
|
+
**user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
|
|
20
21
|
**properties** | [**Array<FilledProperty>**](FilledProperty.md) | | [optional] [default to undefined]
|
|
21
22
|
**objects** | **{ [key: string]: any | null; }** | | [optional] [default to undefined]
|
|
22
|
-
**user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
|
|
23
23
|
|
|
24
24
|
## Example
|
|
25
25
|
|
|
@@ -39,9 +39,9 @@ const instance: ModelRecord = {
|
|
|
39
39
|
deleted,
|
|
40
40
|
complete,
|
|
41
41
|
uuid,
|
|
42
|
+
user,
|
|
42
43
|
properties,
|
|
43
44
|
objects,
|
|
44
|
-
user,
|
|
45
45
|
};
|
|
46
46
|
```
|
|
47
47
|
|