@springtree/eva-services-core-management 2.24.0 → 2.25.0

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.
@@ -315,6 +315,19 @@ But if the list is a mixed product list, all updates will be applied according t
315
315
  request?: EVA.Core.Management.BlockUserSubscription;
316
316
  response?: EVA.Core.EmptyResponseMessage;
317
317
  }
318
+ /**
319
+ * Cancel the survey response
320
+ *
321
+ * @export
322
+ * @class CancelSurveyResponse
323
+ * @implements {EvaService}
324
+ */
325
+ class CancelSurveyResponse implements IEvaServiceDefinition {
326
+ name: string;
327
+ path: string;
328
+ request?: EVA.Core.Management.CancelSurveyResponse;
329
+ response?: EVA.Core.EmptyResponseMessage;
330
+ }
318
331
  /**
319
332
  * Returns the product count within the persisted product search template
320
333
  When product id is given, it wil checks if a product is part of the persisted product search template result.
@@ -4903,17 +4916,17 @@ These handlers are custom build to fetch values for ProductRequirements from ext
4903
4916
  response?: EVA.Core.Management.GetSurveyQuestionAnswerResponse;
4904
4917
  }
4905
4918
  /**
4906
- * Get the survey question
4919
+ * List the survey questions
4907
4920
  *
4908
4921
  * @export
4909
- * @class GetSurveyQuestionByID
4922
+ * @class GetSurveyQuestions
4910
4923
  * @implements {EvaService}
4911
4924
  */
4912
- class GetSurveyQuestionByID implements IEvaServiceDefinition {
4925
+ class GetSurveyQuestions implements IEvaServiceDefinition {
4913
4926
  name: string;
4914
4927
  path: string;
4915
- request?: EVA.Core.Management.GetSurveyQuestionByID;
4916
- response?: EVA.Core.Management.GetSurveyQuestionByIDResponse;
4928
+ request?: EVA.Core.Management.GetSurveyQuestions;
4929
+ response?: EVA.Core.Management.GetSurveyQuestionsResponse;
4917
4930
  }
4918
4931
  /**
4919
4932
  * List the UnitOfMeasures
@@ -6464,19 +6477,6 @@ If neither `OrganizationUnitIDs` nor `OrganizationUnitSetID` are specified, the
6464
6477
  request?: EVA.Core.Management.ListSupplierProducts;
6465
6478
  response?: EVA.Core.Management.ListSupplierProductsResponse;
6466
6479
  }
6467
- /**
6468
- * List the survey questions
6469
- *
6470
- * @export
6471
- * @class ListSurveyQuestions
6472
- * @implements {EvaService}
6473
- */
6474
- class ListSurveyQuestions implements IEvaServiceDefinition {
6475
- name: string;
6476
- path: string;
6477
- request?: EVA.Core.Management.ListSurveyQuestions;
6478
- response?: EVA.Core.Management.ListSurveyQuestionsResponse;
6479
- }
6480
6480
  /**
6481
6481
  * List the surveys
6482
6482
  *
@@ -8834,7 +8834,7 @@ Updates the given requirements and removes all other requirements from the Subsc
8834
8834
  /**
8835
8835
  * Update a survey.
8836
8836
  NOTE THAT after update, the published survey will remain active and the current data will be taken into draft mode for republishing.
8837
- After publishing you can no longer change the OrganizationUnitSetID, SurveyContext, TriggerEventType and (depending on the TriggerEventType) some of the TriggerEventData properties.
8837
+ After publishing you can no longer change the OrganizationUnitSetID, SurveyContext, Trigger and (depending on the Trigger) some of the TriggerData properties.
8838
8838
  *
8839
8839
  * @export
8840
8840
  * @class UpdateSurvey