@gewis/sudosos-client 0.0.0-develop.3a978af → 0.0.0-develop.522c4a5
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/api.d.ts +9 -9
- package/dist/base.js +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -5120,23 +5120,23 @@ export interface TotalBalanceResponse {
|
|
|
5120
5120
|
*/
|
|
5121
5121
|
'date': string;
|
|
5122
5122
|
/**
|
|
5123
|
-
*
|
|
5124
|
-
* @type {
|
|
5123
|
+
*
|
|
5124
|
+
* @type {DineroObjectResponse}
|
|
5125
5125
|
* @memberof TotalBalanceResponse
|
|
5126
5126
|
*/
|
|
5127
|
-
'totalPositive':
|
|
5127
|
+
'totalPositive': DineroObjectResponse;
|
|
5128
5128
|
/**
|
|
5129
|
-
*
|
|
5130
|
-
* @type {
|
|
5129
|
+
*
|
|
5130
|
+
* @type {DineroObjectResponse}
|
|
5131
5131
|
* @memberof TotalBalanceResponse
|
|
5132
5132
|
*/
|
|
5133
|
-
'totalNegative':
|
|
5133
|
+
'totalNegative': DineroObjectResponse;
|
|
5134
5134
|
/**
|
|
5135
|
-
*
|
|
5136
|
-
* @type {UserTypeTotalBalanceResponse}
|
|
5135
|
+
* The total balances for the different user types
|
|
5136
|
+
* @type {Array<UserTypeTotalBalanceResponse>}
|
|
5137
5137
|
* @memberof TotalBalanceResponse
|
|
5138
5138
|
*/
|
|
5139
|
-
'userTypeBalances': UserTypeTotalBalanceResponse
|
|
5139
|
+
'userTypeBalances': Array<UserTypeTotalBalanceResponse>;
|
|
5140
5140
|
}
|
|
5141
5141
|
/**
|
|
5142
5142
|
*
|
package/dist/base.js
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
|
|
17
17
|
const axios_1 = require("axios");
|
|
18
|
-
exports.BASE_PATH = "http://
|
|
18
|
+
exports.BASE_PATH = "http://localhost:3000/api/v1".replace(/\/+$/, "");
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
21
|
* @export
|
package/package.json
CHANGED