bimplus-websdk 1.0.26-properties-panel-1 → 1.0.27
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/package.json +8 -8
- package/types/bimplus-websdk.d.ts +20 -50
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bimplus-websdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"description": "bim+ websdk",
|
|
5
5
|
"types": "types/bimplus-websdk.d.ts",
|
|
6
6
|
"keywords": [
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"test-watch": "npm run test -- --browsers=ChromeExt --single-run=false --auto-watch"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@babel/core": "^7.
|
|
41
|
-
"@babel/plugin-transform-runtime": "^7.25.
|
|
42
|
-
"@babel/preset-env": "^7.
|
|
43
|
-
"@babel/runtime": "^7.
|
|
40
|
+
"@babel/core": "^7.26.0",
|
|
41
|
+
"@babel/plugin-transform-runtime": "^7.25.9",
|
|
42
|
+
"@babel/preset-env": "^7.26.0",
|
|
43
|
+
"@babel/runtime": "^7.26.0",
|
|
44
44
|
"babel-loader": "^9.2.1",
|
|
45
45
|
"clean-webpack-plugin": "^4.0.0",
|
|
46
46
|
"coverage-istanbul-loader": "^3.0.5",
|
|
47
47
|
"documentation": "^14.0.3",
|
|
48
|
-
"eslint": "^9.
|
|
49
|
-
"globals": "15.
|
|
48
|
+
"eslint": "^9.14.0",
|
|
49
|
+
"globals": "15.12.0",
|
|
50
50
|
"host-environment": "^2.1.2",
|
|
51
51
|
"karma": "^6.4.4",
|
|
52
52
|
"karma-chrome-launcher": "^3.2.0",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"karma-webpack": "^5.0.1",
|
|
59
59
|
"qunit": "^2.22.0",
|
|
60
60
|
"terser-webpack-plugin": "^5.3.10",
|
|
61
|
-
"webpack": "^5.
|
|
61
|
+
"webpack": "^5.96.1",
|
|
62
62
|
"webpack-cli": "^5.1.4",
|
|
63
63
|
"webpack-merge": "^6.0.1"
|
|
64
64
|
},
|
|
@@ -171,61 +171,31 @@ declare module 'bimplus-websdk' {
|
|
|
171
171
|
|
|
172
172
|
export interface CommentResponse {
|
|
173
173
|
id: string;
|
|
174
|
-
issueId
|
|
175
|
-
status
|
|
176
|
-
verbalStatus
|
|
177
|
-
parentId
|
|
178
|
-
text
|
|
179
|
-
createdAt
|
|
180
|
-
modifiedAt
|
|
181
|
-
author
|
|
182
|
-
hyperlinks?: Hyperlink[];
|
|
183
|
-
attachmentLinks?: AttachmentLink[];
|
|
184
|
-
attachments?: Attachment[];
|
|
174
|
+
issueId?: string;
|
|
175
|
+
status?: string | null;
|
|
176
|
+
verbalStatus?: string | null;
|
|
177
|
+
parentId?: string;
|
|
178
|
+
text?: string;
|
|
179
|
+
createdAt?: string;
|
|
180
|
+
modifiedAt?: string;
|
|
181
|
+
author?: Author;
|
|
185
182
|
};
|
|
186
183
|
|
|
187
184
|
export interface Author {
|
|
188
|
-
id
|
|
189
|
-
email
|
|
190
|
-
status
|
|
191
|
-
firstname
|
|
192
|
-
lastname
|
|
193
|
-
company
|
|
194
|
-
fullname
|
|
195
|
-
displayname
|
|
196
|
-
shortdisplayname
|
|
197
|
-
preferedLanguage
|
|
198
|
-
updated
|
|
199
|
-
tokensInvalidated
|
|
200
|
-
};
|
|
201
|
-
|
|
202
|
-
export interface Attachment {
|
|
203
|
-
id: string;
|
|
204
|
-
objectIds: string[];
|
|
205
|
-
name: string;
|
|
206
|
-
fileName: string;
|
|
207
|
-
type: string;
|
|
208
|
-
size: number;
|
|
209
|
-
createdAt: string;
|
|
210
|
-
creator: Author;
|
|
211
|
-
changed: string;
|
|
212
|
-
changedFile: string;
|
|
213
|
-
changedBy: ChangedBy;
|
|
214
|
-
attachmentType: string;
|
|
215
|
-
sizeMB: string;
|
|
216
|
-
version: number;
|
|
217
|
-
relatedId: string;
|
|
218
|
-
release: boolean;
|
|
219
|
-
recycleBin: boolean;
|
|
185
|
+
id?: string;
|
|
186
|
+
email?: string;
|
|
187
|
+
status?: string | null;
|
|
188
|
+
firstname?: string;
|
|
189
|
+
lastname?: string;
|
|
190
|
+
company?: string;
|
|
191
|
+
fullname?: string;
|
|
192
|
+
displayname?: string;
|
|
193
|
+
shortdisplayname?: string;
|
|
194
|
+
preferedLanguage?: string | null;
|
|
195
|
+
updated?: string;
|
|
196
|
+
tokensInvalidated?: string;
|
|
220
197
|
};
|
|
221
198
|
|
|
222
|
-
export interface ChangedBy {
|
|
223
|
-
id: string;
|
|
224
|
-
email: string;
|
|
225
|
-
firstname: string;
|
|
226
|
-
lastname: string;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
199
|
export class Objects {
|
|
230
200
|
constructor(api: Api);
|
|
231
201
|
get(objectId: string, revision: number | undefined, properties: string | undefined, projectId: string | undefined, shortInfo: boolean | undefined, type: string | undefined);
|