@aws-sdk/client-workdocs 3.952.0 → 3.954.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.
Files changed (64) hide show
  1. package/dist-cjs/index.js +614 -436
  2. package/dist-cjs/runtimeConfig.shared.js +7 -1
  3. package/dist-es/commands/AbortDocumentVersionUploadCommand.js +2 -2
  4. package/dist-es/commands/ActivateUserCommand.js +2 -2
  5. package/dist-es/commands/AddResourcePermissionsCommand.js +2 -2
  6. package/dist-es/commands/CreateCommentCommand.js +2 -2
  7. package/dist-es/commands/CreateCustomMetadataCommand.js +2 -2
  8. package/dist-es/commands/CreateFolderCommand.js +2 -2
  9. package/dist-es/commands/CreateLabelsCommand.js +2 -2
  10. package/dist-es/commands/CreateNotificationSubscriptionCommand.js +2 -2
  11. package/dist-es/commands/CreateUserCommand.js +2 -2
  12. package/dist-es/commands/DeactivateUserCommand.js +2 -2
  13. package/dist-es/commands/DeleteCommentCommand.js +2 -2
  14. package/dist-es/commands/DeleteCustomMetadataCommand.js +2 -2
  15. package/dist-es/commands/DeleteDocumentCommand.js +2 -2
  16. package/dist-es/commands/DeleteDocumentVersionCommand.js +2 -2
  17. package/dist-es/commands/DeleteFolderCommand.js +2 -2
  18. package/dist-es/commands/DeleteFolderContentsCommand.js +2 -2
  19. package/dist-es/commands/DeleteLabelsCommand.js +2 -2
  20. package/dist-es/commands/DeleteNotificationSubscriptionCommand.js +2 -2
  21. package/dist-es/commands/DeleteUserCommand.js +2 -2
  22. package/dist-es/commands/DescribeActivitiesCommand.js +2 -2
  23. package/dist-es/commands/DescribeCommentsCommand.js +2 -2
  24. package/dist-es/commands/DescribeDocumentVersionsCommand.js +2 -2
  25. package/dist-es/commands/DescribeFolderContentsCommand.js +2 -2
  26. package/dist-es/commands/DescribeGroupsCommand.js +2 -2
  27. package/dist-es/commands/DescribeNotificationSubscriptionsCommand.js +2 -2
  28. package/dist-es/commands/DescribeResourcePermissionsCommand.js +2 -2
  29. package/dist-es/commands/DescribeRootFoldersCommand.js +2 -2
  30. package/dist-es/commands/DescribeUsersCommand.js +2 -2
  31. package/dist-es/commands/GetCurrentUserCommand.js +2 -2
  32. package/dist-es/commands/GetDocumentCommand.js +2 -2
  33. package/dist-es/commands/GetDocumentPathCommand.js +2 -2
  34. package/dist-es/commands/GetDocumentVersionCommand.js +2 -2
  35. package/dist-es/commands/GetFolderCommand.js +2 -2
  36. package/dist-es/commands/GetFolderPathCommand.js +2 -2
  37. package/dist-es/commands/GetResourcesCommand.js +2 -2
  38. package/dist-es/commands/InitiateDocumentVersionUploadCommand.js +2 -2
  39. package/dist-es/commands/RemoveAllResourcePermissionsCommand.js +2 -2
  40. package/dist-es/commands/RemoveResourcePermissionCommand.js +2 -2
  41. package/dist-es/commands/RestoreDocumentVersionsCommand.js +2 -2
  42. package/dist-es/commands/SearchResourcesCommand.js +2 -2
  43. package/dist-es/commands/UpdateDocumentCommand.js +2 -2
  44. package/dist-es/commands/UpdateDocumentVersionCommand.js +2 -2
  45. package/dist-es/commands/UpdateFolderCommand.js +2 -2
  46. package/dist-es/commands/UpdateUserCommand.js +2 -2
  47. package/dist-es/index.js +1 -0
  48. package/dist-es/runtimeConfig.shared.js +7 -1
  49. package/dist-es/schemas/schemas_0.js +351 -344
  50. package/dist-types/WorkDocsClient.d.ts +1 -10
  51. package/dist-types/index.d.ts +1 -0
  52. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  53. package/dist-types/runtimeConfig.d.ts +6 -2
  54. package/dist-types/runtimeConfig.native.d.ts +6 -2
  55. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  56. package/dist-types/schemas/schemas_0.d.ts +172 -217
  57. package/dist-types/ts3.4/WorkDocsClient.d.ts +0 -4
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  60. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  61. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  62. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  63. package/dist-types/ts3.4/schemas/schemas_0.d.ts +171 -219
  64. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class WorkDocsClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let WorkDocsServiceException$1 = class WorkDocsServiceException extends smithyClient.ServiceException {
113
+ class WorkDocsServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, WorkDocsServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let ConcurrentModificationException$1 = class ConcurrentModificationException extends WorkDocsServiceException$1 {
120
+ class ConcurrentModificationException extends WorkDocsServiceException {
121
121
  name = "ConcurrentModificationException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ let ConcurrentModificationException$1 = class ConcurrentModificationException ex
130
130
  Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let EntityNotExistsException$1 = class EntityNotExistsException extends WorkDocsServiceException$1 {
133
+ }
134
+ class EntityNotExistsException extends WorkDocsServiceException {
135
135
  name = "EntityNotExistsException";
136
136
  $fault = "client";
137
137
  Message;
@@ -146,8 +146,8 @@ let EntityNotExistsException$1 = class EntityNotExistsException extends WorkDocs
146
146
  this.Message = opts.Message;
147
147
  this.EntityIds = opts.EntityIds;
148
148
  }
149
- };
150
- let FailedDependencyException$1 = class FailedDependencyException extends WorkDocsServiceException$1 {
149
+ }
150
+ class FailedDependencyException extends WorkDocsServiceException {
151
151
  name = "FailedDependencyException";
152
152
  $fault = "client";
153
153
  Message;
@@ -160,8 +160,8 @@ let FailedDependencyException$1 = class FailedDependencyException extends WorkDo
160
160
  Object.setPrototypeOf(this, FailedDependencyException.prototype);
161
161
  this.Message = opts.Message;
162
162
  }
163
- };
164
- let ProhibitedStateException$1 = class ProhibitedStateException extends WorkDocsServiceException$1 {
163
+ }
164
+ class ProhibitedStateException extends WorkDocsServiceException {
165
165
  name = "ProhibitedStateException";
166
166
  $fault = "client";
167
167
  Message;
@@ -174,8 +174,8 @@ let ProhibitedStateException$1 = class ProhibitedStateException extends WorkDocs
174
174
  Object.setPrototypeOf(this, ProhibitedStateException.prototype);
175
175
  this.Message = opts.Message;
176
176
  }
177
- };
178
- let ServiceUnavailableException$1 = class ServiceUnavailableException extends WorkDocsServiceException$1 {
177
+ }
178
+ class ServiceUnavailableException extends WorkDocsServiceException {
179
179
  name = "ServiceUnavailableException";
180
180
  $fault = "server";
181
181
  Message;
@@ -188,8 +188,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Wo
188
188
  Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
189
189
  this.Message = opts.Message;
190
190
  }
191
- };
192
- let UnauthorizedOperationException$1 = class UnauthorizedOperationException extends WorkDocsServiceException$1 {
191
+ }
192
+ class UnauthorizedOperationException extends WorkDocsServiceException {
193
193
  name = "UnauthorizedOperationException";
194
194
  $fault = "client";
195
195
  Message;
@@ -204,8 +204,8 @@ let UnauthorizedOperationException$1 = class UnauthorizedOperationException exte
204
204
  this.Message = opts.Message;
205
205
  this.Code = opts.Code;
206
206
  }
207
- };
208
- let UnauthorizedResourceAccessException$1 = class UnauthorizedResourceAccessException extends WorkDocsServiceException$1 {
207
+ }
208
+ class UnauthorizedResourceAccessException extends WorkDocsServiceException {
209
209
  name = "UnauthorizedResourceAccessException";
210
210
  $fault = "client";
211
211
  Message;
@@ -218,8 +218,8 @@ let UnauthorizedResourceAccessException$1 = class UnauthorizedResourceAccessExce
218
218
  Object.setPrototypeOf(this, UnauthorizedResourceAccessException.prototype);
219
219
  this.Message = opts.Message;
220
220
  }
221
- };
222
- let DocumentLockedForCommentsException$1 = class DocumentLockedForCommentsException extends WorkDocsServiceException$1 {
221
+ }
222
+ class DocumentLockedForCommentsException extends WorkDocsServiceException {
223
223
  name = "DocumentLockedForCommentsException";
224
224
  $fault = "client";
225
225
  Message;
@@ -232,8 +232,8 @@ let DocumentLockedForCommentsException$1 = class DocumentLockedForCommentsExcept
232
232
  Object.setPrototypeOf(this, DocumentLockedForCommentsException.prototype);
233
233
  this.Message = opts.Message;
234
234
  }
235
- };
236
- let InvalidCommentOperationException$1 = class InvalidCommentOperationException extends WorkDocsServiceException$1 {
235
+ }
236
+ class InvalidCommentOperationException extends WorkDocsServiceException {
237
237
  name = "InvalidCommentOperationException";
238
238
  $fault = "client";
239
239
  Message;
@@ -246,8 +246,8 @@ let InvalidCommentOperationException$1 = class InvalidCommentOperationException
246
246
  Object.setPrototypeOf(this, InvalidCommentOperationException.prototype);
247
247
  this.Message = opts.Message;
248
248
  }
249
- };
250
- let CustomMetadataLimitExceededException$1 = class CustomMetadataLimitExceededException extends WorkDocsServiceException$1 {
249
+ }
250
+ class CustomMetadataLimitExceededException extends WorkDocsServiceException {
251
251
  name = "CustomMetadataLimitExceededException";
252
252
  $fault = "client";
253
253
  Message;
@@ -260,8 +260,8 @@ let CustomMetadataLimitExceededException$1 = class CustomMetadataLimitExceededEx
260
260
  Object.setPrototypeOf(this, CustomMetadataLimitExceededException.prototype);
261
261
  this.Message = opts.Message;
262
262
  }
263
- };
264
- let ConflictingOperationException$1 = class ConflictingOperationException extends WorkDocsServiceException$1 {
263
+ }
264
+ class ConflictingOperationException extends WorkDocsServiceException {
265
265
  name = "ConflictingOperationException";
266
266
  $fault = "client";
267
267
  Message;
@@ -274,8 +274,8 @@ let ConflictingOperationException$1 = class ConflictingOperationException extend
274
274
  Object.setPrototypeOf(this, ConflictingOperationException.prototype);
275
275
  this.Message = opts.Message;
276
276
  }
277
- };
278
- let EntityAlreadyExistsException$1 = class EntityAlreadyExistsException extends WorkDocsServiceException$1 {
277
+ }
278
+ class EntityAlreadyExistsException extends WorkDocsServiceException {
279
279
  name = "EntityAlreadyExistsException";
280
280
  $fault = "client";
281
281
  Message;
@@ -288,8 +288,8 @@ let EntityAlreadyExistsException$1 = class EntityAlreadyExistsException extends
288
288
  Object.setPrototypeOf(this, EntityAlreadyExistsException.prototype);
289
289
  this.Message = opts.Message;
290
290
  }
291
- };
292
- let LimitExceededException$1 = class LimitExceededException extends WorkDocsServiceException$1 {
291
+ }
292
+ class LimitExceededException extends WorkDocsServiceException {
293
293
  name = "LimitExceededException";
294
294
  $fault = "client";
295
295
  Message;
@@ -302,8 +302,8 @@ let LimitExceededException$1 = class LimitExceededException extends WorkDocsServ
302
302
  Object.setPrototypeOf(this, LimitExceededException.prototype);
303
303
  this.Message = opts.Message;
304
304
  }
305
- };
306
- let TooManyLabelsException$1 = class TooManyLabelsException extends WorkDocsServiceException$1 {
305
+ }
306
+ class TooManyLabelsException extends WorkDocsServiceException {
307
307
  name = "TooManyLabelsException";
308
308
  $fault = "client";
309
309
  Message;
@@ -316,8 +316,8 @@ let TooManyLabelsException$1 = class TooManyLabelsException extends WorkDocsServ
316
316
  Object.setPrototypeOf(this, TooManyLabelsException.prototype);
317
317
  this.Message = opts.Message;
318
318
  }
319
- };
320
- let InvalidArgumentException$1 = class InvalidArgumentException extends WorkDocsServiceException$1 {
319
+ }
320
+ class InvalidArgumentException extends WorkDocsServiceException {
321
321
  name = "InvalidArgumentException";
322
322
  $fault = "client";
323
323
  Message;
@@ -330,8 +330,8 @@ let InvalidArgumentException$1 = class InvalidArgumentException extends WorkDocs
330
330
  Object.setPrototypeOf(this, InvalidArgumentException.prototype);
331
331
  this.Message = opts.Message;
332
332
  }
333
- };
334
- let TooManySubscriptionsException$1 = class TooManySubscriptionsException extends WorkDocsServiceException$1 {
333
+ }
334
+ class TooManySubscriptionsException extends WorkDocsServiceException {
335
335
  name = "TooManySubscriptionsException";
336
336
  $fault = "client";
337
337
  Message;
@@ -344,8 +344,8 @@ let TooManySubscriptionsException$1 = class TooManySubscriptionsException extend
344
344
  Object.setPrototypeOf(this, TooManySubscriptionsException.prototype);
345
345
  this.Message = opts.Message;
346
346
  }
347
- };
348
- let InvalidOperationException$1 = class InvalidOperationException extends WorkDocsServiceException$1 {
347
+ }
348
+ class InvalidOperationException extends WorkDocsServiceException {
349
349
  name = "InvalidOperationException";
350
350
  $fault = "client";
351
351
  Message;
@@ -358,8 +358,8 @@ let InvalidOperationException$1 = class InvalidOperationException extends WorkDo
358
358
  Object.setPrototypeOf(this, InvalidOperationException.prototype);
359
359
  this.Message = opts.Message;
360
360
  }
361
- };
362
- let InvalidPasswordException$1 = class InvalidPasswordException extends WorkDocsServiceException$1 {
361
+ }
362
+ class InvalidPasswordException extends WorkDocsServiceException {
363
363
  name = "InvalidPasswordException";
364
364
  $fault = "client";
365
365
  Message;
@@ -372,8 +372,8 @@ let InvalidPasswordException$1 = class InvalidPasswordException extends WorkDocs
372
372
  Object.setPrototypeOf(this, InvalidPasswordException.prototype);
373
373
  this.Message = opts.Message;
374
374
  }
375
- };
376
- let RequestedEntityTooLargeException$1 = class RequestedEntityTooLargeException extends WorkDocsServiceException$1 {
375
+ }
376
+ class RequestedEntityTooLargeException extends WorkDocsServiceException {
377
377
  name = "RequestedEntityTooLargeException";
378
378
  $fault = "client";
379
379
  Message;
@@ -386,8 +386,8 @@ let RequestedEntityTooLargeException$1 = class RequestedEntityTooLargeException
386
386
  Object.setPrototypeOf(this, RequestedEntityTooLargeException.prototype);
387
387
  this.Message = opts.Message;
388
388
  }
389
- };
390
- let DraftUploadOutOfSyncException$1 = class DraftUploadOutOfSyncException extends WorkDocsServiceException$1 {
389
+ }
390
+ class DraftUploadOutOfSyncException extends WorkDocsServiceException {
391
391
  name = "DraftUploadOutOfSyncException";
392
392
  $fault = "client";
393
393
  Message;
@@ -400,8 +400,8 @@ let DraftUploadOutOfSyncException$1 = class DraftUploadOutOfSyncException extend
400
400
  Object.setPrototypeOf(this, DraftUploadOutOfSyncException.prototype);
401
401
  this.Message = opts.Message;
402
402
  }
403
- };
404
- let ResourceAlreadyCheckedOutException$1 = class ResourceAlreadyCheckedOutException extends WorkDocsServiceException$1 {
403
+ }
404
+ class ResourceAlreadyCheckedOutException extends WorkDocsServiceException {
405
405
  name = "ResourceAlreadyCheckedOutException";
406
406
  $fault = "client";
407
407
  Message;
@@ -414,8 +414,8 @@ let ResourceAlreadyCheckedOutException$1 = class ResourceAlreadyCheckedOutExcept
414
414
  Object.setPrototypeOf(this, ResourceAlreadyCheckedOutException.prototype);
415
415
  this.Message = opts.Message;
416
416
  }
417
- };
418
- let StorageLimitExceededException$1 = class StorageLimitExceededException extends WorkDocsServiceException$1 {
417
+ }
418
+ class StorageLimitExceededException extends WorkDocsServiceException {
419
419
  name = "StorageLimitExceededException";
420
420
  $fault = "client";
421
421
  Message;
@@ -428,8 +428,8 @@ let StorageLimitExceededException$1 = class StorageLimitExceededException extend
428
428
  Object.setPrototypeOf(this, StorageLimitExceededException.prototype);
429
429
  this.Message = opts.Message;
430
430
  }
431
- };
432
- let StorageLimitWillExceedException$1 = class StorageLimitWillExceedException extends WorkDocsServiceException$1 {
431
+ }
432
+ class StorageLimitWillExceedException extends WorkDocsServiceException {
433
433
  name = "StorageLimitWillExceedException";
434
434
  $fault = "client";
435
435
  Message;
@@ -442,8 +442,8 @@ let StorageLimitWillExceedException$1 = class StorageLimitWillExceedException ex
442
442
  Object.setPrototypeOf(this, StorageLimitWillExceedException.prototype);
443
443
  this.Message = opts.Message;
444
444
  }
445
- };
446
- let DeactivatingLastSystemUserException$1 = class DeactivatingLastSystemUserException extends WorkDocsServiceException$1 {
445
+ }
446
+ class DeactivatingLastSystemUserException extends WorkDocsServiceException {
447
447
  name = "DeactivatingLastSystemUserException";
448
448
  $fault = "client";
449
449
  Message;
@@ -458,8 +458,8 @@ let DeactivatingLastSystemUserException$1 = class DeactivatingLastSystemUserExce
458
458
  this.Message = opts.Message;
459
459
  this.Code = opts.Code;
460
460
  }
461
- };
462
- let IllegalUserStateException$1 = class IllegalUserStateException extends WorkDocsServiceException$1 {
461
+ }
462
+ class IllegalUserStateException extends WorkDocsServiceException {
463
463
  name = "IllegalUserStateException";
464
464
  $fault = "client";
465
465
  Message;
@@ -472,7 +472,7 @@ let IllegalUserStateException$1 = class IllegalUserStateException extends WorkDo
472
472
  Object.setPrototypeOf(this, IllegalUserStateException.prototype);
473
473
  this.Message = opts.Message;
474
474
  }
475
- };
475
+ }
476
476
 
477
477
  const _A = "Authentication";
478
478
  const _ADVU = "AbortDocumentVersionUpload";
@@ -849,7 +849,7 @@ var SearchQueryType = [0, n0, _SQT, 8, 0];
849
849
  var UrlType = [0, n0, _UT, 8, 0];
850
850
  var UserAttributeValueType = [0, n0, _UAVT, 8, 0];
851
851
  var UsernameType = [0, n0, _UTs, 8, 0];
852
- var AbortDocumentVersionUploadRequest = [
852
+ var AbortDocumentVersionUploadRequest$ = [
853
853
  3,
854
854
  n0,
855
855
  _ADVUR,
@@ -861,7 +861,7 @@ var AbortDocumentVersionUploadRequest = [
861
861
  [0, 1],
862
862
  ],
863
863
  ];
864
- var ActivateUserRequest = [
864
+ var ActivateUserRequest$ = [
865
865
  3,
866
866
  n0,
867
867
  _AUR,
@@ -872,8 +872,8 @@ var ActivateUserRequest = [
872
872
  [() => AuthenticationHeaderType, { [_hH]: _A }],
873
873
  ],
874
874
  ];
875
- var ActivateUserResponse = [3, n0, _AURc, 0, [_U], [[() => User, 0]]];
876
- var Activity = [
875
+ var ActivateUserResponse$ = [3, n0, _AURc, 0, [_U], [[() => User$, 0]]];
876
+ var Activity$ = [
877
877
  3,
878
878
  n0,
879
879
  _Ac,
@@ -884,22 +884,22 @@ var Activity = [
884
884
  4,
885
885
  2,
886
886
  0,
887
- [() => UserMetadata, 0],
888
- [() => Participants, 0],
889
- [() => ResourceMetadata, 0],
890
- [() => ResourceMetadata, 0],
891
- [() => CommentMetadata, 0],
887
+ [() => UserMetadata$, 0],
888
+ [() => Participants$, 0],
889
+ [() => ResourceMetadata$, 0],
890
+ [() => ResourceMetadata$, 0],
891
+ [() => CommentMetadata$, 0],
892
892
  ],
893
893
  ];
894
- var AddResourcePermissionsRequest = [
894
+ var AddResourcePermissionsRequest$ = [
895
895
  3,
896
896
  n0,
897
897
  _ARPR,
898
898
  0,
899
899
  [_AT, _RI, _Pr, _NO],
900
- [[() => AuthenticationHeaderType, { [_hH]: _A }], [0, 1], () => SharePrincipalList, [() => NotificationOptions, 0]],
900
+ [[() => AuthenticationHeaderType, { [_hH]: _A }], [0, 1], () => SharePrincipalList, [() => NotificationOptions$, 0]],
901
901
  ];
902
- var AddResourcePermissionsResponse = [
902
+ var AddResourcePermissionsResponse$ = [
903
903
  3,
904
904
  n0,
905
905
  _ARPRd,
@@ -907,27 +907,27 @@ var AddResourcePermissionsResponse = [
907
907
  [_SR],
908
908
  [[() => ShareResultsList, 0]],
909
909
  ];
910
- var Comment = [
910
+ var Comment$ = [
911
911
  3,
912
912
  n0,
913
913
  _C,
914
914
  0,
915
915
  [_CI, _PI, _TI, _Te, _Co, _CT, _S, _V, _RIe],
916
- [0, 0, 0, [() => CommentTextType, 0], [() => User, 0], 4, 0, 0, 0],
916
+ [0, 0, 0, [() => CommentTextType, 0], [() => User$, 0], 4, 0, 0, 0],
917
917
  ];
918
- var CommentMetadata = [
918
+ var CommentMetadata$ = [
919
919
  3,
920
920
  n0,
921
921
  _CM,
922
922
  0,
923
923
  [_CI, _Co, _CT, _CS, _RIe, _CIo],
924
- [0, [() => User, 0], 4, 0, 0, 0],
924
+ [0, [() => User$, 0], 4, 0, 0, 0],
925
925
  ];
926
- var ConcurrentModificationException = [-3, n0, _CME, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
927
- schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException, ConcurrentModificationException$1);
928
- var ConflictingOperationException = [-3, n0, _COE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
929
- schema.TypeRegistry.for(n0).registerError(ConflictingOperationException, ConflictingOperationException$1);
930
- var CreateCommentRequest = [
926
+ var ConcurrentModificationException$ = [-3, n0, _CME, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
927
+ schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
928
+ var ConflictingOperationException$ = [-3, n0, _COE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
929
+ schema.TypeRegistry.for(n0).registerError(ConflictingOperationException$, ConflictingOperationException);
930
+ var CreateCommentRequest$ = [
931
931
  3,
932
932
  n0,
933
933
  _CCR,
@@ -935,8 +935,8 @@ var CreateCommentRequest = [
935
935
  [_AT, _DI, _VI, _PI, _TI, _Te, _V, _NC],
936
936
  [[() => AuthenticationHeaderType, { [_hH]: _A }], [0, 1], [0, 1], 0, 0, [() => CommentTextType, 0], 0, 2],
937
937
  ];
938
- var CreateCommentResponse = [3, n0, _CCRr, 0, [_C], [[() => Comment, 0]]];
939
- var CreateCustomMetadataRequest = [
938
+ var CreateCommentResponse$ = [3, n0, _CCRr, 0, [_C], [[() => Comment$, 0]]];
939
+ var CreateCustomMetadataRequest$ = [
940
940
  3,
941
941
  n0,
942
942
  _CCMR,
@@ -944,8 +944,8 @@ var CreateCustomMetadataRequest = [
944
944
  [_AT, _RI, _VI, _CMu],
945
945
  [[() => AuthenticationHeaderType, { [_hH]: _A }], [0, 1], [0, { [_hQ]: _v }], 128 | 0],
946
946
  ];
947
- var CreateCustomMetadataResponse = [3, n0, _CCMRr, 0, [], []];
948
- var CreateFolderRequest = [
947
+ var CreateCustomMetadataResponse$ = [3, n0, _CCMRr, 0, [], []];
948
+ var CreateFolderRequest$ = [
949
949
  3,
950
950
  n0,
951
951
  _CFR,
@@ -953,8 +953,8 @@ var CreateFolderRequest = [
953
953
  [_AT, _N, _PFI],
954
954
  [[() => AuthenticationHeaderType, { [_hH]: _A }], [() => ResourceNameType, 0], 0],
955
955
  ];
956
- var CreateFolderResponse = [3, n0, _CFRr, 0, [_Me], [[() => FolderMetadata, 0]]];
957
- var CreateLabelsRequest = [
956
+ var CreateFolderResponse$ = [3, n0, _CFRr, 0, [_Me], [[() => FolderMetadata$, 0]]];
957
+ var CreateLabelsRequest$ = [
958
958
  3,
959
959
  n0,
960
960
  _CLR,
@@ -962,8 +962,8 @@ var CreateLabelsRequest = [
962
962
  [_RI, _L, _AT],
963
963
  [[0, 1], 64 | 0, [() => AuthenticationHeaderType, { [_hH]: _A }]],
964
964
  ];
965
- var CreateLabelsResponse = [3, n0, _CLRr, 0, [], []];
966
- var CreateNotificationSubscriptionRequest = [
965
+ var CreateLabelsResponse$ = [3, n0, _CLRr, 0, [], []];
966
+ var CreateNotificationSubscriptionRequest$ = [
967
967
  3,
968
968
  n0,
969
969
  _CNSR,
@@ -971,15 +971,15 @@ var CreateNotificationSubscriptionRequest = [
971
971
  [_OI, _E, _Pro, _ST],
972
972
  [[0, 1], 0, 0, 0],
973
973
  ];
974
- var CreateNotificationSubscriptionResponse = [
974
+ var CreateNotificationSubscriptionResponse$ = [
975
975
  3,
976
976
  n0,
977
977
  _CNSRr,
978
978
  0,
979
979
  [_Su],
980
- [() => Subscription],
980
+ [() => Subscription$],
981
981
  ];
982
- var CreateUserRequest = [
982
+ var CreateUserRequest$ = [
983
983
  3,
984
984
  n0,
985
985
  _CUR,
@@ -993,12 +993,12 @@ var CreateUserRequest = [
993
993
  [() => UserAttributeValueType, 0],
994
994
  [() => PasswordType, 0],
995
995
  0,
996
- () => StorageRuleType,
996
+ () => StorageRuleType$,
997
997
  [() => AuthenticationHeaderType, { [_hH]: _A }],
998
998
  ],
999
999
  ];
1000
- var CreateUserResponse = [3, n0, _CURr, 0, [_U], [[() => User, 0]]];
1001
- var CustomMetadataLimitExceededException = [
1000
+ var CreateUserResponse$ = [3, n0, _CURr, 0, [_U], [[() => User$, 0]]];
1001
+ var CustomMetadataLimitExceededException$ = [
1002
1002
  -3,
1003
1003
  n0,
1004
1004
  _CMLEE,
@@ -1006,9 +1006,9 @@ var CustomMetadataLimitExceededException = [
1006
1006
  [_M],
1007
1007
  [0],
1008
1008
  ];
1009
- schema.TypeRegistry.for(n0).registerError(CustomMetadataLimitExceededException, CustomMetadataLimitExceededException$1);
1010
- var DateRangeType = [3, n0, _DRT, 0, [_SV, _EV], [4, 4]];
1011
- var DeactivateUserRequest = [
1009
+ schema.TypeRegistry.for(n0).registerError(CustomMetadataLimitExceededException$, CustomMetadataLimitExceededException);
1010
+ var DateRangeType$ = [3, n0, _DRT, 0, [_SV, _EV], [4, 4]];
1011
+ var DeactivateUserRequest$ = [
1012
1012
  3,
1013
1013
  n0,
1014
1014
  _DUR,
@@ -1019,7 +1019,7 @@ var DeactivateUserRequest = [
1019
1019
  [() => AuthenticationHeaderType, { [_hH]: _A }],
1020
1020
  ],
1021
1021
  ];
1022
- var DeactivatingLastSystemUserException = [
1022
+ var DeactivatingLastSystemUserException$ = [
1023
1023
  -3,
1024
1024
  n0,
1025
1025
  _DLSUE,
@@ -1027,8 +1027,8 @@ var DeactivatingLastSystemUserException = [
1027
1027
  [_M, _Cod],
1028
1028
  [0, 0],
1029
1029
  ];
1030
- schema.TypeRegistry.for(n0).registerError(DeactivatingLastSystemUserException, DeactivatingLastSystemUserException$1);
1031
- var DeleteCommentRequest = [
1030
+ schema.TypeRegistry.for(n0).registerError(DeactivatingLastSystemUserException$, DeactivatingLastSystemUserException);
1031
+ var DeleteCommentRequest$ = [
1032
1032
  3,
1033
1033
  n0,
1034
1034
  _DCR,
@@ -1041,7 +1041,7 @@ var DeleteCommentRequest = [
1041
1041
  [0, 1],
1042
1042
  ],
1043
1043
  ];
1044
- var DeleteCustomMetadataRequest = [
1044
+ var DeleteCustomMetadataRequest$ = [
1045
1045
  3,
1046
1046
  n0,
1047
1047
  _DCMR,
@@ -1055,8 +1055,8 @@ var DeleteCustomMetadataRequest = [
1055
1055
  [2, { [_hQ]: _dA }],
1056
1056
  ],
1057
1057
  ];
1058
- var DeleteCustomMetadataResponse = [3, n0, _DCMRe, 0, [], []];
1059
- var DeleteDocumentRequest = [
1058
+ var DeleteCustomMetadataResponse$ = [3, n0, _DCMRe, 0, [], []];
1059
+ var DeleteDocumentRequest$ = [
1060
1060
  3,
1061
1061
  n0,
1062
1062
  _DDR,
@@ -1067,7 +1067,7 @@ var DeleteDocumentRequest = [
1067
1067
  [0, 1],
1068
1068
  ],
1069
1069
  ];
1070
- var DeleteDocumentVersionRequest = [
1070
+ var DeleteDocumentVersionRequest$ = [
1071
1071
  3,
1072
1072
  n0,
1073
1073
  _DDVR,
@@ -1080,7 +1080,7 @@ var DeleteDocumentVersionRequest = [
1080
1080
  [2, { [_hQ]: _dPV }],
1081
1081
  ],
1082
1082
  ];
1083
- var DeleteFolderContentsRequest = [
1083
+ var DeleteFolderContentsRequest$ = [
1084
1084
  3,
1085
1085
  n0,
1086
1086
  _DFCR,
@@ -1091,7 +1091,7 @@ var DeleteFolderContentsRequest = [
1091
1091
  [0, 1],
1092
1092
  ],
1093
1093
  ];
1094
- var DeleteFolderRequest = [
1094
+ var DeleteFolderRequest$ = [
1095
1095
  3,
1096
1096
  n0,
1097
1097
  _DFR,
@@ -1102,7 +1102,7 @@ var DeleteFolderRequest = [
1102
1102
  [0, 1],
1103
1103
  ],
1104
1104
  ];
1105
- var DeleteLabelsRequest = [
1105
+ var DeleteLabelsRequest$ = [
1106
1106
  3,
1107
1107
  n0,
1108
1108
  _DLR,
@@ -1115,8 +1115,8 @@ var DeleteLabelsRequest = [
1115
1115
  [2, { [_hQ]: _dA }],
1116
1116
  ],
1117
1117
  ];
1118
- var DeleteLabelsResponse = [3, n0, _DLRe, 0, [], []];
1119
- var DeleteNotificationSubscriptionRequest = [
1118
+ var DeleteLabelsResponse$ = [3, n0, _DLRe, 0, [], []];
1119
+ var DeleteNotificationSubscriptionRequest$ = [
1120
1120
  3,
1121
1121
  n0,
1122
1122
  _DNSR,
@@ -1127,7 +1127,7 @@ var DeleteNotificationSubscriptionRequest = [
1127
1127
  [0, 1],
1128
1128
  ],
1129
1129
  ];
1130
- var DeleteUserRequest = [
1130
+ var DeleteUserRequest$ = [
1131
1131
  3,
1132
1132
  n0,
1133
1133
  _DURe,
@@ -1138,7 +1138,7 @@ var DeleteUserRequest = [
1138
1138
  [0, 1],
1139
1139
  ],
1140
1140
  ];
1141
- var DescribeActivitiesRequest = [
1141
+ var DescribeActivitiesRequest$ = [
1142
1142
  3,
1143
1143
  n0,
1144
1144
  _DAR,
@@ -1157,7 +1157,7 @@ var DescribeActivitiesRequest = [
1157
1157
  [0, { [_hQ]: _m }],
1158
1158
  ],
1159
1159
  ];
1160
- var DescribeActivitiesResponse = [
1160
+ var DescribeActivitiesResponse$ = [
1161
1161
  3,
1162
1162
  n0,
1163
1163
  _DARe,
@@ -1165,7 +1165,7 @@ var DescribeActivitiesResponse = [
1165
1165
  [_UA, _Ma],
1166
1166
  [[() => UserActivities, 0], 0],
1167
1167
  ];
1168
- var DescribeCommentsRequest = [
1168
+ var DescribeCommentsRequest$ = [
1169
1169
  3,
1170
1170
  n0,
1171
1171
  _DCRe,
@@ -1179,7 +1179,7 @@ var DescribeCommentsRequest = [
1179
1179
  [0, { [_hQ]: _m }],
1180
1180
  ],
1181
1181
  ];
1182
- var DescribeCommentsResponse = [
1182
+ var DescribeCommentsResponse$ = [
1183
1183
  3,
1184
1184
  n0,
1185
1185
  _DCRes,
@@ -1187,7 +1187,7 @@ var DescribeCommentsResponse = [
1187
1187
  [_Com, _Ma],
1188
1188
  [[() => CommentList, 0], 0],
1189
1189
  ];
1190
- var DescribeDocumentVersionsRequest = [
1190
+ var DescribeDocumentVersionsRequest$ = [
1191
1191
  3,
1192
1192
  n0,
1193
1193
  _DDVRe,
@@ -1202,7 +1202,7 @@ var DescribeDocumentVersionsRequest = [
1202
1202
  [0, { [_hQ]: _f }],
1203
1203
  ],
1204
1204
  ];
1205
- var DescribeDocumentVersionsResponse = [
1205
+ var DescribeDocumentVersionsResponse$ = [
1206
1206
  3,
1207
1207
  n0,
1208
1208
  _DDVRes,
@@ -1210,7 +1210,7 @@ var DescribeDocumentVersionsResponse = [
1210
1210
  [_DV, _Ma],
1211
1211
  [[() => DocumentVersionMetadataList, 0], 0],
1212
1212
  ];
1213
- var DescribeFolderContentsRequest = [
1213
+ var DescribeFolderContentsRequest$ = [
1214
1214
  3,
1215
1215
  n0,
1216
1216
  _DFCRe,
@@ -1227,7 +1227,7 @@ var DescribeFolderContentsRequest = [
1227
1227
  [0, { [_hQ]: _i }],
1228
1228
  ],
1229
1229
  ];
1230
- var DescribeFolderContentsResponse = [
1230
+ var DescribeFolderContentsResponse$ = [
1231
1231
  3,
1232
1232
  n0,
1233
1233
  _DFCRes,
@@ -1235,7 +1235,7 @@ var DescribeFolderContentsResponse = [
1235
1235
  [_Fo, _D, _Ma],
1236
1236
  [[() => FolderMetadataList, 0], [() => DocumentMetadataList, 0], 0],
1237
1237
  ];
1238
- var DescribeGroupsRequest = [
1238
+ var DescribeGroupsRequest$ = [
1239
1239
  3,
1240
1240
  n0,
1241
1241
  _DGR,
@@ -1249,8 +1249,8 @@ var DescribeGroupsRequest = [
1249
1249
  [1, { [_hQ]: _li }],
1250
1250
  ],
1251
1251
  ];
1252
- var DescribeGroupsResponse = [3, n0, _DGRe, 0, [_G, _Ma], [() => GroupMetadataList, 0]];
1253
- var DescribeNotificationSubscriptionsRequest = [
1252
+ var DescribeGroupsResponse$ = [3, n0, _DGRe, 0, [_G, _Ma], [() => GroupMetadataList, 0]];
1253
+ var DescribeNotificationSubscriptionsRequest$ = [
1254
1254
  3,
1255
1255
  n0,
1256
1256
  _DNSRe,
@@ -1262,7 +1262,7 @@ var DescribeNotificationSubscriptionsRequest = [
1262
1262
  [1, { [_hQ]: _li }],
1263
1263
  ],
1264
1264
  ];
1265
- var DescribeNotificationSubscriptionsResponse = [
1265
+ var DescribeNotificationSubscriptionsResponse$ = [
1266
1266
  3,
1267
1267
  n0,
1268
1268
  _DNSRes,
@@ -1270,7 +1270,7 @@ var DescribeNotificationSubscriptionsResponse = [
1270
1270
  [_Sub, _Ma],
1271
1271
  [() => SubscriptionList, 0],
1272
1272
  ];
1273
- var DescribeResourcePermissionsRequest = [
1273
+ var DescribeResourcePermissionsRequest$ = [
1274
1274
  3,
1275
1275
  n0,
1276
1276
  _DRPR,
@@ -1284,7 +1284,7 @@ var DescribeResourcePermissionsRequest = [
1284
1284
  [0, { [_hQ]: _m }],
1285
1285
  ],
1286
1286
  ];
1287
- var DescribeResourcePermissionsResponse = [
1287
+ var DescribeResourcePermissionsResponse$ = [
1288
1288
  3,
1289
1289
  n0,
1290
1290
  _DRPRe,
@@ -1292,7 +1292,7 @@ var DescribeResourcePermissionsResponse = [
1292
1292
  [_Pr, _Ma],
1293
1293
  [() => PrincipalList, 0],
1294
1294
  ];
1295
- var DescribeRootFoldersRequest = [
1295
+ var DescribeRootFoldersRequest$ = [
1296
1296
  3,
1297
1297
  n0,
1298
1298
  _DRFR,
@@ -1304,7 +1304,7 @@ var DescribeRootFoldersRequest = [
1304
1304
  [0, { [_hQ]: _m }],
1305
1305
  ],
1306
1306
  ];
1307
- var DescribeRootFoldersResponse = [
1307
+ var DescribeRootFoldersResponse$ = [
1308
1308
  3,
1309
1309
  n0,
1310
1310
  _DRFRe,
@@ -1312,7 +1312,7 @@ var DescribeRootFoldersResponse = [
1312
1312
  [_Fo, _Ma],
1313
1313
  [[() => FolderMetadataList, 0], 0],
1314
1314
  ];
1315
- var DescribeUsersRequest = [
1315
+ var DescribeUsersRequest$ = [
1316
1316
  3,
1317
1317
  n0,
1318
1318
  _DURes,
@@ -1331,7 +1331,7 @@ var DescribeUsersRequest = [
1331
1331
  [0, { [_hQ]: _f }],
1332
1332
  ],
1333
1333
  ];
1334
- var DescribeUsersResponse = [
1334
+ var DescribeUsersResponse$ = [
1335
1335
  3,
1336
1336
  n0,
1337
1337
  _DUResc,
@@ -1339,7 +1339,7 @@ var DescribeUsersResponse = [
1339
1339
  [_Use, _TNOU, _Ma],
1340
1340
  [[() => OrganizationUserList, 0], 1, 0],
1341
1341
  ];
1342
- var DocumentLockedForCommentsException = [
1342
+ var DocumentLockedForCommentsException$ = [
1343
1343
  -3,
1344
1344
  n0,
1345
1345
  _DLFCE,
@@ -1347,16 +1347,16 @@ var DocumentLockedForCommentsException = [
1347
1347
  [_M],
1348
1348
  [0],
1349
1349
  ];
1350
- schema.TypeRegistry.for(n0).registerError(DocumentLockedForCommentsException, DocumentLockedForCommentsException$1);
1351
- var DocumentMetadata = [
1350
+ schema.TypeRegistry.for(n0).registerError(DocumentLockedForCommentsException$, DocumentLockedForCommentsException);
1351
+ var DocumentMetadata$ = [
1352
1352
  3,
1353
1353
  n0,
1354
1354
  _DM,
1355
1355
  0,
1356
1356
  [_Id, _CIr, _PFI, _CT, _MTo, _LVM, _RS, _L],
1357
- [0, 0, 0, 4, 4, [() => DocumentVersionMetadata, 0], 0, 64 | 0],
1357
+ [0, 0, 0, 4, 4, [() => DocumentVersionMetadata$, 0], 0, 64 | 0],
1358
1358
  ];
1359
- var DocumentVersionMetadata = [
1359
+ var DocumentVersionMetadata$ = [
1360
1360
  3,
1361
1361
  n0,
1362
1362
  _DVM,
@@ -1378,11 +1378,11 @@ var DocumentVersionMetadata = [
1378
1378
  [() => DocumentSourceUrlMap, 0],
1379
1379
  ],
1380
1380
  ];
1381
- var DraftUploadOutOfSyncException = [-3, n0, _DUOOSE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1382
- schema.TypeRegistry.for(n0).registerError(DraftUploadOutOfSyncException, DraftUploadOutOfSyncException$1);
1383
- var EntityAlreadyExistsException = [-3, n0, _EAEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1384
- schema.TypeRegistry.for(n0).registerError(EntityAlreadyExistsException, EntityAlreadyExistsException$1);
1385
- var EntityNotExistsException = [
1381
+ var DraftUploadOutOfSyncException$ = [-3, n0, _DUOOSE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1382
+ schema.TypeRegistry.for(n0).registerError(DraftUploadOutOfSyncException$, DraftUploadOutOfSyncException);
1383
+ var EntityAlreadyExistsException$ = [-3, n0, _EAEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1384
+ schema.TypeRegistry.for(n0).registerError(EntityAlreadyExistsException$, EntityAlreadyExistsException);
1385
+ var EntityNotExistsException$ = [
1386
1386
  -3,
1387
1387
  n0,
1388
1388
  _ENEE,
@@ -1390,10 +1390,10 @@ var EntityNotExistsException = [
1390
1390
  [_M, _EI],
1391
1391
  [0, 64 | 0],
1392
1392
  ];
1393
- schema.TypeRegistry.for(n0).registerError(EntityNotExistsException, EntityNotExistsException$1);
1394
- var FailedDependencyException = [-3, n0, _FDE, { [_e]: _c, [_hE]: 424 }, [_M], [0]];
1395
- schema.TypeRegistry.for(n0).registerError(FailedDependencyException, FailedDependencyException$1);
1396
- var Filters = [
1393
+ schema.TypeRegistry.for(n0).registerError(EntityNotExistsException$, EntityNotExistsException);
1394
+ var FailedDependencyException$ = [-3, n0, _FDE, { [_e]: _c, [_hE]: 424 }, [_M], [0]];
1395
+ schema.TypeRegistry.for(n0).registerError(FailedDependencyException$, FailedDependencyException);
1396
+ var Filters$ = [
1397
1397
  3,
1398
1398
  n0,
1399
1399
  _Fi,
@@ -1407,12 +1407,12 @@ var Filters = [
1407
1407
  () => SearchPrincipalTypeList,
1408
1408
  64 | 0,
1409
1409
  64 | 0,
1410
- () => LongRangeType,
1411
- () => DateRangeType,
1412
- () => DateRangeType,
1410
+ () => LongRangeType$,
1411
+ () => DateRangeType$,
1412
+ () => DateRangeType$,
1413
1413
  ],
1414
1414
  ];
1415
- var FolderMetadata = [
1415
+ var FolderMetadata$ = [
1416
1416
  3,
1417
1417
  n0,
1418
1418
  _FM,
@@ -1420,7 +1420,7 @@ var FolderMetadata = [
1420
1420
  [_Id, _N, _CIr, _PFI, _CT, _MTo, _RS, _Sig, _L, _Si, _LVS],
1421
1421
  [0, [() => ResourceNameType, 0], 0, 0, 4, 4, 0, 0, 64 | 0, 1, 1],
1422
1422
  ];
1423
- var GetCurrentUserRequest = [
1423
+ var GetCurrentUserRequest$ = [
1424
1424
  3,
1425
1425
  n0,
1426
1426
  _GCUR,
@@ -1428,8 +1428,8 @@ var GetCurrentUserRequest = [
1428
1428
  [_AT],
1429
1429
  [[() => AuthenticationHeaderType, { [_hH]: _A }]],
1430
1430
  ];
1431
- var GetCurrentUserResponse = [3, n0, _GCURe, 0, [_U], [[() => User, 0]]];
1432
- var GetDocumentPathRequest = [
1431
+ var GetCurrentUserResponse$ = [3, n0, _GCURe, 0, [_U], [[() => User$, 0]]];
1432
+ var GetDocumentPathRequest$ = [
1433
1433
  3,
1434
1434
  n0,
1435
1435
  _GDPR,
@@ -1443,8 +1443,8 @@ var GetDocumentPathRequest = [
1443
1443
  [0, { [_hQ]: _m }],
1444
1444
  ],
1445
1445
  ];
1446
- var GetDocumentPathResponse = [3, n0, _GDPRe, 0, [_Pat], [[() => ResourcePath, 0]]];
1447
- var GetDocumentRequest = [
1446
+ var GetDocumentPathResponse$ = [3, n0, _GDPRe, 0, [_Pat], [[() => ResourcePath$, 0]]];
1447
+ var GetDocumentRequest$ = [
1448
1448
  3,
1449
1449
  n0,
1450
1450
  _GDR,
@@ -1456,15 +1456,15 @@ var GetDocumentRequest = [
1456
1456
  [2, { [_hQ]: _iCM }],
1457
1457
  ],
1458
1458
  ];
1459
- var GetDocumentResponse = [
1459
+ var GetDocumentResponse$ = [
1460
1460
  3,
1461
1461
  n0,
1462
1462
  _GDRe,
1463
1463
  0,
1464
1464
  [_Me, _CMu],
1465
- [[() => DocumentMetadata, 0], 128 | 0],
1465
+ [[() => DocumentMetadata$, 0], 128 | 0],
1466
1466
  ];
1467
- var GetDocumentVersionRequest = [
1467
+ var GetDocumentVersionRequest$ = [
1468
1468
  3,
1469
1469
  n0,
1470
1470
  _GDVR,
@@ -1478,15 +1478,15 @@ var GetDocumentVersionRequest = [
1478
1478
  [2, { [_hQ]: _iCM }],
1479
1479
  ],
1480
1480
  ];
1481
- var GetDocumentVersionResponse = [
1481
+ var GetDocumentVersionResponse$ = [
1482
1482
  3,
1483
1483
  n0,
1484
1484
  _GDVRe,
1485
1485
  0,
1486
1486
  [_Me, _CMu],
1487
- [[() => DocumentVersionMetadata, 0], 128 | 0],
1487
+ [[() => DocumentVersionMetadata$, 0], 128 | 0],
1488
1488
  ];
1489
- var GetFolderPathRequest = [
1489
+ var GetFolderPathRequest$ = [
1490
1490
  3,
1491
1491
  n0,
1492
1492
  _GFPR,
@@ -1500,8 +1500,8 @@ var GetFolderPathRequest = [
1500
1500
  [0, { [_hQ]: _m }],
1501
1501
  ],
1502
1502
  ];
1503
- var GetFolderPathResponse = [3, n0, _GFPRe, 0, [_Pat], [[() => ResourcePath, 0]]];
1504
- var GetFolderRequest = [
1503
+ var GetFolderPathResponse$ = [3, n0, _GFPRe, 0, [_Pat], [[() => ResourcePath$, 0]]];
1504
+ var GetFolderRequest$ = [
1505
1505
  3,
1506
1506
  n0,
1507
1507
  _GFR,
@@ -1513,15 +1513,15 @@ var GetFolderRequest = [
1513
1513
  [2, { [_hQ]: _iCM }],
1514
1514
  ],
1515
1515
  ];
1516
- var GetFolderResponse = [
1516
+ var GetFolderResponse$ = [
1517
1517
  3,
1518
1518
  n0,
1519
1519
  _GFRe,
1520
1520
  0,
1521
1521
  [_Me, _CMu],
1522
- [[() => FolderMetadata, 0], 128 | 0],
1522
+ [[() => FolderMetadata$, 0], 128 | 0],
1523
1523
  ];
1524
- var GetResourcesRequest = [
1524
+ var GetResourcesRequest$ = [
1525
1525
  3,
1526
1526
  n0,
1527
1527
  _GRR,
@@ -1535,7 +1535,7 @@ var GetResourcesRequest = [
1535
1535
  [0, { [_hQ]: _m }],
1536
1536
  ],
1537
1537
  ];
1538
- var GetResourcesResponse = [
1538
+ var GetResourcesResponse$ = [
1539
1539
  3,
1540
1540
  n0,
1541
1541
  _GRRe,
@@ -1543,10 +1543,10 @@ var GetResourcesResponse = [
1543
1543
  [_Fo, _D, _Ma],
1544
1544
  [[() => FolderMetadataList, 0], [() => DocumentMetadataList, 0], 0],
1545
1545
  ];
1546
- var GroupMetadata = [3, n0, _GM, 0, [_Id, _N], [0, 0]];
1547
- var IllegalUserStateException = [-3, n0, _IUSE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1548
- schema.TypeRegistry.for(n0).registerError(IllegalUserStateException, IllegalUserStateException$1);
1549
- var InitiateDocumentVersionUploadRequest = [
1546
+ var GroupMetadata$ = [3, n0, _GM, 0, [_Id, _N], [0, 0]];
1547
+ var IllegalUserStateException$ = [-3, n0, _IUSE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1548
+ schema.TypeRegistry.for(n0).registerError(IllegalUserStateException$, IllegalUserStateException);
1549
+ var InitiateDocumentVersionUploadRequest$ = [
1550
1550
  3,
1551
1551
  n0,
1552
1552
  _IDVUR,
@@ -1554,30 +1554,30 @@ var InitiateDocumentVersionUploadRequest = [
1554
1554
  [_AT, _Id, _N, _CCT, _CMT, _CTo, _DSIB, _PFI],
1555
1555
  [[() => AuthenticationHeaderType, { [_hH]: _A }], 0, [() => ResourceNameType, 0], 4, 4, 0, 1, 0],
1556
1556
  ];
1557
- var InitiateDocumentVersionUploadResponse = [
1557
+ var InitiateDocumentVersionUploadResponse$ = [
1558
1558
  3,
1559
1559
  n0,
1560
1560
  _IDVURn,
1561
1561
  0,
1562
1562
  [_Me, _UM],
1563
1563
  [
1564
- [() => DocumentMetadata, 0],
1565
- [() => UploadMetadata, 0],
1564
+ [() => DocumentMetadata$, 0],
1565
+ [() => UploadMetadata$, 0],
1566
1566
  ],
1567
1567
  ];
1568
- var InvalidArgumentException = [-3, n0, _IAE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
1569
- schema.TypeRegistry.for(n0).registerError(InvalidArgumentException, InvalidArgumentException$1);
1570
- var InvalidCommentOperationException = [-3, n0, _ICOE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1571
- schema.TypeRegistry.for(n0).registerError(InvalidCommentOperationException, InvalidCommentOperationException$1);
1572
- var InvalidOperationException = [-3, n0, _IOE, { [_e]: _c, [_hE]: 405 }, [_M], [0]];
1573
- schema.TypeRegistry.for(n0).registerError(InvalidOperationException, InvalidOperationException$1);
1574
- var InvalidPasswordException = [-3, n0, _IPE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
1575
- schema.TypeRegistry.for(n0).registerError(InvalidPasswordException, InvalidPasswordException$1);
1576
- var LimitExceededException = [-3, n0, _LEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1577
- schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
1578
- var LongRangeType = [3, n0, _LRT, 0, [_SV, _EV], [1, 1]];
1579
- var NotificationOptions = [3, n0, _NO, 0, [_SE, _EM], [2, [() => MessageType, 0]]];
1580
- var Participants = [
1568
+ var InvalidArgumentException$ = [-3, n0, _IAE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
1569
+ schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
1570
+ var InvalidCommentOperationException$ = [-3, n0, _ICOE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1571
+ schema.TypeRegistry.for(n0).registerError(InvalidCommentOperationException$, InvalidCommentOperationException);
1572
+ var InvalidOperationException$ = [-3, n0, _IOE, { [_e]: _c, [_hE]: 405 }, [_M], [0]];
1573
+ schema.TypeRegistry.for(n0).registerError(InvalidOperationException$, InvalidOperationException);
1574
+ var InvalidPasswordException$ = [-3, n0, _IPE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
1575
+ schema.TypeRegistry.for(n0).registerError(InvalidPasswordException$, InvalidPasswordException);
1576
+ var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1577
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
1578
+ var LongRangeType$ = [3, n0, _LRT, 0, [_SV, _EV], [1, 1]];
1579
+ var NotificationOptions$ = [3, n0, _NO, 0, [_SE, _EM], [2, [() => MessageType, 0]]];
1580
+ var Participants$ = [
1581
1581
  3,
1582
1582
  n0,
1583
1583
  _P,
@@ -1585,11 +1585,11 @@ var Participants = [
1585
1585
  [_Use, _G],
1586
1586
  [[() => UserMetadataList, 0], () => GroupMetadataList],
1587
1587
  ];
1588
- var PermissionInfo = [3, n0, _PIe, 0, [_R, _T], [0, 0]];
1589
- var Principal = [3, n0, _Pri, 0, [_Id, _T, _Ro], [0, 0, () => PermissionInfoList]];
1590
- var ProhibitedStateException = [-3, n0, _PSE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1591
- schema.TypeRegistry.for(n0).registerError(ProhibitedStateException, ProhibitedStateException$1);
1592
- var RemoveAllResourcePermissionsRequest = [
1588
+ var PermissionInfo$ = [3, n0, _PIe, 0, [_R, _T], [0, 0]];
1589
+ var Principal$ = [3, n0, _Pri, 0, [_Id, _T, _Ro], [0, 0, () => PermissionInfoList]];
1590
+ var ProhibitedStateException$ = [-3, n0, _PSE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1591
+ schema.TypeRegistry.for(n0).registerError(ProhibitedStateException$, ProhibitedStateException);
1592
+ var RemoveAllResourcePermissionsRequest$ = [
1593
1593
  3,
1594
1594
  n0,
1595
1595
  _RARPR,
@@ -1600,7 +1600,7 @@ var RemoveAllResourcePermissionsRequest = [
1600
1600
  [0, 1],
1601
1601
  ],
1602
1602
  ];
1603
- var RemoveResourcePermissionRequest = [
1603
+ var RemoveResourcePermissionRequest$ = [
1604
1604
  3,
1605
1605
  n0,
1606
1606
  _RRPR,
@@ -1613,9 +1613,9 @@ var RemoveResourcePermissionRequest = [
1613
1613
  [0, { [_hQ]: _t }],
1614
1614
  ],
1615
1615
  ];
1616
- var RequestedEntityTooLargeException = [-3, n0, _RETLE, { [_e]: _c, [_hE]: 413 }, [_M], [0]];
1617
- schema.TypeRegistry.for(n0).registerError(RequestedEntityTooLargeException, RequestedEntityTooLargeException$1);
1618
- var ResourceAlreadyCheckedOutException = [
1616
+ var RequestedEntityTooLargeException$ = [-3, n0, _RETLE, { [_e]: _c, [_hE]: 413 }, [_M], [0]];
1617
+ schema.TypeRegistry.for(n0).registerError(RequestedEntityTooLargeException$, RequestedEntityTooLargeException);
1618
+ var ResourceAlreadyCheckedOutException$ = [
1619
1619
  -3,
1620
1620
  n0,
1621
1621
  _RACOE,
@@ -1623,18 +1623,25 @@ var ResourceAlreadyCheckedOutException = [
1623
1623
  [_M],
1624
1624
  [0],
1625
1625
  ];
1626
- schema.TypeRegistry.for(n0).registerError(ResourceAlreadyCheckedOutException, ResourceAlreadyCheckedOutException$1);
1627
- var ResourceMetadata = [
1626
+ schema.TypeRegistry.for(n0).registerError(ResourceAlreadyCheckedOutException$, ResourceAlreadyCheckedOutException);
1627
+ var ResourceMetadata$ = [
1628
1628
  3,
1629
1629
  n0,
1630
1630
  _RM,
1631
1631
  0,
1632
1632
  [_T, _N, _ON, _Id, _VI, _Ow, _PI],
1633
- [0, [() => ResourceNameType, 0], [() => ResourceNameType, 0], 0, 0, [() => UserMetadata, 0], 0],
1633
+ [0, [() => ResourceNameType, 0], [() => ResourceNameType, 0], 0, 0, [() => UserMetadata$, 0], 0],
1634
+ ];
1635
+ var ResourcePath$ = [3, n0, _RP, 0, [_Comp], [[() => ResourcePathComponentList, 0]]];
1636
+ var ResourcePathComponent$ = [
1637
+ 3,
1638
+ n0,
1639
+ _RPC,
1640
+ 0,
1641
+ [_Id, _N],
1642
+ [0, [() => ResourceNameType, 0]],
1634
1643
  ];
1635
- var ResourcePath = [3, n0, _RP, 0, [_Comp], [[() => ResourcePathComponentList, 0]]];
1636
- var ResourcePathComponent = [3, n0, _RPC, 0, [_Id, _N], [0, [() => ResourceNameType, 0]]];
1637
- var ResponseItem = [
1644
+ var ResponseItem$ = [
1638
1645
  3,
1639
1646
  n0,
1640
1647
  _RIes,
@@ -1643,13 +1650,13 @@ var ResponseItem = [
1643
1650
  [
1644
1651
  0,
1645
1652
  [() => ResponseItemWebUrl, 0],
1646
- [() => DocumentMetadata, 0],
1647
- [() => FolderMetadata, 0],
1648
- [() => CommentMetadata, 0],
1649
- [() => DocumentVersionMetadata, 0],
1653
+ [() => DocumentMetadata$, 0],
1654
+ [() => FolderMetadata$, 0],
1655
+ [() => CommentMetadata$, 0],
1656
+ [() => DocumentVersionMetadata$, 0],
1650
1657
  ],
1651
1658
  ];
1652
- var RestoreDocumentVersionsRequest = [
1659
+ var RestoreDocumentVersionsRequest$ = [
1653
1660
  3,
1654
1661
  n0,
1655
1662
  _RDVR,
@@ -1660,8 +1667,8 @@ var RestoreDocumentVersionsRequest = [
1660
1667
  [0, 1],
1661
1668
  ],
1662
1669
  ];
1663
- var SearchPrincipalType = [3, n0, _SPT, 0, [_Id, _Ro], [0, 64 | 0]];
1664
- var SearchResourcesRequest = [
1670
+ var SearchPrincipalType$ = [3, n0, _SPT, 0, [_Id, _Ro], [0, 64 | 0]];
1671
+ var SearchResourcesRequest$ = [
1665
1672
  3,
1666
1673
  n0,
1667
1674
  _SRR,
@@ -1673,13 +1680,13 @@ var SearchResourcesRequest = [
1673
1680
  64 | 0,
1674
1681
  0,
1675
1682
  64 | 0,
1676
- () => Filters,
1683
+ () => Filters$,
1677
1684
  () => SearchResultSortList,
1678
1685
  1,
1679
1686
  0,
1680
1687
  ],
1681
1688
  ];
1682
- var SearchResourcesResponse = [
1689
+ var SearchResourcesResponse$ = [
1683
1690
  3,
1684
1691
  n0,
1685
1692
  _SRRe,
@@ -1687,11 +1694,11 @@ var SearchResourcesResponse = [
1687
1694
  [_It, _Ma],
1688
1695
  [[() => ResponseItemsList, 0], 0],
1689
1696
  ];
1690
- var SearchSortResult = [3, n0, _SSR, 0, [_Fie, _O], [0, 0]];
1691
- var ServiceUnavailableException = [-3, n0, _SUE, { [_e]: _se, [_hE]: 503 }, [_M], [0]];
1692
- schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
1693
- var SharePrincipal = [3, n0, _SP, 0, [_Id, _T, _R], [0, 0, 0]];
1694
- var ShareResult = [
1697
+ var SearchSortResult$ = [3, n0, _SSR, 0, [_Fie, _O], [0, 0]];
1698
+ var ServiceUnavailableException$ = [-3, n0, _SUE, { [_e]: _se, [_hE]: 503 }, [_M], [0]];
1699
+ schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
1700
+ var SharePrincipal$ = [3, n0, _SP, 0, [_Id, _T, _R], [0, 0, 0]];
1701
+ var ShareResult$ = [
1695
1702
  3,
1696
1703
  n0,
1697
1704
  _SRh,
@@ -1699,17 +1706,17 @@ var ShareResult = [
1699
1706
  [_PIr, _IPI, _R, _S, _SIh, _SM],
1700
1707
  [0, 0, 0, 0, 0, [() => MessageType, 0]],
1701
1708
  ];
1702
- var StorageLimitExceededException = [-3, n0, _SLEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1703
- schema.TypeRegistry.for(n0).registerError(StorageLimitExceededException, StorageLimitExceededException$1);
1704
- var StorageLimitWillExceedException = [-3, n0, _SLWEE, { [_e]: _c, [_hE]: 413 }, [_M], [0]];
1705
- schema.TypeRegistry.for(n0).registerError(StorageLimitWillExceedException, StorageLimitWillExceedException$1);
1706
- var StorageRuleType = [3, n0, _SRT, 0, [_SAIB, _STto], [1, 0]];
1707
- var Subscription = [3, n0, _Su, 0, [_SI, _EP, _Pro], [0, 0, 0]];
1708
- var TooManyLabelsException = [-3, n0, _TMLE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
1709
- schema.TypeRegistry.for(n0).registerError(TooManyLabelsException, TooManyLabelsException$1);
1710
- var TooManySubscriptionsException = [-3, n0, _TMSE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
1711
- schema.TypeRegistry.for(n0).registerError(TooManySubscriptionsException, TooManySubscriptionsException$1);
1712
- var UnauthorizedOperationException = [
1709
+ var StorageLimitExceededException$ = [-3, n0, _SLEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
1710
+ schema.TypeRegistry.for(n0).registerError(StorageLimitExceededException$, StorageLimitExceededException);
1711
+ var StorageLimitWillExceedException$ = [-3, n0, _SLWEE, { [_e]: _c, [_hE]: 413 }, [_M], [0]];
1712
+ schema.TypeRegistry.for(n0).registerError(StorageLimitWillExceedException$, StorageLimitWillExceedException);
1713
+ var StorageRuleType$ = [3, n0, _SRT, 0, [_SAIB, _STto], [1, 0]];
1714
+ var Subscription$ = [3, n0, _Su, 0, [_SI, _EP, _Pro], [0, 0, 0]];
1715
+ var TooManyLabelsException$ = [-3, n0, _TMLE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
1716
+ schema.TypeRegistry.for(n0).registerError(TooManyLabelsException$, TooManyLabelsException);
1717
+ var TooManySubscriptionsException$ = [-3, n0, _TMSE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
1718
+ schema.TypeRegistry.for(n0).registerError(TooManySubscriptionsException$, TooManySubscriptionsException);
1719
+ var UnauthorizedOperationException$ = [
1713
1720
  -3,
1714
1721
  n0,
1715
1722
  _UOE,
@@ -1717,8 +1724,8 @@ var UnauthorizedOperationException = [
1717
1724
  [_M, _Cod],
1718
1725
  [0, 0],
1719
1726
  ];
1720
- schema.TypeRegistry.for(n0).registerError(UnauthorizedOperationException, UnauthorizedOperationException$1);
1721
- var UnauthorizedResourceAccessException = [
1727
+ schema.TypeRegistry.for(n0).registerError(UnauthorizedOperationException$, UnauthorizedOperationException);
1728
+ var UnauthorizedResourceAccessException$ = [
1722
1729
  -3,
1723
1730
  n0,
1724
1731
  _URAE,
@@ -1726,8 +1733,8 @@ var UnauthorizedResourceAccessException = [
1726
1733
  [_M],
1727
1734
  [0],
1728
1735
  ];
1729
- schema.TypeRegistry.for(n0).registerError(UnauthorizedResourceAccessException, UnauthorizedResourceAccessException$1);
1730
- var UpdateDocumentRequest = [
1736
+ schema.TypeRegistry.for(n0).registerError(UnauthorizedResourceAccessException$, UnauthorizedResourceAccessException);
1737
+ var UpdateDocumentRequest$ = [
1731
1738
  3,
1732
1739
  n0,
1733
1740
  _UDR,
@@ -1735,7 +1742,7 @@ var UpdateDocumentRequest = [
1735
1742
  [_AT, _DI, _N, _PFI, _RS],
1736
1743
  [[() => AuthenticationHeaderType, { [_hH]: _A }], [0, 1], [() => ResourceNameType, 0], 0, 0],
1737
1744
  ];
1738
- var UpdateDocumentVersionRequest = [
1745
+ var UpdateDocumentVersionRequest$ = [
1739
1746
  3,
1740
1747
  n0,
1741
1748
  _UDVR,
@@ -1743,7 +1750,7 @@ var UpdateDocumentVersionRequest = [
1743
1750
  [_AT, _DI, _VI, _VS],
1744
1751
  [[() => AuthenticationHeaderType, { [_hH]: _A }], [0, 1], [0, 1], 0],
1745
1752
  ];
1746
- var UpdateFolderRequest = [
1753
+ var UpdateFolderRequest$ = [
1747
1754
  3,
1748
1755
  n0,
1749
1756
  _UFR,
@@ -1751,7 +1758,7 @@ var UpdateFolderRequest = [
1751
1758
  [_AT, _FI, _N, _PFI, _RS],
1752
1759
  [[() => AuthenticationHeaderType, { [_hH]: _A }], [0, 1], [() => ResourceNameType, 0], 0, 0],
1753
1760
  ];
1754
- var UpdateUserRequest = [
1761
+ var UpdateUserRequest$ = [
1755
1762
  3,
1756
1763
  n0,
1757
1764
  _UUR,
@@ -1763,15 +1770,15 @@ var UpdateUserRequest = [
1763
1770
  [() => UserAttributeValueType, 0],
1764
1771
  [() => UserAttributeValueType, 0],
1765
1772
  0,
1766
- () => StorageRuleType,
1773
+ () => StorageRuleType$,
1767
1774
  0,
1768
1775
  0,
1769
1776
  0,
1770
1777
  ],
1771
1778
  ];
1772
- var UpdateUserResponse = [3, n0, _UURp, 0, [_U], [[() => User, 0]]];
1773
- var UploadMetadata = [3, n0, _UM, 0, [_UU, _SH], [[() => UrlType, 0], 128 | 0]];
1774
- var User = [
1779
+ var UpdateUserResponse$ = [3, n0, _UURp, 0, [_U], [[() => User$, 0]]];
1780
+ var UploadMetadata$ = [3, n0, _UM, 0, [_UU, _SH], [[() => UrlType, 0], 128 | 0]];
1781
+ var User$ = [
1775
1782
  3,
1776
1783
  n0,
1777
1784
  _U,
@@ -1792,10 +1799,10 @@ var User = [
1792
1799
  4,
1793
1800
  0,
1794
1801
  0,
1795
- () => UserStorageMetadata,
1802
+ () => UserStorageMetadata$,
1796
1803
  ],
1797
1804
  ];
1798
- var UserMetadata = [
1805
+ var UserMetadata$ = [
1799
1806
  3,
1800
1807
  n0,
1801
1808
  _UMs,
@@ -1809,380 +1816,380 @@ var UserMetadata = [
1809
1816
  [() => EmailAddressType, 0],
1810
1817
  ],
1811
1818
  ];
1812
- var UserStorageMetadata = [3, n0, _USM, 0, [_SUIB, _SRt], [1, () => StorageRuleType]];
1819
+ var UserStorageMetadata$ = [3, n0, _USM, 0, [_SUIB, _SRt], [1, () => StorageRuleType$]];
1813
1820
  var __Unit = "unit";
1814
- var WorkDocsServiceException = [-3, _sm, "WorkDocsServiceException", 0, [], []];
1815
- schema.TypeRegistry.for(_sm).registerError(WorkDocsServiceException, WorkDocsServiceException$1);
1816
- var CommentList = [1, n0, _CL, 0, [() => Comment, 0]];
1817
- var DocumentMetadataList = [1, n0, _DML, 0, [() => DocumentMetadata, 0]];
1818
- var DocumentVersionMetadataList = [1, n0, _DVML, 0, [() => DocumentVersionMetadata, 0]];
1819
- var FolderMetadataList = [1, n0, _FML, 0, [() => FolderMetadata, 0]];
1820
- var GroupMetadataList = [1, n0, _GML, 0, () => GroupMetadata];
1821
- var OrganizationUserList = [1, n0, _OUL, 0, [() => User, 0]];
1822
- var PermissionInfoList = [1, n0, _PIL, 0, () => PermissionInfo];
1823
- var PrincipalList = [1, n0, _PL, 0, () => Principal];
1824
- var ResourcePathComponentList = [1, n0, _RPCL, 0, [() => ResourcePathComponent, 0]];
1825
- var ResponseItemsList = [1, n0, _RIL, 0, [() => ResponseItem, 0]];
1826
- var SearchPrincipalTypeList = [1, n0, _SPTL, 0, () => SearchPrincipalType];
1827
- var SearchResultSortList = [1, n0, _SRSL, 0, () => SearchSortResult];
1828
- var SharePrincipalList = [1, n0, _SPL, 0, () => SharePrincipal];
1829
- var ShareResultsList = [1, n0, _SRL, 0, [() => ShareResult, 0]];
1830
- var SubscriptionList = [1, n0, _SL, 0, () => Subscription];
1831
- var UserActivities = [1, n0, _UA, 0, [() => Activity, 0]];
1832
- var UserMetadataList = [1, n0, _UML, 0, [() => UserMetadata, 0]];
1821
+ var WorkDocsServiceException$ = [-3, _sm, "WorkDocsServiceException", 0, [], []];
1822
+ schema.TypeRegistry.for(_sm).registerError(WorkDocsServiceException$, WorkDocsServiceException);
1823
+ var CommentList = [1, n0, _CL, 0, [() => Comment$, 0]];
1824
+ var DocumentMetadataList = [1, n0, _DML, 0, [() => DocumentMetadata$, 0]];
1825
+ var DocumentVersionMetadataList = [1, n0, _DVML, 0, [() => DocumentVersionMetadata$, 0]];
1826
+ var FolderMetadataList = [1, n0, _FML, 0, [() => FolderMetadata$, 0]];
1827
+ var GroupMetadataList = [1, n0, _GML, 0, () => GroupMetadata$];
1828
+ var OrganizationUserList = [1, n0, _OUL, 0, [() => User$, 0]];
1829
+ var PermissionInfoList = [1, n0, _PIL, 0, () => PermissionInfo$];
1830
+ var PrincipalList = [1, n0, _PL, 0, () => Principal$];
1831
+ var ResourcePathComponentList = [1, n0, _RPCL, 0, [() => ResourcePathComponent$, 0]];
1832
+ var ResponseItemsList = [1, n0, _RIL, 0, [() => ResponseItem$, 0]];
1833
+ var SearchPrincipalTypeList = [1, n0, _SPTL, 0, () => SearchPrincipalType$];
1834
+ var SearchResultSortList = [1, n0, _SRSL, 0, () => SearchSortResult$];
1835
+ var SharePrincipalList = [1, n0, _SPL, 0, () => SharePrincipal$];
1836
+ var ShareResultsList = [1, n0, _SRL, 0, [() => ShareResult$, 0]];
1837
+ var SubscriptionList = [1, n0, _SL, 0, () => Subscription$];
1838
+ var UserActivities = [1, n0, _UA, 0, [() => Activity$, 0]];
1839
+ var UserMetadataList = [1, n0, _UML, 0, [() => UserMetadata$, 0]];
1833
1840
  var DocumentSourceUrlMap = [2, n0, _DSUM, 0, [0, 0], [() => UrlType, 0]];
1834
1841
  var DocumentThumbnailUrlMap = [2, n0, _DTUM, 0, [0, 0], [() => UrlType, 0]];
1835
- var AbortDocumentVersionUpload = [
1842
+ var AbortDocumentVersionUpload$ = [
1836
1843
  9,
1837
1844
  n0,
1838
1845
  _ADVU,
1839
1846
  { [_h]: ["DELETE", "/api/v1/documents/{DocumentId}/versions/{VersionId}", 204] },
1840
- () => AbortDocumentVersionUploadRequest,
1847
+ () => AbortDocumentVersionUploadRequest$,
1841
1848
  () => __Unit,
1842
1849
  ];
1843
- var ActivateUser = [
1850
+ var ActivateUser$ = [
1844
1851
  9,
1845
1852
  n0,
1846
1853
  _AU,
1847
1854
  { [_h]: ["POST", "/api/v1/users/{UserId}/activation", 200] },
1848
- () => ActivateUserRequest,
1849
- () => ActivateUserResponse,
1855
+ () => ActivateUserRequest$,
1856
+ () => ActivateUserResponse$,
1850
1857
  ];
1851
- var AddResourcePermissions = [
1858
+ var AddResourcePermissions$ = [
1852
1859
  9,
1853
1860
  n0,
1854
1861
  _ARP,
1855
1862
  { [_h]: ["POST", "/api/v1/resources/{ResourceId}/permissions", 201] },
1856
- () => AddResourcePermissionsRequest,
1857
- () => AddResourcePermissionsResponse,
1863
+ () => AddResourcePermissionsRequest$,
1864
+ () => AddResourcePermissionsResponse$,
1858
1865
  ];
1859
- var CreateComment = [
1866
+ var CreateComment$ = [
1860
1867
  9,
1861
1868
  n0,
1862
1869
  _CCr,
1863
1870
  { [_h]: ["POST", "/api/v1/documents/{DocumentId}/versions/{VersionId}/comment", 201] },
1864
- () => CreateCommentRequest,
1865
- () => CreateCommentResponse,
1871
+ () => CreateCommentRequest$,
1872
+ () => CreateCommentResponse$,
1866
1873
  ];
1867
- var CreateCustomMetadata = [
1874
+ var CreateCustomMetadata$ = [
1868
1875
  9,
1869
1876
  n0,
1870
1877
  _CCM,
1871
1878
  { [_h]: ["PUT", "/api/v1/resources/{ResourceId}/customMetadata", 200] },
1872
- () => CreateCustomMetadataRequest,
1873
- () => CreateCustomMetadataResponse,
1879
+ () => CreateCustomMetadataRequest$,
1880
+ () => CreateCustomMetadataResponse$,
1874
1881
  ];
1875
- var CreateFolder = [
1882
+ var CreateFolder$ = [
1876
1883
  9,
1877
1884
  n0,
1878
1885
  _CF,
1879
1886
  { [_h]: ["POST", "/api/v1/folders", 201] },
1880
- () => CreateFolderRequest,
1881
- () => CreateFolderResponse,
1887
+ () => CreateFolderRequest$,
1888
+ () => CreateFolderResponse$,
1882
1889
  ];
1883
- var CreateLabels = [
1890
+ var CreateLabels$ = [
1884
1891
  9,
1885
1892
  n0,
1886
1893
  _CLr,
1887
1894
  { [_h]: ["PUT", "/api/v1/resources/{ResourceId}/labels", 200] },
1888
- () => CreateLabelsRequest,
1889
- () => CreateLabelsResponse,
1895
+ () => CreateLabelsRequest$,
1896
+ () => CreateLabelsResponse$,
1890
1897
  ];
1891
- var CreateNotificationSubscription = [
1898
+ var CreateNotificationSubscription$ = [
1892
1899
  9,
1893
1900
  n0,
1894
1901
  _CNS,
1895
1902
  { [_h]: ["POST", "/api/v1/organizations/{OrganizationId}/subscriptions", 200] },
1896
- () => CreateNotificationSubscriptionRequest,
1897
- () => CreateNotificationSubscriptionResponse,
1903
+ () => CreateNotificationSubscriptionRequest$,
1904
+ () => CreateNotificationSubscriptionResponse$,
1898
1905
  ];
1899
- var CreateUser = [
1906
+ var CreateUser$ = [
1900
1907
  9,
1901
1908
  n0,
1902
1909
  _CU,
1903
1910
  { [_h]: ["POST", "/api/v1/users", 201] },
1904
- () => CreateUserRequest,
1905
- () => CreateUserResponse,
1911
+ () => CreateUserRequest$,
1912
+ () => CreateUserResponse$,
1906
1913
  ];
1907
- var DeactivateUser = [
1914
+ var DeactivateUser$ = [
1908
1915
  9,
1909
1916
  n0,
1910
1917
  _DU,
1911
1918
  { [_h]: ["DELETE", "/api/v1/users/{UserId}/activation", 204] },
1912
- () => DeactivateUserRequest,
1919
+ () => DeactivateUserRequest$,
1913
1920
  () => __Unit,
1914
1921
  ];
1915
- var DeleteComment = [
1922
+ var DeleteComment$ = [
1916
1923
  9,
1917
1924
  n0,
1918
1925
  _DC,
1919
1926
  { [_h]: ["DELETE", "/api/v1/documents/{DocumentId}/versions/{VersionId}/comment/{CommentId}", 204] },
1920
- () => DeleteCommentRequest,
1927
+ () => DeleteCommentRequest$,
1921
1928
  () => __Unit,
1922
1929
  ];
1923
- var DeleteCustomMetadata = [
1930
+ var DeleteCustomMetadata$ = [
1924
1931
  9,
1925
1932
  n0,
1926
1933
  _DCM,
1927
1934
  { [_h]: ["DELETE", "/api/v1/resources/{ResourceId}/customMetadata", 200] },
1928
- () => DeleteCustomMetadataRequest,
1929
- () => DeleteCustomMetadataResponse,
1935
+ () => DeleteCustomMetadataRequest$,
1936
+ () => DeleteCustomMetadataResponse$,
1930
1937
  ];
1931
- var DeleteDocument = [
1938
+ var DeleteDocument$ = [
1932
1939
  9,
1933
1940
  n0,
1934
1941
  _DD,
1935
1942
  { [_h]: ["DELETE", "/api/v1/documents/{DocumentId}", 204] },
1936
- () => DeleteDocumentRequest,
1943
+ () => DeleteDocumentRequest$,
1937
1944
  () => __Unit,
1938
1945
  ];
1939
- var DeleteDocumentVersion = [
1946
+ var DeleteDocumentVersion$ = [
1940
1947
  9,
1941
1948
  n0,
1942
1949
  _DDV,
1943
1950
  { [_h]: ["DELETE", "/api/v1/documentVersions/{DocumentId}/versions/{VersionId}", 204] },
1944
- () => DeleteDocumentVersionRequest,
1951
+ () => DeleteDocumentVersionRequest$,
1945
1952
  () => __Unit,
1946
1953
  ];
1947
- var DeleteFolder = [
1954
+ var DeleteFolder$ = [
1948
1955
  9,
1949
1956
  n0,
1950
1957
  _DF,
1951
1958
  { [_h]: ["DELETE", "/api/v1/folders/{FolderId}", 204] },
1952
- () => DeleteFolderRequest,
1959
+ () => DeleteFolderRequest$,
1953
1960
  () => __Unit,
1954
1961
  ];
1955
- var DeleteFolderContents = [
1962
+ var DeleteFolderContents$ = [
1956
1963
  9,
1957
1964
  n0,
1958
1965
  _DFC,
1959
1966
  { [_h]: ["DELETE", "/api/v1/folders/{FolderId}/contents", 204] },
1960
- () => DeleteFolderContentsRequest,
1967
+ () => DeleteFolderContentsRequest$,
1961
1968
  () => __Unit,
1962
1969
  ];
1963
- var DeleteLabels = [
1970
+ var DeleteLabels$ = [
1964
1971
  9,
1965
1972
  n0,
1966
1973
  _DL,
1967
1974
  { [_h]: ["DELETE", "/api/v1/resources/{ResourceId}/labels", 200] },
1968
- () => DeleteLabelsRequest,
1969
- () => DeleteLabelsResponse,
1975
+ () => DeleteLabelsRequest$,
1976
+ () => DeleteLabelsResponse$,
1970
1977
  ];
1971
- var DeleteNotificationSubscription = [
1978
+ var DeleteNotificationSubscription$ = [
1972
1979
  9,
1973
1980
  n0,
1974
1981
  _DNS,
1975
1982
  { [_h]: ["DELETE", "/api/v1/organizations/{OrganizationId}/subscriptions/{SubscriptionId}", 200] },
1976
- () => DeleteNotificationSubscriptionRequest,
1983
+ () => DeleteNotificationSubscriptionRequest$,
1977
1984
  () => __Unit,
1978
1985
  ];
1979
- var DeleteUser = [
1986
+ var DeleteUser$ = [
1980
1987
  9,
1981
1988
  n0,
1982
1989
  _DUe,
1983
1990
  { [_h]: ["DELETE", "/api/v1/users/{UserId}", 204] },
1984
- () => DeleteUserRequest,
1991
+ () => DeleteUserRequest$,
1985
1992
  () => __Unit,
1986
1993
  ];
1987
- var DescribeActivities = [
1994
+ var DescribeActivities$ = [
1988
1995
  9,
1989
1996
  n0,
1990
1997
  _DAe,
1991
1998
  { [_h]: ["GET", "/api/v1/activities", 200] },
1992
- () => DescribeActivitiesRequest,
1993
- () => DescribeActivitiesResponse,
1999
+ () => DescribeActivitiesRequest$,
2000
+ () => DescribeActivitiesResponse$,
1994
2001
  ];
1995
- var DescribeComments = [
2002
+ var DescribeComments$ = [
1996
2003
  9,
1997
2004
  n0,
1998
2005
  _DCe,
1999
2006
  { [_h]: ["GET", "/api/v1/documents/{DocumentId}/versions/{VersionId}/comments", 200] },
2000
- () => DescribeCommentsRequest,
2001
- () => DescribeCommentsResponse,
2007
+ () => DescribeCommentsRequest$,
2008
+ () => DescribeCommentsResponse$,
2002
2009
  ];
2003
- var DescribeDocumentVersions = [
2010
+ var DescribeDocumentVersions$ = [
2004
2011
  9,
2005
2012
  n0,
2006
2013
  _DDVe,
2007
2014
  { [_h]: ["GET", "/api/v1/documents/{DocumentId}/versions", 200] },
2008
- () => DescribeDocumentVersionsRequest,
2009
- () => DescribeDocumentVersionsResponse,
2015
+ () => DescribeDocumentVersionsRequest$,
2016
+ () => DescribeDocumentVersionsResponse$,
2010
2017
  ];
2011
- var DescribeFolderContents = [
2018
+ var DescribeFolderContents$ = [
2012
2019
  9,
2013
2020
  n0,
2014
2021
  _DFCe,
2015
2022
  { [_h]: ["GET", "/api/v1/folders/{FolderId}/contents", 200] },
2016
- () => DescribeFolderContentsRequest,
2017
- () => DescribeFolderContentsResponse,
2023
+ () => DescribeFolderContentsRequest$,
2024
+ () => DescribeFolderContentsResponse$,
2018
2025
  ];
2019
- var DescribeGroups = [
2026
+ var DescribeGroups$ = [
2020
2027
  9,
2021
2028
  n0,
2022
2029
  _DG,
2023
2030
  { [_h]: ["GET", "/api/v1/groups", 200] },
2024
- () => DescribeGroupsRequest,
2025
- () => DescribeGroupsResponse,
2031
+ () => DescribeGroupsRequest$,
2032
+ () => DescribeGroupsResponse$,
2026
2033
  ];
2027
- var DescribeNotificationSubscriptions = [
2034
+ var DescribeNotificationSubscriptions$ = [
2028
2035
  9,
2029
2036
  n0,
2030
2037
  _DNSe,
2031
2038
  { [_h]: ["GET", "/api/v1/organizations/{OrganizationId}/subscriptions", 200] },
2032
- () => DescribeNotificationSubscriptionsRequest,
2033
- () => DescribeNotificationSubscriptionsResponse,
2039
+ () => DescribeNotificationSubscriptionsRequest$,
2040
+ () => DescribeNotificationSubscriptionsResponse$,
2034
2041
  ];
2035
- var DescribeResourcePermissions = [
2042
+ var DescribeResourcePermissions$ = [
2036
2043
  9,
2037
2044
  n0,
2038
2045
  _DRP,
2039
2046
  { [_h]: ["GET", "/api/v1/resources/{ResourceId}/permissions", 200] },
2040
- () => DescribeResourcePermissionsRequest,
2041
- () => DescribeResourcePermissionsResponse,
2047
+ () => DescribeResourcePermissionsRequest$,
2048
+ () => DescribeResourcePermissionsResponse$,
2042
2049
  ];
2043
- var DescribeRootFolders = [
2050
+ var DescribeRootFolders$ = [
2044
2051
  9,
2045
2052
  n0,
2046
2053
  _DRF,
2047
2054
  { [_h]: ["GET", "/api/v1/me/root", 200] },
2048
- () => DescribeRootFoldersRequest,
2049
- () => DescribeRootFoldersResponse,
2055
+ () => DescribeRootFoldersRequest$,
2056
+ () => DescribeRootFoldersResponse$,
2050
2057
  ];
2051
- var DescribeUsers = [
2058
+ var DescribeUsers$ = [
2052
2059
  9,
2053
2060
  n0,
2054
2061
  _DUes,
2055
2062
  { [_h]: ["GET", "/api/v1/users", 200] },
2056
- () => DescribeUsersRequest,
2057
- () => DescribeUsersResponse,
2063
+ () => DescribeUsersRequest$,
2064
+ () => DescribeUsersResponse$,
2058
2065
  ];
2059
- var GetCurrentUser = [
2066
+ var GetCurrentUser$ = [
2060
2067
  9,
2061
2068
  n0,
2062
2069
  _GCU,
2063
2070
  { [_h]: ["GET", "/api/v1/me", 200] },
2064
- () => GetCurrentUserRequest,
2065
- () => GetCurrentUserResponse,
2071
+ () => GetCurrentUserRequest$,
2072
+ () => GetCurrentUserResponse$,
2066
2073
  ];
2067
- var GetDocument = [
2074
+ var GetDocument$ = [
2068
2075
  9,
2069
2076
  n0,
2070
2077
  _GD,
2071
2078
  { [_h]: ["GET", "/api/v1/documents/{DocumentId}", 200] },
2072
- () => GetDocumentRequest,
2073
- () => GetDocumentResponse,
2079
+ () => GetDocumentRequest$,
2080
+ () => GetDocumentResponse$,
2074
2081
  ];
2075
- var GetDocumentPath = [
2082
+ var GetDocumentPath$ = [
2076
2083
  9,
2077
2084
  n0,
2078
2085
  _GDP,
2079
2086
  { [_h]: ["GET", "/api/v1/documents/{DocumentId}/path", 200] },
2080
- () => GetDocumentPathRequest,
2081
- () => GetDocumentPathResponse,
2087
+ () => GetDocumentPathRequest$,
2088
+ () => GetDocumentPathResponse$,
2082
2089
  ];
2083
- var GetDocumentVersion = [
2090
+ var GetDocumentVersion$ = [
2084
2091
  9,
2085
2092
  n0,
2086
2093
  _GDV,
2087
2094
  { [_h]: ["GET", "/api/v1/documents/{DocumentId}/versions/{VersionId}", 200] },
2088
- () => GetDocumentVersionRequest,
2089
- () => GetDocumentVersionResponse,
2095
+ () => GetDocumentVersionRequest$,
2096
+ () => GetDocumentVersionResponse$,
2090
2097
  ];
2091
- var GetFolder = [
2098
+ var GetFolder$ = [
2092
2099
  9,
2093
2100
  n0,
2094
2101
  _GF,
2095
2102
  { [_h]: ["GET", "/api/v1/folders/{FolderId}", 200] },
2096
- () => GetFolderRequest,
2097
- () => GetFolderResponse,
2103
+ () => GetFolderRequest$,
2104
+ () => GetFolderResponse$,
2098
2105
  ];
2099
- var GetFolderPath = [
2106
+ var GetFolderPath$ = [
2100
2107
  9,
2101
2108
  n0,
2102
2109
  _GFP,
2103
2110
  { [_h]: ["GET", "/api/v1/folders/{FolderId}/path", 200] },
2104
- () => GetFolderPathRequest,
2105
- () => GetFolderPathResponse,
2111
+ () => GetFolderPathRequest$,
2112
+ () => GetFolderPathResponse$,
2106
2113
  ];
2107
- var GetResources = [
2114
+ var GetResources$ = [
2108
2115
  9,
2109
2116
  n0,
2110
2117
  _GR,
2111
2118
  { [_h]: ["GET", "/api/v1/resources", 200] },
2112
- () => GetResourcesRequest,
2113
- () => GetResourcesResponse,
2119
+ () => GetResourcesRequest$,
2120
+ () => GetResourcesResponse$,
2114
2121
  ];
2115
- var InitiateDocumentVersionUpload = [
2122
+ var InitiateDocumentVersionUpload$ = [
2116
2123
  9,
2117
2124
  n0,
2118
2125
  _IDVU,
2119
2126
  { [_h]: ["POST", "/api/v1/documents", 201] },
2120
- () => InitiateDocumentVersionUploadRequest,
2121
- () => InitiateDocumentVersionUploadResponse,
2127
+ () => InitiateDocumentVersionUploadRequest$,
2128
+ () => InitiateDocumentVersionUploadResponse$,
2122
2129
  ];
2123
- var RemoveAllResourcePermissions = [
2130
+ var RemoveAllResourcePermissions$ = [
2124
2131
  9,
2125
2132
  n0,
2126
2133
  _RARP,
2127
2134
  { [_h]: ["DELETE", "/api/v1/resources/{ResourceId}/permissions", 204] },
2128
- () => RemoveAllResourcePermissionsRequest,
2135
+ () => RemoveAllResourcePermissionsRequest$,
2129
2136
  () => __Unit,
2130
2137
  ];
2131
- var RemoveResourcePermission = [
2138
+ var RemoveResourcePermission$ = [
2132
2139
  9,
2133
2140
  n0,
2134
2141
  _RRP,
2135
2142
  { [_h]: ["DELETE", "/api/v1/resources/{ResourceId}/permissions/{PrincipalId}", 204] },
2136
- () => RemoveResourcePermissionRequest,
2143
+ () => RemoveResourcePermissionRequest$,
2137
2144
  () => __Unit,
2138
2145
  ];
2139
- var RestoreDocumentVersions = [
2146
+ var RestoreDocumentVersions$ = [
2140
2147
  9,
2141
2148
  n0,
2142
2149
  _RDV,
2143
2150
  { [_h]: ["POST", "/api/v1/documentVersions/restore/{DocumentId}", 204] },
2144
- () => RestoreDocumentVersionsRequest,
2151
+ () => RestoreDocumentVersionsRequest$,
2145
2152
  () => __Unit,
2146
2153
  ];
2147
- var SearchResources = [
2154
+ var SearchResources$ = [
2148
2155
  9,
2149
2156
  n0,
2150
2157
  _SRe,
2151
2158
  { [_h]: ["POST", "/api/v1/search", 200] },
2152
- () => SearchResourcesRequest,
2153
- () => SearchResourcesResponse,
2159
+ () => SearchResourcesRequest$,
2160
+ () => SearchResourcesResponse$,
2154
2161
  ];
2155
- var UpdateDocument = [
2162
+ var UpdateDocument$ = [
2156
2163
  9,
2157
2164
  n0,
2158
2165
  _UD,
2159
2166
  { [_h]: ["PATCH", "/api/v1/documents/{DocumentId}", 200] },
2160
- () => UpdateDocumentRequest,
2167
+ () => UpdateDocumentRequest$,
2161
2168
  () => __Unit,
2162
2169
  ];
2163
- var UpdateDocumentVersion = [
2170
+ var UpdateDocumentVersion$ = [
2164
2171
  9,
2165
2172
  n0,
2166
2173
  _UDV,
2167
2174
  { [_h]: ["PATCH", "/api/v1/documents/{DocumentId}/versions/{VersionId}", 200] },
2168
- () => UpdateDocumentVersionRequest,
2175
+ () => UpdateDocumentVersionRequest$,
2169
2176
  () => __Unit,
2170
2177
  ];
2171
- var UpdateFolder = [
2178
+ var UpdateFolder$ = [
2172
2179
  9,
2173
2180
  n0,
2174
2181
  _UF,
2175
2182
  { [_h]: ["PATCH", "/api/v1/folders/{FolderId}", 200] },
2176
- () => UpdateFolderRequest,
2183
+ () => UpdateFolderRequest$,
2177
2184
  () => __Unit,
2178
2185
  ];
2179
- var UpdateUser = [
2186
+ var UpdateUser$ = [
2180
2187
  9,
2181
2188
  n0,
2182
2189
  _UUp,
2183
2190
  { [_h]: ["PATCH", "/api/v1/users/{UserId}", 200] },
2184
- () => UpdateUserRequest,
2185
- () => UpdateUserResponse,
2191
+ () => UpdateUserRequest$,
2192
+ () => UpdateUserResponse$,
2186
2193
  ];
2187
2194
 
2188
2195
  class AbortDocumentVersionUploadCommand extends smithyClient.Command
@@ -2193,7 +2200,7 @@ class AbortDocumentVersionUploadCommand extends smithyClient.Command
2193
2200
  })
2194
2201
  .s("AWSGorillaBoyService", "AbortDocumentVersionUpload", {})
2195
2202
  .n("WorkDocsClient", "AbortDocumentVersionUploadCommand")
2196
- .sc(AbortDocumentVersionUpload)
2203
+ .sc(AbortDocumentVersionUpload$)
2197
2204
  .build() {
2198
2205
  }
2199
2206
 
@@ -2205,7 +2212,7 @@ class ActivateUserCommand extends smithyClient.Command
2205
2212
  })
2206
2213
  .s("AWSGorillaBoyService", "ActivateUser", {})
2207
2214
  .n("WorkDocsClient", "ActivateUserCommand")
2208
- .sc(ActivateUser)
2215
+ .sc(ActivateUser$)
2209
2216
  .build() {
2210
2217
  }
2211
2218
 
@@ -2217,7 +2224,7 @@ class AddResourcePermissionsCommand extends smithyClient.Command
2217
2224
  })
2218
2225
  .s("AWSGorillaBoyService", "AddResourcePermissions", {})
2219
2226
  .n("WorkDocsClient", "AddResourcePermissionsCommand")
2220
- .sc(AddResourcePermissions)
2227
+ .sc(AddResourcePermissions$)
2221
2228
  .build() {
2222
2229
  }
2223
2230
 
@@ -2229,7 +2236,7 @@ class CreateCommentCommand extends smithyClient.Command
2229
2236
  })
2230
2237
  .s("AWSGorillaBoyService", "CreateComment", {})
2231
2238
  .n("WorkDocsClient", "CreateCommentCommand")
2232
- .sc(CreateComment)
2239
+ .sc(CreateComment$)
2233
2240
  .build() {
2234
2241
  }
2235
2242
 
@@ -2241,7 +2248,7 @@ class CreateCustomMetadataCommand extends smithyClient.Command
2241
2248
  })
2242
2249
  .s("AWSGorillaBoyService", "CreateCustomMetadata", {})
2243
2250
  .n("WorkDocsClient", "CreateCustomMetadataCommand")
2244
- .sc(CreateCustomMetadata)
2251
+ .sc(CreateCustomMetadata$)
2245
2252
  .build() {
2246
2253
  }
2247
2254
 
@@ -2253,7 +2260,7 @@ class CreateFolderCommand extends smithyClient.Command
2253
2260
  })
2254
2261
  .s("AWSGorillaBoyService", "CreateFolder", {})
2255
2262
  .n("WorkDocsClient", "CreateFolderCommand")
2256
- .sc(CreateFolder)
2263
+ .sc(CreateFolder$)
2257
2264
  .build() {
2258
2265
  }
2259
2266
 
@@ -2265,7 +2272,7 @@ class CreateLabelsCommand extends smithyClient.Command
2265
2272
  })
2266
2273
  .s("AWSGorillaBoyService", "CreateLabels", {})
2267
2274
  .n("WorkDocsClient", "CreateLabelsCommand")
2268
- .sc(CreateLabels)
2275
+ .sc(CreateLabels$)
2269
2276
  .build() {
2270
2277
  }
2271
2278
 
@@ -2277,7 +2284,7 @@ class CreateNotificationSubscriptionCommand extends smithyClient.Command
2277
2284
  })
2278
2285
  .s("AWSGorillaBoyService", "CreateNotificationSubscription", {})
2279
2286
  .n("WorkDocsClient", "CreateNotificationSubscriptionCommand")
2280
- .sc(CreateNotificationSubscription)
2287
+ .sc(CreateNotificationSubscription$)
2281
2288
  .build() {
2282
2289
  }
2283
2290
 
@@ -2289,7 +2296,7 @@ class CreateUserCommand extends smithyClient.Command
2289
2296
  })
2290
2297
  .s("AWSGorillaBoyService", "CreateUser", {})
2291
2298
  .n("WorkDocsClient", "CreateUserCommand")
2292
- .sc(CreateUser)
2299
+ .sc(CreateUser$)
2293
2300
  .build() {
2294
2301
  }
2295
2302
 
@@ -2301,7 +2308,7 @@ class DeactivateUserCommand extends smithyClient.Command
2301
2308
  })
2302
2309
  .s("AWSGorillaBoyService", "DeactivateUser", {})
2303
2310
  .n("WorkDocsClient", "DeactivateUserCommand")
2304
- .sc(DeactivateUser)
2311
+ .sc(DeactivateUser$)
2305
2312
  .build() {
2306
2313
  }
2307
2314
 
@@ -2313,7 +2320,7 @@ class DeleteCommentCommand extends smithyClient.Command
2313
2320
  })
2314
2321
  .s("AWSGorillaBoyService", "DeleteComment", {})
2315
2322
  .n("WorkDocsClient", "DeleteCommentCommand")
2316
- .sc(DeleteComment)
2323
+ .sc(DeleteComment$)
2317
2324
  .build() {
2318
2325
  }
2319
2326
 
@@ -2325,7 +2332,7 @@ class DeleteCustomMetadataCommand extends smithyClient.Command
2325
2332
  })
2326
2333
  .s("AWSGorillaBoyService", "DeleteCustomMetadata", {})
2327
2334
  .n("WorkDocsClient", "DeleteCustomMetadataCommand")
2328
- .sc(DeleteCustomMetadata)
2335
+ .sc(DeleteCustomMetadata$)
2329
2336
  .build() {
2330
2337
  }
2331
2338
 
@@ -2337,7 +2344,7 @@ class DeleteDocumentCommand extends smithyClient.Command
2337
2344
  })
2338
2345
  .s("AWSGorillaBoyService", "DeleteDocument", {})
2339
2346
  .n("WorkDocsClient", "DeleteDocumentCommand")
2340
- .sc(DeleteDocument)
2347
+ .sc(DeleteDocument$)
2341
2348
  .build() {
2342
2349
  }
2343
2350
 
@@ -2349,7 +2356,7 @@ class DeleteDocumentVersionCommand extends smithyClient.Command
2349
2356
  })
2350
2357
  .s("AWSGorillaBoyService", "DeleteDocumentVersion", {})
2351
2358
  .n("WorkDocsClient", "DeleteDocumentVersionCommand")
2352
- .sc(DeleteDocumentVersion)
2359
+ .sc(DeleteDocumentVersion$)
2353
2360
  .build() {
2354
2361
  }
2355
2362
 
@@ -2361,7 +2368,7 @@ class DeleteFolderCommand extends smithyClient.Command
2361
2368
  })
2362
2369
  .s("AWSGorillaBoyService", "DeleteFolder", {})
2363
2370
  .n("WorkDocsClient", "DeleteFolderCommand")
2364
- .sc(DeleteFolder)
2371
+ .sc(DeleteFolder$)
2365
2372
  .build() {
2366
2373
  }
2367
2374
 
@@ -2373,7 +2380,7 @@ class DeleteFolderContentsCommand extends smithyClient.Command
2373
2380
  })
2374
2381
  .s("AWSGorillaBoyService", "DeleteFolderContents", {})
2375
2382
  .n("WorkDocsClient", "DeleteFolderContentsCommand")
2376
- .sc(DeleteFolderContents)
2383
+ .sc(DeleteFolderContents$)
2377
2384
  .build() {
2378
2385
  }
2379
2386
 
@@ -2385,7 +2392,7 @@ class DeleteLabelsCommand extends smithyClient.Command
2385
2392
  })
2386
2393
  .s("AWSGorillaBoyService", "DeleteLabels", {})
2387
2394
  .n("WorkDocsClient", "DeleteLabelsCommand")
2388
- .sc(DeleteLabels)
2395
+ .sc(DeleteLabels$)
2389
2396
  .build() {
2390
2397
  }
2391
2398
 
@@ -2397,7 +2404,7 @@ class DeleteNotificationSubscriptionCommand extends smithyClient.Command
2397
2404
  })
2398
2405
  .s("AWSGorillaBoyService", "DeleteNotificationSubscription", {})
2399
2406
  .n("WorkDocsClient", "DeleteNotificationSubscriptionCommand")
2400
- .sc(DeleteNotificationSubscription)
2407
+ .sc(DeleteNotificationSubscription$)
2401
2408
  .build() {
2402
2409
  }
2403
2410
 
@@ -2409,7 +2416,7 @@ class DeleteUserCommand extends smithyClient.Command
2409
2416
  })
2410
2417
  .s("AWSGorillaBoyService", "DeleteUser", {})
2411
2418
  .n("WorkDocsClient", "DeleteUserCommand")
2412
- .sc(DeleteUser)
2419
+ .sc(DeleteUser$)
2413
2420
  .build() {
2414
2421
  }
2415
2422
 
@@ -2421,7 +2428,7 @@ class DescribeActivitiesCommand extends smithyClient.Command
2421
2428
  })
2422
2429
  .s("AWSGorillaBoyService", "DescribeActivities", {})
2423
2430
  .n("WorkDocsClient", "DescribeActivitiesCommand")
2424
- .sc(DescribeActivities)
2431
+ .sc(DescribeActivities$)
2425
2432
  .build() {
2426
2433
  }
2427
2434
 
@@ -2433,7 +2440,7 @@ class DescribeCommentsCommand extends smithyClient.Command
2433
2440
  })
2434
2441
  .s("AWSGorillaBoyService", "DescribeComments", {})
2435
2442
  .n("WorkDocsClient", "DescribeCommentsCommand")
2436
- .sc(DescribeComments)
2443
+ .sc(DescribeComments$)
2437
2444
  .build() {
2438
2445
  }
2439
2446
 
@@ -2445,7 +2452,7 @@ class DescribeDocumentVersionsCommand extends smithyClient.Command
2445
2452
  })
2446
2453
  .s("AWSGorillaBoyService", "DescribeDocumentVersions", {})
2447
2454
  .n("WorkDocsClient", "DescribeDocumentVersionsCommand")
2448
- .sc(DescribeDocumentVersions)
2455
+ .sc(DescribeDocumentVersions$)
2449
2456
  .build() {
2450
2457
  }
2451
2458
 
@@ -2457,7 +2464,7 @@ class DescribeFolderContentsCommand extends smithyClient.Command
2457
2464
  })
2458
2465
  .s("AWSGorillaBoyService", "DescribeFolderContents", {})
2459
2466
  .n("WorkDocsClient", "DescribeFolderContentsCommand")
2460
- .sc(DescribeFolderContents)
2467
+ .sc(DescribeFolderContents$)
2461
2468
  .build() {
2462
2469
  }
2463
2470
 
@@ -2469,7 +2476,7 @@ class DescribeGroupsCommand extends smithyClient.Command
2469
2476
  })
2470
2477
  .s("AWSGorillaBoyService", "DescribeGroups", {})
2471
2478
  .n("WorkDocsClient", "DescribeGroupsCommand")
2472
- .sc(DescribeGroups)
2479
+ .sc(DescribeGroups$)
2473
2480
  .build() {
2474
2481
  }
2475
2482
 
@@ -2481,7 +2488,7 @@ class DescribeNotificationSubscriptionsCommand extends smithyClient.Command
2481
2488
  })
2482
2489
  .s("AWSGorillaBoyService", "DescribeNotificationSubscriptions", {})
2483
2490
  .n("WorkDocsClient", "DescribeNotificationSubscriptionsCommand")
2484
- .sc(DescribeNotificationSubscriptions)
2491
+ .sc(DescribeNotificationSubscriptions$)
2485
2492
  .build() {
2486
2493
  }
2487
2494
 
@@ -2493,7 +2500,7 @@ class DescribeResourcePermissionsCommand extends smithyClient.Command
2493
2500
  })
2494
2501
  .s("AWSGorillaBoyService", "DescribeResourcePermissions", {})
2495
2502
  .n("WorkDocsClient", "DescribeResourcePermissionsCommand")
2496
- .sc(DescribeResourcePermissions)
2503
+ .sc(DescribeResourcePermissions$)
2497
2504
  .build() {
2498
2505
  }
2499
2506
 
@@ -2505,7 +2512,7 @@ class DescribeRootFoldersCommand extends smithyClient.Command
2505
2512
  })
2506
2513
  .s("AWSGorillaBoyService", "DescribeRootFolders", {})
2507
2514
  .n("WorkDocsClient", "DescribeRootFoldersCommand")
2508
- .sc(DescribeRootFolders)
2515
+ .sc(DescribeRootFolders$)
2509
2516
  .build() {
2510
2517
  }
2511
2518
 
@@ -2517,7 +2524,7 @@ class DescribeUsersCommand extends smithyClient.Command
2517
2524
  })
2518
2525
  .s("AWSGorillaBoyService", "DescribeUsers", {})
2519
2526
  .n("WorkDocsClient", "DescribeUsersCommand")
2520
- .sc(DescribeUsers)
2527
+ .sc(DescribeUsers$)
2521
2528
  .build() {
2522
2529
  }
2523
2530
 
@@ -2529,7 +2536,7 @@ class GetCurrentUserCommand extends smithyClient.Command
2529
2536
  })
2530
2537
  .s("AWSGorillaBoyService", "GetCurrentUser", {})
2531
2538
  .n("WorkDocsClient", "GetCurrentUserCommand")
2532
- .sc(GetCurrentUser)
2539
+ .sc(GetCurrentUser$)
2533
2540
  .build() {
2534
2541
  }
2535
2542
 
@@ -2541,7 +2548,7 @@ class GetDocumentCommand extends smithyClient.Command
2541
2548
  })
2542
2549
  .s("AWSGorillaBoyService", "GetDocument", {})
2543
2550
  .n("WorkDocsClient", "GetDocumentCommand")
2544
- .sc(GetDocument)
2551
+ .sc(GetDocument$)
2545
2552
  .build() {
2546
2553
  }
2547
2554
 
@@ -2553,7 +2560,7 @@ class GetDocumentPathCommand extends smithyClient.Command
2553
2560
  })
2554
2561
  .s("AWSGorillaBoyService", "GetDocumentPath", {})
2555
2562
  .n("WorkDocsClient", "GetDocumentPathCommand")
2556
- .sc(GetDocumentPath)
2563
+ .sc(GetDocumentPath$)
2557
2564
  .build() {
2558
2565
  }
2559
2566
 
@@ -2565,7 +2572,7 @@ class GetDocumentVersionCommand extends smithyClient.Command
2565
2572
  })
2566
2573
  .s("AWSGorillaBoyService", "GetDocumentVersion", {})
2567
2574
  .n("WorkDocsClient", "GetDocumentVersionCommand")
2568
- .sc(GetDocumentVersion)
2575
+ .sc(GetDocumentVersion$)
2569
2576
  .build() {
2570
2577
  }
2571
2578
 
@@ -2577,7 +2584,7 @@ class GetFolderCommand extends smithyClient.Command
2577
2584
  })
2578
2585
  .s("AWSGorillaBoyService", "GetFolder", {})
2579
2586
  .n("WorkDocsClient", "GetFolderCommand")
2580
- .sc(GetFolder)
2587
+ .sc(GetFolder$)
2581
2588
  .build() {
2582
2589
  }
2583
2590
 
@@ -2589,7 +2596,7 @@ class GetFolderPathCommand extends smithyClient.Command
2589
2596
  })
2590
2597
  .s("AWSGorillaBoyService", "GetFolderPath", {})
2591
2598
  .n("WorkDocsClient", "GetFolderPathCommand")
2592
- .sc(GetFolderPath)
2599
+ .sc(GetFolderPath$)
2593
2600
  .build() {
2594
2601
  }
2595
2602
 
@@ -2601,7 +2608,7 @@ class GetResourcesCommand extends smithyClient.Command
2601
2608
  })
2602
2609
  .s("AWSGorillaBoyService", "GetResources", {})
2603
2610
  .n("WorkDocsClient", "GetResourcesCommand")
2604
- .sc(GetResources)
2611
+ .sc(GetResources$)
2605
2612
  .build() {
2606
2613
  }
2607
2614
 
@@ -2613,7 +2620,7 @@ class InitiateDocumentVersionUploadCommand extends smithyClient.Command
2613
2620
  })
2614
2621
  .s("AWSGorillaBoyService", "InitiateDocumentVersionUpload", {})
2615
2622
  .n("WorkDocsClient", "InitiateDocumentVersionUploadCommand")
2616
- .sc(InitiateDocumentVersionUpload)
2623
+ .sc(InitiateDocumentVersionUpload$)
2617
2624
  .build() {
2618
2625
  }
2619
2626
 
@@ -2625,7 +2632,7 @@ class RemoveAllResourcePermissionsCommand extends smithyClient.Command
2625
2632
  })
2626
2633
  .s("AWSGorillaBoyService", "RemoveAllResourcePermissions", {})
2627
2634
  .n("WorkDocsClient", "RemoveAllResourcePermissionsCommand")
2628
- .sc(RemoveAllResourcePermissions)
2635
+ .sc(RemoveAllResourcePermissions$)
2629
2636
  .build() {
2630
2637
  }
2631
2638
 
@@ -2637,7 +2644,7 @@ class RemoveResourcePermissionCommand extends smithyClient.Command
2637
2644
  })
2638
2645
  .s("AWSGorillaBoyService", "RemoveResourcePermission", {})
2639
2646
  .n("WorkDocsClient", "RemoveResourcePermissionCommand")
2640
- .sc(RemoveResourcePermission)
2647
+ .sc(RemoveResourcePermission$)
2641
2648
  .build() {
2642
2649
  }
2643
2650
 
@@ -2649,7 +2656,7 @@ class RestoreDocumentVersionsCommand extends smithyClient.Command
2649
2656
  })
2650
2657
  .s("AWSGorillaBoyService", "RestoreDocumentVersions", {})
2651
2658
  .n("WorkDocsClient", "RestoreDocumentVersionsCommand")
2652
- .sc(RestoreDocumentVersions)
2659
+ .sc(RestoreDocumentVersions$)
2653
2660
  .build() {
2654
2661
  }
2655
2662
 
@@ -2661,7 +2668,7 @@ class SearchResourcesCommand extends smithyClient.Command
2661
2668
  })
2662
2669
  .s("AWSGorillaBoyService", "SearchResources", {})
2663
2670
  .n("WorkDocsClient", "SearchResourcesCommand")
2664
- .sc(SearchResources)
2671
+ .sc(SearchResources$)
2665
2672
  .build() {
2666
2673
  }
2667
2674
 
@@ -2673,7 +2680,7 @@ class UpdateDocumentCommand extends smithyClient.Command
2673
2680
  })
2674
2681
  .s("AWSGorillaBoyService", "UpdateDocument", {})
2675
2682
  .n("WorkDocsClient", "UpdateDocumentCommand")
2676
- .sc(UpdateDocument)
2683
+ .sc(UpdateDocument$)
2677
2684
  .build() {
2678
2685
  }
2679
2686
 
@@ -2685,7 +2692,7 @@ class UpdateDocumentVersionCommand extends smithyClient.Command
2685
2692
  })
2686
2693
  .s("AWSGorillaBoyService", "UpdateDocumentVersion", {})
2687
2694
  .n("WorkDocsClient", "UpdateDocumentVersionCommand")
2688
- .sc(UpdateDocumentVersion)
2695
+ .sc(UpdateDocumentVersion$)
2689
2696
  .build() {
2690
2697
  }
2691
2698
 
@@ -2697,7 +2704,7 @@ class UpdateFolderCommand extends smithyClient.Command
2697
2704
  })
2698
2705
  .s("AWSGorillaBoyService", "UpdateFolder", {})
2699
2706
  .n("WorkDocsClient", "UpdateFolderCommand")
2700
- .sc(UpdateFolder)
2707
+ .sc(UpdateFolder$)
2701
2708
  .build() {
2702
2709
  }
2703
2710
 
@@ -2709,7 +2716,7 @@ class UpdateUserCommand extends smithyClient.Command
2709
2716
  })
2710
2717
  .s("AWSGorillaBoyService", "UpdateUser", {})
2711
2718
  .n("WorkDocsClient", "UpdateUserCommand")
2712
- .sc(UpdateUser)
2719
+ .sc(UpdateUser$)
2713
2720
  .build() {
2714
2721
  }
2715
2722
 
@@ -3034,114 +3041,285 @@ Object.defineProperty(exports, "__Client", {
3034
3041
  enumerable: true,
3035
3042
  get: function () { return smithyClient.Client; }
3036
3043
  });
3044
+ exports.AbortDocumentVersionUpload$ = AbortDocumentVersionUpload$;
3037
3045
  exports.AbortDocumentVersionUploadCommand = AbortDocumentVersionUploadCommand;
3046
+ exports.AbortDocumentVersionUploadRequest$ = AbortDocumentVersionUploadRequest$;
3047
+ exports.ActivateUser$ = ActivateUser$;
3038
3048
  exports.ActivateUserCommand = ActivateUserCommand;
3049
+ exports.ActivateUserRequest$ = ActivateUserRequest$;
3050
+ exports.ActivateUserResponse$ = ActivateUserResponse$;
3051
+ exports.Activity$ = Activity$;
3039
3052
  exports.ActivityType = ActivityType;
3053
+ exports.AddResourcePermissions$ = AddResourcePermissions$;
3040
3054
  exports.AddResourcePermissionsCommand = AddResourcePermissionsCommand;
3055
+ exports.AddResourcePermissionsRequest$ = AddResourcePermissionsRequest$;
3056
+ exports.AddResourcePermissionsResponse$ = AddResourcePermissionsResponse$;
3041
3057
  exports.AdditionalResponseFieldType = AdditionalResponseFieldType;
3042
3058
  exports.BooleanEnumType = BooleanEnumType;
3059
+ exports.Comment$ = Comment$;
3060
+ exports.CommentMetadata$ = CommentMetadata$;
3043
3061
  exports.CommentStatusType = CommentStatusType;
3044
3062
  exports.CommentVisibilityType = CommentVisibilityType;
3045
- exports.ConcurrentModificationException = ConcurrentModificationException$1;
3046
- exports.ConflictingOperationException = ConflictingOperationException$1;
3063
+ exports.ConcurrentModificationException = ConcurrentModificationException;
3064
+ exports.ConcurrentModificationException$ = ConcurrentModificationException$;
3065
+ exports.ConflictingOperationException = ConflictingOperationException;
3066
+ exports.ConflictingOperationException$ = ConflictingOperationException$;
3047
3067
  exports.ContentCategoryType = ContentCategoryType;
3068
+ exports.CreateComment$ = CreateComment$;
3048
3069
  exports.CreateCommentCommand = CreateCommentCommand;
3070
+ exports.CreateCommentRequest$ = CreateCommentRequest$;
3071
+ exports.CreateCommentResponse$ = CreateCommentResponse$;
3072
+ exports.CreateCustomMetadata$ = CreateCustomMetadata$;
3049
3073
  exports.CreateCustomMetadataCommand = CreateCustomMetadataCommand;
3074
+ exports.CreateCustomMetadataRequest$ = CreateCustomMetadataRequest$;
3075
+ exports.CreateCustomMetadataResponse$ = CreateCustomMetadataResponse$;
3076
+ exports.CreateFolder$ = CreateFolder$;
3050
3077
  exports.CreateFolderCommand = CreateFolderCommand;
3078
+ exports.CreateFolderRequest$ = CreateFolderRequest$;
3079
+ exports.CreateFolderResponse$ = CreateFolderResponse$;
3080
+ exports.CreateLabels$ = CreateLabels$;
3051
3081
  exports.CreateLabelsCommand = CreateLabelsCommand;
3082
+ exports.CreateLabelsRequest$ = CreateLabelsRequest$;
3083
+ exports.CreateLabelsResponse$ = CreateLabelsResponse$;
3084
+ exports.CreateNotificationSubscription$ = CreateNotificationSubscription$;
3052
3085
  exports.CreateNotificationSubscriptionCommand = CreateNotificationSubscriptionCommand;
3086
+ exports.CreateNotificationSubscriptionRequest$ = CreateNotificationSubscriptionRequest$;
3087
+ exports.CreateNotificationSubscriptionResponse$ = CreateNotificationSubscriptionResponse$;
3088
+ exports.CreateUser$ = CreateUser$;
3053
3089
  exports.CreateUserCommand = CreateUserCommand;
3054
- exports.CustomMetadataLimitExceededException = CustomMetadataLimitExceededException$1;
3090
+ exports.CreateUserRequest$ = CreateUserRequest$;
3091
+ exports.CreateUserResponse$ = CreateUserResponse$;
3092
+ exports.CustomMetadataLimitExceededException = CustomMetadataLimitExceededException;
3093
+ exports.CustomMetadataLimitExceededException$ = CustomMetadataLimitExceededException$;
3094
+ exports.DateRangeType$ = DateRangeType$;
3095
+ exports.DeactivateUser$ = DeactivateUser$;
3055
3096
  exports.DeactivateUserCommand = DeactivateUserCommand;
3056
- exports.DeactivatingLastSystemUserException = DeactivatingLastSystemUserException$1;
3097
+ exports.DeactivateUserRequest$ = DeactivateUserRequest$;
3098
+ exports.DeactivatingLastSystemUserException = DeactivatingLastSystemUserException;
3099
+ exports.DeactivatingLastSystemUserException$ = DeactivatingLastSystemUserException$;
3100
+ exports.DeleteComment$ = DeleteComment$;
3057
3101
  exports.DeleteCommentCommand = DeleteCommentCommand;
3102
+ exports.DeleteCommentRequest$ = DeleteCommentRequest$;
3103
+ exports.DeleteCustomMetadata$ = DeleteCustomMetadata$;
3058
3104
  exports.DeleteCustomMetadataCommand = DeleteCustomMetadataCommand;
3105
+ exports.DeleteCustomMetadataRequest$ = DeleteCustomMetadataRequest$;
3106
+ exports.DeleteCustomMetadataResponse$ = DeleteCustomMetadataResponse$;
3107
+ exports.DeleteDocument$ = DeleteDocument$;
3059
3108
  exports.DeleteDocumentCommand = DeleteDocumentCommand;
3109
+ exports.DeleteDocumentRequest$ = DeleteDocumentRequest$;
3110
+ exports.DeleteDocumentVersion$ = DeleteDocumentVersion$;
3060
3111
  exports.DeleteDocumentVersionCommand = DeleteDocumentVersionCommand;
3112
+ exports.DeleteDocumentVersionRequest$ = DeleteDocumentVersionRequest$;
3113
+ exports.DeleteFolder$ = DeleteFolder$;
3061
3114
  exports.DeleteFolderCommand = DeleteFolderCommand;
3115
+ exports.DeleteFolderContents$ = DeleteFolderContents$;
3062
3116
  exports.DeleteFolderContentsCommand = DeleteFolderContentsCommand;
3117
+ exports.DeleteFolderContentsRequest$ = DeleteFolderContentsRequest$;
3118
+ exports.DeleteFolderRequest$ = DeleteFolderRequest$;
3119
+ exports.DeleteLabels$ = DeleteLabels$;
3063
3120
  exports.DeleteLabelsCommand = DeleteLabelsCommand;
3121
+ exports.DeleteLabelsRequest$ = DeleteLabelsRequest$;
3122
+ exports.DeleteLabelsResponse$ = DeleteLabelsResponse$;
3123
+ exports.DeleteNotificationSubscription$ = DeleteNotificationSubscription$;
3064
3124
  exports.DeleteNotificationSubscriptionCommand = DeleteNotificationSubscriptionCommand;
3125
+ exports.DeleteNotificationSubscriptionRequest$ = DeleteNotificationSubscriptionRequest$;
3126
+ exports.DeleteUser$ = DeleteUser$;
3065
3127
  exports.DeleteUserCommand = DeleteUserCommand;
3128
+ exports.DeleteUserRequest$ = DeleteUserRequest$;
3129
+ exports.DescribeActivities$ = DescribeActivities$;
3066
3130
  exports.DescribeActivitiesCommand = DescribeActivitiesCommand;
3131
+ exports.DescribeActivitiesRequest$ = DescribeActivitiesRequest$;
3132
+ exports.DescribeActivitiesResponse$ = DescribeActivitiesResponse$;
3133
+ exports.DescribeComments$ = DescribeComments$;
3067
3134
  exports.DescribeCommentsCommand = DescribeCommentsCommand;
3135
+ exports.DescribeCommentsRequest$ = DescribeCommentsRequest$;
3136
+ exports.DescribeCommentsResponse$ = DescribeCommentsResponse$;
3137
+ exports.DescribeDocumentVersions$ = DescribeDocumentVersions$;
3068
3138
  exports.DescribeDocumentVersionsCommand = DescribeDocumentVersionsCommand;
3139
+ exports.DescribeDocumentVersionsRequest$ = DescribeDocumentVersionsRequest$;
3140
+ exports.DescribeDocumentVersionsResponse$ = DescribeDocumentVersionsResponse$;
3141
+ exports.DescribeFolderContents$ = DescribeFolderContents$;
3069
3142
  exports.DescribeFolderContentsCommand = DescribeFolderContentsCommand;
3143
+ exports.DescribeFolderContentsRequest$ = DescribeFolderContentsRequest$;
3144
+ exports.DescribeFolderContentsResponse$ = DescribeFolderContentsResponse$;
3145
+ exports.DescribeGroups$ = DescribeGroups$;
3070
3146
  exports.DescribeGroupsCommand = DescribeGroupsCommand;
3147
+ exports.DescribeGroupsRequest$ = DescribeGroupsRequest$;
3148
+ exports.DescribeGroupsResponse$ = DescribeGroupsResponse$;
3149
+ exports.DescribeNotificationSubscriptions$ = DescribeNotificationSubscriptions$;
3071
3150
  exports.DescribeNotificationSubscriptionsCommand = DescribeNotificationSubscriptionsCommand;
3151
+ exports.DescribeNotificationSubscriptionsRequest$ = DescribeNotificationSubscriptionsRequest$;
3152
+ exports.DescribeNotificationSubscriptionsResponse$ = DescribeNotificationSubscriptionsResponse$;
3153
+ exports.DescribeResourcePermissions$ = DescribeResourcePermissions$;
3072
3154
  exports.DescribeResourcePermissionsCommand = DescribeResourcePermissionsCommand;
3155
+ exports.DescribeResourcePermissionsRequest$ = DescribeResourcePermissionsRequest$;
3156
+ exports.DescribeResourcePermissionsResponse$ = DescribeResourcePermissionsResponse$;
3157
+ exports.DescribeRootFolders$ = DescribeRootFolders$;
3073
3158
  exports.DescribeRootFoldersCommand = DescribeRootFoldersCommand;
3159
+ exports.DescribeRootFoldersRequest$ = DescribeRootFoldersRequest$;
3160
+ exports.DescribeRootFoldersResponse$ = DescribeRootFoldersResponse$;
3161
+ exports.DescribeUsers$ = DescribeUsers$;
3074
3162
  exports.DescribeUsersCommand = DescribeUsersCommand;
3075
- exports.DocumentLockedForCommentsException = DocumentLockedForCommentsException$1;
3163
+ exports.DescribeUsersRequest$ = DescribeUsersRequest$;
3164
+ exports.DescribeUsersResponse$ = DescribeUsersResponse$;
3165
+ exports.DocumentLockedForCommentsException = DocumentLockedForCommentsException;
3166
+ exports.DocumentLockedForCommentsException$ = DocumentLockedForCommentsException$;
3167
+ exports.DocumentMetadata$ = DocumentMetadata$;
3076
3168
  exports.DocumentSourceType = DocumentSourceType;
3077
3169
  exports.DocumentStatusType = DocumentStatusType;
3078
3170
  exports.DocumentThumbnailType = DocumentThumbnailType;
3171
+ exports.DocumentVersionMetadata$ = DocumentVersionMetadata$;
3079
3172
  exports.DocumentVersionStatus = DocumentVersionStatus;
3080
- exports.DraftUploadOutOfSyncException = DraftUploadOutOfSyncException$1;
3081
- exports.EntityAlreadyExistsException = EntityAlreadyExistsException$1;
3082
- exports.EntityNotExistsException = EntityNotExistsException$1;
3083
- exports.FailedDependencyException = FailedDependencyException$1;
3173
+ exports.DraftUploadOutOfSyncException = DraftUploadOutOfSyncException;
3174
+ exports.DraftUploadOutOfSyncException$ = DraftUploadOutOfSyncException$;
3175
+ exports.EntityAlreadyExistsException = EntityAlreadyExistsException;
3176
+ exports.EntityAlreadyExistsException$ = EntityAlreadyExistsException$;
3177
+ exports.EntityNotExistsException = EntityNotExistsException;
3178
+ exports.EntityNotExistsException$ = EntityNotExistsException$;
3179
+ exports.FailedDependencyException = FailedDependencyException;
3180
+ exports.FailedDependencyException$ = FailedDependencyException$;
3181
+ exports.Filters$ = Filters$;
3084
3182
  exports.FolderContentType = FolderContentType;
3183
+ exports.FolderMetadata$ = FolderMetadata$;
3184
+ exports.GetCurrentUser$ = GetCurrentUser$;
3085
3185
  exports.GetCurrentUserCommand = GetCurrentUserCommand;
3186
+ exports.GetCurrentUserRequest$ = GetCurrentUserRequest$;
3187
+ exports.GetCurrentUserResponse$ = GetCurrentUserResponse$;
3188
+ exports.GetDocument$ = GetDocument$;
3086
3189
  exports.GetDocumentCommand = GetDocumentCommand;
3190
+ exports.GetDocumentPath$ = GetDocumentPath$;
3087
3191
  exports.GetDocumentPathCommand = GetDocumentPathCommand;
3192
+ exports.GetDocumentPathRequest$ = GetDocumentPathRequest$;
3193
+ exports.GetDocumentPathResponse$ = GetDocumentPathResponse$;
3194
+ exports.GetDocumentRequest$ = GetDocumentRequest$;
3195
+ exports.GetDocumentResponse$ = GetDocumentResponse$;
3196
+ exports.GetDocumentVersion$ = GetDocumentVersion$;
3088
3197
  exports.GetDocumentVersionCommand = GetDocumentVersionCommand;
3198
+ exports.GetDocumentVersionRequest$ = GetDocumentVersionRequest$;
3199
+ exports.GetDocumentVersionResponse$ = GetDocumentVersionResponse$;
3200
+ exports.GetFolder$ = GetFolder$;
3089
3201
  exports.GetFolderCommand = GetFolderCommand;
3202
+ exports.GetFolderPath$ = GetFolderPath$;
3090
3203
  exports.GetFolderPathCommand = GetFolderPathCommand;
3204
+ exports.GetFolderPathRequest$ = GetFolderPathRequest$;
3205
+ exports.GetFolderPathResponse$ = GetFolderPathResponse$;
3206
+ exports.GetFolderRequest$ = GetFolderRequest$;
3207
+ exports.GetFolderResponse$ = GetFolderResponse$;
3208
+ exports.GetResources$ = GetResources$;
3091
3209
  exports.GetResourcesCommand = GetResourcesCommand;
3092
- exports.IllegalUserStateException = IllegalUserStateException$1;
3210
+ exports.GetResourcesRequest$ = GetResourcesRequest$;
3211
+ exports.GetResourcesResponse$ = GetResourcesResponse$;
3212
+ exports.GroupMetadata$ = GroupMetadata$;
3213
+ exports.IllegalUserStateException = IllegalUserStateException;
3214
+ exports.IllegalUserStateException$ = IllegalUserStateException$;
3215
+ exports.InitiateDocumentVersionUpload$ = InitiateDocumentVersionUpload$;
3093
3216
  exports.InitiateDocumentVersionUploadCommand = InitiateDocumentVersionUploadCommand;
3094
- exports.InvalidArgumentException = InvalidArgumentException$1;
3095
- exports.InvalidCommentOperationException = InvalidCommentOperationException$1;
3096
- exports.InvalidOperationException = InvalidOperationException$1;
3097
- exports.InvalidPasswordException = InvalidPasswordException$1;
3217
+ exports.InitiateDocumentVersionUploadRequest$ = InitiateDocumentVersionUploadRequest$;
3218
+ exports.InitiateDocumentVersionUploadResponse$ = InitiateDocumentVersionUploadResponse$;
3219
+ exports.InvalidArgumentException = InvalidArgumentException;
3220
+ exports.InvalidArgumentException$ = InvalidArgumentException$;
3221
+ exports.InvalidCommentOperationException = InvalidCommentOperationException;
3222
+ exports.InvalidCommentOperationException$ = InvalidCommentOperationException$;
3223
+ exports.InvalidOperationException = InvalidOperationException;
3224
+ exports.InvalidOperationException$ = InvalidOperationException$;
3225
+ exports.InvalidPasswordException = InvalidPasswordException;
3226
+ exports.InvalidPasswordException$ = InvalidPasswordException$;
3098
3227
  exports.LanguageCodeType = LanguageCodeType;
3099
- exports.LimitExceededException = LimitExceededException$1;
3228
+ exports.LimitExceededException = LimitExceededException;
3229
+ exports.LimitExceededException$ = LimitExceededException$;
3100
3230
  exports.LocaleType = LocaleType;
3231
+ exports.LongRangeType$ = LongRangeType$;
3232
+ exports.NotificationOptions$ = NotificationOptions$;
3101
3233
  exports.OrderByFieldType = OrderByFieldType;
3102
3234
  exports.OrderType = OrderType;
3235
+ exports.Participants$ = Participants$;
3236
+ exports.PermissionInfo$ = PermissionInfo$;
3237
+ exports.Principal$ = Principal$;
3103
3238
  exports.PrincipalRoleType = PrincipalRoleType;
3104
3239
  exports.PrincipalType = PrincipalType;
3105
- exports.ProhibitedStateException = ProhibitedStateException$1;
3240
+ exports.ProhibitedStateException = ProhibitedStateException;
3241
+ exports.ProhibitedStateException$ = ProhibitedStateException$;
3242
+ exports.RemoveAllResourcePermissions$ = RemoveAllResourcePermissions$;
3106
3243
  exports.RemoveAllResourcePermissionsCommand = RemoveAllResourcePermissionsCommand;
3244
+ exports.RemoveAllResourcePermissionsRequest$ = RemoveAllResourcePermissionsRequest$;
3245
+ exports.RemoveResourcePermission$ = RemoveResourcePermission$;
3107
3246
  exports.RemoveResourcePermissionCommand = RemoveResourcePermissionCommand;
3108
- exports.RequestedEntityTooLargeException = RequestedEntityTooLargeException$1;
3109
- exports.ResourceAlreadyCheckedOutException = ResourceAlreadyCheckedOutException$1;
3247
+ exports.RemoveResourcePermissionRequest$ = RemoveResourcePermissionRequest$;
3248
+ exports.RequestedEntityTooLargeException = RequestedEntityTooLargeException;
3249
+ exports.RequestedEntityTooLargeException$ = RequestedEntityTooLargeException$;
3250
+ exports.ResourceAlreadyCheckedOutException = ResourceAlreadyCheckedOutException;
3251
+ exports.ResourceAlreadyCheckedOutException$ = ResourceAlreadyCheckedOutException$;
3110
3252
  exports.ResourceCollectionType = ResourceCollectionType;
3253
+ exports.ResourceMetadata$ = ResourceMetadata$;
3254
+ exports.ResourcePath$ = ResourcePath$;
3255
+ exports.ResourcePathComponent$ = ResourcePathComponent$;
3111
3256
  exports.ResourceSortType = ResourceSortType;
3112
3257
  exports.ResourceStateType = ResourceStateType;
3113
3258
  exports.ResourceType = ResourceType;
3259
+ exports.ResponseItem$ = ResponseItem$;
3114
3260
  exports.ResponseItemType = ResponseItemType;
3261
+ exports.RestoreDocumentVersions$ = RestoreDocumentVersions$;
3115
3262
  exports.RestoreDocumentVersionsCommand = RestoreDocumentVersionsCommand;
3263
+ exports.RestoreDocumentVersionsRequest$ = RestoreDocumentVersionsRequest$;
3116
3264
  exports.RolePermissionType = RolePermissionType;
3117
3265
  exports.RoleType = RoleType;
3118
3266
  exports.SearchCollectionType = SearchCollectionType;
3267
+ exports.SearchPrincipalType$ = SearchPrincipalType$;
3119
3268
  exports.SearchQueryScopeType = SearchQueryScopeType;
3120
3269
  exports.SearchResourceType = SearchResourceType;
3270
+ exports.SearchResources$ = SearchResources$;
3121
3271
  exports.SearchResourcesCommand = SearchResourcesCommand;
3122
- exports.ServiceUnavailableException = ServiceUnavailableException$1;
3272
+ exports.SearchResourcesRequest$ = SearchResourcesRequest$;
3273
+ exports.SearchResourcesResponse$ = SearchResourcesResponse$;
3274
+ exports.SearchSortResult$ = SearchSortResult$;
3275
+ exports.ServiceUnavailableException = ServiceUnavailableException;
3276
+ exports.ServiceUnavailableException$ = ServiceUnavailableException$;
3277
+ exports.SharePrincipal$ = SharePrincipal$;
3278
+ exports.ShareResult$ = ShareResult$;
3123
3279
  exports.ShareStatusType = ShareStatusType;
3124
3280
  exports.SortOrder = SortOrder;
3125
- exports.StorageLimitExceededException = StorageLimitExceededException$1;
3126
- exports.StorageLimitWillExceedException = StorageLimitWillExceedException$1;
3281
+ exports.StorageLimitExceededException = StorageLimitExceededException;
3282
+ exports.StorageLimitExceededException$ = StorageLimitExceededException$;
3283
+ exports.StorageLimitWillExceedException = StorageLimitWillExceedException;
3284
+ exports.StorageLimitWillExceedException$ = StorageLimitWillExceedException$;
3285
+ exports.StorageRuleType$ = StorageRuleType$;
3127
3286
  exports.StorageType = StorageType;
3287
+ exports.Subscription$ = Subscription$;
3128
3288
  exports.SubscriptionProtocolType = SubscriptionProtocolType;
3129
3289
  exports.SubscriptionType = SubscriptionType;
3130
- exports.TooManyLabelsException = TooManyLabelsException$1;
3131
- exports.TooManySubscriptionsException = TooManySubscriptionsException$1;
3132
- exports.UnauthorizedOperationException = UnauthorizedOperationException$1;
3133
- exports.UnauthorizedResourceAccessException = UnauthorizedResourceAccessException$1;
3290
+ exports.TooManyLabelsException = TooManyLabelsException;
3291
+ exports.TooManyLabelsException$ = TooManyLabelsException$;
3292
+ exports.TooManySubscriptionsException = TooManySubscriptionsException;
3293
+ exports.TooManySubscriptionsException$ = TooManySubscriptionsException$;
3294
+ exports.UnauthorizedOperationException = UnauthorizedOperationException;
3295
+ exports.UnauthorizedOperationException$ = UnauthorizedOperationException$;
3296
+ exports.UnauthorizedResourceAccessException = UnauthorizedResourceAccessException;
3297
+ exports.UnauthorizedResourceAccessException$ = UnauthorizedResourceAccessException$;
3298
+ exports.UpdateDocument$ = UpdateDocument$;
3134
3299
  exports.UpdateDocumentCommand = UpdateDocumentCommand;
3300
+ exports.UpdateDocumentRequest$ = UpdateDocumentRequest$;
3301
+ exports.UpdateDocumentVersion$ = UpdateDocumentVersion$;
3135
3302
  exports.UpdateDocumentVersionCommand = UpdateDocumentVersionCommand;
3303
+ exports.UpdateDocumentVersionRequest$ = UpdateDocumentVersionRequest$;
3304
+ exports.UpdateFolder$ = UpdateFolder$;
3136
3305
  exports.UpdateFolderCommand = UpdateFolderCommand;
3306
+ exports.UpdateFolderRequest$ = UpdateFolderRequest$;
3307
+ exports.UpdateUser$ = UpdateUser$;
3137
3308
  exports.UpdateUserCommand = UpdateUserCommand;
3309
+ exports.UpdateUserRequest$ = UpdateUserRequest$;
3310
+ exports.UpdateUserResponse$ = UpdateUserResponse$;
3311
+ exports.UploadMetadata$ = UploadMetadata$;
3312
+ exports.User$ = User$;
3138
3313
  exports.UserFilterType = UserFilterType;
3314
+ exports.UserMetadata$ = UserMetadata$;
3139
3315
  exports.UserSortType = UserSortType;
3140
3316
  exports.UserStatusType = UserStatusType;
3317
+ exports.UserStorageMetadata$ = UserStorageMetadata$;
3141
3318
  exports.UserType = UserType;
3142
3319
  exports.WorkDocs = WorkDocs;
3143
3320
  exports.WorkDocsClient = WorkDocsClient;
3144
- exports.WorkDocsServiceException = WorkDocsServiceException$1;
3321
+ exports.WorkDocsServiceException = WorkDocsServiceException;
3322
+ exports.WorkDocsServiceException$ = WorkDocsServiceException$;
3145
3323
  exports.paginateDescribeActivities = paginateDescribeActivities;
3146
3324
  exports.paginateDescribeComments = paginateDescribeComments;
3147
3325
  exports.paginateDescribeDocumentVersions = paginateDescribeDocumentVersions;