@harnessio/react-sei-panorama-service-client 0.22.14 → 0.23.0

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.
@@ -0,0 +1,35 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ListResponseDtoMinimalDeveloperDto } from '../schemas/ListResponseDtoMinimalDeveloperDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryPathParams {
7
+ /**
8
+ * @format int32
9
+ */
10
+ orgTreeId: number;
11
+ }
12
+ export interface OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryQueryParams {
13
+ accountIdentifier: string;
14
+ search_value?: string;
15
+ /**
16
+ * @format int32
17
+ * @default 0
18
+ */
19
+ pageIndex?: number;
20
+ /**
21
+ * @format int32
22
+ * @default 50
23
+ */
24
+ pageSize?: number;
25
+ }
26
+ export type OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse = ResponseWithPagination<ListResponseDtoMinimalDeveloperDto>;
27
+ export type OrgTreeControllerGetDevelopersByOrgTreeFiltersErrorResponse = ErrorResponse;
28
+ export interface OrgTreeControllerGetDevelopersByOrgTreeFiltersProps extends OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryPathParams, Omit<FetcherOptions<OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryQueryParams, unknown>, 'url'> {
29
+ queryParams: OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryQueryParams;
30
+ }
31
+ export declare function orgTreeControllerGetDevelopersByOrgTreeFilters(props: OrgTreeControllerGetDevelopersByOrgTreeFiltersProps): Promise<OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse>;
32
+ /**
33
+ * Returns developers whose attributes match the org tree's filter criteria, with optional search filtering on name and email, ordered alphabetically by name
34
+ */
35
+ export declare function useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery(props: OrgTreeControllerGetDevelopersByOrgTreeFiltersProps, options?: Omit<UseQueryOptions<OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse, OrgTreeControllerGetDevelopersByOrgTreeFiltersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse, ErrorResponse>;
@@ -0,0 +1,14 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ import { useQuery } from '@tanstack/react-query';
5
+ import { fetcher } from '../../../../fetcher/index.js';
6
+ export function orgTreeControllerGetDevelopersByOrgTreeFilters(props) {
7
+ return fetcher(Object.assign({ url: `/v2/org-trees/${props.orgTreeId}/developers`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Returns developers whose attributes match the org tree's filter criteria, with optional search filtering on name and email, ordered alphabetically by name
11
+ */
12
+ export function useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery(props, options) {
13
+ return useQuery(['OrgTreeControllerGetDevelopersByOrgTreeFilters', props.orgTreeId, props.queryParams], ({ signal }) => orgTreeControllerGetDevelopersByOrgTreeFilters(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,22 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
3
+ import type { AssociateDevelopersRequestDto } from '../schemas/AssociateDevelopersRequestDto';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface TeamsControllerAssociateDevelopersToTeamMutationPathParams {
7
+ /**
8
+ * @format int32
9
+ */
10
+ teamRefId: number;
11
+ }
12
+ export type TeamsControllerAssociateDevelopersToTeamRequestBody = AssociateDevelopersRequestDto;
13
+ export type TeamsControllerAssociateDevelopersToTeamOkResponse = ResponseWithPagination<unknown>;
14
+ export type TeamsControllerAssociateDevelopersToTeamErrorResponse = unknown | ErrorResponse;
15
+ export interface TeamsControllerAssociateDevelopersToTeamProps extends TeamsControllerAssociateDevelopersToTeamMutationPathParams, Omit<FetcherOptions<unknown, TeamsControllerAssociateDevelopersToTeamRequestBody>, 'url'> {
16
+ body: TeamsControllerAssociateDevelopersToTeamRequestBody;
17
+ }
18
+ export declare function teamsControllerAssociateDevelopersToTeam(props: TeamsControllerAssociateDevelopersToTeamProps): Promise<TeamsControllerAssociateDevelopersToTeamOkResponse>;
19
+ /**
20
+ * Manually associate developers to the specified team by their reference IDs
21
+ */
22
+ export declare function useTeamsControllerAssociateDevelopersToTeamMutation(options?: Omit<UseMutationOptions<TeamsControllerAssociateDevelopersToTeamOkResponse, TeamsControllerAssociateDevelopersToTeamErrorResponse, TeamsControllerAssociateDevelopersToTeamProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<TeamsControllerAssociateDevelopersToTeamOkResponse, unknown, TeamsControllerAssociateDevelopersToTeamProps, unknown>;
@@ -0,0 +1,14 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ import { useMutation } from '@tanstack/react-query';
5
+ import { fetcher } from '../../../../fetcher/index.js';
6
+ export function teamsControllerAssociateDevelopersToTeam(props) {
7
+ return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'PATCH' }, props));
8
+ }
9
+ /**
10
+ * Manually associate developers to the specified team by their reference IDs
11
+ */
12
+ export function useTeamsControllerAssociateDevelopersToTeamMutation(options) {
13
+ return useMutation((mutateProps) => teamsControllerAssociateDevelopersToTeam(mutateProps), options);
14
+ }
@@ -0,0 +1,19 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface TeamsControllerDisassociateDevelopersFromTeamMutationPathParams {
6
+ /**
7
+ * @format int32
8
+ */
9
+ teamRefId: number;
10
+ }
11
+ export type TeamsControllerDisassociateDevelopersFromTeamOkResponse = ResponseWithPagination<unknown>;
12
+ export type TeamsControllerDisassociateDevelopersFromTeamErrorResponse = unknown | ErrorResponse;
13
+ export interface TeamsControllerDisassociateDevelopersFromTeamProps extends TeamsControllerDisassociateDevelopersFromTeamMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
14
+ }
15
+ export declare function teamsControllerDisassociateDevelopersFromTeam(props: TeamsControllerDisassociateDevelopersFromTeamProps): Promise<TeamsControllerDisassociateDevelopersFromTeamOkResponse>;
16
+ /**
17
+ * Remove manual association of developers from the specified team by their reference IDs
18
+ */
19
+ export declare function useTeamsControllerDisassociateDevelopersFromTeamMutation(options?: Omit<UseMutationOptions<TeamsControllerDisassociateDevelopersFromTeamOkResponse, TeamsControllerDisassociateDevelopersFromTeamErrorResponse, TeamsControllerDisassociateDevelopersFromTeamProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<TeamsControllerDisassociateDevelopersFromTeamOkResponse, unknown, TeamsControllerDisassociateDevelopersFromTeamProps, unknown>;
@@ -0,0 +1,14 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ import { useMutation } from '@tanstack/react-query';
5
+ import { fetcher } from '../../../../fetcher/index.js';
6
+ export function teamsControllerDisassociateDevelopersFromTeam(props) {
7
+ return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'DELETE' }, props));
8
+ }
9
+ /**
10
+ * Remove manual association of developers from the specified team by their reference IDs
11
+ */
12
+ export function useTeamsControllerDisassociateDevelopersFromTeamMutation(options) {
13
+ return useMutation((mutateProps) => teamsControllerDisassociateDevelopersFromTeam(mutateProps), options);
14
+ }
@@ -10,15 +10,19 @@ export interface TeamsControllerGetTeamDevelopersQueryPathParams {
10
10
  teamRefId: number;
11
11
  }
12
12
  export interface TeamsControllerGetTeamDevelopersQueryQueryParams {
13
- account: string;
13
+ search_key?: 'email' | 'name';
14
+ search_value?: string;
15
+ sort_key?: 'email' | 'name';
16
+ sort_order?: 'asc' | 'desc';
17
+ type?: 'all' | 'primary' | 'shared';
14
18
  /**
15
19
  * @format int32
16
20
  */
17
- page?: number;
21
+ pageIndex?: number;
18
22
  /**
19
23
  * @format int32
20
24
  */
21
- size?: number;
25
+ pageSize?: number;
22
26
  }
23
27
  export type TeamsControllerGetTeamDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
24
28
  export type TeamsControllerGetTeamDevelopersErrorResponse = TeamDevelopersDto | ErrorResponse;
@@ -27,6 +31,6 @@ export interface TeamsControllerGetTeamDevelopersProps extends TeamsControllerGe
27
31
  }
28
32
  export declare function teamsControllerGetTeamDevelopers(props: TeamsControllerGetTeamDevelopersProps): Promise<TeamsControllerGetTeamDevelopersOkResponse>;
29
33
  /**
30
- * Returns developers for the specified team with optional pagination support
34
+ * Returns developers for the specified team with optional filtering, sorting, and pagination support. Each developer includes 'isManual' flag indicating manual association and 'isShared' flag for shared developers.
31
35
  */
32
36
  export declare function useTeamsControllerGetTeamDevelopersQuery(props: TeamsControllerGetTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>;
@@ -7,7 +7,7 @@ export function teamsControllerGetTeamDevelopers(props) {
7
7
  return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'GET' }, props));
8
8
  }
9
9
  /**
10
- * Returns developers for the specified team with optional pagination support
10
+ * Returns developers for the specified team with optional filtering, sorting, and pagination support. Each developer includes 'isManual' flag indicating manual association and 'isShared' flag for shared developers.
11
11
  */
12
12
  export function useTeamsControllerGetTeamDevelopersQuery(props, options) {
13
13
  return useQuery(['TeamsControllerGetTeamDevelopers', props.teamRefId, props.queryParams], ({ signal }) => teamsControllerGetTeamDevelopers(Object.assign(Object.assign({}, props), { signal })), options);
@@ -223,6 +223,8 @@ export type { OrgTreeControllerDeleteOrgTreeErrorResponse, OrgTreeControllerDele
223
223
  export { orgTreeControllerDeleteOrgTree, useOrgTreeControllerDeleteOrgTreeMutation, } from './hooks/useOrgTreeControllerDeleteOrgTreeMutation';
224
224
  export type { OrgTreeControllerGetBusinessAlignmentProfileRefIdErrorResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdOkResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdProps, OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryPathParams, OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
225
225
  export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
226
+ export type { OrgTreeControllerGetDevelopersByOrgTreeFiltersErrorResponse, OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse, OrgTreeControllerGetDevelopersByOrgTreeFiltersProps, OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryPathParams, OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryQueryParams, } from './hooks/useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery';
227
+ export { orgTreeControllerGetDevelopersByOrgTreeFilters, useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery, } from './hooks/useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery';
226
228
  export type { OrgTreeControllerGetEfficiencyProfileRefIdErrorResponse, OrgTreeControllerGetEfficiencyProfileRefIdOkResponse, OrgTreeControllerGetEfficiencyProfileRefIdProps, OrgTreeControllerGetEfficiencyProfileRefIdQueryPathParams, OrgTreeControllerGetEfficiencyProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
227
229
  export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
228
230
  export type { OrgTreeControllerGetOrgTreeIntegrationsErrorResponse, OrgTreeControllerGetOrgTreeIntegrationsOkResponse, OrgTreeControllerGetOrgTreeIntegrationsProps, OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
@@ -285,6 +287,10 @@ export type { ScmGaControllerGetBuildInfoFromPrErrorResponse, ScmGaControllerGet
285
287
  export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
286
288
  export type { ScmGaControllerGetDeployInfoFromPrErrorResponse, ScmGaControllerGetDeployInfoFromPrOkResponse, ScmGaControllerGetDeployInfoFromPrProps, ScmGaControllerGetDeployInfoFromPrQueryQueryParams, ScmGaControllerGetDeployInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
287
289
  export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
290
+ export type { TeamsControllerAssociateDevelopersToTeamErrorResponse, TeamsControllerAssociateDevelopersToTeamMutationPathParams, TeamsControllerAssociateDevelopersToTeamOkResponse, TeamsControllerAssociateDevelopersToTeamProps, TeamsControllerAssociateDevelopersToTeamRequestBody, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
291
+ export { teamsControllerAssociateDevelopersToTeam, useTeamsControllerAssociateDevelopersToTeamMutation, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
292
+ export type { TeamsControllerDisassociateDevelopersFromTeamErrorResponse, TeamsControllerDisassociateDevelopersFromTeamMutationPathParams, TeamsControllerDisassociateDevelopersFromTeamOkResponse, TeamsControllerDisassociateDevelopersFromTeamProps, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
293
+ export { teamsControllerDisassociateDevelopersFromTeam, useTeamsControllerDisassociateDevelopersFromTeamMutation, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
288
294
  export type { TeamsControllerGetTeamDevelopersErrorResponse, TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersProps, TeamsControllerGetTeamDevelopersQueryPathParams, TeamsControllerGetTeamDevelopersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
289
295
  export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
290
296
  export type { TeamsControllerGetTeamIntegrationFiltersErrorResponse, TeamsControllerGetTeamIntegrationFiltersOkResponse, TeamsControllerGetTeamIntegrationFiltersProps, TeamsControllerGetTeamIntegrationFiltersQueryPathParams, TeamsControllerGetTeamIntegrationFiltersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
@@ -307,6 +313,7 @@ export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamM
307
313
  export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
308
314
  export type { AccessResponseDto } from './schemas/AccessResponseDto';
309
315
  export type { ActivityDataDto } from './schemas/ActivityDataDto';
316
+ export type { AssociateDevelopersRequestDto } from './schemas/AssociateDevelopersRequestDto';
310
317
  export type { BaBreakdownDto } from './schemas/BaBreakdownDto';
311
318
  export type { BaCategoryDto } from './schemas/BaCategoryDto';
312
319
  export type { BaCategoryMetric } from './schemas/BaCategoryMetric';
@@ -446,6 +453,7 @@ export type { ListResponseDtoDeveloperLicenseDto } from './schemas/ListResponseD
446
453
  export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
447
454
  export type { ListResponseDtoIntegrationConfigResponseDto } from './schemas/ListResponseDtoIntegrationConfigResponseDto';
448
455
  export type { ListResponseDtoIntegrationResponseDto } from './schemas/ListResponseDtoIntegrationResponseDto';
456
+ export type { ListResponseDtoMinimalDeveloperDto } from './schemas/ListResponseDtoMinimalDeveloperDto';
449
457
  export type { ListResponseDtoOrgTreeResponseDto } from './schemas/ListResponseDtoOrgTreeResponseDto';
450
458
  export type { ListResponseDtoProductivityProfileResponseDto } from './schemas/ListResponseDtoProductivityProfileResponseDto';
451
459
  export type { ListResponseDtobaProfileResponseDto } from './schemas/ListResponseDtobaProfileResponseDto';
@@ -110,6 +110,7 @@ export { migrationControllerProcessHistoricalDataForMigration, useMigrationContr
110
110
  export { orgTreeControllerCreateOrgTree, useOrgTreeControllerCreateOrgTreeMutation, } from './hooks/useOrgTreeControllerCreateOrgTreeMutation';
111
111
  export { orgTreeControllerDeleteOrgTree, useOrgTreeControllerDeleteOrgTreeMutation, } from './hooks/useOrgTreeControllerDeleteOrgTreeMutation';
112
112
  export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
113
+ export { orgTreeControllerGetDevelopersByOrgTreeFilters, useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery, } from './hooks/useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery';
113
114
  export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
114
115
  export { orgTreeControllerGetOrgTreeIntegrations, useOrgTreeControllerGetOrgTreeIntegrationsQuery, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
115
116
  export { orgTreeControllerGetOrgTree, useOrgTreeControllerGetOrgTreeQuery, } from './hooks/useOrgTreeControllerGetOrgTreeQuery';
@@ -141,6 +142,8 @@ export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerG
141
142
  export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
142
143
  export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
143
144
  export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
145
+ export { teamsControllerAssociateDevelopersToTeam, useTeamsControllerAssociateDevelopersToTeamMutation, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
146
+ export { teamsControllerDisassociateDevelopersFromTeam, useTeamsControllerDisassociateDevelopersFromTeamMutation, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
144
147
  export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
145
148
  export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamIntegrationFiltersQuery, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
146
149
  export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Request to associate developers to a team
3
+ */
4
+ export interface AssociateDevelopersRequestDto {
5
+ /**
6
+ * List of developer reference IDs to associate with the team
7
+ * @example [1001,1002,1003]
8
+ */
9
+ developerRefIds: number[];
10
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,28 @@
1
+ import type { MinimalDeveloperDto } from '../schemas/MinimalDeveloperDto';
2
+ /**
3
+ * Paginated list response containing records and pagination metadata
4
+ */
5
+ export interface ListResponseDtoMinimalDeveloperDto {
6
+ /**
7
+ * Current page index (0-based)
8
+ * @format int32
9
+ * @example 0
10
+ */
11
+ pageIndex?: number;
12
+ /**
13
+ * Number of records per page
14
+ * @format int32
15
+ * @example 50
16
+ */
17
+ pageSize?: number;
18
+ /**
19
+ * List of records for the current page
20
+ */
21
+ records?: MinimalDeveloperDto[];
22
+ /**
23
+ * Total number of records available across all pages
24
+ * @format int32
25
+ * @example 100
26
+ */
27
+ totalCount?: number;
28
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.22.14",
3
+ "version": "0.23.0",
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",