@mittwald/api-client 4.250.0 → 4.251.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.
- package/dist/esm/generated/v2/client-react.js +2 -2
- package/dist/esm/generated/v2/client.js +2 -2
- package/dist/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +11 -11
- package/dist/types/generated/v2/client.d.ts +71 -67
- package/dist/types/generated/v2/descriptors.d.ts +3 -3
- package/dist/types/generated/v2/types.d.ts +82 -75
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -184,10 +184,10 @@ const buildCronjobApi = (baseClient) => ({
|
|
|
184
184
|
listExecutions: new ApiCallAsyncResourceFactory(descriptors.cronjobListExecutions, baseClient.cronjob.listExecutions).getApiResource,
|
|
185
185
|
/** Get a Cronjob. */
|
|
186
186
|
getCronjob: new ApiCallAsyncResourceFactory(descriptors.cronjobGetCronjob, baseClient.cronjob.getCronjob).getApiResource,
|
|
187
|
-
/** Get a CronjobExecution. */
|
|
188
|
-
getExecution: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecution, baseClient.cronjob.getExecution).getApiResource,
|
|
189
187
|
/** Get a CronjobExecution analysis for failed executions. */
|
|
190
188
|
getExecutionAnalysis: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecutionAnalysis, baseClient.cronjob.getExecutionAnalysis).getApiResource,
|
|
189
|
+
/** Get a CronjobExecution. */
|
|
190
|
+
getExecution: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecution, baseClient.cronjob.getExecution).getApiResource,
|
|
191
191
|
});
|
|
192
192
|
const buildCustomerApi = (baseClient) => ({
|
|
193
193
|
/** List Invites belonging to a Customer. */
|
|
@@ -373,12 +373,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
373
373
|
deleteCronjob: this.requestFunctionFactory(descriptors.cronjobDeleteCronjob),
|
|
374
374
|
/** Update a Cronjob. */
|
|
375
375
|
updateCronjob: this.requestFunctionFactory(descriptors.cronjobUpdateCronjob),
|
|
376
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
377
|
+
getExecutionAnalysis: this.requestFunctionFactory(descriptors.cronjobGetExecutionAnalysis),
|
|
376
378
|
/** Get a CronjobExecution. */
|
|
377
379
|
getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
|
|
378
380
|
/** Update a Cronjob's app id. */
|
|
379
381
|
updateCronjobAppId: this.requestFunctionFactory(descriptors.cronjobUpdateCronjobAppId),
|
|
380
|
-
/** Get a CronjobExecution analysis for failed executions. */
|
|
381
|
-
getExecutionAnalysis: this.requestFunctionFactory(descriptors.cronjobGetExecutionAnalysis),
|
|
382
382
|
};
|
|
383
383
|
/** The customer API allows you to manage your own organizations and users. */
|
|
384
384
|
customer = {
|
|
@@ -694,6 +694,12 @@ export const cronjobUpdateCronjob = {
|
|
|
694
694
|
method: "PATCH",
|
|
695
695
|
operationId: "cronjob-update-cronjob",
|
|
696
696
|
};
|
|
697
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
698
|
+
export const cronjobGetExecutionAnalysis = {
|
|
699
|
+
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}/analysis",
|
|
700
|
+
method: "GET",
|
|
701
|
+
operationId: "cronjob-get-execution-analysis",
|
|
702
|
+
};
|
|
697
703
|
/** Get a CronjobExecution. */
|
|
698
704
|
export const cronjobGetExecution = {
|
|
699
705
|
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}",
|
|
@@ -2590,9 +2596,3 @@ export const verificationVerifyCompany = {
|
|
|
2590
2596
|
method: "POST",
|
|
2591
2597
|
operationId: "verification-verify-company",
|
|
2592
2598
|
};
|
|
2593
|
-
/** Get a CronjobExecution analysis for failed executions. */
|
|
2594
|
-
export const cronjobGetExecutionAnalysis = {
|
|
2595
|
-
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}/analysis",
|
|
2596
|
-
method: "GET",
|
|
2597
|
-
operationId: "cronjob-get-execution-analysis",
|
|
2598
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.251.0';
|
|
@@ -1437,6 +1437,17 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1437
1437
|
timeout: number;
|
|
1438
1438
|
updatedAt: string;
|
|
1439
1439
|
}>;
|
|
1440
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
1441
|
+
getExecutionAnalysis: (conf: {
|
|
1442
|
+
executionId: string;
|
|
1443
|
+
cronjobId: string;
|
|
1444
|
+
headers?: {
|
|
1445
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1446
|
+
"x-access-token"?: string | undefined;
|
|
1447
|
+
} | undefined;
|
|
1448
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1449
|
+
message: string;
|
|
1450
|
+
}>;
|
|
1440
1451
|
/** Get a CronjobExecution. */
|
|
1441
1452
|
getExecution: (conf: {
|
|
1442
1453
|
executionId: string;
|
|
@@ -1463,17 +1474,6 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1463
1474
|
id?: string;
|
|
1464
1475
|
} | undefined;
|
|
1465
1476
|
}>;
|
|
1466
|
-
/** Get a CronjobExecution analysis for failed executions. */
|
|
1467
|
-
getExecutionAnalysis: (conf: {
|
|
1468
|
-
executionId: string;
|
|
1469
|
-
cronjobId: string;
|
|
1470
|
-
headers?: {
|
|
1471
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1472
|
-
"x-access-token"?: string | undefined;
|
|
1473
|
-
} | undefined;
|
|
1474
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1475
|
-
message: string;
|
|
1476
|
-
}>;
|
|
1477
1477
|
};
|
|
1478
1478
|
declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1479
1479
|
/** List Invites belonging to a Customer. */
|
|
@@ -8312,6 +8312,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8312
8312
|
[x: string]: unknown;
|
|
8313
8313
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8314
8314
|
[x: string]: unknown;
|
|
8315
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8316
|
+
[x: string]: unknown;
|
|
8315
8317
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8316
8318
|
data: {
|
|
8317
8319
|
reason?: string | undefined;
|
|
@@ -8335,6 +8337,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8335
8337
|
[x: string]: unknown;
|
|
8336
8338
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8337
8339
|
[x: string]: unknown;
|
|
8340
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8341
|
+
[x: string]: unknown;
|
|
8338
8342
|
}, 429, "application/json">>>;
|
|
8339
8343
|
/** Patch Extension. */
|
|
8340
8344
|
extensionPatchExtension: (request: {
|
|
@@ -11824,6 +11828,73 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11824
11828
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11825
11829
|
[x: string]: unknown;
|
|
11826
11830
|
}, 429, "application/json">>>;
|
|
11831
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
11832
|
+
getExecutionAnalysis: (request: {
|
|
11833
|
+
executionId: string;
|
|
11834
|
+
cronjobId: string;
|
|
11835
|
+
headers?: {
|
|
11836
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
11837
|
+
"x-access-token"?: string | undefined;
|
|
11838
|
+
} | undefined;
|
|
11839
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11840
|
+
headers?: Partial<{
|
|
11841
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11842
|
+
}>;
|
|
11843
|
+
} & {
|
|
11844
|
+
pathParameters: {
|
|
11845
|
+
executionId: string;
|
|
11846
|
+
cronjobId: string;
|
|
11847
|
+
};
|
|
11848
|
+
} & {
|
|
11849
|
+
headers: {
|
|
11850
|
+
"x-access-token"?: string | undefined;
|
|
11851
|
+
} & Partial<{
|
|
11852
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11853
|
+
}>;
|
|
11854
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
11855
|
+
message: string;
|
|
11856
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11857
|
+
[x: string]: unknown;
|
|
11858
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11859
|
+
[x: string]: unknown;
|
|
11860
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11861
|
+
[x: string]: unknown;
|
|
11862
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11863
|
+
[x: string]: unknown;
|
|
11864
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11865
|
+
[x: string]: unknown;
|
|
11866
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11867
|
+
[x: string]: unknown;
|
|
11868
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11869
|
+
headers?: Partial<{
|
|
11870
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11871
|
+
}>;
|
|
11872
|
+
} & {
|
|
11873
|
+
pathParameters: {
|
|
11874
|
+
executionId: string;
|
|
11875
|
+
cronjobId: string;
|
|
11876
|
+
};
|
|
11877
|
+
} & {
|
|
11878
|
+
headers: {
|
|
11879
|
+
"x-access-token"?: string | undefined;
|
|
11880
|
+
} & Partial<{
|
|
11881
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11882
|
+
}>;
|
|
11883
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
11884
|
+
message: string;
|
|
11885
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11886
|
+
[x: string]: unknown;
|
|
11887
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11888
|
+
[x: string]: unknown;
|
|
11889
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11890
|
+
[x: string]: unknown;
|
|
11891
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11892
|
+
[x: string]: unknown;
|
|
11893
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11894
|
+
[x: string]: unknown;
|
|
11895
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11896
|
+
[x: string]: unknown;
|
|
11897
|
+
}, 500, "application/json">>>;
|
|
11827
11898
|
/** Get a CronjobExecution. */
|
|
11828
11899
|
getExecution: (request: {
|
|
11829
11900
|
executionId: string;
|
|
@@ -11964,73 +12035,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11964
12035
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11965
12036
|
[x: string]: unknown;
|
|
11966
12037
|
}, 429, "application/json">>>;
|
|
11967
|
-
/** Get a CronjobExecution analysis for failed executions. */
|
|
11968
|
-
getExecutionAnalysis: (request: {
|
|
11969
|
-
executionId: string;
|
|
11970
|
-
cronjobId: string;
|
|
11971
|
-
headers?: {
|
|
11972
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
11973
|
-
"x-access-token"?: string | undefined;
|
|
11974
|
-
} | undefined;
|
|
11975
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11976
|
-
headers?: Partial<{
|
|
11977
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11978
|
-
}>;
|
|
11979
|
-
} & {
|
|
11980
|
-
pathParameters: {
|
|
11981
|
-
executionId: string;
|
|
11982
|
-
cronjobId: string;
|
|
11983
|
-
};
|
|
11984
|
-
} & {
|
|
11985
|
-
headers: {
|
|
11986
|
-
"x-access-token"?: string | undefined;
|
|
11987
|
-
} & Partial<{
|
|
11988
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11989
|
-
}>;
|
|
11990
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
11991
|
-
message: string;
|
|
11992
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11993
|
-
[x: string]: unknown;
|
|
11994
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11995
|
-
[x: string]: unknown;
|
|
11996
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11997
|
-
[x: string]: unknown;
|
|
11998
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11999
|
-
[x: string]: unknown;
|
|
12000
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12001
|
-
[x: string]: unknown;
|
|
12002
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12003
|
-
[x: string]: unknown;
|
|
12004
|
-
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
12005
|
-
headers?: Partial<{
|
|
12006
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12007
|
-
}>;
|
|
12008
|
-
} & {
|
|
12009
|
-
pathParameters: {
|
|
12010
|
-
executionId: string;
|
|
12011
|
-
cronjobId: string;
|
|
12012
|
-
};
|
|
12013
|
-
} & {
|
|
12014
|
-
headers: {
|
|
12015
|
-
"x-access-token"?: string | undefined;
|
|
12016
|
-
} & Partial<{
|
|
12017
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12018
|
-
}>;
|
|
12019
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
12020
|
-
message: string;
|
|
12021
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12022
|
-
[x: string]: unknown;
|
|
12023
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12024
|
-
[x: string]: unknown;
|
|
12025
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12026
|
-
[x: string]: unknown;
|
|
12027
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12028
|
-
[x: string]: unknown;
|
|
12029
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12030
|
-
[x: string]: unknown;
|
|
12031
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12032
|
-
[x: string]: unknown;
|
|
12033
|
-
}, 500, "application/json">>>;
|
|
12034
12038
|
};
|
|
12035
12039
|
/** The customer API allows you to manage your own organizations and users. */
|
|
12036
12040
|
readonly customer: {
|
|
@@ -235,6 +235,8 @@ export declare const cronjobGetCronjob: OpenAPIOperation<RequestType<Simplify<nu
|
|
|
235
235
|
export declare const cronjobDeleteCronjob: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
236
236
|
/** Update a Cronjob. */
|
|
237
237
|
export declare const cronjobUpdateCronjob: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
238
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
239
|
+
export declare const cronjobGetExecutionAnalysis: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
238
240
|
/** Get a CronjobExecution. */
|
|
239
241
|
export declare const cronjobGetExecution: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
240
242
|
/** Update a Cronjob's app id. */
|
|
@@ -434,7 +436,7 @@ export declare const extensionDeleteExtensionInstance: OpenAPIOperation<RequestT
|
|
|
434
436
|
/** Get Extension of own contributor. */
|
|
435
437
|
export declare const extensionGetOwnExtension: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
436
438
|
/** Delete an extension. */
|
|
437
|
-
export declare const extensionDeleteExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
439
|
+
export declare const extensionDeleteExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
438
440
|
/** Patch Extension. */
|
|
439
441
|
export declare const extensionPatchExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
440
442
|
/** Disable an ExtensionInstance. */
|
|
@@ -867,5 +869,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
867
869
|
export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
868
870
|
/** Check if a company exists. */
|
|
869
871
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
870
|
-
/** Get a CronjobExecution analysis for failed executions. */
|
|
871
|
-
export declare const cronjobGetExecutionAnalysis: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -466,6 +466,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
466
466
|
type RequestData = InferredRequestData<typeof descriptors.cronjobUpdateCronjob>;
|
|
467
467
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobUpdateCronjob, TStatus>;
|
|
468
468
|
}
|
|
469
|
+
namespace CronjobGetExecutionAnalysis {
|
|
470
|
+
type RequestData = InferredRequestData<typeof descriptors.cronjobGetExecutionAnalysis>;
|
|
471
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobGetExecutionAnalysis, TStatus>;
|
|
472
|
+
}
|
|
469
473
|
namespace CronjobGetExecution {
|
|
470
474
|
type RequestData = InferredRequestData<typeof descriptors.cronjobGetExecution>;
|
|
471
475
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobGetExecution, TStatus>;
|
|
@@ -1730,10 +1734,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1730
1734
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1731
1735
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1732
1736
|
}
|
|
1733
|
-
namespace CronjobGetExecutionAnalysis {
|
|
1734
|
-
type RequestData = InferredRequestData<typeof descriptors.cronjobGetExecutionAnalysis>;
|
|
1735
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobGetExecutionAnalysis, TStatus>;
|
|
1736
|
-
}
|
|
1737
1737
|
}
|
|
1738
1738
|
namespace Components {
|
|
1739
1739
|
namespace Schemas {
|
|
@@ -2772,6 +2772,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2772
2772
|
id?: string;
|
|
2773
2773
|
};
|
|
2774
2774
|
}
|
|
2775
|
+
interface CronjobCronjobExecutionAnalysis {
|
|
2776
|
+
message: string;
|
|
2777
|
+
}
|
|
2775
2778
|
type CronjobCronjobExecutionSortOrder = "oldestFirst" | "newestFirst" | "slowestFirst" | "fastestFirst";
|
|
2776
2779
|
interface CronjobCronjobRequest {
|
|
2777
2780
|
active: boolean;
|
|
@@ -5435,9 +5438,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5435
5438
|
}
|
|
5436
5439
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5437
5440
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5438
|
-
interface CronjobCronjobExecutionAnalysis {
|
|
5439
|
-
message: string;
|
|
5440
|
-
}
|
|
5441
5441
|
interface CommonsAddress {
|
|
5442
5442
|
street: string;
|
|
5443
5443
|
houseNumber: string;
|
|
@@ -11503,6 +11503,74 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11503
11503
|
}
|
|
11504
11504
|
}
|
|
11505
11505
|
}
|
|
11506
|
+
namespace V2CronjobsCronjobIdExecutionsExecutionIdAnalysis {
|
|
11507
|
+
namespace Get {
|
|
11508
|
+
namespace Parameters {
|
|
11509
|
+
type Path = {
|
|
11510
|
+
executionId: string;
|
|
11511
|
+
cronjobId: string;
|
|
11512
|
+
};
|
|
11513
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11514
|
+
type Query = {};
|
|
11515
|
+
}
|
|
11516
|
+
namespace Responses {
|
|
11517
|
+
namespace $200 {
|
|
11518
|
+
namespace Content {
|
|
11519
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionAnalysis;
|
|
11520
|
+
}
|
|
11521
|
+
}
|
|
11522
|
+
namespace $400 {
|
|
11523
|
+
namespace Content {
|
|
11524
|
+
interface ApplicationJson {
|
|
11525
|
+
[k: string]: unknown;
|
|
11526
|
+
}
|
|
11527
|
+
}
|
|
11528
|
+
}
|
|
11529
|
+
namespace $403 {
|
|
11530
|
+
namespace Content {
|
|
11531
|
+
interface ApplicationJson {
|
|
11532
|
+
[k: string]: unknown;
|
|
11533
|
+
}
|
|
11534
|
+
}
|
|
11535
|
+
}
|
|
11536
|
+
namespace $404 {
|
|
11537
|
+
namespace Content {
|
|
11538
|
+
interface ApplicationJson {
|
|
11539
|
+
[k: string]: unknown;
|
|
11540
|
+
}
|
|
11541
|
+
}
|
|
11542
|
+
}
|
|
11543
|
+
namespace $412 {
|
|
11544
|
+
namespace Content {
|
|
11545
|
+
interface ApplicationJson {
|
|
11546
|
+
[k: string]: unknown;
|
|
11547
|
+
}
|
|
11548
|
+
}
|
|
11549
|
+
}
|
|
11550
|
+
namespace $429 {
|
|
11551
|
+
namespace Content {
|
|
11552
|
+
interface ApplicationJson {
|
|
11553
|
+
[k: string]: unknown;
|
|
11554
|
+
}
|
|
11555
|
+
}
|
|
11556
|
+
}
|
|
11557
|
+
namespace $500 {
|
|
11558
|
+
namespace Content {
|
|
11559
|
+
interface ApplicationJson {
|
|
11560
|
+
[k: string]: unknown;
|
|
11561
|
+
}
|
|
11562
|
+
}
|
|
11563
|
+
}
|
|
11564
|
+
namespace Default {
|
|
11565
|
+
namespace Content {
|
|
11566
|
+
interface ApplicationJson {
|
|
11567
|
+
[k: string]: unknown;
|
|
11568
|
+
}
|
|
11569
|
+
}
|
|
11570
|
+
}
|
|
11571
|
+
}
|
|
11572
|
+
}
|
|
11573
|
+
}
|
|
11506
11574
|
namespace V2CronjobsCronjobIdExecutionsExecutionId {
|
|
11507
11575
|
namespace Get {
|
|
11508
11576
|
namespace Parameters {
|
|
@@ -16395,6 +16463,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16395
16463
|
}
|
|
16396
16464
|
}
|
|
16397
16465
|
}
|
|
16466
|
+
namespace $412 {
|
|
16467
|
+
namespace Content {
|
|
16468
|
+
interface ApplicationJson {
|
|
16469
|
+
[k: string]: unknown;
|
|
16470
|
+
}
|
|
16471
|
+
}
|
|
16472
|
+
}
|
|
16398
16473
|
namespace $429 {
|
|
16399
16474
|
namespace Content {
|
|
16400
16475
|
interface ApplicationJson {
|
|
@@ -27481,73 +27556,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27481
27556
|
}
|
|
27482
27557
|
}
|
|
27483
27558
|
}
|
|
27484
|
-
namespace V2CronjobsCronjobIdExecutionsExecutionIdAnalysis {
|
|
27485
|
-
namespace Get {
|
|
27486
|
-
namespace Parameters {
|
|
27487
|
-
type Path = {
|
|
27488
|
-
executionId: string;
|
|
27489
|
-
cronjobId: string;
|
|
27490
|
-
};
|
|
27491
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27492
|
-
type Query = {};
|
|
27493
|
-
}
|
|
27494
|
-
namespace Responses {
|
|
27495
|
-
namespace $200 {
|
|
27496
|
-
namespace Content {
|
|
27497
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionAnalysis;
|
|
27498
|
-
}
|
|
27499
|
-
}
|
|
27500
|
-
namespace $400 {
|
|
27501
|
-
namespace Content {
|
|
27502
|
-
interface ApplicationJson {
|
|
27503
|
-
[k: string]: unknown;
|
|
27504
|
-
}
|
|
27505
|
-
}
|
|
27506
|
-
}
|
|
27507
|
-
namespace $403 {
|
|
27508
|
-
namespace Content {
|
|
27509
|
-
interface ApplicationJson {
|
|
27510
|
-
[k: string]: unknown;
|
|
27511
|
-
}
|
|
27512
|
-
}
|
|
27513
|
-
}
|
|
27514
|
-
namespace $404 {
|
|
27515
|
-
namespace Content {
|
|
27516
|
-
interface ApplicationJson {
|
|
27517
|
-
[k: string]: unknown;
|
|
27518
|
-
}
|
|
27519
|
-
}
|
|
27520
|
-
}
|
|
27521
|
-
namespace $412 {
|
|
27522
|
-
namespace Content {
|
|
27523
|
-
interface ApplicationJson {
|
|
27524
|
-
[k: string]: unknown;
|
|
27525
|
-
}
|
|
27526
|
-
}
|
|
27527
|
-
}
|
|
27528
|
-
namespace $429 {
|
|
27529
|
-
namespace Content {
|
|
27530
|
-
interface ApplicationJson {
|
|
27531
|
-
[k: string]: unknown;
|
|
27532
|
-
}
|
|
27533
|
-
}
|
|
27534
|
-
}
|
|
27535
|
-
namespace $500 {
|
|
27536
|
-
namespace Content {
|
|
27537
|
-
interface ApplicationJson {
|
|
27538
|
-
[k: string]: unknown;
|
|
27539
|
-
}
|
|
27540
|
-
}
|
|
27541
|
-
}
|
|
27542
|
-
namespace Default {
|
|
27543
|
-
namespace Content {
|
|
27544
|
-
interface ApplicationJson {
|
|
27545
|
-
[k: string]: unknown;
|
|
27546
|
-
}
|
|
27547
|
-
}
|
|
27548
|
-
}
|
|
27549
|
-
}
|
|
27550
|
-
}
|
|
27551
|
-
}
|
|
27552
27559
|
}
|
|
27553
27560
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.251.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.251.1",
|
|
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": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.251.1",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.251.1",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "a7652dc265b17b35f3e536c3c78212af23810052"
|
|
84
84
|
}
|