@caraer/client 2.0.379 → 2.0.381
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
|
@@ -2124,9 +2124,9 @@ export interface ModelRecord {
|
|
|
2124
2124
|
'deleted'?: boolean;
|
|
2125
2125
|
'complete'?: boolean;
|
|
2126
2126
|
'uuid': string;
|
|
2127
|
-
'user'?: PublicUserDTO;
|
|
2128
2127
|
'properties'?: Array<FilledProperty>;
|
|
2129
2128
|
'objects'?: { [key: string]: any | null; };
|
|
2129
|
+
'user'?: PublicUserDTO;
|
|
2130
2130
|
}
|
|
2131
2131
|
/**
|
|
2132
2132
|
* Request to morph a record
|
package/dist/api.d.ts
CHANGED
|
@@ -2117,11 +2117,11 @@ export interface ModelRecord {
|
|
|
2117
2117
|
'deleted'?: boolean;
|
|
2118
2118
|
'complete'?: boolean;
|
|
2119
2119
|
'uuid': string;
|
|
2120
|
-
'user'?: PublicUserDTO;
|
|
2121
2120
|
'properties'?: Array<FilledProperty>;
|
|
2122
2121
|
'objects'?: {
|
|
2123
2122
|
[key: string]: any | null;
|
|
2124
2123
|
};
|
|
2124
|
+
'user'?: PublicUserDTO;
|
|
2125
2125
|
}
|
|
2126
2126
|
/**
|
|
2127
2127
|
* Request to morph a record
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2117,11 +2117,11 @@ export interface ModelRecord {
|
|
|
2117
2117
|
'deleted'?: boolean;
|
|
2118
2118
|
'complete'?: boolean;
|
|
2119
2119
|
'uuid': string;
|
|
2120
|
-
'user'?: PublicUserDTO;
|
|
2121
2120
|
'properties'?: Array<FilledProperty>;
|
|
2122
2121
|
'objects'?: {
|
|
2123
2122
|
[key: string]: any | null;
|
|
2124
2123
|
};
|
|
2124
|
+
'user'?: PublicUserDTO;
|
|
2125
2125
|
}
|
|
2126
2126
|
/**
|
|
2127
2127
|
* Request to morph a record
|
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]
|
|
21
20
|
**properties** | [**Array<FilledProperty>**](FilledProperty.md) | | [optional] [default to undefined]
|
|
22
21
|
**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,
|
|
43
42
|
properties,
|
|
44
43
|
objects,
|
|
44
|
+
user,
|
|
45
45
|
};
|
|
46
46
|
```
|
|
47
47
|
|