@mittwald/api-client 4.249.0 → 4.251.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/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 -13
- package/dist/types/generated/v2/client.d.ts +73 -77
- package/dist/types/generated/v2/descriptors.d.ts +3 -3
- package/dist/types/generated/v2/types.d.ts +83 -80
- 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.250.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,19 +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
|
-
issues?: string[] | undefined;
|
|
1476
|
-
message: string;
|
|
1477
|
-
recommendation?: string | undefined;
|
|
1478
|
-
}>;
|
|
1479
1477
|
};
|
|
1480
1478
|
declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1481
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,77 +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
|
-
issues?: string[] | undefined;
|
|
11992
|
-
message: string;
|
|
11993
|
-
recommendation?: string | undefined;
|
|
11994
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11995
|
-
[x: string]: unknown;
|
|
11996
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11997
|
-
[x: string]: unknown;
|
|
11998
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11999
|
-
[x: string]: unknown;
|
|
12000
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12001
|
-
[x: string]: unknown;
|
|
12002
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12003
|
-
[x: string]: unknown;
|
|
12004
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12005
|
-
[x: string]: unknown;
|
|
12006
|
-
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
12007
|
-
headers?: Partial<{
|
|
12008
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12009
|
-
}>;
|
|
12010
|
-
} & {
|
|
12011
|
-
pathParameters: {
|
|
12012
|
-
executionId: string;
|
|
12013
|
-
cronjobId: string;
|
|
12014
|
-
};
|
|
12015
|
-
} & {
|
|
12016
|
-
headers: {
|
|
12017
|
-
"x-access-token"?: string | undefined;
|
|
12018
|
-
} & Partial<{
|
|
12019
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12020
|
-
}>;
|
|
12021
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
12022
|
-
issues?: string[] | undefined;
|
|
12023
|
-
message: string;
|
|
12024
|
-
recommendation?: string | undefined;
|
|
12025
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12026
|
-
[x: string]: unknown;
|
|
12027
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12028
|
-
[x: string]: unknown;
|
|
12029
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12030
|
-
[x: string]: unknown;
|
|
12031
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12032
|
-
[x: string]: unknown;
|
|
12033
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12034
|
-
[x: string]: unknown;
|
|
12035
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12036
|
-
[x: string]: unknown;
|
|
12037
|
-
}, 500, "application/json">>>;
|
|
12038
12038
|
};
|
|
12039
12039
|
/** The customer API allows you to manage your own organizations and users. */
|
|
12040
12040
|
readonly customer: {
|
|
@@ -20120,9 +20120,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20120
20120
|
token: string;
|
|
20121
20121
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20122
20122
|
name?: "SecondFactorRequired" | undefined;
|
|
20123
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20124
|
-
[x: string]: unknown;
|
|
20125
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20123
|
+
}, 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<{
|
|
20126
20124
|
type: "ValidationError";
|
|
20127
20125
|
message?: string | undefined;
|
|
20128
20126
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
@@ -20143,9 +20141,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20143
20141
|
token: string;
|
|
20144
20142
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20145
20143
|
name?: "SecondFactorRequired" | undefined;
|
|
20146
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20147
|
-
[x: string]: unknown;
|
|
20148
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20144
|
+
}, 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<{
|
|
20149
20145
|
type: "ValidationError";
|
|
20150
20146
|
message?: string | undefined;
|
|
20151
20147
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
@@ -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,11 +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
|
-
issues?: string[];
|
|
5440
|
-
message: string;
|
|
5441
|
-
recommendation?: string;
|
|
5442
|
-
}
|
|
5443
5441
|
interface CommonsAddress {
|
|
5444
5442
|
street: string;
|
|
5445
5443
|
houseNumber: string;
|
|
@@ -11505,6 +11503,74 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11505
11503
|
}
|
|
11506
11504
|
}
|
|
11507
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
|
+
}
|
|
11508
11574
|
namespace V2CronjobsCronjobIdExecutionsExecutionId {
|
|
11509
11575
|
namespace Get {
|
|
11510
11576
|
namespace Parameters {
|
|
@@ -16397,6 +16463,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16397
16463
|
}
|
|
16398
16464
|
}
|
|
16399
16465
|
}
|
|
16466
|
+
namespace $412 {
|
|
16467
|
+
namespace Content {
|
|
16468
|
+
interface ApplicationJson {
|
|
16469
|
+
[k: string]: unknown;
|
|
16470
|
+
}
|
|
16471
|
+
}
|
|
16472
|
+
}
|
|
16400
16473
|
namespace $429 {
|
|
16401
16474
|
namespace Content {
|
|
16402
16475
|
interface ApplicationJson {
|
|
@@ -25143,9 +25216,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25143
25216
|
}
|
|
25144
25217
|
namespace $400 {
|
|
25145
25218
|
namespace Content {
|
|
25146
|
-
|
|
25147
|
-
[k: string]: unknown;
|
|
25148
|
-
}
|
|
25219
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors | MittwaldAPIV2.Components.Schemas.CommonsError;
|
|
25149
25220
|
}
|
|
25150
25221
|
}
|
|
25151
25222
|
namespace $401 {
|
|
@@ -27485,73 +27556,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27485
27556
|
}
|
|
27486
27557
|
}
|
|
27487
27558
|
}
|
|
27488
|
-
namespace V2CronjobsCronjobIdExecutionsExecutionIdAnalysis {
|
|
27489
|
-
namespace Get {
|
|
27490
|
-
namespace Parameters {
|
|
27491
|
-
type Path = {
|
|
27492
|
-
executionId: string;
|
|
27493
|
-
cronjobId: string;
|
|
27494
|
-
};
|
|
27495
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27496
|
-
type Query = {};
|
|
27497
|
-
}
|
|
27498
|
-
namespace Responses {
|
|
27499
|
-
namespace $200 {
|
|
27500
|
-
namespace Content {
|
|
27501
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionAnalysis;
|
|
27502
|
-
}
|
|
27503
|
-
}
|
|
27504
|
-
namespace $400 {
|
|
27505
|
-
namespace Content {
|
|
27506
|
-
interface ApplicationJson {
|
|
27507
|
-
[k: string]: unknown;
|
|
27508
|
-
}
|
|
27509
|
-
}
|
|
27510
|
-
}
|
|
27511
|
-
namespace $403 {
|
|
27512
|
-
namespace Content {
|
|
27513
|
-
interface ApplicationJson {
|
|
27514
|
-
[k: string]: unknown;
|
|
27515
|
-
}
|
|
27516
|
-
}
|
|
27517
|
-
}
|
|
27518
|
-
namespace $404 {
|
|
27519
|
-
namespace Content {
|
|
27520
|
-
interface ApplicationJson {
|
|
27521
|
-
[k: string]: unknown;
|
|
27522
|
-
}
|
|
27523
|
-
}
|
|
27524
|
-
}
|
|
27525
|
-
namespace $412 {
|
|
27526
|
-
namespace Content {
|
|
27527
|
-
interface ApplicationJson {
|
|
27528
|
-
[k: string]: unknown;
|
|
27529
|
-
}
|
|
27530
|
-
}
|
|
27531
|
-
}
|
|
27532
|
-
namespace $429 {
|
|
27533
|
-
namespace Content {
|
|
27534
|
-
interface ApplicationJson {
|
|
27535
|
-
[k: string]: unknown;
|
|
27536
|
-
}
|
|
27537
|
-
}
|
|
27538
|
-
}
|
|
27539
|
-
namespace $500 {
|
|
27540
|
-
namespace Content {
|
|
27541
|
-
interface ApplicationJson {
|
|
27542
|
-
[k: string]: unknown;
|
|
27543
|
-
}
|
|
27544
|
-
}
|
|
27545
|
-
}
|
|
27546
|
-
namespace Default {
|
|
27547
|
-
namespace Content {
|
|
27548
|
-
interface ApplicationJson {
|
|
27549
|
-
[k: string]: unknown;
|
|
27550
|
-
}
|
|
27551
|
-
}
|
|
27552
|
-
}
|
|
27553
|
-
}
|
|
27554
|
-
}
|
|
27555
|
-
}
|
|
27556
27559
|
}
|
|
27557
27560
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.250.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.251.0",
|
|
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.0",
|
|
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.0",
|
|
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": "35b79304ec4e1e60c3764a8dce64ba907ac613e5"
|
|
84
84
|
}
|