@connectedxm/client 4.1.0 → 4.1.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 +6 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -754,6 +754,7 @@ interface BaseSession {
|
|
|
754
754
|
sortOrder: number | null;
|
|
755
755
|
nonSession: boolean;
|
|
756
756
|
registrationEnabled: boolean;
|
|
757
|
+
registrationEnd: string | null;
|
|
757
758
|
price: number | null;
|
|
758
759
|
}
|
|
759
760
|
interface Session extends BaseSession {
|
|
@@ -1868,11 +1869,11 @@ interface OrganizationModule {
|
|
|
1868
1869
|
}
|
|
1869
1870
|
interface OrganizationOAuth {
|
|
1870
1871
|
name: string;
|
|
1871
|
-
btnText?: string;
|
|
1872
|
-
icon?: string;
|
|
1872
|
+
btnText?: string | null;
|
|
1873
|
+
icon?: string | null;
|
|
1873
1874
|
color: string;
|
|
1874
1875
|
textColor: string;
|
|
1875
|
-
borderColor?: string;
|
|
1876
|
+
borderColor?: string | null;
|
|
1876
1877
|
}
|
|
1877
1878
|
interface BaseSchedule {
|
|
1878
1879
|
name: string;
|
|
@@ -3292,8 +3293,8 @@ declare const SET_SELF_EVENT_ATTENDEE_QUERY_DATA: (client: QueryClient, keyParam
|
|
|
3292
3293
|
interface GetSelfEventAttendeeProps extends SingleQueryParams {
|
|
3293
3294
|
eventId: string;
|
|
3294
3295
|
}
|
|
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>>;
|
|
3296
|
+
declare const GetSelfEventAttendee: ({ eventId, clientApiParams, }: GetSelfEventAttendeeProps) => Promise<ConnectedXMResponse<Registration | null>>;
|
|
3297
|
+
declare const useGetSelfEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3297
3298
|
|
|
3298
3299
|
declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
|
|
3299
3300
|
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;
|