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