@emilgroup/task-sdk-node
Advanced tools
+62
-36
@@ -141,12 +141,10 @@ /* tslint:disable */ | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getCategory: async (code: string, expand: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| getCategory: async (code: string, authorization?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| // verify required parameter 'code' is not null or undefined | ||
| assertParamExists('getCategory', 'code', code) | ||
| // verify required parameter 'expand' is not null or undefined | ||
| assertParamExists('getCategory', 'expand', expand) | ||
| const localVarPath = `/taskservice/v1/categories/{code}` | ||
@@ -194,11 +192,13 @@ .replace(`{${"code"}}`, encodeURIComponent(String(code))); | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| listCategories: async (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| listCategories: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| const localVarPath = `/taskservice/v1/categories`; | ||
@@ -222,2 +222,10 @@ // use dummy base URL string because the URL constructor only accepts absolute URLs. | ||
| if (pageSize !== undefined) { | ||
| localVarQueryParameter['pageSize'] = pageSize; | ||
| } | ||
| if (pageToken !== undefined) { | ||
| localVarQueryParameter['pageToken'] = pageToken; | ||
| } | ||
| if (filter !== undefined) { | ||
@@ -227,6 +235,2 @@ localVarQueryParameter['filter'] = filter; | ||
| if (filters !== undefined) { | ||
| localVarQueryParameter['filters'] = filters; | ||
| } | ||
| if (search !== undefined) { | ||
@@ -244,2 +248,6 @@ localVarQueryParameter['search'] = search; | ||
| if (filters !== undefined) { | ||
| localVarQueryParameter['filters'] = filters; | ||
| } | ||
| if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) { | ||
@@ -349,9 +357,9 @@ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken); | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| async getCategory(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCategoryResponseClass>> { | ||
| const localVarAxiosArgs = await localVarAxiosParamCreator.getCategory(code, expand, authorization, options); | ||
| async getCategory(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCategoryResponseClass>> { | ||
| const localVarAxiosArgs = await localVarAxiosParamCreator.getCategory(code, authorization, expand, options); | ||
| return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); | ||
@@ -363,12 +371,14 @@ }, | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| async listCategories(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>> { | ||
| const localVarAxiosArgs = await localVarAxiosParamCreator.listCategories(authorization, filter, filters, search, order, expand, options); | ||
| async listCategories(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>> { | ||
| const localVarAxiosArgs = await localVarAxiosParamCreator.listCategories(authorization, pageSize, pageToken, filter, search, order, expand, filters, options); | ||
| return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); | ||
@@ -425,9 +435,9 @@ }, | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getCategory(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetCategoryResponseClass> { | ||
| return localVarFp.getCategory(code, expand, authorization, options).then((request) => request(axios, basePath)); | ||
| getCategory(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetCategoryResponseClass> { | ||
| return localVarFp.getCategory(code, authorization, expand, options).then((request) => request(axios, basePath)); | ||
| }, | ||
@@ -438,12 +448,14 @@ /** | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| listCategories(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListCategoriesResponseClass> { | ||
| return localVarFp.listCategories(authorization, filter, filters, search, order, expand, options).then((request) => request(axios, basePath)); | ||
| listCategories(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListCategoriesResponseClass> { | ||
| return localVarFp.listCategories(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath)); | ||
| }, | ||
@@ -521,14 +533,14 @@ /** | ||
| /** | ||
| * | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @type {string} | ||
| * @memberof CategoriesApiGetCategory | ||
| */ | ||
| readonly expand: string | ||
| readonly authorization?: string | ||
| /** | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * Expand to fetch additional information about the category. | ||
| * @type {string} | ||
| * @memberof CategoriesApiGetCategory | ||
| */ | ||
| readonly authorization?: string | ||
| readonly expand?: string | ||
| } | ||
@@ -550,17 +562,24 @@ | ||
| /** | ||
| * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @type {number} | ||
| * @memberof CategoriesApiListCategories | ||
| */ | ||
| readonly pageSize?: number | ||
| /** | ||
| * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @type {string} | ||
| * @memberof CategoriesApiListCategories | ||
| */ | ||
| readonly filter?: string | ||
| readonly pageToken?: string | ||
| /** | ||
| * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @type {string} | ||
| * @memberof CategoriesApiListCategories | ||
| */ | ||
| readonly filters?: string | ||
| readonly filter?: string | ||
| /** | ||
| * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @type {string} | ||
@@ -584,2 +603,9 @@ * @memberof CategoriesApiListCategories | ||
| readonly expand?: string | ||
| /** | ||
| * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @type {string} | ||
| * @memberof CategoriesApiListCategories | ||
| */ | ||
| readonly filters?: string | ||
| } | ||
@@ -655,3 +681,3 @@ | ||
| public getCategory(requestParameters: CategoriesApiGetCategoryRequest, options?: AxiosRequestConfig) { | ||
| return CategoriesApiFp(this.configuration).getCategory(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath)); | ||
| return CategoriesApiFp(this.configuration).getCategory(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then((request) => request(this.axios, this.basePath)); | ||
| } | ||
@@ -668,3 +694,3 @@ | ||
| public listCategories(requestParameters: CategoriesApiListCategoriesRequest = {}, options?: AxiosRequestConfig) { | ||
| return CategoriesApiFp(this.configuration).listCategories(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath)); | ||
| return CategoriesApiFp(this.configuration).listCategories(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath)); | ||
| } | ||
@@ -671,0 +697,0 @@ |
@@ -44,3 +44,3 @@ /* tslint:disable */ | ||
| check: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| const localVarPath = `/taskserviceervice/health`; | ||
| const localVarPath = `/taskservice/health`; | ||
| // use dummy base URL string because the URL constructor only accepts absolute URLs. | ||
@@ -47,0 +47,0 @@ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); |
+17
-19
@@ -141,12 +141,10 @@ /* tslint:disable */ | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getStatus: async (code: string, expand: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| getStatus: async (code: string, authorization?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| // verify required parameter 'code' is not null or undefined | ||
| assertParamExists('getStatus', 'code', code) | ||
| // verify required parameter 'expand' is not null or undefined | ||
| assertParamExists('getStatus', 'expand', expand) | ||
| const localVarPath = `/taskservice/v1/statuses/{code}` | ||
@@ -196,3 +194,3 @@ .replace(`{${"code"}}`, encodeURIComponent(String(code))); | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -346,9 +344,9 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| async getStatus(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStatusResponseClass>> { | ||
| const localVarAxiosArgs = await localVarAxiosParamCreator.getStatus(code, expand, authorization, options); | ||
| async getStatus(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStatusResponseClass>> { | ||
| const localVarAxiosArgs = await localVarAxiosParamCreator.getStatus(code, authorization, expand, options); | ||
| return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); | ||
@@ -362,3 +360,3 @@ }, | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -422,9 +420,9 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getStatus(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetStatusResponseClass> { | ||
| return localVarFp.getStatus(code, expand, authorization, options).then((request) => request(axios, basePath)); | ||
| getStatus(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetStatusResponseClass> { | ||
| return localVarFp.getStatus(code, authorization, expand, options).then((request) => request(axios, basePath)); | ||
| }, | ||
@@ -437,3 +435,3 @@ /** | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -518,14 +516,14 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| /** | ||
| * | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @type {string} | ||
| * @memberof StatusesApiGetStatus | ||
| */ | ||
| readonly expand: string | ||
| readonly authorization?: string | ||
| /** | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * Expand to fetch additional information about the status. | ||
| * @type {string} | ||
| * @memberof StatusesApiGetStatus | ||
| */ | ||
| readonly authorization?: string | ||
| readonly expand?: string | ||
| } | ||
@@ -561,3 +559,3 @@ | ||
| /** | ||
| * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @type {string} | ||
@@ -651,3 +649,3 @@ * @memberof StatusesApiListStatuses | ||
| public getStatus(requestParameters: StatusesApiGetStatusRequest, options?: AxiosRequestConfig) { | ||
| return StatusesApiFp(this.configuration).getStatus(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath)); | ||
| return StatusesApiFp(this.configuration).getStatus(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then((request) => request(this.axios, this.basePath)); | ||
| } | ||
@@ -654,0 +652,0 @@ |
+13
-15
@@ -141,12 +141,10 @@ /* tslint:disable */ | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getTask: async (code: string, expand: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| getTask: async (code: string, authorization?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { | ||
| // verify required parameter 'code' is not null or undefined | ||
| assertParamExists('getTask', 'code', code) | ||
| // verify required parameter 'expand' is not null or undefined | ||
| assertParamExists('getTask', 'expand', expand) | ||
| const localVarPath = `/taskservice/v1/tasks/{code}` | ||
@@ -355,9 +353,9 @@ .replace(`{${"code"}}`, encodeURIComponent(String(code))); | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| async getTask(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTaskResponseClass>> { | ||
| const localVarAxiosArgs = await localVarAxiosParamCreator.getTask(code, expand, authorization, options); | ||
| async getTask(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTaskResponseClass>> { | ||
| const localVarAxiosArgs = await localVarAxiosParamCreator.getTask(code, authorization, expand, options); | ||
| return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); | ||
@@ -432,9 +430,9 @@ }, | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getTask(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetTaskResponseClass> { | ||
| return localVarFp.getTask(code, expand, authorization, options).then((request) => request(axios, basePath)); | ||
| getTask(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetTaskResponseClass> { | ||
| return localVarFp.getTask(code, authorization, expand, options).then((request) => request(axios, basePath)); | ||
| }, | ||
@@ -529,14 +527,14 @@ /** | ||
| /** | ||
| * | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @type {string} | ||
| * @memberof TasksApiGetTask | ||
| */ | ||
| readonly expand: string | ||
| readonly authorization?: string | ||
| /** | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * Expand to fetch additional information about the task. | ||
| * @type {string} | ||
| * @memberof TasksApiGetTask | ||
| */ | ||
| readonly authorization?: string | ||
| readonly expand?: string | ||
| } | ||
@@ -675,3 +673,3 @@ | ||
| public getTask(requestParameters: TasksApiGetTaskRequest, options?: AxiosRequestConfig) { | ||
| return TasksApiFp(this.configuration).getTask(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath)); | ||
| return TasksApiFp(this.configuration).getTask(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then((request) => request(this.axios, this.basePath)); | ||
| } | ||
@@ -678,0 +676,0 @@ |
@@ -48,8 +48,8 @@ /** | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getCategory: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
| getCategory: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
| /** | ||
@@ -59,11 +59,13 @@ * Retrieves a list of categories. | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| listCategories: (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
| listCategories: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
| /** | ||
@@ -107,8 +109,8 @@ * This will partially update a category by code with the provided fields. | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getCategory(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCategoryResponseClass>>; | ||
| getCategory(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCategoryResponseClass>>; | ||
| /** | ||
@@ -118,11 +120,13 @@ * Retrieves a list of categories. | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| listCategories(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>>; | ||
| listCategories(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>>; | ||
| /** | ||
@@ -166,8 +170,8 @@ * This will partially update a category by code with the provided fields. | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getCategory(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetCategoryResponseClass>; | ||
| getCategory(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetCategoryResponseClass>; | ||
| /** | ||
@@ -177,11 +181,13 @@ * Retrieves a list of categories. | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| listCategories(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListCategoriesResponseClass>; | ||
| listCategories(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListCategoriesResponseClass>; | ||
| /** | ||
@@ -249,13 +255,13 @@ * This will partially update a category by code with the provided fields. | ||
| /** | ||
| * | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @type {string} | ||
| * @memberof CategoriesApiGetCategory | ||
| */ | ||
| readonly expand: string; | ||
| readonly authorization?: string; | ||
| /** | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * Expand to fetch additional information about the category. | ||
| * @type {string} | ||
| * @memberof CategoriesApiGetCategory | ||
| */ | ||
| readonly authorization?: string; | ||
| readonly expand?: string; | ||
| } | ||
@@ -275,15 +281,21 @@ /** | ||
| /** | ||
| * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @type {number} | ||
| * @memberof CategoriesApiListCategories | ||
| */ | ||
| readonly pageSize?: number; | ||
| /** | ||
| * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @type {string} | ||
| * @memberof CategoriesApiListCategories | ||
| */ | ||
| readonly filter?: string; | ||
| readonly pageToken?: string; | ||
| /** | ||
| * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @type {string} | ||
| * @memberof CategoriesApiListCategories | ||
| */ | ||
| readonly filters?: string; | ||
| readonly filter?: string; | ||
| /** | ||
| * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @type {string} | ||
@@ -305,2 +317,8 @@ * @memberof CategoriesApiListCategories | ||
| readonly expand?: string; | ||
| /** | ||
| * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @type {string} | ||
| * @memberof CategoriesApiListCategories | ||
| */ | ||
| readonly filters?: string; | ||
| } | ||
@@ -307,0 +325,0 @@ /** |
@@ -200,8 +200,8 @@ "use strict"; | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getCategory: function (code, expand, authorization, options) { | ||
| getCategory: function (code, authorization, expand, options) { | ||
| if (options === void 0) { options = {}; } | ||
@@ -215,4 +215,2 @@ return __awaiter(_this, void 0, void 0, function () { | ||
| (0, common_1.assertParamExists)('getCategory', 'code', code); | ||
| // verify required parameter 'expand' is not null or undefined | ||
| (0, common_1.assertParamExists)('getCategory', 'expand', expand); | ||
| localVarPath = "/taskservice/v1/categories/{code}" | ||
@@ -256,11 +254,13 @@ .replace("{".concat("code", "}"), encodeURIComponent(String(code))); | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| listCategories: function (authorization, filter, filters, search, order, expand, options) { | ||
| listCategories: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) { | ||
| if (options === void 0) { options = {}; } | ||
@@ -288,8 +288,11 @@ return __awaiter(_this, void 0, void 0, function () { | ||
| _a.sent(); | ||
| if (pageSize !== undefined) { | ||
| localVarQueryParameter['pageSize'] = pageSize; | ||
| } | ||
| if (pageToken !== undefined) { | ||
| localVarQueryParameter['pageToken'] = pageToken; | ||
| } | ||
| if (filter !== undefined) { | ||
| localVarQueryParameter['filter'] = filter; | ||
| } | ||
| if (filters !== undefined) { | ||
| localVarQueryParameter['filters'] = filters; | ||
| } | ||
| if (search !== undefined) { | ||
@@ -304,2 +307,5 @@ localVarQueryParameter['search'] = search; | ||
| } | ||
| if (filters !== undefined) { | ||
| localVarQueryParameter['filters'] = filters; | ||
| } | ||
| if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) { | ||
@@ -428,8 +434,8 @@ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken); | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getCategory: function (code, expand, authorization, options) { | ||
| getCategory: function (code, authorization, expand, options) { | ||
| return __awaiter(this, void 0, void 0, function () { | ||
@@ -439,3 +445,3 @@ var localVarAxiosArgs; | ||
| switch (_a.label) { | ||
| case 0: return [4 /*yield*/, localVarAxiosParamCreator.getCategory(code, expand, authorization, options)]; | ||
| case 0: return [4 /*yield*/, localVarAxiosParamCreator.getCategory(code, authorization, expand, options)]; | ||
| case 1: | ||
@@ -452,11 +458,13 @@ localVarAxiosArgs = _a.sent(); | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| listCategories: function (authorization, filter, filters, search, order, expand, options) { | ||
| listCategories: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) { | ||
| return __awaiter(this, void 0, void 0, function () { | ||
@@ -466,3 +474,3 @@ var localVarAxiosArgs; | ||
| switch (_a.label) { | ||
| case 0: return [4 /*yield*/, localVarAxiosParamCreator.listCategories(authorization, filter, filters, search, order, expand, options)]; | ||
| case 0: return [4 /*yield*/, localVarAxiosParamCreator.listCategories(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)]; | ||
| case 1: | ||
@@ -533,9 +541,9 @@ localVarAxiosArgs = _a.sent(); | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the category. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getCategory: function (code, expand, authorization, options) { | ||
| return localVarFp.getCategory(code, expand, authorization, options).then(function (request) { return request(axios, basePath); }); | ||
| getCategory: function (code, authorization, expand, options) { | ||
| return localVarFp.getCategory(code, authorization, expand, options).then(function (request) { return request(axios, basePath); }); | ||
| }, | ||
@@ -546,12 +554,14 @@ /** | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. | ||
| * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. | ||
| * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
| * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| listCategories: function (authorization, filter, filters, search, order, expand, options) { | ||
| return localVarFp.listCategories(authorization, filter, filters, search, order, expand, options).then(function (request) { return request(axios, basePath); }); | ||
| listCategories: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) { | ||
| return localVarFp.listCategories(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); }); | ||
| }, | ||
@@ -618,3 +628,3 @@ /** | ||
| var _this = this; | ||
| return (0, exports.CategoriesApiFp)(this.configuration).getCategory(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); }); | ||
| return (0, exports.CategoriesApiFp)(this.configuration).getCategory(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); }); | ||
| }; | ||
@@ -632,3 +642,3 @@ /** | ||
| if (requestParameters === void 0) { requestParameters = {}; } | ||
| return (0, exports.CategoriesApiFp)(this.configuration).listCategories(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); }); | ||
| return (0, exports.CategoriesApiFp)(this.configuration).listCategories(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); }); | ||
| }; | ||
@@ -635,0 +645,0 @@ /** |
@@ -110,3 +110,3 @@ "use strict"; | ||
| return __generator(this, function (_a) { | ||
| localVarPath = "/taskserviceervice/health"; | ||
| localVarPath = "/taskservice/health"; | ||
| localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL); | ||
@@ -113,0 +113,0 @@ if (configuration) { |
@@ -48,8 +48,8 @@ /** | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getStatus: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
| getStatus: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
| /** | ||
@@ -61,3 +61,3 @@ * Retrieves a list of statuses. | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -107,8 +107,8 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getStatus(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStatusResponseClass>>; | ||
| getStatus(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStatusResponseClass>>; | ||
| /** | ||
@@ -120,3 +120,3 @@ * Retrieves a list of statuses. | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -166,8 +166,8 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getStatus(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetStatusResponseClass>; | ||
| getStatus(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetStatusResponseClass>; | ||
| /** | ||
@@ -179,3 +179,3 @@ * Retrieves a list of statuses. | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -249,13 +249,13 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| /** | ||
| * | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @type {string} | ||
| * @memberof StatusesApiGetStatus | ||
| */ | ||
| readonly expand: string; | ||
| readonly authorization?: string; | ||
| /** | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * Expand to fetch additional information about the status. | ||
| * @type {string} | ||
| * @memberof StatusesApiGetStatus | ||
| */ | ||
| readonly authorization?: string; | ||
| readonly expand?: string; | ||
| } | ||
@@ -287,3 +287,3 @@ /** | ||
| /** | ||
| * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @type {string} | ||
@@ -290,0 +290,0 @@ * @memberof StatusesApiListStatuses |
+12
-14
@@ -200,8 +200,8 @@ "use strict"; | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getStatus: function (code, expand, authorization, options) { | ||
| getStatus: function (code, authorization, expand, options) { | ||
| if (options === void 0) { options = {}; } | ||
@@ -215,4 +215,2 @@ return __awaiter(_this, void 0, void 0, function () { | ||
| (0, common_1.assertParamExists)('getStatus', 'code', code); | ||
| // verify required parameter 'expand' is not null or undefined | ||
| (0, common_1.assertParamExists)('getStatus', 'expand', expand); | ||
| localVarPath = "/taskservice/v1/statuses/{code}" | ||
@@ -258,3 +256,3 @@ .replace("{".concat("code", "}"), encodeURIComponent(String(code))); | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -426,8 +424,8 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getStatus: function (code, expand, authorization, options) { | ||
| getStatus: function (code, authorization, expand, options) { | ||
| return __awaiter(this, void 0, void 0, function () { | ||
@@ -437,3 +435,3 @@ var localVarAxiosArgs; | ||
| switch (_a.label) { | ||
| case 0: return [4 /*yield*/, localVarAxiosParamCreator.getStatus(code, expand, authorization, options)]; | ||
| case 0: return [4 /*yield*/, localVarAxiosParamCreator.getStatus(code, authorization, expand, options)]; | ||
| case 1: | ||
@@ -452,3 +450,3 @@ localVarAxiosArgs = _a.sent(); | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -530,9 +528,9 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the status. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getStatus: function (code, expand, authorization, options) { | ||
| return localVarFp.getStatus(code, expand, authorization, options).then(function (request) { return request(axios, basePath); }); | ||
| getStatus: function (code, authorization, expand, options) { | ||
| return localVarFp.getStatus(code, authorization, expand, options).then(function (request) { return request(axios, basePath); }); | ||
| }, | ||
@@ -545,3 +543,3 @@ /** | ||
| * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i> | ||
| * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, name, slug</i> | ||
| * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i> | ||
@@ -615,3 +613,3 @@ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> | ||
| var _this = this; | ||
| return (0, exports.StatusesApiFp)(this.configuration).getStatus(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); }); | ||
| return (0, exports.StatusesApiFp)(this.configuration).getStatus(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); }); | ||
| }; | ||
@@ -618,0 +616,0 @@ /** |
+10
-10
@@ -48,8 +48,8 @@ /** | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getTask: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
| getTask: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
| /** | ||
@@ -108,8 +108,8 @@ * Retrieves a list of tasks. | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getTask(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTaskResponseClass>>; | ||
| getTask(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTaskResponseClass>>; | ||
| /** | ||
@@ -168,8 +168,8 @@ * Retrieves a list of tasks. | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getTask(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetTaskResponseClass>; | ||
| getTask(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetTaskResponseClass>; | ||
| /** | ||
@@ -252,13 +252,13 @@ * Retrieves a list of tasks. | ||
| /** | ||
| * | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @type {string} | ||
| * @memberof TasksApiGetTask | ||
| */ | ||
| readonly expand: string; | ||
| readonly authorization?: string; | ||
| /** | ||
| * Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * Expand to fetch additional information about the task. | ||
| * @type {string} | ||
| * @memberof TasksApiGetTask | ||
| */ | ||
| readonly authorization?: string; | ||
| readonly expand?: string; | ||
| } | ||
@@ -265,0 +265,0 @@ /** |
@@ -200,8 +200,8 @@ "use strict"; | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getTask: function (code, expand, authorization, options) { | ||
| getTask: function (code, authorization, expand, options) { | ||
| if (options === void 0) { options = {}; } | ||
@@ -215,4 +215,2 @@ return __awaiter(_this, void 0, void 0, function () { | ||
| (0, common_1.assertParamExists)('getTask', 'code', code); | ||
| // verify required parameter 'expand' is not null or undefined | ||
| (0, common_1.assertParamExists)('getTask', 'expand', expand); | ||
| localVarPath = "/taskservice/v1/tasks/{code}" | ||
@@ -433,8 +431,8 @@ .replace("{".concat("code", "}"), encodeURIComponent(String(code))); | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getTask: function (code, expand, authorization, options) { | ||
| getTask: function (code, authorization, expand, options) { | ||
| return __awaiter(this, void 0, void 0, function () { | ||
@@ -444,3 +442,3 @@ var localVarAxiosArgs; | ||
| switch (_a.label) { | ||
| case 0: return [4 /*yield*/, localVarAxiosParamCreator.getTask(code, expand, authorization, options)]; | ||
| case 0: return [4 /*yield*/, localVarAxiosParamCreator.getTask(code, authorization, expand, options)]; | ||
| case 1: | ||
@@ -538,9 +536,9 @@ localVarAxiosArgs = _a.sent(); | ||
| * @param {string} code | ||
| * @param {string} expand | ||
| * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken. | ||
| * @param {string} [expand] Expand to fetch additional information about the task. | ||
| * @param {*} [options] Override http request option. | ||
| * @throws {RequiredError} | ||
| */ | ||
| getTask: function (code, expand, authorization, options) { | ||
| return localVarFp.getTask(code, expand, authorization, options).then(function (request) { return request(axios, basePath); }); | ||
| getTask: function (code, authorization, expand, options) { | ||
| return localVarFp.getTask(code, authorization, expand, options).then(function (request) { return request(axios, basePath); }); | ||
| }, | ||
@@ -624,3 +622,3 @@ /** | ||
| var _this = this; | ||
| return (0, exports.TasksApiFp)(this.configuration).getTask(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); }); | ||
| return (0, exports.TasksApiFp)(this.configuration).getTask(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); }); | ||
| }; | ||
@@ -627,0 +625,0 @@ /** |
@@ -41,3 +41,3 @@ /** | ||
| */ | ||
| 'categorySlugs': Array<string>; | ||
| 'categorySlugs'?: Array<string>; | ||
| /** | ||
@@ -48,3 +48,3 @@ * Task status slug | ||
| */ | ||
| 'statusSlug'?: string; | ||
| 'statusSlug': string; | ||
| /** | ||
@@ -51,0 +51,0 @@ * Task priority |
@@ -46,3 +46,3 @@ /* tslint:disable */ | ||
| */ | ||
| 'categorySlugs': Array<string>; | ||
| 'categorySlugs'?: Array<string>; | ||
| /** | ||
@@ -53,3 +53,3 @@ * Task status slug | ||
| */ | ||
| 'statusSlug'?: string; | ||
| 'statusSlug': string; | ||
| /** | ||
@@ -56,0 +56,0 @@ * Task priority |
+1
-1
| { | ||
| "name": "@emilgroup/task-sdk-node", | ||
| "version": "1.0.1-beta.12", | ||
| "version": "1.0.1-beta.13", | ||
| "description": "OpenAPI client for @emilgroup/task-sdk-node", | ||
@@ -5,0 +5,0 @@ "author": "OpenAPI-Generator Contributors", |
+2
-2
@@ -20,7 +20,7 @@ # Emil Task SDK for Nodejs | ||
| ``` | ||
| npm install @emilgroup/task-sdk-node@1.0.1-beta.12 --save | ||
| npm install @emilgroup/task-sdk-node@1.0.1-beta.13 --save | ||
| ``` | ||
| or | ||
| ``` | ||
| yarn add @emilgroup/task-sdk-node@1.0.1-beta.12 | ||
| yarn add @emilgroup/task-sdk-node@1.0.1-beta.13 | ||
| ``` | ||
@@ -27,0 +27,0 @@ |
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
518622
1.4%11225
0.39%10
-9.09%99
80%