@springtree/eva-services-core-management 2.25.3 → 2.26.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.
@@ -2626,7 +2626,7 @@ When it's SupplierBarcode all matching barcodes will be removed
2626
2626
  response?: EVA.Core.EmptyResponseMessage;
2627
2627
  }
2628
2628
  /**
2629
- * Update a survey
2629
+ * Delete a survey
2630
2630
  *
2631
2631
  * @export
2632
2632
  * @class DeleteSurvey
@@ -3620,6 +3620,19 @@ If available a Description and/or DefaultValue will be returned
3620
3620
  request?: EVA.Core.Management.GetAvailableShippingMethodHandlers;
3621
3621
  response?: EVA.Core.Management.GetAvailableShippingMethodHandlersResponse;
3622
3622
  }
3623
+ /**
3624
+ * Returns available survey distribution handlers.
3625
+ *
3626
+ * @export
3627
+ * @class GetAvailableSurveyDistributionHandlers
3628
+ * @implements {EvaService}
3629
+ */
3630
+ class GetAvailableSurveyDistributionHandlers implements IEvaServiceDefinition {
3631
+ name: string;
3632
+ path: string;
3633
+ request?: EVA.Core.Management.GetAvailableSurveyDistributionHandlers;
3634
+ response?: EVA.Core.Management.GetAvailableSurveyDistributionHandlersResponse;
3635
+ }
3623
3636
  /**
3624
3637
  * Returns available survey triggers.
3625
3638
  *
@@ -7596,6 +7609,19 @@ Will apply all changes or no changes in case of an error
7596
7609
  request?: EVA.Core.Management.SetSurveyQuestionRoutingSequences;
7597
7610
  response?: EVA.Core.EmptyResponseMessage;
7598
7611
  }
7612
+ /**
7613
+ * Takes in all questions of a survey and sets their sequences.
7614
+ *
7615
+ * @export
7616
+ * @class SetSurveyQuestionSequences
7617
+ * @implements {EvaService}
7618
+ */
7619
+ class SetSurveyQuestionSequences implements IEvaServiceDefinition {
7620
+ name: string;
7621
+ path: string;
7622
+ request?: EVA.Core.Management.SetSurveyQuestionSequences;
7623
+ response?: EVA.Core.EmptyResponseMessage;
7624
+ }
7599
7625
  /**
7600
7626
  * Update the Roles for an User. The roles provided will replace any existing roles on this user!
7601
7627