@caraer/client 2.0.377 → 2.0.378

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 CHANGED
@@ -2124,9 +2124,9 @@ export interface ModelRecord {
2124
2124
  'deleted'?: boolean;
2125
2125
  'complete'?: boolean;
2126
2126
  'uuid': string;
2127
+ 'user'?: PublicUserDTO;
2127
2128
  'properties'?: Array<FilledProperty>;
2128
2129
  '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;
2120
2121
  'properties'?: Array<FilledProperty>;
2121
2122
  'objects'?: {
2122
2123
  [key: string]: any | null;
2123
2124
  };
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;
2120
2121
  'properties'?: Array<FilledProperty>;
2121
2122
  'objects'?: {
2122
2123
  [key: string]: any | null;
2123
2124
  };
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]
20
21
  **properties** | [**Array&lt;FilledProperty&gt;**](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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caraer/client",
3
- "version": "2.0.377",
3
+ "version": "2.0.378",
4
4
  "description": "Generated TypeScript client for the Caraer API",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {