@harnessio/react-sei-panorama-service-client 0.10.10 → 0.10.11
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/useCacheControllerClearAccountCategoriesCacheMutation.d.ts +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAccountCategoriesCacheMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAccountCollectionsCacheMutation.d.ts +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAccountCollectionsCacheMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAllCategoriesCacheForAccountMutation.d.ts +12 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAllCategoriesCacheForAccountMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAllCategoriesCacheMutation.d.ts +9 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAllCategoriesCacheMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAllCollectionsCacheForAccountMutation.d.ts +12 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAllCollectionsCacheForAccountMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAllCollectionsCacheMutation.d.ts +9 -0
- package/dist/sei-panorama-service/src/services/hooks/useCacheControllerClearAllCollectionsCacheMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useCollectionControllerGetCollectionTreeQuery.d.ts +4 -4
- package/dist/sei-panorama-service/src/services/index.d.ts +13 -1
- package/dist/sei-panorama-service/src/services/index.js +6 -0
- package/dist/sei-panorama-service/src/services/schemas/{CollectionObject.d.ts → CollectionEnriched.d.ts} +2 -2
- package/dist/sei-panorama-service/src/services/schemas/CollectionTree.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/SummaryValueChange.d.ts +6 -6
- package/package.json +1 -1
- /package/dist/sei-panorama-service/src/services/schemas/{CollectionObject.js → CollectionEnriched.js} +0 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
2
|
+
import type { ResponseWithPagination } from '../helpers';
|
3
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
4
|
+
export interface CacheControllerClearAccountCategoriesCacheMutationPathParams {
|
5
|
+
account: string;
|
6
|
+
project: string;
|
7
|
+
org: string;
|
8
|
+
}
|
9
|
+
export type CacheControllerClearAccountCategoriesCacheOkResponse = ResponseWithPagination<string>;
|
10
|
+
export type CacheControllerClearAccountCategoriesCacheErrorResponse = unknown;
|
11
|
+
export interface CacheControllerClearAccountCategoriesCacheProps extends CacheControllerClearAccountCategoriesCacheMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
12
|
+
}
|
13
|
+
export declare function cacheControllerClearAccountCategoriesCache(props: CacheControllerClearAccountCategoriesCacheProps): Promise<CacheControllerClearAccountCategoriesCacheOkResponse>;
|
14
|
+
export declare function useCacheControllerClearAccountCategoriesCacheMutation(options?: Omit<UseMutationOptions<CacheControllerClearAccountCategoriesCacheOkResponse, CacheControllerClearAccountCategoriesCacheErrorResponse, CacheControllerClearAccountCategoriesCacheProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CacheControllerClearAccountCategoriesCacheOkResponse, unknown, CacheControllerClearAccountCategoriesCacheProps, unknown>;
|
@@ -0,0 +1,11 @@
|
|
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 cacheControllerClearAccountCategoriesCache(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/cache/account/${props.account}/categories/${props.project}/${props.org}`, method: 'DELETE' }, props));
|
8
|
+
}
|
9
|
+
export function useCacheControllerClearAccountCategoriesCacheMutation(options) {
|
10
|
+
return useMutation((mutateProps) => cacheControllerClearAccountCategoriesCache(mutateProps), options);
|
11
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
2
|
+
import type { ResponseWithPagination } from '../helpers';
|
3
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
4
|
+
export interface CacheControllerClearAccountCollectionsCacheMutationPathParams {
|
5
|
+
account: string;
|
6
|
+
project: string;
|
7
|
+
org: string;
|
8
|
+
}
|
9
|
+
export type CacheControllerClearAccountCollectionsCacheOkResponse = ResponseWithPagination<string>;
|
10
|
+
export type CacheControllerClearAccountCollectionsCacheErrorResponse = unknown;
|
11
|
+
export interface CacheControllerClearAccountCollectionsCacheProps extends CacheControllerClearAccountCollectionsCacheMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
12
|
+
}
|
13
|
+
export declare function cacheControllerClearAccountCollectionsCache(props: CacheControllerClearAccountCollectionsCacheProps): Promise<CacheControllerClearAccountCollectionsCacheOkResponse>;
|
14
|
+
export declare function useCacheControllerClearAccountCollectionsCacheMutation(options?: Omit<UseMutationOptions<CacheControllerClearAccountCollectionsCacheOkResponse, CacheControllerClearAccountCollectionsCacheErrorResponse, CacheControllerClearAccountCollectionsCacheProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CacheControllerClearAccountCollectionsCacheOkResponse, unknown, CacheControllerClearAccountCollectionsCacheProps, unknown>;
|
@@ -0,0 +1,11 @@
|
|
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 cacheControllerClearAccountCollectionsCache(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/cache/account/${props.account}/collections/${props.project}/${props.org}`, method: 'DELETE' }, props));
|
8
|
+
}
|
9
|
+
export function useCacheControllerClearAccountCollectionsCacheMutation(options) {
|
10
|
+
return useMutation((mutateProps) => cacheControllerClearAccountCollectionsCache(mutateProps), options);
|
11
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
2
|
+
import type { ResponseWithPagination } from '../helpers';
|
3
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
4
|
+
export interface CacheControllerClearAllCategoriesCacheForAccountMutationPathParams {
|
5
|
+
account: string;
|
6
|
+
}
|
7
|
+
export type CacheControllerClearAllCategoriesCacheForAccountOkResponse = ResponseWithPagination<string>;
|
8
|
+
export type CacheControllerClearAllCategoriesCacheForAccountErrorResponse = unknown;
|
9
|
+
export interface CacheControllerClearAllCategoriesCacheForAccountProps extends CacheControllerClearAllCategoriesCacheForAccountMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
10
|
+
}
|
11
|
+
export declare function cacheControllerClearAllCategoriesCacheForAccount(props: CacheControllerClearAllCategoriesCacheForAccountProps): Promise<CacheControllerClearAllCategoriesCacheForAccountOkResponse>;
|
12
|
+
export declare function useCacheControllerClearAllCategoriesCacheForAccountMutation(options?: Omit<UseMutationOptions<CacheControllerClearAllCategoriesCacheForAccountOkResponse, CacheControllerClearAllCategoriesCacheForAccountErrorResponse, CacheControllerClearAllCategoriesCacheForAccountProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CacheControllerClearAllCategoriesCacheForAccountOkResponse, unknown, CacheControllerClearAllCategoriesCacheForAccountProps, unknown>;
|
@@ -0,0 +1,11 @@
|
|
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 cacheControllerClearAllCategoriesCacheForAccount(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/cache/account/${props.account}/categories`, method: 'DELETE' }, props));
|
8
|
+
}
|
9
|
+
export function useCacheControllerClearAllCategoriesCacheForAccountMutation(options) {
|
10
|
+
return useMutation((mutateProps) => cacheControllerClearAllCategoriesCacheForAccount(mutateProps), options);
|
11
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
2
|
+
import type { ResponseWithPagination } from '../helpers';
|
3
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
4
|
+
export type CacheControllerClearAllCategoriesCacheOkResponse = ResponseWithPagination<string>;
|
5
|
+
export type CacheControllerClearAllCategoriesCacheErrorResponse = unknown;
|
6
|
+
export interface CacheControllerClearAllCategoriesCacheProps extends Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
7
|
+
}
|
8
|
+
export declare function cacheControllerClearAllCategoriesCache(props: CacheControllerClearAllCategoriesCacheProps): Promise<CacheControllerClearAllCategoriesCacheOkResponse>;
|
9
|
+
export declare function useCacheControllerClearAllCategoriesCacheMutation(options?: Omit<UseMutationOptions<CacheControllerClearAllCategoriesCacheOkResponse, CacheControllerClearAllCategoriesCacheErrorResponse, CacheControllerClearAllCategoriesCacheProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CacheControllerClearAllCategoriesCacheOkResponse, unknown, CacheControllerClearAllCategoriesCacheProps, unknown>;
|
@@ -0,0 +1,11 @@
|
|
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 cacheControllerClearAllCategoriesCache(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/cache/categories`, method: 'DELETE' }, props));
|
8
|
+
}
|
9
|
+
export function useCacheControllerClearAllCategoriesCacheMutation(options) {
|
10
|
+
return useMutation((mutateProps) => cacheControllerClearAllCategoriesCache(mutateProps), options);
|
11
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
2
|
+
import type { ResponseWithPagination } from '../helpers';
|
3
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
4
|
+
export interface CacheControllerClearAllCollectionsCacheForAccountMutationPathParams {
|
5
|
+
account: string;
|
6
|
+
}
|
7
|
+
export type CacheControllerClearAllCollectionsCacheForAccountOkResponse = ResponseWithPagination<string>;
|
8
|
+
export type CacheControllerClearAllCollectionsCacheForAccountErrorResponse = unknown;
|
9
|
+
export interface CacheControllerClearAllCollectionsCacheForAccountProps extends CacheControllerClearAllCollectionsCacheForAccountMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
10
|
+
}
|
11
|
+
export declare function cacheControllerClearAllCollectionsCacheForAccount(props: CacheControllerClearAllCollectionsCacheForAccountProps): Promise<CacheControllerClearAllCollectionsCacheForAccountOkResponse>;
|
12
|
+
export declare function useCacheControllerClearAllCollectionsCacheForAccountMutation(options?: Omit<UseMutationOptions<CacheControllerClearAllCollectionsCacheForAccountOkResponse, CacheControllerClearAllCollectionsCacheForAccountErrorResponse, CacheControllerClearAllCollectionsCacheForAccountProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CacheControllerClearAllCollectionsCacheForAccountOkResponse, unknown, CacheControllerClearAllCollectionsCacheForAccountProps, unknown>;
|
@@ -0,0 +1,11 @@
|
|
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 cacheControllerClearAllCollectionsCacheForAccount(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/cache/account/${props.account}/collections`, method: 'DELETE' }, props));
|
8
|
+
}
|
9
|
+
export function useCacheControllerClearAllCollectionsCacheForAccountMutation(options) {
|
10
|
+
return useMutation((mutateProps) => cacheControllerClearAllCollectionsCacheForAccount(mutateProps), options);
|
11
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
2
|
+
import type { ResponseWithPagination } from '../helpers';
|
3
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
4
|
+
export type CacheControllerClearAllCollectionsCacheOkResponse = ResponseWithPagination<string>;
|
5
|
+
export type CacheControllerClearAllCollectionsCacheErrorResponse = unknown;
|
6
|
+
export interface CacheControllerClearAllCollectionsCacheProps extends Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
7
|
+
}
|
8
|
+
export declare function cacheControllerClearAllCollectionsCache(props: CacheControllerClearAllCollectionsCacheProps): Promise<CacheControllerClearAllCollectionsCacheOkResponse>;
|
9
|
+
export declare function useCacheControllerClearAllCollectionsCacheMutation(options?: Omit<UseMutationOptions<CacheControllerClearAllCollectionsCacheOkResponse, CacheControllerClearAllCollectionsCacheErrorResponse, CacheControllerClearAllCollectionsCacheProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CacheControllerClearAllCollectionsCacheOkResponse, unknown, CacheControllerClearAllCollectionsCacheProps, unknown>;
|
@@ -0,0 +1,11 @@
|
|
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 cacheControllerClearAllCollectionsCache(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/cache/collections`, method: 'DELETE' }, props));
|
8
|
+
}
|
9
|
+
export function useCacheControllerClearAllCollectionsCacheMutation(options) {
|
10
|
+
return useMutation((mutateProps) => cacheControllerClearAllCollectionsCache(mutateProps), options);
|
11
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
-
import type {
|
2
|
+
import type { CollectionEnriched } from '../schemas/CollectionEnriched';
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
5
5
|
export interface CollectionControllerGetCollectionTreeQueryPathParams {
|
@@ -23,8 +23,8 @@ export interface CollectionControllerGetCollectionTreeQueryQueryParams {
|
|
23
23
|
*/
|
24
24
|
orgIdentifier?: string;
|
25
25
|
}
|
26
|
-
export type CollectionControllerGetCollectionTreeOkResponse = ResponseWithPagination<
|
27
|
-
export type CollectionControllerGetCollectionTreeErrorResponse =
|
26
|
+
export type CollectionControllerGetCollectionTreeOkResponse = ResponseWithPagination<CollectionEnriched>;
|
27
|
+
export type CollectionControllerGetCollectionTreeErrorResponse = CollectionEnriched;
|
28
28
|
export interface CollectionControllerGetCollectionTreeProps extends CollectionControllerGetCollectionTreeQueryPathParams, Omit<FetcherOptions<CollectionControllerGetCollectionTreeQueryQueryParams, unknown>, 'url'> {
|
29
29
|
queryParams: CollectionControllerGetCollectionTreeQueryQueryParams;
|
30
30
|
}
|
@@ -32,4 +32,4 @@ export declare function collectionControllerGetCollectionTree(props: CollectionC
|
|
32
32
|
/**
|
33
33
|
* Get collection based on a ref id
|
34
34
|
*/
|
35
|
-
export declare function useCollectionControllerGetCollectionTreeQuery(props: CollectionControllerGetCollectionTreeProps, options?: Omit<UseQueryOptions<CollectionControllerGetCollectionTreeOkResponse, CollectionControllerGetCollectionTreeErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<CollectionControllerGetCollectionTreeOkResponse,
|
35
|
+
export declare function useCollectionControllerGetCollectionTreeQuery(props: CollectionControllerGetCollectionTreeProps, options?: Omit<UseQueryOptions<CollectionControllerGetCollectionTreeOkResponse, CollectionControllerGetCollectionTreeErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<CollectionControllerGetCollectionTreeOkResponse, CollectionEnriched>;
|
@@ -1,4 +1,16 @@
|
|
1
1
|
export type { GetPathParamsType, ResponseWithPagination } from './helpers';
|
2
|
+
export type { CacheControllerClearAccountCategoriesCacheErrorResponse, CacheControllerClearAccountCategoriesCacheMutationPathParams, CacheControllerClearAccountCategoriesCacheOkResponse, CacheControllerClearAccountCategoriesCacheProps, } from './hooks/useCacheControllerClearAccountCategoriesCacheMutation';
|
3
|
+
export { cacheControllerClearAccountCategoriesCache, useCacheControllerClearAccountCategoriesCacheMutation, } from './hooks/useCacheControllerClearAccountCategoriesCacheMutation';
|
4
|
+
export type { CacheControllerClearAccountCollectionsCacheErrorResponse, CacheControllerClearAccountCollectionsCacheMutationPathParams, CacheControllerClearAccountCollectionsCacheOkResponse, CacheControllerClearAccountCollectionsCacheProps, } from './hooks/useCacheControllerClearAccountCollectionsCacheMutation';
|
5
|
+
export { cacheControllerClearAccountCollectionsCache, useCacheControllerClearAccountCollectionsCacheMutation, } from './hooks/useCacheControllerClearAccountCollectionsCacheMutation';
|
6
|
+
export type { CacheControllerClearAllCategoriesCacheForAccountErrorResponse, CacheControllerClearAllCategoriesCacheForAccountMutationPathParams, CacheControllerClearAllCategoriesCacheForAccountOkResponse, CacheControllerClearAllCategoriesCacheForAccountProps, } from './hooks/useCacheControllerClearAllCategoriesCacheForAccountMutation';
|
7
|
+
export { cacheControllerClearAllCategoriesCacheForAccount, useCacheControllerClearAllCategoriesCacheForAccountMutation, } from './hooks/useCacheControllerClearAllCategoriesCacheForAccountMutation';
|
8
|
+
export type { CacheControllerClearAllCategoriesCacheErrorResponse, CacheControllerClearAllCategoriesCacheOkResponse, CacheControllerClearAllCategoriesCacheProps, } from './hooks/useCacheControllerClearAllCategoriesCacheMutation';
|
9
|
+
export { cacheControllerClearAllCategoriesCache, useCacheControllerClearAllCategoriesCacheMutation, } from './hooks/useCacheControllerClearAllCategoriesCacheMutation';
|
10
|
+
export type { CacheControllerClearAllCollectionsCacheForAccountErrorResponse, CacheControllerClearAllCollectionsCacheForAccountMutationPathParams, CacheControllerClearAllCollectionsCacheForAccountOkResponse, CacheControllerClearAllCollectionsCacheForAccountProps, } from './hooks/useCacheControllerClearAllCollectionsCacheForAccountMutation';
|
11
|
+
export { cacheControllerClearAllCollectionsCacheForAccount, useCacheControllerClearAllCollectionsCacheForAccountMutation, } from './hooks/useCacheControllerClearAllCollectionsCacheForAccountMutation';
|
12
|
+
export type { CacheControllerClearAllCollectionsCacheErrorResponse, CacheControllerClearAllCollectionsCacheOkResponse, CacheControllerClearAllCollectionsCacheProps, } from './hooks/useCacheControllerClearAllCollectionsCacheMutation';
|
13
|
+
export { cacheControllerClearAllCollectionsCache, useCacheControllerClearAllCollectionsCacheMutation, } from './hooks/useCacheControllerClearAllCollectionsCacheMutation';
|
2
14
|
export type { CategoryControllerGetCategoryErrorResponse, CategoryControllerGetCategoryOkResponse, CategoryControllerGetCategoryProps, CategoryControllerGetCategoryQueryPathParams, CategoryControllerGetCategoryQueryQueryParams, } from './hooks/useCategoryControllerGetCategoryQuery';
|
3
15
|
export { categoryControllerGetCategory, useCategoryControllerGetCategoryQuery, } from './hooks/useCategoryControllerGetCategoryQuery';
|
4
16
|
export type { CategoryControllerListErrorResponse, CategoryControllerListOkResponse, CategoryControllerListProps, CategoryControllerListQueryQueryParams, } from './hooks/useCategoryControllerListQuery';
|
@@ -32,8 +44,8 @@ export { jiraIssuesControllerGetJiraIssueCount, useJiraIssuesControllerGetJiraIs
|
|
32
44
|
export type { LegacyHealthControllerCheckErrorResponse, LegacyHealthControllerCheckOkResponse, LegacyHealthControllerCheckProps, } from './hooks/useLegacyHealthControllerCheckQuery';
|
33
45
|
export { legacyHealthControllerCheck, useLegacyHealthControllerCheckQuery, } from './hooks/useLegacyHealthControllerCheckQuery';
|
34
46
|
export type { Category } from './schemas/Category';
|
47
|
+
export type { CollectionEnriched } from './schemas/CollectionEnriched';
|
35
48
|
export type { CollectionFilter } from './schemas/CollectionFilter';
|
36
|
-
export type { CollectionObject } from './schemas/CollectionObject';
|
37
49
|
export type { CollectionTree } from './schemas/CollectionTree';
|
38
50
|
export type { DataPoint } from './schemas/DataPoint';
|
39
51
|
export type { DataPointBreakdown } from './schemas/DataPointBreakdown';
|
@@ -1,3 +1,9 @@
|
|
1
|
+
export { cacheControllerClearAccountCategoriesCache, useCacheControllerClearAccountCategoriesCacheMutation, } from './hooks/useCacheControllerClearAccountCategoriesCacheMutation';
|
2
|
+
export { cacheControllerClearAccountCollectionsCache, useCacheControllerClearAccountCollectionsCacheMutation, } from './hooks/useCacheControllerClearAccountCollectionsCacheMutation';
|
3
|
+
export { cacheControllerClearAllCategoriesCacheForAccount, useCacheControllerClearAllCategoriesCacheForAccountMutation, } from './hooks/useCacheControllerClearAllCategoriesCacheForAccountMutation';
|
4
|
+
export { cacheControllerClearAllCategoriesCache, useCacheControllerClearAllCategoriesCacheMutation, } from './hooks/useCacheControllerClearAllCategoriesCacheMutation';
|
5
|
+
export { cacheControllerClearAllCollectionsCacheForAccount, useCacheControllerClearAllCollectionsCacheForAccountMutation, } from './hooks/useCacheControllerClearAllCollectionsCacheForAccountMutation';
|
6
|
+
export { cacheControllerClearAllCollectionsCache, useCacheControllerClearAllCollectionsCacheMutation, } from './hooks/useCacheControllerClearAllCollectionsCacheMutation';
|
1
7
|
export { categoryControllerGetCategory, useCategoryControllerGetCategoryQuery, } from './hooks/useCategoryControllerGetCategoryQuery';
|
2
8
|
export { categoryControllerList, useCategoryControllerListQuery, } from './hooks/useCategoryControllerListQuery';
|
3
9
|
export { collectionControllerGetCollectionTree, useCollectionControllerGetCollectionTreeQuery, } from './hooks/useCollectionControllerGetCollectionTreeQuery';
|
@@ -1,8 +1,7 @@
|
|
1
1
|
import type { IntegrationObject } from '../schemas/IntegrationObject';
|
2
|
-
export interface
|
2
|
+
export interface CollectionEnriched {
|
3
3
|
active?: boolean;
|
4
4
|
categoryDescription?: string;
|
5
|
-
categoryId?: string;
|
6
5
|
categoryName?: string;
|
7
6
|
/**
|
8
7
|
* @format int32
|
@@ -13,6 +12,7 @@ export interface CollectionObject {
|
|
13
12
|
integrationFilters?: IntegrationObject[];
|
14
13
|
leaf?: boolean;
|
15
14
|
name?: string;
|
15
|
+
ouCategoryId?: string;
|
16
16
|
/**
|
17
17
|
* @format int32
|
18
18
|
*/
|
@@ -2,25 +2,25 @@ export interface SummaryValueChange {
|
|
2
2
|
/**
|
3
3
|
* @format double
|
4
4
|
*/
|
5
|
-
|
5
|
+
percentageChangeCount?: number;
|
6
6
|
/**
|
7
7
|
* @format double
|
8
8
|
*/
|
9
|
-
|
9
|
+
percentageChangeFailureRate?: number;
|
10
10
|
/**
|
11
11
|
* @format double
|
12
12
|
*/
|
13
|
-
|
13
|
+
percentageChangeMean?: number;
|
14
14
|
/**
|
15
15
|
* @format double
|
16
16
|
*/
|
17
|
-
|
17
|
+
percentageChangeMedian?: number;
|
18
18
|
/**
|
19
19
|
* @format double
|
20
20
|
*/
|
21
|
-
|
21
|
+
percentageChangeP90?: number;
|
22
22
|
/**
|
23
23
|
* @format double
|
24
24
|
*/
|
25
|
-
|
25
|
+
percentageChangeP95?: number;
|
26
26
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
3
|
-
"version": "0.10.
|
3
|
+
"version": "0.10.11",
|
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
|