@connectedxm/client 6.2.1 → 6.2.2
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/index.d.ts +2 -6
- package/dist/index.js +1 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -462,7 +462,6 @@ interface RegistrationQuestionChoice extends BaseRegistrationQuestionChoice {
|
|
|
462
462
|
interface BaseSearchListValue {
|
|
463
463
|
id: string;
|
|
464
464
|
value: string;
|
|
465
|
-
top: boolean;
|
|
466
465
|
}
|
|
467
466
|
interface SearchListValue extends BaseSearchListValue {
|
|
468
467
|
createdAt: string;
|
|
@@ -4675,12 +4674,9 @@ declare const useGetSearchLists: (params?: Omit<InfiniteQueryParams, "pageParam"
|
|
|
4675
4674
|
declare const SEARCH_LIST_VALUES_QUERY_KEY: (searchListId: string) => string[];
|
|
4676
4675
|
interface GetSearchListValuesProps extends InfiniteQueryParams {
|
|
4677
4676
|
searchListId: string;
|
|
4678
|
-
top?: boolean;
|
|
4679
4677
|
}
|
|
4680
|
-
declare const GetSearchListValues: ({ searchListId, pageParam, pageSize, orderBy, search,
|
|
4681
|
-
declare const useGetSearchListValues: (searchListId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams"
|
|
4682
|
-
top?: boolean;
|
|
4683
|
-
}, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSearchListValues>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SearchListValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4678
|
+
declare const GetSearchListValues: ({ searchListId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSearchListValuesProps) => Promise<ConnectedXMResponse<SearchListValue[]>>;
|
|
4679
|
+
declare const useGetSearchListValues: (searchListId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSearchListValues>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SearchListValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4684
4680
|
|
|
4685
4681
|
declare const SELF_ADDRESS_QUERY_KEY: (addressId: string) => QueryKey;
|
|
4686
4682
|
interface GetSelfAddressProps extends SingleQueryParams {
|
package/dist/index.js
CHANGED
|
@@ -3437,7 +3437,6 @@ var GetSearchListValues = async ({
|
|
|
3437
3437
|
pageSize,
|
|
3438
3438
|
orderBy,
|
|
3439
3439
|
search,
|
|
3440
|
-
top,
|
|
3441
3440
|
clientApiParams
|
|
3442
3441
|
}) => {
|
|
3443
3442
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
@@ -3446,8 +3445,7 @@ var GetSearchListValues = async ({
|
|
|
3446
3445
|
page: pageParam || void 0,
|
|
3447
3446
|
pageSize: pageSize || void 0,
|
|
3448
3447
|
orderBy: orderBy || void 0,
|
|
3449
|
-
search: search || void 0
|
|
3450
|
-
top: top || void 0
|
|
3448
|
+
search: search || void 0
|
|
3451
3449
|
}
|
|
3452
3450
|
});
|
|
3453
3451
|
return data;
|