@harnessio/react-sei-panorama-service-client 0.21.3 → 0.21.5
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.
- package/dist/sei-panorama-service/src/services/hooks/useLicenseControllerDownloadLicensesQuery.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/BaBreakdownDto.d.ts +2 -0
- package/dist/sei-panorama-service/src/services/schemas/BaDrilldownResponseDto.d.ts +2 -0
- package/dist/sei-panorama-service/src/services/schemas/BaFeatureResponseDto.d.ts +2 -0
- package/dist/sei-panorama-service/src/services/schemas/BaFeatureSummaryCardDto.d.ts +2 -0
- package/dist/sei-panorama-service/src/services/schemas/LicenseSearchParams.d.ts +4 -10
- package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoDeveloperLicenseDto.d.ts +3 -9
- package/package.json +1 -1
package/dist/sei-panorama-service/src/services/hooks/useLicenseControllerDownloadLicensesQuery.d.ts
CHANGED
@@ -8,7 +8,7 @@ export interface LicenseControllerDownloadLicensesQueryHeaderParams {
|
|
8
8
|
*/
|
9
9
|
Accept?: string;
|
10
10
|
}
|
11
|
-
export type LicenseControllerDownloadLicensesOkResponse = ResponseWithPagination<DeveloperLicenseDto
|
11
|
+
export type LicenseControllerDownloadLicensesOkResponse = ResponseWithPagination<DeveloperLicenseDto>;
|
12
12
|
export type LicenseControllerDownloadLicensesErrorResponse = unknown;
|
13
13
|
export interface LicenseControllerDownloadLicensesProps extends Omit<FetcherOptions<unknown, unknown, LicenseControllerDownloadLicensesQueryHeaderParams>, 'url'> {
|
14
14
|
}
|
@@ -1,5 +1,7 @@
|
|
1
|
+
import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
|
1
2
|
import type { BreakdownRecord } from '../schemas/BreakdownRecord';
|
2
3
|
export interface BaBreakdownDto {
|
4
|
+
baProfileModel?: BaProfileResponseDto;
|
3
5
|
breakdowns?: BreakdownRecord[];
|
4
6
|
/**
|
5
7
|
* @format date-time
|
@@ -1,6 +1,8 @@
|
|
1
|
+
import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
|
1
2
|
import type { BaDrilldownItemDto } from '../schemas/BaDrilldownItemDto';
|
2
3
|
import type { PaginationInfo } from '../schemas/PaginationInfo';
|
3
4
|
export interface BaDrilldownResponseDto {
|
5
|
+
baProfileModel?: BaProfileResponseDto;
|
4
6
|
data?: BaDrilldownItemDto[];
|
5
7
|
headers?: string[];
|
6
8
|
pagination?: PaginationInfo;
|
@@ -1,7 +1,9 @@
|
|
1
|
+
import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
|
1
2
|
import type { BaCategoryMetric } from '../schemas/BaCategoryMetric';
|
2
3
|
import type { BaDataPoint } from '../schemas/BaDataPoint';
|
3
4
|
import type { Metric } from '../schemas/Metric';
|
4
5
|
export interface BaFeatureResponseDto {
|
6
|
+
baProfileModel?: BaProfileResponseDto;
|
5
7
|
categories?: BaCategoryMetric[];
|
6
8
|
dataPoints?: BaDataPoint[];
|
7
9
|
/**
|
@@ -1,5 +1,7 @@
|
|
1
|
+
import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
|
1
2
|
import type { BaDataPoint } from '../schemas/BaDataPoint';
|
2
3
|
export interface BaFeatureSummaryCardDto {
|
4
|
+
baProfileModel?: BaProfileResponseDto;
|
3
5
|
current?: BaDataPoint;
|
4
6
|
/**
|
5
7
|
* @format date-time
|
@@ -1,12 +1,6 @@
|
|
1
1
|
export interface LicenseSearchParams {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
email?: string;
|
7
|
-
name?: string;
|
8
|
-
/**
|
9
|
-
* @format date-time
|
10
|
-
*/
|
11
|
-
updatedAt?: string;
|
2
|
+
emailFilter?: string;
|
3
|
+
nameFilter?: string;
|
4
|
+
sortBy?: 'created_at' | 'email' | 'name' | 'updated_at';
|
5
|
+
sortOrder?: 'asc' | 'desc';
|
12
6
|
}
|
package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoDeveloperLicenseDto.d.ts
CHANGED
@@ -1,9 +1,5 @@
|
|
1
|
-
import type {
|
1
|
+
import type { DeveloperLicenseDto } from '../schemas/DeveloperLicenseDto';
|
2
2
|
export interface ListResponseDtoDeveloperLicenseDto {
|
3
|
-
/**
|
4
|
-
* Information about the fields detected in the file
|
5
|
-
*/
|
6
|
-
fields?: DeveloperFieldDto[];
|
7
3
|
/**
|
8
4
|
* @format int32
|
9
5
|
*/
|
@@ -12,11 +8,9 @@ export interface ListResponseDtoDeveloperLicenseDto {
|
|
12
8
|
* @format int32
|
13
9
|
*/
|
14
10
|
pageSize?: number;
|
15
|
-
records?:
|
16
|
-
[key: string]: string;
|
17
|
-
}>;
|
11
|
+
records?: DeveloperLicenseDto[];
|
18
12
|
/**
|
19
13
|
* @format int32
|
20
14
|
*/
|
21
|
-
|
15
|
+
totalCount?: number;
|
22
16
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
3
|
-
"version": "0.21.
|
3
|
+
"version": "0.21.5",
|
4
4
|
"description": "Harness React sei panorama service client - SEI Panorama APIs integrated with react hooks for Panorama project",
|
5
5
|
"author": "Harness Inc",
|
6
6
|
"license": "MIT",
|