Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Commit f5d6d49

Browse files
committed
MINOR: add provider field in user serilization
1 parent 04bfd02 commit f5d6d49

22 files changed

Lines changed: 67 additions & 37 deletions

docs/Document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
1313
**fileName** | **String** | Full name of the file | [optional]
1414
**description** | **String** | Description of the file | [optional]
1515
**file** | **String** | | [optional]
16-
**size** | **Number** | Size of the file. The file may be compressed and show a smaller size | [optional]
16+
**size** | **Number** | Size of the file. | [optional]
1717
**createdAt** | **Date** | Creation date | [optional]
1818
**updatedAt** | **Date** | Date of the last update | [optional]
1919
**ifcId** | **String** | | [optional]

docs/IfcApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@ null (empty response body)
16221622
16231623
Create elements in an optimized format
16241624

1625-
You can use the same optimized structure to post multiple elements, property_sets, properties, definitions and units at once. If the structure is malformed, an error 500 without more explaination may be returned Required scopes: ifc:write
1625+
You can use the same optimized structure to post multiple elements, property_sets, properties, definitions and units at once. For performance reasons, we do not check the validity of the json. If the json is malformed, an error 500 without more explaination may be returned instead of a 400. Required scopes: ifc:write
16261626

16271627
### Example
16281628

docs/ProjectApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ let opts = {
199199
'fileName': "fileName_example", // String | Full name of the file
200200
'description': "description_example", // String | Description of the file
201201
'file': "/path/to/file", // File |
202-
'size': 56 // Number | Size of the file. The file may be compressed and show a smaller size
202+
'size': 56 // Number | Size of the file.
203203
};
204204
apiInstance.createDocument(cloudPk, projectPk, name, opts).then((data) => {
205205
console.log('API called successfully. Returned data: ' + data);
@@ -224,7 +224,7 @@ Name | Type | Description | Notes
224224
**fileName** | **String**| Full name of the file | [optional]
225225
**description** | **String**| Description of the file | [optional]
226226
**file** | **File**| | [optional]
227-
**size** | **Number**| Size of the file. The file may be compressed and show a smaller size | [optional]
227+
**size** | **Number**| Size of the file. | [optional]
228228

229229
### Return type
230230

@@ -484,7 +484,7 @@ null (empty response body)
484484
485485
Delete a folder
486486

487-
All files and subfolders will be deleted too Required scopes: document:write
487+
All files and subfolders will be deleted too. If folder is a project's root folder, only children are deleted Required scopes: document:write
488488

489489
### Example
490490

@@ -756,7 +756,7 @@ let opts = {
756756
'fileName': "fileName_example", // String | Full name of the file
757757
'description': "description_example", // String | Description of the file
758758
'file': "/path/to/file", // File |
759-
'size': 56 // Number | Size of the file. The file may be compressed and show a smaller size
759+
'size': 56 // Number | Size of the file.
760760
};
761761
apiInstance.fullUpdateDocument(cloudPk, id, projectPk, name, opts).then((data) => {
762762
console.log('API called successfully. Returned data: ' + data);
@@ -782,7 +782,7 @@ Name | Type | Description | Notes
782782
**fileName** | **String**| Full name of the file | [optional]
783783
**description** | **String**| Description of the file | [optional]
784784
**file** | **File**| | [optional]
785-
**size** | **Number**| Size of the file. The file may be compressed and show a smaller size | [optional]
785+
**size** | **Number**| Size of the file. | [optional]
786786

787787
### Return type
788788

docs/Property.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**id** | **Number** | | [optional]
88
**definition** | [**PropertyDefinition**](PropertyDefinition.md) | |
9-
**value** | **String** | | [optional]
9+
**value** | [**Object**](.md) | | [optional]
1010

1111

docs/RawProperty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **String** | | [optional]
7+
**value** | [**Object**](.md) | | [optional]
88
**defId** | **Number** | |
99

1010

docs/RawUnit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**type** | **String** | |
99
**unitType** | **String** | | [optional]
1010
**prefix** | **String** | | [optional]
11-
**elements** | **String** | | [optional]
11+
**elements** | [**Object**](.md) | | [optional]
1212
**conversionFactor** | **Number** | | [optional]
1313
**dimensions** | **[Number]** | | [optional]
1414
**conversionBaseunitIndex** | **Number** | | [optional]

docs/RuleComponent.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**id** | **Number** | | [optional]
88
**type** | **String** | | [optional]
9-
**value** | **String** | | [optional]
9+
**value** | [**Object**](.md) | | [optional]
1010
**operator** | **String** | | [optional]
11-
**params** | **String** | | [optional]
11+
**params** | [**Object**](.md) | | [optional]
1212
**condition** | **String** | | [optional]
13-
**ruleComponents** | **String** | | [optional]
13+
**ruleComponents** | [**Object**](.md) | | [optional]
1414

1515

docs/SelfUser.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
1313
**updatedAt** | **Date** | | [optional]
1414
**clouds** | [**[CloudRole]**](CloudRole.md) | | [optional]
1515
**projects** | [**[ProjectRole]**](ProjectRole.md) | | [optional]
16+
**provider** | **String** | | [optional]
1617
**providerSub** | **String** | sub from original identity provider | [optional]
1718
**sub** | **String** | sub from Keycloak | [optional]
1819

docs/Unit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Name | Type | Description | Notes
1212
**dimensions** | **[Number]** | List of 7 units dimensions | [optional]
1313
**conversionFactor** | **Number** | Factor of conversion and base unit id (ex: DEGREE from RADIAN with factor 0.0174532925199433) | [optional]
1414
**conversionBaseunit** | [**Unit**](Unit.md) | | [optional]
15-
**elements** | **String** | List of constitutive unit elements by id with corresponding exponent (ex: [meterID/1, secondID/-1] for velocity) | [optional]
15+
**elements** | [**Object**](.md) | List of constitutive unit elements by id with corresponding exponent (ex: [meterID/1, secondID/-1] for velocity) | [optional]
1616

1717

docs/User.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ Name | Type | Description | Notes
1313
**updatedAt** | **Date** | | [optional]
1414
**cloudRole** | **Number** | | [optional]
1515
**projectRole** | **Number** | | [optional]
16+
**provider** | **String** | | [optional]
1617

1718

0 commit comments

Comments
 (0)