@harnessio/react-sei-panorama-service-client 0.26.13 → 0.26.14
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/useAiSummaryControllerGenerateSummaryQuery.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/index.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/DeveloperValidationErrorDto.d.ts +9 -1
- package/dist/sei-panorama-service/src/services/schemas/HqlFilterMetadataResponseDto.d.ts +3 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperDataDto.d.ts +8 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperDataDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamHqlFiltersResponseDto.d.ts +2 -0
- package/package.json +1 -1
package/dist/sei-panorama-service/src/services/hooks/useAiSummaryControllerGenerateSummaryQuery.d.ts
CHANGED
|
@@ -7,6 +7,10 @@ import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
|
7
7
|
export interface AiSummaryControllerGenerateSummaryQueryQueryParams {
|
|
8
8
|
projectIdentifier: string;
|
|
9
9
|
orgIdentifier: string;
|
|
10
|
+
/**
|
|
11
|
+
* @default "non-agentic"
|
|
12
|
+
*/
|
|
13
|
+
mode?: string;
|
|
10
14
|
}
|
|
11
15
|
export type AiSummaryControllerGenerateSummaryRequestBody = AiSummaryRequestDto;
|
|
12
16
|
export type AiSummaryControllerGenerateSummaryOkResponse = ResponseWithPagination<AiSummaryResponseDto>;
|
|
@@ -7,7 +7,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export type DeveloperControllerUpsertDeveloperIdentitiesRequestBody = DeveloperIdentity[];
|
|
9
9
|
export type DeveloperControllerUpsertDeveloperIdentitiesOkResponse = ResponseWithPagination<DeveloperIdentityUpsertResponse>;
|
|
10
|
-
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse =
|
|
10
|
+
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = DeveloperIdentityUpsertFailureResponse | ErrorResponse;
|
|
11
11
|
export interface DeveloperControllerUpsertDeveloperIdentitiesProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDeveloperIdentitiesRequestBody>, 'url'> {
|
|
12
12
|
body: DeveloperControllerUpsertDeveloperIdentitiesRequestBody;
|
|
13
13
|
}
|
|
@@ -862,6 +862,7 @@ export type { SummaryValueChange } from './schemas/SummaryValueChange';
|
|
|
862
862
|
export type { TeamAccessDto } from './schemas/TeamAccessDto';
|
|
863
863
|
export type { TeamCustomVariableResponseDto } from './schemas/TeamCustomVariableResponseDto';
|
|
864
864
|
export type { TeamCustomVariablesResponseDto } from './schemas/TeamCustomVariablesResponseDto';
|
|
865
|
+
export type { TeamDeveloperDataDto } from './schemas/TeamDeveloperDataDto';
|
|
865
866
|
export type { TeamDeveloperDto } from './schemas/TeamDeveloperDto';
|
|
866
867
|
export type { TeamDeveloperSearchParams } from './schemas/TeamDeveloperSearchParams';
|
|
867
868
|
export type { TeamDevelopersDto } from './schemas/TeamDevelopersDto';
|
|
@@ -10,8 +10,16 @@ export interface DeveloperValidationErrorDto {
|
|
|
10
10
|
/**
|
|
11
11
|
* Type of validation error
|
|
12
12
|
*/
|
|
13
|
-
errorType?: 'BLANK_CSV_COLUMN_NAME' | 'CIRCULAR_REFERENCE' | 'DUPLICATE_EMAIL' | 'DUPLICATE_FIELD_TYPE' | 'EMPTY_CSV' | 'INVALID_CSV' | 'MANAGER_EMAIL_MISSING_IN_DEVELOPER_EMAILS' | 'MISSING_NAME_OR_EMAIL_OR_MANAGER_EMAIL_FIELD_MAPPING' | 'NAME_CONFLICT_FOR_EMAIL' | 'REQUIRED_FIELD_MISSING' | 'REQUIRED_VALUE_MISSING';
|
|
13
|
+
errorType?: 'BLANK_CSV_COLUMN_NAME' | 'CIRCULAR_REFERENCE' | 'DUPLICATE_EMAIL' | 'DUPLICATE_FIELD_TYPE' | 'EMAIL_DOES_NOT_EXIST' | 'EMPTY_CSV' | 'INVALID_CSV' | 'MANAGER_EMAIL_MISSING_IN_DEVELOPER_EMAILS' | 'MISSING_NAME_OR_EMAIL_OR_MANAGER_EMAIL_FIELD_MAPPING' | 'NAME_CONFLICT_FOR_EMAIL' | 'REQUIRED_FIELD_MISSING' | 'REQUIRED_VALUE_MISSING';
|
|
14
14
|
fieldName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* List of invalid emails that do not exist in the system
|
|
17
|
+
*/
|
|
18
|
+
invalidEmails?: string[];
|
|
19
|
+
/**
|
|
20
|
+
* Human-readable error message describing the validation error
|
|
21
|
+
*/
|
|
22
|
+
message?: string;
|
|
15
23
|
/**
|
|
16
24
|
* Sample records with this error
|
|
17
25
|
*/
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { HqlFilterKeyMetadataDto } from '../schemas/HqlFilterKeyMetadataDto';
|
|
2
2
|
export interface HqlFilterMetadataResponseDto {
|
|
3
|
+
supportedDeveloperFilterKeys?: {
|
|
4
|
+
[key: string]: HqlFilterKeyMetadataDto[];
|
|
5
|
+
};
|
|
3
6
|
supportedTeamFilterKeys?: {
|
|
4
7
|
[key: string]: HqlFilterKeyMetadataDto[];
|
|
5
8
|
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import type { TeamDeveloperDataDto } from '../schemas/TeamDeveloperDataDto';
|
|
1
2
|
import type { TeamFiltersHqlDto } from '../schemas/TeamFiltersHqlDto';
|
|
2
3
|
export interface TeamHqlFiltersResponseDto {
|
|
3
4
|
seiAccountName?: string;
|
|
5
|
+
teamDeveloperData?: TeamDeveloperDataDto;
|
|
4
6
|
teamFiltersHql?: TeamFiltersHqlDto;
|
|
5
7
|
/**
|
|
6
8
|
* @format int32
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.14",
|
|
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",
|