Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
Release v7.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marie-j authored and CDS Agent committed Jul 23, 2019
1 parent ccf0e6c commit 9932f51
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 17 deletions.
52 changes: 52 additions & 0 deletions dist/ovh-api-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,58 @@ angular.module("ovh-api-services").service("OvhApiAuthV6", ["$resource", "$http"
}]
);

angular.module("ovh-api-services").service("OvhApiBillingAutorenew", ["$injector", function ($injector) {
"use strict";

return {
Services: function () {
return $injector.get("OvhApiBillingAutorenewServices");
}
};

}]);

angular.module("ovh-api-services").service("OvhApiBillingAutorenewServicesAapi", ["$resource", function ($resource) {
"use strict";

var vpsResource = $resource("/sws/billing/autorenew/services", {
}, {
query: {
method: "GET",
serviceType: "aapi"
},
put: {
url: "/sws/billing/autorenew/services/update",
method: "PUT",
serviceType: "aapi"
}
});

return vpsResource;
}]);

angular.module("ovh-api-services").service("OvhApiBillingAutorenewServices", ["$injector", function ($injector) {
"use strict";

return {
Aapi: function () {
return $injector.get("OvhApiBillingAutorenewServicesAapi");
}
};

}]);

angular.module("ovh-api-services").service("OvhApiBilling", ["$injector", function ($injector) {
"use strict";

return {
Autorenew: function () {
return $injector.get("OvhApiBillingAutorenew");
}
};

}]);

angular.module("ovh-api-services").service("OvhApiCdn", ["$injector", function ($injector) {
"use strict";
return {
Expand Down
Loading

0 comments on commit 9932f51

Please sign in to comment.