@caraer/client 2.0.443 → 2.0.444
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/Record.md +2 -2
- package/docs/Team.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2990,8 +2990,8 @@ export interface ModelRecord {
|
|
|
2990
2990
|
'updatedByUuid'?: string;
|
|
2991
2991
|
'deletedByUuid'?: string;
|
|
2992
2992
|
'index'?: number;
|
|
2993
|
-
'complete'?: boolean;
|
|
2994
2993
|
'deleted'?: boolean;
|
|
2994
|
+
'complete'?: boolean;
|
|
2995
2995
|
'uuid': string;
|
|
2996
2996
|
'properties'?: Array<FilledProperty>;
|
|
2997
2997
|
'objects'?: { [key: string]: any | null; };
|
|
@@ -6437,8 +6437,8 @@ export interface Team {
|
|
|
6437
6437
|
'filtersString'?: string;
|
|
6438
6438
|
'filters'?: { [key: string]: Filter; };
|
|
6439
6439
|
'memberCount'?: number;
|
|
6440
|
-
'complete'?: boolean;
|
|
6441
6440
|
'deleted'?: boolean;
|
|
6441
|
+
'complete'?: boolean;
|
|
6442
6442
|
'uuid': string;
|
|
6443
6443
|
}
|
|
6444
6444
|
export interface TeamDTO {
|
package/dist/api.d.ts
CHANGED
|
@@ -2982,8 +2982,8 @@ export interface ModelRecord {
|
|
|
2982
2982
|
'updatedByUuid'?: string;
|
|
2983
2983
|
'deletedByUuid'?: string;
|
|
2984
2984
|
'index'?: number;
|
|
2985
|
-
'complete'?: boolean;
|
|
2986
2985
|
'deleted'?: boolean;
|
|
2986
|
+
'complete'?: boolean;
|
|
2987
2987
|
'uuid': string;
|
|
2988
2988
|
'properties'?: Array<FilledProperty>;
|
|
2989
2989
|
'objects'?: {
|
|
@@ -6535,8 +6535,8 @@ export interface Team {
|
|
|
6535
6535
|
[key: string]: Filter;
|
|
6536
6536
|
};
|
|
6537
6537
|
'memberCount'?: number;
|
|
6538
|
-
'complete'?: boolean;
|
|
6539
6538
|
'deleted'?: boolean;
|
|
6539
|
+
'complete'?: boolean;
|
|
6540
6540
|
'uuid': string;
|
|
6541
6541
|
}
|
|
6542
6542
|
export interface TeamDTO {
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2982,8 +2982,8 @@ export interface ModelRecord {
|
|
|
2982
2982
|
'updatedByUuid'?: string;
|
|
2983
2983
|
'deletedByUuid'?: string;
|
|
2984
2984
|
'index'?: number;
|
|
2985
|
-
'complete'?: boolean;
|
|
2986
2985
|
'deleted'?: boolean;
|
|
2986
|
+
'complete'?: boolean;
|
|
2987
2987
|
'uuid': string;
|
|
2988
2988
|
'properties'?: Array<FilledProperty>;
|
|
2989
2989
|
'objects'?: {
|
|
@@ -6535,8 +6535,8 @@ export interface Team {
|
|
|
6535
6535
|
[key: string]: Filter;
|
|
6536
6536
|
};
|
|
6537
6537
|
'memberCount'?: number;
|
|
6538
|
-
'complete'?: boolean;
|
|
6539
6538
|
'deleted'?: boolean;
|
|
6539
|
+
'complete'?: boolean;
|
|
6540
6540
|
'uuid': string;
|
|
6541
6541
|
}
|
|
6542
6542
|
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
|
-
**complete** | **boolean** | | [optional] [default to undefined]
|
|
18
17
|
**deleted** | **boolean** | | [optional] [default to undefined]
|
|
18
|
+
**complete** | **boolean** | | [optional] [default to undefined]
|
|
19
19
|
**uuid** | **string** | | [default to undefined]
|
|
20
20
|
**properties** | [**Array<FilledProperty>**](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
|
-
complete,
|
|
40
39
|
deleted,
|
|
40
|
+
complete,
|
|
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
|
-
**complete** | **boolean** | | [optional] [default to undefined]
|
|
23
22
|
**deleted** | **boolean** | | [optional] [default to undefined]
|
|
23
|
+
**complete** | **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
|
-
complete,
|
|
47
46
|
deleted,
|
|
47
|
+
complete,
|
|
48
48
|
uuid,
|
|
49
49
|
};
|
|
50
50
|
```
|