Skip to content

Commit 3d460b4

Browse files
author
Vasiliy Sinitsyn
committed
SDK updated to ver. 18.8 of Aspose.Tasks for Cloud.
Bitwise enums and array parameters handling is fixed. API changes: - added PostTaskRecurringInfo, PutTaskRecurringInfo operations. - added returnAsZipArchive parameter to PostTaskDocumentWithFormat operation. - added returnAsZipArchive parameter to GetTaskDocumentWithFormat operation.
1 parent a59285b commit 3d460b4

File tree

84 files changed

+2383
-929
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+2383
-929
lines changed

src/Aspose/Tasks/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class Configuration
128128
* Version of Aspose.Tasks Cloud API
129129
*
130130
*/
131-
protected $clientVersion = '18.02';
131+
protected $clientVersion = '18.8';
132132

133133
/*
134134
* Constructor

src/Aspose/Tasks/Model/BaselineType.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@ public static function getAllowableEnumValues()
7676
self::UNDEFINED,
7777
];
7878
}
79+
80+
/*
81+
* Gets whether enum is bitwise
82+
* @return bool
83+
*/
84+
public static function getIsBitwise()
85+
{
86+
return false;
87+
}
7988
}
8089

8190

src/Aspose/Tasks/Model/BookingType.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ public static function getAllowableEnumValues()
5858
self::UNDEFINED,
5959
];
6060
}
61+
62+
/*
63+
* Gets whether enum is bitwise
64+
* @return bool
65+
*/
66+
public static function getIsBitwise()
67+
{
68+
return false;
69+
}
6170
}
6271

6372

src/Aspose/Tasks/Model/CalculationMode.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ public static function getAllowableEnumValues()
5858
self::MANUAL,
5959
];
6060
}
61+
62+
/*
63+
* Gets whether enum is bitwise
64+
* @return bool
65+
*/
66+
public static function getIsBitwise()
67+
{
68+
return false;
69+
}
6170
}
6271

6372

src/Aspose/Tasks/Model/CalculationType.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,15 @@ public static function getAllowableEnumValues()
6060
self::CALCULATION,
6161
];
6262
}
63+
64+
/*
65+
* Gets whether enum is bitwise
66+
* @return bool
67+
*/
68+
public static function getIsBitwise()
69+
{
70+
return false;
71+
}
6372
}
6473

6574

src/Aspose/Tasks/Model/CalendarExceptionType.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@ public static function getAllowableEnumValues()
7070
self::NO_EXCEPTION_TYPE,
7171
];
7272
}
73+
74+
/*
75+
* Gets whether enum is bitwise
76+
* @return bool
77+
*/
78+
public static function getIsBitwise()
79+
{
80+
return false;
81+
}
7382
}
7483

7584

src/Aspose/Tasks/Model/ConfidenceLevel.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,15 @@ public static function getAllowableEnumValues()
6262
self::CL99,
6363
];
6464
}
65+
66+
/*
67+
* Gets whether enum is bitwise
68+
* @return bool
69+
*/
70+
public static function getIsBitwise()
71+
{
72+
return false;
73+
}
6574
}
6675

6776

src/Aspose/Tasks/Model/ConstraintType.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@ public static function getAllowableEnumValues()
7070
self::UNDEFINED,
7171
];
7272
}
73+
74+
/*
75+
* Gets whether enum is bitwise
76+
* @return bool
77+
*/
78+
public static function getIsBitwise()
79+
{
80+
return false;
81+
}
7382
}
7483

7584

src/Aspose/Tasks/Model/CostAccrualType.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,15 @@ public static function getAllowableEnumValues()
6262
self::UNDEFINED,
6363
];
6464
}
65+
66+
/*
67+
* Gets whether enum is bitwise
68+
* @return bool
69+
*/
70+
public static function getIsBitwise()
71+
{
72+
return false;
73+
}
6574
}
6675

6776

src/Aspose/Tasks/Model/CustomFieldType.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ class CustomFieldType
5151
const NUMBER = 'Number';
5252
const START = 'Start';
5353
const TEXT = 'Text';
54+
const OUTLINE_CODE = 'OutlineCode';
55+
const RBS = 'RBS';
5456

5557
/*
5658
* Gets allowable values of the enum
@@ -68,8 +70,19 @@ public static function getAllowableEnumValues()
6870
self::NUMBER,
6971
self::START,
7072
self::TEXT,
73+
self::OUTLINE_CODE,
74+
self::RBS,
7175
];
7276
}
77+
78+
/*
79+
* Gets whether enum is bitwise
80+
* @return bool
81+
*/
82+
public static function getIsBitwise()
83+
{
84+
return false;
85+
}
7386
}
7487

7588

0 commit comments

Comments
 (0)