@asposecloud/aspose-tasks-cloud 26.6.0 → 26.7.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.
- package/README.md +6 -0
- package/dist/src/api.d.ts +31 -1
- package/dist/src/api.js +200 -0
- package/dist/src/api.js.map +1 -1
- package/dist/src/internal/requestHelper.js +1 -1
- package/dist/src/model/model.d.ts +501 -0
- package/dist/src/model/model.js +473 -6
- package/dist/src/model/model.js.map +1 -1
- package/dist/test/groupsTests.d.ts +1 -0
- package/dist/test/groupsTests.js +220 -0
- package/dist/test/groupsTests.js.map +1 -0
- package/package.json +1 -1
|
@@ -151,7 +151,7 @@ function invokeApiMethodInternal(requestOptions, configuration, notApplyAuthToRe
|
|
|
151
151
|
const defaultHeaders = {
|
|
152
152
|
"User-Agent": "tasks nodejs sdk",
|
|
153
153
|
"x-aspose-client": "nodejs sdk",
|
|
154
|
-
"x-aspose-client-version": "26.
|
|
154
|
+
"x-aspose-client-version": "26.7",
|
|
155
155
|
};
|
|
156
156
|
axiosConfig.headers = Object.assign({}, defaultHeaders, requestOptions.headers || {});
|
|
157
157
|
if (requestOptions.form) {
|
|
@@ -2312,6 +2312,205 @@ export declare class FilesUploadResult {
|
|
|
2312
2312
|
errors: Array<Error>;
|
|
2313
2313
|
constructor(init?: Partial<FilesUploadResult>);
|
|
2314
2314
|
}
|
|
2315
|
+
/**
|
|
2316
|
+
* Represents a brief read-only information about a font used in a group criterion.
|
|
2317
|
+
*/
|
|
2318
|
+
export declare class FontInfo {
|
|
2319
|
+
/**
|
|
2320
|
+
* Attribute type map
|
|
2321
|
+
*/
|
|
2322
|
+
static attributeTypeMap: Array<{
|
|
2323
|
+
name: string;
|
|
2324
|
+
baseName: string;
|
|
2325
|
+
type: string;
|
|
2326
|
+
}>;
|
|
2327
|
+
/**
|
|
2328
|
+
* Returns attribute type map
|
|
2329
|
+
*/
|
|
2330
|
+
static getAttributeTypeMap(): {
|
|
2331
|
+
name: string;
|
|
2332
|
+
baseName: string;
|
|
2333
|
+
type: string;
|
|
2334
|
+
}[];
|
|
2335
|
+
/**
|
|
2336
|
+
* Gets or sets the font family name.
|
|
2337
|
+
*/
|
|
2338
|
+
fontFamily: string;
|
|
2339
|
+
/**
|
|
2340
|
+
* Gets or sets the em-size of the font.
|
|
2341
|
+
*/
|
|
2342
|
+
size: number;
|
|
2343
|
+
/**
|
|
2344
|
+
* Gets or sets the style information applied to the font.
|
|
2345
|
+
*/
|
|
2346
|
+
style: string;
|
|
2347
|
+
constructor(init?: Partial<FontInfo>);
|
|
2348
|
+
}
|
|
2349
|
+
/**
|
|
2350
|
+
* Represents a group definition. A Group object is a member of the ResourceGroups collection or the TaskGroups collection.
|
|
2351
|
+
*/
|
|
2352
|
+
export declare class Group {
|
|
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 a unique identifier of a group.
|
|
2371
|
+
*/
|
|
2372
|
+
uid: number;
|
|
2373
|
+
/**
|
|
2374
|
+
* Gets or sets a name of a Group object.
|
|
2375
|
+
*/
|
|
2376
|
+
name: string;
|
|
2377
|
+
/**
|
|
2378
|
+
* Gets or sets a value indicating whether Project shows the group name in the Group drop-down list in the Ribbon.
|
|
2379
|
+
*/
|
|
2380
|
+
showInMenu: boolean;
|
|
2381
|
+
/**
|
|
2382
|
+
* Gets or sets a value indicating whether summary rows are displayed for the group.
|
|
2383
|
+
*/
|
|
2384
|
+
showSummary: boolean;
|
|
2385
|
+
/**
|
|
2386
|
+
* Gets or sets a value indicating whether to show all the levels of summary tasks for subtasks within group.
|
|
2387
|
+
*/
|
|
2388
|
+
maintainHierarchy: boolean;
|
|
2389
|
+
/**
|
|
2390
|
+
* Gets or sets a value indicating whether assignments should be grouped instead of tasks.
|
|
2391
|
+
*/
|
|
2392
|
+
groupAssignments: boolean;
|
|
2393
|
+
/**
|
|
2394
|
+
* Gets or sets a collection of criteria representing the fields in a group definition.
|
|
2395
|
+
*/
|
|
2396
|
+
groupCriteria: Array<GroupCriterion>;
|
|
2397
|
+
constructor(init?: Partial<Group>);
|
|
2398
|
+
}
|
|
2399
|
+
/**
|
|
2400
|
+
* Represents a criterion in a group definition.
|
|
2401
|
+
*/
|
|
2402
|
+
export declare class GroupCriterion {
|
|
2403
|
+
/**
|
|
2404
|
+
* Attribute type map
|
|
2405
|
+
*/
|
|
2406
|
+
static attributeTypeMap: Array<{
|
|
2407
|
+
name: string;
|
|
2408
|
+
baseName: string;
|
|
2409
|
+
type: string;
|
|
2410
|
+
}>;
|
|
2411
|
+
/**
|
|
2412
|
+
* Returns attribute type map
|
|
2413
|
+
*/
|
|
2414
|
+
static getAttributeTypeMap(): {
|
|
2415
|
+
name: string;
|
|
2416
|
+
baseName: string;
|
|
2417
|
+
type: string;
|
|
2418
|
+
}[];
|
|
2419
|
+
/**
|
|
2420
|
+
* Gets or sets the field being grouped by.
|
|
2421
|
+
*/
|
|
2422
|
+
field: Field;
|
|
2423
|
+
/**
|
|
2424
|
+
* 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.
|
|
2425
|
+
*/
|
|
2426
|
+
ascending: boolean;
|
|
2427
|
+
/**
|
|
2428
|
+
* Gets or sets the type of grouping for a field used as a criterion in a group definition.
|
|
2429
|
+
*/
|
|
2430
|
+
groupOn: GroupOn;
|
|
2431
|
+
/**
|
|
2432
|
+
* Gets or sets the interval for a field used as a criterion in a group definition.
|
|
2433
|
+
*/
|
|
2434
|
+
groupInterval: string;
|
|
2435
|
+
/**
|
|
2436
|
+
* Gets or sets the start of the intervals for a field used as a criterion in a group definition.
|
|
2437
|
+
*/
|
|
2438
|
+
startAt: string;
|
|
2439
|
+
/**
|
|
2440
|
+
* Gets or sets the color of the cell background for a field used as a criterion in a group definition.
|
|
2441
|
+
*/
|
|
2442
|
+
cellColor: Colors;
|
|
2443
|
+
/**
|
|
2444
|
+
* Gets or sets the color of the font for a field used as a criterion in a group definition.
|
|
2445
|
+
*/
|
|
2446
|
+
fontColor: Colors;
|
|
2447
|
+
/**
|
|
2448
|
+
* Gets or sets the pattern of the cell for a field used as a criterion in a group definition.
|
|
2449
|
+
*/
|
|
2450
|
+
pattern: BackgroundPattern;
|
|
2451
|
+
/**
|
|
2452
|
+
* Gets or sets the font for a criterion in a group definition.
|
|
2453
|
+
*/
|
|
2454
|
+
font: FontInfo;
|
|
2455
|
+
constructor(init?: Partial<GroupCriterion>);
|
|
2456
|
+
}
|
|
2457
|
+
/**
|
|
2458
|
+
* Represents a group definition's brief info.
|
|
2459
|
+
*/
|
|
2460
|
+
export declare class GroupItem {
|
|
2461
|
+
/**
|
|
2462
|
+
* Attribute type map
|
|
2463
|
+
*/
|
|
2464
|
+
static attributeTypeMap: Array<{
|
|
2465
|
+
name: string;
|
|
2466
|
+
baseName: string;
|
|
2467
|
+
type: string;
|
|
2468
|
+
}>;
|
|
2469
|
+
/**
|
|
2470
|
+
* Returns attribute type map
|
|
2471
|
+
*/
|
|
2472
|
+
static getAttributeTypeMap(): {
|
|
2473
|
+
name: string;
|
|
2474
|
+
baseName: string;
|
|
2475
|
+
type: string;
|
|
2476
|
+
}[];
|
|
2477
|
+
link: Link;
|
|
2478
|
+
uid: number;
|
|
2479
|
+
name: string;
|
|
2480
|
+
constructor(init?: Partial<GroupItem>);
|
|
2481
|
+
}
|
|
2482
|
+
/**
|
|
2483
|
+
* Specifies the type of grouping for a field used as a criterion in a group definition.
|
|
2484
|
+
*/
|
|
2485
|
+
export declare enum GroupOn {
|
|
2486
|
+
EachValue,
|
|
2487
|
+
Interval,
|
|
2488
|
+
DateEachValue,
|
|
2489
|
+
DateMinute,
|
|
2490
|
+
DateHour,
|
|
2491
|
+
DateDay,
|
|
2492
|
+
DateWeek,
|
|
2493
|
+
DateThirdOfMonth,
|
|
2494
|
+
DateMonth,
|
|
2495
|
+
DateQtr,
|
|
2496
|
+
DateYear,
|
|
2497
|
+
DurationEachValue,
|
|
2498
|
+
DurationMinutes,
|
|
2499
|
+
DurationHours,
|
|
2500
|
+
DurationDays,
|
|
2501
|
+
DurationWeeks,
|
|
2502
|
+
DurationMonths,
|
|
2503
|
+
OutlineEachValue,
|
|
2504
|
+
OutlineLevel,
|
|
2505
|
+
PctEachValue,
|
|
2506
|
+
PctInterval,
|
|
2507
|
+
Pct199,
|
|
2508
|
+
Pct150,
|
|
2509
|
+
Pct125,
|
|
2510
|
+
Pct110,
|
|
2511
|
+
TextEachValue,
|
|
2512
|
+
TextPrefix
|
|
2513
|
+
}
|
|
2315
2514
|
/**
|
|
2316
2515
|
* Specifies the type of a database file to import a project from
|
|
2317
2516
|
*/
|
|
@@ -3987,6 +4186,36 @@ export declare class ResourceAssignment {
|
|
|
3987
4186
|
timephasedData: Array<TimephasedData>;
|
|
3988
4187
|
constructor(init?: Partial<ResourceAssignment>);
|
|
3989
4188
|
}
|
|
4189
|
+
/**
|
|
4190
|
+
* Represents a single bucket of a resource grouping result: the resources sharing the same group key.
|
|
4191
|
+
*/
|
|
4192
|
+
export declare class ResourceGroupBucket {
|
|
4193
|
+
/**
|
|
4194
|
+
* Attribute type map
|
|
4195
|
+
*/
|
|
4196
|
+
static attributeTypeMap: Array<{
|
|
4197
|
+
name: string;
|
|
4198
|
+
baseName: string;
|
|
4199
|
+
type: string;
|
|
4200
|
+
}>;
|
|
4201
|
+
/**
|
|
4202
|
+
* Returns attribute type map
|
|
4203
|
+
*/
|
|
4204
|
+
static getAttributeTypeMap(): {
|
|
4205
|
+
name: string;
|
|
4206
|
+
baseName: string;
|
|
4207
|
+
type: string;
|
|
4208
|
+
}[];
|
|
4209
|
+
/**
|
|
4210
|
+
* The group key the bucketed resources share.
|
|
4211
|
+
*/
|
|
4212
|
+
key: string;
|
|
4213
|
+
/**
|
|
4214
|
+
* Resources falling into this bucket.
|
|
4215
|
+
*/
|
|
4216
|
+
resources: Array<ResourceItem>;
|
|
4217
|
+
constructor(init?: Partial<ResourceGroupBucket>);
|
|
4218
|
+
}
|
|
3990
4219
|
/**
|
|
3991
4220
|
* Resource's brief info
|
|
3992
4221
|
*/
|
|
@@ -4651,6 +4880,36 @@ export declare class TaskCreationRequest {
|
|
|
4651
4880
|
beforeTaskId: number;
|
|
4652
4881
|
constructor(init?: Partial<TaskCreationRequest>);
|
|
4653
4882
|
}
|
|
4883
|
+
/**
|
|
4884
|
+
* Represents a single bucket of a task grouping result: the tasks sharing the same group key.
|
|
4885
|
+
*/
|
|
4886
|
+
export declare class TaskGroupBucket {
|
|
4887
|
+
/**
|
|
4888
|
+
* Attribute type map
|
|
4889
|
+
*/
|
|
4890
|
+
static attributeTypeMap: Array<{
|
|
4891
|
+
name: string;
|
|
4892
|
+
baseName: string;
|
|
4893
|
+
type: string;
|
|
4894
|
+
}>;
|
|
4895
|
+
/**
|
|
4896
|
+
* Returns attribute type map
|
|
4897
|
+
*/
|
|
4898
|
+
static getAttributeTypeMap(): {
|
|
4899
|
+
name: string;
|
|
4900
|
+
baseName: string;
|
|
4901
|
+
type: string;
|
|
4902
|
+
}[];
|
|
4903
|
+
/**
|
|
4904
|
+
* The group key the bucketed tasks share.
|
|
4905
|
+
*/
|
|
4906
|
+
key: string;
|
|
4907
|
+
/**
|
|
4908
|
+
* Tasks falling into this bucket.
|
|
4909
|
+
*/
|
|
4910
|
+
tasks: Array<TaskItem>;
|
|
4911
|
+
constructor(init?: Partial<TaskGroupBucket>);
|
|
4912
|
+
}
|
|
4654
4913
|
/**
|
|
4655
4914
|
* A task's brief info
|
|
4656
4915
|
*/
|
|
@@ -5893,6 +6152,112 @@ export declare class FileVersion extends StorageFile {
|
|
|
5893
6152
|
isLatest: boolean;
|
|
5894
6153
|
constructor(init?: Partial<FileVersion>);
|
|
5895
6154
|
}
|
|
6155
|
+
export declare class GroupItems extends LinkElement {
|
|
6156
|
+
/**
|
|
6157
|
+
* Attribute type map
|
|
6158
|
+
*/
|
|
6159
|
+
static attributeTypeMap: Array<{
|
|
6160
|
+
name: string;
|
|
6161
|
+
baseName: string;
|
|
6162
|
+
type: string;
|
|
6163
|
+
}>;
|
|
6164
|
+
/**
|
|
6165
|
+
* Returns attribute type map
|
|
6166
|
+
*/
|
|
6167
|
+
static getAttributeTypeMap(): {
|
|
6168
|
+
name: string;
|
|
6169
|
+
baseName: string;
|
|
6170
|
+
type: string;
|
|
6171
|
+
}[];
|
|
6172
|
+
list: Array<GroupItem>;
|
|
6173
|
+
constructor(init?: Partial<GroupItems>);
|
|
6174
|
+
}
|
|
6175
|
+
export declare class GroupItemsResponse extends AsposeResponse {
|
|
6176
|
+
/**
|
|
6177
|
+
* Attribute type map
|
|
6178
|
+
*/
|
|
6179
|
+
static attributeTypeMap: Array<{
|
|
6180
|
+
name: string;
|
|
6181
|
+
baseName: string;
|
|
6182
|
+
type: string;
|
|
6183
|
+
}>;
|
|
6184
|
+
/**
|
|
6185
|
+
* Returns attribute type map
|
|
6186
|
+
*/
|
|
6187
|
+
static getAttributeTypeMap(): {
|
|
6188
|
+
name: string;
|
|
6189
|
+
baseName: string;
|
|
6190
|
+
type: string;
|
|
6191
|
+
}[];
|
|
6192
|
+
groups: GroupItems;
|
|
6193
|
+
constructor(init?: Partial<GroupItemsResponse>);
|
|
6194
|
+
}
|
|
6195
|
+
/**
|
|
6196
|
+
* Group response.
|
|
6197
|
+
*/
|
|
6198
|
+
export declare class GroupResponse extends AsposeResponse {
|
|
6199
|
+
/**
|
|
6200
|
+
* Attribute type map
|
|
6201
|
+
*/
|
|
6202
|
+
static attributeTypeMap: Array<{
|
|
6203
|
+
name: string;
|
|
6204
|
+
baseName: string;
|
|
6205
|
+
type: string;
|
|
6206
|
+
}>;
|
|
6207
|
+
/**
|
|
6208
|
+
* Returns attribute type map
|
|
6209
|
+
*/
|
|
6210
|
+
static getAttributeTypeMap(): {
|
|
6211
|
+
name: string;
|
|
6212
|
+
baseName: string;
|
|
6213
|
+
type: string;
|
|
6214
|
+
}[];
|
|
6215
|
+
/**
|
|
6216
|
+
* Group DTO.
|
|
6217
|
+
*/
|
|
6218
|
+
group: Group;
|
|
6219
|
+
constructor(init?: Partial<GroupResponse>);
|
|
6220
|
+
}
|
|
6221
|
+
export declare class GroupedResourcesResponse extends AsposeResponse {
|
|
6222
|
+
/**
|
|
6223
|
+
* Attribute type map
|
|
6224
|
+
*/
|
|
6225
|
+
static attributeTypeMap: Array<{
|
|
6226
|
+
name: string;
|
|
6227
|
+
baseName: string;
|
|
6228
|
+
type: string;
|
|
6229
|
+
}>;
|
|
6230
|
+
/**
|
|
6231
|
+
* Returns attribute type map
|
|
6232
|
+
*/
|
|
6233
|
+
static getAttributeTypeMap(): {
|
|
6234
|
+
name: string;
|
|
6235
|
+
baseName: string;
|
|
6236
|
+
type: string;
|
|
6237
|
+
}[];
|
|
6238
|
+
buckets: Array<ResourceGroupBucket>;
|
|
6239
|
+
constructor(init?: Partial<GroupedResourcesResponse>);
|
|
6240
|
+
}
|
|
6241
|
+
export declare class GroupedTasksResponse extends AsposeResponse {
|
|
6242
|
+
/**
|
|
6243
|
+
* Attribute type map
|
|
6244
|
+
*/
|
|
6245
|
+
static attributeTypeMap: Array<{
|
|
6246
|
+
name: string;
|
|
6247
|
+
baseName: string;
|
|
6248
|
+
type: string;
|
|
6249
|
+
}>;
|
|
6250
|
+
/**
|
|
6251
|
+
* Returns attribute type map
|
|
6252
|
+
*/
|
|
6253
|
+
static getAttributeTypeMap(): {
|
|
6254
|
+
name: string;
|
|
6255
|
+
baseName: string;
|
|
6256
|
+
type: string;
|
|
6257
|
+
}[];
|
|
6258
|
+
buckets: Array<TaskGroupBucket>;
|
|
6259
|
+
constructor(init?: Partial<GroupedTasksResponse>);
|
|
6260
|
+
}
|
|
5896
6261
|
/**
|
|
5897
6262
|
* Represents the results of resource leveling.
|
|
5898
6263
|
*/
|
|
@@ -6612,6 +6977,7 @@ declare const enumsMap: {
|
|
|
6612
6977
|
EarnedValueMethodType: typeof EarnedValueMethodType;
|
|
6613
6978
|
ElementType: typeof ElementType;
|
|
6614
6979
|
Field: typeof Field;
|
|
6980
|
+
GroupOn: typeof GroupOn;
|
|
6615
6981
|
ImportedProjectType: typeof ImportedProjectType;
|
|
6616
6982
|
ItemType: typeof ItemType;
|
|
6617
6983
|
LevelingOrder: typeof LevelingOrder;
|
|
@@ -6667,6 +7033,10 @@ declare const typeMap: {
|
|
|
6667
7033
|
FileVersions: typeof FileVersions;
|
|
6668
7034
|
FilesList: typeof FilesList;
|
|
6669
7035
|
FilesUploadResult: typeof FilesUploadResult;
|
|
7036
|
+
FontInfo: typeof FontInfo;
|
|
7037
|
+
Group: typeof Group;
|
|
7038
|
+
GroupCriterion: typeof GroupCriterion;
|
|
7039
|
+
GroupItem: typeof GroupItem;
|
|
6670
7040
|
LevelingOptions: typeof LevelingOptions;
|
|
6671
7041
|
Link: typeof Link;
|
|
6672
7042
|
LinkElement: typeof LinkElement;
|
|
@@ -6684,12 +7054,14 @@ declare const typeMap: {
|
|
|
6684
7054
|
RecurringInfo: typeof RecurringInfo;
|
|
6685
7055
|
Resource: typeof Resource;
|
|
6686
7056
|
ResourceAssignment: typeof ResourceAssignment;
|
|
7057
|
+
ResourceGroupBucket: typeof ResourceGroupBucket;
|
|
6687
7058
|
ResourceItem: typeof ResourceItem;
|
|
6688
7059
|
StorageExist: typeof StorageExist;
|
|
6689
7060
|
StorageFile: typeof StorageFile;
|
|
6690
7061
|
TableTextStyle: typeof TableTextStyle;
|
|
6691
7062
|
Task: typeof Task;
|
|
6692
7063
|
TaskCreationRequest: typeof TaskCreationRequest;
|
|
7064
|
+
TaskGroupBucket: typeof TaskGroupBucket;
|
|
6693
7065
|
TaskItem: typeof TaskItem;
|
|
6694
7066
|
TaskLink: typeof TaskLink;
|
|
6695
7067
|
TimephasedData: typeof TimephasedData;
|
|
@@ -6725,6 +7097,11 @@ declare const typeMap: {
|
|
|
6725
7097
|
ExtendedAttributeItemsResponse: typeof ExtendedAttributeItemsResponse;
|
|
6726
7098
|
ExtendedAttributeResponse: typeof ExtendedAttributeResponse;
|
|
6727
7099
|
FileVersion: typeof FileVersion;
|
|
7100
|
+
GroupItems: typeof GroupItems;
|
|
7101
|
+
GroupItemsResponse: typeof GroupItemsResponse;
|
|
7102
|
+
GroupResponse: typeof GroupResponse;
|
|
7103
|
+
GroupedResourcesResponse: typeof GroupedResourcesResponse;
|
|
7104
|
+
GroupedTasksResponse: typeof GroupedTasksResponse;
|
|
6728
7105
|
LevelingResponse: typeof LevelingResponse;
|
|
6729
7106
|
OutlineCodeItems: typeof OutlineCodeItems;
|
|
6730
7107
|
OutlineCodeItemsResponse: typeof OutlineCodeItemsResponse;
|
|
@@ -7860,6 +8237,130 @@ export declare class PutExtendedAttributeRequest {
|
|
|
7860
8237
|
folder: string;
|
|
7861
8238
|
constructor(init?: Partial<PutExtendedAttributeRequest>);
|
|
7862
8239
|
}
|
|
8240
|
+
/**
|
|
8241
|
+
* Request model for getGroupedResources operation.
|
|
8242
|
+
*/
|
|
8243
|
+
export declare class GetGroupedResourcesRequest {
|
|
8244
|
+
/**
|
|
8245
|
+
* The name of the file.
|
|
8246
|
+
*/
|
|
8247
|
+
name: string;
|
|
8248
|
+
/**
|
|
8249
|
+
* Group's Uid
|
|
8250
|
+
*/
|
|
8251
|
+
groupUid: number;
|
|
8252
|
+
/**
|
|
8253
|
+
* The document storage.
|
|
8254
|
+
*/
|
|
8255
|
+
storage: string;
|
|
8256
|
+
/**
|
|
8257
|
+
* The document folder.
|
|
8258
|
+
*/
|
|
8259
|
+
folder: string;
|
|
8260
|
+
constructor(init?: Partial<GetGroupedResourcesRequest>);
|
|
8261
|
+
}
|
|
8262
|
+
/**
|
|
8263
|
+
* Request model for getGroupedTasks operation.
|
|
8264
|
+
*/
|
|
8265
|
+
export declare class GetGroupedTasksRequest {
|
|
8266
|
+
/**
|
|
8267
|
+
* The name of the file.
|
|
8268
|
+
*/
|
|
8269
|
+
name: string;
|
|
8270
|
+
/**
|
|
8271
|
+
* Group's Uid
|
|
8272
|
+
*/
|
|
8273
|
+
groupUid: number;
|
|
8274
|
+
/**
|
|
8275
|
+
* The document storage.
|
|
8276
|
+
*/
|
|
8277
|
+
storage: string;
|
|
8278
|
+
/**
|
|
8279
|
+
* The document folder.
|
|
8280
|
+
*/
|
|
8281
|
+
folder: string;
|
|
8282
|
+
constructor(init?: Partial<GetGroupedTasksRequest>);
|
|
8283
|
+
}
|
|
8284
|
+
/**
|
|
8285
|
+
* Request model for getResourceGroup operation.
|
|
8286
|
+
*/
|
|
8287
|
+
export declare class GetResourceGroupRequest {
|
|
8288
|
+
/**
|
|
8289
|
+
* The name of the file.
|
|
8290
|
+
*/
|
|
8291
|
+
name: string;
|
|
8292
|
+
/**
|
|
8293
|
+
* Group's Uid
|
|
8294
|
+
*/
|
|
8295
|
+
groupUid: number;
|
|
8296
|
+
/**
|
|
8297
|
+
* The document storage.
|
|
8298
|
+
*/
|
|
8299
|
+
storage: string;
|
|
8300
|
+
/**
|
|
8301
|
+
* The document folder.
|
|
8302
|
+
*/
|
|
8303
|
+
folder: string;
|
|
8304
|
+
constructor(init?: Partial<GetResourceGroupRequest>);
|
|
8305
|
+
}
|
|
8306
|
+
/**
|
|
8307
|
+
* Request model for getResourceGroups operation.
|
|
8308
|
+
*/
|
|
8309
|
+
export declare class GetResourceGroupsRequest {
|
|
8310
|
+
/**
|
|
8311
|
+
* The name of the file.
|
|
8312
|
+
*/
|
|
8313
|
+
name: string;
|
|
8314
|
+
/**
|
|
8315
|
+
* The document storage.
|
|
8316
|
+
*/
|
|
8317
|
+
storage: string;
|
|
8318
|
+
/**
|
|
8319
|
+
* The document folder.
|
|
8320
|
+
*/
|
|
8321
|
+
folder: string;
|
|
8322
|
+
constructor(init?: Partial<GetResourceGroupsRequest>);
|
|
8323
|
+
}
|
|
8324
|
+
/**
|
|
8325
|
+
* Request model for getTaskGroup operation.
|
|
8326
|
+
*/
|
|
8327
|
+
export declare class GetTaskGroupRequest {
|
|
8328
|
+
/**
|
|
8329
|
+
* The name of the file.
|
|
8330
|
+
*/
|
|
8331
|
+
name: string;
|
|
8332
|
+
/**
|
|
8333
|
+
* Group's Uid
|
|
8334
|
+
*/
|
|
8335
|
+
groupUid: number;
|
|
8336
|
+
/**
|
|
8337
|
+
* The document storage.
|
|
8338
|
+
*/
|
|
8339
|
+
storage: string;
|
|
8340
|
+
/**
|
|
8341
|
+
* The document folder.
|
|
8342
|
+
*/
|
|
8343
|
+
folder: string;
|
|
8344
|
+
constructor(init?: Partial<GetTaskGroupRequest>);
|
|
8345
|
+
}
|
|
8346
|
+
/**
|
|
8347
|
+
* Request model for getTaskGroups operation.
|
|
8348
|
+
*/
|
|
8349
|
+
export declare class GetTaskGroupsRequest {
|
|
8350
|
+
/**
|
|
8351
|
+
* The name of the file.
|
|
8352
|
+
*/
|
|
8353
|
+
name: string;
|
|
8354
|
+
/**
|
|
8355
|
+
* The document storage.
|
|
8356
|
+
*/
|
|
8357
|
+
storage: string;
|
|
8358
|
+
/**
|
|
8359
|
+
* The document folder.
|
|
8360
|
+
*/
|
|
8361
|
+
folder: string;
|
|
8362
|
+
constructor(init?: Partial<GetTaskGroupsRequest>);
|
|
8363
|
+
}
|
|
7863
8364
|
/**
|
|
7864
8365
|
* Request model for deleteOutlineCodeByIndex operation.
|
|
7865
8366
|
*/
|