@aurigma/axios-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.
@@ -1899,15 +1899,15 @@ export declare module BackOfficeApiClient {
1899
1899
  /** Project status update parameters. */
1900
1900
  interface UpdateProjectStatusDto {
1901
1901
  /** Status code. */
1902
- code?: number;
1902
+ code?: number | null;
1903
1903
  /** Status mark color. */
1904
1904
  color?: string | null;
1905
1905
  /** Status display name. */
1906
1906
  displayName?: string | null;
1907
1907
  /** Indicates if status is initial for all projects. Only one status may be used as initial. */
1908
- isInitial?: boolean;
1908
+ isInitial?: boolean | null;
1909
1909
  /** Indicates if status is final. Multiple statuses may be used as final (e.g. Completed, Rejected etc). */
1910
- isFinal?: boolean;
1910
+ isFinal?: boolean | null;
1911
1911
  }
1912
1912
  /** Project status transition dto class. */
1913
1913
  interface ProjectStatusTransitionDto {
@@ -1899,15 +1899,15 @@ export declare module BackOfficeApiClient {
1899
1899
  /** Project status update parameters. */
1900
1900
  interface UpdateProjectStatusDto {
1901
1901
  /** Status code. */
1902
- code?: number;
1902
+ code?: number | null;
1903
1903
  /** Status mark color. */
1904
1904
  color?: string | null;
1905
1905
  /** Status display name. */
1906
1906
  displayName?: string | null;
1907
1907
  /** Indicates if status is initial for all projects. Only one status may be used as initial. */
1908
- isInitial?: boolean;
1908
+ isInitial?: boolean | null;
1909
1909
  /** Indicates if status is final. Multiple statuses may be used as final (e.g. Completed, Rejected etc). */
1910
- isFinal?: boolean;
1910
+ isFinal?: boolean | null;
1911
1911
  }
1912
1912
  /** Project status transition dto class. */
1913
1913
  interface ProjectStatusTransitionDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurigma/axios-backoffice-api-client",
3
- "version": "2.65.1",
3
+ "version": "2.66.1",
4
4
  "license": "SEE LICENSE IN License.md",
5
5
  "description": "Axios 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)",