@aurigma/ng-storefront-api-client 2.2.922 → 2.2.1038

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.
@@ -247,6 +247,8 @@ export interface IProjectsApiClient {
247
247
  /**
248
248
  * Gets all projects relevant to specified query parameters
249
249
  * @param storefrontId Storefront identifier
250
+ * @param ownerId (optional) Project owner (storefront user id) filter
251
+ * @param productReference (optional) Product reference filter
250
252
  * @param status (optional) Project status filter
251
253
  * @param datePeriod (optional) Project date period filter
252
254
  * @param skip (optional) Defines page start offset from beginning of sorted result list
@@ -257,7 +259,7 @@ export interface IProjectsApiClient {
257
259
  * @param userId (optional) User identifier
258
260
  * @return Success
259
261
  */
260
- getAll(storefrontId: number, status?: number | null | undefined, datePeriod?: DatePeriod | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined, userId?: number | null | undefined): Observable<PagedOfProjectDto>;
262
+ getAll(storefrontId: number, ownerId?: string | null | undefined, productReference?: string | null | undefined, status?: number | null | undefined, datePeriod?: DatePeriod | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined, userId?: number | null | undefined): Observable<PagedOfProjectDto>;
261
263
  /**
262
264
  * Creates new project
263
265
  * @param storefrontId Storefront identifier
@@ -351,6 +353,8 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
351
353
  /**
352
354
  * Gets all projects relevant to specified query parameters
353
355
  * @param storefrontId Storefront identifier
356
+ * @param ownerId (optional) Project owner (storefront user id) filter
357
+ * @param productReference (optional) Product reference filter
354
358
  * @param status (optional) Project status filter
355
359
  * @param datePeriod (optional) Project date period filter
356
360
  * @param skip (optional) Defines page start offset from beginning of sorted result list
@@ -361,7 +365,7 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
361
365
  * @param userId (optional) User identifier
362
366
  * @return Success
363
367
  */
364
- getAll(storefrontId: number, status?: number | null | undefined, datePeriod?: DatePeriod | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined, userId?: number | null | undefined): Observable<PagedOfProjectDto>;
368
+ getAll(storefrontId: number, ownerId?: string | null | undefined, productReference?: string | null | undefined, status?: number | null | undefined, datePeriod?: DatePeriod | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined, userId?: number | null | undefined): Observable<PagedOfProjectDto>;
365
369
  protected processGetAll(response: HttpResponseBase): Observable<PagedOfProjectDto>;
366
370
  /**
367
371
  * Creates new project
@@ -754,23 +758,29 @@ export interface ProjectItemDto {
754
758
  hidden?: any | null;
755
759
  /** List of item associated design identifiers */
756
760
  designIds?: string[] | null;
761
+ /** SKU */
762
+ sku?: string | null;
757
763
  }
758
764
  /** Project dto class */
759
765
  export interface ProjectDto {
760
766
  /** Project identifier */
761
767
  id?: number;
768
+ /** Product reference (i.e external reference to Customer's Canvas product specification) */
769
+ productReference?: string | null;
762
770
  /** Storefront identifier */
763
771
  storefrontId?: number;
764
772
  /** Project tenant indentifier */
765
773
  tenantId?: number;
766
- /** Product specification identifier (i.e identifier of Customer's Canvas product specification - main subject of this project) */
767
- productSpecificationId?: string | null;
768
774
  /** Order identifier in ecommerce system */
769
775
  orderId?: string | null;
770
776
  /** Order url in ecommerce system */
771
777
  orderUrl?: string | null;
772
778
  /** Order number in ecommerce system */
773
779
  orderNumber?: number | null;
780
+ /** Line item ID from external ecommerce system order. */
781
+ orderLineItemId?: string | null;
782
+ /** Line item index from external ecommerce system order. */
783
+ orderLineItemIndex?: number | null;
774
784
  /** Customer identifier in ecommerce system */
775
785
  customerId?: string | null;
776
786
  /** Customer name in ecommerce system */
@@ -787,6 +797,8 @@ export interface ProjectDto {
787
797
  created?: string;
788
798
  /** Project modification time */
789
799
  lastModified?: string | null;
800
+ /** Description of the project */
801
+ description?: string | null;
790
802
  }
791
803
  /** Paged list of items */
792
804
  export interface PagedOfProjectDto {
@@ -805,6 +817,10 @@ export interface CreateProjectDto {
805
817
  orderUrl?: string | null;
806
818
  /** Order number in ecommerce system */
807
819
  orderNumber?: number | null;
820
+ /** Line item index from ecommerce system order */
821
+ orderLineItemIndex?: number | null;
822
+ /** Line Item id from ecommerce system order */
823
+ orderLineItemId?: string | null;
808
824
  /** Customer identifier in ecommerce system */
809
825
  customerId?: string | null;
810
826
  /** Customer name in ecommerce system */
@@ -815,6 +831,8 @@ export interface CreateProjectDto {
815
831
  ownerId?: string | null;
816
832
  /** List of project items */
817
833
  items?: ProjectItemDto[] | null;
834
+ /** Description of the project */
835
+ description?: string | null;
818
836
  }
819
837
  /** Project transition dto class */
820
838
  export interface ProjectTransitionDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurigma/ng-storefront-api-client",
3
- "version": "2.2.922",
3
+ "version": "2.2.1038",
4
4
  "license": "SEE LICENSE IN License.md",
5
5
  "description": "Angular API Client for Storefront API service of Customer's Canvas web-to-print system.",
6
6
  "author": "Aurigma Inc <info@aurigma.com> (https://customerscanvas.com)",