@connectedxm/client 1.5.3 → 1.5.4
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.mts +171 -2
- package/dist/index.d.ts +171 -2
- package/dist/index.js +363 -2
- package/dist/index.mjs +335 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -444,6 +444,7 @@ var OrganizationModuleType = /* @__PURE__ */ ((OrganizationModuleType2) => {
|
|
|
444
444
|
OrganizationModuleType2["invoices"] = "invoices";
|
|
445
445
|
OrganizationModuleType2["announcements"] = "announcements";
|
|
446
446
|
OrganizationModuleType2["bookings"] = "bookings";
|
|
447
|
+
OrganizationModuleType2["surveys"] = "surveys";
|
|
447
448
|
return OrganizationModuleType2;
|
|
448
449
|
})(OrganizationModuleType || {});
|
|
449
450
|
var PaymentIntegrationType = /* @__PURE__ */ ((PaymentIntegrationType2) => {
|
|
@@ -462,6 +463,20 @@ var DayOfWeek = /* @__PURE__ */ ((DayOfWeek2) => {
|
|
|
462
463
|
DayOfWeek2["saturday"] = "saturday";
|
|
463
464
|
return DayOfWeek2;
|
|
464
465
|
})(DayOfWeek || {});
|
|
466
|
+
var SurveyQuestionType = /* @__PURE__ */ ((SurveyQuestionType2) => {
|
|
467
|
+
SurveyQuestionType2["text"] = "text";
|
|
468
|
+
SurveyQuestionType2["textarea"] = "textarea";
|
|
469
|
+
SurveyQuestionType2["number"] = "number";
|
|
470
|
+
SurveyQuestionType2["time"] = "time";
|
|
471
|
+
SurveyQuestionType2["date"] = "date";
|
|
472
|
+
SurveyQuestionType2["toggle"] = "toggle";
|
|
473
|
+
SurveyQuestionType2["select"] = "select";
|
|
474
|
+
SurveyQuestionType2["radio"] = "radio";
|
|
475
|
+
SurveyQuestionType2["checkbox"] = "checkbox";
|
|
476
|
+
SurveyQuestionType2["search"] = "search";
|
|
477
|
+
SurveyQuestionType2["file"] = "file";
|
|
478
|
+
return SurveyQuestionType2;
|
|
479
|
+
})(SurveyQuestionType || {});
|
|
465
480
|
|
|
466
481
|
// src/utilities/AppendInfiniteQuery.ts
|
|
467
482
|
import { produce } from "immer";
|
|
@@ -8314,6 +8329,218 @@ var useGetIntegrationAuth = (integrationType, expiration, options = {}) => {
|
|
|
8314
8329
|
);
|
|
8315
8330
|
};
|
|
8316
8331
|
|
|
8332
|
+
// src/queries/surveys/useGetSurvey.ts
|
|
8333
|
+
var SURVEY_QUERY_KEY = (surveyId) => [
|
|
8334
|
+
"SURVEYS",
|
|
8335
|
+
surveyId
|
|
8336
|
+
];
|
|
8337
|
+
var SET_SURVEY_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
8338
|
+
client.setQueryData(
|
|
8339
|
+
[...SURVEY_QUERY_KEY(...keyParams), ...GetBaseSingleQueryKeys(...baseKeys)],
|
|
8340
|
+
response
|
|
8341
|
+
);
|
|
8342
|
+
};
|
|
8343
|
+
var GetSurvey = async ({
|
|
8344
|
+
surveyId,
|
|
8345
|
+
clientApiParams
|
|
8346
|
+
}) => {
|
|
8347
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
8348
|
+
const { data } = await clientApi.get(`/surveys/${surveyId}`);
|
|
8349
|
+
return data;
|
|
8350
|
+
};
|
|
8351
|
+
var useGetSurvey = (surveyId, options = {}) => {
|
|
8352
|
+
return useConnectedSingleQuery_default(
|
|
8353
|
+
SURVEY_QUERY_KEY(surveyId),
|
|
8354
|
+
(params) => GetSurvey({
|
|
8355
|
+
surveyId,
|
|
8356
|
+
...params
|
|
8357
|
+
}),
|
|
8358
|
+
{
|
|
8359
|
+
...options,
|
|
8360
|
+
staleTime: Infinity,
|
|
8361
|
+
refetchOnWindowFocus: false,
|
|
8362
|
+
refetchOnReconnect: false,
|
|
8363
|
+
enabled: !!surveyId && (options?.enabled ?? true)
|
|
8364
|
+
}
|
|
8365
|
+
);
|
|
8366
|
+
};
|
|
8367
|
+
|
|
8368
|
+
// src/queries/surveys/useGetSurveySubmissions.ts
|
|
8369
|
+
var SURVEY_SUBMISSIONS_QUERY_KEY = (surveyId, status) => {
|
|
8370
|
+
const key = [
|
|
8371
|
+
...SELF_QUERY_KEY(),
|
|
8372
|
+
...SURVEY_QUERY_KEY(surveyId),
|
|
8373
|
+
"SUBMISSIONS"
|
|
8374
|
+
];
|
|
8375
|
+
if (status) key.push(status);
|
|
8376
|
+
return key;
|
|
8377
|
+
};
|
|
8378
|
+
var GetSurveySubmissions = async ({
|
|
8379
|
+
surveyId,
|
|
8380
|
+
status,
|
|
8381
|
+
pageParam,
|
|
8382
|
+
pageSize,
|
|
8383
|
+
orderBy,
|
|
8384
|
+
search,
|
|
8385
|
+
clientApiParams
|
|
8386
|
+
}) => {
|
|
8387
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
8388
|
+
const { data } = await clientApi.get(`/surveys/${surveyId}/submissions`, {
|
|
8389
|
+
params: {
|
|
8390
|
+
page: pageParam || void 0,
|
|
8391
|
+
pageSize: pageSize || void 0,
|
|
8392
|
+
orderBy: orderBy || void 0,
|
|
8393
|
+
search: search || void 0,
|
|
8394
|
+
status: status || void 0
|
|
8395
|
+
}
|
|
8396
|
+
});
|
|
8397
|
+
return data;
|
|
8398
|
+
};
|
|
8399
|
+
var useGetSurveySubmissions = (surveyId = "", status, params = {}, options = {}) => {
|
|
8400
|
+
const { authenticated } = useConnectedXM();
|
|
8401
|
+
return useConnectedInfiniteQuery(
|
|
8402
|
+
SURVEY_SUBMISSIONS_QUERY_KEY(surveyId, status),
|
|
8403
|
+
(params2) => GetSurveySubmissions({
|
|
8404
|
+
surveyId,
|
|
8405
|
+
status,
|
|
8406
|
+
...params2
|
|
8407
|
+
}),
|
|
8408
|
+
params,
|
|
8409
|
+
{
|
|
8410
|
+
...options,
|
|
8411
|
+
enabled: !!authenticated && !!surveyId && (options?.enabled ?? true)
|
|
8412
|
+
}
|
|
8413
|
+
);
|
|
8414
|
+
};
|
|
8415
|
+
|
|
8416
|
+
// src/queries/surveys/useGetSurveySubmission.ts
|
|
8417
|
+
var SURVEY_SUBMISSION_QUERY_KEY = (surveyId, submissionId) => [
|
|
8418
|
+
...SURVEY_SUBMISSIONS_QUERY_KEY(surveyId),
|
|
8419
|
+
"SUBMISSIONS",
|
|
8420
|
+
submissionId
|
|
8421
|
+
];
|
|
8422
|
+
var SET_SELF_SURVEY_SUBMISSION_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
8423
|
+
client.setQueryData(
|
|
8424
|
+
[
|
|
8425
|
+
...SURVEY_SUBMISSION_QUERY_KEY(...keyParams),
|
|
8426
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
8427
|
+
],
|
|
8428
|
+
response
|
|
8429
|
+
);
|
|
8430
|
+
};
|
|
8431
|
+
var GetSurveySubmission = async ({
|
|
8432
|
+
surveyId,
|
|
8433
|
+
submissionId,
|
|
8434
|
+
clientApiParams
|
|
8435
|
+
}) => {
|
|
8436
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
8437
|
+
const { data } = await clientApi.get(
|
|
8438
|
+
`/surveys/${surveyId}/submissions/${submissionId}`
|
|
8439
|
+
);
|
|
8440
|
+
return data;
|
|
8441
|
+
};
|
|
8442
|
+
var useGetSurveySubmission = (surveyId, submissionId, options = {}) => {
|
|
8443
|
+
return useConnectedSingleQuery_default(
|
|
8444
|
+
SURVEY_SUBMISSION_QUERY_KEY(surveyId, submissionId),
|
|
8445
|
+
(params) => GetSurveySubmission({
|
|
8446
|
+
surveyId,
|
|
8447
|
+
submissionId,
|
|
8448
|
+
...params
|
|
8449
|
+
}),
|
|
8450
|
+
{
|
|
8451
|
+
...options,
|
|
8452
|
+
staleTime: Infinity,
|
|
8453
|
+
refetchOnWindowFocus: false,
|
|
8454
|
+
refetchOnReconnect: false,
|
|
8455
|
+
enabled: !!surveyId && !!submissionId && (options?.enabled ?? true)
|
|
8456
|
+
}
|
|
8457
|
+
);
|
|
8458
|
+
};
|
|
8459
|
+
|
|
8460
|
+
// src/queries/surveys/useGetSurveySubmissionSections.ts
|
|
8461
|
+
var SURVEY_SUBMISSION_SECTIONS_QUERY_KEY = (surveyId, submissionId) => [
|
|
8462
|
+
...SURVEY_SUBMISSION_QUERY_KEY(surveyId, submissionId),
|
|
8463
|
+
"SECTIONS"
|
|
8464
|
+
];
|
|
8465
|
+
var SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
8466
|
+
client.setQueryData(
|
|
8467
|
+
[
|
|
8468
|
+
...SURVEY_SUBMISSION_SECTIONS_QUERY_KEY(...keyParams),
|
|
8469
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
8470
|
+
],
|
|
8471
|
+
response
|
|
8472
|
+
);
|
|
8473
|
+
};
|
|
8474
|
+
var GetSurveySubmissionSections = async ({
|
|
8475
|
+
surveyId,
|
|
8476
|
+
submissionId,
|
|
8477
|
+
clientApiParams
|
|
8478
|
+
}) => {
|
|
8479
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
8480
|
+
const { data } = await clientApi.get(
|
|
8481
|
+
`/surveys/${surveyId}/submissions/${submissionId}/sections`
|
|
8482
|
+
);
|
|
8483
|
+
return data;
|
|
8484
|
+
};
|
|
8485
|
+
var useGetSurveySubmissionSections = (surveyId, submissionId, options = {}) => {
|
|
8486
|
+
return useConnectedSingleQuery_default(
|
|
8487
|
+
SURVEY_SUBMISSION_SECTIONS_QUERY_KEY(surveyId, submissionId),
|
|
8488
|
+
(params) => GetSurveySubmissionSections({
|
|
8489
|
+
surveyId,
|
|
8490
|
+
submissionId,
|
|
8491
|
+
...params
|
|
8492
|
+
}),
|
|
8493
|
+
{
|
|
8494
|
+
...options,
|
|
8495
|
+
staleTime: Infinity,
|
|
8496
|
+
refetchOnWindowFocus: false,
|
|
8497
|
+
refetchOnReconnect: false,
|
|
8498
|
+
enabled: !!surveyId && !!submissionId && (options?.enabled ?? true)
|
|
8499
|
+
}
|
|
8500
|
+
);
|
|
8501
|
+
};
|
|
8502
|
+
|
|
8503
|
+
// src/queries/surveys/useGetSurveyQuestionSearchValues.ts
|
|
8504
|
+
var SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY = (surveyId, questionId) => [...SURVEY_QUERY_KEY(surveyId), "QUESTIONS", questionId, "VALUES"];
|
|
8505
|
+
var GetSurveyQuestionSearchValues = async ({
|
|
8506
|
+
surveyId,
|
|
8507
|
+
questionId,
|
|
8508
|
+
pageParam,
|
|
8509
|
+
pageSize,
|
|
8510
|
+
orderBy,
|
|
8511
|
+
search,
|
|
8512
|
+
clientApiParams
|
|
8513
|
+
}) => {
|
|
8514
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
8515
|
+
const { data } = await clientApi.get(
|
|
8516
|
+
`/surveys/${surveyId}/questions/${questionId}/values`,
|
|
8517
|
+
{
|
|
8518
|
+
params: {
|
|
8519
|
+
page: pageParam || void 0,
|
|
8520
|
+
pageSize: pageSize || void 0,
|
|
8521
|
+
orderBy: orderBy || void 0,
|
|
8522
|
+
search: search || void 0
|
|
8523
|
+
}
|
|
8524
|
+
}
|
|
8525
|
+
);
|
|
8526
|
+
return data;
|
|
8527
|
+
};
|
|
8528
|
+
var useGetSurveyQuestionSearchValues = (surveyId = "", questionId = "", params = {}, options = {}) => {
|
|
8529
|
+
return useConnectedInfiniteQuery(
|
|
8530
|
+
SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY(surveyId, questionId),
|
|
8531
|
+
(params2) => GetSurveyQuestionSearchValues({
|
|
8532
|
+
surveyId,
|
|
8533
|
+
questionId,
|
|
8534
|
+
...params2
|
|
8535
|
+
}),
|
|
8536
|
+
params,
|
|
8537
|
+
{
|
|
8538
|
+
...options,
|
|
8539
|
+
enabled: !!surveyId && !!questionId && (options?.enabled ?? true)
|
|
8540
|
+
}
|
|
8541
|
+
);
|
|
8542
|
+
};
|
|
8543
|
+
|
|
8317
8544
|
// src/mutations/useConnectedMutation.ts
|
|
8318
8545
|
import {
|
|
8319
8546
|
useMutation,
|
|
@@ -12165,6 +12392,86 @@ var EnableIntegration = async ({
|
|
|
12165
12392
|
var useEnableIntegration = (options = {}) => {
|
|
12166
12393
|
return useConnectedMutation_default(EnableIntegration, options);
|
|
12167
12394
|
};
|
|
12395
|
+
|
|
12396
|
+
// src/mutations/surveys/useStartSurvey.ts
|
|
12397
|
+
var StartSurvey = async ({
|
|
12398
|
+
surveyId,
|
|
12399
|
+
clientApiParams
|
|
12400
|
+
}) => {
|
|
12401
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
12402
|
+
const { data } = await clientApi.post(
|
|
12403
|
+
`/surveys/${surveyId}/submissions`
|
|
12404
|
+
);
|
|
12405
|
+
return data;
|
|
12406
|
+
};
|
|
12407
|
+
var useStartSurvey = (options = {}) => {
|
|
12408
|
+
return useConnectedMutation_default(StartSurvey, options);
|
|
12409
|
+
};
|
|
12410
|
+
|
|
12411
|
+
// src/mutations/surveys/useSubmitSurvey.ts
|
|
12412
|
+
var SubmitSurvey = async ({
|
|
12413
|
+
surveyId,
|
|
12414
|
+
submissionId,
|
|
12415
|
+
responses,
|
|
12416
|
+
clientApiParams,
|
|
12417
|
+
queryClient
|
|
12418
|
+
}) => {
|
|
12419
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
12420
|
+
const { data } = await clientApi.post(
|
|
12421
|
+
`/surveys/${surveyId}/submissions/${submissionId}/submit`,
|
|
12422
|
+
responses
|
|
12423
|
+
);
|
|
12424
|
+
if (queryClient && data.status === "ok") {
|
|
12425
|
+
queryClient.invalidateQueries({
|
|
12426
|
+
queryKey: SURVEY_SUBMISSION_QUERY_KEY(surveyId, submissionId)
|
|
12427
|
+
});
|
|
12428
|
+
}
|
|
12429
|
+
return data;
|
|
12430
|
+
};
|
|
12431
|
+
var useSubmitSurvey = (options = {}) => {
|
|
12432
|
+
return useConnectedMutation_default(SubmitSurvey, options);
|
|
12433
|
+
};
|
|
12434
|
+
|
|
12435
|
+
// src/mutations/surveys/useUpdateSurveyResponse.ts
|
|
12436
|
+
var UpdateSurveyResponse = async ({
|
|
12437
|
+
surveyId,
|
|
12438
|
+
submissionId,
|
|
12439
|
+
questionId,
|
|
12440
|
+
response,
|
|
12441
|
+
clientApiParams
|
|
12442
|
+
}) => {
|
|
12443
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
12444
|
+
const { data } = await clientApi.put(
|
|
12445
|
+
`/surveys/${surveyId}/submissions/${submissionId}/questions/${questionId}`,
|
|
12446
|
+
{ response }
|
|
12447
|
+
);
|
|
12448
|
+
return data;
|
|
12449
|
+
};
|
|
12450
|
+
var useUpdateSurveyResponse = (options = {}) => {
|
|
12451
|
+
return useConnectedMutation_default(UpdateSurveyResponse, options);
|
|
12452
|
+
};
|
|
12453
|
+
|
|
12454
|
+
// src/mutations/surveys/useUploadSurveyResponseFile.ts
|
|
12455
|
+
var UploadSurveyResponseFile = async ({
|
|
12456
|
+
clientApiParams,
|
|
12457
|
+
surveyId,
|
|
12458
|
+
submissionId,
|
|
12459
|
+
dataUri,
|
|
12460
|
+
name
|
|
12461
|
+
}) => {
|
|
12462
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
12463
|
+
const { data } = await clientApi.post(
|
|
12464
|
+
`/surveys/${surveyId}/submissions/${submissionId}/files`,
|
|
12465
|
+
{
|
|
12466
|
+
dataUri,
|
|
12467
|
+
name
|
|
12468
|
+
}
|
|
12469
|
+
);
|
|
12470
|
+
return data;
|
|
12471
|
+
};
|
|
12472
|
+
var useUploadSurveyResponseFile = (options = {}) => {
|
|
12473
|
+
return useConnectedMutation_default(UploadSurveyResponseFile, options);
|
|
12474
|
+
};
|
|
12168
12475
|
export {
|
|
12169
12476
|
ACCOUNTS_POPULAR_QUERY_KEY,
|
|
12170
12477
|
ACCOUNTS_QUERY_KEY,
|
|
@@ -12518,6 +12825,11 @@ export {
|
|
|
12518
12825
|
GetSeriesList,
|
|
12519
12826
|
GetSubscribedChannels,
|
|
12520
12827
|
GetSubscribedContents,
|
|
12828
|
+
GetSurvey,
|
|
12829
|
+
GetSurveyQuestionSearchValues,
|
|
12830
|
+
GetSurveySubmission,
|
|
12831
|
+
GetSurveySubmissionSections,
|
|
12832
|
+
GetSurveySubmissions,
|
|
12521
12833
|
GetThread,
|
|
12522
12834
|
GetThreadEvent,
|
|
12523
12835
|
GetThreadEvents,
|
|
@@ -12765,9 +13077,12 @@ export {
|
|
|
12765
13077
|
SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA,
|
|
12766
13078
|
SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA,
|
|
12767
13079
|
SET_SELF_QUERY_DATA,
|
|
13080
|
+
SET_SELF_SURVEY_SUBMISSION_QUERY_DATA,
|
|
12768
13081
|
SET_SERIES_EVENTS_QUERY_DATA,
|
|
12769
13082
|
SET_SERIES_LIST_QUERY_DATA,
|
|
12770
13083
|
SET_SERIES_QUERY_DATA,
|
|
13084
|
+
SET_SURVEY_QUERY_DATA,
|
|
13085
|
+
SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA,
|
|
12771
13086
|
SET_THREADS_QUERY_DATA,
|
|
12772
13087
|
SET_THREAD_EVENTS_QUERY_DATA,
|
|
12773
13088
|
SET_THREAD_EVENT_QUERY_DATA,
|
|
@@ -12781,15 +13096,23 @@ export {
|
|
|
12781
13096
|
SET_THREAD_QUERY_DATA,
|
|
12782
13097
|
SUBSCRIBED_CHANNELS_QUERY_KEY,
|
|
12783
13098
|
SUBSCRIBED_CONTENTS_QUERY_KEY,
|
|
13099
|
+
SURVEY_QUERY_KEY,
|
|
13100
|
+
SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY,
|
|
13101
|
+
SURVEY_SUBMISSIONS_QUERY_KEY,
|
|
13102
|
+
SURVEY_SUBMISSION_QUERY_KEY,
|
|
13103
|
+
SURVEY_SUBMISSION_SECTIONS_QUERY_KEY,
|
|
12784
13104
|
SelectSelfEventRegistrationCoupon,
|
|
12785
13105
|
SelfCreateActivity,
|
|
12786
13106
|
SelfUpdateGroupMembership,
|
|
12787
13107
|
SessionPassStatus,
|
|
12788
13108
|
SetContentPublishSchedule,
|
|
13109
|
+
StartSurvey,
|
|
12789
13110
|
SubmitSelfEventRegistration,
|
|
12790
13111
|
SubmitSelfEventRegistrationSessionPasses,
|
|
13112
|
+
SubmitSurvey,
|
|
12791
13113
|
SubscriptionStatus,
|
|
12792
13114
|
SupportTicketType,
|
|
13115
|
+
SurveyQuestionType,
|
|
12793
13116
|
THREADS_QUERY_KEY,
|
|
12794
13117
|
THREAD_EVENTS_QUERY_KEY,
|
|
12795
13118
|
THREAD_EVENT_QUERY_KEY,
|
|
@@ -12838,11 +13161,13 @@ export {
|
|
|
12838
13161
|
UpdateSelfNotificationPreferences,
|
|
12839
13162
|
UpdateSelfPushDevice,
|
|
12840
13163
|
UpdateSubscriptionPaymentMethod,
|
|
13164
|
+
UpdateSurveyResponse,
|
|
12841
13165
|
UpdateThread,
|
|
12842
13166
|
UpdateThreadMember,
|
|
12843
13167
|
UpdateThreadMessage,
|
|
12844
13168
|
UploadChannelContentImage,
|
|
12845
13169
|
UploadFile,
|
|
13170
|
+
UploadSurveyResponseFile,
|
|
12846
13171
|
isListing,
|
|
12847
13172
|
isManagedCoupon,
|
|
12848
13173
|
isRegistrationQuestion,
|
|
@@ -13132,6 +13457,11 @@ export {
|
|
|
13132
13457
|
useGetSeriesList,
|
|
13133
13458
|
useGetSubscribedChannels,
|
|
13134
13459
|
useGetSubscribedContents,
|
|
13460
|
+
useGetSurvey,
|
|
13461
|
+
useGetSurveyQuestionSearchValues,
|
|
13462
|
+
useGetSurveySubmission,
|
|
13463
|
+
useGetSurveySubmissionSections,
|
|
13464
|
+
useGetSurveySubmissions,
|
|
13135
13465
|
useGetThread,
|
|
13136
13466
|
useGetThreadEvent,
|
|
13137
13467
|
useGetThreadEvents,
|
|
@@ -13172,8 +13502,10 @@ export {
|
|
|
13172
13502
|
useSelfCreateActivity,
|
|
13173
13503
|
useSelfUpdateGroupMembership,
|
|
13174
13504
|
useSetContentPublishSchedule,
|
|
13505
|
+
useStartSurvey,
|
|
13175
13506
|
useSubmitSelfEventRegistration,
|
|
13176
13507
|
useSubmitSelfEventRegistrationSessionPasses,
|
|
13508
|
+
useSubmitSurvey,
|
|
13177
13509
|
useTransferPass,
|
|
13178
13510
|
useUndoCheckinListingAttendeePass,
|
|
13179
13511
|
useUnfollowAccount,
|
|
@@ -13205,9 +13537,11 @@ export {
|
|
|
13205
13537
|
useUpdateSelfNotificationPreferences,
|
|
13206
13538
|
useUpdateSelfPushDevice,
|
|
13207
13539
|
useUpdateSubscriptionPaymentMethod,
|
|
13540
|
+
useUpdateSurveyResponse,
|
|
13208
13541
|
useUpdateThread,
|
|
13209
13542
|
useUpdateThreadMember,
|
|
13210
13543
|
useUpdateThreadMessage,
|
|
13211
13544
|
useUploadChannelContentImage,
|
|
13212
|
-
useUploadFile
|
|
13545
|
+
useUploadFile,
|
|
13546
|
+
useUploadSurveyResponseFile
|
|
13213
13547
|
};
|