fusio-sdk 3.0.6 → 3.0.7

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.
@@ -60,5 +60,5 @@ export declare class ActionTag extends TagAbstract {
60
60
  * @throws {MessageException}
61
61
  * @throws {ClientException}
62
62
  */
63
- getAll(startIndex?: number, count?: number, categoryId?: number): Promise<ActionCollection>;
63
+ getAll(startIndex?: number, count?: number): Promise<ActionCollection>;
64
64
  }
@@ -251,7 +251,7 @@ export class ActionTag extends TagAbstract {
251
251
  * @throws {MessageException}
252
252
  * @throws {ClientException}
253
253
  */
254
- async getAll(startIndex, count, categoryId) {
254
+ async getAll(startIndex, count) {
255
255
  const url = this.parser.url('/backend/action', {});
256
256
  let params = {
257
257
  url: url,
@@ -259,7 +259,6 @@ export class ActionTag extends TagAbstract {
259
259
  params: this.parser.query({
260
260
  'startIndex': startIndex,
261
261
  'count': count,
262
- 'categoryId': categoryId,
263
262
  }),
264
263
  };
265
264
  try {
@@ -42,7 +42,7 @@ export declare class EventTag extends TagAbstract {
42
42
  * @throws {MessageException}
43
43
  * @throws {ClientException}
44
44
  */
45
- getAll(categoryId?: number, startIndex?: number, count?: number, search?: string): Promise<EventCollection>;
45
+ getAll(startIndex?: number, count?: number, search?: string): Promise<EventCollection>;
46
46
  /**
47
47
  * @returns {Promise<Message>}
48
48
  * @throws {MessageException}
@@ -156,13 +156,12 @@ export class EventTag extends TagAbstract {
156
156
  * @throws {MessageException}
157
157
  * @throws {ClientException}
158
158
  */
159
- async getAll(categoryId, startIndex, count, search) {
159
+ async getAll(startIndex, count, search) {
160
160
  const url = this.parser.url('/backend/event', {});
161
161
  let params = {
162
162
  url: url,
163
163
  method: 'GET',
164
164
  params: this.parser.query({
165
- 'categoryId': categoryId,
166
165
  'startIndex': startIndex,
167
166
  'count': count,
168
167
  'search': search,
@@ -38,5 +38,5 @@ export declare class OperationTag extends TagAbstract {
38
38
  * @throws {MessageException}
39
39
  * @throws {ClientException}
40
40
  */
41
- getAll(categoryId?: number, startIndex?: number, count?: number, search?: string): Promise<OperationCollection>;
41
+ getAll(startIndex?: number, count?: number, search?: string): Promise<OperationCollection>;
42
42
  }
@@ -156,13 +156,12 @@ export class OperationTag extends TagAbstract {
156
156
  * @throws {MessageException}
157
157
  * @throws {ClientException}
158
158
  */
159
- async getAll(categoryId, startIndex, count, search) {
159
+ async getAll(startIndex, count, search) {
160
160
  const url = this.parser.url('/backend/operation', {});
161
161
  let params = {
162
162
  url: url,
163
163
  method: 'GET',
164
164
  params: this.parser.query({
165
- 'categoryId': categoryId,
166
165
  'startIndex': startIndex,
167
166
  'count': count,
168
167
  'search': search,
@@ -52,5 +52,5 @@ export declare class SchemaTag extends TagAbstract {
52
52
  * @throws {MessageException}
53
53
  * @throws {ClientException}
54
54
  */
55
- getAll(categoryId?: number, startIndex?: number, count?: number, search?: string): Promise<SchemaCollection>;
55
+ getAll(startIndex?: number, count?: number, search?: string): Promise<SchemaCollection>;
56
56
  }
@@ -227,13 +227,12 @@ export class SchemaTag extends TagAbstract {
227
227
  * @throws {MessageException}
228
228
  * @throws {ClientException}
229
229
  */
230
- async getAll(categoryId, startIndex, count, search) {
230
+ async getAll(startIndex, count, search) {
231
231
  const url = this.parser.url('/backend/schema', {});
232
232
  let params = {
233
233
  url: url,
234
234
  method: 'GET',
235
235
  params: this.parser.query({
236
- 'categoryId': categoryId,
237
236
  'startIndex': startIndex,
238
237
  'count': count,
239
238
  'search': search,
@@ -45,5 +45,5 @@ export declare class ScopeTag extends TagAbstract {
45
45
  * @throws {MessageException}
46
46
  * @throws {ClientException}
47
47
  */
48
- getAll(categoryId?: number, startIndex?: number, count?: number, search?: string): Promise<ScopeCollection>;
48
+ getAll(startIndex?: number, count?: number, search?: string): Promise<ScopeCollection>;
49
49
  }
@@ -186,13 +186,12 @@ export class ScopeTag extends TagAbstract {
186
186
  * @throws {MessageException}
187
187
  * @throws {ClientException}
188
188
  */
189
- async getAll(categoryId, startIndex, count, search) {
189
+ async getAll(startIndex, count, search) {
190
190
  const url = this.parser.url('/backend/scope', {});
191
191
  let params = {
192
192
  url: url,
193
193
  method: 'GET',
194
194
  params: this.parser.query({
195
- 'categoryId': categoryId,
196
195
  'startIndex': startIndex,
197
196
  'count': count,
198
197
  'search': search,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fusio-sdk",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
4
4
  "description": "SDK to talk to the Fusio API",
5
5
  "keywords": [
6
6
  "API",