@aurigma/ng-storefront-api-client 2.20.1 → 2.21.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.
@@ -262,10 +262,11 @@ export interface IProjectsApiClient {
262
262
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
263
263
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
264
264
  * @param search (optional) Search string for partial match.
265
+ * @param orderId (optional) Identifier of corresponding order.
265
266
  * @param tenantId (optional) Tenant identifier.
266
267
  * @return Success
267
268
  */
268
- 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): Observable<PagedOfProjectDto>;
269
+ 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, orderId?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProjectDto>;
269
270
  /**
270
271
  * Creates a new project.
271
272
  * @param storefrontId Storefront identifier.
@@ -366,10 +367,11 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
366
367
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
367
368
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
368
369
  * @param search (optional) Search string for partial match.
370
+ * @param orderId (optional) Identifier of corresponding order.
369
371
  * @param tenantId (optional) Tenant identifier.
370
372
  * @return Success
371
373
  */
372
- 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): Observable<PagedOfProjectDto>;
374
+ 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, orderId?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProjectDto>;
373
375
  protected processGetAll(response: HttpResponseBase): Observable<PagedOfProjectDto>;
374
376
  /**
375
377
  * Creates a new project.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurigma/ng-storefront-api-client",
3
- "version": "2.20.1",
3
+ "version": "2.21.1",
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)",