Skip to content

Commit 28d97f8

Browse files
committed
MINOR: empty commit to release lib with xkt chunk
1 parent 18c1409 commit 28d97f8

25 files changed

+642
-109
lines changed

.openapi-generator/FILES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,10 @@ docs/WebHookRequest.md
252252
docs/WebhookApi.md
253253
docs/WriteFolder.md
254254
docs/WriteFolderRequest.md
255+
docs/XktChunk.md
256+
docs/XktChunkRequest.md
255257
docs/XktFile.md
258+
docs/XktFileRequest.md
256259
docs/Zone.md
257260
docs/ZoneRequest.md
258261
docs/ZoneSpace.md
@@ -512,7 +515,10 @@ src/model/WebHook.js
512515
src/model/WebHookRequest.js
513516
src/model/WriteFolder.js
514517
src/model/WriteFolderRequest.js
518+
src/model/XktChunk.js
519+
src/model/XktChunkRequest.js
515520
src/model/XktFile.js
521+
src/model/XktFileRequest.js
516522
src/model/Zone.js
517523
src/model/ZoneRequest.js
518524
src/model/ZoneSpace.js
@@ -768,7 +774,10 @@ test/model/WebHook.spec.js
768774
test/model/WebHookRequest.spec.js
769775
test/model/WriteFolder.spec.js
770776
test/model/WriteFolderRequest.spec.js
777+
test/model/XktChunk.spec.js
778+
test/model/XktChunkRequest.spec.js
771779
test/model/XktFile.spec.js
780+
test/model/XktFileRequest.spec.js
772781
test/model/Zone.spec.js
773782
test/model/ZoneRequest.spec.js
774783
test/model/ZoneSpace.spec.js

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,10 @@ Class | Method | HTTP request | Description
729729
- [bimdata.WebHookRequest](docs/WebHookRequest.md)
730730
- [bimdata.WriteFolder](docs/WriteFolder.md)
731731
- [bimdata.WriteFolderRequest](docs/WriteFolderRequest.md)
732+
- [bimdata.XktChunk](docs/XktChunk.md)
733+
- [bimdata.XktChunkRequest](docs/XktChunkRequest.md)
732734
- [bimdata.XktFile](docs/XktFile.md)
735+
- [bimdata.XktFileRequest](docs/XktFileRequest.md)
733736
- [bimdata.Zone](docs/Zone.md)
734737
- [bimdata.ZoneRequest](docs/ZoneRequest.md)
735738
- [bimdata.ZoneSpace](docs/ZoneSpace.md)

docs/CollaborationApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ Name | Type | Description | Notes
960960
961961
Create a document
962962

963-
Create a document. If the document is one of {'GLTF', 'OBJ', 'IFC', 'POINT_CLOUD', 'DWG', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
963+
Create a document. If the document is one of {'GLTF', 'IFC', 'POINT_CLOUD', 'DWG', 'DXF', 'OBJ'}, a model will be created and attached to this document Required scopes: document:write
964964

965965
### Example
966966

docs/ModelApi.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3038,7 +3038,7 @@ null (empty response body)
30383038

30393039
## createXktFile
30403040

3041-
> XktFile createXktFile(cloudPk, id, projectPk, version, file)
3041+
> XktFile createXktFile(cloudPk, id, projectPk, version, file, opts)
30423042
30433043
Create an xkt file for the model. Overrides existing file with same version
30443044

@@ -3072,7 +3072,10 @@ let id = 56; // Number | A unique integer value identifying this model.
30723072
let projectPk = 56; // Number |
30733073
let version = 56; // Number |
30743074
let file = "/path/to/file"; // File |
3075-
apiInstance.createXktFile(cloudPk, id, projectPk, version, file).then((data) => {
3075+
let opts = {
3076+
'chunks': ["null"] // [File] |
3077+
};
3078+
apiInstance.createXktFile(cloudPk, id, projectPk, version, file, opts).then((data) => {
30763079
console.log('API called successfully. Returned data: ' + data);
30773080
}, (error) => {
30783081
console.error(error);
@@ -3090,6 +3093,7 @@ Name | Type | Description | Notes
30903093
**projectPk** | **Number**| |
30913094
**version** | **Number**| |
30923095
**file** | **File**| |
3096+
**chunks** | **[File]**| | [optional]
30933097

30943098
### Return type
30953099

docs/WriteFolder.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**parentId** | **Number** | | [optional]
8-
**updatedAt** | **Date** | Date of the last update | [readonly]
9-
**id** | **Number** | | [readonly]
10-
**type** | **String** | DEPRECATED: Use 'nature' instead. Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
7+
**createdAt** | **Date** | Creation date | [readonly]
118
**userPermission** | **Number** | Aggregate of group user permissions and folder default permission | [readonly]
129
**name** | **String** | Name of the folder |
13-
**defaultPermission** | **Number** | Permission for a Folder * `1` - denied * `50` - read_only * `100` - read_write | [optional]
14-
**createdAt** | **Date** | Creation date | [readonly]
10+
**groupsPermissions** | [**[GroupFolderRead]**](GroupFolderRead.md) | List of group permissions | [readonly]
11+
**id** | **Number** | | [readonly]
12+
**type** | **String** | DEPRECATED: Use 'nature' instead. Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
1513
**nature** | **String** | Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
14+
**parentId** | **Number** | | [optional]
1615
**createdBy** | [**ShortUser**](ShortUser.md) | | [readonly]
17-
**groupsPermissions** | [**[GroupFolderRead]**](GroupFolderRead.md) | List of group permissions | [readonly]
16+
**updatedAt** | **Date** | Date of the last update | [readonly]
17+
**defaultPermission** | **Number** | Permission for a Folder * `1` - denied * `50` - read_only * `100` - read_write | [optional]
1818
**children** | [**[WriteFolder]**](WriteFolder.md) | | [optional]
1919

2020

docs/WriteFolderRequest.md

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

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**parentId** | **Number** | | [optional]
87
**name** | **String** | Name of the folder |
8+
**parentId** | **Number** | | [optional]
99
**defaultPermission** | **Number** | Permission for a Folder * `1` - denied * `50` - read_only * `100` - read_write | [optional]
1010
**children** | [**[WriteFolder]**](WriteFolder.md) | | [optional]
1111

docs/XktChunk.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# bimdata.XktChunk
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**file** | **String** | |
8+
9+

docs/XktChunkRequest.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# bimdata.XktChunkRequest
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**file** | **File** | |
8+
9+

docs/XktFile.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**version** | **Number** | |
88
**file** | **String** | |
9+
**chunks** | [**[XktChunk]**](XktChunk.md) | | [optional]
910

1011

docs/XktFileRequest.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# bimdata.XktFileRequest
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**version** | **Number** | |
8+
**file** | **File** | |
9+
**chunks** | [**[XktChunkRequest]**](XktChunkRequest.md) | | [optional]
10+
11+

0 commit comments

Comments
 (0)