keplar-api 0.0.87364633 → 0.0.2239787250
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/README.md +2 -2
- package/dist/apis/DefaultApi.d.ts +2 -2
- package/dist/apis/DefaultApi.js +2 -2
- package/package.json +1 -1
- package/src/apis/DefaultApi.ts +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## keplar-api@0.0.
|
|
1
|
+
## keplar-api@0.0.2239787250
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install keplar-api@0.0.
|
|
39
|
+
npm install keplar-api@0.0.2239787250 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -1002,11 +1002,11 @@ export declare class DefaultApi extends runtime.BaseAPI {
|
|
|
1002
1002
|
*/
|
|
1003
1003
|
apiThreadsThreadIdProjectBriefVersionsPost(requestParameters: ApiThreadsThreadIdProjectBriefVersionsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiThreadsThreadIdProjectBriefVersionsGet200Response>;
|
|
1004
1004
|
/**
|
|
1005
|
-
* Get user
|
|
1005
|
+
* Get user data with config
|
|
1006
1006
|
*/
|
|
1007
1007
|
apiUsersIdGetRaw(requestParameters: ApiUsersIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserWithConfig>>;
|
|
1008
1008
|
/**
|
|
1009
|
-
* Get user
|
|
1009
|
+
* Get user data with config
|
|
1010
1010
|
*/
|
|
1011
1011
|
apiUsersIdGet(requestParameters: ApiUsersIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserWithConfig>;
|
|
1012
1012
|
/**
|
package/dist/apis/DefaultApi.js
CHANGED
|
@@ -2965,7 +2965,7 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
2965
2965
|
});
|
|
2966
2966
|
};
|
|
2967
2967
|
/**
|
|
2968
|
-
* Get user
|
|
2968
|
+
* Get user data with config
|
|
2969
2969
|
*/
|
|
2970
2970
|
DefaultApi.prototype.apiUsersIdGetRaw = function (requestParameters, initOverrides) {
|
|
2971
2971
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -3004,7 +3004,7 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
3004
3004
|
});
|
|
3005
3005
|
};
|
|
3006
3006
|
/**
|
|
3007
|
-
* Get user
|
|
3007
|
+
* Get user data with config
|
|
3008
3008
|
*/
|
|
3009
3009
|
DefaultApi.prototype.apiUsersIdGet = function (requestParameters, initOverrides) {
|
|
3010
3010
|
return __awaiter(this, void 0, void 0, function () {
|
package/package.json
CHANGED
package/src/apis/DefaultApi.ts
CHANGED
|
@@ -3578,7 +3578,7 @@ export class DefaultApi extends runtime.BaseAPI {
|
|
|
3578
3578
|
}
|
|
3579
3579
|
|
|
3580
3580
|
/**
|
|
3581
|
-
* Get user
|
|
3581
|
+
* Get user data with config
|
|
3582
3582
|
*/
|
|
3583
3583
|
async apiUsersIdGetRaw(requestParameters: ApiUsersIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserWithConfig>> {
|
|
3584
3584
|
if (requestParameters['id'] == null) {
|
|
@@ -3615,7 +3615,7 @@ export class DefaultApi extends runtime.BaseAPI {
|
|
|
3615
3615
|
}
|
|
3616
3616
|
|
|
3617
3617
|
/**
|
|
3618
|
-
* Get user
|
|
3618
|
+
* Get user data with config
|
|
3619
3619
|
*/
|
|
3620
3620
|
async apiUsersIdGet(requestParameters: ApiUsersIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserWithConfig> {
|
|
3621
3621
|
const response = await this.apiUsersIdGetRaw(requestParameters, initOverrides);
|