@harnessio/react-sei-panorama-service-client 0.22.11 → 0.22.13

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.
Files changed (23) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerGetDeveloperIdentitiesQuery.d.ts +2 -1
  2. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerSearchDevelopers2Query.d.ts +2 -1
  3. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
  4. package/dist/sei-panorama-service/src/services/hooks/useEfficiencyProfileControllerSearchProfilesMutation.d.ts +2 -2
  5. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.d.ts +3 -2
  6. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.d.ts +3 -2
  7. package/dist/sei-panorama-service/src/services/index.d.ts +1 -0
  8. package/dist/sei-panorama-service/src/services/schemas/DeveloperIdentity.d.ts +16 -3
  9. package/dist/sei-panorama-service/src/services/schemas/DeveloperValidationErrorDto.d.ts +1 -1
  10. package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +1 -1
  11. package/dist/sei-panorama-service/src/services/schemas/ListResponseDto.d.ts +12 -0
  12. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoDeveloperIdentity.d.ts +25 -0
  13. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoDeveloperIdentity.js +1 -0
  14. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoDeveloperLicenseDto.d.ts +12 -0
  15. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoEfficiencyProfileResponseDto.d.ts +9 -0
  16. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoIntegrationConfigResponseDto.d.ts +12 -0
  17. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoIntegrationResponseDto.d.ts +12 -0
  18. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoOrgTreeResponseDto.d.ts +12 -0
  19. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoProductivityProfileResponseDto.d.ts +12 -0
  20. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtobaProfileResponseDto.d.ts +12 -0
  21. package/dist/sei-panorama-service/src/services/schemas/ProductivityProfileResponseDto.d.ts +3 -0
  22. package/dist/sei-panorama-service/src/services/schemas/TeamFilter.d.ts +1 -1
  23. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
1
  import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ListResponseDtoDeveloperIdentity } from '../schemas/ListResponseDtoDeveloperIdentity';
2
3
  import type { ErrorResponse } from '../schemas/ErrorResponse';
3
4
  import type { ResponseWithPagination } from '../helpers';
4
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
@@ -24,7 +25,7 @@ export interface DeveloperControllerGetDeveloperIdentitiesQueryQueryParams {
24
25
  */
25
26
  pageSize?: number;
26
27
  }
27
- export type DeveloperControllerGetDeveloperIdentitiesOkResponse = ResponseWithPagination<unknown>;
28
+ export type DeveloperControllerGetDeveloperIdentitiesOkResponse = ResponseWithPagination<ListResponseDtoDeveloperIdentity>;
28
29
  export type DeveloperControllerGetDeveloperIdentitiesErrorResponse = ErrorResponse;
29
30
  export interface DeveloperControllerGetDeveloperIdentitiesProps extends Omit<FetcherOptions<DeveloperControllerGetDeveloperIdentitiesQueryQueryParams, unknown>, 'url'> {
30
31
  queryParams: DeveloperControllerGetDeveloperIdentitiesQueryQueryParams;
@@ -1,4 +1,5 @@
1
1
  import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { DeveloperListResponseDto } from '../schemas/DeveloperListResponseDto';
2
3
  import type { ErrorResponse } from '../schemas/ErrorResponse';
3
4
  import type { ResponseWithPagination } from '../helpers';
4
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
@@ -23,7 +24,7 @@ export interface DeveloperControllerSearchDevelopers2QueryQueryParams {
23
24
  */
24
25
  pageSize?: number;
25
26
  }
26
- export type DeveloperControllerSearchDevelopers2OkResponse = ResponseWithPagination<unknown>;
27
+ export type DeveloperControllerSearchDevelopers2OkResponse = ResponseWithPagination<DeveloperListResponseDto>;
27
28
  export type DeveloperControllerSearchDevelopers2ErrorResponse = ErrorResponse;
28
29
  export interface DeveloperControllerSearchDevelopers2Props extends Omit<FetcherOptions<DeveloperControllerSearchDevelopers2QueryQueryParams, unknown>, 'url'> {
29
30
  queryParams: DeveloperControllerSearchDevelopers2QueryQueryParams;
@@ -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 = DeveloperIdentityUpsertFailureResponse | ErrorResponse;
10
+ export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = (DeveloperIdentityUpsertFailureResponse & ErrorResponse) | ErrorResponse;
11
11
  export interface DeveloperControllerUpsertDeveloperIdentitiesProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDeveloperIdentitiesRequestBody>, 'url'> {
12
12
  body: DeveloperControllerUpsertDeveloperIdentitiesRequestBody;
13
13
  }
@@ -1,5 +1,5 @@
1
1
  import { UseMutationOptions } from '@tanstack/react-query';
2
- import type { ListResponseDto } from '../schemas/ListResponseDto';
2
+ import type { ListResponseDtoEfficiencyProfileResponseDto } from '../schemas/ListResponseDtoEfficiencyProfileResponseDto';
3
3
  import type { ErrorResponse } from '../schemas/ErrorResponse';
4
4
  import type { ProfileSearchParams } from '../schemas/ProfileSearchParams';
5
5
  import type { ResponseWithPagination } from '../helpers';
@@ -18,7 +18,7 @@ export interface EfficiencyProfileControllerSearchProfilesMutationQueryParams {
18
18
  accountIdentifier: string;
19
19
  }
20
20
  export type EfficiencyProfileControllerSearchProfilesRequestBody = ProfileSearchParams;
21
- export type EfficiencyProfileControllerSearchProfilesOkResponse = ResponseWithPagination<ListResponseDto>;
21
+ export type EfficiencyProfileControllerSearchProfilesOkResponse = ResponseWithPagination<ListResponseDtoEfficiencyProfileResponseDto>;
22
22
  export type EfficiencyProfileControllerSearchProfilesErrorResponse = ErrorResponse;
23
23
  export interface EfficiencyProfileControllerSearchProfilesProps extends Omit<FetcherOptions<EfficiencyProfileControllerSearchProfilesMutationQueryParams, EfficiencyProfileControllerSearchProfilesRequestBody>, 'url'> {
24
24
  queryParams: EfficiencyProfileControllerSearchProfilesMutationQueryParams;
@@ -1,5 +1,6 @@
1
1
  import { UseQueryOptions } from '@tanstack/react-query';
2
2
  import type { TeamDevelopersDto } from '../schemas/TeamDevelopersDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
3
4
  import type { ResponseWithPagination } from '../helpers';
4
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
5
6
  export interface TeamsControllerGetTeamDevelopersQueryPathParams {
@@ -20,7 +21,7 @@ export interface TeamsControllerGetTeamDevelopersQueryQueryParams {
20
21
  size?: number;
21
22
  }
22
23
  export type TeamsControllerGetTeamDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
23
- export type TeamsControllerGetTeamDevelopersErrorResponse = TeamDevelopersDto;
24
+ export type TeamsControllerGetTeamDevelopersErrorResponse = TeamDevelopersDto | ErrorResponse;
24
25
  export interface TeamsControllerGetTeamDevelopersProps extends TeamsControllerGetTeamDevelopersQueryPathParams, Omit<FetcherOptions<TeamsControllerGetTeamDevelopersQueryQueryParams, unknown>, 'url'> {
25
26
  queryParams: TeamsControllerGetTeamDevelopersQueryQueryParams;
26
27
  }
@@ -28,4 +29,4 @@ export declare function teamsControllerGetTeamDevelopers(props: TeamsControllerG
28
29
  /**
29
30
  * Returns developers for the specified team with optional pagination support
30
31
  */
31
- export declare function useTeamsControllerGetTeamDevelopersQuery(props: TeamsControllerGetTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerGetTeamDevelopersOkResponse, TeamDevelopersDto>;
32
+ export declare function useTeamsControllerGetTeamDevelopersQuery(props: TeamsControllerGetTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>;
@@ -1,5 +1,6 @@
1
1
  import { UseQueryOptions } from '@tanstack/react-query';
2
2
  import type { TeamDevelopersDto } from '../schemas/TeamDevelopersDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
3
4
  import type { TeamDeveloperSearchParams } from '../schemas/TeamDeveloperSearchParams';
4
5
  import type { ResponseWithPagination } from '../helpers';
5
6
  import { FetcherOptions } from '../../../../fetcher/index.js';
@@ -21,7 +22,7 @@ export interface TeamsControllerSearchTeamDevelopersQueryQueryParams {
21
22
  }
22
23
  export type TeamsControllerSearchTeamDevelopersRequestBody = TeamDeveloperSearchParams;
23
24
  export type TeamsControllerSearchTeamDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
24
- export type TeamsControllerSearchTeamDevelopersErrorResponse = TeamDevelopersDto;
25
+ export type TeamsControllerSearchTeamDevelopersErrorResponse = TeamDevelopersDto | ErrorResponse;
25
26
  export interface TeamsControllerSearchTeamDevelopersProps extends TeamsControllerSearchTeamDevelopersQueryPathParams, Omit<FetcherOptions<TeamsControllerSearchTeamDevelopersQueryQueryParams, TeamsControllerSearchTeamDevelopersRequestBody>, 'url'> {
26
27
  queryParams: TeamsControllerSearchTeamDevelopersQueryQueryParams;
27
28
  body: TeamsControllerSearchTeamDevelopersRequestBody;
@@ -30,4 +31,4 @@ export declare function teamsControllerSearchTeamDevelopers(props: TeamsControll
30
31
  /**
31
32
  * Search developers for the specified team with filtering and sorting options
32
33
  */
33
- export declare function useTeamsControllerSearchTeamDevelopersQuery(props: TeamsControllerSearchTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerSearchTeamDevelopersOkResponse, TeamDevelopersDto>;
34
+ export declare function useTeamsControllerSearchTeamDevelopersQuery(props: TeamsControllerSearchTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersErrorResponse>;
@@ -441,6 +441,7 @@ export type { IssuesPrResponseWrapper } from './schemas/IssuesPrResponseWrapper'
441
441
  export type { JsonNode } from './schemas/JsonNode';
442
442
  export type { LicenseSearchParams } from './schemas/LicenseSearchParams';
443
443
  export type { ListResponseDto } from './schemas/ListResponseDto';
444
+ export type { ListResponseDtoDeveloperIdentity } from './schemas/ListResponseDtoDeveloperIdentity';
444
445
  export type { ListResponseDtoDeveloperLicenseDto } from './schemas/ListResponseDtoDeveloperLicenseDto';
445
446
  export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
446
447
  export type { ListResponseDtoIntegrationConfigResponseDto } from './schemas/ListResponseDtoIntegrationConfigResponseDto';
@@ -1,8 +1,21 @@
1
+ /**
2
+ * Developer identity mapping containing email, integration ID, and cloud identity
3
+ */
1
4
  export interface DeveloperIdentity {
2
- email?: string;
3
- identity?: string;
4
5
  /**
6
+ * Developer's email address
7
+ * @example "john.doe@example.com"
8
+ */
9
+ email: string;
10
+ /**
11
+ * Cloud ID/identity for the developer on this integration
12
+ * @example "github_username_123"
13
+ */
14
+ identity: string;
15
+ /**
16
+ * Integration ID for the cloud provider
5
17
  * @format int32
18
+ * @example 123
6
19
  */
7
- integrationId?: number;
20
+ integrationId: number;
8
21
  }
@@ -10,7 +10,7 @@ export interface DeveloperValidationErrorDto {
10
10
  /**
11
11
  * Type of validation error
12
12
  */
13
- errorType?: 'BLANK_CSV_COLUMN_NAME' | 'CIRCULAR_REFERENCE' | 'DUPLICATE_EMAIL' | 'EMPTY_CSV' | 'INVALID_CSV' | 'MANAGER_EMAIL_MISSING_IN_DEVELOPER_EMAILS' | 'MISSING_NAME_OR_EMAIL_OR_MANAGER_EMAIL_FIELD_MAPPING' | 'REQUIRED_FIELD_MISSING' | 'REQUIRED_VALUE_MISSING';
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' | 'REQUIRED_FIELD_MISSING' | 'REQUIRED_VALUE_MISSING';
14
14
  fieldName?: string;
15
15
  /**
16
16
  * Sample records with this error
@@ -6,7 +6,7 @@ export interface FilterValuesRequestDto {
6
6
  /**
7
7
  * Filter key to get values for (used when isCustom = false)
8
8
  */
9
- filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORG' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
9
+ filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORGANIZATION' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
10
10
  /**
11
11
  * Integration ID
12
12
  */
@@ -1,17 +1,29 @@
1
+ /**
2
+ * Paginated list response containing records and pagination metadata
3
+ */
1
4
  export interface ListResponseDto {
2
5
  /**
6
+ * Current page index (0-based)
3
7
  * @format int32
8
+ * @example 0
4
9
  */
5
10
  pageIndex?: number;
6
11
  /**
12
+ * Number of records per page
7
13
  * @format int32
14
+ * @example 50
8
15
  */
9
16
  pageSize?: number;
17
+ /**
18
+ * List of records for the current page
19
+ */
10
20
  records?: Array<{
11
21
  [key: string]: any;
12
22
  }>;
13
23
  /**
24
+ * Total number of records available across all pages
14
25
  * @format int32
26
+ * @example 100
15
27
  */
16
28
  totalCount?: number;
17
29
  }
@@ -0,0 +1,25 @@
1
+ import type { DeveloperIdentity } from '../schemas/DeveloperIdentity';
2
+ export interface ListResponseDtoDeveloperIdentity {
3
+ /**
4
+ * Current page index (0-based)
5
+ * @format int32
6
+ * @example 0
7
+ */
8
+ pageIndex?: number;
9
+ /**
10
+ * Number of records per page
11
+ * @format int32
12
+ * @example 50
13
+ */
14
+ pageSize?: number;
15
+ /**
16
+ * List of records for the current page
17
+ */
18
+ records?: DeveloperIdentity[];
19
+ /**
20
+ * Total number of records available across all pages
21
+ * @format int32
22
+ * @example 100
23
+ */
24
+ totalCount?: number;
25
+ }
@@ -1,16 +1,28 @@
1
1
  import type { DeveloperLicenseDto } from '../schemas/DeveloperLicenseDto';
2
+ /**
3
+ * Paginated list response containing records and pagination metadata
4
+ */
2
5
  export interface ListResponseDtoDeveloperLicenseDto {
3
6
  /**
7
+ * Current page index (0-based)
4
8
  * @format int32
9
+ * @example 0
5
10
  */
6
11
  pageIndex?: number;
7
12
  /**
13
+ * Number of records per page
8
14
  * @format int32
15
+ * @example 50
9
16
  */
10
17
  pageSize?: number;
18
+ /**
19
+ * List of records for the current page
20
+ */
11
21
  records?: DeveloperLicenseDto[];
12
22
  /**
23
+ * Total number of records available across all pages
13
24
  * @format int32
25
+ * @example 100
14
26
  */
15
27
  totalCount?: number;
16
28
  }
@@ -1,16 +1,25 @@
1
1
  import type { EfficiencyProfileResponseDto } from '../schemas/EfficiencyProfileResponseDto';
2
2
  export interface ListResponseDtoEfficiencyProfileResponseDto {
3
3
  /**
4
+ * Current page index (0-based)
4
5
  * @format int32
6
+ * @example 0
5
7
  */
6
8
  pageIndex?: number;
7
9
  /**
10
+ * Number of records per page
8
11
  * @format int32
12
+ * @example 50
9
13
  */
10
14
  pageSize?: number;
15
+ /**
16
+ * List of records for the current page
17
+ */
11
18
  records?: EfficiencyProfileResponseDto[];
12
19
  /**
20
+ * Total number of records available across all pages
13
21
  * @format int32
22
+ * @example 100
14
23
  */
15
24
  totalCount?: number;
16
25
  }
@@ -1,16 +1,28 @@
1
1
  import type { IntegrationConfigResponseDto } from '../schemas/IntegrationConfigResponseDto';
2
+ /**
3
+ * Paginated list response containing records and pagination metadata
4
+ */
2
5
  export interface ListResponseDtoIntegrationConfigResponseDto {
3
6
  /**
7
+ * Current page index (0-based)
4
8
  * @format int32
9
+ * @example 0
5
10
  */
6
11
  pageIndex?: number;
7
12
  /**
13
+ * Number of records per page
8
14
  * @format int32
15
+ * @example 50
9
16
  */
10
17
  pageSize?: number;
18
+ /**
19
+ * List of records for the current page
20
+ */
11
21
  records?: IntegrationConfigResponseDto[];
12
22
  /**
23
+ * Total number of records available across all pages
13
24
  * @format int32
25
+ * @example 100
14
26
  */
15
27
  totalCount?: number;
16
28
  }
@@ -1,16 +1,28 @@
1
1
  import type { IntegrationResponseDto } from '../schemas/IntegrationResponseDto';
2
+ /**
3
+ * Paginated list response containing records and pagination metadata
4
+ */
2
5
  export interface ListResponseDtoIntegrationResponseDto {
3
6
  /**
7
+ * Current page index (0-based)
4
8
  * @format int32
9
+ * @example 0
5
10
  */
6
11
  pageIndex?: number;
7
12
  /**
13
+ * Number of records per page
8
14
  * @format int32
15
+ * @example 50
9
16
  */
10
17
  pageSize?: number;
18
+ /**
19
+ * List of records for the current page
20
+ */
11
21
  records?: IntegrationResponseDto[];
12
22
  /**
23
+ * Total number of records available across all pages
13
24
  * @format int32
25
+ * @example 100
14
26
  */
15
27
  totalCount?: number;
16
28
  }
@@ -1,16 +1,28 @@
1
1
  import type { OrgTreeResponseDto } from '../schemas/OrgTreeResponseDto';
2
+ /**
3
+ * Paginated list response containing records and pagination metadata
4
+ */
2
5
  export interface ListResponseDtoOrgTreeResponseDto {
3
6
  /**
7
+ * Current page index (0-based)
4
8
  * @format int32
9
+ * @example 0
5
10
  */
6
11
  pageIndex?: number;
7
12
  /**
13
+ * Number of records per page
8
14
  * @format int32
15
+ * @example 50
9
16
  */
10
17
  pageSize?: number;
18
+ /**
19
+ * List of records for the current page
20
+ */
11
21
  records?: OrgTreeResponseDto[];
12
22
  /**
23
+ * Total number of records available across all pages
13
24
  * @format int32
25
+ * @example 100
14
26
  */
15
27
  totalCount?: number;
16
28
  }
@@ -1,16 +1,28 @@
1
1
  import type { ProductivityProfileResponseDto } from '../schemas/ProductivityProfileResponseDto';
2
+ /**
3
+ * Paginated list response containing records and pagination metadata
4
+ */
2
5
  export interface ListResponseDtoProductivityProfileResponseDto {
3
6
  /**
7
+ * Current page index (0-based)
4
8
  * @format int32
9
+ * @example 0
5
10
  */
6
11
  pageIndex?: number;
7
12
  /**
13
+ * Number of records per page
8
14
  * @format int32
15
+ * @example 50
9
16
  */
10
17
  pageSize?: number;
18
+ /**
19
+ * List of records for the current page
20
+ */
11
21
  records?: ProductivityProfileResponseDto[];
12
22
  /**
23
+ * Total number of records available across all pages
13
24
  * @format int32
25
+ * @example 100
14
26
  */
15
27
  totalCount?: number;
16
28
  }
@@ -1,16 +1,28 @@
1
1
  import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
2
+ /**
3
+ * Paginated list response containing records and pagination metadata
4
+ */
2
5
  export interface ListResponseDtobaProfileResponseDto {
3
6
  /**
7
+ * Current page index (0-based)
4
8
  * @format int32
9
+ * @example 0
5
10
  */
6
11
  pageIndex?: number;
7
12
  /**
13
+ * Number of records per page
8
14
  * @format int32
15
+ * @example 50
9
16
  */
10
17
  pageSize?: number;
18
+ /**
19
+ * List of records for the current page
20
+ */
11
21
  records?: BaProfileResponseDto[];
12
22
  /**
23
+ * Total number of records available across all pages
13
24
  * @format int32
25
+ * @example 100
14
26
  */
15
27
  totalCount?: number;
16
28
  }
@@ -1,6 +1,9 @@
1
1
  import type { MinimalOrgTree } from '../schemas/MinimalOrgTree';
2
2
  import type { SectionDto } from '../schemas/SectionDto';
3
3
  export interface ProductivityProfileResponseDto {
4
+ /**
5
+ * @deprecated
6
+ */
4
7
  active?: boolean;
5
8
  /**
6
9
  * @format int64
@@ -6,7 +6,7 @@ export interface TeamFilter {
6
6
  };
7
7
  applicableMetrics?: Array<'AVG_TIME_TO_FIRST_COMMENT' | 'BA' | 'CFR' | 'CODING_DAYS' | 'DF' | 'LINES_OF_CODE' | 'LTTC' | 'MTTR' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED'>;
8
8
  customFilterKey?: string;
9
- filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORG' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
9
+ filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORGANIZATION' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
10
10
  /**
11
11
  * @format int32
12
12
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.22.11",
3
+ "version": "0.22.13",
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",