@aurigma/axios-storefront-api-client
Advanced tools
Comparing version 2.13.1 to 2.14.1
@@ -604,2 +604,8 @@ /// <reference types="node" /> | ||
getInfo(tenantId?: number | null | undefined): Promise<TenantInfoDto>; | ||
/** | ||
* Returns a list of tenant users. | ||
* @param tenantId (optional) Tenant identifier. | ||
* @return Success | ||
*/ | ||
getUsersInfo(tenantId?: number | null | undefined): Promise<TenantUserInfoDto[]>; | ||
} | ||
@@ -625,2 +631,9 @@ export declare class TenantInfoApiClient extends ApiClientBase implements ITenantInfoApiClient { | ||
protected processGetInfo(response: AxiosResponse): Promise<TenantInfoDto>; | ||
/** | ||
* Returns a list of tenant users. | ||
* @param tenantId (optional) Tenant identifier. | ||
* @return Success | ||
*/ | ||
getUsersInfo(tenantId?: number | null | undefined, cancelToken?: CancelToken | undefined): Promise<TenantUserInfoDto[]>; | ||
protected processGetUsersInfo(response: AxiosResponse): Promise<TenantUserInfoDto[]>; | ||
} | ||
@@ -936,2 +949,12 @@ /** Information about a service. */ | ||
} | ||
export interface TenantUserInfoDto { | ||
/** Tenant identifier. */ | ||
tenantId?: number; | ||
/** User identifier. */ | ||
userId?: number; | ||
/** User name. */ | ||
userName?: string | null; | ||
/** User surname. */ | ||
userSurname?: string | null; | ||
} | ||
export interface FileResponse { | ||
@@ -938,0 +961,0 @@ data: Blob; |
@@ -604,2 +604,8 @@ /// <reference types="node" /> | ||
getInfo(tenantId?: number | null | undefined): Promise<TenantInfoDto>; | ||
/** | ||
* Returns a list of tenant users. | ||
* @param tenantId (optional) Tenant identifier. | ||
* @return Success | ||
*/ | ||
getUsersInfo(tenantId?: number | null | undefined): Promise<TenantUserInfoDto[]>; | ||
} | ||
@@ -625,2 +631,9 @@ export declare class TenantInfoApiClient extends ApiClientBase implements ITenantInfoApiClient { | ||
protected processGetInfo(response: AxiosResponse): Promise<TenantInfoDto>; | ||
/** | ||
* Returns a list of tenant users. | ||
* @param tenantId (optional) Tenant identifier. | ||
* @return Success | ||
*/ | ||
getUsersInfo(tenantId?: number | null | undefined, cancelToken?: CancelToken | undefined): Promise<TenantUserInfoDto[]>; | ||
protected processGetUsersInfo(response: AxiosResponse): Promise<TenantUserInfoDto[]>; | ||
} | ||
@@ -936,2 +949,12 @@ /** Information about a service. */ | ||
} | ||
export interface TenantUserInfoDto { | ||
/** Tenant identifier. */ | ||
tenantId?: number; | ||
/** User identifier. */ | ||
userId?: number; | ||
/** User name. */ | ||
userName?: string | null; | ||
/** User surname. */ | ||
userSurname?: string | null; | ||
} | ||
export interface FileResponse { | ||
@@ -938,0 +961,0 @@ data: Blob; |
{ | ||
"name": "@aurigma/axios-storefront-api-client", | ||
"version": "2.13.1", | ||
"version": "2.14.1", | ||
"license": "SEE LICENSE IN License.md", | ||
@@ -5,0 +5,0 @@ "description": "Axios API Client for Storefront API service of Customer's Canvas web-to-print system.", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
499731
7244