@stack-spot/portal-network 0.42.2 → 0.43.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/CHANGELOG.md +7 -0
- package/dist/api/cloudPlatform.js +2 -2
- package/dist/apis.json +1 -1
- package/package.json +1 -1
- package/src/api/cloudPlatform.ts +2 -2
- package/src/apis.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.43.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.42.2...portal-network@v0.43.0) (2024-10-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update swagger cloud-platform prd ([f0aa187](https://github.com/stack-spot/portal-commons/commit/f0aa1872b4225858beeddc7452f8ce67d6e9032f))
|
|
9
|
+
|
|
3
10
|
## [0.42.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.42.1...portal-network@v0.42.2) (2024-10-16)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -8,11 +8,11 @@ import * as Oazapfts from "@oazapfts/runtime";
|
|
|
8
8
|
import * as QS from "@oazapfts/runtime/query";
|
|
9
9
|
export const defaults = {
|
|
10
10
|
headers: {},
|
|
11
|
-
baseUrl: "https://cloud-cloud-platform-api.
|
|
11
|
+
baseUrl: "https://cloud-cloud-platform-api.prd.stackspot.com",
|
|
12
12
|
};
|
|
13
13
|
const oazapfts = Oazapfts.runtime(defaults);
|
|
14
14
|
export const servers = {
|
|
15
|
-
generatedServerUrl: "https://cloud-cloud-platform-api.
|
|
15
|
+
generatedServerUrl: "https://cloud-cloud-platform-api.prd.stackspot.com"
|
|
16
16
|
};
|
|
17
17
|
export function createDeployment({ authorization, createDeploymentRequest }, opts) {
|
|
18
18
|
return oazapfts.ok(oazapfts.fetchJson("/v1/deployments", oazapfts.json({
|
package/dist/apis.json
CHANGED
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"url": {
|
|
155
155
|
"dev": "https://cloud-cloud-platform-api.dev.stackspot.com",
|
|
156
156
|
"stg": "https://cloud-cloud-platform-api.stg.stackspot.com",
|
|
157
|
-
"prd": "https://cloud-cloud-platform-api.stackspot.com"
|
|
157
|
+
"prd": "https://cloud-cloud-platform-api.prd.stackspot.com"
|
|
158
158
|
},
|
|
159
159
|
"docs": "/v3/api-docs"
|
|
160
160
|
}
|
package/package.json
CHANGED
package/src/api/cloudPlatform.ts
CHANGED
|
@@ -8,11 +8,11 @@ import * as Oazapfts from "@oazapfts/runtime";
|
|
|
8
8
|
import * as QS from "@oazapfts/runtime/query";
|
|
9
9
|
export const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders> = {
|
|
10
10
|
headers: {},
|
|
11
|
-
baseUrl: "https://cloud-cloud-platform-api.
|
|
11
|
+
baseUrl: "https://cloud-cloud-platform-api.prd.stackspot.com",
|
|
12
12
|
};
|
|
13
13
|
const oazapfts = Oazapfts.runtime(defaults);
|
|
14
14
|
export const servers = {
|
|
15
|
-
generatedServerUrl: "https://cloud-cloud-platform-api.
|
|
15
|
+
generatedServerUrl: "https://cloud-cloud-platform-api.prd.stackspot.com"
|
|
16
16
|
};
|
|
17
17
|
export type EnvVar = {
|
|
18
18
|
key: string;
|
package/src/apis.json
CHANGED
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"url": {
|
|
155
155
|
"dev": "https://cloud-cloud-platform-api.dev.stackspot.com",
|
|
156
156
|
"stg": "https://cloud-cloud-platform-api.stg.stackspot.com",
|
|
157
|
-
"prd": "https://cloud-cloud-platform-api.stackspot.com"
|
|
157
|
+
"prd": "https://cloud-cloud-platform-api.prd.stackspot.com"
|
|
158
158
|
},
|
|
159
159
|
"docs": "/v3/api-docs"
|
|
160
160
|
}
|