@caraer/client 2.0.349 → 2.0.351
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 +2 -2
- package/dist/api.d.ts +2 -2
- package/dist/esm/api.d.ts +2 -2
- package/docs/FilledProperty.md +2 -2
- package/docs/Record.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1502,10 +1502,10 @@ export interface FeedDTO {
|
|
|
1502
1502
|
'active'?: boolean;
|
|
1503
1503
|
}
|
|
1504
1504
|
export interface FilledProperty {
|
|
1505
|
+
'icon'?: string;
|
|
1505
1506
|
'name'?: string;
|
|
1506
1507
|
'value'?: any;
|
|
1507
1508
|
'type'?: string;
|
|
1508
|
-
'icon'?: string;
|
|
1509
1509
|
'label'?: string;
|
|
1510
1510
|
}
|
|
1511
1511
|
/**
|
|
@@ -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
|
@@ -1483,10 +1483,10 @@ export interface FeedDTO {
|
|
|
1483
1483
|
'active'?: boolean;
|
|
1484
1484
|
}
|
|
1485
1485
|
export interface FilledProperty {
|
|
1486
|
+
'icon'?: string;
|
|
1486
1487
|
'name'?: string;
|
|
1487
1488
|
'value'?: any;
|
|
1488
1489
|
'type'?: string;
|
|
1489
|
-
'icon'?: string;
|
|
1490
1490
|
'label'?: string;
|
|
1491
1491
|
}
|
|
1492
1492
|
/**
|
|
@@ -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
|
@@ -1483,10 +1483,10 @@ export interface FeedDTO {
|
|
|
1483
1483
|
'active'?: boolean;
|
|
1484
1484
|
}
|
|
1485
1485
|
export interface FilledProperty {
|
|
1486
|
+
'icon'?: string;
|
|
1486
1487
|
'name'?: string;
|
|
1487
1488
|
'value'?: any;
|
|
1488
1489
|
'type'?: string;
|
|
1489
|
-
'icon'?: string;
|
|
1490
1490
|
'label'?: string;
|
|
1491
1491
|
}
|
|
1492
1492
|
/**
|
|
@@ -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/FilledProperty.md
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**icon** | **string** | | [optional] [default to undefined]
|
|
8
9
|
**name** | **string** | | [optional] [default to undefined]
|
|
9
10
|
**value** | **any** | | [optional] [default to undefined]
|
|
10
11
|
**type** | **string** | | [optional] [default to undefined]
|
|
11
|
-
**icon** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**label** | **string** | | [optional] [default to undefined]
|
|
13
13
|
|
|
14
14
|
## Example
|
|
@@ -17,10 +17,10 @@ Name | Type | Description | Notes
|
|
|
17
17
|
import { FilledProperty } from '@caraer/client';
|
|
18
18
|
|
|
19
19
|
const instance: FilledProperty = {
|
|
20
|
+
icon,
|
|
20
21
|
name,
|
|
21
22
|
value,
|
|
22
23
|
type,
|
|
23
|
-
icon,
|
|
24
24
|
label,
|
|
25
25
|
};
|
|
26
26
|
```
|
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
|
|