@devopness/sdk-js 2.53.0 → 2.55.0
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
CHANGED
|
@@ -83,7 +83,11 @@ To build and test the SDK locally, [**fork this repository**](https://github.com
|
|
|
83
83
|
#### Pre-requisites
|
|
84
84
|
- [Docker](https://www.docker.com/products/docker-desktop/)
|
|
85
85
|
- [make](https://www.gnu.org/software/make/)
|
|
86
|
-
- `make` is pre-installed in most Linux systems.
|
|
86
|
+
- `make` is pre-installed in most Linux systems.
|
|
87
|
+
- In `macOS` it is included as part of the `Xcode` command line utils. It can be installed with the following command:
|
|
88
|
+
```
|
|
89
|
+
xcode-select --install
|
|
90
|
+
```
|
|
87
91
|
### Setup and run in local environment
|
|
88
92
|
#### 1. Build Docker Image
|
|
89
93
|
```
|
|
@@ -41,7 +41,7 @@ export declare class UsersApiService extends ApiBaseService {
|
|
|
41
41
|
getUser(userId: number): Promise<ApiResponse<User>>;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
|
-
* @summary Get
|
|
44
|
+
* @summary Get current user\'s billing info for active subscription
|
|
45
45
|
*/
|
|
46
46
|
getUserBilling(): Promise<ApiResponse<UserBilling>>;
|
|
47
47
|
/**
|
|
@@ -63,7 +63,7 @@ class UsersApiService extends ApiBaseService_1.ApiBaseService {
|
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
65
|
*
|
|
66
|
-
* @summary Get
|
|
66
|
+
* @summary Get current user\'s billing info for active subscription
|
|
67
67
|
*/
|
|
68
68
|
getUserBilling() {
|
|
69
69
|
return __awaiter(this, void 0, void 0, function* () {
|