@harnessio/react-sei-panorama-service-client 0.31.17 → 0.31.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerListSessionsQuery.d.ts +2 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerSummaryQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerListColumnsQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerListColumnsQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerListColumnsWithCredentialsMutation.d.ts +16 -0
- package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerListColumnsWithCredentialsMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerSearchTablesQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerSearchTablesQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerSearchTablesWithCredentialsMutation.d.ts +16 -0
- package/dist/sei-panorama-service/src/services/hooks/useServiceNowHelperControllerSearchTablesWithCredentialsMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/index.d.ts +13 -1
- package/dist/sei-panorama-service/src/services/index.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowColumn.d.ts +7 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowColumnsRequest.d.ts +5 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowColumnsRequest.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowCredentials.d.ts +8 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowCredentials.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowTable.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowTable.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowTablesRequest.d.ts +5 -0
- package/dist/sei-panorama-service/src/services/schemas/ServiceNowTablesRequest.js +1 -0
- package/package.json +1 -1
- package/dist/sei-panorama-service/src/services/schemas/EfficiencySummaryRequest.d.ts +0 -11
- /package/dist/sei-panorama-service/src/services/schemas/{EfficiencySummaryRequest.js → ServiceNowColumn.js} +0 -0
package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerSummaryQuery.d.ts
CHANGED
|
@@ -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 =
|
|
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
|
+
}
|
|
@@ -571,6 +571,14 @@ 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';
|
|
574
582
|
export type { SprintInsightsControllerGetSprintDeliveryErrorResponse, SprintInsightsControllerGetSprintDeliveryOkResponse, SprintInsightsControllerGetSprintDeliveryProps, SprintInsightsControllerGetSprintDeliveryRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
|
|
575
583
|
export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
|
|
576
584
|
export type { SprintInsightsControllerGetSprintDrilldownErrorResponse, SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownProps, SprintInsightsControllerGetSprintDrilldownRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
|
|
@@ -886,7 +894,6 @@ export type { EfficiencyProfileCreateRequestDto } from './schemas/EfficiencyProf
|
|
|
886
894
|
export type { EfficiencyProfileEvent } from './schemas/EfficiencyProfileEvent';
|
|
887
895
|
export type { EfficiencyProfileResponseDto } from './schemas/EfficiencyProfileResponseDto';
|
|
888
896
|
export type { EfficiencyRequestDto } from './schemas/EfficiencyRequestDto';
|
|
889
|
-
export type { EfficiencySummaryRequest } from './schemas/EfficiencySummaryRequest';
|
|
890
897
|
export type { EncryptionKeyResponse } from './schemas/EncryptionKeyResponse';
|
|
891
898
|
export type { EntityConfig } from './schemas/EntityConfig';
|
|
892
899
|
export type { EntityCountDetails } from './schemas/EntityCountDetails';
|
|
@@ -1113,6 +1120,11 @@ export type { SecurityStatsDrilldownResponseDto } from './schemas/SecurityStatsD
|
|
|
1113
1120
|
export type { SecurityStatsRequest } from './schemas/SecurityStatsRequest';
|
|
1114
1121
|
export type { SecurityStatsTrendResponseDto } from './schemas/SecurityStatsTrendResponseDto';
|
|
1115
1122
|
export type { SegmentSummary } from './schemas/SegmentSummary';
|
|
1123
|
+
export type { ServiceNowColumn } from './schemas/ServiceNowColumn';
|
|
1124
|
+
export type { ServiceNowColumnsRequest } from './schemas/ServiceNowColumnsRequest';
|
|
1125
|
+
export type { ServiceNowCredentials } from './schemas/ServiceNowCredentials';
|
|
1126
|
+
export type { ServiceNowTable } from './schemas/ServiceNowTable';
|
|
1127
|
+
export type { ServiceNowTablesRequest } from './schemas/ServiceNowTablesRequest';
|
|
1116
1128
|
export type { SessionFeedResponse } from './schemas/SessionFeedResponse';
|
|
1117
1129
|
export type { SessionFeedSummary } from './schemas/SessionFeedSummary';
|
|
1118
1130
|
export type { SessionFragment } from './schemas/SessionFragment';
|
|
@@ -284,6 +284,10 @@ 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';
|
|
287
291
|
export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
|
|
288
292
|
export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownQuery, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
|
|
289
293
|
export { sprintInsightsControllerGetSprintList, useSprintInsightsControllerGetSprintListQuery, } from './hooks/useSprintInsightsControllerGetSprintListQuery';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.18",
|
|
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",
|
|
File without changes
|