@caraer/client 2.0.432 → 2.0.433

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
@@ -2838,8 +2838,8 @@ export interface ModelRecord {
2838
2838
  'updatedByUuid'?: string;
2839
2839
  'deletedByUuid'?: string;
2840
2840
  'index'?: number;
2841
- 'deleted'?: boolean;
2842
2841
  'complete'?: boolean;
2842
+ 'deleted'?: boolean;
2843
2843
  'uuid': string;
2844
2844
  'properties'?: Array<FilledProperty>;
2845
2845
  'objects'?: { [key: string]: any | null; };
@@ -5255,8 +5255,8 @@ export interface Team {
5255
5255
  'filtersString'?: string;
5256
5256
  'filters'?: { [key: string]: Filter; };
5257
5257
  'memberCount'?: number;
5258
- 'deleted'?: boolean;
5259
5258
  'complete'?: boolean;
5259
+ 'deleted'?: boolean;
5260
5260
  'uuid': string;
5261
5261
  }
5262
5262
  export interface TeamDTO {
package/dist/api.d.ts CHANGED
@@ -2831,8 +2831,8 @@ export interface ModelRecord {
2831
2831
  'updatedByUuid'?: string;
2832
2832
  'deletedByUuid'?: string;
2833
2833
  'index'?: number;
2834
- 'deleted'?: boolean;
2835
2834
  'complete'?: boolean;
2835
+ 'deleted'?: boolean;
2836
2836
  'uuid': string;
2837
2837
  'properties'?: Array<FilledProperty>;
2838
2838
  'objects'?: {
@@ -5278,8 +5278,8 @@ export interface Team {
5278
5278
  [key: string]: Filter;
5279
5279
  };
5280
5280
  'memberCount'?: number;
5281
- 'deleted'?: boolean;
5282
5281
  'complete'?: boolean;
5282
+ 'deleted'?: boolean;
5283
5283
  'uuid': string;
5284
5284
  }
5285
5285
  export interface TeamDTO {
package/dist/esm/api.d.ts CHANGED
@@ -2831,8 +2831,8 @@ export interface ModelRecord {
2831
2831
  'updatedByUuid'?: string;
2832
2832
  'deletedByUuid'?: string;
2833
2833
  'index'?: number;
2834
- 'deleted'?: boolean;
2835
2834
  'complete'?: boolean;
2835
+ 'deleted'?: boolean;
2836
2836
  'uuid': string;
2837
2837
  'properties'?: Array<FilledProperty>;
2838
2838
  'objects'?: {
@@ -5278,8 +5278,8 @@ export interface Team {
5278
5278
  [key: string]: Filter;
5279
5279
  };
5280
5280
  'memberCount'?: number;
5281
- 'deleted'?: boolean;
5282
5281
  'complete'?: boolean;
5282
+ 'deleted'?: boolean;
5283
5283
  'uuid': string;
5284
5284
  }
5285
5285
  export interface TeamDTO {
package/docs/Record.md CHANGED
@@ -14,8 +14,8 @@ Name | Type | Description | Notes
14
14
  **updatedByUuid** | **string** | | [optional] [default to undefined]
15
15
  **deletedByUuid** | **string** | | [optional] [default to undefined]
16
16
  **index** | **number** | | [optional] [default to undefined]
17
- **deleted** | **boolean** | | [optional] [default to undefined]
18
17
  **complete** | **boolean** | | [optional] [default to undefined]
18
+ **deleted** | **boolean** | | [optional] [default to undefined]
19
19
  **uuid** | **string** | | [default to undefined]
20
20
  **properties** | [**Array&lt;FilledProperty&gt;**](FilledProperty.md) | | [optional] [default to undefined]
21
21
  **objects** | **{ [key: string]: any | null; }** | | [optional] [default to undefined]
@@ -36,8 +36,8 @@ const instance: ModelRecord = {
36
36
  updatedByUuid,
37
37
  deletedByUuid,
38
38
  index,
39
- deleted,
40
39
  complete,
40
+ deleted,
41
41
  uuid,
42
42
  properties,
43
43
  objects,
package/docs/Team.md CHANGED
@@ -19,8 +19,8 @@ Name | Type | Description | Notes
19
19
  **filtersString** | **string** | | [optional] [default to undefined]
20
20
  **filters** | [**{ [key: string]: Filter; }**](Filter.md) | | [optional] [default to undefined]
21
21
  **memberCount** | **number** | | [optional] [default to undefined]
22
- **deleted** | **boolean** | | [optional] [default to undefined]
23
22
  **complete** | **boolean** | | [optional] [default to undefined]
23
+ **deleted** | **boolean** | | [optional] [default to undefined]
24
24
  **uuid** | **string** | | [default to undefined]
25
25
 
26
26
  ## Example
@@ -43,8 +43,8 @@ const instance: Team = {
43
43
  filtersString,
44
44
  filters,
45
45
  memberCount,
46
- deleted,
47
46
  complete,
47
+ deleted,
48
48
  uuid,
49
49
  };
50
50
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caraer/client",
3
- "version": "2.0.432",
3
+ "version": "2.0.433",
4
4
  "description": "Generated TypeScript client for the Caraer API",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {