@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.
- package/dist/apis/ResourcesApi.js +2 -2
- package/dist/apis/SubscriptionApi.js +1 -1
- package/dist/apis/UserProfileApi.js +1 -1
- package/dist/esm/apis/ResourcesApi.js +2 -2
- package/dist/esm/apis/SubscriptionApi.js +1 -1
- package/dist/esm/apis/UserProfileApi.js +1 -1
- package/package.json +1 -1
- package/src/apis/ResourcesApi.ts +2 -2
- package/src/apis/SubscriptionApi.ts +1 -1
- package/src/apis/UserProfileApi.ts +1 -1
|
@@ -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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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
package/src/apis/ResourcesApi.ts
CHANGED
|
@@ -169,7 +169,7 @@ export class ResourcesApi extends runtime.BaseAPI {
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
|
|
172
|
-
let urlPath = `/v2/
|
|
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/
|
|
216
|
+
let urlPath = `/v2/resources/delete`;
|
|
217
217
|
|
|
218
218
|
const response = await this.request({
|
|
219
219
|
path: urlPath,
|