@homespot-sdk/api 0.0.631 → 0.0.633
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 +5 -5
- package/dist/esm/runtime.js +1 -1
- package/dist/runtime.js +1 -1
- package/docs/AgencyControllerApi.md +1 -1
- package/docs/AgencyQueryControllerApi.md +1 -1
- package/docs/InvitationControllerApi.md +1 -1
- package/docs/InvitationQueryControllerApi.md +1 -1
- package/docs/UserQueryControllerApi.md +1 -1
- package/package.json +1 -1
- package/src/runtime.ts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# @homespot-sdk/api@0.0.
|
|
1
|
+
# @homespot-sdk/api@0.0.633
|
|
2
2
|
|
|
3
|
-
A TypeScript SDK client for the
|
|
3
|
+
A TypeScript SDK client for the gateway.dev.homespot.ge API.
|
|
4
4
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
@@ -50,7 +50,7 @@ example().catch(console.error);
|
|
|
50
50
|
|
|
51
51
|
### API Endpoints
|
|
52
52
|
|
|
53
|
-
All URIs are relative to *
|
|
53
|
+
All URIs are relative to *https://gateway.dev.homespot.ge/rem*
|
|
54
54
|
|
|
55
55
|
| Class | Method | HTTP request | Description
|
|
56
56
|
| ----- | ------ | ------------ | -------------
|
|
@@ -101,7 +101,7 @@ Authentication schemes defined for the API:
|
|
|
101
101
|
|
|
102
102
|
- **Type**: OAuth
|
|
103
103
|
- **Flow**: accessCode
|
|
104
|
-
- **Authorization URL**:
|
|
104
|
+
- **Authorization URL**: https://keycloak.dev.homespot.ge/realms/homespot/protocol/openid-connect/auth
|
|
105
105
|
- **Scopes**:
|
|
106
106
|
- `openid`: OpenID Connect
|
|
107
107
|
- `profile`: User profile
|
|
@@ -113,7 +113,7 @@ and is automatically generated by the
|
|
|
113
113
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
114
114
|
|
|
115
115
|
- API version: `v1`
|
|
116
|
-
- Package version: `0.0.
|
|
116
|
+
- Package version: `0.0.633`
|
|
117
117
|
- Generator version: `7.18.0`
|
|
118
118
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
119
119
|
|
package/dist/esm/runtime.js
CHANGED
|
@@ -20,7 +20,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
20
20
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
21
21
|
});
|
|
22
22
|
};
|
|
23
|
-
export const BASE_PATH = "
|
|
23
|
+
export const BASE_PATH = "https://gateway.dev.homespot.ge/rem".replace(/\/+$/, "");
|
|
24
24
|
export class Configuration {
|
|
25
25
|
constructor(configuration = {}) {
|
|
26
26
|
this.configuration = configuration;
|
package/dist/runtime.js
CHANGED
|
@@ -27,7 +27,7 @@ exports.querystring = querystring;
|
|
|
27
27
|
exports.exists = exists;
|
|
28
28
|
exports.mapValues = mapValues;
|
|
29
29
|
exports.canConsumeForm = canConsumeForm;
|
|
30
|
-
exports.BASE_PATH = "
|
|
30
|
+
exports.BASE_PATH = "https://gateway.dev.homespot.ge/rem".replace(/\/+$/, "");
|
|
31
31
|
class Configuration {
|
|
32
32
|
constructor(configuration = {}) {
|
|
33
33
|
this.configuration = configuration;
|
package/package.json
CHANGED
package/src/runtime.ts
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
export const BASE_PATH = "
|
|
16
|
+
export const BASE_PATH = "https://gateway.dev.homespot.ge/rem".replace(/\/+$/, "");
|
|
17
17
|
|
|
18
18
|
export interface ConfigurationParameters {
|
|
19
19
|
basePath?: string; // override base path
|