@harnessio/react-sei-panorama-service-client 0.23.4 → 0.24.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.
Files changed (43) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery.d.ts +18 -0
  2. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery.js +14 -0
  3. package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerSearchSprintListQuery.d.ts +17 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerSearchSprintListQuery.js +14 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerSearchSprintTicketsQuery.js +1 -1
  6. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerListTeamsByAccessQuery.d.ts +25 -0
  7. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerListTeamsByAccessQuery.js +14 -0
  8. package/dist/sei-panorama-service/src/services/index.d.ts +11 -10
  9. package/dist/sei-panorama-service/src/services/index.js +3 -4
  10. package/dist/sei-panorama-service/src/services/schemas/ActivityDataDto.d.ts +0 -8
  11. package/dist/sei-panorama-service/src/services/schemas/DeveloperInfo.d.ts +17 -0
  12. package/dist/sei-panorama-service/src/services/schemas/IntegrationUserInfo.d.ts +7 -0
  13. package/dist/sei-panorama-service/src/services/schemas/ProductivityDataPoint.d.ts +1 -1
  14. package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureBreakdownResponseDataPoint.d.ts +1 -1
  15. package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureRequestDto.d.ts +2 -2
  16. package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureResponseDto.d.ts +2 -2
  17. package/dist/sei-panorama-service/src/services/schemas/ProductivityV3FeatureBreakdownResponseDataPoint.d.ts +1 -1
  18. package/dist/sei-panorama-service/src/services/schemas/ProductivityV3FeatureRequestDto.d.ts +2 -2
  19. package/dist/sei-panorama-service/src/services/schemas/SprintDrilldownRequestDto.d.ts +1 -1
  20. package/dist/sei-panorama-service/src/services/schemas/SprintInfoDto.d.ts +0 -5
  21. package/dist/sei-panorama-service/src/services/schemas/SprintTicketsMetadataDto.d.ts +5 -0
  22. package/dist/sei-panorama-service/src/services/schemas/SprintTicketsMetadataDto.js +1 -0
  23. package/dist/sei-panorama-service/src/services/schemas/SprintTicketsResponseDto.d.ts +2 -0
  24. package/dist/sei-panorama-service/src/services/schemas/SprintWorkBreakdownDto.d.ts +4 -0
  25. package/dist/sei-panorama-service/src/services/schemas/TeamAccessDto.d.ts +28 -0
  26. package/dist/sei-panorama-service/src/services/schemas/TeamAccessDto.js +4 -0
  27. package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperSearchParams.d.ts +1 -9
  28. package/dist/sei-panorama-service/src/services/schemas/TeamDevelopersDto.d.ts +2 -10
  29. package/dist/sei-panorama-service/src/services/schemas/TeamsByAccessResponseDto.d.ts +16 -0
  30. package/dist/sei-panorama-service/src/services/schemas/TeamsByAccessResponseDto.js +1 -0
  31. package/package.json +1 -1
  32. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery.d.ts +0 -18
  33. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery.js +0 -14
  34. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation.d.ts +0 -20
  35. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation.js +0 -14
  36. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation.d.ts +0 -20
  37. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation.js +0 -14
  38. package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerGetSprintListQuery.d.ts +0 -17
  39. package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerGetSprintListQuery.js +0 -14
  40. package/dist/sei-panorama-service/src/services/schemas/CloudIdentity.d.ts +0 -13
  41. package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperDto.d.ts +0 -44
  42. /package/dist/sei-panorama-service/src/services/schemas/{TeamDeveloperDto.js → DeveloperInfo.js} +0 -0
  43. /package/dist/sei-panorama-service/src/services/schemas/{CloudIdentity.js → IntegrationUserInfo.js} +0 -0
@@ -0,0 +1,18 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { IntegrationStatsDto } from '../schemas/IntegrationStatsDto';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams {
6
+ integration_ids: string;
7
+ account: string;
8
+ }
9
+ export type IntegrationStatsControllerGetCicdPipelinesCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
10
+ export type IntegrationStatsControllerGetCicdPipelinesCountErrorResponse = IntegrationStatsDto[];
11
+ export interface IntegrationStatsControllerGetCicdPipelinesCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams, unknown>, 'url'> {
12
+ queryParams: IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams;
13
+ }
14
+ export declare function integrationStatsControllerGetCicdPipelinesCount(props: IntegrationStatsControllerGetCicdPipelinesCountProps): Promise<IntegrationStatsControllerGetCicdPipelinesCountOkResponse>;
15
+ /**
16
+ * Get CICD job runs counts
17
+ */
18
+ export declare function useIntegrationStatsControllerGetCicdPipelinesCountQuery(props: IntegrationStatsControllerGetCicdPipelinesCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetCicdPipelinesCountOkResponse, IntegrationStatsControllerGetCicdPipelinesCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetCicdPipelinesCountOkResponse, IntegrationStatsControllerGetCicdPipelinesCountErrorResponse>;
@@ -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 integrationStatsControllerGetCicdPipelinesCount(props) {
7
+ return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/job_runs`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Get CICD job runs counts
11
+ */
12
+ export function useIntegrationStatsControllerGetCicdPipelinesCountQuery(props, options) {
13
+ return useQuery(['IntegrationStatsControllerGetCicdPipelinesCount', props.queryParams], ({ signal }) => integrationStatsControllerGetCicdPipelinesCount(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,17 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { SprintListResponseDto } from '../schemas/SprintListResponseDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
4
+ import type { SprintListRequestDto } from '../schemas/SprintListRequestDto';
5
+ import type { ResponseWithPagination } from '../helpers';
6
+ import { FetcherOptions } from '../../../../fetcher/index.js';
7
+ export type SprintInsightsControllerSearchSprintListRequestBody = SprintListRequestDto;
8
+ export type SprintInsightsControllerSearchSprintListOkResponse = ResponseWithPagination<SprintListResponseDto>;
9
+ export type SprintInsightsControllerSearchSprintListErrorResponse = ErrorResponse;
10
+ export interface SprintInsightsControllerSearchSprintListProps extends Omit<FetcherOptions<unknown, SprintInsightsControllerSearchSprintListRequestBody>, 'url'> {
11
+ body: SprintInsightsControllerSearchSprintListRequestBody;
12
+ }
13
+ export declare function sprintInsightsControllerSearchSprintList(props: SprintInsightsControllerSearchSprintListProps): Promise<SprintInsightsControllerSearchSprintListOkResponse>;
14
+ /**
15
+ * Search completed sprints for dropdown with filters
16
+ */
17
+ export declare function useSprintInsightsControllerSearchSprintListQuery(props: SprintInsightsControllerSearchSprintListProps, options?: Omit<UseQueryOptions<SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerSearchSprintListOkResponse, 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 sprintInsightsControllerSearchSprintList(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/sprints/list/search`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Search completed sprints for dropdown with filters
11
+ */
12
+ export function useSprintInsightsControllerSearchSprintListQuery(props, options) {
13
+ return useQuery(['SprintInsightsControllerSearchSprintList', props.body], ({ signal }) => sprintInsightsControllerSearchSprintList(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -4,7 +4,7 @@
4
4
  import { useQuery } from '@tanstack/react-query';
5
5
  import { fetcher } from '../../../../fetcher/index.js';
6
6
  export function sprintInsightsControllerSearchSprintTickets(props) {
7
- return fetcher(Object.assign({ url: `/v2/insights/sprints/tickets`, method: 'POST' }, props));
7
+ return fetcher(Object.assign({ url: `/v2/insights/sprints/tickets/search`, method: 'POST' }, props));
8
8
  }
9
9
  /**
10
10
  * Search all tickets for a specific sprint with filters
@@ -0,0 +1,25 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { TeamsByAccessResponseDto } from '../schemas/TeamsByAccessResponseDto';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface TeamsControllerListTeamsByAccessQueryQueryParams {
6
+ account: string;
7
+ /**
8
+ * @default ""
9
+ */
10
+ orgIdentifier?: string;
11
+ /**
12
+ * @default ""
13
+ */
14
+ projectIdentifier?: string;
15
+ }
16
+ export type TeamsControllerListTeamsByAccessOkResponse = ResponseWithPagination<TeamsByAccessResponseDto>;
17
+ export type TeamsControllerListTeamsByAccessErrorResponse = unknown;
18
+ export interface TeamsControllerListTeamsByAccessProps extends Omit<FetcherOptions<TeamsControllerListTeamsByAccessQueryQueryParams, unknown>, 'url'> {
19
+ queryParams: TeamsControllerListTeamsByAccessQueryQueryParams;
20
+ }
21
+ export declare function teamsControllerListTeamsByAccess(props: TeamsControllerListTeamsByAccessProps): Promise<TeamsControllerListTeamsByAccessOkResponse>;
22
+ /**
23
+ * Returns all teams (leaf and parent) grouped by access permissions - editableTeams (edit=true) and viewableTeams (view=true). Teams can appear in both lists if they have both permissions.
24
+ */
25
+ export declare function useTeamsControllerListTeamsByAccessQuery(props: TeamsControllerListTeamsByAccessProps, options?: Omit<UseQueryOptions<TeamsControllerListTeamsByAccessOkResponse, TeamsControllerListTeamsByAccessErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerListTeamsByAccessOkResponse, 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 { useQuery } from '@tanstack/react-query';
5
+ import { fetcher } from '../../../../fetcher/index.js';
6
+ export function teamsControllerListTeamsByAccess(props) {
7
+ return fetcher(Object.assign({ url: `/v2/teams/list-by-access`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Returns all teams (leaf and parent) grouped by access permissions - editableTeams (edit=true) and viewableTeams (view=true). Teams can appear in both lists if they have both permissions.
11
+ */
12
+ export function useTeamsControllerListTeamsByAccessQuery(props, options) {
13
+ return useQuery(['TeamsControllerListTeamsByAccess', props.queryParams], ({ signal }) => teamsControllerListTeamsByAccess(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -171,14 +171,10 @@ export type { IntegrationControllerListIntegrationsErrorResponse, IntegrationCon
171
171
  export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
172
172
  export type { IntegrationDataStatusControllerGetIntegrationDataStatusErrorResponse, IntegrationDataStatusControllerGetIntegrationDataStatusMutationQueryParams, IntegrationDataStatusControllerGetIntegrationDataStatusOkResponse, IntegrationDataStatusControllerGetIntegrationDataStatusProps, IntegrationDataStatusControllerGetIntegrationDataStatusRequestBody, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
173
173
  export { integrationDataStatusControllerGetIntegrationDataStatus, useIntegrationDataStatusControllerGetIntegrationDataStatusMutation, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
174
- export type { IntegrationStatsControllerGetCicdJobRunsCountErrorResponse, IntegrationStatsControllerGetCicdJobRunsCountOkResponse, IntegrationStatsControllerGetCicdJobRunsCountProps, IntegrationStatsControllerGetCicdJobRunsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery';
175
- export { integrationStatsControllerGetCicdJobRunsCount, useIntegrationStatsControllerGetCicdJobRunsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery';
176
- export type { IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutationQueryParams, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeRequestBody, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation';
177
- export { integrationStatsControllerGetCicdJobRunsCountWithDateRange, useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation';
178
174
  export type { IntegrationStatsControllerGetCicdJobsCountErrorResponse, IntegrationStatsControllerGetCicdJobsCountOkResponse, IntegrationStatsControllerGetCicdJobsCountProps, IntegrationStatsControllerGetCicdJobsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
179
175
  export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
180
- export type { IntegrationStatsControllerGetCicdJobsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeMutationQueryParams, IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps, IntegrationStatsControllerGetCicdJobsCountWithDateRangeRequestBody, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation';
181
- export { integrationStatsControllerGetCicdJobsCountWithDateRange, useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation';
176
+ export type { IntegrationStatsControllerGetCicdPipelinesCountErrorResponse, IntegrationStatsControllerGetCicdPipelinesCountOkResponse, IntegrationStatsControllerGetCicdPipelinesCountProps, IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
177
+ export { integrationStatsControllerGetCicdPipelinesCount, useIntegrationStatsControllerGetCicdPipelinesCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
182
178
  export type { IntegrationStatsControllerGetImProjectsCountErrorResponse, IntegrationStatsControllerGetImProjectsCountOkResponse, IntegrationStatsControllerGetImProjectsCountProps, IntegrationStatsControllerGetImProjectsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
183
179
  export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
184
180
  export type { IntegrationStatsControllerGetImProjectsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetImProjectsCountWithDateRangeOkResponse, IntegrationStatsControllerGetImProjectsCountWithDateRangeProps, IntegrationStatsControllerGetImProjectsCountWithDateRangeQueryQueryParams, IntegrationStatsControllerGetImProjectsCountWithDateRangeRequestBody, } from './hooks/useIntegrationStatsControllerGetImProjectsCountWithDateRangeQuery';
@@ -295,10 +291,10 @@ export type { SprintInsightsControllerGetSprintDeliveryErrorResponse, SprintInsi
295
291
  export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
296
292
  export type { SprintInsightsControllerGetSprintDrilldownErrorResponse, SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownProps, SprintInsightsControllerGetSprintDrilldownRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
297
293
  export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownQuery, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
298
- export type { SprintInsightsControllerGetSprintListErrorResponse, SprintInsightsControllerGetSprintListOkResponse, SprintInsightsControllerGetSprintListProps, SprintInsightsControllerGetSprintListRequestBody, } from './hooks/useSprintInsightsControllerGetSprintListQuery';
299
- export { sprintInsightsControllerGetSprintList, useSprintInsightsControllerGetSprintListQuery, } from './hooks/useSprintInsightsControllerGetSprintListQuery';
300
294
  export type { SprintInsightsControllerGetSprintSummaryErrorResponse, SprintInsightsControllerGetSprintSummaryOkResponse, SprintInsightsControllerGetSprintSummaryProps, SprintInsightsControllerGetSprintSummaryRequestBody, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
301
295
  export { sprintInsightsControllerGetSprintSummary, useSprintInsightsControllerGetSprintSummaryQuery, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
296
+ export type { SprintInsightsControllerSearchSprintListErrorResponse, SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListProps, SprintInsightsControllerSearchSprintListRequestBody, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
297
+ export { sprintInsightsControllerSearchSprintList, useSprintInsightsControllerSearchSprintListQuery, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
302
298
  export type { SprintInsightsControllerSearchSprintTicketsErrorResponse, SprintInsightsControllerSearchSprintTicketsOkResponse, SprintInsightsControllerSearchSprintTicketsProps, SprintInsightsControllerSearchSprintTicketsRequestBody, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
303
299
  export { sprintInsightsControllerSearchSprintTickets, useSprintInsightsControllerSearchSprintTicketsQuery, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
304
300
  export type { TeamsControllerAssociateDevelopersToTeamErrorResponse, TeamsControllerAssociateDevelopersToTeamMutationPathParams, TeamsControllerAssociateDevelopersToTeamOkResponse, TeamsControllerAssociateDevelopersToTeamProps, TeamsControllerAssociateDevelopersToTeamRequestBody, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
@@ -315,6 +311,8 @@ export type { TeamsControllerGetTeamIntegrationsErrorResponse, TeamsControllerGe
315
311
  export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
316
312
  export type { TeamsControllerGetTeamErrorResponse, TeamsControllerGetTeamOkResponse, TeamsControllerGetTeamProps, TeamsControllerGetTeamQueryPathParams, } from './hooks/useTeamsControllerGetTeamQuery';
317
313
  export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks/useTeamsControllerGetTeamQuery';
314
+ export type { TeamsControllerListTeamsByAccessErrorResponse, TeamsControllerListTeamsByAccessOkResponse, TeamsControllerListTeamsByAccessProps, TeamsControllerListTeamsByAccessQueryQueryParams, } from './hooks/useTeamsControllerListTeamsByAccessQuery';
315
+ export { teamsControllerListTeamsByAccess, useTeamsControllerListTeamsByAccessQuery, } from './hooks/useTeamsControllerListTeamsByAccessQuery';
318
316
  export type { TeamsControllerListTeamsErrorResponse, TeamsControllerListTeamsOkResponse, TeamsControllerListTeamsProps, TeamsControllerListTeamsQueryQueryParams, } from './hooks/useTeamsControllerListTeamsQuery';
319
317
  export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
320
318
  export type { TeamsControllerSearchTeamDevelopersErrorResponse, TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersProps, TeamsControllerSearchTeamDevelopersQueryPathParams, TeamsControllerSearchTeamDevelopersQueryQueryParams, TeamsControllerSearchTeamDevelopersRequestBody, } from './hooks/useTeamsControllerSearchTeamDevelopersQuery';
@@ -357,7 +355,6 @@ export type { BreakdownRecord } from './schemas/BreakdownRecord';
357
355
  export type { BuildInfo } from './schemas/BuildInfo';
358
356
  export type { Category } from './schemas/Category';
359
357
  export type { CfrConfigurationDto } from './schemas/CfrConfigurationDto';
360
- export type { CloudIdentity } from './schemas/CloudIdentity';
361
358
  export type { CodeChangeStats } from './schemas/CodeChangeStats';
362
359
  export type { CodeChanges } from './schemas/CodeChanges';
363
360
  export type { CodingDaysDrilldownResponseDataPointV3 } from './schemas/CodingDaysDrilldownResponseDataPointV3';
@@ -385,6 +382,7 @@ export type { DeveloperIdentity } from './schemas/DeveloperIdentity';
385
382
  export type { DeveloperIdentityError } from './schemas/DeveloperIdentityError';
386
383
  export type { DeveloperIdentityUpsertFailureResponse } from './schemas/DeveloperIdentityUpsertFailureResponse';
387
384
  export type { DeveloperIdentityUpsertResponse } from './schemas/DeveloperIdentityUpsertResponse';
385
+ export type { DeveloperInfo } from './schemas/DeveloperInfo';
388
386
  export type { DeveloperLicenseDto } from './schemas/DeveloperLicenseDto';
389
387
  export type { DeveloperListResponseDto } from './schemas/DeveloperListResponseDto';
390
388
  export type { DeveloperReuploadResponseDto } from './schemas/DeveloperReuploadResponseDto';
@@ -460,6 +458,7 @@ export type { IntegrationResponseDto } from './schemas/IntegrationResponseDto';
460
458
  export type { IntegrationStatsDto } from './schemas/IntegrationStatsDto';
461
459
  export type { IntegrationSummary } from './schemas/IntegrationSummary';
462
460
  export type { IntegrationUser } from './schemas/IntegrationUser';
461
+ export type { IntegrationUserInfo } from './schemas/IntegrationUserInfo';
463
462
  export type { IssueRequest } from './schemas/IssueRequest';
464
463
  export type { IssuesPipelineExecutionResponse } from './schemas/IssuesPipelineExecutionResponse';
465
464
  export type { IssuesPipelineExecutionResponseWrapper } from './schemas/IssuesPipelineExecutionResponseWrapper';
@@ -565,6 +564,7 @@ export type { SprintSummaryMeticDto } from './schemas/SprintSummaryMeticDto';
565
564
  export type { SprintSummaryResponseDto } from './schemas/SprintSummaryResponseDto';
566
565
  export type { SprintTicketDto } from './schemas/SprintTicketDto';
567
566
  export type { SprintTicketEstimatesDto } from './schemas/SprintTicketEstimatesDto';
567
+ export type { SprintTicketsMetadataDto } from './schemas/SprintTicketsMetadataDto';
568
568
  export type { SprintTicketsRequestDto } from './schemas/SprintTicketsRequestDto';
569
569
  export type { SprintTicketsResponseDto } from './schemas/SprintTicketsResponseDto';
570
570
  export type { SprintWorkBreakdownDto } from './schemas/SprintWorkBreakdownDto';
@@ -572,7 +572,7 @@ export type { Stage } from './schemas/Stage';
572
572
  export type { SummaryCard } from './schemas/SummaryCard';
573
573
  export type { SummaryValue } from './schemas/SummaryValue';
574
574
  export type { SummaryValueChange } from './schemas/SummaryValueChange';
575
- export type { TeamDeveloperDto } from './schemas/TeamDeveloperDto';
575
+ export type { TeamAccessDto } from './schemas/TeamAccessDto';
576
576
  export type { TeamDeveloperSearchParams } from './schemas/TeamDeveloperSearchParams';
577
577
  export type { TeamDevelopersDto } from './schemas/TeamDevelopersDto';
578
578
  export type { TeamFilter } from './schemas/TeamFilter';
@@ -584,6 +584,7 @@ export type { TeamIntegrationDto } from './schemas/TeamIntegrationDto';
584
584
  export type { TeamResponse } from './schemas/TeamResponse';
585
585
  export type { TeamSearchParams } from './schemas/TeamSearchParams';
586
586
  export type { TeamSummary } from './schemas/TeamSummary';
587
+ export type { TeamsByAccessResponseDto } from './schemas/TeamsByAccessResponseDto';
587
588
  export type { TotalStatisticCount } from './schemas/TotalStatisticCount';
588
589
  export type { VersionReleaseRequest } from './schemas/VersionReleaseRequest';
589
590
  export type { WorkCompletedDrilldownResponseDataPoint } from './schemas/WorkCompletedDrilldownResponseDataPoint';
@@ -84,10 +84,8 @@ export { integrationControllerGetFilterValues, useIntegrationControllerGetFilter
84
84
  export { integrationControllerListIntegrationConfigs, useIntegrationControllerListIntegrationConfigsQuery, } from './hooks/useIntegrationControllerListIntegrationConfigsQuery';
85
85
  export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
86
86
  export { integrationDataStatusControllerGetIntegrationDataStatus, useIntegrationDataStatusControllerGetIntegrationDataStatusMutation, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
87
- export { integrationStatsControllerGetCicdJobRunsCount, useIntegrationStatsControllerGetCicdJobRunsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery';
88
- export { integrationStatsControllerGetCicdJobRunsCountWithDateRange, useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation';
89
87
  export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
90
- export { integrationStatsControllerGetCicdJobsCountWithDateRange, useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation';
88
+ export { integrationStatsControllerGetCicdPipelinesCount, useIntegrationStatsControllerGetCicdPipelinesCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
91
89
  export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
92
90
  export { integrationStatsControllerGetImProjectsCountWithDateRange, useIntegrationStatsControllerGetImProjectsCountWithDateRangeQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountWithDateRangeQuery';
93
91
  export { integrationStatsControllerGetImTicketsCount, useIntegrationStatsControllerGetImTicketsCountQuery, } from './hooks/useIntegrationStatsControllerGetImTicketsCountQuery';
@@ -146,8 +144,8 @@ export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPr
146
144
  export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
147
145
  export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
148
146
  export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownQuery, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
149
- export { sprintInsightsControllerGetSprintList, useSprintInsightsControllerGetSprintListQuery, } from './hooks/useSprintInsightsControllerGetSprintListQuery';
150
147
  export { sprintInsightsControllerGetSprintSummary, useSprintInsightsControllerGetSprintSummaryQuery, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
148
+ export { sprintInsightsControllerSearchSprintList, useSprintInsightsControllerSearchSprintListQuery, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
151
149
  export { sprintInsightsControllerSearchSprintTickets, useSprintInsightsControllerSearchSprintTicketsQuery, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
152
150
  export { teamsControllerAssociateDevelopersToTeam, useTeamsControllerAssociateDevelopersToTeamMutation, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
153
151
  export { teamsControllerDisassociateDevelopersFromTeam, useTeamsControllerDisassociateDevelopersFromTeamMutation, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
@@ -156,6 +154,7 @@ export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQu
156
154
  export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamIntegrationFiltersQuery, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
157
155
  export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
158
156
  export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks/useTeamsControllerGetTeamQuery';
157
+ export { teamsControllerListTeamsByAccess, useTeamsControllerListTeamsByAccessQuery, } from './hooks/useTeamsControllerListTeamsByAccessQuery';
159
158
  export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
160
159
  export { teamsControllerSearchTeamDevelopers, useTeamsControllerSearchTeamDevelopersQuery, } from './hooks/useTeamsControllerSearchTeamDevelopersQuery';
161
160
  export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from './hooks/useTeamsControllerSearchTeamsQuery';
@@ -1,12 +1,4 @@
1
1
  export interface ActivityDataDto {
2
- /**
3
- * @format int64
4
- */
5
- cicdJobRuns?: number;
6
- /**
7
- * @format int64
8
- */
9
- cicdJobs?: number;
10
2
  /**
11
3
  * @format int64
12
4
  */
@@ -0,0 +1,17 @@
1
+ import type { IntegrationUserInfo } from '../schemas/IntegrationUserInfo';
2
+ export interface DeveloperInfo {
3
+ attributes?: {
4
+ [key: string]: string;
5
+ };
6
+ /**
7
+ * @format int32
8
+ */
9
+ developerId?: number;
10
+ email?: string;
11
+ integrationUsers?: IntegrationUserInfo[];
12
+ name?: string;
13
+ /**
14
+ * @format int32
15
+ */
16
+ refId?: number;
17
+ }
@@ -0,0 +1,7 @@
1
+ export interface IntegrationUserInfo {
2
+ cloudId?: string;
3
+ /**
4
+ * @format int32
5
+ */
6
+ integrationId?: number;
7
+ }
@@ -5,7 +5,7 @@ export interface ProductivityDataPoint {
5
5
  */
6
6
  endDate?: string;
7
7
  granularDataPoints?: ProductivityDataPoint[];
8
- stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
8
+ stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
9
9
  stacks?: {
10
10
  [key: string]: number;
11
11
  };
@@ -9,7 +9,7 @@ export interface ProductivityFeatureBreakdownResponseDataPoint {
9
9
  * @format date-time
10
10
  */
11
11
  endDate?: string;
12
- stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
12
+ stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
13
13
  stacks?: {
14
14
  [key: string]: number;
15
15
  };
@@ -8,7 +8,7 @@ export interface ProductivityFeatureRequestDto {
8
8
  * @format date-time
9
9
  */
10
10
  endDate?: string;
11
- featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODE_REWORK' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
11
+ featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
12
12
  granularity?: 'MONTHLY' | 'QUARTERLY' | 'WEEKLY';
13
13
  /**
14
14
  * @format int32
@@ -20,7 +20,7 @@ export interface ProductivityFeatureRequestDto {
20
20
  page_size?: number;
21
21
  sortBy?: 'AVG_TIME_TO_MERGE' | 'CODING_DAYS' | 'COMMITS' | 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'NUMBER_OF_PRS' | 'NUMER_OF_WORKITEMS' | 'PR_CREATED_AT' | 'PR_CYCLE_TIME_AUTHOR' | 'PR_CYCLE_TIME_CREATED_AT' | 'PR_CYCLE_TIME_MERGED_AT' | 'PR_CYCLE_TIME_PR_NUMBER' | 'PR_CYCLE_TIME_REPOSITORY' | 'PR_CYCLE_TIME_TITLE' | 'PR_CYCLE_TIME_TOTAL_LINE_CHANGES' | 'PR_CYCLE_TOTAL_TIME' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
22
22
  sortByCriteria?: 'ASC' | 'DESC';
23
- stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
23
+ stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
24
24
  /**
25
25
  * @format date-time
26
26
  */
@@ -6,11 +6,11 @@ export interface ProductivityFeatureResponseDto {
6
6
  * @format date-time
7
7
  */
8
8
  endDate?: string;
9
- featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODE_REWORK' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
9
+ featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
10
10
  granularity?: 'MONTHLY' | 'QUARTERLY' | 'WEEKLY';
11
11
  previousData?: ProductivityDataPoint;
12
12
  section?: 'COLLABORATION' | 'OUTPUT' | 'VOLUME';
13
- stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
13
+ stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
14
14
  /**
15
15
  * @format date-time
16
16
  */
@@ -8,7 +8,7 @@ export interface ProductivityV3FeatureBreakdownResponseDataPoint {
8
8
  * @format date-time
9
9
  */
10
10
  endDate?: string;
11
- stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
11
+ stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
12
12
  stacks?: {
13
13
  [key: string]: number;
14
14
  };
@@ -5,7 +5,7 @@ export interface ProductivityV3FeatureRequestDto {
5
5
  * @format date-time
6
6
  */
7
7
  endDate?: string;
8
- featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODE_REWORK' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
8
+ featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
9
9
  granularity?: 'MONTHLY' | 'QUARTERLY' | 'WEEKLY';
10
10
  /**
11
11
  * @format int32
@@ -17,7 +17,7 @@ export interface ProductivityV3FeatureRequestDto {
17
17
  page_size?: number;
18
18
  sortBy?: 'AVG_TIME_TO_MERGE' | 'CODING_DAYS' | 'COMMITS' | 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'NUMBER_OF_PRS' | 'NUMER_OF_WORKITEMS' | 'PR_CREATED_AT' | 'PR_CYCLE_TIME_AUTHOR' | 'PR_CYCLE_TIME_CREATED_AT' | 'PR_CYCLE_TIME_MERGED_AT' | 'PR_CYCLE_TIME_PR_NUMBER' | 'PR_CYCLE_TIME_REPOSITORY' | 'PR_CYCLE_TIME_TITLE' | 'PR_CYCLE_TIME_TOTAL_LINE_CHANGES' | 'PR_CYCLE_TOTAL_TIME' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
19
19
  sortByCriteria?: 'ASC' | 'DESC';
20
- stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
20
+ stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
21
21
  /**
22
22
  * @format date-time
23
23
  */
@@ -11,7 +11,7 @@ export interface SprintDrilldownRequestDto {
11
11
  dateStart: string;
12
12
  granularity?: 'MONTHLY' | 'QUARTERLY' | 'SPRINT' | 'WEEKLY';
13
13
  paginationRequest?: PaginationRequest;
14
- sortBy?: 'CHURN_RATE' | 'COMMIT_DELIVERY_PERCENTAGE' | 'CREEP_DELIVERY_PERCENTAGE' | 'DELIVERED_COMMIT' | 'DELIVERED_CREEP' | 'END_DATE' | 'SCOPE_CREEP' | 'SPRINT_COMMIT' | 'SPRINT_ID' | 'SPRINT_NAME' | 'START_DATE' | 'TOTAL_DELIVERY_PERCENTAGE';
14
+ sortBy?: 'END_DATE' | 'SPRINT_ID' | 'SPRINT_NAME' | 'START_DATE';
15
15
  sortOrder?: string;
16
16
  sprintIds?: string[];
17
17
  teamRefId: string;
@@ -1,8 +1,4 @@
1
1
  export interface SprintInfoDto {
2
- /**
3
- * @format date-time
4
- */
5
- completedAt?: string;
6
2
  /**
7
3
  * @format date-time
8
4
  */
@@ -13,5 +9,4 @@ export interface SprintInfoDto {
13
9
  * @format date-time
14
10
  */
15
11
  startDate?: string;
16
- state?: string;
17
12
  }
@@ -0,0 +1,5 @@
1
+ import type { SprintInfoDto } from '../schemas/SprintInfoDto';
2
+ export interface SprintTicketsMetadataDto {
3
+ computationMode?: 'STORY_POINTS' | 'TICKETS';
4
+ sprintInfo?: SprintInfoDto;
5
+ }
@@ -1,4 +1,6 @@
1
1
  import type { SprintTicketDto } from '../schemas/SprintTicketDto';
2
+ import type { SprintTicketsMetadataDto } from '../schemas/SprintTicketsMetadataDto';
2
3
  export interface SprintTicketsResponseDto {
3
4
  data?: SprintTicketDto[];
5
+ metadata?: SprintTicketsMetadataDto;
4
6
  }
@@ -1,4 +1,8 @@
1
1
  export interface SprintWorkBreakdownDto {
2
+ /**
3
+ * @format double
4
+ */
5
+ carryOver?: number;
2
6
  /**
3
7
  * @format double
4
8
  */
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Lightweight team information with minimal fields
3
+ */
4
+ export interface TeamAccessDto {
5
+ /**
6
+ * Database ID of the team
7
+ * @format int32
8
+ * @example 123
9
+ */
10
+ id?: number;
11
+ /**
12
+ * Name of the team
13
+ * @example "Engineering Team"
14
+ */
15
+ name?: string;
16
+ /**
17
+ * Reference ID of the parent team, if any
18
+ * @format int32
19
+ * @example 10
20
+ */
21
+ parentRefId?: number;
22
+ /**
23
+ * Reference ID used for linking teams across versions
24
+ * @format int32
25
+ * @example 1
26
+ */
27
+ refId?: number;
28
+ }
@@ -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 {};
@@ -3,10 +3,6 @@ export interface TeamDeveloperSearchParams {
3
3
  * List of developer reference IDs to filter by
4
4
  */
5
5
  developerRefIds?: number[];
6
- /**
7
- * Filter by identity completeness: true = has all identities, false = missing at least one identity, null = no filter
8
- */
9
- hasIdentities?: boolean;
10
6
  /**
11
7
  * Field to search in
12
8
  */
@@ -15,14 +11,10 @@ export interface TeamDeveloperSearchParams {
15
11
  * Value to search for
16
12
  */
17
13
  searchValue?: string;
18
- /**
19
- * Filter by shared status: true = shared developers only, false = non-shared developers only, null = all developers
20
- */
21
- shared?: boolean;
22
14
  /**
23
15
  * Field to sort by
24
16
  */
25
- sortKey?: 'email' | 'manual' | 'name' | 'shared' | 'updated_at' | 'updated_by';
17
+ sortKey?: 'email' | 'name';
26
18
  /**
27
19
  * Sort order
28
20
  * @default "ASC"
@@ -1,18 +1,10 @@
1
- import type { TeamDeveloperDto } from '../schemas/TeamDeveloperDto';
1
+ import type { DeveloperInfo } from '../schemas/DeveloperInfo';
2
2
  import type { PaginationMetadata } from '../schemas/PaginationMetadata';
3
3
  export interface TeamDevelopersDto {
4
- developers?: TeamDeveloperDto[];
4
+ developersInfo?: DeveloperInfo[];
5
5
  pagination?: PaginationMetadata;
6
- /**
7
- * @format int32
8
- */
9
- sharedDevelopers?: number;
10
6
  /**
11
7
  * @format int32
12
8
  */
13
9
  teamRefId?: number;
14
- /**
15
- * @format int32
16
- */
17
- totalDevelopers?: number;
18
10
  }
@@ -0,0 +1,16 @@
1
+ import type { TeamAccessDto } from '../schemas/TeamAccessDto';
2
+ /**
3
+ * Teams grouped by access permissions with lightweight team information
4
+ */
5
+ export interface TeamsByAccessResponseDto {
6
+ /**
7
+ * Teams with edit permission (edit=true)
8
+ * @example "[...]"
9
+ */
10
+ editableTeams?: TeamAccessDto[];
11
+ /**
12
+ * Teams with view permission (view=true)
13
+ * @example "[...]"
14
+ */
15
+ viewableTeams?: TeamAccessDto[];
16
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.23.4",
3
+ "version": "0.24.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",
@@ -1,18 +0,0 @@
1
- import { UseQueryOptions } from '@tanstack/react-query';
2
- import type { IntegrationStatsDto } from '../schemas/IntegrationStatsDto';
3
- import type { ResponseWithPagination } from '../helpers';
4
- import { FetcherOptions } from '../../../../fetcher/index.js';
5
- export interface IntegrationStatsControllerGetCicdJobRunsCountQueryQueryParams {
6
- integration_ids: string;
7
- account: string;
8
- }
9
- export type IntegrationStatsControllerGetCicdJobRunsCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
10
- export type IntegrationStatsControllerGetCicdJobRunsCountErrorResponse = IntegrationStatsDto[];
11
- export interface IntegrationStatsControllerGetCicdJobRunsCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdJobRunsCountQueryQueryParams, unknown>, 'url'> {
12
- queryParams: IntegrationStatsControllerGetCicdJobRunsCountQueryQueryParams;
13
- }
14
- export declare function integrationStatsControllerGetCicdJobRunsCount(props: IntegrationStatsControllerGetCicdJobRunsCountProps): Promise<IntegrationStatsControllerGetCicdJobRunsCountOkResponse>;
15
- /**
16
- * Get CICD job runs counts
17
- */
18
- export declare function useIntegrationStatsControllerGetCicdJobRunsCountQuery(props: IntegrationStatsControllerGetCicdJobRunsCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetCicdJobRunsCountOkResponse, IntegrationStatsControllerGetCicdJobRunsCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetCicdJobRunsCountOkResponse, IntegrationStatsControllerGetCicdJobRunsCountErrorResponse>;
@@ -1,14 +0,0 @@
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 integrationStatsControllerGetCicdJobRunsCount(props) {
7
- return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/job_runs`, method: 'GET' }, props));
8
- }
9
- /**
10
- * Get CICD job runs counts
11
- */
12
- export function useIntegrationStatsControllerGetCicdJobRunsCountQuery(props, options) {
13
- return useQuery(['IntegrationStatsControllerGetCicdJobRunsCount', props.queryParams], ({ signal }) => integrationStatsControllerGetCicdJobRunsCount(Object.assign(Object.assign({}, props), { signal })), options);
14
- }
@@ -1,20 +0,0 @@
1
- import { UseMutationOptions } from '@tanstack/react-query';
2
- import type { IntegrationStatsDto } from '../schemas/IntegrationStatsDto';
3
- import type { ScmStatsRequest } from '../schemas/ScmStatsRequest';
4
- import type { ResponseWithPagination } from '../helpers';
5
- import { FetcherOptions } from '../../../../fetcher/index.js';
6
- export interface IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutationQueryParams {
7
- account: string;
8
- }
9
- export type IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeRequestBody = ScmStatsRequest;
10
- export type IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
11
- export type IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeErrorResponse = IntegrationStatsDto[];
12
- export interface IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutationQueryParams, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeRequestBody>, 'url'> {
13
- queryParams: IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutationQueryParams;
14
- body: IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeRequestBody;
15
- }
16
- export declare function integrationStatsControllerGetCicdJobRunsCountWithDateRange(props: IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps): Promise<IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse>;
17
- /**
18
- * Get CICD job runs counts with optional daily breakdown
19
- */
20
- export declare function useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation(options?: Omit<UseMutationOptions<IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps, unknown>;
@@ -1,14 +0,0 @@
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 integrationStatsControllerGetCicdJobRunsCountWithDateRange(props) {
7
- return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/job_runs`, method: 'POST' }, props));
8
- }
9
- /**
10
- * Get CICD job runs counts with optional daily breakdown
11
- */
12
- export function useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation(options) {
13
- return useMutation((mutateProps) => integrationStatsControllerGetCicdJobRunsCountWithDateRange(mutateProps), options);
14
- }
@@ -1,20 +0,0 @@
1
- import { UseMutationOptions } from '@tanstack/react-query';
2
- import type { IntegrationStatsDto } from '../schemas/IntegrationStatsDto';
3
- import type { ScmStatsRequest } from '../schemas/ScmStatsRequest';
4
- import type { ResponseWithPagination } from '../helpers';
5
- import { FetcherOptions } from '../../../../fetcher/index.js';
6
- export interface IntegrationStatsControllerGetCicdJobsCountWithDateRangeMutationQueryParams {
7
- account: string;
8
- }
9
- export type IntegrationStatsControllerGetCicdJobsCountWithDateRangeRequestBody = ScmStatsRequest;
10
- export type IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
11
- export type IntegrationStatsControllerGetCicdJobsCountWithDateRangeErrorResponse = IntegrationStatsDto[];
12
- export interface IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdJobsCountWithDateRangeMutationQueryParams, IntegrationStatsControllerGetCicdJobsCountWithDateRangeRequestBody>, 'url'> {
13
- queryParams: IntegrationStatsControllerGetCicdJobsCountWithDateRangeMutationQueryParams;
14
- body: IntegrationStatsControllerGetCicdJobsCountWithDateRangeRequestBody;
15
- }
16
- export declare function integrationStatsControllerGetCicdJobsCountWithDateRange(props: IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps): Promise<IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse>;
17
- /**
18
- * Get CICD job counts with optional daily breakdown
19
- */
20
- export declare function useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation(options?: Omit<UseMutationOptions<IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps, unknown>;
@@ -1,14 +0,0 @@
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 integrationStatsControllerGetCicdJobsCountWithDateRange(props) {
7
- return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/jobs`, method: 'POST' }, props));
8
- }
9
- /**
10
- * Get CICD job counts with optional daily breakdown
11
- */
12
- export function useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation(options) {
13
- return useMutation((mutateProps) => integrationStatsControllerGetCicdJobsCountWithDateRange(mutateProps), options);
14
- }
@@ -1,17 +0,0 @@
1
- import { UseQueryOptions } from '@tanstack/react-query';
2
- import type { SprintListResponseDto } from '../schemas/SprintListResponseDto';
3
- import type { ErrorResponse } from '../schemas/ErrorResponse';
4
- import type { SprintListRequestDto } from '../schemas/SprintListRequestDto';
5
- import type { ResponseWithPagination } from '../helpers';
6
- import { FetcherOptions } from '../../../../fetcher/index.js';
7
- export type SprintInsightsControllerGetSprintListRequestBody = SprintListRequestDto;
8
- export type SprintInsightsControllerGetSprintListOkResponse = ResponseWithPagination<SprintListResponseDto>;
9
- export type SprintInsightsControllerGetSprintListErrorResponse = ErrorResponse;
10
- export interface SprintInsightsControllerGetSprintListProps extends Omit<FetcherOptions<unknown, SprintInsightsControllerGetSprintListRequestBody>, 'url'> {
11
- body: SprintInsightsControllerGetSprintListRequestBody;
12
- }
13
- export declare function sprintInsightsControllerGetSprintList(props: SprintInsightsControllerGetSprintListProps): Promise<SprintInsightsControllerGetSprintListOkResponse>;
14
- /**
15
- * Search completed sprints for dropdown with filters
16
- */
17
- export declare function useSprintInsightsControllerGetSprintListQuery(props: SprintInsightsControllerGetSprintListProps, options?: Omit<UseQueryOptions<SprintInsightsControllerGetSprintListOkResponse, SprintInsightsControllerGetSprintListErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerGetSprintListOkResponse, ErrorResponse>;
@@ -1,14 +0,0 @@
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 sprintInsightsControllerGetSprintList(props) {
7
- return fetcher(Object.assign({ url: `/v2/insights/sprints/list`, method: 'POST' }, props));
8
- }
9
- /**
10
- * Search completed sprints for dropdown with filters
11
- */
12
- export function useSprintInsightsControllerGetSprintListQuery(props, options) {
13
- return useQuery(['SprintInsightsControllerGetSprintList', props.body], ({ signal }) => sprintInsightsControllerGetSprintList(Object.assign(Object.assign({}, props), { signal })), options);
14
- }
@@ -1,13 +0,0 @@
1
- export interface CloudIdentity {
2
- /**
3
- * Cloud identity of the user in the integration
4
- * @example "github-user-123"
5
- */
6
- identity?: string;
7
- /**
8
- * Integration ID
9
- * @format int32
10
- * @example 5
11
- */
12
- integrationId?: number;
13
- }
@@ -1,44 +0,0 @@
1
- import type { CloudIdentity } from '../schemas/CloudIdentity';
2
- export interface TeamDeveloperDto {
3
- /**
4
- * Developer email
5
- * @example "john.doe@example.com"
6
- */
7
- email?: string;
8
- /**
9
- * List of cloud identities associated with this developer
10
- */
11
- identities?: CloudIdentity[];
12
- /**
13
- * Indicates whether this developer was manually associated to the team
14
- * @example true
15
- */
16
- manual?: boolean;
17
- /**
18
- * Developer name
19
- * @example "John Doe"
20
- */
21
- name?: string;
22
- /**
23
- * Developer reference ID
24
- * @format int32
25
- * @example 1001
26
- */
27
- refId?: number;
28
- /**
29
- * Indicates whether this developer is shared across multiple teams in the org tree
30
- * @example true
31
- */
32
- shared?: boolean;
33
- /**
34
- * Timestamp when the developer was last associated or updated in the team (epoch seconds)
35
- * @format int64
36
- * @example 1699876200
37
- */
38
- updatedAtEpochSec?: number;
39
- /**
40
- * Email of the user who last updated the developer association
41
- * @example "john.doe@example.com"
42
- */
43
- updatedByEmail?: string;
44
- }