@mittwald/api-client 4.430.0 → 4.432.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.js +0 -8
- package/dist/esm/generated/v2/descriptors.js +0 -24
- package/dist/esm/generated/v3-next/client.js +0 -8
- package/dist/esm/generated/v3-next/descriptors.js +0 -24
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +5 -0
- package/dist/types/generated/v2/client.d.ts +10 -265
- package/dist/types/generated/v2/descriptors.d.ts +0 -8
- package/dist/types/generated/v2/types.d.ts +10 -226
- package/dist/types/generated/v3-next/client-react.d.ts +5 -0
- package/dist/types/generated/v3-next/client.d.ts +10 -265
- package/dist/types/generated/v3-next/descriptors.d.ts +0 -8
- package/dist/types/generated/v3-next/types.d.ts +9 -225
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -61,8 +61,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
61
61
|
getSystemsoftware: this.requestFunctionFactory(descriptors.appGetSystemsoftware),
|
|
62
62
|
/** Get a SystemSoftwareVersion. */
|
|
63
63
|
getSystemsoftwareversion: this.requestFunctionFactory(descriptors.appGetSystemsoftwareversion),
|
|
64
|
-
/** Create linkage between an AppInstallation and a MySQLDatabase. */
|
|
65
|
-
linkDatabase: this.requestFunctionFactory(descriptors.appLinkDatabase),
|
|
66
64
|
/** List AppInstallations that a user has access to. */
|
|
67
65
|
listAppinstallationsForUser: this.requestFunctionFactory(descriptors.appListAppinstallationsForUser),
|
|
68
66
|
/** List AppInstallations belonging to a Project. */
|
|
@@ -79,16 +77,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
79
77
|
listSystemsoftwareversions: this.requestFunctionFactory(descriptors.appListSystemsoftwareversions),
|
|
80
78
|
/** List update candidates belonging to an AppVersion. */
|
|
81
79
|
listUpdateCandidatesForAppversion: this.requestFunctionFactory(descriptors.appListUpdateCandidatesForAppversion),
|
|
82
|
-
/** Replace a MySQL Database with another MySQL Database. */
|
|
83
|
-
replaceDatabase: this.requestFunctionFactory(descriptors.appReplaceDatabase),
|
|
84
80
|
/** Request a copy of an AppInstallation. */
|
|
85
81
|
requestAppinstallationCopy: this.requestFunctionFactory(descriptors.appRequestAppinstallationCopy),
|
|
86
82
|
/** Get runtime status belonging to an AppInstallation. */
|
|
87
83
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
88
84
|
/** Remove linkage between an AppInstallation and a Database. */
|
|
89
85
|
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
90
|
-
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
91
|
-
setDatabaseUsers: this.requestFunctionFactory(descriptors.appSetDatabaseUsers),
|
|
92
86
|
};
|
|
93
87
|
/** The article API allows you to read article information. */
|
|
94
88
|
article = {
|
|
@@ -442,8 +436,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
442
436
|
getExecutionAnalysis: this.requestFunctionFactory(descriptors.cronjobGetExecutionAnalysis),
|
|
443
437
|
/** Get a CronjobExecution. */
|
|
444
438
|
getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
|
|
445
|
-
/** Update a Cronjob's app installation id. */
|
|
446
|
-
replaceCronjobAppInstallationId: this.requestFunctionFactory(descriptors.cronjobReplaceCronjobAppInstallationId),
|
|
447
439
|
};
|
|
448
440
|
/** The customer API allows you to manage your own organizations and users. */
|
|
449
441
|
customer = {
|
|
@@ -154,12 +154,6 @@ export const appGetSystemsoftwareversion = {
|
|
|
154
154
|
method: "GET",
|
|
155
155
|
operationId: "app-get-systemsoftwareversion",
|
|
156
156
|
};
|
|
157
|
-
/** Create linkage between an AppInstallation and a MySQLDatabase. */
|
|
158
|
-
export const appLinkDatabase = {
|
|
159
|
-
path: "/v2/app-installations/{appInstallationId}/database",
|
|
160
|
-
method: "PATCH",
|
|
161
|
-
operationId: "app-link-database",
|
|
162
|
-
};
|
|
163
157
|
/** List AppInstallations that a user has access to. */
|
|
164
158
|
export const appListAppinstallationsForUser = {
|
|
165
159
|
path: "/v2/app-installations",
|
|
@@ -208,12 +202,6 @@ export const appListUpdateCandidatesForAppversion = {
|
|
|
208
202
|
method: "GET",
|
|
209
203
|
operationId: "app-list-update-candidates-for-appversion",
|
|
210
204
|
};
|
|
211
|
-
/** Replace a MySQL Database with another MySQL Database. */
|
|
212
|
-
export const appReplaceDatabase = {
|
|
213
|
-
path: "/v2/app-installations/{appInstallationId}/database/replace",
|
|
214
|
-
method: "PATCH",
|
|
215
|
-
operationId: "app-replace-database",
|
|
216
|
-
};
|
|
217
205
|
/** Request a copy of an AppInstallation. */
|
|
218
206
|
export const appRequestAppinstallationCopy = {
|
|
219
207
|
path: "/v2/app-installations/{appInstallationId}/actions/copy",
|
|
@@ -232,12 +220,6 @@ export const appUnlinkDatabase = {
|
|
|
232
220
|
method: "DELETE",
|
|
233
221
|
operationId: "app-unlink-database",
|
|
234
222
|
};
|
|
235
|
-
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
236
|
-
export const appSetDatabaseUsers = {
|
|
237
|
-
path: "/v2/app-installations/{appInstallationId}/databases/{databaseId}/users",
|
|
238
|
-
method: "PUT",
|
|
239
|
-
operationId: "app-set-database-users",
|
|
240
|
-
};
|
|
241
223
|
/** Get an Article. */
|
|
242
224
|
export const articleGetArticle = {
|
|
243
225
|
path: "/v2/articles/{articleId}",
|
|
@@ -868,12 +850,6 @@ export const cronjobGetExecution = {
|
|
|
868
850
|
method: "GET",
|
|
869
851
|
operationId: "cronjob-get-execution",
|
|
870
852
|
};
|
|
871
|
-
/** Update a Cronjob's app installation id. */
|
|
872
|
-
export const cronjobReplaceCronjobAppInstallationId = {
|
|
873
|
-
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
874
|
-
method: "PUT",
|
|
875
|
-
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
876
|
-
};
|
|
877
853
|
/** Accept a CustomerInvite. */
|
|
878
854
|
export const customerAcceptCustomerInvite = {
|
|
879
855
|
path: "/v2/customer-invites/{customerInviteId}/actions/accept",
|
|
@@ -61,8 +61,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
61
61
|
getSystemsoftware: this.requestFunctionFactory(descriptors.appGetSystemsoftware),
|
|
62
62
|
/** Get a SystemSoftwareVersion. */
|
|
63
63
|
getSystemsoftwareversion: this.requestFunctionFactory(descriptors.appGetSystemsoftwareversion),
|
|
64
|
-
/** Create linkage between an AppInstallation and a MySQLDatabase. */
|
|
65
|
-
linkDatabase: this.requestFunctionFactory(descriptors.appLinkDatabase),
|
|
66
64
|
/** List AppInstallations that a user has access to. */
|
|
67
65
|
listAppinstallationsForUser: this.requestFunctionFactory(descriptors.appListAppinstallationsForUser),
|
|
68
66
|
/** List AppInstallations belonging to a Project. */
|
|
@@ -79,14 +77,10 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
79
77
|
listSystemsoftwareversions: this.requestFunctionFactory(descriptors.appListSystemsoftwareversions),
|
|
80
78
|
/** List update candidates belonging to an AppVersion. */
|
|
81
79
|
listUpdateCandidatesForAppversion: this.requestFunctionFactory(descriptors.appListUpdateCandidatesForAppversion),
|
|
82
|
-
/** Replace a MySQL Database with another MySQL Database. */
|
|
83
|
-
replaceDatabase: this.requestFunctionFactory(descriptors.appReplaceDatabase),
|
|
84
80
|
/** Request a copy of an AppInstallation. */
|
|
85
81
|
requestAppinstallationCopy: this.requestFunctionFactory(descriptors.appRequestAppinstallationCopy),
|
|
86
82
|
/** Get runtime status belonging to an AppInstallation. */
|
|
87
83
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
88
|
-
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
89
|
-
setDatabaseUsers: this.requestFunctionFactory(descriptors.appSetDatabaseUsers),
|
|
90
84
|
/** Remove linkage between an AppInstallation and a Database. */
|
|
91
85
|
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
92
86
|
};
|
|
@@ -442,8 +436,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
442
436
|
getExecutionAnalysis: this.requestFunctionFactory(descriptors.cronjobGetExecutionAnalysis),
|
|
443
437
|
/** Get a CronjobExecution. */
|
|
444
438
|
getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
|
|
445
|
-
/** Update a Cronjob's app installation id. */
|
|
446
|
-
replaceCronjobAppInstallationId: this.requestFunctionFactory(descriptors.cronjobReplaceCronjobAppInstallationId),
|
|
447
439
|
};
|
|
448
440
|
/** The customer API allows you to manage your own organizations and users. */
|
|
449
441
|
customer = {
|
|
@@ -154,12 +154,6 @@ export const appGetSystemsoftwareversion = {
|
|
|
154
154
|
method: "GET",
|
|
155
155
|
operationId: "app-get-systemsoftwareversion",
|
|
156
156
|
};
|
|
157
|
-
/** Create linkage between an AppInstallation and a MySQLDatabase. */
|
|
158
|
-
export const appLinkDatabase = {
|
|
159
|
-
path: "/v3-next/app-installations/{appInstallationId}/database",
|
|
160
|
-
method: "PATCH",
|
|
161
|
-
operationId: "app-link-database",
|
|
162
|
-
};
|
|
163
157
|
/** List AppInstallations that a user has access to. */
|
|
164
158
|
export const appListAppinstallationsForUser = {
|
|
165
159
|
path: "/v3-next/app-installations",
|
|
@@ -208,12 +202,6 @@ export const appListUpdateCandidatesForAppversion = {
|
|
|
208
202
|
method: "GET",
|
|
209
203
|
operationId: "app-list-update-candidates-for-appversion",
|
|
210
204
|
};
|
|
211
|
-
/** Replace a MySQL Database with another MySQL Database. */
|
|
212
|
-
export const appReplaceDatabase = {
|
|
213
|
-
path: "/v3-next/app-installations/{appInstallationId}/database/replace",
|
|
214
|
-
method: "PATCH",
|
|
215
|
-
operationId: "app-replace-database",
|
|
216
|
-
};
|
|
217
205
|
/** Request a copy of an AppInstallation. */
|
|
218
206
|
export const appRequestAppinstallationCopy = {
|
|
219
207
|
path: "/v3-next/app-installations/{appInstallationId}/actions/copy",
|
|
@@ -226,12 +214,6 @@ export const appRetrieveStatus = {
|
|
|
226
214
|
method: "GET",
|
|
227
215
|
operationId: "app-retrieve-status",
|
|
228
216
|
};
|
|
229
|
-
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
230
|
-
export const appSetDatabaseUsers = {
|
|
231
|
-
path: "/v3-next/app-installations/{appInstallationId}/databases/{databaseId}/users",
|
|
232
|
-
method: "PUT",
|
|
233
|
-
operationId: "app-set-database-users",
|
|
234
|
-
};
|
|
235
217
|
/** Remove linkage between an AppInstallation and a Database. */
|
|
236
218
|
export const appUnlinkDatabase = {
|
|
237
219
|
path: "/v3-next/app-installations/{appInstallationId}/databases/{databaseId}",
|
|
@@ -868,12 +850,6 @@ export const cronjobGetExecution = {
|
|
|
868
850
|
method: "GET",
|
|
869
851
|
operationId: "cronjob-get-execution",
|
|
870
852
|
};
|
|
871
|
-
/** Update a Cronjob's app installation id. */
|
|
872
|
-
export const cronjobReplaceCronjobAppInstallationId = {
|
|
873
|
-
path: "/v3-next/cronjobs/{cronjobId}/app-installation-id",
|
|
874
|
-
method: "PUT",
|
|
875
|
-
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
876
|
-
};
|
|
877
853
|
/** Accept a CustomerInvite. */
|
|
878
854
|
export const customerAcceptCustomerInvite = {
|
|
879
855
|
path: "/v3-next/customer-invites/{customerInviteId}/actions/accept",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.431.0';
|
|
@@ -729,6 +729,11 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
729
729
|
defaultValue?: string;
|
|
730
730
|
label?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
731
731
|
name: string;
|
|
732
|
+
positionMeta?: {
|
|
733
|
+
index?: number;
|
|
734
|
+
section?: string;
|
|
735
|
+
step?: string;
|
|
736
|
+
};
|
|
732
737
|
required: boolean;
|
|
733
738
|
validationSchema?: string;
|
|
734
739
|
}[] | undefined;
|
|
@@ -1618,77 +1618,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1618
1618
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1619
1619
|
[x: string]: unknown;
|
|
1620
1620
|
}, 429, "application/json">>>;
|
|
1621
|
-
/** Create linkage between an AppInstallation and a MySQLDatabase. */
|
|
1622
|
-
linkDatabase: (request: {
|
|
1623
|
-
data: {
|
|
1624
|
-
databaseId: string;
|
|
1625
|
-
purpose: "primary" | "cache" | "custom";
|
|
1626
|
-
databaseUserIds?: {
|
|
1627
|
-
[x: string]: string;
|
|
1628
|
-
} | undefined;
|
|
1629
|
-
};
|
|
1630
|
-
appInstallationId: string;
|
|
1631
|
-
headers?: {
|
|
1632
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1633
|
-
"x-access-token"?: string | undefined;
|
|
1634
|
-
} | undefined;
|
|
1635
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1636
|
-
data: {
|
|
1637
|
-
databaseId: string;
|
|
1638
|
-
databaseUserIds?: {
|
|
1639
|
-
[k: string]: string;
|
|
1640
|
-
} | undefined;
|
|
1641
|
-
purpose: "primary" | "cache" | "custom";
|
|
1642
|
-
};
|
|
1643
|
-
} & {
|
|
1644
|
-
pathParameters: {
|
|
1645
|
-
appInstallationId: string;
|
|
1646
|
-
};
|
|
1647
|
-
} & {
|
|
1648
|
-
headers?: Partial<{
|
|
1649
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1650
|
-
}>;
|
|
1651
|
-
} & {
|
|
1652
|
-
headers: {
|
|
1653
|
-
"x-access-token"?: string | undefined;
|
|
1654
|
-
} & Partial<{
|
|
1655
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1656
|
-
}>;
|
|
1657
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
1658
|
-
[x: string]: unknown;
|
|
1659
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1660
|
-
[x: string]: unknown;
|
|
1661
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1662
|
-
[x: string]: unknown;
|
|
1663
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1664
|
-
data: {
|
|
1665
|
-
databaseId: string;
|
|
1666
|
-
databaseUserIds?: {
|
|
1667
|
-
[k: string]: string;
|
|
1668
|
-
} | undefined;
|
|
1669
|
-
purpose: "primary" | "cache" | "custom";
|
|
1670
|
-
};
|
|
1671
|
-
} & {
|
|
1672
|
-
pathParameters: {
|
|
1673
|
-
appInstallationId: string;
|
|
1674
|
-
};
|
|
1675
|
-
} & {
|
|
1676
|
-
headers?: Partial<{
|
|
1677
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1678
|
-
}>;
|
|
1679
|
-
} & {
|
|
1680
|
-
headers: {
|
|
1681
|
-
"x-access-token"?: string | undefined;
|
|
1682
|
-
} & Partial<{
|
|
1683
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1684
|
-
}>;
|
|
1685
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
1686
|
-
[x: string]: unknown;
|
|
1687
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1688
|
-
[x: string]: unknown;
|
|
1689
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1690
|
-
[x: string]: unknown;
|
|
1691
|
-
}, 429, "application/json">>>;
|
|
1692
1621
|
/** List AppInstallations that a user has access to. */
|
|
1693
1622
|
listAppinstallationsForUser: (request?: {
|
|
1694
1623
|
headers?: {
|
|
@@ -2166,77 +2095,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2166
2095
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2167
2096
|
[x: string]: unknown;
|
|
2168
2097
|
}, 429, "application/json">>>;
|
|
2169
|
-
/** Replace a MySQL Database with another MySQL Database. */
|
|
2170
|
-
replaceDatabase: (request: {
|
|
2171
|
-
data: {
|
|
2172
|
-
newDatabaseId: string;
|
|
2173
|
-
oldDatabaseId: string;
|
|
2174
|
-
databaseUserIds?: {
|
|
2175
|
-
[x: string]: string;
|
|
2176
|
-
} | undefined;
|
|
2177
|
-
};
|
|
2178
|
-
appInstallationId: string;
|
|
2179
|
-
headers?: {
|
|
2180
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2181
|
-
"x-access-token"?: string | undefined;
|
|
2182
|
-
} | undefined;
|
|
2183
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2184
|
-
data: {
|
|
2185
|
-
databaseUserIds?: {
|
|
2186
|
-
[k: string]: string;
|
|
2187
|
-
} | undefined;
|
|
2188
|
-
newDatabaseId: string;
|
|
2189
|
-
oldDatabaseId: string;
|
|
2190
|
-
};
|
|
2191
|
-
} & {
|
|
2192
|
-
pathParameters: {
|
|
2193
|
-
appInstallationId: string;
|
|
2194
|
-
};
|
|
2195
|
-
} & {
|
|
2196
|
-
headers?: Partial<{
|
|
2197
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2198
|
-
}>;
|
|
2199
|
-
} & {
|
|
2200
|
-
headers: {
|
|
2201
|
-
"x-access-token"?: string | undefined;
|
|
2202
|
-
} & Partial<{
|
|
2203
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2204
|
-
}>;
|
|
2205
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2206
|
-
[x: string]: unknown;
|
|
2207
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2208
|
-
[x: string]: unknown;
|
|
2209
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2210
|
-
[x: string]: unknown;
|
|
2211
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2212
|
-
data: {
|
|
2213
|
-
databaseUserIds?: {
|
|
2214
|
-
[k: string]: string;
|
|
2215
|
-
} | undefined;
|
|
2216
|
-
newDatabaseId: string;
|
|
2217
|
-
oldDatabaseId: string;
|
|
2218
|
-
};
|
|
2219
|
-
} & {
|
|
2220
|
-
pathParameters: {
|
|
2221
|
-
appInstallationId: string;
|
|
2222
|
-
};
|
|
2223
|
-
} & {
|
|
2224
|
-
headers?: Partial<{
|
|
2225
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2226
|
-
}>;
|
|
2227
|
-
} & {
|
|
2228
|
-
headers: {
|
|
2229
|
-
"x-access-token"?: string | undefined;
|
|
2230
|
-
} & Partial<{
|
|
2231
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2232
|
-
}>;
|
|
2233
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2234
|
-
[x: string]: unknown;
|
|
2235
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2236
|
-
[x: string]: unknown;
|
|
2237
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2238
|
-
[x: string]: unknown;
|
|
2239
|
-
}, 429, "application/json">>>;
|
|
2240
2098
|
/** Request a copy of an AppInstallation. */
|
|
2241
2099
|
requestAppinstallationCopy: (request: {
|
|
2242
2100
|
data: {
|
|
@@ -2380,70 +2238,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2380
2238
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2381
2239
|
[x: string]: unknown;
|
|
2382
2240
|
}, 429, "application/json">>>;
|
|
2383
|
-
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
2384
|
-
setDatabaseUsers: (request: {
|
|
2385
|
-
appInstallationId: string;
|
|
2386
|
-
databaseId: string;
|
|
2387
|
-
data?: {
|
|
2388
|
-
databaseUserIds: {
|
|
2389
|
-
[x: string]: string;
|
|
2390
|
-
};
|
|
2391
|
-
} | undefined;
|
|
2392
|
-
headers?: {
|
|
2393
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2394
|
-
"x-access-token"?: string | undefined;
|
|
2395
|
-
} | undefined;
|
|
2396
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2397
|
-
data: {
|
|
2398
|
-
databaseUserIds: {
|
|
2399
|
-
[k: string]: string;
|
|
2400
|
-
};
|
|
2401
|
-
};
|
|
2402
|
-
} & {
|
|
2403
|
-
pathParameters: {
|
|
2404
|
-
appInstallationId: string;
|
|
2405
|
-
databaseId: string;
|
|
2406
|
-
};
|
|
2407
|
-
} & {
|
|
2408
|
-
headers?: Partial<{
|
|
2409
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2410
|
-
}>;
|
|
2411
|
-
} & {
|
|
2412
|
-
headers: {
|
|
2413
|
-
"x-access-token"?: string | undefined;
|
|
2414
|
-
} & Partial<{
|
|
2415
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2416
|
-
}>;
|
|
2417
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2418
|
-
[x: string]: unknown;
|
|
2419
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2420
|
-
[x: string]: unknown;
|
|
2421
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2422
|
-
data: {
|
|
2423
|
-
databaseUserIds: {
|
|
2424
|
-
[k: string]: string;
|
|
2425
|
-
};
|
|
2426
|
-
};
|
|
2427
|
-
} & {
|
|
2428
|
-
pathParameters: {
|
|
2429
|
-
appInstallationId: string;
|
|
2430
|
-
databaseId: string;
|
|
2431
|
-
};
|
|
2432
|
-
} & {
|
|
2433
|
-
headers?: Partial<{
|
|
2434
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2435
|
-
}>;
|
|
2436
|
-
} & {
|
|
2437
|
-
headers: {
|
|
2438
|
-
"x-access-token"?: string | undefined;
|
|
2439
|
-
} & Partial<{
|
|
2440
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2441
|
-
}>;
|
|
2442
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2443
|
-
[x: string]: unknown;
|
|
2444
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2445
|
-
[x: string]: unknown;
|
|
2446
|
-
}, 429, "application/json">>>;
|
|
2447
2241
|
};
|
|
2448
2242
|
/** The article API allows you to read article information. */
|
|
2449
2243
|
readonly article: {
|
|
@@ -5265,6 +5059,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5265
5059
|
defaultValue?: string;
|
|
5266
5060
|
label?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5267
5061
|
name: string;
|
|
5062
|
+
positionMeta?: {
|
|
5063
|
+
index?: number;
|
|
5064
|
+
section?: string;
|
|
5065
|
+
step?: string;
|
|
5066
|
+
};
|
|
5268
5067
|
required: boolean;
|
|
5269
5068
|
validationSchema?: string;
|
|
5270
5069
|
}[] | undefined;
|
|
@@ -5331,6 +5130,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5331
5130
|
defaultValue?: string;
|
|
5332
5131
|
label?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5333
5132
|
name: string;
|
|
5133
|
+
positionMeta?: {
|
|
5134
|
+
index?: number;
|
|
5135
|
+
section?: string;
|
|
5136
|
+
step?: string;
|
|
5137
|
+
};
|
|
5334
5138
|
required: boolean;
|
|
5335
5139
|
validationSchema?: string;
|
|
5336
5140
|
}[] | undefined;
|
|
@@ -14410,65 +14214,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14410
14214
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14411
14215
|
[x: string]: unknown;
|
|
14412
14216
|
}, 429, "application/json">>>;
|
|
14413
|
-
/** Update a Cronjob's app installation id. */
|
|
14414
|
-
replaceCronjobAppInstallationId: (request: {
|
|
14415
|
-
data: {
|
|
14416
|
-
appInstallationId: string;
|
|
14417
|
-
};
|
|
14418
|
-
cronjobId: string;
|
|
14419
|
-
headers?: {
|
|
14420
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
14421
|
-
"x-access-token"?: string | undefined;
|
|
14422
|
-
} | undefined;
|
|
14423
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
14424
|
-
data: {
|
|
14425
|
-
appInstallationId: string;
|
|
14426
|
-
};
|
|
14427
|
-
} & {
|
|
14428
|
-
pathParameters: {
|
|
14429
|
-
cronjobId: string;
|
|
14430
|
-
};
|
|
14431
|
-
} & {
|
|
14432
|
-
headers?: Partial<{
|
|
14433
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14434
|
-
}>;
|
|
14435
|
-
} & {
|
|
14436
|
-
headers: {
|
|
14437
|
-
"x-access-token"?: string | undefined;
|
|
14438
|
-
} & Partial<{
|
|
14439
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14440
|
-
}>;
|
|
14441
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
14442
|
-
[x: string]: unknown;
|
|
14443
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14444
|
-
[x: string]: unknown;
|
|
14445
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14446
|
-
[x: string]: unknown;
|
|
14447
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
14448
|
-
data: {
|
|
14449
|
-
appInstallationId: string;
|
|
14450
|
-
};
|
|
14451
|
-
} & {
|
|
14452
|
-
pathParameters: {
|
|
14453
|
-
cronjobId: string;
|
|
14454
|
-
};
|
|
14455
|
-
} & {
|
|
14456
|
-
headers?: Partial<{
|
|
14457
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14458
|
-
}>;
|
|
14459
|
-
} & {
|
|
14460
|
-
headers: {
|
|
14461
|
-
"x-access-token"?: string | undefined;
|
|
14462
|
-
} & Partial<{
|
|
14463
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14464
|
-
}>;
|
|
14465
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
14466
|
-
[x: string]: unknown;
|
|
14467
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14468
|
-
[x: string]: unknown;
|
|
14469
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14470
|
-
[x: string]: unknown;
|
|
14471
|
-
}, 429, "application/json">>>;
|
|
14472
14217
|
};
|
|
14473
14218
|
/** The customer API allows you to manage your own organizations and users. */
|
|
14474
14219
|
readonly customer: {
|
|
@@ -55,8 +55,6 @@ export declare const appGetMissingDependenciesForAppinstallation: OpenAPIOperati
|
|
|
55
55
|
export declare const appGetSystemsoftware: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
56
56
|
/** Get a SystemSoftwareVersion. */
|
|
57
57
|
export declare const appGetSystemsoftwareversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
58
|
-
/** Create linkage between an AppInstallation and a MySQLDatabase. */
|
|
59
|
-
export declare const appLinkDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
60
58
|
/** List AppInstallations that a user has access to. */
|
|
61
59
|
export declare const appListAppinstallationsForUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallations.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallations.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallations.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallations.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallations.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallations.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
62
60
|
/** List AppInstallations belonging to a Project. */
|
|
@@ -73,16 +71,12 @@ export declare const appListSystemsoftwares: OpenAPIOperation<RequestType<Simpli
|
|
|
73
71
|
export declare const appListSystemsoftwareversions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
74
72
|
/** List update candidates belonging to an AppVersion. */
|
|
75
73
|
export declare const appListUpdateCandidatesForAppversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
76
|
-
/** Replace a MySQL Database with another MySQL Database. */
|
|
77
|
-
export declare const appReplaceDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabaseReplace.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
78
74
|
/** Request a copy of an AppInstallation. */
|
|
79
75
|
export declare const appRequestAppinstallationCopy: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsCopy.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsCopy.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsCopy.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsCopy.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsCopy.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsCopy.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsCopy.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsCopy.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
80
76
|
/** Get runtime status belonging to an AppInstallation. */
|
|
81
77
|
export declare const appRetrieveStatus: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdStatus.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdStatus.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdStatus.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdStatus.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdStatus.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdStatus.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdStatus.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
82
78
|
/** Remove linkage between an AppInstallation and a Database. */
|
|
83
79
|
export declare const appUnlinkDatabase: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
84
|
-
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
85
|
-
export declare const appSetDatabaseUsers: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseIdUsers.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseIdUsers.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseIdUsers.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseIdUsers.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseIdUsers.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseIdUsers.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseIdUsers.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabasesDatabaseIdUsers.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
86
80
|
/** Get an Article. */
|
|
87
81
|
export declare const articleGetArticle: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
88
82
|
/** List Articles. */
|
|
@@ -293,8 +287,6 @@ export declare const cronjobUpdateCronjob: OpenAPIOperation<RequestType<Simplify
|
|
|
293
287
|
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">>;
|
|
294
288
|
/** Get a CronjobExecution. */
|
|
295
289
|
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">>;
|
|
296
|
-
/** Update a Cronjob's app installation id. */
|
|
297
|
-
export declare const cronjobReplaceCronjobAppInstallationId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
298
290
|
/** Accept a CustomerInvite. */
|
|
299
291
|
export declare const customerAcceptCustomerInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
300
292
|
/** List Invites belonging to a Customer. */
|