@planqk/planqk-service-sdk 2.6.2 → 2.8.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/dist/sdk/BaseClient.d.ts +26 -0
- package/dist/sdk/{api/resources/serviceApi/types/GetResultResponse.js → BaseClient.js} +1 -3
- package/dist/sdk/Client.d.ts +4 -22
- package/dist/sdk/Client.js +2 -4
- package/dist/sdk/api/index.d.ts +1 -1
- package/dist/sdk/api/index.js +1 -1
- package/dist/sdk/api/resources/index.d.ts +0 -1
- package/dist/sdk/api/resources/index.js +0 -4
- package/dist/sdk/api/resources/serviceApi/client/Client.d.ts +9 -26
- package/dist/sdk/api/resources/serviceApi/client/Client.js +43 -27
- package/dist/sdk/api/resources/serviceApi/index.d.ts +0 -1
- package/dist/sdk/api/resources/serviceApi/index.js +0 -1
- package/dist/sdk/api/types/HalLink.d.ts +0 -3
- package/dist/sdk/api/types/HalLink.js +1 -3
- package/dist/sdk/api/types/LogEntry.d.ts +19 -0
- package/dist/sdk/api/types/LogEntry.js +15 -0
- package/dist/sdk/api/types/RequestBody.d.ts +1 -0
- package/dist/sdk/api/types/RequestBody.js +3 -0
- package/dist/sdk/api/types/ResultResponse.d.ts +15 -0
- package/dist/sdk/api/types/ResultResponse.js +3 -0
- package/dist/sdk/api/types/ServiceExecution.d.ts +1 -4
- package/dist/sdk/api/types/ServiceExecution.js +1 -3
- package/dist/sdk/api/types/index.d.ts +3 -0
- package/dist/sdk/api/types/index.js +3 -0
- package/dist/sdk/core/auth/AuthProvider.d.ts +4 -0
- package/dist/sdk/core/auth/AuthProvider.js +2 -0
- package/dist/sdk/core/auth/AuthRequest.d.ts +9 -0
- package/dist/sdk/core/auth/AuthRequest.js +2 -0
- package/dist/sdk/core/auth/BasicAuth.js +2 -1
- package/dist/sdk/core/auth/index.d.ts +2 -0
- package/dist/sdk/core/fetcher/APIResponse.d.ts +1 -1
- package/dist/sdk/core/fetcher/BinaryResponse.d.ts +1 -1
- package/dist/sdk/core/fetcher/EndpointMetadata.d.ts +13 -0
- package/dist/sdk/core/fetcher/EndpointMetadata.js +2 -0
- package/dist/sdk/core/fetcher/EndpointSupplier.d.ts +12 -0
- package/dist/sdk/core/fetcher/EndpointSupplier.js +13 -0
- package/dist/sdk/core/fetcher/Fetcher.d.ts +6 -4
- package/dist/sdk/core/fetcher/Fetcher.js +3 -3
- package/dist/sdk/core/fetcher/HttpResponsePromise.d.ts +1 -1
- package/dist/sdk/core/fetcher/index.d.ts +7 -5
- package/dist/sdk/core/fetcher/index.js +7 -5
- package/dist/sdk/core/fetcher/requestWithRetries.js +44 -8
- package/dist/sdk/core/headers.d.ts +2 -3
- package/dist/sdk/core/url/join.js +23 -3
- package/dist/sdk/environments.d.ts +0 -3
- package/dist/sdk/environments.js +1 -3
- package/dist/sdk/errors/PlanqkServiceApiError.d.ts +0 -3
- package/dist/sdk/errors/PlanqkServiceApiError.js +1 -3
- package/dist/sdk/errors/PlanqkServiceApiTimeoutError.d.ts +0 -3
- package/dist/sdk/errors/PlanqkServiceApiTimeoutError.js +1 -3
- package/dist/sdk/index.d.ts +1 -0
- package/fern/fern.config.json +1 -1
- package/fern/generators.yml +6 -4
- package/fern/openapi/openapi.yml +115 -80
- package/package.json +1 -1
- package/planqk/service/_version.py +1 -1
- package/planqk/service/client.py +3 -3
- package/planqk/service/sdk/__init__.py +61 -8
- package/planqk/service/sdk/client.py +27 -7
- package/planqk/service/sdk/core/__init__.py +80 -20
- package/planqk/service/sdk/core/client_wrapper.py +8 -6
- package/planqk/service/sdk/core/force_multipart.py +4 -2
- package/planqk/service/sdk/core/http_response.py +1 -1
- package/planqk/service/sdk/core/http_sse/__init__.py +42 -0
- package/planqk/service/sdk/core/http_sse/_api.py +112 -0
- package/planqk/service/sdk/core/http_sse/_decoders.py +61 -0
- package/planqk/service/sdk/core/http_sse/_exceptions.py +7 -0
- package/planqk/service/sdk/core/http_sse/_models.py +17 -0
- package/planqk/service/sdk/core/pydantic_utilities.py +5 -2
- package/planqk/service/sdk/core/unchecked_base_model.py +341 -0
- package/planqk/service/sdk/service_api/__init__.py +0 -3
- package/planqk/service/sdk/service_api/client.py +17 -21
- package/planqk/service/sdk/service_api/raw_client.py +36 -40
- package/planqk/service/sdk/types/__init__.py +57 -4
- package/planqk/service/sdk/types/hal_link.py +3 -2
- package/planqk/service/sdk/types/log_entry.py +35 -0
- package/planqk/service/sdk/types/log_entry_severity.py +5 -0
- package/planqk/service/sdk/types/request_body.py +5 -0
- package/planqk/service/sdk/types/result_response.py +27 -0
- package/planqk/service/sdk/{service_api/types/get_result_response_embedded.py → types/result_response_embedded.py} +4 -3
- package/planqk/service/sdk/{service_api/types/get_result_response_links.py → types/result_response_links.py} +4 -3
- package/planqk/service/sdk/types/service_execution.py +3 -2
- package/pyproject.toml +1 -1
- package/requirements-dev.txt +59 -43
- package/requirements.txt +6 -6
- package/src/index.test.ts +10 -0
- package/src/sdk/BaseClient.ts +30 -0
- package/src/sdk/Client.ts +6 -23
- package/src/sdk/api/index.ts +1 -1
- package/src/sdk/api/resources/index.ts +0 -1
- package/src/sdk/api/resources/serviceApi/client/Client.ts +87 -82
- package/src/sdk/api/resources/serviceApi/index.ts +0 -1
- package/src/sdk/api/types/HalLink.ts +1 -3
- package/src/sdk/api/types/LogEntry.ts +22 -0
- package/src/sdk/api/types/RequestBody.ts +3 -0
- package/src/sdk/api/types/ResultResponse.ts +20 -0
- package/src/sdk/api/types/ServiceExecution.ts +2 -4
- package/src/sdk/api/types/index.ts +3 -0
- package/src/sdk/core/auth/AuthProvider.ts +5 -0
- package/src/sdk/core/auth/AuthRequest.ts +9 -0
- package/src/sdk/core/auth/BasicAuth.ts +2 -1
- package/src/sdk/core/auth/index.ts +2 -0
- package/src/sdk/core/fetcher/APIResponse.ts +1 -1
- package/src/sdk/core/fetcher/BinaryResponse.ts +1 -1
- package/src/sdk/core/fetcher/EndpointMetadata.ts +13 -0
- package/src/sdk/core/fetcher/EndpointSupplier.ts +14 -0
- package/src/sdk/core/fetcher/Fetcher.ts +8 -6
- package/src/sdk/core/fetcher/HttpResponsePromise.ts +1 -1
- package/src/sdk/core/fetcher/index.ts +7 -5
- package/src/sdk/core/fetcher/requestWithRetries.ts +49 -9
- package/src/sdk/core/headers.ts +8 -10
- package/src/sdk/core/url/join.ts +28 -3
- package/src/sdk/environments.ts +1 -3
- package/src/sdk/errors/PlanqkServiceApiError.ts +1 -3
- package/src/sdk/errors/PlanqkServiceApiTimeoutError.ts +1 -3
- package/src/sdk/index.ts +1 -0
- package/uv.lock +77 -47
- package/dist/sdk/api/resources/serviceApi/types/GetResultResponse.d.ts +0 -18
- package/dist/sdk/api/resources/serviceApi/types/index.d.ts +0 -1
- package/dist/sdk/api/resources/serviceApi/types/index.js +0 -17
- package/planqk/service/sdk/service_api/types/__init__.py +0 -9
- package/planqk/service/sdk/service_api/types/get_result_response.py +0 -26
- package/src/sdk/api/resources/serviceApi/types/GetResultResponse.ts +0 -22
- package/src/sdk/api/resources/serviceApi/types/index.ts +0 -1
|
@@ -3,12 +3,55 @@ const MAX_RETRY_DELAY = 60000; // in milliseconds
|
|
|
3
3
|
const DEFAULT_MAX_RETRIES = 2;
|
|
4
4
|
const JITTER_FACTOR = 0.2; // 20% random jitter
|
|
5
5
|
|
|
6
|
-
function
|
|
7
|
-
// Generate a random value between
|
|
8
|
-
const jitterMultiplier = 1 +
|
|
6
|
+
function addPositiveJitter(delay: number): number {
|
|
7
|
+
// Generate a random value between 0 and +JITTER_FACTOR
|
|
8
|
+
const jitterMultiplier = 1 + Math.random() * JITTER_FACTOR;
|
|
9
9
|
return delay * jitterMultiplier;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
function addSymmetricJitter(delay: number): number {
|
|
13
|
+
// Generate a random value in a JITTER_FACTOR-sized percentage range around delay
|
|
14
|
+
const jitterMultiplier = 1 + (Math.random() - 0.5) * JITTER_FACTOR;
|
|
15
|
+
return delay * jitterMultiplier;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function getRetryDelayFromHeaders(response: Response, retryAttempt: number): number {
|
|
19
|
+
// Check for Retry-After header first (RFC 7231), with no jitter
|
|
20
|
+
const retryAfter = response.headers.get("Retry-After");
|
|
21
|
+
if (retryAfter) {
|
|
22
|
+
// Parse as number of seconds...
|
|
23
|
+
const retryAfterSeconds = parseInt(retryAfter, 10);
|
|
24
|
+
if (!isNaN(retryAfterSeconds) && retryAfterSeconds > 0) {
|
|
25
|
+
return Math.min(retryAfterSeconds * 1000, MAX_RETRY_DELAY);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// ...or as an HTTP date; both are valid
|
|
29
|
+
const retryAfterDate = new Date(retryAfter);
|
|
30
|
+
if (!isNaN(retryAfterDate.getTime())) {
|
|
31
|
+
const delay = retryAfterDate.getTime() - Date.now();
|
|
32
|
+
if (delay > 0) {
|
|
33
|
+
return Math.min(Math.max(delay, 0), MAX_RETRY_DELAY);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Then check for industry-standard X-RateLimit-Reset header, with positive jitter
|
|
39
|
+
const rateLimitReset = response.headers.get("X-RateLimit-Reset");
|
|
40
|
+
if (rateLimitReset) {
|
|
41
|
+
const resetTime = parseInt(rateLimitReset, 10);
|
|
42
|
+
if (!isNaN(resetTime)) {
|
|
43
|
+
// Assume Unix timestamp in epoch seconds
|
|
44
|
+
const delay = resetTime * 1000 - Date.now();
|
|
45
|
+
if (delay > 0) {
|
|
46
|
+
return addPositiveJitter(Math.min(delay, MAX_RETRY_DELAY));
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Fall back to exponential backoff, with symmetric jitter
|
|
52
|
+
return addSymmetricJitter(Math.min(INITIAL_RETRY_DELAY * Math.pow(2, retryAttempt), MAX_RETRY_DELAY));
|
|
53
|
+
}
|
|
54
|
+
|
|
12
55
|
export async function requestWithRetries(
|
|
13
56
|
requestFn: () => Promise<Response>,
|
|
14
57
|
maxRetries: number = DEFAULT_MAX_RETRIES,
|
|
@@ -17,13 +60,10 @@ export async function requestWithRetries(
|
|
|
17
60
|
|
|
18
61
|
for (let i = 0; i < maxRetries; ++i) {
|
|
19
62
|
if ([408, 429].includes(response.status) || response.status >= 500) {
|
|
20
|
-
//
|
|
21
|
-
const
|
|
22
|
-
|
|
23
|
-
// Add jitter to the delay
|
|
24
|
-
const delayWithJitter = addJitter(baseDelay);
|
|
63
|
+
// Get delay with appropriate jitter applied
|
|
64
|
+
const delay = getRetryDelayFromHeaders(response, i);
|
|
25
65
|
|
|
26
|
-
await new Promise((resolve) => setTimeout(resolve,
|
|
66
|
+
await new Promise((resolve) => setTimeout(resolve, delay));
|
|
27
67
|
response = await requestFn();
|
|
28
68
|
} else {
|
|
29
69
|
break;
|
package/src/sdk/core/headers.ts
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
): Record<string, string | core.Supplier<string | undefined>> {
|
|
6
|
-
const result: Record<string, string | core.Supplier<string | undefined>> = {};
|
|
1
|
+
export function mergeHeaders<THeaderValue>(
|
|
2
|
+
...headersArray: (Record<string, THeaderValue> | null | undefined)[]
|
|
3
|
+
): Record<string, string | THeaderValue> {
|
|
4
|
+
const result: Record<string, THeaderValue> = {};
|
|
7
5
|
|
|
8
6
|
for (const [key, value] of headersArray
|
|
9
7
|
.filter((headers) => headers != null)
|
|
@@ -18,10 +16,10 @@ export function mergeHeaders(
|
|
|
18
16
|
return result;
|
|
19
17
|
}
|
|
20
18
|
|
|
21
|
-
export function mergeOnlyDefinedHeaders(
|
|
22
|
-
...headersArray: (Record<string,
|
|
23
|
-
): Record<string,
|
|
24
|
-
const result: Record<string,
|
|
19
|
+
export function mergeOnlyDefinedHeaders<THeaderValue>(
|
|
20
|
+
...headersArray: (Record<string, THeaderValue> | null | undefined)[]
|
|
21
|
+
): Record<string, THeaderValue> {
|
|
22
|
+
const result: Record<string, THeaderValue> = {};
|
|
25
23
|
|
|
26
24
|
for (const [key, value] of headersArray
|
|
27
25
|
.filter((headers) => headers != null)
|
package/src/sdk/core/url/join.ts
CHANGED
|
@@ -3,6 +3,10 @@ export function join(base: string, ...segments: string[]): string {
|
|
|
3
3
|
return "";
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
if (segments.length === 0) {
|
|
7
|
+
return base;
|
|
8
|
+
}
|
|
9
|
+
|
|
6
10
|
if (base.includes("://")) {
|
|
7
11
|
let url: URL;
|
|
8
12
|
try {
|
|
@@ -12,6 +16,9 @@ export function join(base: string, ...segments: string[]): string {
|
|
|
12
16
|
return joinPath(base, ...segments);
|
|
13
17
|
}
|
|
14
18
|
|
|
19
|
+
const lastSegment = segments[segments.length - 1];
|
|
20
|
+
const shouldPreserveTrailingSlash = lastSegment && lastSegment.endsWith("/");
|
|
21
|
+
|
|
15
22
|
for (const segment of segments) {
|
|
16
23
|
const cleanSegment = trimSlashes(segment);
|
|
17
24
|
if (cleanSegment) {
|
|
@@ -19,6 +26,10 @@ export function join(base: string, ...segments: string[]): string {
|
|
|
19
26
|
}
|
|
20
27
|
}
|
|
21
28
|
|
|
29
|
+
if (shouldPreserveTrailingSlash && !url.pathname.endsWith("/")) {
|
|
30
|
+
url.pathname += "/";
|
|
31
|
+
}
|
|
32
|
+
|
|
22
33
|
return url.toString();
|
|
23
34
|
}
|
|
24
35
|
|
|
@@ -26,8 +37,15 @@ export function join(base: string, ...segments: string[]): string {
|
|
|
26
37
|
}
|
|
27
38
|
|
|
28
39
|
function joinPath(base: string, ...segments: string[]): string {
|
|
40
|
+
if (segments.length === 0) {
|
|
41
|
+
return base;
|
|
42
|
+
}
|
|
43
|
+
|
|
29
44
|
let result = base;
|
|
30
45
|
|
|
46
|
+
const lastSegment = segments[segments.length - 1];
|
|
47
|
+
const shouldPreserveTrailingSlash = lastSegment && lastSegment.endsWith("/");
|
|
48
|
+
|
|
31
49
|
for (const segment of segments) {
|
|
32
50
|
const cleanSegment = trimSlashes(segment);
|
|
33
51
|
if (cleanSegment) {
|
|
@@ -35,6 +53,10 @@ function joinPath(base: string, ...segments: string[]): string {
|
|
|
35
53
|
}
|
|
36
54
|
}
|
|
37
55
|
|
|
56
|
+
if (shouldPreserveTrailingSlash && !result.endsWith("/")) {
|
|
57
|
+
result += "/";
|
|
58
|
+
}
|
|
59
|
+
|
|
38
60
|
return result;
|
|
39
61
|
}
|
|
40
62
|
|
|
@@ -48,8 +70,11 @@ function joinPathSegments(left: string, right: string): string {
|
|
|
48
70
|
function trimSlashes(str: string): string {
|
|
49
71
|
if (!str) return str;
|
|
50
72
|
|
|
51
|
-
let start =
|
|
52
|
-
let end = str.
|
|
73
|
+
let start = 0;
|
|
74
|
+
let end = str.length;
|
|
75
|
+
|
|
76
|
+
if (str.startsWith("/")) start = 1;
|
|
77
|
+
if (str.endsWith("/")) end = str.length - 1;
|
|
53
78
|
|
|
54
|
-
return str.slice(start, end);
|
|
79
|
+
return start === 0 && end === str.length ? str : str.slice(start, end);
|
|
55
80
|
}
|
package/src/sdk/environments.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
1
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
4
2
|
|
|
5
3
|
export const PlanqkServiceApiEnvironment = {
|
|
6
4
|
Default: "https://gateway.platform.planqk.de/<context>/<service>/<version>",
|
package/src/sdk/index.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * as PlanqkServiceApi from "./api/index.js";
|
|
2
2
|
export { PlanqkServiceApiError, PlanqkServiceApiTimeoutError } from "./errors/index.js";
|
|
3
|
+
export { type BaseClientOptions, type BaseRequestOptions } from "./BaseClient.js";
|
|
3
4
|
export { PlanqkServiceApiClient } from "./Client.js";
|
|
4
5
|
export { PlanqkServiceApiEnvironment } from "./environments.js";
|
package/uv.lock
CHANGED
|
@@ -65,23 +65,23 @@ wheels = [
|
|
|
65
65
|
|
|
66
66
|
[[package]]
|
|
67
67
|
name = "authlib"
|
|
68
|
-
version = "1.6.
|
|
68
|
+
version = "1.6.5"
|
|
69
69
|
source = { registry = "https://pypi.org/simple" }
|
|
70
70
|
dependencies = [
|
|
71
71
|
{ name = "cryptography" },
|
|
72
72
|
]
|
|
73
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
73
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cd/3f/1d3bbd0bf23bdd99276d4def22f29c27a914067b4cf66f753ff9b8bbd0f3/authlib-1.6.5.tar.gz", hash = "sha256:6aaf9c79b7cc96c900f0b284061691c5d4e61221640a948fe690b556a6d6d10b", size = 164553, upload-time = "2025-10-02T13:36:09.489Z" }
|
|
74
74
|
wheels = [
|
|
75
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
75
|
+
{ url = "https://files.pythonhosted.org/packages/f8/aa/5082412d1ee302e9e7d80b6949bc4d2a8fa1149aaab610c5fc24709605d6/authlib-1.6.5-py2.py3-none-any.whl", hash = "sha256:3e0e0507807f842b02175507bdee8957a1d5707fd4afb17c32fb43fee90b6e3a", size = 243608, upload-time = "2025-10-02T13:36:07.637Z" },
|
|
76
76
|
]
|
|
77
77
|
|
|
78
78
|
[[package]]
|
|
79
79
|
name = "certifi"
|
|
80
|
-
version = "2025.
|
|
80
|
+
version = "2025.10.5"
|
|
81
81
|
source = { registry = "https://pypi.org/simple" }
|
|
82
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
82
|
+
sdist = { url = "https://files.pythonhosted.org/packages/4c/5b/b6ce21586237c77ce67d01dc5507039d444b630dd76611bbca2d8e5dcd91/certifi-2025.10.5.tar.gz", hash = "sha256:47c09d31ccf2acf0be3f701ea53595ee7e0b8fa08801c6624be771df09ae7b43", size = 164519, upload-time = "2025-10-05T04:12:15.808Z" }
|
|
83
83
|
wheels = [
|
|
84
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
84
|
+
{ url = "https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl", hash = "sha256:0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de", size = 163286, upload-time = "2025-10-05T04:12:14.03Z" },
|
|
85
85
|
]
|
|
86
86
|
|
|
87
87
|
[[package]]
|
|
@@ -561,7 +561,8 @@ name = "jupyter-core"
|
|
|
561
561
|
version = "5.8.1"
|
|
562
562
|
source = { registry = "https://pypi.org/simple" }
|
|
563
563
|
dependencies = [
|
|
564
|
-
{ name = "platformdirs" },
|
|
564
|
+
{ name = "platformdirs", version = "4.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
565
|
+
{ name = "platformdirs", version = "4.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
565
566
|
{ name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" },
|
|
566
567
|
{ name = "traitlets" },
|
|
567
568
|
]
|
|
@@ -632,7 +633,7 @@ wheels = [
|
|
|
632
633
|
|
|
633
634
|
[[package]]
|
|
634
635
|
name = "planqk-service-sdk"
|
|
635
|
-
version = "2.
|
|
636
|
+
version = "2.6.2"
|
|
636
637
|
source = { editable = "." }
|
|
637
638
|
dependencies = [
|
|
638
639
|
{ name = "authlib" },
|
|
@@ -667,11 +668,29 @@ dev = [
|
|
|
667
668
|
name = "platformdirs"
|
|
668
669
|
version = "4.4.0"
|
|
669
670
|
source = { registry = "https://pypi.org/simple" }
|
|
671
|
+
resolution-markers = [
|
|
672
|
+
"python_full_version < '3.10'",
|
|
673
|
+
]
|
|
670
674
|
sdist = { url = "https://files.pythonhosted.org/packages/23/e8/21db9c9987b0e728855bd57bff6984f67952bea55d6f75e055c46b5383e8/platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf", size = 21634, upload-time = "2025-08-26T14:32:04.268Z" }
|
|
671
675
|
wheels = [
|
|
672
676
|
{ url = "https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85", size = 18654, upload-time = "2025-08-26T14:32:02.735Z" },
|
|
673
677
|
]
|
|
674
678
|
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "platformdirs"
|
|
681
|
+
version = "4.5.0"
|
|
682
|
+
source = { registry = "https://pypi.org/simple" }
|
|
683
|
+
resolution-markers = [
|
|
684
|
+
"python_full_version >= '3.13'",
|
|
685
|
+
"python_full_version == '3.12.*'",
|
|
686
|
+
"python_full_version == '3.11.*'",
|
|
687
|
+
"python_full_version == '3.10.*'",
|
|
688
|
+
]
|
|
689
|
+
sdist = { url = "https://files.pythonhosted.org/packages/61/33/9611380c2bdb1225fdef633e2a9610622310fed35ab11dac9620972ee088/platformdirs-4.5.0.tar.gz", hash = "sha256:70ddccdd7c99fc5942e9fc25636a8b34d04c24b335100223152c2803e4063312", size = 21632, upload-time = "2025-10-08T17:44:48.791Z" }
|
|
690
|
+
wheels = [
|
|
691
|
+
{ url = "https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl", hash = "sha256:e578a81bb873cbb89a41fcc904c7ef523cc18284b7e3b3ccf06aca1403b7ebd3", size = 18651, upload-time = "2025-10-08T17:44:47.223Z" },
|
|
692
|
+
]
|
|
693
|
+
|
|
675
694
|
[[package]]
|
|
676
695
|
name = "pluggy"
|
|
677
696
|
version = "1.6.0"
|
|
@@ -848,7 +867,7 @@ wheels = [
|
|
|
848
867
|
|
|
849
868
|
[[package]]
|
|
850
869
|
name = "pylint"
|
|
851
|
-
version = "3.3.
|
|
870
|
+
version = "3.3.9"
|
|
852
871
|
source = { registry = "https://pypi.org/simple" }
|
|
853
872
|
dependencies = [
|
|
854
873
|
{ name = "astroid" },
|
|
@@ -856,14 +875,15 @@ dependencies = [
|
|
|
856
875
|
{ name = "dill" },
|
|
857
876
|
{ name = "isort" },
|
|
858
877
|
{ name = "mccabe" },
|
|
859
|
-
{ name = "platformdirs" },
|
|
878
|
+
{ name = "platformdirs", version = "4.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
879
|
+
{ name = "platformdirs", version = "4.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
860
880
|
{ name = "tomli", marker = "python_full_version < '3.11'" },
|
|
861
881
|
{ name = "tomlkit" },
|
|
862
882
|
{ name = "typing-extensions", marker = "python_full_version < '3.10'" },
|
|
863
883
|
]
|
|
864
|
-
sdist = { url = "https://files.pythonhosted.org/packages/9d/
|
|
884
|
+
sdist = { url = "https://files.pythonhosted.org/packages/04/9d/81c84a312d1fa8133b0db0c76148542a98349298a01747ab122f9314b04e/pylint-3.3.9.tar.gz", hash = "sha256:d312737d7b25ccf6b01cc4ac629b5dcd14a0fcf3ec392735ac70f137a9d5f83a", size = 1525946, upload-time = "2025-10-05T18:41:43.786Z" }
|
|
865
885
|
wheels = [
|
|
866
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
886
|
+
{ url = "https://files.pythonhosted.org/packages/1a/a7/69460c4a6af7575449e615144aa2205b89408dc2969b87bc3df2f262ad0b/pylint-3.3.9-py3-none-any.whl", hash = "sha256:01f9b0462c7730f94786c283f3e52a1fbdf0494bbe0971a78d7277ef46a751e7", size = 523465, upload-time = "2025-10-05T18:41:41.766Z" },
|
|
867
887
|
]
|
|
868
888
|
|
|
869
889
|
[[package]]
|
|
@@ -1065,41 +1085,51 @@ wheels = [
|
|
|
1065
1085
|
|
|
1066
1086
|
[[package]]
|
|
1067
1087
|
name = "tomli"
|
|
1068
|
-
version = "2.
|
|
1069
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1070
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1071
|
-
wheels = [
|
|
1072
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1073
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1074
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1075
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1076
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1077
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1078
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1079
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1080
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1081
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1082
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1083
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1084
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1085
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1086
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1087
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1088
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1089
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1090
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1091
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1092
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1093
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1094
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1095
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1096
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1097
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1098
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1099
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1100
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1101
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1102
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1088
|
+
version = "2.3.0"
|
|
1089
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1090
|
+
sdist = { url = "https://files.pythonhosted.org/packages/52/ed/3f73f72945444548f33eba9a87fc7a6e969915e7b1acc8260b30e1f76a2f/tomli-2.3.0.tar.gz", hash = "sha256:64be704a875d2a59753d80ee8a533c3fe183e3f06807ff7dc2232938ccb01549", size = 17392, upload-time = "2025-10-08T22:01:47.119Z" }
|
|
1091
|
+
wheels = [
|
|
1092
|
+
{ url = "https://files.pythonhosted.org/packages/b3/2e/299f62b401438d5fe1624119c723f5d877acc86a4c2492da405626665f12/tomli-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:88bd15eb972f3664f5ed4b57c1634a97153b4bac4479dcb6a495f41921eb7f45", size = 153236, upload-time = "2025-10-08T22:01:00.137Z" },
|
|
1093
|
+
{ url = "https://files.pythonhosted.org/packages/86/7f/d8fffe6a7aefdb61bced88fcb5e280cfd71e08939da5894161bd71bea022/tomli-2.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:883b1c0d6398a6a9d29b508c331fa56adbcdff647f6ace4dfca0f50e90dfd0ba", size = 148084, upload-time = "2025-10-08T22:01:01.63Z" },
|
|
1094
|
+
{ url = "https://files.pythonhosted.org/packages/47/5c/24935fb6a2ee63e86d80e4d3b58b222dafaf438c416752c8b58537c8b89a/tomli-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d1381caf13ab9f300e30dd8feadb3de072aeb86f1d34a8569453ff32a7dea4bf", size = 234832, upload-time = "2025-10-08T22:01:02.543Z" },
|
|
1095
|
+
{ url = "https://files.pythonhosted.org/packages/89/da/75dfd804fc11e6612846758a23f13271b76d577e299592b4371a4ca4cd09/tomli-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a0e285d2649b78c0d9027570d4da3425bdb49830a6156121360b3f8511ea3441", size = 242052, upload-time = "2025-10-08T22:01:03.836Z" },
|
|
1096
|
+
{ url = "https://files.pythonhosted.org/packages/70/8c/f48ac899f7b3ca7eb13af73bacbc93aec37f9c954df3c08ad96991c8c373/tomli-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0a154a9ae14bfcf5d8917a59b51ffd5a3ac1fd149b71b47a3a104ca4edcfa845", size = 239555, upload-time = "2025-10-08T22:01:04.834Z" },
|
|
1097
|
+
{ url = "https://files.pythonhosted.org/packages/ba/28/72f8afd73f1d0e7829bfc093f4cb98ce0a40ffc0cc997009ee1ed94ba705/tomli-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:74bf8464ff93e413514fefd2be591c3b0b23231a77f901db1eb30d6f712fc42c", size = 245128, upload-time = "2025-10-08T22:01:05.84Z" },
|
|
1098
|
+
{ url = "https://files.pythonhosted.org/packages/b6/eb/a7679c8ac85208706d27436e8d421dfa39d4c914dcf5fa8083a9305f58d9/tomli-2.3.0-cp311-cp311-win32.whl", hash = "sha256:00b5f5d95bbfc7d12f91ad8c593a1659b6387b43f054104cda404be6bda62456", size = 96445, upload-time = "2025-10-08T22:01:06.896Z" },
|
|
1099
|
+
{ url = "https://files.pythonhosted.org/packages/0a/fe/3d3420c4cb1ad9cb462fb52967080575f15898da97e21cb6f1361d505383/tomli-2.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:4dc4ce8483a5d429ab602f111a93a6ab1ed425eae3122032db7e9acf449451be", size = 107165, upload-time = "2025-10-08T22:01:08.107Z" },
|
|
1100
|
+
{ url = "https://files.pythonhosted.org/packages/ff/b7/40f36368fcabc518bb11c8f06379a0fd631985046c038aca08c6d6a43c6e/tomli-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7d86942e56ded512a594786a5ba0a5e521d02529b3826e7761a05138341a2ac", size = 154891, upload-time = "2025-10-08T22:01:09.082Z" },
|
|
1101
|
+
{ url = "https://files.pythonhosted.org/packages/f9/3f/d9dd692199e3b3aab2e4e4dd948abd0f790d9ded8cd10cbaae276a898434/tomli-2.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:73ee0b47d4dad1c5e996e3cd33b8a76a50167ae5f96a2607cbe8cc773506ab22", size = 148796, upload-time = "2025-10-08T22:01:10.266Z" },
|
|
1102
|
+
{ url = "https://files.pythonhosted.org/packages/60/83/59bff4996c2cf9f9387a0f5a3394629c7efa5ef16142076a23a90f1955fa/tomli-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:792262b94d5d0a466afb5bc63c7daa9d75520110971ee269152083270998316f", size = 242121, upload-time = "2025-10-08T22:01:11.332Z" },
|
|
1103
|
+
{ url = "https://files.pythonhosted.org/packages/45/e5/7c5119ff39de8693d6baab6c0b6dcb556d192c165596e9fc231ea1052041/tomli-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4f195fe57ecceac95a66a75ac24d9d5fbc98ef0962e09b2eddec5d39375aae52", size = 250070, upload-time = "2025-10-08T22:01:12.498Z" },
|
|
1104
|
+
{ url = "https://files.pythonhosted.org/packages/45/12/ad5126d3a278f27e6701abde51d342aa78d06e27ce2bb596a01f7709a5a2/tomli-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e31d432427dcbf4d86958c184b9bfd1e96b5b71f8eb17e6d02531f434fd335b8", size = 245859, upload-time = "2025-10-08T22:01:13.551Z" },
|
|
1105
|
+
{ url = "https://files.pythonhosted.org/packages/fb/a1/4d6865da6a71c603cfe6ad0e6556c73c76548557a8d658f9e3b142df245f/tomli-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b0882799624980785240ab732537fcfc372601015c00f7fc367c55308c186f6", size = 250296, upload-time = "2025-10-08T22:01:14.614Z" },
|
|
1106
|
+
{ url = "https://files.pythonhosted.org/packages/a0/b7/a7a7042715d55c9ba6e8b196d65d2cb662578b4d8cd17d882d45322b0d78/tomli-2.3.0-cp312-cp312-win32.whl", hash = "sha256:ff72b71b5d10d22ecb084d345fc26f42b5143c5533db5e2eaba7d2d335358876", size = 97124, upload-time = "2025-10-08T22:01:15.629Z" },
|
|
1107
|
+
{ url = "https://files.pythonhosted.org/packages/06/1e/f22f100db15a68b520664eb3328fb0ae4e90530887928558112c8d1f4515/tomli-2.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:1cb4ed918939151a03f33d4242ccd0aa5f11b3547d0cf30f7c74a408a5b99878", size = 107698, upload-time = "2025-10-08T22:01:16.51Z" },
|
|
1108
|
+
{ url = "https://files.pythonhosted.org/packages/89/48/06ee6eabe4fdd9ecd48bf488f4ac783844fd777f547b8d1b61c11939974e/tomli-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5192f562738228945d7b13d4930baffda67b69425a7f0da96d360b0a3888136b", size = 154819, upload-time = "2025-10-08T22:01:17.964Z" },
|
|
1109
|
+
{ url = "https://files.pythonhosted.org/packages/f1/01/88793757d54d8937015c75dcdfb673c65471945f6be98e6a0410fba167ed/tomli-2.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:be71c93a63d738597996be9528f4abe628d1adf5e6eb11607bc8fe1a510b5dae", size = 148766, upload-time = "2025-10-08T22:01:18.959Z" },
|
|
1110
|
+
{ url = "https://files.pythonhosted.org/packages/42/17/5e2c956f0144b812e7e107f94f1cc54af734eb17b5191c0bbfb72de5e93e/tomli-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c4665508bcbac83a31ff8ab08f424b665200c0e1e645d2bd9ab3d3e557b6185b", size = 240771, upload-time = "2025-10-08T22:01:20.106Z" },
|
|
1111
|
+
{ url = "https://files.pythonhosted.org/packages/d5/f4/0fbd014909748706c01d16824eadb0307115f9562a15cbb012cd9b3512c5/tomli-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4021923f97266babc6ccab9f5068642a0095faa0a51a246a6a02fccbb3514eaf", size = 248586, upload-time = "2025-10-08T22:01:21.164Z" },
|
|
1112
|
+
{ url = "https://files.pythonhosted.org/packages/30/77/fed85e114bde5e81ecf9bc5da0cc69f2914b38f4708c80ae67d0c10180c5/tomli-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4ea38c40145a357d513bffad0ed869f13c1773716cf71ccaa83b0fa0cc4e42f", size = 244792, upload-time = "2025-10-08T22:01:22.417Z" },
|
|
1113
|
+
{ url = "https://files.pythonhosted.org/packages/55/92/afed3d497f7c186dc71e6ee6d4fcb0acfa5f7d0a1a2878f8beae379ae0cc/tomli-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ad805ea85eda330dbad64c7ea7a4556259665bdf9d2672f5dccc740eb9d3ca05", size = 248909, upload-time = "2025-10-08T22:01:23.859Z" },
|
|
1114
|
+
{ url = "https://files.pythonhosted.org/packages/f8/84/ef50c51b5a9472e7265ce1ffc7f24cd4023d289e109f669bdb1553f6a7c2/tomli-2.3.0-cp313-cp313-win32.whl", hash = "sha256:97d5eec30149fd3294270e889b4234023f2c69747e555a27bd708828353ab606", size = 96946, upload-time = "2025-10-08T22:01:24.893Z" },
|
|
1115
|
+
{ url = "https://files.pythonhosted.org/packages/b2/b7/718cd1da0884f281f95ccfa3a6cc572d30053cba64603f79d431d3c9b61b/tomli-2.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0c95ca56fbe89e065c6ead5b593ee64b84a26fca063b5d71a1122bf26e533999", size = 107705, upload-time = "2025-10-08T22:01:26.153Z" },
|
|
1116
|
+
{ url = "https://files.pythonhosted.org/packages/19/94/aeafa14a52e16163008060506fcb6aa1949d13548d13752171a755c65611/tomli-2.3.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:cebc6fe843e0733ee827a282aca4999b596241195f43b4cc371d64fc6639da9e", size = 154244, upload-time = "2025-10-08T22:01:27.06Z" },
|
|
1117
|
+
{ url = "https://files.pythonhosted.org/packages/db/e4/1e58409aa78eefa47ccd19779fc6f36787edbe7d4cd330eeeedb33a4515b/tomli-2.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4c2ef0244c75aba9355561272009d934953817c49f47d768070c3c94355c2aa3", size = 148637, upload-time = "2025-10-08T22:01:28.059Z" },
|
|
1118
|
+
{ url = "https://files.pythonhosted.org/packages/26/b6/d1eccb62f665e44359226811064596dd6a366ea1f985839c566cd61525ae/tomli-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c22a8bf253bacc0cf11f35ad9808b6cb75ada2631c2d97c971122583b129afbc", size = 241925, upload-time = "2025-10-08T22:01:29.066Z" },
|
|
1119
|
+
{ url = "https://files.pythonhosted.org/packages/70/91/7cdab9a03e6d3d2bb11beae108da5bdc1c34bdeb06e21163482544ddcc90/tomli-2.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0eea8cc5c5e9f89c9b90c4896a8deefc74f518db5927d0e0e8d4a80953d774d0", size = 249045, upload-time = "2025-10-08T22:01:31.98Z" },
|
|
1120
|
+
{ url = "https://files.pythonhosted.org/packages/15/1b/8c26874ed1f6e4f1fcfeb868db8a794cbe9f227299402db58cfcc858766c/tomli-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b74a0e59ec5d15127acdabd75ea17726ac4c5178ae51b85bfe39c4f8a278e879", size = 245835, upload-time = "2025-10-08T22:01:32.989Z" },
|
|
1121
|
+
{ url = "https://files.pythonhosted.org/packages/fd/42/8e3c6a9a4b1a1360c1a2a39f0b972cef2cc9ebd56025168c4137192a9321/tomli-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b5870b50c9db823c595983571d1296a6ff3e1b88f734a4c8f6fc6188397de005", size = 253109, upload-time = "2025-10-08T22:01:34.052Z" },
|
|
1122
|
+
{ url = "https://files.pythonhosted.org/packages/22/0c/b4da635000a71b5f80130937eeac12e686eefb376b8dee113b4a582bba42/tomli-2.3.0-cp314-cp314-win32.whl", hash = "sha256:feb0dacc61170ed7ab602d3d972a58f14ee3ee60494292d384649a3dc38ef463", size = 97930, upload-time = "2025-10-08T22:01:35.082Z" },
|
|
1123
|
+
{ url = "https://files.pythonhosted.org/packages/b9/74/cb1abc870a418ae99cd5c9547d6bce30701a954e0e721821df483ef7223c/tomli-2.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:b273fcbd7fc64dc3600c098e39136522650c49bca95df2d11cf3b626422392c8", size = 107964, upload-time = "2025-10-08T22:01:36.057Z" },
|
|
1124
|
+
{ url = "https://files.pythonhosted.org/packages/54/78/5c46fff6432a712af9f792944f4fcd7067d8823157949f4e40c56b8b3c83/tomli-2.3.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:940d56ee0410fa17ee1f12b817b37a4d4e4dc4d27340863cc67236c74f582e77", size = 163065, upload-time = "2025-10-08T22:01:37.27Z" },
|
|
1125
|
+
{ url = "https://files.pythonhosted.org/packages/39/67/f85d9bd23182f45eca8939cd2bc7050e1f90c41f4a2ecbbd5963a1d1c486/tomli-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f85209946d1fe94416debbb88d00eb92ce9cd5266775424ff81bc959e001acaf", size = 159088, upload-time = "2025-10-08T22:01:38.235Z" },
|
|
1126
|
+
{ url = "https://files.pythonhosted.org/packages/26/5a/4b546a0405b9cc0659b399f12b6adb750757baf04250b148d3c5059fc4eb/tomli-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a56212bdcce682e56b0aaf79e869ba5d15a6163f88d5451cbde388d48b13f530", size = 268193, upload-time = "2025-10-08T22:01:39.712Z" },
|
|
1127
|
+
{ url = "https://files.pythonhosted.org/packages/42/4f/2c12a72ae22cf7b59a7fe75b3465b7aba40ea9145d026ba41cb382075b0e/tomli-2.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c5f3ffd1e098dfc032d4d3af5c0ac64f6d286d98bc148698356847b80fa4de1b", size = 275488, upload-time = "2025-10-08T22:01:40.773Z" },
|
|
1128
|
+
{ url = "https://files.pythonhosted.org/packages/92/04/a038d65dbe160c3aa5a624e93ad98111090f6804027d474ba9c37c8ae186/tomli-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5e01decd096b1530d97d5d85cb4dff4af2d8347bd35686654a004f8dea20fc67", size = 272669, upload-time = "2025-10-08T22:01:41.824Z" },
|
|
1129
|
+
{ url = "https://files.pythonhosted.org/packages/be/2f/8b7c60a9d1612a7cbc39ffcca4f21a73bf368a80fc25bccf8253e2563267/tomli-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:8a35dd0e643bb2610f156cca8db95d213a90015c11fee76c946aa62b7ae7e02f", size = 279709, upload-time = "2025-10-08T22:01:43.177Z" },
|
|
1130
|
+
{ url = "https://files.pythonhosted.org/packages/7e/46/cc36c679f09f27ded940281c38607716c86cf8ba4a518d524e349c8b4874/tomli-2.3.0-cp314-cp314t-win32.whl", hash = "sha256:a1f7f282fe248311650081faafa5f4732bdbfef5d45fe3f2e702fbc6f2d496e0", size = 107563, upload-time = "2025-10-08T22:01:44.233Z" },
|
|
1131
|
+
{ url = "https://files.pythonhosted.org/packages/84/ff/426ca8683cf7b753614480484f6437f568fd2fda2edbdf57a2d3d8b27a0b/tomli-2.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:70a251f8d4ba2d9ac2542eecf008b3c8a9fc5c3f9f02c56a9d7952612be2fdba", size = 119756, upload-time = "2025-10-08T22:01:45.234Z" },
|
|
1132
|
+
{ url = "https://files.pythonhosted.org/packages/77/b8/0135fadc89e73be292b473cb820b4f5a08197779206b33191e801feeae40/tomli-2.3.0-py3-none-any.whl", hash = "sha256:e95b1af3c5b07d9e643909b5abbec77cd9f1217e6d0bca72b0234736b9fb1f1b", size = 14408, upload-time = "2025-10-08T22:01:46.04Z" },
|
|
1103
1133
|
]
|
|
1104
1134
|
|
|
1105
1135
|
[[package]]
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as PlanqkServiceApi from "../../../index.js";
|
|
5
|
-
export interface GetResultResponse {
|
|
6
|
-
_links?: GetResultResponse.Links;
|
|
7
|
-
_embedded?: GetResultResponse.Embedded;
|
|
8
|
-
/** Accepts any additional properties */
|
|
9
|
-
[key: string]: any;
|
|
10
|
-
}
|
|
11
|
-
export declare namespace GetResultResponse {
|
|
12
|
-
interface Links {
|
|
13
|
-
status?: PlanqkServiceApi.HalLink;
|
|
14
|
-
}
|
|
15
|
-
interface Embedded {
|
|
16
|
-
status?: PlanqkServiceApi.ServiceExecution;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./GetResultResponse.js";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./GetResultResponse.js"), exports);
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
# isort: skip_file
|
|
4
|
-
|
|
5
|
-
from .get_result_response import GetResultResponse
|
|
6
|
-
from .get_result_response_embedded import GetResultResponseEmbedded
|
|
7
|
-
from .get_result_response_links import GetResultResponseLinks
|
|
8
|
-
|
|
9
|
-
__all__ = ["GetResultResponse", "GetResultResponseEmbedded", "GetResultResponseLinks"]
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
|
|
5
|
-
import pydantic
|
|
6
|
-
import typing_extensions
|
|
7
|
-
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
-
from ...core.serialization import FieldMetadata
|
|
9
|
-
from .get_result_response_embedded import GetResultResponseEmbedded
|
|
10
|
-
from .get_result_response_links import GetResultResponseLinks
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
class GetResultResponse(UniversalBaseModel):
|
|
14
|
-
links: typing_extensions.Annotated[typing.Optional[GetResultResponseLinks], FieldMetadata(alias="_links")] = None
|
|
15
|
-
embedded: typing_extensions.Annotated[
|
|
16
|
-
typing.Optional[GetResultResponseEmbedded], FieldMetadata(alias="_embedded")
|
|
17
|
-
] = None
|
|
18
|
-
|
|
19
|
-
if IS_PYDANTIC_V2:
|
|
20
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
21
|
-
else:
|
|
22
|
-
|
|
23
|
-
class Config:
|
|
24
|
-
frozen = True
|
|
25
|
-
smart_union = True
|
|
26
|
-
extra = pydantic.Extra.allow
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import * as PlanqkServiceApi from "../../../index.js";
|
|
6
|
-
|
|
7
|
-
export interface GetResultResponse {
|
|
8
|
-
_links?: GetResultResponse.Links;
|
|
9
|
-
_embedded?: GetResultResponse.Embedded;
|
|
10
|
-
/** Accepts any additional properties */
|
|
11
|
-
[key: string]: any;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export namespace GetResultResponse {
|
|
15
|
-
export interface Links {
|
|
16
|
-
status?: PlanqkServiceApi.HalLink;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export interface Embedded {
|
|
20
|
-
status?: PlanqkServiceApi.ServiceExecution;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./GetResultResponse.js";
|