@aurigma/ng-storefront-api-client 2.25.3 → 2.26.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.
@@ -253,7 +253,6 @@ export declare class ProductSpecificationsApiClient extends ApiClientBase implem
253
253
  export interface IProjectsApiClient {
254
254
  /**
255
255
  * Returns all projects, relevant to the specified query parameters.
256
- * @param storefrontId Storefront identifier.
257
256
  * @param ownerId (optional) Project owner (storefront user id) filter.
258
257
  * @param productReference (optional) Product reference filter.
259
258
  * @param status (optional) Project status filter.
@@ -263,10 +262,11 @@ export interface IProjectsApiClient {
263
262
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
264
263
  * @param search (optional) Search string for partial match.
265
264
  * @param orderId (optional) Identifier of corresponding order.
265
+ * @param storefrontId (optional) Storefront identifier.
266
266
  * @param tenantId (optional) Tenant identifier.
267
267
  * @return Success
268
268
  */
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
+ getAll(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, storefrontId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProjectDto>;
270
270
  /**
271
271
  * Creates a new project.
272
272
  * @param storefrontId Storefront identifier.
@@ -397,7 +397,6 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
397
397
  constructor(configuration: ApiClientConfiguration, http: HttpClient, baseUrl?: string);
398
398
  /**
399
399
  * Returns all projects, relevant to the specified query parameters.
400
- * @param storefrontId Storefront identifier.
401
400
  * @param ownerId (optional) Project owner (storefront user id) filter.
402
401
  * @param productReference (optional) Product reference filter.
403
402
  * @param status (optional) Project status filter.
@@ -407,10 +406,11 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
407
406
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
408
407
  * @param search (optional) Search string for partial match.
409
408
  * @param orderId (optional) Identifier of corresponding order.
409
+ * @param storefrontId (optional) Storefront identifier.
410
410
  * @param tenantId (optional) Tenant identifier.
411
411
  * @return Success
412
412
  */
413
- 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>;
413
+ getAll(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, storefrontId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProjectDto>;
414
414
  protected processGetAll(response: HttpResponseBase): Observable<PagedOfProjectDto>;
415
415
  /**
416
416
  * 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.25.3",
3
+ "version": "2.26.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)",