@caraer/client 2.0.374 → 2.0.376

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
@@ -3546,8 +3546,8 @@ export interface SettingField {
3546
3546
  'hidden'?: boolean;
3547
3547
  'disabled'?: boolean;
3548
3548
  'options'?: Array<SettingOption>;
3549
- 'defaultValue'?: any;
3550
3549
  'value'?: any;
3550
+ 'defaultValue'?: any;
3551
3551
  }
3552
3552
 
3553
3553
  export const SettingFieldTypeEnum = {
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
@@ -3557,8 +3557,8 @@ export interface SettingField {
3557
3557
  'hidden'?: boolean;
3558
3558
  'disabled'?: boolean;
3559
3559
  'options'?: Array<SettingOption>;
3560
- 'defaultValue'?: any;
3561
3560
  'value'?: any;
3561
+ 'defaultValue'?: any;
3562
3562
  }
3563
3563
  export declare const SettingFieldTypeEnum: {
3564
3564
  readonly String: "STRING";
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
@@ -3557,8 +3557,8 @@ export interface SettingField {
3557
3557
  'hidden'?: boolean;
3558
3558
  'disabled'?: boolean;
3559
3559
  'options'?: Array<SettingOption>;
3560
- 'defaultValue'?: any;
3561
3560
  'value'?: any;
3561
+ 'defaultValue'?: any;
3562
3562
  }
3563
3563
  export declare const SettingFieldTypeEnum: {
3564
3564
  readonly String: "STRING";
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
 
@@ -14,8 +14,8 @@ Name | Type | Description | Notes
14
14
  **hidden** | **boolean** | | [optional] [default to undefined]
15
15
  **disabled** | **boolean** | | [optional] [default to undefined]
16
16
  **_options** | [**Array&lt;SettingOption&gt;**](SettingOption.md) | | [optional] [default to undefined]
17
- **defaultValue** | **any** | | [optional] [default to undefined]
18
17
  **value** | **any** | | [optional] [default to undefined]
18
+ **defaultValue** | **any** | | [optional] [default to undefined]
19
19
 
20
20
  ## Example
21
21
 
@@ -32,8 +32,8 @@ const instance: SettingField = {
32
32
  hidden,
33
33
  disabled,
34
34
  _options,
35
- defaultValue,
36
35
  value,
36
+ defaultValue,
37
37
  };
38
38
  ```
39
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caraer/client",
3
- "version": "2.0.374",
3
+ "version": "2.0.376",
4
4
  "description": "Generated TypeScript client for the Caraer API",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {