@mittwald/api-client 0.0.0-development-9dc255f-20250925 → 0.0.0-development-da42e97-20250926
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/esm/generated/v2/client.js +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +2 -0
- package/dist/types/generated/v2/client.d.ts +50 -6
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +46 -4
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -233,6 +233,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
233
233
|
contributorResetContributorAvatar: this.requestFunctionFactory(descriptors.contributorResetContributorAvatar),
|
|
234
234
|
/** Start the verification process of a contributor. */
|
|
235
235
|
contributorRequestVerification: this.requestFunctionFactory(descriptors.contributorRequestVerification),
|
|
236
|
+
/** Cancel the verification-process of a contributor. */
|
|
237
|
+
contributorCancelVerification: this.requestFunctionFactory(descriptors.contributorCancelVerification),
|
|
236
238
|
/** Rotate the secret for an extension instance. */
|
|
237
239
|
contributorRotateSecretForExtensionInstance: this.requestFunctionFactory(descriptors.contributorRotateSecretForExtensionInstance),
|
|
238
240
|
/** Authenticate your external application using the extensionInstanceSecret. */
|
|
@@ -544,6 +544,12 @@ export const contributorRequestVerification = {
|
|
|
544
544
|
method: "POST",
|
|
545
545
|
operationId: "contributor-request-verification",
|
|
546
546
|
};
|
|
547
|
+
/** Cancel the verification-process of a contributor. */
|
|
548
|
+
export const contributorCancelVerification = {
|
|
549
|
+
path: "/v2/contributors/{contributorId}/verification-process",
|
|
550
|
+
method: "DELETE",
|
|
551
|
+
operationId: "contributor-cancel-verification",
|
|
552
|
+
};
|
|
547
553
|
/** Rotate the secret for an extension instance. */
|
|
548
554
|
export const contributorRotateSecretForExtensionInstance = {
|
|
549
555
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '
|
|
1
|
+
export const MittwaldAPIClientVersion = '0.0.0-development-9dc255f-20250925';
|
|
@@ -1458,11 +1458,13 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1458
1458
|
end?: string | undefined;
|
|
1459
1459
|
executionEnd?: string | undefined;
|
|
1460
1460
|
executionStart?: string | undefined;
|
|
1461
|
+
exitCode?: number | undefined;
|
|
1461
1462
|
id: string;
|
|
1462
1463
|
logPath?: string | undefined;
|
|
1463
1464
|
start?: string | undefined;
|
|
1464
1465
|
status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
|
|
1465
1466
|
successful: boolean;
|
|
1467
|
+
summary?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobStatusSummary | undefined;
|
|
1466
1468
|
triggeredBy?: {
|
|
1467
1469
|
id?: string;
|
|
1468
1470
|
} | undefined;
|
|
@@ -7333,6 +7333,50 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7333
7333
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7334
7334
|
[x: string]: unknown;
|
|
7335
7335
|
}, 429, "application/json">>>;
|
|
7336
|
+
/** Cancel the verification-process of a contributor. */
|
|
7337
|
+
contributorCancelVerification: (request: {
|
|
7338
|
+
contributorId: string;
|
|
7339
|
+
headers?: {
|
|
7340
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7341
|
+
"x-access-token"?: string | undefined;
|
|
7342
|
+
} | undefined;
|
|
7343
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7344
|
+
headers?: Partial<{
|
|
7345
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7346
|
+
}>;
|
|
7347
|
+
} & {
|
|
7348
|
+
pathParameters: {
|
|
7349
|
+
contributorId: string;
|
|
7350
|
+
};
|
|
7351
|
+
} & {
|
|
7352
|
+
headers: {
|
|
7353
|
+
"x-access-token"?: string | undefined;
|
|
7354
|
+
} & Partial<{
|
|
7355
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7356
|
+
}>;
|
|
7357
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7358
|
+
[x: string]: unknown;
|
|
7359
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7360
|
+
[x: string]: unknown;
|
|
7361
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7362
|
+
headers?: Partial<{
|
|
7363
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7364
|
+
}>;
|
|
7365
|
+
} & {
|
|
7366
|
+
pathParameters: {
|
|
7367
|
+
contributorId: string;
|
|
7368
|
+
};
|
|
7369
|
+
} & {
|
|
7370
|
+
headers: {
|
|
7371
|
+
"x-access-token"?: string | undefined;
|
|
7372
|
+
} & Partial<{
|
|
7373
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7374
|
+
}>;
|
|
7375
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7376
|
+
[x: string]: unknown;
|
|
7377
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7378
|
+
[x: string]: unknown;
|
|
7379
|
+
}, 429, "application/json">>>;
|
|
7336
7380
|
/** Rotate the secret for an extension instance. */
|
|
7337
7381
|
contributorRotateSecretForExtensionInstance: (request: {
|
|
7338
7382
|
contributorId: string;
|
|
@@ -11863,11 +11907,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11863
11907
|
end?: string | undefined;
|
|
11864
11908
|
executionEnd?: string | undefined;
|
|
11865
11909
|
executionStart?: string | undefined;
|
|
11910
|
+
exitCode?: number | undefined;
|
|
11866
11911
|
id: string;
|
|
11867
11912
|
logPath?: string | undefined;
|
|
11868
11913
|
start?: string | undefined;
|
|
11869
11914
|
status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
|
|
11870
11915
|
successful: boolean;
|
|
11916
|
+
summary?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobStatusSummary | undefined;
|
|
11871
11917
|
triggeredBy?: {
|
|
11872
11918
|
id?: string;
|
|
11873
11919
|
} | undefined;
|
|
@@ -11899,11 +11945,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11899
11945
|
end?: string | undefined;
|
|
11900
11946
|
executionEnd?: string | undefined;
|
|
11901
11947
|
executionStart?: string | undefined;
|
|
11948
|
+
exitCode?: number | undefined;
|
|
11902
11949
|
id: string;
|
|
11903
11950
|
logPath?: string | undefined;
|
|
11904
11951
|
start?: string | undefined;
|
|
11905
11952
|
status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
|
|
11906
11953
|
successful: boolean;
|
|
11954
|
+
summary?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobStatusSummary | undefined;
|
|
11907
11955
|
triggeredBy?: {
|
|
11908
11956
|
id?: string;
|
|
11909
11957
|
} | undefined;
|
|
@@ -20167,9 +20215,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20167
20215
|
token: string;
|
|
20168
20216
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20169
20217
|
name?: "SecondFactorRequired" | undefined;
|
|
20170
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20171
|
-
[x: string]: unknown;
|
|
20172
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20218
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20173
20219
|
type: "ValidationError";
|
|
20174
20220
|
message?: string | undefined;
|
|
20175
20221
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
@@ -20190,9 +20236,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20190
20236
|
token: string;
|
|
20191
20237
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20192
20238
|
name?: "SecondFactorRequired" | undefined;
|
|
20193
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20194
|
-
[x: string]: unknown;
|
|
20195
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20239
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20196
20240
|
type: "ValidationError";
|
|
20197
20241
|
message?: string | undefined;
|
|
20198
20242
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
@@ -185,6 +185,8 @@ export declare const contributorRequestDeviatingContributorAvatarUpload: OpenAPI
|
|
|
185
185
|
export declare const contributorResetContributorAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
186
186
|
/** Start the verification process of a contributor. */
|
|
187
187
|
export declare const contributorRequestVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
188
|
+
/** Cancel the verification-process of a contributor. */
|
|
189
|
+
export declare const contributorCancelVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
188
190
|
/** Rotate the secret for an extension instance. */
|
|
189
191
|
export declare const contributorRotateSecretForExtensionInstance: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
190
192
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -366,6 +366,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
366
366
|
type RequestData = InferredRequestData<typeof descriptors.contributorRequestVerification>;
|
|
367
367
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRequestVerification, TStatus>;
|
|
368
368
|
}
|
|
369
|
+
namespace ContributorCancelVerification {
|
|
370
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorCancelVerification>;
|
|
371
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorCancelVerification, TStatus>;
|
|
372
|
+
}
|
|
369
373
|
namespace ContributorRotateSecretForExtensionInstance {
|
|
370
374
|
type RequestData = InferredRequestData<typeof descriptors.contributorRotateSecretForExtensionInstance>;
|
|
371
375
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRotateSecretForExtensionInstance, TStatus>;
|
|
@@ -2014,7 +2018,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2014
2018
|
downloadURL?: string;
|
|
2015
2019
|
expiresAt?: string;
|
|
2016
2020
|
format: string;
|
|
2017
|
-
phase?: "
|
|
2021
|
+
phase?: "Pending" | "Exporting" | "Failed" | "Completed" | "Expired";
|
|
2018
2022
|
sha256Checksum?: string;
|
|
2019
2023
|
withPassword: boolean;
|
|
2020
2024
|
}
|
|
@@ -2745,11 +2749,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2745
2749
|
* @deprecated
|
|
2746
2750
|
*/
|
|
2747
2751
|
executionStart?: string;
|
|
2752
|
+
exitCode?: number;
|
|
2748
2753
|
id: string;
|
|
2749
2754
|
logPath?: string;
|
|
2750
2755
|
start?: string;
|
|
2751
2756
|
status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
|
|
2752
2757
|
successful: boolean;
|
|
2758
|
+
summary?: MittwaldAPIV2.Components.Schemas.CronjobStatusSummary;
|
|
2753
2759
|
triggeredBy?: {
|
|
2754
2760
|
id?: string;
|
|
2755
2761
|
};
|
|
@@ -5422,6 +5428,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5422
5428
|
size: number;
|
|
5423
5429
|
target?: string;
|
|
5424
5430
|
}
|
|
5431
|
+
type CronjobStatusSummary = "unspecified" | "active" | "complete" | "suspended" | "failed" | "orphaned" | "timeout" | "error";
|
|
5425
5432
|
interface CommonsAddress {
|
|
5426
5433
|
street: string;
|
|
5427
5434
|
houseNumber: string;
|
|
@@ -10256,6 +10263,43 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10256
10263
|
}
|
|
10257
10264
|
}
|
|
10258
10265
|
}
|
|
10266
|
+
namespace Delete {
|
|
10267
|
+
namespace Parameters {
|
|
10268
|
+
type Path = {
|
|
10269
|
+
contributorId: string;
|
|
10270
|
+
};
|
|
10271
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
10272
|
+
type Query = {};
|
|
10273
|
+
}
|
|
10274
|
+
namespace Responses {
|
|
10275
|
+
namespace $204 {
|
|
10276
|
+
namespace Content {
|
|
10277
|
+
type Empty = unknown;
|
|
10278
|
+
}
|
|
10279
|
+
}
|
|
10280
|
+
namespace $400 {
|
|
10281
|
+
namespace Content {
|
|
10282
|
+
interface ApplicationJson {
|
|
10283
|
+
[k: string]: unknown;
|
|
10284
|
+
}
|
|
10285
|
+
}
|
|
10286
|
+
}
|
|
10287
|
+
namespace $429 {
|
|
10288
|
+
namespace Content {
|
|
10289
|
+
interface ApplicationJson {
|
|
10290
|
+
[k: string]: unknown;
|
|
10291
|
+
}
|
|
10292
|
+
}
|
|
10293
|
+
}
|
|
10294
|
+
namespace Default {
|
|
10295
|
+
namespace Content {
|
|
10296
|
+
interface ApplicationJson {
|
|
10297
|
+
[k: string]: unknown;
|
|
10298
|
+
}
|
|
10299
|
+
}
|
|
10300
|
+
}
|
|
10301
|
+
}
|
|
10302
|
+
}
|
|
10259
10303
|
}
|
|
10260
10304
|
namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret {
|
|
10261
10305
|
namespace Put {
|
|
@@ -24851,9 +24895,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
24851
24895
|
}
|
|
24852
24896
|
namespace $400 {
|
|
24853
24897
|
namespace Content {
|
|
24854
|
-
|
|
24855
|
-
[k: string]: unknown;
|
|
24856
|
-
}
|
|
24898
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors | MittwaldAPIV2.Components.Schemas.CommonsError;
|
|
24857
24899
|
}
|
|
24858
24900
|
}
|
|
24859
24901
|
namespace $401 {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '0.0.0-development-9dc255f-20250925';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "0.0.0-development-
|
|
3
|
+
"version": "0.0.0-development-da42e97-20250926",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^0.0.0-development-
|
|
49
|
+
"@mittwald/api-client-commons": "^0.0.0-development-da42e97-20250926",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^0.0.0-development-
|
|
53
|
+
"@mittwald/api-code-generator": "^0.0.0-development-da42e97-20250926",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.0",
|
|
55
55
|
"@types/node": "^22.10.1",
|
|
56
56
|
"@types/react": "^18.3.14",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "6d28e4fc644056399cb4b01445f5676a820797ba"
|
|
84
84
|
}
|