@harnessio/react-sei-panorama-service-client 0.31.17 → 0.31.19

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 (34) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerListSessionsQuery.d.ts +2 -0
  2. package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerSummaryQuery.d.ts +1 -2
  3. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerListColumnsQuery.d.ts +18 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerListColumnsQuery.js +14 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerListColumnsWithCredentialsMutation.d.ts +16 -0
  6. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerListColumnsWithCredentialsMutation.js +14 -0
  7. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerSearchTablesQuery.d.ts +18 -0
  8. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerSearchTablesQuery.js +14 -0
  9. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerSearchTablesWithCredentialsMutation.d.ts +16 -0
  10. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerSearchTablesWithCredentialsMutation.js +14 -0
  11. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerValidateSchemaMutation.d.ts +16 -0
  12. package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerValidateSchemaMutation.js +14 -0
  13. package/dist/sei-panorama-service/src/services/index.d.ts +18 -1
  14. package/dist/sei-panorama-service/src/services/index.js +5 -0
  15. package/dist/sei-panorama-service/src/services/schemas/ActivityDataDto.d.ts +12 -0
  16. package/dist/sei-panorama-service/src/services/schemas/ColumnDefinition.d.ts +8 -0
  17. package/dist/sei-panorama-service/src/services/schemas/ServiceNowColumn.d.ts +7 -0
  18. package/dist/sei-panorama-service/src/services/schemas/ServiceNowColumnValidationResult.d.ts +13 -0
  19. package/dist/sei-panorama-service/src/services/schemas/ServiceNowColumnValidationResult.js +4 -0
  20. package/dist/sei-panorama-service/src/services/schemas/ServiceNowColumnsRequest.d.ts +5 -0
  21. package/dist/sei-panorama-service/src/services/schemas/ServiceNowColumnsRequest.js +1 -0
  22. package/dist/sei-panorama-service/src/services/schemas/ServiceNowCredentials.d.ts +8 -0
  23. package/dist/sei-panorama-service/src/services/schemas/ServiceNowCredentials.js +4 -0
  24. package/dist/sei-panorama-service/src/services/schemas/ServiceNowSchemaValidationRequest.d.ts +8 -0
  25. package/dist/sei-panorama-service/src/services/schemas/ServiceNowSchemaValidationRequest.js +1 -0
  26. package/dist/sei-panorama-service/src/services/schemas/ServiceNowSchemaValidationResult.d.ts +9 -0
  27. package/dist/sei-panorama-service/src/services/schemas/ServiceNowSchemaValidationResult.js +1 -0
  28. package/dist/sei-panorama-service/src/services/schemas/ServiceNowTable.d.ts +4 -0
  29. package/dist/sei-panorama-service/src/services/schemas/ServiceNowTable.js +4 -0
  30. package/dist/sei-panorama-service/src/services/schemas/ServiceNowTablesRequest.d.ts +5 -0
  31. package/dist/sei-panorama-service/src/services/schemas/ServiceNowTablesRequest.js +1 -0
  32. package/package.json +1 -1
  33. package/dist/sei-panorama-service/src/services/schemas/EfficiencySummaryRequest.d.ts +0 -11
  34. /package/dist/sei-panorama-service/src/services/schemas/{EfficiencySummaryRequest.js → ServiceNowColumn.js} +0 -0
@@ -8,6 +8,8 @@ export interface AiEngineeringControllerListSessionsQueryQueryParams {
8
8
  user_email: string;
9
9
  start_date?: string;
10
10
  end_date?: string;
11
+ sort?: string;
12
+ order?: string;
11
13
  /**
12
14
  * @format int32
13
15
  */
@@ -1,6 +1,5 @@
1
1
  import { UseQueryOptions } from '@tanstack/react-query';
2
2
  import type { DoraSummaryMetric } from '../schemas/DoraSummaryMetric';
3
- import type { EfficiencySummaryRequest } from '../schemas/EfficiencySummaryRequest';
4
3
  import type { ResponseWithPagination } from '../helpers';
5
4
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
5
  export interface EfficiencyControllerSummaryQueryQueryParams {
@@ -8,7 +7,7 @@ export interface EfficiencyControllerSummaryQueryQueryParams {
8
7
  projectIdentifier: string;
9
8
  orgIdentifier: string;
10
9
  }
11
- export type EfficiencyControllerSummaryRequestBody = EfficiencySummaryRequest;
10
+ export type EfficiencyControllerSummaryRequestBody = unknown;
12
11
  export type EfficiencyControllerSummaryOkResponse = ResponseWithPagination<DoraSummaryMetric>;
13
12
  export type EfficiencyControllerSummaryErrorResponse = string;
14
13
  export interface EfficiencyControllerSummaryProps extends Omit<FetcherOptions<EfficiencyControllerSummaryQueryQueryParams, EfficiencyControllerSummaryRequestBody>, 'url'> {
@@ -0,0 +1,18 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ServiceNowColumn } from '../schemas/ServiceNowColumn';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface ServiceNowHelperControllerListColumnsQueryQueryParams {
6
+ integration_id: string;
7
+ table: string;
8
+ }
9
+ export type ServiceNowHelperControllerListColumnsOkResponse = ResponseWithPagination<ServiceNowColumn[]>;
10
+ export type ServiceNowHelperControllerListColumnsErrorResponse = ServiceNowColumn[];
11
+ export interface ServiceNowHelperControllerListColumnsProps extends Omit<FetcherOptions<ServiceNowHelperControllerListColumnsQueryQueryParams, unknown>, 'url'> {
12
+ queryParams: ServiceNowHelperControllerListColumnsQueryQueryParams;
13
+ }
14
+ export declare function serviceNowHelperControllerListColumns(props: ServiceNowHelperControllerListColumnsProps): Promise<ServiceNowHelperControllerListColumnsOkResponse>;
15
+ /**
16
+ * Discover columns and their types for a ServiceNow table
17
+ */
18
+ export declare function useServiceNowHelperControllerListColumnsQuery(props: ServiceNowHelperControllerListColumnsProps, options?: Omit<UseQueryOptions<ServiceNowHelperControllerListColumnsOkResponse, ServiceNowHelperControllerListColumnsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<ServiceNowHelperControllerListColumnsOkResponse, ServiceNowHelperControllerListColumnsErrorResponse>;
@@ -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 serviceNowHelperControllerListColumns(props) {
7
+ return fetcher(Object.assign({ url: `/v2/integrations/servicenow/columns`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Discover columns and their types for a ServiceNow table
11
+ */
12
+ export function useServiceNowHelperControllerListColumnsQuery(props, options) {
13
+ return useQuery(['ServiceNowHelperControllerListColumns', props.queryParams], ({ signal }) => serviceNowHelperControllerListColumns(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,16 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { ServiceNowColumn } from '../schemas/ServiceNowColumn';
3
+ import type { ServiceNowColumnsRequest } from '../schemas/ServiceNowColumnsRequest';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export type ServiceNowHelperControllerListColumnsWithCredentialsRequestBody = ServiceNowColumnsRequest;
7
+ export type ServiceNowHelperControllerListColumnsWithCredentialsOkResponse = ResponseWithPagination<ServiceNowColumn[]>;
8
+ export type ServiceNowHelperControllerListColumnsWithCredentialsErrorResponse = ServiceNowColumn[];
9
+ export interface ServiceNowHelperControllerListColumnsWithCredentialsProps extends Omit<FetcherOptions<unknown, ServiceNowHelperControllerListColumnsWithCredentialsRequestBody>, 'url'> {
10
+ body: ServiceNowHelperControllerListColumnsWithCredentialsRequestBody;
11
+ }
12
+ export declare function serviceNowHelperControllerListColumnsWithCredentials(props: ServiceNowHelperControllerListColumnsWithCredentialsProps): Promise<ServiceNowHelperControllerListColumnsWithCredentialsOkResponse>;
13
+ /**
14
+ * Discover columns for a ServiceNow table using credentials supplied directly
15
+ */
16
+ export declare function useServiceNowHelperControllerListColumnsWithCredentialsMutation(options?: Omit<UseMutationOptions<ServiceNowHelperControllerListColumnsWithCredentialsOkResponse, ServiceNowHelperControllerListColumnsWithCredentialsErrorResponse, ServiceNowHelperControllerListColumnsWithCredentialsProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<ServiceNowHelperControllerListColumnsWithCredentialsOkResponse, ServiceNowHelperControllerListColumnsWithCredentialsErrorResponse, ServiceNowHelperControllerListColumnsWithCredentialsProps, 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 serviceNowHelperControllerListColumnsWithCredentials(props) {
7
+ return fetcher(Object.assign({ url: `/v2/integrations/servicenow/columns`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Discover columns for a ServiceNow table using credentials supplied directly
11
+ */
12
+ export function useServiceNowHelperControllerListColumnsWithCredentialsMutation(options) {
13
+ return useMutation((mutateProps) => serviceNowHelperControllerListColumnsWithCredentials(mutateProps), options);
14
+ }
@@ -0,0 +1,18 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ServiceNowTable } from '../schemas/ServiceNowTable';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface ServiceNowHelperControllerSearchTablesQueryQueryParams {
6
+ integration_id: string;
7
+ name_filter?: string;
8
+ }
9
+ export type ServiceNowHelperControllerSearchTablesOkResponse = ResponseWithPagination<ServiceNowTable[]>;
10
+ export type ServiceNowHelperControllerSearchTablesErrorResponse = ServiceNowTable[];
11
+ export interface ServiceNowHelperControllerSearchTablesProps extends Omit<FetcherOptions<ServiceNowHelperControllerSearchTablesQueryQueryParams, unknown>, 'url'> {
12
+ queryParams: ServiceNowHelperControllerSearchTablesQueryQueryParams;
13
+ }
14
+ export declare function serviceNowHelperControllerSearchTables(props: ServiceNowHelperControllerSearchTablesProps): Promise<ServiceNowHelperControllerSearchTablesOkResponse>;
15
+ /**
16
+ * List ServiceNow tables/views for the given integration
17
+ */
18
+ export declare function useServiceNowHelperControllerSearchTablesQuery(props: ServiceNowHelperControllerSearchTablesProps, options?: Omit<UseQueryOptions<ServiceNowHelperControllerSearchTablesOkResponse, ServiceNowHelperControllerSearchTablesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<ServiceNowHelperControllerSearchTablesOkResponse, ServiceNowHelperControllerSearchTablesErrorResponse>;
@@ -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 serviceNowHelperControllerSearchTables(props) {
7
+ return fetcher(Object.assign({ url: `/v2/integrations/servicenow/tables`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * List ServiceNow tables/views for the given integration
11
+ */
12
+ export function useServiceNowHelperControllerSearchTablesQuery(props, options) {
13
+ return useQuery(['ServiceNowHelperControllerSearchTables', props.queryParams], ({ signal }) => serviceNowHelperControllerSearchTables(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,16 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { ServiceNowTable } from '../schemas/ServiceNowTable';
3
+ import type { ServiceNowTablesRequest } from '../schemas/ServiceNowTablesRequest';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export type ServiceNowHelperControllerSearchTablesWithCredentialsRequestBody = ServiceNowTablesRequest;
7
+ export type ServiceNowHelperControllerSearchTablesWithCredentialsOkResponse = ResponseWithPagination<ServiceNowTable[]>;
8
+ export type ServiceNowHelperControllerSearchTablesWithCredentialsErrorResponse = ServiceNowTable[];
9
+ export interface ServiceNowHelperControllerSearchTablesWithCredentialsProps extends Omit<FetcherOptions<unknown, ServiceNowHelperControllerSearchTablesWithCredentialsRequestBody>, 'url'> {
10
+ body: ServiceNowHelperControllerSearchTablesWithCredentialsRequestBody;
11
+ }
12
+ export declare function serviceNowHelperControllerSearchTablesWithCredentials(props: ServiceNowHelperControllerSearchTablesWithCredentialsProps): Promise<ServiceNowHelperControllerSearchTablesWithCredentialsOkResponse>;
13
+ /**
14
+ * List ServiceNow tables/views using credentials supplied directly (integration not yet saved)
15
+ */
16
+ export declare function useServiceNowHelperControllerSearchTablesWithCredentialsMutation(options?: Omit<UseMutationOptions<ServiceNowHelperControllerSearchTablesWithCredentialsOkResponse, ServiceNowHelperControllerSearchTablesWithCredentialsErrorResponse, ServiceNowHelperControllerSearchTablesWithCredentialsProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<ServiceNowHelperControllerSearchTablesWithCredentialsOkResponse, ServiceNowHelperControllerSearchTablesWithCredentialsErrorResponse, ServiceNowHelperControllerSearchTablesWithCredentialsProps, 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 serviceNowHelperControllerSearchTablesWithCredentials(props) {
7
+ return fetcher(Object.assign({ url: `/v2/integrations/servicenow/tables`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * List ServiceNow tables/views using credentials supplied directly (integration not yet saved)
11
+ */
12
+ export function useServiceNowHelperControllerSearchTablesWithCredentialsMutation(options) {
13
+ return useMutation((mutateProps) => serviceNowHelperControllerSearchTablesWithCredentials(mutateProps), options);
14
+ }
@@ -0,0 +1,16 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { ServiceNowSchemaValidationResult } from '../schemas/ServiceNowSchemaValidationResult';
3
+ import type { ServiceNowSchemaValidationRequest } from '../schemas/ServiceNowSchemaValidationRequest';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export type ServiceNowHelperControllerValidateSchemaRequestBody = ServiceNowSchemaValidationRequest;
7
+ export type ServiceNowHelperControllerValidateSchemaOkResponse = ResponseWithPagination<ServiceNowSchemaValidationResult>;
8
+ export type ServiceNowHelperControllerValidateSchemaErrorResponse = ServiceNowSchemaValidationResult;
9
+ export interface ServiceNowHelperControllerValidateSchemaProps extends Omit<FetcherOptions<unknown, ServiceNowHelperControllerValidateSchemaRequestBody>, 'url'> {
10
+ body: ServiceNowHelperControllerValidateSchemaRequestBody;
11
+ }
12
+ export declare function serviceNowHelperControllerValidateSchema(props: ServiceNowHelperControllerValidateSchemaProps): Promise<ServiceNowHelperControllerValidateSchemaOkResponse>;
13
+ /**
14
+ * Provide either integration_id (saved integration) or credentials (pre-save flow), not both.
15
+ */
16
+ export declare function useServiceNowHelperControllerValidateSchemaMutation(options?: Omit<UseMutationOptions<ServiceNowHelperControllerValidateSchemaOkResponse, ServiceNowHelperControllerValidateSchemaErrorResponse, ServiceNowHelperControllerValidateSchemaProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<ServiceNowHelperControllerValidateSchemaOkResponse, ServiceNowSchemaValidationResult, ServiceNowHelperControllerValidateSchemaProps, 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 serviceNowHelperControllerValidateSchema(props) {
7
+ return fetcher(Object.assign({ url: `/v2/integrations/servicenow/validate-schema`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Provide either integration_id (saved integration) or credentials (pre-save flow), not both.
11
+ */
12
+ export function useServiceNowHelperControllerValidateSchemaMutation(options) {
13
+ return useMutation((mutateProps) => serviceNowHelperControllerValidateSchema(mutateProps), options);
14
+ }
@@ -571,6 +571,16 @@ export type { SecurityProfileControllerListProfilesErrorResponse, SecurityProfil
571
571
  export { securityProfileControllerListProfiles, useSecurityProfileControllerListProfilesQuery, } from './hooks/useSecurityProfileControllerListProfilesQuery';
572
572
  export type { SecurityProfileControllerUpdateProfileErrorResponse, SecurityProfileControllerUpdateProfileMutationPathParams, SecurityProfileControllerUpdateProfileOkResponse, SecurityProfileControllerUpdateProfileProps, SecurityProfileControllerUpdateProfileRequestBody, } from './hooks/useSecurityProfileControllerUpdateProfileMutation';
573
573
  export { securityProfileControllerUpdateProfile, useSecurityProfileControllerUpdateProfileMutation, } from './hooks/useSecurityProfileControllerUpdateProfileMutation';
574
+ export type { ServiceNowHelperControllerListColumnsErrorResponse, ServiceNowHelperControllerListColumnsOkResponse, ServiceNowHelperControllerListColumnsProps, ServiceNowHelperControllerListColumnsQueryQueryParams, } from './hooks/useServiceNowHelperControllerListColumnsQuery';
575
+ export { serviceNowHelperControllerListColumns, useServiceNowHelperControllerListColumnsQuery, } from './hooks/useServiceNowHelperControllerListColumnsQuery';
576
+ export type { ServiceNowHelperControllerListColumnsWithCredentialsErrorResponse, ServiceNowHelperControllerListColumnsWithCredentialsOkResponse, ServiceNowHelperControllerListColumnsWithCredentialsProps, ServiceNowHelperControllerListColumnsWithCredentialsRequestBody, } from './hooks/useServiceNowHelperControllerListColumnsWithCredentialsMutation';
577
+ export { serviceNowHelperControllerListColumnsWithCredentials, useServiceNowHelperControllerListColumnsWithCredentialsMutation, } from './hooks/useServiceNowHelperControllerListColumnsWithCredentialsMutation';
578
+ export type { ServiceNowHelperControllerSearchTablesErrorResponse, ServiceNowHelperControllerSearchTablesOkResponse, ServiceNowHelperControllerSearchTablesProps, ServiceNowHelperControllerSearchTablesQueryQueryParams, } from './hooks/useServiceNowHelperControllerSearchTablesQuery';
579
+ export { serviceNowHelperControllerSearchTables, useServiceNowHelperControllerSearchTablesQuery, } from './hooks/useServiceNowHelperControllerSearchTablesQuery';
580
+ export type { ServiceNowHelperControllerSearchTablesWithCredentialsErrorResponse, ServiceNowHelperControllerSearchTablesWithCredentialsOkResponse, ServiceNowHelperControllerSearchTablesWithCredentialsProps, ServiceNowHelperControllerSearchTablesWithCredentialsRequestBody, } from './hooks/useServiceNowHelperControllerSearchTablesWithCredentialsMutation';
581
+ export { serviceNowHelperControllerSearchTablesWithCredentials, useServiceNowHelperControllerSearchTablesWithCredentialsMutation, } from './hooks/useServiceNowHelperControllerSearchTablesWithCredentialsMutation';
582
+ export type { ServiceNowHelperControllerValidateSchemaErrorResponse, ServiceNowHelperControllerValidateSchemaOkResponse, ServiceNowHelperControllerValidateSchemaProps, ServiceNowHelperControllerValidateSchemaRequestBody, } from './hooks/useServiceNowHelperControllerValidateSchemaMutation';
583
+ export { serviceNowHelperControllerValidateSchema, useServiceNowHelperControllerValidateSchemaMutation, } from './hooks/useServiceNowHelperControllerValidateSchemaMutation';
574
584
  export type { SprintInsightsControllerGetSprintDeliveryErrorResponse, SprintInsightsControllerGetSprintDeliveryOkResponse, SprintInsightsControllerGetSprintDeliveryProps, SprintInsightsControllerGetSprintDeliveryRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
575
585
  export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
576
586
  export type { SprintInsightsControllerGetSprintDrilldownErrorResponse, SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownProps, SprintInsightsControllerGetSprintDrilldownRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
@@ -886,7 +896,6 @@ export type { EfficiencyProfileCreateRequestDto } from './schemas/EfficiencyProf
886
896
  export type { EfficiencyProfileEvent } from './schemas/EfficiencyProfileEvent';
887
897
  export type { EfficiencyProfileResponseDto } from './schemas/EfficiencyProfileResponseDto';
888
898
  export type { EfficiencyRequestDto } from './schemas/EfficiencyRequestDto';
889
- export type { EfficiencySummaryRequest } from './schemas/EfficiencySummaryRequest';
890
899
  export type { EncryptionKeyResponse } from './schemas/EncryptionKeyResponse';
891
900
  export type { EntityConfig } from './schemas/EntityConfig';
892
901
  export type { EntityCountDetails } from './schemas/EntityCountDetails';
@@ -1113,6 +1122,14 @@ export type { SecurityStatsDrilldownResponseDto } from './schemas/SecurityStatsD
1113
1122
  export type { SecurityStatsRequest } from './schemas/SecurityStatsRequest';
1114
1123
  export type { SecurityStatsTrendResponseDto } from './schemas/SecurityStatsTrendResponseDto';
1115
1124
  export type { SegmentSummary } from './schemas/SegmentSummary';
1125
+ export type { ServiceNowColumn } from './schemas/ServiceNowColumn';
1126
+ export type { ServiceNowColumnValidationResult } from './schemas/ServiceNowColumnValidationResult';
1127
+ export type { ServiceNowColumnsRequest } from './schemas/ServiceNowColumnsRequest';
1128
+ export type { ServiceNowCredentials } from './schemas/ServiceNowCredentials';
1129
+ export type { ServiceNowSchemaValidationRequest } from './schemas/ServiceNowSchemaValidationRequest';
1130
+ export type { ServiceNowSchemaValidationResult } from './schemas/ServiceNowSchemaValidationResult';
1131
+ export type { ServiceNowTable } from './schemas/ServiceNowTable';
1132
+ export type { ServiceNowTablesRequest } from './schemas/ServiceNowTablesRequest';
1116
1133
  export type { SessionFeedResponse } from './schemas/SessionFeedResponse';
1117
1134
  export type { SessionFeedSummary } from './schemas/SessionFeedSummary';
1118
1135
  export type { SessionFragment } from './schemas/SessionFragment';
@@ -284,6 +284,11 @@ export { securityProfileControllerDeleteProfile, useSecurityProfileControllerDel
284
284
  export { securityProfileControllerGetProfile, useSecurityProfileControllerGetProfileQuery, } from './hooks/useSecurityProfileControllerGetProfileQuery';
285
285
  export { securityProfileControllerListProfiles, useSecurityProfileControllerListProfilesQuery, } from './hooks/useSecurityProfileControllerListProfilesQuery';
286
286
  export { securityProfileControllerUpdateProfile, useSecurityProfileControllerUpdateProfileMutation, } from './hooks/useSecurityProfileControllerUpdateProfileMutation';
287
+ export { serviceNowHelperControllerListColumns, useServiceNowHelperControllerListColumnsQuery, } from './hooks/useServiceNowHelperControllerListColumnsQuery';
288
+ export { serviceNowHelperControllerListColumnsWithCredentials, useServiceNowHelperControllerListColumnsWithCredentialsMutation, } from './hooks/useServiceNowHelperControllerListColumnsWithCredentialsMutation';
289
+ export { serviceNowHelperControllerSearchTables, useServiceNowHelperControllerSearchTablesQuery, } from './hooks/useServiceNowHelperControllerSearchTablesQuery';
290
+ export { serviceNowHelperControllerSearchTablesWithCredentials, useServiceNowHelperControllerSearchTablesWithCredentialsMutation, } from './hooks/useServiceNowHelperControllerSearchTablesWithCredentialsMutation';
291
+ export { serviceNowHelperControllerValidateSchema, useServiceNowHelperControllerValidateSchemaMutation, } from './hooks/useServiceNowHelperControllerValidateSchemaMutation';
287
292
  export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
288
293
  export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownQuery, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
289
294
  export { sprintInsightsControllerGetSprintList, useSprintInsightsControllerGetSprintListQuery, } from './hooks/useSprintInsightsControllerGetSprintListQuery';
@@ -19,6 +19,10 @@ export interface ActivityDataDto {
19
19
  * @format int64
20
20
  */
21
21
  cursorUsers?: number;
22
+ /**
23
+ * @format int64
24
+ */
25
+ incidents?: number;
22
26
  /**
23
27
  * @format int64
24
28
  */
@@ -63,6 +67,14 @@ export interface ActivityDataDto {
63
67
  * @format int64
64
68
  */
65
69
  sonarQubePullRequests?: number;
70
+ /**
71
+ * @format int64
72
+ */
73
+ testMgmtExecutionLogs?: number;
74
+ /**
75
+ * @format int64
76
+ */
77
+ testMgmtTestRuns?: number;
66
78
  /**
67
79
  * @format int64
68
80
  */
@@ -6,6 +6,10 @@ export interface ColumnDefinition {
6
6
  * List of allowed values (enum constraint)
7
7
  */
8
8
  allowedValues?: string[];
9
+ /**
10
+ * Whether this column is used as a cursor for incremental data fetching
11
+ */
12
+ cursorColumn?: boolean;
9
13
  /**
10
14
  * Human-readable description of the column
11
15
  */
@@ -29,6 +33,10 @@ export interface ColumnDefinition {
29
33
  * Regex pattern for value validation
30
34
  */
31
35
  pattern?: string;
36
+ /**
37
+ * Whether this column is part of the primary key
38
+ */
39
+ primaryKey?: boolean;
32
40
  /**
33
41
  * Whether this column is required in every record
34
42
  */
@@ -0,0 +1,7 @@
1
+ export interface ServiceNowColumn {
2
+ label?: string;
3
+ name?: string;
4
+ platform_type?: string;
5
+ reference?: boolean;
6
+ type?: string;
7
+ }
@@ -0,0 +1,13 @@
1
+ export interface ServiceNowColumnValidationResult {
2
+ expected_type?: string;
3
+ /**
4
+ * @format int32
5
+ */
6
+ incompatible_count?: number;
7
+ name?: string;
8
+ reason?: string;
9
+ /**
10
+ * @format int32
11
+ */
12
+ rows_checked?: number;
13
+ }
@@ -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,5 @@
1
+ import type { ServiceNowCredentials } from '../schemas/ServiceNowCredentials';
2
+ export interface ServiceNowColumnsRequest {
3
+ credentials: ServiceNowCredentials;
4
+ table: string;
5
+ }
@@ -0,0 +1,8 @@
1
+ export interface ServiceNowCredentials {
2
+ api_key?: string;
3
+ auth_type: 'api_key' | 'basic' | 'oauth';
4
+ instance_url: string;
5
+ password?: string;
6
+ token?: string;
7
+ username?: string;
8
+ }
@@ -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,8 @@
1
+ import type { ServiceNowColumn } from '../schemas/ServiceNowColumn';
2
+ import type { ServiceNowCredentials } from '../schemas/ServiceNowCredentials';
3
+ export interface ServiceNowSchemaValidationRequest {
4
+ columns: ServiceNowColumn[];
5
+ credentials?: ServiceNowCredentials;
6
+ integration_id?: string;
7
+ table: string;
8
+ }
@@ -0,0 +1,9 @@
1
+ import type { ServiceNowColumnValidationResult } from '../schemas/ServiceNowColumnValidationResult';
2
+ export interface ServiceNowSchemaValidationResult {
3
+ invalid_columns?: ServiceNowColumnValidationResult[];
4
+ /**
5
+ * @format int32
6
+ */
7
+ rows_sampled?: number;
8
+ valid?: boolean;
9
+ }
@@ -0,0 +1,4 @@
1
+ export interface ServiceNowTable {
2
+ label?: string;
3
+ name?: string;
4
+ }
@@ -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,5 @@
1
+ import type { ServiceNowCredentials } from '../schemas/ServiceNowCredentials';
2
+ export interface ServiceNowTablesRequest {
3
+ credentials: ServiceNowCredentials;
4
+ name_filter?: string;
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.31.17",
3
+ "version": "0.31.19",
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,11 +0,0 @@
1
- export interface EfficiencySummaryRequest {
2
- /**
3
- * @format date-time
4
- */
5
- dateEnd: string;
6
- /**
7
- * @format date-time
8
- */
9
- dateStart: string;
10
- teamRefId: string;
11
- }