File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -5988,9 +5988,9 @@ export const extensionConsentToExtensionScopes: OpenAPIOperation<
59885988 Simplify < MittwaldAPIV2 . Paths . V2ExtensionInstancesExtensionInstanceIdScopes . Patch . Parameters . Header >
59895989 > ,
59905990 | Response <
5991- Simplify < MittwaldAPIV2 . Paths . V2ExtensionInstancesExtensionInstanceIdScopes . Patch . Responses . $204 . Content . ApplicationJson > ,
5991+ Simplify < MittwaldAPIV2 . Paths . V2ExtensionInstancesExtensionInstanceIdScopes . Patch . Responses . $204 . Content . Empty > ,
59925992 204 ,
5993- "application/json "
5993+ "empty "
59945994 >
59955995 | Response <
59965996 Simplify < MittwaldAPIV2 . Paths . V2ExtensionInstancesExtensionInstanceIdScopes . Patch . Responses . $400 . Content . ApplicationJson > ,
@@ -6065,6 +6065,16 @@ export const extensionCreateExtensionInstance: OpenAPIOperation<
60656065 400 ,
60666066 "application/json"
60676067 >
6068+ | Response <
6069+ Simplify < MittwaldAPIV2 . Paths . V2ExtensionInstances . Post . Responses . $404 . Content . ApplicationJson > ,
6070+ 404 ,
6071+ "application/json"
6072+ >
6073+ | Response <
6074+ Simplify < MittwaldAPIV2 . Paths . V2ExtensionInstances . Post . Responses . $412 . Content . ApplicationJson > ,
6075+ 412 ,
6076+ "application/json"
6077+ >
60686078 | Response <
60696079 Simplify < MittwaldAPIV2 . Paths . V2ExtensionInstances . Post . Responses . $429 . Content . ApplicationJson > ,
60706080 429 ,
Original file line number Diff line number Diff line change @@ -4791,7 +4791,10 @@ export declare module MittwaldAPIV2 {
47914791 }
47924792
47934793 export interface MarketplaceExtensionStatistics {
4794- amountOfInstances: number;
4794+ /**
4795+ * The amout of instances for this extension. Accurate for the Contributor. Publicly rounded to the next lower hundred.
4796+ */
4797+ amountOfInstances?: number;
47954798 }
47964799
47974800 export interface MarketplaceWebhookUrl {
@@ -6703,6 +6706,12 @@ export declare module MittwaldAPIV2 {
67036706 value: string;
67046707 }
67056708
6709+ export type CronjobCronjobExecutionSortOrder =
6710+ | "oldestFirst"
6711+ | "newestFirst"
6712+ | "slowestFirst"
6713+ | "fastestFirst";
6714+
67066715 export interface CommonsAddress {
67076716 street: string;
67086717 houseNumber: string;
@@ -10779,6 +10788,8 @@ export declare module MittwaldAPIV2 {
1077910788 since?: string;
1078010789 until?: string;
1078110790 status?: string;
10791+ triggeredByUser?: boolean;
10792+ sortOrder?: MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder;
1078210793 };
1078310794 }
1078410795 namespace Responses {
@@ -15959,9 +15970,7 @@ export declare module MittwaldAPIV2 {
1595915970 namespace Responses {
1596015971 namespace $204 {
1596115972 namespace Content {
15962- export interface ApplicationJson {
15963- [k: string]: unknown;
15964- }
15973+ export type Empty = unknown;
1596515974 }
1596615975 }
1596715976
@@ -16075,6 +16084,22 @@ export declare module MittwaldAPIV2 {
1607516084 }
1607616085 }
1607716086
16087+ namespace $404 {
16088+ namespace Content {
16089+ export interface ApplicationJson {
16090+ [k: string]: unknown;
16091+ }
16092+ }
16093+ }
16094+
16095+ namespace $412 {
16096+ namespace Content {
16097+ export interface ApplicationJson {
16098+ [k: string]: unknown;
16099+ }
16100+ }
16101+ }
16102+
1607816103 namespace $429 {
1607916104 namespace Content {
1608016105 export interface ApplicationJson {
You can’t perform that action at this time.
0 commit comments