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

Commit

Permalink
Release v6.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marie-j authored and CDS Agent committed Apr 5, 2019
1 parent d4cf185 commit 3fa24ff
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 6 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.7.0",
"version": "6.8.0",
"main": "./dist/ovh-api-services.min.js",
"repository": {
"type": "git",
Expand Down
31 changes: 31 additions & 0 deletions dist/ovh-api-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -22481,6 +22481,37 @@ angular.module("ovh-api-services").service("OvhApiTelephonyVxmlV6", ["$resource"
});
}]);

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

var cache = $cacheFactory("OvhApiUniversesAapi");

var universesResource = $resource("/universes", {
}, {
query: {
method: "GET",
isArray: true,
serviceType: "aapi",
cache: cache
}
});

universesResource.resetCache = function () {
cache.removeAll();
};

return universesResource;
}]);

angular.module("ovh-api-services").service("OvhApiUniverses", ["$injector", function ($injector) {
"use strict";
return {
Aapi: function () {
return $injector.get("OvhApiUniversesAapi");
}
};
}]);

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

Expand Down
9 changes: 5 additions & 4 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.7.0",
"version": "6.8.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 3fa24ff

Please sign in to comment.