@aurigma/ng-storefront-api-client 2.13.1 → 2.14.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.
@@ -603,6 +603,12 @@ export interface ITenantInfoApiClient {
603
603
  * @return Success
604
604
  */
605
605
  getInfo(tenantId?: number | null | undefined): Observable<TenantInfoDto>;
606
+ /**
607
+ * Returns a list of tenant users.
608
+ * @param tenantId (optional) Tenant identifier.
609
+ * @return Success
610
+ */
611
+ getUsersInfo(tenantId?: number | null | undefined): Observable<TenantUserInfoDto[]>;
606
612
  }
607
613
  export declare class TenantInfoApiClient extends ApiClientBase implements ITenantInfoApiClient {
608
614
  private http;
@@ -623,6 +629,13 @@ export declare class TenantInfoApiClient extends ApiClientBase implements ITenan
623
629
  */
624
630
  getInfo(tenantId?: number | null | undefined): Observable<TenantInfoDto>;
625
631
  protected processGetInfo(response: HttpResponseBase): Observable<TenantInfoDto>;
632
+ /**
633
+ * Returns a list of tenant users.
634
+ * @param tenantId (optional) Tenant identifier.
635
+ * @return Success
636
+ */
637
+ getUsersInfo(tenantId?: number | null | undefined): Observable<TenantUserInfoDto[]>;
638
+ protected processGetUsersInfo(response: HttpResponseBase): Observable<TenantUserInfoDto[]>;
626
639
  }
627
640
  /** Information about a service. */
628
641
  export interface BuildInfoModel {
@@ -933,6 +946,16 @@ export interface TenantInfoDto {
933
946
  /** Tenant activeness status. */
934
947
  isActive?: boolean;
935
948
  }
949
+ export interface TenantUserInfoDto {
950
+ /** Tenant identifier. */
951
+ tenantId?: number;
952
+ /** User identifier. */
953
+ userId?: number;
954
+ /** User name. */
955
+ userName?: string | null;
956
+ /** User surname. */
957
+ userSurname?: string | null;
958
+ }
936
959
  export interface FileResponse {
937
960
  data: Blob;
938
961
  status: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurigma/ng-storefront-api-client",
3
- "version": "2.13.1",
3
+ "version": "2.14.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)",