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

Commit

Permalink
Release v6.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FredericEspiau authored and CDS Agent committed Jun 20, 2019
1 parent 5dd30dc commit d098e2c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 20 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.28.1",
"version": "6.29.0",
"main": "./dist/ovh-api-services.min.js",
"repository": {
"type": "git",
Expand Down
24 changes: 18 additions & 6 deletions dist/ovh-api-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -7152,16 +7152,13 @@ angular
var queryCache = $cacheFactory("OvhApiDedicatedCloudServicePacksV6Query");
var cache = $cacheFactory("OvhApiDedicatedCloudServicePacksV6");

var servicePacksResource = $resource("/dedicatedCloud/:serviceName/servicePacks", {
var servicePacksResource = $resource("/dedicatedCloud/:serviceName/servicePacks/:name", {
name: "@name",
serviceName: "@serviceName"
}, {
get: {
cache: cache,
method: "GET",
params: {
name: "@name"
},
url: "/dedicatedCloud/:serviceName/servicePacks/:name"
method: "GET"
},
query: {
cache: queryCache,
Expand Down Expand Up @@ -7245,13 +7242,28 @@ angular.module("ovh-api-services").service("OvhApiDedicatedCloudTaskV6", ["$reso
return taskResource;
}]);

angular
.module("ovh-api-services")
.service("OvhApiDedicatedCloudUserIceberg", ["iceberg", function (iceberg) {
"use strict";

var userResource = iceberg("/dedicatedCloud/:serviceName/user/", {
serviceName: "@serviceName"
});

return userResource;
}]);

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

return {
v6: function () {
return $injector.get("OvhApiDedicatedCloudUserV6");
},
Iceberg: function () {
return $injector.get("OvhApiDedicatedCloudUserIceberg");
},
ObjectRight: function () {
return $injector.get("OvhApiDedicatedCloudUserObjectRight");
},
Expand Down
25 changes: 13 additions & 12 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.28.1",
"version": "6.29.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 d098e2c

Please sign in to comment.