You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Gets or sets name of a project which is displayed in Project Server \\ Project Online projects list. Should be unique within Project Server \\ Project Online instance. Is the value is omitted, the value of Prj.Name property will be used instead.
2243
+
*/
2244
+
publicprojectName: string;
2245
+
2246
+
/**
2247
+
* Gets or sets unique identifier of a project. Should be unique within Project Server \\ Project Online instance.
2248
+
*/
2249
+
publicprojectGuid: string;
2250
+
2251
+
/**
2252
+
* Gets or sets timeout used when waiting for processing of save project request by a Project Server's queue processing service. The default value for this property is 1 minute. The processing time may be longer for large projects or in case when Project Server instance is too busy responding to other requests.
2253
+
*/
2254
+
publictimeout: string;
2255
+
2256
+
/**
2257
+
* Gets or sets interval between queue job status requests. The default value is 2 seconds.
@@ -3306,6 +3369,11 @@ export class ResourceAssignment {
3306
3369
baseName: "resourceUid",
3307
3370
type: "number",
3308
3371
},
3372
+
{
3373
+
name: "guid",
3374
+
baseName: "guid",
3375
+
type: "string",
3376
+
},
3309
3377
{
3310
3378
name: "uid",
3311
3379
baseName: "uid",
@@ -3634,6 +3702,11 @@ export class ResourceAssignment {
3634
3702
*/
3635
3703
publicresourceUid: number;
3636
3704
3705
+
/**
3706
+
* Returns or sets the global unique identifier of an assignment.
3707
+
*/
3708
+
publicguid: string;
3709
+
3637
3710
/**
3638
3711
* Returns or sets the unique identifier of an assignment.
3639
3712
*/
@@ -4697,6 +4770,11 @@ export class Task {
4697
4770
name: "outlineCodes",
4698
4771
baseName: "outlineCodes",
4699
4772
type: "Array<OutlineCode>",
4773
+
},
4774
+
{
4775
+
name: "warning",
4776
+
baseName: "warning",
4777
+
type: "boolean",
4700
4778
}];
4701
4779
4702
4780
/**
@@ -5239,6 +5317,11 @@ export class Task {
5239
5317
*/
5240
5318
publicoutlineCodes: Array<OutlineCode>;
5241
5319
5320
+
/**
5321
+
* Represents the flag which indicates that task has schedule discrepancies.
5322
+
*/
5323
+
publicwarning: boolean;
5324
+
5242
5325
publicconstructor(init?: Partial<Task>){
5243
5326
5244
5327
Object.assign(this,init);
@@ -7764,6 +7847,7 @@ const typeMap = {
7764
7847
OutlineValue,
7765
7848
ProjectInfo,
7766
7849
ProjectRecalculationResult,
7850
+
ProjectServerSaveOptionsDTO,
7767
7851
RecurringInfo,
7768
7852
Resource,
7769
7853
ResourceAssignment,
@@ -8315,10 +8399,15 @@ public taskUid: number;
8315
8399
publicresourceUid: number;
8316
8400
8317
8401
/**
8318
-
* The units for the new assignment. Default value is 1.
8402
+
* The units for the new assignment. If not specified, 'cost' value is used.
8319
8403
*/
8320
8404
publicunits: number;
8321
8405
8406
+
/**
8407
+
* The cost for a new assignment. If not specified, default value is used.
8408
+
*/
8409
+
publiccost: number;
8410
+
8322
8411
/**
8323
8412
* The name of the project document to save changes to. If this parameter is omitted then the changes will be saved to the source project document.
8324
8413
*/
@@ -8986,19 +9075,19 @@ export class PutImportProjectFromProjectOnlineRequest {
8986
9075
publicname: string;
8987
9076
8988
9077
/**
8989
-
* The url of sharepoint site. For example, \"https://your_company_name.sharepoint.com\"
9078
+
* Guid of the project to import.
8990
9079
*/
8991
-
publicsiteUrl: string;
9080
+
publicguid: string;
8992
9081
8993
9082
/**
8994
-
* Guid of the project to import.
9083
+
* The url of sharepoint site. For example, \"https://your_company_name.sharepoint.com\"
8995
9084
*/
8996
-
publicguid: string;
9085
+
publicsiteUrl: string;
8997
9086
8998
9087
/**
8999
-
* Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
9088
+
* The user name for the sharepoint site.
9000
9089
*/
9001
-
publicxProjectOnlineToken: string;
9090
+
publicuserName: string;
9002
9091
9003
9092
/**
9004
9093
* Format of the resulting file.
@@ -9014,6 +9103,16 @@ public folder: string;
9014
9103
* The document storage.
9015
9104
*/
9016
9105
publicstorage: string;
9106
+
9107
+
/**
9108
+
* Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
* The url of sharepoint site. For example, \"https://your_company_name.sharepoint.com\"
9462
+
*/
9463
+
publicsiteUrl: string;
9464
+
9465
+
/**
9466
+
* The user name for the sharepoint site.
9467
+
*/
9468
+
publicuserName: string;
9469
+
9470
+
/**
9471
+
* Dispensable save options for Project Server\\Project Online.
9472
+
*/
9473
+
publicsaveOptions: ProjectServerSaveOptionsDTO;
9474
+
9475
+
/**
9476
+
* The document folder.
9477
+
*/
9478
+
publicfolder: string;
9479
+
9480
+
/**
9481
+
* The document storage.
9482
+
*/
9483
+
publicstorage: string;
9484
+
9485
+
/**
9486
+
* Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
@@ -9358,16 +9506,75 @@ export class GetProjectListRequest {
9358
9506
*/
9359
9507
publicsiteUrl: string;
9360
9508
9509
+
/**
9510
+
* The user name for the sharepoint site.
9511
+
*/
9512
+
publicuserName: string;
9513
+
9361
9514
/**
9362
9515
* Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
* The url of sharepoint site. For example, \"https://your_company_name.sharepoint.com\"
9540
+
*/
9541
+
publicsiteUrl: string;
9542
+
9543
+
/**
9544
+
* The user name for the sharepoint site.
9545
+
*/
9546
+
publicuserName: string;
9547
+
9548
+
/**
9549
+
* Dispensable save options for Project Server\\Project Online.
9550
+
*/
9551
+
publicsaveOptions: ProjectServerSaveOptionsDTO;
9552
+
9553
+
/**
9554
+
* The document folder.
9555
+
*/
9556
+
publicfolder: string;
9557
+
9558
+
/**
9559
+
* The document storage.
9560
+
*/
9561
+
publicstorage: string;
9562
+
9563
+
/**
9564
+
* Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
0 commit comments