@springtree/eva-services-core-management 2.30.0 → 2.31.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.
|
@@ -7383,6 +7383,19 @@ The maximum amount of users that can be rebalanced in a single request is 10,000
|
|
|
7383
7383
|
request?: EVA.Core.Management.RemoveRolesFromManualDiscount;
|
|
7384
7384
|
response?: EVA.Core.EmptyResponseMessage;
|
|
7385
7385
|
}
|
|
7386
|
+
/**
|
|
7387
|
+
* Restart the survey response
|
|
7388
|
+
*
|
|
7389
|
+
* @export
|
|
7390
|
+
* @class RestartSurveyResponse
|
|
7391
|
+
* @implements {EvaService}
|
|
7392
|
+
*/
|
|
7393
|
+
class RestartSurveyResponse implements IEvaServiceDefinition {
|
|
7394
|
+
name: string;
|
|
7395
|
+
path: string;
|
|
7396
|
+
request?: EVA.Core.Management.RestartSurveyResponse;
|
|
7397
|
+
response?: EVA.Core.Management.QuestionResponse;
|
|
7398
|
+
}
|
|
7386
7399
|
/**
|
|
7387
7400
|
* Service for generating a new SecretKey for an `EndpointConfiguration`.
|
|
7388
7401
|
|
|
@@ -7720,6 +7733,19 @@ The UserType defines as which UserType the User will act when logging in. For em
|
|
|
7720
7733
|
request?: EVA.Core.Management.StartSurvey;
|
|
7721
7734
|
response?: EVA.Core.Management.StartSurveyResponse;
|
|
7722
7735
|
}
|
|
7736
|
+
/**
|
|
7737
|
+
* Create and start a preview.
|
|
7738
|
+
*
|
|
7739
|
+
* @export
|
|
7740
|
+
* @class StartSurveyPreview
|
|
7741
|
+
* @implements {EvaService}
|
|
7742
|
+
*/
|
|
7743
|
+
class StartSurveyPreview implements IEvaServiceDefinition {
|
|
7744
|
+
name: string;
|
|
7745
|
+
path: string;
|
|
7746
|
+
request?: EVA.Core.Management.StartSurveyPreview;
|
|
7747
|
+
response?: EVA.Core.Management.StartSurveyPreviewResponse;
|
|
7748
|
+
}
|
|
7723
7749
|
/**
|
|
7724
7750
|
* Unblock a users subscription.
|
|
7725
7751
|
*
|