@aurigma/ng-backoffice-api-client 2.65.1 → 2.66.1
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/bundles/aurigma-ng-backoffice-api-client.umd.js.map +1 -1
- package/bundles/aurigma-ng-backoffice-api-client.umd.min.js.map +1 -1
- package/esm2015/lib/backoffice-api-client.js +1 -1
- package/fesm2015/aurigma-ng-backoffice-api-client.js.map +1 -1
- package/lib/backoffice-api-client.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1901,15 +1901,15 @@ export interface CreateProjectStatusDto {
|
|
|
1901
1901
|
/** Project status update parameters. */
|
|
1902
1902
|
export interface UpdateProjectStatusDto {
|
|
1903
1903
|
/** Status code. */
|
|
1904
|
-
code?: number;
|
|
1904
|
+
code?: number | null;
|
|
1905
1905
|
/** Status mark color. */
|
|
1906
1906
|
color?: string | null;
|
|
1907
1907
|
/** Status display name. */
|
|
1908
1908
|
displayName?: string | null;
|
|
1909
1909
|
/** Indicates if status is initial for all projects. Only one status may be used as initial. */
|
|
1910
|
-
isInitial?: boolean;
|
|
1910
|
+
isInitial?: boolean | null;
|
|
1911
1911
|
/** Indicates if status is final. Multiple statuses may be used as final (e.g. Completed, Rejected etc). */
|
|
1912
|
-
isFinal?: boolean;
|
|
1912
|
+
isFinal?: boolean | null;
|
|
1913
1913
|
}
|
|
1914
1914
|
/** Project status transition dto class. */
|
|
1915
1915
|
export interface ProjectStatusTransitionDto {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurigma/ng-backoffice-api-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.66.1",
|
|
4
4
|
"license": "SEE LICENSE IN License.md",
|
|
5
5
|
"description": "Angular API Client for BackOffice API service of Customer's Canvas web-to-print system.",
|
|
6
6
|
"author": "Aurigma Inc <info@aurigma.com> (https://customerscanvas.com)",
|