@planqk/planqk-service-sdk 2.2.0 → 2.2.1
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.
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
export declare const PlanqkServiceApiEnvironment: {
|
|
5
|
-
readonly Default: "https://gateway.platform.planqk.de";
|
|
5
|
+
readonly Default: "https://gateway.platform.planqk.de/<context>/<service>/<version>";
|
|
6
6
|
};
|
|
7
7
|
export type PlanqkServiceApiEnvironment = typeof PlanqkServiceApiEnvironment.Default;
|
package/dist/sdk/environments.js
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.PlanqkServiceApiEnvironment = void 0;
|
|
7
7
|
exports.PlanqkServiceApiEnvironment = {
|
|
8
|
-
Default: "https://gateway.platform.planqk.de",
|
|
8
|
+
Default: "https://gateway.platform.planqk.de/<context>/<service>/<version>",
|
|
9
9
|
};
|
package/fern/openapi/openapi.yml
CHANGED
|
@@ -248,5 +248,5 @@ components:
|
|
|
248
248
|
security:
|
|
249
249
|
- ApplicationCredentials: []
|
|
250
250
|
servers:
|
|
251
|
-
- url: https://gateway.
|
|
251
|
+
- url: https://gateway.platform.planqk.de/<context>/<service>/<version>
|
|
252
252
|
description: The service endpoint
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "2.2.
|
|
1
|
+
__version__ = "2.2.1"
|
package/pyproject.toml
CHANGED
package/src/sdk/environments.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
export const PlanqkServiceApiEnvironment = {
|
|
6
|
-
Default: "https://gateway.platform.planqk.de",
|
|
6
|
+
Default: "https://gateway.platform.planqk.de/<context>/<service>/<version>",
|
|
7
7
|
} as const;
|
|
8
8
|
|
|
9
9
|
export type PlanqkServiceApiEnvironment = typeof PlanqkServiceApiEnvironment.Default;
|