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

Commit

Permalink
Release v6.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyDec authored and CDS Agent committed Apr 10, 2019
1 parent f6aae2b commit ebde613
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ovh-api-services",
"description": "Contains all angular $resource for OVH API.",
"version": "6.9.0",
"version": "6.10.0",
"main": "./dist/ovh-api-services.min.js",
"repository": {
"type": "git",
Expand Down
29 changes: 29 additions & 0 deletions dist/ovh-api-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -24180,6 +24180,32 @@ angular.module("ovh-api-services").service("OvhApiXdslEmail", ["$injector", func
};
}]);

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

return {
v6: function () {
return $injector.get("OvhApiXdslIncidentV6");
}
};
}]);

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

var cache = $cacheFactory("OvhApiXdslIncidentV6");

return $resource("/xdsl/:serviceName/incident", {
serviceName: "@serviceName"
}, {
get: {
method: "GET",
cache: cache,
isArray: false
}
});
}]);

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

Expand Down Expand Up @@ -25553,6 +25579,9 @@ angular.module("ovh-api-services").service("OvhApiXdsl", ["$injector", "$cacheFa
Email: function () {
return $injector.get("OvhApiXdslEmail");
},
Incident: function () {
return $injector.get("OvhApiXdslIncident");
},
Lines: function () {
return $injector.get("OvhApiXdslLines");
},
Expand Down
6 changes: 3 additions & 3 deletions dist/ovh-api-services.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ovh-api-services",
"version": "6.9.0",
"version": "6.10.0",
"description": "Contains all angular $resource for OVH API.",
"main": "./dist/ovh-api-services.min.js",
"repository": "ovh-ux/ovh-api-services",
Expand Down

0 comments on commit ebde613

Please sign in to comment.