@connectedxm/client 6.2.1 → 6.2.3
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 +6 -6
- package/dist/index.js +1 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -194,6 +194,7 @@ interface Self extends Omit<Account, "_count"> {
|
|
|
194
194
|
chatToken?: string;
|
|
195
195
|
locale: string;
|
|
196
196
|
termsAccepted: string | null;
|
|
197
|
+
internalRefId: string | null;
|
|
197
198
|
_count: {
|
|
198
199
|
chatChannels: number;
|
|
199
200
|
notifications: number;
|
|
@@ -462,7 +463,6 @@ interface RegistrationQuestionChoice extends BaseRegistrationQuestionChoice {
|
|
|
462
463
|
interface BaseSearchListValue {
|
|
463
464
|
id: string;
|
|
464
465
|
value: string;
|
|
465
|
-
top: boolean;
|
|
466
466
|
}
|
|
467
467
|
interface SearchListValue extends BaseSearchListValue {
|
|
468
468
|
createdAt: string;
|
|
@@ -1933,6 +1933,7 @@ interface OrganizationConfig {
|
|
|
1933
1933
|
ADAPTIVE_ICON: string | null;
|
|
1934
1934
|
SPLASH_SCREEN: string | null;
|
|
1935
1935
|
SPLASH_SCREEN_COLOR: string;
|
|
1936
|
+
INTERNAL_REF_ID_NAME: string;
|
|
1936
1937
|
DEFAULT_LOCALE: string;
|
|
1937
1938
|
LOCALES: string[];
|
|
1938
1939
|
LANGUAGES: Partial<Record<string, Record<string, string>>>;
|
|
@@ -1948,6 +1949,7 @@ interface OrganizationConfig {
|
|
|
1948
1949
|
PHONE: boolean;
|
|
1949
1950
|
TITLE: boolean;
|
|
1950
1951
|
COMPANY: boolean;
|
|
1952
|
+
INTERNAL_REF_ID: boolean;
|
|
1951
1953
|
};
|
|
1952
1954
|
};
|
|
1953
1955
|
MODULES: Record<keyof typeof OrganizationModuleType, OrganizationModule>;
|
|
@@ -3658,6 +3660,7 @@ interface CreateLoginAccountAccount {
|
|
|
3658
3660
|
phone?: string;
|
|
3659
3661
|
title?: string;
|
|
3660
3662
|
company?: string;
|
|
3663
|
+
internalRefId?: string;
|
|
3661
3664
|
bio?: string;
|
|
3662
3665
|
website?: string;
|
|
3663
3666
|
video?: string;
|
|
@@ -4675,12 +4678,9 @@ declare const useGetSearchLists: (params?: Omit<InfiniteQueryParams, "pageParam"
|
|
|
4675
4678
|
declare const SEARCH_LIST_VALUES_QUERY_KEY: (searchListId: string) => string[];
|
|
4676
4679
|
interface GetSearchListValuesProps extends InfiniteQueryParams {
|
|
4677
4680
|
searchListId: string;
|
|
4678
|
-
top?: boolean;
|
|
4679
4681
|
}
|
|
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>>;
|
|
4682
|
+
declare const GetSearchListValues: ({ searchListId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSearchListValuesProps) => Promise<ConnectedXMResponse<SearchListValue[]>>;
|
|
4683
|
+
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
4684
|
|
|
4685
4685
|
declare const SELF_ADDRESS_QUERY_KEY: (addressId: string) => QueryKey;
|
|
4686
4686
|
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;
|