@connectedxm/client 4.1.0 → 4.1.1
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 +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1868,11 +1868,11 @@ interface OrganizationModule {
|
|
|
1868
1868
|
}
|
|
1869
1869
|
interface OrganizationOAuth {
|
|
1870
1870
|
name: string;
|
|
1871
|
-
btnText?: string;
|
|
1872
|
-
icon?: string;
|
|
1871
|
+
btnText?: string | null;
|
|
1872
|
+
icon?: string | null;
|
|
1873
1873
|
color: string;
|
|
1874
1874
|
textColor: string;
|
|
1875
|
-
borderColor?: string;
|
|
1875
|
+
borderColor?: string | null;
|
|
1876
1876
|
}
|
|
1877
1877
|
interface BaseSchedule {
|
|
1878
1878
|
name: string;
|
|
@@ -3292,8 +3292,8 @@ declare const SET_SELF_EVENT_ATTENDEE_QUERY_DATA: (client: QueryClient, keyParam
|
|
|
3292
3292
|
interface GetSelfEventAttendeeProps extends SingleQueryParams {
|
|
3293
3293
|
eventId: string;
|
|
3294
3294
|
}
|
|
3295
|
-
declare const GetSelfEventAttendee: ({ eventId, clientApiParams, }: GetSelfEventAttendeeProps) => Promise<ConnectedXMResponse<Registration>>;
|
|
3296
|
-
declare const useGetSelfEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3295
|
+
declare const GetSelfEventAttendee: ({ eventId, clientApiParams, }: GetSelfEventAttendeeProps) => Promise<ConnectedXMResponse<Registration | null>>;
|
|
3296
|
+
declare const useGetSelfEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3297
3297
|
|
|
3298
3298
|
declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
|
|
3299
3299
|
declare const SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|