@fbrc/sdk 0.0.10 → 0.0.11

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.
@@ -119,7 +119,7 @@ class ResourcesApi extends runtime.BaseAPI {
119
119
  if (this.configuration && this.configuration.apiKey) {
120
120
  headerParameters["X-Api-Key"] = yield this.configuration.apiKey("X-Api-Key"); // ApiKey authentication
121
121
  }
122
- let urlPath = `/v2/resource/recover`;
122
+ let urlPath = `/v2/resources/recover`;
123
123
  const response = yield this.request({
124
124
  path: urlPath,
125
125
  method: 'POST',
@@ -156,7 +156,7 @@ class ResourcesApi extends runtime.BaseAPI {
156
156
  if (this.configuration && this.configuration.apiKey) {
157
157
  headerParameters["X-Api-Key"] = yield this.configuration.apiKey("X-Api-Key"); // ApiKey authentication
158
158
  }
159
- let urlPath = `/v2/resource/delete`;
159
+ let urlPath = `/v2/resources/delete`;
160
160
  const response = yield this.request({
161
161
  path: urlPath,
162
162
  method: 'POST',
@@ -46,7 +46,7 @@ class SubscriptionApi extends runtime.BaseAPI {
46
46
  if (this.configuration && this.configuration.apiKey) {
47
47
  headerParameters["X-Api-Key"] = yield this.configuration.apiKey("X-Api-Key"); // ApiKey authentication
48
48
  }
49
- let urlPath = `/v2/subscription`;
49
+ let urlPath = `/v2/subscriptions`;
50
50
  const response = yield this.request({
51
51
  path: urlPath,
52
52
  method: 'GET',
@@ -43,7 +43,7 @@ class UserProfileApi extends runtime.BaseAPI {
43
43
  if (this.configuration && this.configuration.apiKey) {
44
44
  headerParameters["X-Api-Key"] = yield this.configuration.apiKey("X-Api-Key"); // ApiKey authentication
45
45
  }
46
- let urlPath = `/v2/user/me`;
46
+ let urlPath = `/v2/users/me`;
47
47
  const response = yield this.request({
48
48
  path: urlPath,
49
49
  method: 'GET',
@@ -116,7 +116,7 @@ export class ResourcesApi extends runtime.BaseAPI {
116
116
  if (this.configuration && this.configuration.apiKey) {
117
117
  headerParameters["X-Api-Key"] = yield this.configuration.apiKey("X-Api-Key"); // ApiKey authentication
118
118
  }
119
- let urlPath = `/v2/resource/recover`;
119
+ let urlPath = `/v2/resources/recover`;
120
120
  const response = yield this.request({
121
121
  path: urlPath,
122
122
  method: 'POST',
@@ -153,7 +153,7 @@ export class ResourcesApi extends runtime.BaseAPI {
153
153
  if (this.configuration && this.configuration.apiKey) {
154
154
  headerParameters["X-Api-Key"] = yield this.configuration.apiKey("X-Api-Key"); // ApiKey authentication
155
155
  }
156
- let urlPath = `/v2/resource/delete`;
156
+ let urlPath = `/v2/resources/delete`;
157
157
  const response = yield this.request({
158
158
  path: urlPath,
159
159
  method: 'POST',
@@ -43,7 +43,7 @@ export class SubscriptionApi extends runtime.BaseAPI {
43
43
  if (this.configuration && this.configuration.apiKey) {
44
44
  headerParameters["X-Api-Key"] = yield this.configuration.apiKey("X-Api-Key"); // ApiKey authentication
45
45
  }
46
- let urlPath = `/v2/subscription`;
46
+ let urlPath = `/v2/subscriptions`;
47
47
  const response = yield this.request({
48
48
  path: urlPath,
49
49
  method: 'GET',
@@ -40,7 +40,7 @@ export class UserProfileApi extends runtime.BaseAPI {
40
40
  if (this.configuration && this.configuration.apiKey) {
41
41
  headerParameters["X-Api-Key"] = yield this.configuration.apiKey("X-Api-Key"); // ApiKey authentication
42
42
  }
43
- let urlPath = `/v2/user/me`;
43
+ let urlPath = `/v2/users/me`;
44
44
  const response = yield this.request({
45
45
  path: urlPath,
46
46
  method: 'GET',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fbrc/sdk",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Client library for Fabric API",
5
5
  "author": "",
6
6
  "license": "Apache-2.0",
@@ -169,7 +169,7 @@ export class ResourcesApi extends runtime.BaseAPI {
169
169
  }
170
170
 
171
171
 
172
- let urlPath = `/v2/resource/recover`;
172
+ let urlPath = `/v2/resources/recover`;
173
173
 
174
174
  const response = await this.request({
175
175
  path: urlPath,
@@ -213,7 +213,7 @@ export class ResourcesApi extends runtime.BaseAPI {
213
213
  }
214
214
 
215
215
 
216
- let urlPath = `/v2/resource/delete`;
216
+ let urlPath = `/v2/resources/delete`;
217
217
 
218
218
  const response = await this.request({
219
219
  path: urlPath,
@@ -57,7 +57,7 @@ export class SubscriptionApi extends runtime.BaseAPI {
57
57
  }
58
58
 
59
59
 
60
- let urlPath = `/v2/subscription`;
60
+ let urlPath = `/v2/subscriptions`;
61
61
 
62
62
  const response = await this.request({
63
63
  path: urlPath,
@@ -49,7 +49,7 @@ export class UserProfileApi extends runtime.BaseAPI {
49
49
  }
50
50
 
51
51
 
52
- let urlPath = `/v2/user/me`;
52
+ let urlPath = `/v2/users/me`;
53
53
 
54
54
  const response = await this.request({
55
55
  path: urlPath,