@asposecloud/aspose-tasks-cloud 26.6.0 → 26.9.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 (74) hide show
  1. package/README.md +13 -0
  2. package/dist/src/api.d.ts +56 -1
  3. package/dist/src/api.js +387 -0
  4. package/dist/src/api.js.map +1 -1
  5. package/dist/src/internal/requestHelper.js +4 -40
  6. package/dist/src/internal/requestHelper.js.map +1 -1
  7. package/dist/src/model/model.d.ts +760 -26
  8. package/dist/src/model/model.js +628 -6
  9. package/dist/src/model/model.js.map +1 -1
  10. package/dist/test/apiCoverageTest.js +1 -34
  11. package/dist/test/apiCoverageTest.js.map +1 -1
  12. package/dist/test/assignmentsTests.js +1 -34
  13. package/dist/test/assignmentsTests.js.map +1 -1
  14. package/dist/test/baseTest.js +1 -34
  15. package/dist/test/baseTest.js.map +1 -1
  16. package/dist/test/calendarExceptionsTests.js +1 -34
  17. package/dist/test/calendarExceptionsTests.js.map +1 -1
  18. package/dist/test/calendarWorkWeeksTests.js +1 -34
  19. package/dist/test/calendarWorkWeeksTests.js.map +1 -1
  20. package/dist/test/calendarsTests.js +1 -34
  21. package/dist/test/calendarsTests.js.map +1 -1
  22. package/dist/test/documentPropertiesTests.js +1 -34
  23. package/dist/test/documentPropertiesTests.js.map +1 -1
  24. package/dist/test/extendedAttributesTests.js +1 -34
  25. package/dist/test/extendedAttributesTests.js.map +1 -1
  26. package/dist/test/getPageCountTests.js +1 -34
  27. package/dist/test/getPageCountTests.js.map +1 -1
  28. package/dist/test/groupsTests.d.ts +1 -0
  29. package/dist/test/groupsTests.js +187 -0
  30. package/dist/test/groupsTests.js.map +1 -0
  31. package/dist/test/importProjectTests.js +1 -34
  32. package/dist/test/importProjectTests.js.map +1 -1
  33. package/dist/test/outlineCodesTests.js +1 -34
  34. package/dist/test/outlineCodesTests.js.map +1 -1
  35. package/dist/test/projectOnlineTests.js +1 -34
  36. package/dist/test/projectOnlineTests.js.map +1 -1
  37. package/dist/test/readProjectTests.js +1 -34
  38. package/dist/test/readProjectTests.js.map +1 -1
  39. package/dist/test/recalculationTests.js +1 -34
  40. package/dist/test/recalculationTests.js.map +1 -1
  41. package/dist/test/recurringInfoTests.js +1 -34
  42. package/dist/test/recurringInfoTests.js.map +1 -1
  43. package/dist/test/reportTests.js +1 -34
  44. package/dist/test/reportTests.js.map +1 -1
  45. package/dist/test/resourceLevelTests.js +1 -34
  46. package/dist/test/resourceLevelTests.js.map +1 -1
  47. package/dist/test/resourcesTests.js +1 -34
  48. package/dist/test/resourcesTests.js.map +1 -1
  49. package/dist/test/storage/fileTests.js +2 -35
  50. package/dist/test/storage/fileTests.js.map +1 -1
  51. package/dist/test/storage/folderTests.js +1 -34
  52. package/dist/test/storage/folderTests.js.map +1 -1
  53. package/dist/test/storage/storageTests.js +1 -34
  54. package/dist/test/storage/storageTests.js.map +1 -1
  55. package/dist/test/taskDocumentFormatTests.js +1 -34
  56. package/dist/test/taskDocumentFormatTests.js.map +1 -1
  57. package/dist/test/taskLinksTests.js +1 -34
  58. package/dist/test/taskLinksTests.js.map +1 -1
  59. package/dist/test/tasksExtendedAttributesTests.js +1 -34
  60. package/dist/test/tasksExtendedAttributesTests.js.map +1 -1
  61. package/dist/test/tasksPrimaveraPropertiesTests.js +1 -34
  62. package/dist/test/tasksPrimaveraPropertiesTests.js.map +1 -1
  63. package/dist/test/tasksTests.js +1 -34
  64. package/dist/test/tasksTests.js.map +1 -1
  65. package/dist/test/timephasedDataTests.js +1 -34
  66. package/dist/test/timephasedDataTests.js.map +1 -1
  67. package/dist/test/vbaTests.js +162 -38
  68. package/dist/test/vbaTests.js.map +1 -1
  69. package/dist/test/viewsTests.js +1 -34
  70. package/dist/test/viewsTests.js.map +1 -1
  71. package/dist/test/wbsTest.js +1 -34
  72. package/dist/test/wbsTest.js.map +1 -1
  73. package/dist/tsconfig.tsbuildinfo +1 -0
  74. package/package.json +1 -1
@@ -528,6 +528,40 @@ export declare enum CostAccrualType {
528
528
  Invalid,
529
529
  Undefined
530
530
  }
531
+ /**
532
+ * Represents the body of a request that creates a new VBA module.
533
+ */
534
+ export declare class CreateVbaModuleRequest {
535
+ /**
536
+ * Attribute type map
537
+ */
538
+ static attributeTypeMap: Array<{
539
+ name: string;
540
+ baseName: string;
541
+ type: string;
542
+ }>;
543
+ /**
544
+ * Returns attribute type map
545
+ */
546
+ static getAttributeTypeMap(): {
547
+ name: string;
548
+ baseName: string;
549
+ type: string;
550
+ }[];
551
+ /**
552
+ * Gets or sets the name of the VBA module to create.
553
+ */
554
+ name: string;
555
+ /**
556
+ * Gets or sets the type of the VBA module to create. Only ProceduralModule and ClassModule can be created; other values are rejected.
557
+ */
558
+ type: VbaModuleType;
559
+ /**
560
+ * Gets or sets the source code to store in the new VBA module.
561
+ */
562
+ sourceCode: string;
563
+ constructor(init?: Partial<CreateVbaModuleRequest>);
564
+ }
531
565
  /**
532
566
  * Specifies the type of a custom field.
533
567
  */
@@ -2312,6 +2346,205 @@ export declare class FilesUploadResult {
2312
2346
  errors: Array<Error>;
2313
2347
  constructor(init?: Partial<FilesUploadResult>);
2314
2348
  }
2349
+ /**
2350
+ * Represents a brief read-only information about a font used in a group criterion.
2351
+ */
2352
+ export declare class FontInfo {
2353
+ /**
2354
+ * Attribute type map
2355
+ */
2356
+ static attributeTypeMap: Array<{
2357
+ name: string;
2358
+ baseName: string;
2359
+ type: string;
2360
+ }>;
2361
+ /**
2362
+ * Returns attribute type map
2363
+ */
2364
+ static getAttributeTypeMap(): {
2365
+ name: string;
2366
+ baseName: string;
2367
+ type: string;
2368
+ }[];
2369
+ /**
2370
+ * Gets or sets the font family name.
2371
+ */
2372
+ fontFamily: string;
2373
+ /**
2374
+ * Gets or sets the em-size of the font.
2375
+ */
2376
+ size: number;
2377
+ /**
2378
+ * Gets or sets the style information applied to the font.
2379
+ */
2380
+ style: string;
2381
+ constructor(init?: Partial<FontInfo>);
2382
+ }
2383
+ /**
2384
+ * Represents a group definition. A Group object is a member of the ResourceGroups collection or the TaskGroups collection.
2385
+ */
2386
+ export declare class Group {
2387
+ /**
2388
+ * Attribute type map
2389
+ */
2390
+ static attributeTypeMap: Array<{
2391
+ name: string;
2392
+ baseName: string;
2393
+ type: string;
2394
+ }>;
2395
+ /**
2396
+ * Returns attribute type map
2397
+ */
2398
+ static getAttributeTypeMap(): {
2399
+ name: string;
2400
+ baseName: string;
2401
+ type: string;
2402
+ }[];
2403
+ /**
2404
+ * Gets or sets a unique identifier of a group.
2405
+ */
2406
+ uid: number;
2407
+ /**
2408
+ * Gets or sets a name of a Group object.
2409
+ */
2410
+ name: string;
2411
+ /**
2412
+ * Gets or sets a value indicating whether Project shows the group name in the Group drop-down list in the Ribbon.
2413
+ */
2414
+ showInMenu: boolean;
2415
+ /**
2416
+ * Gets or sets a value indicating whether summary rows are displayed for the group.
2417
+ */
2418
+ showSummary: boolean;
2419
+ /**
2420
+ * Gets or sets a value indicating whether to show all the levels of summary tasks for subtasks within group.
2421
+ */
2422
+ maintainHierarchy: boolean;
2423
+ /**
2424
+ * Gets or sets a value indicating whether assignments should be grouped instead of tasks.
2425
+ */
2426
+ groupAssignments: boolean;
2427
+ /**
2428
+ * Gets or sets a collection of criteria representing the fields in a group definition.
2429
+ */
2430
+ groupCriteria: Array<GroupCriterion>;
2431
+ constructor(init?: Partial<Group>);
2432
+ }
2433
+ /**
2434
+ * Represents a criterion in a group definition.
2435
+ */
2436
+ export declare class GroupCriterion {
2437
+ /**
2438
+ * Attribute type map
2439
+ */
2440
+ static attributeTypeMap: Array<{
2441
+ name: string;
2442
+ baseName: string;
2443
+ type: string;
2444
+ }>;
2445
+ /**
2446
+ * Returns attribute type map
2447
+ */
2448
+ static getAttributeTypeMap(): {
2449
+ name: string;
2450
+ baseName: string;
2451
+ type: string;
2452
+ }[];
2453
+ /**
2454
+ * Gets or sets the field being grouped by.
2455
+ */
2456
+ field: Field;
2457
+ /**
2458
+ * Gets or sets a value indicating whether a field used as a criterion in a group definition is sorted in ascending order. False if the field is sorted in descending order.
2459
+ */
2460
+ ascending: boolean;
2461
+ /**
2462
+ * Gets or sets the type of grouping for a field used as a criterion in a group definition.
2463
+ */
2464
+ groupOn: GroupOn;
2465
+ /**
2466
+ * Gets or sets the interval for a field used as a criterion in a group definition.
2467
+ */
2468
+ groupInterval: string;
2469
+ /**
2470
+ * Gets or sets the start of the intervals for a field used as a criterion in a group definition.
2471
+ */
2472
+ startAt: string;
2473
+ /**
2474
+ * Gets or sets the color of the cell background for a field used as a criterion in a group definition.
2475
+ */
2476
+ cellColor: Colors;
2477
+ /**
2478
+ * Gets or sets the color of the font for a field used as a criterion in a group definition.
2479
+ */
2480
+ fontColor: Colors;
2481
+ /**
2482
+ * Gets or sets the pattern of the cell for a field used as a criterion in a group definition.
2483
+ */
2484
+ pattern: BackgroundPattern;
2485
+ /**
2486
+ * Gets or sets the font for a criterion in a group definition.
2487
+ */
2488
+ font: FontInfo;
2489
+ constructor(init?: Partial<GroupCriterion>);
2490
+ }
2491
+ /**
2492
+ * Represents a group definition's brief info.
2493
+ */
2494
+ export declare class GroupItem {
2495
+ /**
2496
+ * Attribute type map
2497
+ */
2498
+ static attributeTypeMap: Array<{
2499
+ name: string;
2500
+ baseName: string;
2501
+ type: string;
2502
+ }>;
2503
+ /**
2504
+ * Returns attribute type map
2505
+ */
2506
+ static getAttributeTypeMap(): {
2507
+ name: string;
2508
+ baseName: string;
2509
+ type: string;
2510
+ }[];
2511
+ link: Link;
2512
+ uid: number;
2513
+ name: string;
2514
+ constructor(init?: Partial<GroupItem>);
2515
+ }
2516
+ /**
2517
+ * Specifies the type of grouping for a field used as a criterion in a group definition.
2518
+ */
2519
+ export declare enum GroupOn {
2520
+ EachValue,
2521
+ Interval,
2522
+ DateEachValue,
2523
+ DateMinute,
2524
+ DateHour,
2525
+ DateDay,
2526
+ DateWeek,
2527
+ DateThirdOfMonth,
2528
+ DateMonth,
2529
+ DateQtr,
2530
+ DateYear,
2531
+ DurationEachValue,
2532
+ DurationMinutes,
2533
+ DurationHours,
2534
+ DurationDays,
2535
+ DurationWeeks,
2536
+ DurationMonths,
2537
+ OutlineEachValue,
2538
+ OutlineLevel,
2539
+ PctEachValue,
2540
+ PctInterval,
2541
+ Pct199,
2542
+ Pct150,
2543
+ Pct125,
2544
+ Pct110,
2545
+ TextEachValue,
2546
+ TextPrefix
2547
+ }
2315
2548
  /**
2316
2549
  * Specifies the type of a database file to import a project from
2317
2550
  */
@@ -3039,6 +3272,10 @@ export declare class PrimaveraTaskProperties {
3039
3272
  * Gets the date of secondary constraint.
3040
3273
  */
3041
3274
  secondaryConstraintDate: Date;
3275
+ /**
3276
+ * Gets the original or planned duration -- the total working time from the task planned start date to the planned finish date.
3277
+ */
3278
+ plannedDuration: string;
3042
3279
  constructor(init?: Partial<PrimaveraTaskProperties>);
3043
3280
  }
3044
3281
  /**
@@ -3987,6 +4224,36 @@ export declare class ResourceAssignment {
3987
4224
  timephasedData: Array<TimephasedData>;
3988
4225
  constructor(init?: Partial<ResourceAssignment>);
3989
4226
  }
4227
+ /**
4228
+ * Represents a single bucket of a resource grouping result: the resources sharing the same group key.
4229
+ */
4230
+ export declare class ResourceGroupBucket {
4231
+ /**
4232
+ * Attribute type map
4233
+ */
4234
+ static attributeTypeMap: Array<{
4235
+ name: string;
4236
+ baseName: string;
4237
+ type: string;
4238
+ }>;
4239
+ /**
4240
+ * Returns attribute type map
4241
+ */
4242
+ static getAttributeTypeMap(): {
4243
+ name: string;
4244
+ baseName: string;
4245
+ type: string;
4246
+ }[];
4247
+ /**
4248
+ * The group key the bucketed resources share.
4249
+ */
4250
+ key: string;
4251
+ /**
4252
+ * Resources falling into this bucket.
4253
+ */
4254
+ resources: Array<ResourceItem>;
4255
+ constructor(init?: Partial<ResourceGroupBucket>);
4256
+ }
3990
4257
  /**
3991
4258
  * Resource's brief info
3992
4259
  */
@@ -4651,6 +4918,36 @@ export declare class TaskCreationRequest {
4651
4918
  beforeTaskId: number;
4652
4919
  constructor(init?: Partial<TaskCreationRequest>);
4653
4920
  }
4921
+ /**
4922
+ * Represents a single bucket of a task grouping result: the tasks sharing the same group key.
4923
+ */
4924
+ export declare class TaskGroupBucket {
4925
+ /**
4926
+ * Attribute type map
4927
+ */
4928
+ static attributeTypeMap: Array<{
4929
+ name: string;
4930
+ baseName: string;
4931
+ type: string;
4932
+ }>;
4933
+ /**
4934
+ * Returns attribute type map
4935
+ */
4936
+ static getAttributeTypeMap(): {
4937
+ name: string;
4938
+ baseName: string;
4939
+ type: string;
4940
+ }[];
4941
+ /**
4942
+ * The group key the bucketed tasks share.
4943
+ */
4944
+ key: string;
4945
+ /**
4946
+ * Tasks falling into this bucket.
4947
+ */
4948
+ tasks: Array<TaskItem>;
4949
+ constructor(init?: Partial<TaskGroupBucket>);
4950
+ }
4654
4951
  /**
4655
4952
  * A task's brief info
4656
4953
  */
@@ -4933,6 +5230,32 @@ export declare enum Timescale {
4933
5230
  ThirdsOfMonths,
4934
5231
  Months
4935
5232
  }
5233
+ /**
5234
+ * Represents the body of a request that updates a VBA module.
5235
+ */
5236
+ export declare class UpdateVbaModuleRequest {
5237
+ /**
5238
+ * Attribute type map
5239
+ */
5240
+ static attributeTypeMap: Array<{
5241
+ name: string;
5242
+ baseName: string;
5243
+ type: string;
5244
+ }>;
5245
+ /**
5246
+ * Returns attribute type map
5247
+ */
5248
+ static getAttributeTypeMap(): {
5249
+ name: string;
5250
+ baseName: string;
5251
+ type: string;
5252
+ }[];
5253
+ /**
5254
+ * The new source code
5255
+ */
5256
+ sourceCode: string;
5257
+ constructor(init?: Partial<UpdateVbaModuleRequest>);
5258
+ }
4936
5259
  /**
4937
5260
  * Represents a lookup value of an extended attribute.
4938
5261
  */
@@ -5011,6 +5334,10 @@ export declare class VbaModule {
5011
5334
  * Gets a source code of the module
5012
5335
  */
5013
5336
  sourceCode: string;
5337
+ /**
5338
+ * Gets the type of the module.
5339
+ */
5340
+ type: VbaModuleType;
5014
5341
  constructor(init?: Partial<VbaModule>);
5015
5342
  }
5016
5343
  /**
@@ -5043,6 +5370,15 @@ export declare class VbaModuleAttribute {
5043
5370
  value: string;
5044
5371
  constructor(init?: Partial<VbaModuleAttribute>);
5045
5372
  }
5373
+ /**
5374
+ * Specifies the type of a module in a VBA project.
5375
+ */
5376
+ export declare enum VbaModuleType {
5377
+ DocumentModule,
5378
+ ProceduralModule,
5379
+ ClassModule,
5380
+ DesignerModule
5381
+ }
5046
5382
  /**
5047
5383
  * Represents VbaProject
5048
5384
  */
@@ -5893,10 +6229,7 @@ export declare class FileVersion extends StorageFile {
5893
6229
  isLatest: boolean;
5894
6230
  constructor(init?: Partial<FileVersion>);
5895
6231
  }
5896
- /**
5897
- * Represents the results of resource leveling.
5898
- */
5899
- export declare class LevelingResponse extends AsposeResponse {
6232
+ export declare class GroupItems extends LinkElement {
5900
6233
  /**
5901
6234
  * Attribute type map
5902
6235
  */
@@ -5913,13 +6246,10 @@ export declare class LevelingResponse extends AsposeResponse {
5913
6246
  baseName: string;
5914
6247
  type: string;
5915
6248
  }[];
5916
- /**
5917
- * Gets a set of task uids affected by resource leveling.
5918
- */
5919
- affectedTaskUids: Array<number>;
5920
- constructor(init?: Partial<LevelingResponse>);
6249
+ list: Array<GroupItem>;
6250
+ constructor(init?: Partial<GroupItems>);
5921
6251
  }
5922
- export declare class OutlineCodeItems extends LinkElement {
6252
+ export declare class GroupItemsResponse extends AsposeResponse {
5923
6253
  /**
5924
6254
  * Attribute type map
5925
6255
  */
@@ -5936,10 +6266,13 @@ export declare class OutlineCodeItems extends LinkElement {
5936
6266
  baseName: string;
5937
6267
  type: string;
5938
6268
  }[];
5939
- list: Array<OutlineCodeItem>;
5940
- constructor(init?: Partial<OutlineCodeItems>);
6269
+ groups: GroupItems;
6270
+ constructor(init?: Partial<GroupItemsResponse>);
5941
6271
  }
5942
- export declare class OutlineCodeItemsResponse extends AsposeResponse {
6272
+ /**
6273
+ * Group response.
6274
+ */
6275
+ export declare class GroupResponse extends AsposeResponse {
5943
6276
  /**
5944
6277
  * Attribute type map
5945
6278
  */
@@ -5956,10 +6289,13 @@ export declare class OutlineCodeItemsResponse extends AsposeResponse {
5956
6289
  baseName: string;
5957
6290
  type: string;
5958
6291
  }[];
5959
- outlineCodes: OutlineCodeItems;
5960
- constructor(init?: Partial<OutlineCodeItemsResponse>);
6292
+ /**
6293
+ * Group DTO.
6294
+ */
6295
+ group: Group;
6296
+ constructor(init?: Partial<GroupResponse>);
5961
6297
  }
5962
- export declare class OutlineCodeResponse extends AsposeResponse {
6298
+ export declare class GroupedResourcesResponse extends AsposeResponse {
5963
6299
  /**
5964
6300
  * Attribute type map
5965
6301
  */
@@ -5976,16 +6312,10 @@ export declare class OutlineCodeResponse extends AsposeResponse {
5976
6312
  baseName: string;
5977
6313
  type: string;
5978
6314
  }[];
5979
- /**
5980
- * Outline code definition.
5981
- */
5982
- outlineCode: OutlineCodeDefinition;
5983
- constructor(init?: Partial<OutlineCodeResponse>);
6315
+ buckets: Array<ResourceGroupBucket>;
6316
+ constructor(init?: Partial<GroupedResourcesResponse>);
5984
6317
  }
5985
- /**
5986
- * Response that contains page count.
5987
- */
5988
- export declare class PageCountResponse extends AsposeResponse {
6318
+ export declare class GroupedTasksResponse extends AsposeResponse {
5989
6319
  /**
5990
6320
  * Attribute type map
5991
6321
  */
@@ -6002,7 +6332,119 @@ export declare class PageCountResponse extends AsposeResponse {
6002
6332
  baseName: string;
6003
6333
  type: string;
6004
6334
  }[];
6005
- /**
6335
+ buckets: Array<TaskGroupBucket>;
6336
+ constructor(init?: Partial<GroupedTasksResponse>);
6337
+ }
6338
+ /**
6339
+ * Represents the results of resource leveling.
6340
+ */
6341
+ export declare class LevelingResponse extends AsposeResponse {
6342
+ /**
6343
+ * Attribute type map
6344
+ */
6345
+ static attributeTypeMap: Array<{
6346
+ name: string;
6347
+ baseName: string;
6348
+ type: string;
6349
+ }>;
6350
+ /**
6351
+ * Returns attribute type map
6352
+ */
6353
+ static getAttributeTypeMap(): {
6354
+ name: string;
6355
+ baseName: string;
6356
+ type: string;
6357
+ }[];
6358
+ /**
6359
+ * Gets a set of task uids affected by resource leveling.
6360
+ */
6361
+ affectedTaskUids: Array<number>;
6362
+ constructor(init?: Partial<LevelingResponse>);
6363
+ }
6364
+ export declare class OutlineCodeItems extends LinkElement {
6365
+ /**
6366
+ * Attribute type map
6367
+ */
6368
+ static attributeTypeMap: Array<{
6369
+ name: string;
6370
+ baseName: string;
6371
+ type: string;
6372
+ }>;
6373
+ /**
6374
+ * Returns attribute type map
6375
+ */
6376
+ static getAttributeTypeMap(): {
6377
+ name: string;
6378
+ baseName: string;
6379
+ type: string;
6380
+ }[];
6381
+ list: Array<OutlineCodeItem>;
6382
+ constructor(init?: Partial<OutlineCodeItems>);
6383
+ }
6384
+ export declare class OutlineCodeItemsResponse extends AsposeResponse {
6385
+ /**
6386
+ * Attribute type map
6387
+ */
6388
+ static attributeTypeMap: Array<{
6389
+ name: string;
6390
+ baseName: string;
6391
+ type: string;
6392
+ }>;
6393
+ /**
6394
+ * Returns attribute type map
6395
+ */
6396
+ static getAttributeTypeMap(): {
6397
+ name: string;
6398
+ baseName: string;
6399
+ type: string;
6400
+ }[];
6401
+ outlineCodes: OutlineCodeItems;
6402
+ constructor(init?: Partial<OutlineCodeItemsResponse>);
6403
+ }
6404
+ export declare class OutlineCodeResponse extends AsposeResponse {
6405
+ /**
6406
+ * Attribute type map
6407
+ */
6408
+ static attributeTypeMap: Array<{
6409
+ name: string;
6410
+ baseName: string;
6411
+ type: string;
6412
+ }>;
6413
+ /**
6414
+ * Returns attribute type map
6415
+ */
6416
+ static getAttributeTypeMap(): {
6417
+ name: string;
6418
+ baseName: string;
6419
+ type: string;
6420
+ }[];
6421
+ /**
6422
+ * Outline code definition.
6423
+ */
6424
+ outlineCode: OutlineCodeDefinition;
6425
+ constructor(init?: Partial<OutlineCodeResponse>);
6426
+ }
6427
+ /**
6428
+ * Response that contains page count.
6429
+ */
6430
+ export declare class PageCountResponse extends AsposeResponse {
6431
+ /**
6432
+ * Attribute type map
6433
+ */
6434
+ static attributeTypeMap: Array<{
6435
+ name: string;
6436
+ baseName: string;
6437
+ type: string;
6438
+ }>;
6439
+ /**
6440
+ * Returns attribute type map
6441
+ */
6442
+ static getAttributeTypeMap(): {
6443
+ name: string;
6444
+ baseName: string;
6445
+ type: string;
6446
+ }[];
6447
+ /**
6006
6448
  * Number of pages in document.
6007
6449
  */
6008
6450
  pageCount: number;
@@ -6520,6 +6962,32 @@ export declare class TimephasedDataResponse extends AsposeResponse {
6520
6962
  items: Array<TimephasedData>;
6521
6963
  constructor(init?: Partial<TimephasedDataResponse>);
6522
6964
  }
6965
+ /**
6966
+ * VbaModule response.
6967
+ */
6968
+ export declare class VbaModuleResponse extends AsposeResponse {
6969
+ /**
6970
+ * Attribute type map
6971
+ */
6972
+ static attributeTypeMap: Array<{
6973
+ name: string;
6974
+ baseName: string;
6975
+ type: string;
6976
+ }>;
6977
+ /**
6978
+ * Returns attribute type map
6979
+ */
6980
+ static getAttributeTypeMap(): {
6981
+ name: string;
6982
+ baseName: string;
6983
+ type: string;
6984
+ }[];
6985
+ /**
6986
+ * VbaModule DTO.
6987
+ */
6988
+ module: VbaModule;
6989
+ constructor(init?: Partial<VbaModuleResponse>);
6990
+ }
6523
6991
  /**
6524
6992
  * VbaProject response
6525
6993
  */
@@ -6612,6 +7080,7 @@ declare const enumsMap: {
6612
7080
  EarnedValueMethodType: typeof EarnedValueMethodType;
6613
7081
  ElementType: typeof ElementType;
6614
7082
  Field: typeof Field;
7083
+ GroupOn: typeof GroupOn;
6615
7084
  ImportedProjectType: typeof ImportedProjectType;
6616
7085
  ItemType: typeof ItemType;
6617
7086
  LevelingOrder: typeof LevelingOrder;
@@ -6645,6 +7114,7 @@ declare const enumsMap: {
6645
7114
  TimeUnitType: typeof TimeUnitType;
6646
7115
  TimephasedDataType: typeof TimephasedDataType;
6647
7116
  Timescale: typeof Timescale;
7117
+ VbaModuleType: typeof VbaModuleType;
6648
7118
  ViewScreen: typeof ViewScreen;
6649
7119
  WBSSequence: typeof WBSSequence;
6650
7120
  WeekDayType: typeof WeekDayType;
@@ -6658,6 +7128,7 @@ declare const typeMap: {
6658
7128
  Calendar: typeof Calendar;
6659
7129
  CalendarException: typeof CalendarException;
6660
7130
  CalendarItem: typeof CalendarItem;
7131
+ CreateVbaModuleRequest: typeof CreateVbaModuleRequest;
6661
7132
  DiscUsage: typeof DiscUsage;
6662
7133
  Duration: typeof Duration;
6663
7134
  ErrorDetails: typeof ErrorDetails;
@@ -6667,6 +7138,10 @@ declare const typeMap: {
6667
7138
  FileVersions: typeof FileVersions;
6668
7139
  FilesList: typeof FilesList;
6669
7140
  FilesUploadResult: typeof FilesUploadResult;
7141
+ FontInfo: typeof FontInfo;
7142
+ Group: typeof Group;
7143
+ GroupCriterion: typeof GroupCriterion;
7144
+ GroupItem: typeof GroupItem;
6670
7145
  LevelingOptions: typeof LevelingOptions;
6671
7146
  Link: typeof Link;
6672
7147
  LinkElement: typeof LinkElement;
@@ -6684,15 +7159,18 @@ declare const typeMap: {
6684
7159
  RecurringInfo: typeof RecurringInfo;
6685
7160
  Resource: typeof Resource;
6686
7161
  ResourceAssignment: typeof ResourceAssignment;
7162
+ ResourceGroupBucket: typeof ResourceGroupBucket;
6687
7163
  ResourceItem: typeof ResourceItem;
6688
7164
  StorageExist: typeof StorageExist;
6689
7165
  StorageFile: typeof StorageFile;
6690
7166
  TableTextStyle: typeof TableTextStyle;
6691
7167
  Task: typeof Task;
6692
7168
  TaskCreationRequest: typeof TaskCreationRequest;
7169
+ TaskGroupBucket: typeof TaskGroupBucket;
6693
7170
  TaskItem: typeof TaskItem;
6694
7171
  TaskLink: typeof TaskLink;
6695
7172
  TimephasedData: typeof TimephasedData;
7173
+ UpdateVbaModuleRequest: typeof UpdateVbaModuleRequest;
6696
7174
  Value: typeof Value;
6697
7175
  VbaModule: typeof VbaModule;
6698
7176
  VbaModuleAttribute: typeof VbaModuleAttribute;
@@ -6725,6 +7203,11 @@ declare const typeMap: {
6725
7203
  ExtendedAttributeItemsResponse: typeof ExtendedAttributeItemsResponse;
6726
7204
  ExtendedAttributeResponse: typeof ExtendedAttributeResponse;
6727
7205
  FileVersion: typeof FileVersion;
7206
+ GroupItems: typeof GroupItems;
7207
+ GroupItemsResponse: typeof GroupItemsResponse;
7208
+ GroupResponse: typeof GroupResponse;
7209
+ GroupedResourcesResponse: typeof GroupedResourcesResponse;
7210
+ GroupedTasksResponse: typeof GroupedTasksResponse;
6728
7211
  LevelingResponse: typeof LevelingResponse;
6729
7212
  OutlineCodeItems: typeof OutlineCodeItems;
6730
7213
  OutlineCodeItemsResponse: typeof OutlineCodeItemsResponse;
@@ -6751,6 +7234,7 @@ declare const typeMap: {
6751
7234
  TaskLinksResponse: typeof TaskLinksResponse;
6752
7235
  TaskResponse: typeof TaskResponse;
6753
7236
  TimephasedDataResponse: typeof TimephasedDataResponse;
7237
+ VbaModuleResponse: typeof VbaModuleResponse;
6754
7238
  VbaProjectResponse: typeof VbaProjectResponse;
6755
7239
  ViewsResponse: typeof ViewsResponse;
6756
7240
  WBSDefinitionResponse: typeof WBSDefinitionResponse;
@@ -7860,6 +8344,130 @@ export declare class PutExtendedAttributeRequest {
7860
8344
  folder: string;
7861
8345
  constructor(init?: Partial<PutExtendedAttributeRequest>);
7862
8346
  }
8347
+ /**
8348
+ * Request model for getGroupedResources operation.
8349
+ */
8350
+ export declare class GetGroupedResourcesRequest {
8351
+ /**
8352
+ * The name of the file.
8353
+ */
8354
+ name: string;
8355
+ /**
8356
+ * Group's Uid
8357
+ */
8358
+ groupUid: number;
8359
+ /**
8360
+ * The document storage.
8361
+ */
8362
+ storage: string;
8363
+ /**
8364
+ * The document folder.
8365
+ */
8366
+ folder: string;
8367
+ constructor(init?: Partial<GetGroupedResourcesRequest>);
8368
+ }
8369
+ /**
8370
+ * Request model for getGroupedTasks operation.
8371
+ */
8372
+ export declare class GetGroupedTasksRequest {
8373
+ /**
8374
+ * The name of the file.
8375
+ */
8376
+ name: string;
8377
+ /**
8378
+ * Group's Uid
8379
+ */
8380
+ groupUid: number;
8381
+ /**
8382
+ * The document storage.
8383
+ */
8384
+ storage: string;
8385
+ /**
8386
+ * The document folder.
8387
+ */
8388
+ folder: string;
8389
+ constructor(init?: Partial<GetGroupedTasksRequest>);
8390
+ }
8391
+ /**
8392
+ * Request model for getResourceGroup operation.
8393
+ */
8394
+ export declare class GetResourceGroupRequest {
8395
+ /**
8396
+ * The name of the file.
8397
+ */
8398
+ name: string;
8399
+ /**
8400
+ * Group's Uid
8401
+ */
8402
+ groupUid: number;
8403
+ /**
8404
+ * The document storage.
8405
+ */
8406
+ storage: string;
8407
+ /**
8408
+ * The document folder.
8409
+ */
8410
+ folder: string;
8411
+ constructor(init?: Partial<GetResourceGroupRequest>);
8412
+ }
8413
+ /**
8414
+ * Request model for getResourceGroups operation.
8415
+ */
8416
+ export declare class GetResourceGroupsRequest {
8417
+ /**
8418
+ * The name of the file.
8419
+ */
8420
+ name: string;
8421
+ /**
8422
+ * The document storage.
8423
+ */
8424
+ storage: string;
8425
+ /**
8426
+ * The document folder.
8427
+ */
8428
+ folder: string;
8429
+ constructor(init?: Partial<GetResourceGroupsRequest>);
8430
+ }
8431
+ /**
8432
+ * Request model for getTaskGroup operation.
8433
+ */
8434
+ export declare class GetTaskGroupRequest {
8435
+ /**
8436
+ * The name of the file.
8437
+ */
8438
+ name: string;
8439
+ /**
8440
+ * Group's Uid
8441
+ */
8442
+ groupUid: number;
8443
+ /**
8444
+ * The document storage.
8445
+ */
8446
+ storage: string;
8447
+ /**
8448
+ * The document folder.
8449
+ */
8450
+ folder: string;
8451
+ constructor(init?: Partial<GetTaskGroupRequest>);
8452
+ }
8453
+ /**
8454
+ * Request model for getTaskGroups operation.
8455
+ */
8456
+ export declare class GetTaskGroupsRequest {
8457
+ /**
8458
+ * The name of the file.
8459
+ */
8460
+ name: string;
8461
+ /**
8462
+ * The document storage.
8463
+ */
8464
+ storage: string;
8465
+ /**
8466
+ * The document folder.
8467
+ */
8468
+ folder: string;
8469
+ constructor(init?: Partial<GetTaskGroupsRequest>);
8470
+ }
7863
8471
  /**
7864
8472
  * Request model for deleteOutlineCodeByIndex operation.
7865
8473
  */
@@ -8926,6 +9534,76 @@ export declare class PutTaskLinkRequest {
8926
9534
  fileName: string;
8927
9535
  constructor(init?: Partial<PutTaskLinkRequest>);
8928
9536
  }
9537
+ /**
9538
+ * Request model for clearVba operation.
9539
+ */
9540
+ export declare class ClearVbaRequest {
9541
+ /**
9542
+ * The name of the file
9543
+ */
9544
+ name: string;
9545
+ /**
9546
+ * Optional output file name
9547
+ */
9548
+ fileName: string;
9549
+ /**
9550
+ * The folder storage
9551
+ */
9552
+ folder: string;
9553
+ /**
9554
+ * The document storage.
9555
+ */
9556
+ storage: string;
9557
+ constructor(init?: Partial<ClearVbaRequest>);
9558
+ }
9559
+ /**
9560
+ * Request model for deleteVbaModule operation.
9561
+ */
9562
+ export declare class DeleteVbaModuleRequest {
9563
+ /**
9564
+ * The name of the file
9565
+ */
9566
+ name: string;
9567
+ /**
9568
+ * The module name or index
9569
+ */
9570
+ module: string;
9571
+ /**
9572
+ * Optional output file name
9573
+ */
9574
+ fileName: string;
9575
+ /**
9576
+ * The folder storage
9577
+ */
9578
+ folder: string;
9579
+ /**
9580
+ * The document storage.
9581
+ */
9582
+ storage: string;
9583
+ constructor(init?: Partial<DeleteVbaModuleRequest>);
9584
+ }
9585
+ /**
9586
+ * Request model for getVbaModule operation.
9587
+ */
9588
+ export declare class GetVbaModuleRequest {
9589
+ /**
9590
+ * The name of the file
9591
+ */
9592
+ name: string;
9593
+ /**
9594
+ * The module name or index
9595
+ */
9596
+ module: string;
9597
+ /**
9598
+ * The folder storage
9599
+ */
9600
+ folder: string;
9601
+ /**
9602
+ * The document storage.
9603
+ */
9604
+ storage: string;
9605
+ constructor(init?: Partial<GetVbaModuleRequest>);
9606
+ }
8929
9607
  /**
8930
9608
  * Request model for getVbaProject operation.
8931
9609
  */
@@ -8944,6 +9622,62 @@ export declare class GetVbaProjectRequest {
8944
9622
  storage: string;
8945
9623
  constructor(init?: Partial<GetVbaProjectRequest>);
8946
9624
  }
9625
+ /**
9626
+ * Request model for postVbaModule operation.
9627
+ */
9628
+ export declare class PostVbaModuleRequest {
9629
+ /**
9630
+ * The name of the file
9631
+ */
9632
+ name: string;
9633
+ /**
9634
+ * The module creation request
9635
+ */
9636
+ module: CreateVbaModuleRequest;
9637
+ /**
9638
+ * Optional output file name
9639
+ */
9640
+ fileName: string;
9641
+ /**
9642
+ * The folder storage
9643
+ */
9644
+ folder: string;
9645
+ /**
9646
+ * The document storage.
9647
+ */
9648
+ storage: string;
9649
+ constructor(init?: Partial<PostVbaModuleRequest>);
9650
+ }
9651
+ /**
9652
+ * Request model for putVbaModule operation.
9653
+ */
9654
+ export declare class PutVbaModuleRequest {
9655
+ /**
9656
+ * The name of the file
9657
+ */
9658
+ name: string;
9659
+ /**
9660
+ * The module name or index
9661
+ */
9662
+ module: string;
9663
+ /**
9664
+ * The module update request
9665
+ */
9666
+ updateRequest: UpdateVbaModuleRequest;
9667
+ /**
9668
+ * Optional output file name
9669
+ */
9670
+ fileName: string;
9671
+ /**
9672
+ * The folder storage
9673
+ */
9674
+ folder: string;
9675
+ /**
9676
+ * The document storage.
9677
+ */
9678
+ storage: string;
9679
+ constructor(init?: Partial<PutVbaModuleRequest>);
9680
+ }
8947
9681
  /**
8948
9682
  * Request model for createTableTextStyle operation.
8949
9683
  */