@tiba-spark/client-shared-lib 25.4.0-401 → 25.4.0-408

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.
@@ -3826,7 +3826,7 @@ class DynamicPricingCloudServiceProxy {
3826
3826
  * @return Success
3827
3827
  */
3828
3828
  getDynamicPricingByParkId(facilityId) {
3829
- let url_ = this.baseUrl + "/api/services/dynamicpricing/facility/{facilityId}";
3829
+ let url_ = this.baseUrl + "/api/services/facility/{facilityId}/dynamicpricing";
3830
3830
  if (facilityId === undefined || facilityId === null)
3831
3831
  throw new Error("The parameter 'facilityId' must be defined.");
3832
3832
  url_ = url_.replace("{facilityId}", encodeURIComponent("" + facilityId));
@@ -3891,7 +3891,7 @@ class DynamicPricingCloudServiceProxy {
3891
3891
  * @return Success
3892
3892
  */
3893
3893
  createDynamicPricing(facilityId, body) {
3894
- let url_ = this.baseUrl + "/api/services/dynamicpricing/facility/{facilityId}";
3894
+ let url_ = this.baseUrl + "/api/services/facility/{facilityId}/dynamicpricing";
3895
3895
  if (facilityId === undefined || facilityId === null)
3896
3896
  throw new Error("The parameter 'facilityId' must be defined.");
3897
3897
  url_ = url_.replace("{facilityId}", encodeURIComponent("" + facilityId));
@@ -3959,7 +3959,7 @@ class DynamicPricingCloudServiceProxy {
3959
3959
  * @return Success
3960
3960
  */
3961
3961
  updateDynamicPricing(facilityId, body) {
3962
- let url_ = this.baseUrl + "/api/services/dynamicpricing/facility/{facilityId}";
3962
+ let url_ = this.baseUrl + "/api/services/facility/{facilityId}/dynamicpricing";
3963
3963
  if (facilityId === undefined || facilityId === null)
3964
3964
  throw new Error("The parameter 'facilityId' must be defined.");
3965
3965
  url_ = url_.replace("{facilityId}", encodeURIComponent("" + facilityId));
@@ -4027,7 +4027,7 @@ class DynamicPricingCloudServiceProxy {
4027
4027
  * @return Success
4028
4028
  */
4029
4029
  setEnabled(facilityId, id, isEnabled) {
4030
- let url_ = this.baseUrl + "/api/services/dynamicpricing/facility/{facilityId}/set-enabled/{id}?";
4030
+ let url_ = this.baseUrl + "/api/services/facility/{facilityId}/dynamicpricing/{id}?";
4031
4031
  if (facilityId === undefined || facilityId === null)
4032
4032
  throw new Error("The parameter 'facilityId' must be defined.");
4033
4033
  url_ = url_.replace("{facilityId}", encodeURIComponent("" + facilityId));
@@ -4098,7 +4098,7 @@ class DynamicPricingCloudServiceProxy {
4098
4098
  * @return Success
4099
4099
  */
4100
4100
  deleteDynamicPricing(facilityId, id) {
4101
- let url_ = this.baseUrl + "/api/services/dynamicpricing/facility/{facilityId}/delete/{id}";
4101
+ let url_ = this.baseUrl + "/api/services/facility/{facilityId}/dynamicpricing/{id}";
4102
4102
  if (facilityId === undefined || facilityId === null)
4103
4103
  throw new Error("The parameter 'facilityId' must be defined.");
4104
4104
  url_ = url_.replace("{facilityId}", encodeURIComponent("" + facilityId));
@@ -4166,7 +4166,7 @@ class DynamicPricingCloudServiceProxy {
4166
4166
  * @return Success
4167
4167
  */
4168
4168
  updateDynamicPricingConditionPriority(facilityId, body) {
4169
- let url_ = this.baseUrl + "/api/services/dynamicpricing/facility/{facilityId}/update-priority";
4169
+ let url_ = this.baseUrl + "/api/services/facility/{facilityId}/dynamicpricing/update-priority";
4170
4170
  if (facilityId === undefined || facilityId === null)
4171
4171
  throw new Error("The parameter 'facilityId' must be defined.");
4172
4172
  url_ = url_.replace("{facilityId}", encodeURIComponent("" + facilityId));