@aws-sdk/client-workdocs 3.934.0 → 3.936.0

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.
@@ -1,599 +1 @@
1
- import { WorkDocsServiceException as __BaseException } from "./WorkDocsServiceException";
2
- export class ConcurrentModificationException extends __BaseException {
3
- name = "ConcurrentModificationException";
4
- $fault = "client";
5
- Message;
6
- constructor(opts) {
7
- super({
8
- name: "ConcurrentModificationException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
13
- this.Message = opts.Message;
14
- }
15
- }
16
- export class EntityNotExistsException extends __BaseException {
17
- name = "EntityNotExistsException";
18
- $fault = "client";
19
- Message;
20
- EntityIds;
21
- constructor(opts) {
22
- super({
23
- name: "EntityNotExistsException",
24
- $fault: "client",
25
- ...opts,
26
- });
27
- Object.setPrototypeOf(this, EntityNotExistsException.prototype);
28
- this.Message = opts.Message;
29
- this.EntityIds = opts.EntityIds;
30
- }
31
- }
32
- export class FailedDependencyException extends __BaseException {
33
- name = "FailedDependencyException";
34
- $fault = "client";
35
- Message;
36
- constructor(opts) {
37
- super({
38
- name: "FailedDependencyException",
39
- $fault: "client",
40
- ...opts,
41
- });
42
- Object.setPrototypeOf(this, FailedDependencyException.prototype);
43
- this.Message = opts.Message;
44
- }
45
- }
46
- export class ProhibitedStateException extends __BaseException {
47
- name = "ProhibitedStateException";
48
- $fault = "client";
49
- Message;
50
- constructor(opts) {
51
- super({
52
- name: "ProhibitedStateException",
53
- $fault: "client",
54
- ...opts,
55
- });
56
- Object.setPrototypeOf(this, ProhibitedStateException.prototype);
57
- this.Message = opts.Message;
58
- }
59
- }
60
- export class ServiceUnavailableException extends __BaseException {
61
- name = "ServiceUnavailableException";
62
- $fault = "server";
63
- Message;
64
- constructor(opts) {
65
- super({
66
- name: "ServiceUnavailableException",
67
- $fault: "server",
68
- ...opts,
69
- });
70
- Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
71
- this.Message = opts.Message;
72
- }
73
- }
74
- export class UnauthorizedOperationException extends __BaseException {
75
- name = "UnauthorizedOperationException";
76
- $fault = "client";
77
- Message;
78
- Code;
79
- constructor(opts) {
80
- super({
81
- name: "UnauthorizedOperationException",
82
- $fault: "client",
83
- ...opts,
84
- });
85
- Object.setPrototypeOf(this, UnauthorizedOperationException.prototype);
86
- this.Message = opts.Message;
87
- this.Code = opts.Code;
88
- }
89
- }
90
- export class UnauthorizedResourceAccessException extends __BaseException {
91
- name = "UnauthorizedResourceAccessException";
92
- $fault = "client";
93
- Message;
94
- constructor(opts) {
95
- super({
96
- name: "UnauthorizedResourceAccessException",
97
- $fault: "client",
98
- ...opts,
99
- });
100
- Object.setPrototypeOf(this, UnauthorizedResourceAccessException.prototype);
101
- this.Message = opts.Message;
102
- }
103
- }
104
- export const LocaleType = {
105
- DE: "de",
106
- DEFAULT: "default",
107
- EN: "en",
108
- ES: "es",
109
- FR: "fr",
110
- JA: "ja",
111
- KO: "ko",
112
- PT_BR: "pt_BR",
113
- RU: "ru",
114
- ZH_CN: "zh_CN",
115
- ZH_TW: "zh_TW",
116
- };
117
- export const UserStatusType = {
118
- ACTIVE: "ACTIVE",
119
- INACTIVE: "INACTIVE",
120
- PENDING: "PENDING",
121
- };
122
- export const StorageType = {
123
- QUOTA: "QUOTA",
124
- UNLIMITED: "UNLIMITED",
125
- };
126
- export const UserType = {
127
- ADMIN: "ADMIN",
128
- MINIMALUSER: "MINIMALUSER",
129
- POWERUSER: "POWERUSER",
130
- USER: "USER",
131
- WORKSPACESUSER: "WORKSPACESUSER",
132
- };
133
- export const CommentStatusType = {
134
- DELETED: "DELETED",
135
- DRAFT: "DRAFT",
136
- PUBLISHED: "PUBLISHED",
137
- };
138
- export const ResourceType = {
139
- DOCUMENT: "DOCUMENT",
140
- FOLDER: "FOLDER",
141
- };
142
- export const ActivityType = {
143
- DOCUMENT_ANNOTATION_ADDED: "DOCUMENT_ANNOTATION_ADDED",
144
- DOCUMENT_ANNOTATION_DELETED: "DOCUMENT_ANNOTATION_DELETED",
145
- DOCUMENT_CHECKED_IN: "DOCUMENT_CHECKED_IN",
146
- DOCUMENT_CHECKED_OUT: "DOCUMENT_CHECKED_OUT",
147
- DOCUMENT_COMMENT_ADDED: "DOCUMENT_COMMENT_ADDED",
148
- DOCUMENT_COMMENT_DELETED: "DOCUMENT_COMMENT_DELETED",
149
- DOCUMENT_MOVED: "DOCUMENT_MOVED",
150
- DOCUMENT_RECYCLED: "DOCUMENT_RECYCLED",
151
- DOCUMENT_RENAMED: "DOCUMENT_RENAMED",
152
- DOCUMENT_RESTORED: "DOCUMENT_RESTORED",
153
- DOCUMENT_REVERTED: "DOCUMENT_REVERTED",
154
- DOCUMENT_SHAREABLE_LINK_CREATED: "DOCUMENT_SHAREABLE_LINK_CREATED",
155
- DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED: "DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED",
156
- DOCUMENT_SHAREABLE_LINK_REMOVED: "DOCUMENT_SHAREABLE_LINK_REMOVED",
157
- DOCUMENT_SHARED: "DOCUMENT_SHARED",
158
- DOCUMENT_SHARE_PERMISSION_CHANGED: "DOCUMENT_SHARE_PERMISSION_CHANGED",
159
- DOCUMENT_UNSHARED: "DOCUMENT_UNSHARED",
160
- DOCUMENT_VERSION_DELETED: "DOCUMENT_VERSION_DELETED",
161
- DOCUMENT_VERSION_DOWNLOADED: "DOCUMENT_VERSION_DOWNLOADED",
162
- DOCUMENT_VERSION_UPLOADED: "DOCUMENT_VERSION_UPLOADED",
163
- DOCUMENT_VERSION_VIEWED: "DOCUMENT_VERSION_VIEWED",
164
- FOLDER_CREATED: "FOLDER_CREATED",
165
- FOLDER_DELETED: "FOLDER_DELETED",
166
- FOLDER_MOVED: "FOLDER_MOVED",
167
- FOLDER_RECYCLED: "FOLDER_RECYCLED",
168
- FOLDER_RENAMED: "FOLDER_RENAMED",
169
- FOLDER_RESTORED: "FOLDER_RESTORED",
170
- FOLDER_SHAREABLE_LINK_CREATED: "FOLDER_SHAREABLE_LINK_CREATED",
171
- FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED: "FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED",
172
- FOLDER_SHAREABLE_LINK_REMOVED: "FOLDER_SHAREABLE_LINK_REMOVED",
173
- FOLDER_SHARED: "FOLDER_SHARED",
174
- FOLDER_SHARE_PERMISSION_CHANGED: "FOLDER_SHARE_PERMISSION_CHANGED",
175
- FOLDER_UNSHARED: "FOLDER_UNSHARED",
176
- };
177
- export const AdditionalResponseFieldType = {
178
- WEBURL: "WEBURL",
179
- };
180
- export const RoleType = {
181
- CONTRIBUTOR: "CONTRIBUTOR",
182
- COOWNER: "COOWNER",
183
- OWNER: "OWNER",
184
- VIEWER: "VIEWER",
185
- };
186
- export const PrincipalType = {
187
- ANONYMOUS: "ANONYMOUS",
188
- GROUP: "GROUP",
189
- INVITE: "INVITE",
190
- ORGANIZATION: "ORGANIZATION",
191
- USER: "USER",
192
- };
193
- export const ShareStatusType = {
194
- FAILURE: "FAILURE",
195
- SUCCESS: "SUCCESS",
196
- };
197
- export const CommentVisibilityType = {
198
- PRIVATE: "PRIVATE",
199
- PUBLIC: "PUBLIC",
200
- };
201
- export class DocumentLockedForCommentsException extends __BaseException {
202
- name = "DocumentLockedForCommentsException";
203
- $fault = "client";
204
- Message;
205
- constructor(opts) {
206
- super({
207
- name: "DocumentLockedForCommentsException",
208
- $fault: "client",
209
- ...opts,
210
- });
211
- Object.setPrototypeOf(this, DocumentLockedForCommentsException.prototype);
212
- this.Message = opts.Message;
213
- }
214
- }
215
- export class InvalidCommentOperationException extends __BaseException {
216
- name = "InvalidCommentOperationException";
217
- $fault = "client";
218
- Message;
219
- constructor(opts) {
220
- super({
221
- name: "InvalidCommentOperationException",
222
- $fault: "client",
223
- ...opts,
224
- });
225
- Object.setPrototypeOf(this, InvalidCommentOperationException.prototype);
226
- this.Message = opts.Message;
227
- }
228
- }
229
- export class CustomMetadataLimitExceededException extends __BaseException {
230
- name = "CustomMetadataLimitExceededException";
231
- $fault = "client";
232
- Message;
233
- constructor(opts) {
234
- super({
235
- name: "CustomMetadataLimitExceededException",
236
- $fault: "client",
237
- ...opts,
238
- });
239
- Object.setPrototypeOf(this, CustomMetadataLimitExceededException.prototype);
240
- this.Message = opts.Message;
241
- }
242
- }
243
- export class ConflictingOperationException extends __BaseException {
244
- name = "ConflictingOperationException";
245
- $fault = "client";
246
- Message;
247
- constructor(opts) {
248
- super({
249
- name: "ConflictingOperationException",
250
- $fault: "client",
251
- ...opts,
252
- });
253
- Object.setPrototypeOf(this, ConflictingOperationException.prototype);
254
- this.Message = opts.Message;
255
- }
256
- }
257
- export const ResourceStateType = {
258
- ACTIVE: "ACTIVE",
259
- RECYCLED: "RECYCLED",
260
- RECYCLING: "RECYCLING",
261
- RESTORING: "RESTORING",
262
- };
263
- export class EntityAlreadyExistsException extends __BaseException {
264
- name = "EntityAlreadyExistsException";
265
- $fault = "client";
266
- Message;
267
- constructor(opts) {
268
- super({
269
- name: "EntityAlreadyExistsException",
270
- $fault: "client",
271
- ...opts,
272
- });
273
- Object.setPrototypeOf(this, EntityAlreadyExistsException.prototype);
274
- this.Message = opts.Message;
275
- }
276
- }
277
- export class LimitExceededException extends __BaseException {
278
- name = "LimitExceededException";
279
- $fault = "client";
280
- Message;
281
- constructor(opts) {
282
- super({
283
- name: "LimitExceededException",
284
- $fault: "client",
285
- ...opts,
286
- });
287
- Object.setPrototypeOf(this, LimitExceededException.prototype);
288
- this.Message = opts.Message;
289
- }
290
- }
291
- export class TooManyLabelsException extends __BaseException {
292
- name = "TooManyLabelsException";
293
- $fault = "client";
294
- Message;
295
- constructor(opts) {
296
- super({
297
- name: "TooManyLabelsException",
298
- $fault: "client",
299
- ...opts,
300
- });
301
- Object.setPrototypeOf(this, TooManyLabelsException.prototype);
302
- this.Message = opts.Message;
303
- }
304
- }
305
- export const SubscriptionProtocolType = {
306
- HTTPS: "HTTPS",
307
- SQS: "SQS",
308
- };
309
- export const SubscriptionType = {
310
- ALL: "ALL",
311
- };
312
- export class InvalidArgumentException extends __BaseException {
313
- name = "InvalidArgumentException";
314
- $fault = "client";
315
- Message;
316
- constructor(opts) {
317
- super({
318
- name: "InvalidArgumentException",
319
- $fault: "client",
320
- ...opts,
321
- });
322
- Object.setPrototypeOf(this, InvalidArgumentException.prototype);
323
- this.Message = opts.Message;
324
- }
325
- }
326
- export class TooManySubscriptionsException extends __BaseException {
327
- name = "TooManySubscriptionsException";
328
- $fault = "client";
329
- Message;
330
- constructor(opts) {
331
- super({
332
- name: "TooManySubscriptionsException",
333
- $fault: "client",
334
- ...opts,
335
- });
336
- Object.setPrototypeOf(this, TooManySubscriptionsException.prototype);
337
- this.Message = opts.Message;
338
- }
339
- }
340
- export class InvalidOperationException extends __BaseException {
341
- name = "InvalidOperationException";
342
- $fault = "client";
343
- Message;
344
- constructor(opts) {
345
- super({
346
- name: "InvalidOperationException",
347
- $fault: "client",
348
- ...opts,
349
- });
350
- Object.setPrototypeOf(this, InvalidOperationException.prototype);
351
- this.Message = opts.Message;
352
- }
353
- }
354
- export const DocumentSourceType = {
355
- ORIGINAL: "ORIGINAL",
356
- WITH_COMMENTS: "WITH_COMMENTS",
357
- };
358
- export const DocumentStatusType = {
359
- ACTIVE: "ACTIVE",
360
- INITIALIZED: "INITIALIZED",
361
- };
362
- export const DocumentThumbnailType = {
363
- LARGE: "LARGE",
364
- SMALL: "SMALL",
365
- SMALL_HQ: "SMALL_HQ",
366
- };
367
- export class InvalidPasswordException extends __BaseException {
368
- name = "InvalidPasswordException";
369
- $fault = "client";
370
- Message;
371
- constructor(opts) {
372
- super({
373
- name: "InvalidPasswordException",
374
- $fault: "client",
375
- ...opts,
376
- });
377
- Object.setPrototypeOf(this, InvalidPasswordException.prototype);
378
- this.Message = opts.Message;
379
- }
380
- }
381
- export const OrderType = {
382
- ASCENDING: "ASCENDING",
383
- DESCENDING: "DESCENDING",
384
- };
385
- export const ResourceSortType = {
386
- DATE: "DATE",
387
- NAME: "NAME",
388
- };
389
- export const FolderContentType = {
390
- ALL: "ALL",
391
- DOCUMENT: "DOCUMENT",
392
- FOLDER: "FOLDER",
393
- };
394
- export const RolePermissionType = {
395
- DIRECT: "DIRECT",
396
- INHERITED: "INHERITED",
397
- };
398
- export const UserFilterType = {
399
- ACTIVE_PENDING: "ACTIVE_PENDING",
400
- ALL: "ALL",
401
- };
402
- export const UserSortType = {
403
- FULL_NAME: "FULL_NAME",
404
- STORAGE_LIMIT: "STORAGE_LIMIT",
405
- STORAGE_USED: "STORAGE_USED",
406
- USER_NAME: "USER_NAME",
407
- USER_STATUS: "USER_STATUS",
408
- };
409
- export class RequestedEntityTooLargeException extends __BaseException {
410
- name = "RequestedEntityTooLargeException";
411
- $fault = "client";
412
- Message;
413
- constructor(opts) {
414
- super({
415
- name: "RequestedEntityTooLargeException",
416
- $fault: "client",
417
- ...opts,
418
- });
419
- Object.setPrototypeOf(this, RequestedEntityTooLargeException.prototype);
420
- this.Message = opts.Message;
421
- }
422
- }
423
- export const ResourceCollectionType = {
424
- SHARED_WITH_ME: "SHARED_WITH_ME",
425
- };
426
- export class DraftUploadOutOfSyncException extends __BaseException {
427
- name = "DraftUploadOutOfSyncException";
428
- $fault = "client";
429
- Message;
430
- constructor(opts) {
431
- super({
432
- name: "DraftUploadOutOfSyncException",
433
- $fault: "client",
434
- ...opts,
435
- });
436
- Object.setPrototypeOf(this, DraftUploadOutOfSyncException.prototype);
437
- this.Message = opts.Message;
438
- }
439
- }
440
- export class ResourceAlreadyCheckedOutException extends __BaseException {
441
- name = "ResourceAlreadyCheckedOutException";
442
- $fault = "client";
443
- Message;
444
- constructor(opts) {
445
- super({
446
- name: "ResourceAlreadyCheckedOutException",
447
- $fault: "client",
448
- ...opts,
449
- });
450
- Object.setPrototypeOf(this, ResourceAlreadyCheckedOutException.prototype);
451
- this.Message = opts.Message;
452
- }
453
- }
454
- export class StorageLimitExceededException extends __BaseException {
455
- name = "StorageLimitExceededException";
456
- $fault = "client";
457
- Message;
458
- constructor(opts) {
459
- super({
460
- name: "StorageLimitExceededException",
461
- $fault: "client",
462
- ...opts,
463
- });
464
- Object.setPrototypeOf(this, StorageLimitExceededException.prototype);
465
- this.Message = opts.Message;
466
- }
467
- }
468
- export class StorageLimitWillExceedException extends __BaseException {
469
- name = "StorageLimitWillExceedException";
470
- $fault = "client";
471
- Message;
472
- constructor(opts) {
473
- super({
474
- name: "StorageLimitWillExceedException",
475
- $fault: "client",
476
- ...opts,
477
- });
478
- Object.setPrototypeOf(this, StorageLimitWillExceedException.prototype);
479
- this.Message = opts.Message;
480
- }
481
- }
482
- export const ContentCategoryType = {
483
- AUDIO: "AUDIO",
484
- DOCUMENT: "DOCUMENT",
485
- IMAGE: "IMAGE",
486
- OTHER: "OTHER",
487
- PDF: "PDF",
488
- PRESENTATION: "PRESENTATION",
489
- SOURCE_CODE: "SOURCE_CODE",
490
- SPREADSHEET: "SPREADSHEET",
491
- VIDEO: "VIDEO",
492
- };
493
- export const PrincipalRoleType = {
494
- CONTRIBUTOR: "CONTRIBUTOR",
495
- COOWNER: "COOWNER",
496
- OWNER: "OWNER",
497
- VIEWER: "VIEWER",
498
- };
499
- export const SearchResourceType = {
500
- COMMENT: "COMMENT",
501
- DOCUMENT: "DOCUMENT",
502
- DOCUMENT_VERSION: "DOCUMENT_VERSION",
503
- FOLDER: "FOLDER",
504
- };
505
- export const SearchCollectionType = {
506
- OWNED: "OWNED",
507
- SHARED_WITH_ME: "SHARED_WITH_ME",
508
- };
509
- export const LanguageCodeType = {
510
- AR: "AR",
511
- BG: "BG",
512
- BN: "BN",
513
- CS: "CS",
514
- DA: "DA",
515
- DE: "DE",
516
- DEFAULT: "DEFAULT",
517
- EL: "EL",
518
- EN: "EN",
519
- ES: "ES",
520
- FA: "FA",
521
- FI: "FI",
522
- FR: "FR",
523
- HI: "HI",
524
- HU: "HU",
525
- ID: "ID",
526
- IT: "IT",
527
- JA: "JA",
528
- KO: "KO",
529
- LT: "LT",
530
- LV: "LV",
531
- NL: "NL",
532
- NO: "NO",
533
- PT: "PT",
534
- RO: "RO",
535
- RU: "RU",
536
- SV: "SV",
537
- SW: "SW",
538
- TH: "TH",
539
- TR: "TR",
540
- ZH: "ZH",
541
- };
542
- export const OrderByFieldType = {
543
- CREATED_TIMESTAMP: "CREATED_TIMESTAMP",
544
- MODIFIED_TIMESTAMP: "MODIFIED_TIMESTAMP",
545
- NAME: "NAME",
546
- RELEVANCE: "RELEVANCE",
547
- SIZE: "SIZE",
548
- };
549
- export const SortOrder = {
550
- ASC: "ASC",
551
- DESC: "DESC",
552
- };
553
- export const SearchQueryScopeType = {
554
- CONTENT: "CONTENT",
555
- NAME: "NAME",
556
- };
557
- export const ResponseItemType = {
558
- COMMENT: "COMMENT",
559
- DOCUMENT: "DOCUMENT",
560
- DOCUMENT_VERSION: "DOCUMENT_VERSION",
561
- FOLDER: "FOLDER",
562
- };
563
- export const DocumentVersionStatus = {
564
- ACTIVE: "ACTIVE",
565
- };
566
- export class DeactivatingLastSystemUserException extends __BaseException {
567
- name = "DeactivatingLastSystemUserException";
568
- $fault = "client";
569
- Message;
570
- Code;
571
- constructor(opts) {
572
- super({
573
- name: "DeactivatingLastSystemUserException",
574
- $fault: "client",
575
- ...opts,
576
- });
577
- Object.setPrototypeOf(this, DeactivatingLastSystemUserException.prototype);
578
- this.Message = opts.Message;
579
- this.Code = opts.Code;
580
- }
581
- }
582
- export class IllegalUserStateException extends __BaseException {
583
- name = "IllegalUserStateException";
584
- $fault = "client";
585
- Message;
586
- constructor(opts) {
587
- super({
588
- name: "IllegalUserStateException",
589
- $fault: "client",
590
- ...opts,
591
- });
592
- Object.setPrototypeOf(this, IllegalUserStateException.prototype);
593
- this.Message = opts.Message;
594
- }
595
- }
596
- export const BooleanEnumType = {
597
- FALSE: "FALSE",
598
- TRUE: "TRUE",
599
- };
1
+ export {};
@@ -363,7 +363,7 @@ const _v = "versionid";
363
363
  const _vI = "versionId";
364
364
  const n0 = "com.amazonaws.workdocs";
365
365
  import { TypeRegistry } from "@smithy/core/schema";
366
- import { ConcurrentModificationException as __ConcurrentModificationException, ConflictingOperationException as __ConflictingOperationException, CustomMetadataLimitExceededException as __CustomMetadataLimitExceededException, DeactivatingLastSystemUserException as __DeactivatingLastSystemUserException, DocumentLockedForCommentsException as __DocumentLockedForCommentsException, DraftUploadOutOfSyncException as __DraftUploadOutOfSyncException, EntityAlreadyExistsException as __EntityAlreadyExistsException, EntityNotExistsException as __EntityNotExistsException, FailedDependencyException as __FailedDependencyException, IllegalUserStateException as __IllegalUserStateException, InvalidArgumentException as __InvalidArgumentException, InvalidCommentOperationException as __InvalidCommentOperationException, InvalidOperationException as __InvalidOperationException, InvalidPasswordException as __InvalidPasswordException, LimitExceededException as __LimitExceededException, ProhibitedStateException as __ProhibitedStateException, RequestedEntityTooLargeException as __RequestedEntityTooLargeException, ResourceAlreadyCheckedOutException as __ResourceAlreadyCheckedOutException, ServiceUnavailableException as __ServiceUnavailableException, StorageLimitExceededException as __StorageLimitExceededException, StorageLimitWillExceedException as __StorageLimitWillExceedException, TooManyLabelsException as __TooManyLabelsException, TooManySubscriptionsException as __TooManySubscriptionsException, UnauthorizedOperationException as __UnauthorizedOperationException, UnauthorizedResourceAccessException as __UnauthorizedResourceAccessException, } from "../models/index";
366
+ import { ConcurrentModificationException as __ConcurrentModificationException, ConflictingOperationException as __ConflictingOperationException, CustomMetadataLimitExceededException as __CustomMetadataLimitExceededException, DeactivatingLastSystemUserException as __DeactivatingLastSystemUserException, DocumentLockedForCommentsException as __DocumentLockedForCommentsException, DraftUploadOutOfSyncException as __DraftUploadOutOfSyncException, EntityAlreadyExistsException as __EntityAlreadyExistsException, EntityNotExistsException as __EntityNotExistsException, FailedDependencyException as __FailedDependencyException, IllegalUserStateException as __IllegalUserStateException, InvalidArgumentException as __InvalidArgumentException, InvalidCommentOperationException as __InvalidCommentOperationException, InvalidOperationException as __InvalidOperationException, InvalidPasswordException as __InvalidPasswordException, LimitExceededException as __LimitExceededException, ProhibitedStateException as __ProhibitedStateException, RequestedEntityTooLargeException as __RequestedEntityTooLargeException, ResourceAlreadyCheckedOutException as __ResourceAlreadyCheckedOutException, ServiceUnavailableException as __ServiceUnavailableException, StorageLimitExceededException as __StorageLimitExceededException, StorageLimitWillExceedException as __StorageLimitWillExceedException, TooManyLabelsException as __TooManyLabelsException, TooManySubscriptionsException as __TooManySubscriptionsException, UnauthorizedOperationException as __UnauthorizedOperationException, UnauthorizedResourceAccessException as __UnauthorizedResourceAccessException, } from "../models/errors";
367
367
  import { WorkDocsServiceException as __WorkDocsServiceException } from "../models/WorkDocsServiceException";
368
368
  export var AuthenticationHeaderType = [0, n0, _AHT, 8, 0];
369
369
  export var CommentTextType = [0, n0, _CTT, 8, 0];
@@ -68,5 +68,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
68
68
  export type { WorkDocsExtensionConfiguration } from "./extensionConfiguration";
69
69
  export * from "./commands";
70
70
  export * from "./pagination";
71
- export * from "./models";
71
+ export * from "./models/enums";
72
+ export * from "./models/errors";
73
+ export type * from "./models/models_0";
72
74
  export { WorkDocsServiceException } from "./models/WorkDocsServiceException";