@aurigma/ng-storefront-api-client 2.11.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 {
@@ -907,6 +920,8 @@ export interface TenantApplicationsInfoDto {
907
920
  designEditorUrl?: string | null;
908
921
  /** An url to the 'UI Framework'. */
909
922
  uiFrameworkUrl?: string | null;
923
+ /** An url to the 'Simple editor'. */
924
+ simpleEditorUrl?: string | null;
910
925
  /** An url to the 'Preflight' tenant application. */
911
926
  preflightUrl?: string | null;
912
927
  /** An url to the 'Dynamic Image' tenant application. */
@@ -928,6 +943,18 @@ export interface TenantInfoDto {
928
943
  tenancyName?: string | null;
929
944
  /** Tenant creation time. */
930
945
  tenantCreationTime?: string;
946
+ /** Tenant activeness status. */
947
+ isActive?: boolean;
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;
931
958
  }
932
959
  export interface FileResponse {
933
960
  data: Blob;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurigma/ng-storefront-api-client",
3
- "version": "2.11.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)",