@mittwald/api-client 4.445.0 → 4.446.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.
@@ -28,8 +28,6 @@ const buildAppApi = (baseClient) => ({
28
28
  getAppinstallation: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallation, baseClient.app.getAppinstallation).getApiResource,
29
29
  /** Get an AppVersion. */
30
30
  getAppversion: new ApiCallAsyncResourceFactory(descriptors.appGetAppversion, baseClient.app.getAppversion).getApiResource,
31
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
32
- getInstalledSystemsoftwareForAppinstallation: new ApiCallAsyncResourceFactory(descriptors.appGetInstalledSystemsoftwareForAppinstallation, baseClient.app.getInstalledSystemsoftwareForAppinstallation).getApiResource,
33
31
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
34
32
  getMissingDependenciesForAppinstallation: new ApiCallAsyncResourceFactory(descriptors.appGetMissingDependenciesForAppinstallation, baseClient.app.getMissingDependenciesForAppinstallation).getApiResource,
35
33
  /** Get a SystemSoftware. */
@@ -52,6 +50,8 @@ const buildAppApi = (baseClient) => ({
52
50
  listUpdateCandidatesForAppversion: new ApiCallAsyncResourceFactory(descriptors.appListUpdateCandidatesForAppversion, baseClient.app.listUpdateCandidatesForAppversion).getApiResource,
53
51
  /** Get runtime status belonging to an AppInstallation. */
54
52
  retrieveStatus: new ApiCallAsyncResourceFactory(descriptors.appRetrieveStatus, baseClient.app.retrieveStatus).getApiResource,
53
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
54
+ getAppInstallationSystemSoftware: new ApiCallAsyncResourceFactory(descriptors.appGetAppInstallationSystemSoftware, baseClient.app.getAppInstallationSystemSoftware).getApiResource,
55
55
  });
56
56
  const buildArticleApi = (baseClient) => ({
57
57
  /** Get an Article. */
@@ -53,8 +53,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
53
53
  patchAppinstallation: this.requestFunctionFactory(descriptors.appPatchAppinstallation),
54
54
  /** Get an AppVersion. */
55
55
  getAppversion: this.requestFunctionFactory(descriptors.appGetAppversion),
56
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
57
- getInstalledSystemsoftwareForAppinstallation: this.requestFunctionFactory(descriptors.appGetInstalledSystemsoftwareForAppinstallation),
58
56
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
59
57
  getMissingDependenciesForAppinstallation: this.requestFunctionFactory(descriptors.appGetMissingDependenciesForAppinstallation),
60
58
  /** Get a SystemSoftware. */
@@ -83,6 +81,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
83
81
  retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
84
82
  /** Remove linkage between an AppInstallation and a Database. */
85
83
  unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
84
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
85
+ getAppInstallationSystemSoftware: this.requestFunctionFactory(descriptors.appGetAppInstallationSystemSoftware),
86
86
  };
87
87
  /** The article API allows you to read article information. */
88
88
  article = {
@@ -130,12 +130,6 @@ export const appGetAppversion = {
130
130
  method: "GET",
131
131
  operationId: "app-get-appversion",
132
132
  };
133
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
134
- export const appGetInstalledSystemsoftwareForAppinstallation = {
135
- path: "/v2/app-installations/{appInstallationId}/systemSoftware",
136
- method: "GET",
137
- operationId: "app-get-installed-systemsoftware-for-appinstallation",
138
- };
139
133
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
140
134
  export const appGetMissingDependenciesForAppinstallation = {
141
135
  path: "/v2/app-installations/{appInstallationId}/missing-dependencies",
@@ -2800,3 +2794,9 @@ export const verificationVerifyCompany = {
2800
2794
  method: "POST",
2801
2795
  operationId: "verification-verify-company",
2802
2796
  };
2797
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
2798
+ export const appGetAppInstallationSystemSoftware = {
2799
+ path: "/v2/app-installations/{appInstallationId}/system-software",
2800
+ method: "GET",
2801
+ operationId: "app-get-app-installation-system-software",
2802
+ };
@@ -28,8 +28,6 @@ const buildAppApi = (baseClient) => ({
28
28
  getAppinstallation: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallation, baseClient.app.getAppinstallation).getApiResource,
29
29
  /** Get an AppVersion. */
30
30
  getAppversion: new ApiCallAsyncResourceFactory(descriptors.appGetAppversion, baseClient.app.getAppversion).getApiResource,
31
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
32
- getInstalledSystemsoftwareForAppinstallation: new ApiCallAsyncResourceFactory(descriptors.appGetInstalledSystemsoftwareForAppinstallation, baseClient.app.getInstalledSystemsoftwareForAppinstallation).getApiResource,
33
31
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
34
32
  getMissingDependenciesForAppinstallation: new ApiCallAsyncResourceFactory(descriptors.appGetMissingDependenciesForAppinstallation, baseClient.app.getMissingDependenciesForAppinstallation).getApiResource,
35
33
  /** Get a SystemSoftware. */
@@ -52,6 +50,8 @@ const buildAppApi = (baseClient) => ({
52
50
  listUpdateCandidatesForAppversion: new ApiCallAsyncResourceFactory(descriptors.appListUpdateCandidatesForAppversion, baseClient.app.listUpdateCandidatesForAppversion).getApiResource,
53
51
  /** Get runtime status belonging to an AppInstallation. */
54
52
  retrieveStatus: new ApiCallAsyncResourceFactory(descriptors.appRetrieveStatus, baseClient.app.retrieveStatus).getApiResource,
53
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
54
+ getAppInstallationSystemSoftware: new ApiCallAsyncResourceFactory(descriptors.appGetAppInstallationSystemSoftware, baseClient.app.getAppInstallationSystemSoftware).getApiResource,
55
55
  });
56
56
  const buildArticleApi = (baseClient) => ({
57
57
  /** Get an Article. */
@@ -53,8 +53,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
53
53
  patchAppinstallation: this.requestFunctionFactory(descriptors.appPatchAppinstallation),
54
54
  /** Get an AppVersion. */
55
55
  getAppversion: this.requestFunctionFactory(descriptors.appGetAppversion),
56
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
57
- getInstalledSystemsoftwareForAppinstallation: this.requestFunctionFactory(descriptors.appGetInstalledSystemsoftwareForAppinstallation),
58
56
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
59
57
  getMissingDependenciesForAppinstallation: this.requestFunctionFactory(descriptors.appGetMissingDependenciesForAppinstallation),
60
58
  /** Get a SystemSoftware. */
@@ -83,6 +81,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
83
81
  retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
84
82
  /** Remove linkage between an AppInstallation and a Database. */
85
83
  unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
84
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
85
+ getAppInstallationSystemSoftware: this.requestFunctionFactory(descriptors.appGetAppInstallationSystemSoftware),
86
86
  };
87
87
  /** The article API allows you to read article information. */
88
88
  article = {
@@ -130,12 +130,6 @@ export const appGetAppversion = {
130
130
  method: "GET",
131
131
  operationId: "app-get-appversion",
132
132
  };
133
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
134
- export const appGetInstalledSystemsoftwareForAppinstallation = {
135
- path: "/v3-next/app-installations/{appInstallationId}/systemSoftware",
136
- method: "GET",
137
- operationId: "app-get-installed-systemsoftware-for-appinstallation",
138
- };
139
133
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
140
134
  export const appGetMissingDependenciesForAppinstallation = {
141
135
  path: "/v3-next/app-installations/{appInstallationId}/missing-dependencies",
@@ -2800,3 +2794,9 @@ export const verificationVerifyCompany = {
2800
2794
  method: "POST",
2801
2795
  operationId: "verification-verify-company",
2802
2796
  };
2797
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
2798
+ export const appGetAppInstallationSystemSoftware = {
2799
+ path: "/v3-next/app-installations/{appInstallationId}/system-software",
2800
+ method: "GET",
2801
+ operationId: "app-get-app-installation-system-software",
2802
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.444.0';
1
+ export const MittwaldAPIClientVersion = '4.445.0';
@@ -189,18 +189,6 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
189
189
  systemSoftwareDependencies?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareDependency[] | undefined;
190
190
  userInputs?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppUserInput[] | undefined;
191
191
  }>;
192
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
193
- getInstalledSystemsoftwareForAppinstallation: (conf: {
194
- appInstallationId: string;
195
- headers?: {
196
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
197
- "x-access-token"?: string | undefined;
198
- } | undefined;
199
- queryParameters?: {
200
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
201
- tagFilter?: string | undefined;
202
- } | undefined;
203
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[]>;
204
192
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
205
193
  getMissingDependenciesForAppinstallation: (conf: {
206
194
  queryParameters: {
@@ -358,6 +346,18 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
358
346
  state: "running" | "stopped" | "exited";
359
347
  uptimeSeconds?: number | undefined;
360
348
  }>;
349
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
350
+ getAppInstallationSystemSoftware: (conf: {
351
+ appInstallationId: string;
352
+ headers?: {
353
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
354
+ "x-access-token"?: string | undefined;
355
+ } | undefined;
356
+ queryParameters?: {
357
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
358
+ tagFilter?: string | undefined;
359
+ } | undefined;
360
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[]>;
361
361
  };
362
362
  declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
363
363
  /** Get an Article. */
@@ -1369,66 +1369,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1369
1369
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
1370
1370
  [x: string]: unknown;
1371
1371
  }, 429, "application/json">>>;
1372
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
1373
- getInstalledSystemsoftwareForAppinstallation: (request: {
1374
- appInstallationId: string;
1375
- headers?: {
1376
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1377
- "x-access-token"?: string | undefined;
1378
- } | undefined;
1379
- queryParameters?: {
1380
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1381
- tagFilter?: string | undefined;
1382
- } | undefined;
1383
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
1384
- headers?: Partial<{
1385
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1386
- }>;
1387
- } & {
1388
- pathParameters: {
1389
- appInstallationId: string;
1390
- };
1391
- } & {
1392
- queryParameters: {
1393
- tagFilter?: string | undefined;
1394
- } & Partial<{
1395
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1396
- }>;
1397
- } & {
1398
- headers: {
1399
- "x-access-token"?: string | undefined;
1400
- } & Partial<{
1401
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1402
- }>;
1403
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
1404
- [x: string]: unknown;
1405
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
1406
- [x: string]: unknown;
1407
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
1408
- headers?: Partial<{
1409
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1410
- }>;
1411
- } & {
1412
- pathParameters: {
1413
- appInstallationId: string;
1414
- };
1415
- } & {
1416
- queryParameters: {
1417
- tagFilter?: string | undefined;
1418
- } & Partial<{
1419
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1420
- }>;
1421
- } & {
1422
- headers: {
1423
- "x-access-token"?: string | undefined;
1424
- } & Partial<{
1425
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1426
- }>;
1427
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
1428
- [x: string]: unknown;
1429
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
1430
- [x: string]: unknown;
1431
- }, 429, "application/json">>>;
1432
1372
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
1433
1373
  getMissingDependenciesForAppinstallation: (request: {
1434
1374
  queryParameters: {
@@ -2238,6 +2178,66 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2238
2178
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2239
2179
  [x: string]: unknown;
2240
2180
  }, 429, "application/json">>>;
2181
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
2182
+ getAppInstallationSystemSoftware: (request: {
2183
+ appInstallationId: string;
2184
+ headers?: {
2185
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2186
+ "x-access-token"?: string | undefined;
2187
+ } | undefined;
2188
+ queryParameters?: {
2189
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2190
+ tagFilter?: string | undefined;
2191
+ } | undefined;
2192
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2193
+ headers?: Partial<{
2194
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2195
+ }>;
2196
+ } & {
2197
+ pathParameters: {
2198
+ appInstallationId: string;
2199
+ };
2200
+ } & {
2201
+ queryParameters: {
2202
+ tagFilter?: string | undefined;
2203
+ } & Partial<{
2204
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2205
+ }>;
2206
+ } & {
2207
+ headers: {
2208
+ "x-access-token"?: string | undefined;
2209
+ } & Partial<{
2210
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2211
+ }>;
2212
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2213
+ [x: string]: unknown;
2214
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2215
+ [x: string]: unknown;
2216
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2217
+ headers?: Partial<{
2218
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2219
+ }>;
2220
+ } & {
2221
+ pathParameters: {
2222
+ appInstallationId: string;
2223
+ };
2224
+ } & {
2225
+ queryParameters: {
2226
+ tagFilter?: string | undefined;
2227
+ } & Partial<{
2228
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2229
+ }>;
2230
+ } & {
2231
+ headers: {
2232
+ "x-access-token"?: string | undefined;
2233
+ } & Partial<{
2234
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2235
+ }>;
2236
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2237
+ [x: string]: unknown;
2238
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2239
+ [x: string]: unknown;
2240
+ }, 429, "application/json">>>;
2241
2241
  };
2242
2242
  /** The article API allows you to read article information. */
2243
2243
  readonly article: {
@@ -47,8 +47,6 @@ export declare const appUninstallAppinstallation: OpenAPIOperation<RequestType<S
47
47
  export declare const appPatchAppinstallation: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
48
48
  /** Get an AppVersion. */
49
49
  export declare const appGetAppversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
50
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
51
- export declare const appGetInstalledSystemsoftwareForAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
52
50
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
53
51
  export declare const appGetMissingDependenciesForAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdMissingDependencies.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdMissingDependencies.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdMissingDependencies.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdMissingDependencies.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdMissingDependencies.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdMissingDependencies.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdMissingDependencies.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
54
52
  /** Get a SystemSoftware. */
@@ -937,3 +935,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
937
935
  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.Default.Content.ApplicationJson>, "default", "application/json">>;
938
936
  /** Check if a company exists. */
939
937
  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.Default.Content.ApplicationJson>, "default", "application/json">>;
938
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
939
+ export declare const appGetAppInstallationSystemSoftware: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -90,10 +90,6 @@ export declare namespace MittwaldAPIV2 {
90
90
  type RequestData = InferredRequestData<typeof descriptors.appGetAppversion>;
91
91
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetAppversion, TStatus>;
92
92
  }
93
- namespace AppGetInstalledSystemsoftwareForAppinstallation {
94
- type RequestData = InferredRequestData<typeof descriptors.appGetInstalledSystemsoftwareForAppinstallation>;
95
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetInstalledSystemsoftwareForAppinstallation, TStatus>;
96
- }
97
93
  namespace AppGetMissingDependenciesForAppinstallation {
98
94
  type RequestData = InferredRequestData<typeof descriptors.appGetMissingDependenciesForAppinstallation>;
99
95
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetMissingDependenciesForAppinstallation, TStatus>;
@@ -1870,6 +1866,10 @@ export declare namespace MittwaldAPIV2 {
1870
1866
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1871
1867
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1872
1868
  }
1869
+ namespace AppGetAppInstallationSystemSoftware {
1870
+ type RequestData = InferredRequestData<typeof descriptors.appGetAppInstallationSystemSoftware>;
1871
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetAppInstallationSystemSoftware, TStatus>;
1872
+ }
1873
1873
  }
1874
1874
  namespace Components {
1875
1875
  namespace Schemas {
@@ -8516,47 +8516,7 @@ export declare namespace MittwaldAPIV2 {
8516
8516
  }
8517
8517
  }
8518
8518
  }
8519
- namespace V2AppInstallationsAppInstallationIdSystemSoftware {
8520
- namespace Get {
8521
- namespace Parameters {
8522
- type Path = {
8523
- appInstallationId: string;
8524
- };
8525
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8526
- type Query = {
8527
- tagFilter?: string;
8528
- };
8529
- }
8530
- namespace Responses {
8531
- namespace $200 {
8532
- namespace Content {
8533
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.AppSystemSoftware[];
8534
- }
8535
- }
8536
- namespace $404 {
8537
- namespace Content {
8538
- interface ApplicationJson {
8539
- [k: string]: unknown;
8540
- }
8541
- }
8542
- }
8543
- namespace $429 {
8544
- namespace Content {
8545
- interface ApplicationJson {
8546
- [k: string]: unknown;
8547
- }
8548
- }
8549
- }
8550
- namespace Default {
8551
- namespace Content {
8552
- interface ApplicationJson {
8553
- [k: string]: unknown;
8554
- }
8555
- }
8556
- }
8557
- }
8558
- }
8559
- }
8519
+ namespace V2AppInstallationsAppInstallationIdSystemSoftware { }
8560
8520
  namespace V2AppinstallationsAppInstallationIdMissingDependencies { }
8561
8521
  namespace V2AppInstallationsAppInstallationIdMissingDependencies {
8562
8522
  namespace Get {
@@ -31397,5 +31357,46 @@ export declare namespace MittwaldAPIV2 {
31397
31357
  }
31398
31358
  }
31399
31359
  }
31360
+ namespace V2AppInstallationsAppInstallationIdSystemSoftware {
31361
+ namespace Get {
31362
+ namespace Parameters {
31363
+ type Path = {
31364
+ appInstallationId: string;
31365
+ };
31366
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31367
+ type Query = {
31368
+ tagFilter?: string;
31369
+ };
31370
+ }
31371
+ namespace Responses {
31372
+ namespace $200 {
31373
+ namespace Content {
31374
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AppSystemSoftware[];
31375
+ }
31376
+ }
31377
+ namespace $404 {
31378
+ namespace Content {
31379
+ interface ApplicationJson {
31380
+ [k: string]: unknown;
31381
+ }
31382
+ }
31383
+ }
31384
+ namespace $429 {
31385
+ namespace Content {
31386
+ interface ApplicationJson {
31387
+ [k: string]: unknown;
31388
+ }
31389
+ }
31390
+ }
31391
+ namespace Default {
31392
+ namespace Content {
31393
+ interface ApplicationJson {
31394
+ [k: string]: unknown;
31395
+ }
31396
+ }
31397
+ }
31398
+ }
31399
+ }
31400
+ }
31400
31401
  }
31401
31402
  }
@@ -189,18 +189,6 @@ declare const buildAppApi: (baseClient: MittwaldAPIV3NextClient) => {
189
189
  systemSoftwareDependencies?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftwareDependency[] | undefined;
190
190
  userInputs?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppUserInput[] | undefined;
191
191
  }>;
192
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
193
- getInstalledSystemsoftwareForAppinstallation: (conf: {
194
- appInstallationId: string;
195
- headers?: {
196
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
197
- "x-access-token"?: string | undefined;
198
- } | undefined;
199
- queryParameters?: {
200
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
201
- tagFilter?: string | undefined;
202
- } | undefined;
203
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftware[]>;
204
192
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
205
193
  getMissingDependenciesForAppinstallation: (conf: {
206
194
  queryParameters: {
@@ -358,6 +346,18 @@ declare const buildAppApi: (baseClient: MittwaldAPIV3NextClient) => {
358
346
  state: "running" | "stopped" | "exited";
359
347
  uptimeSeconds?: number | undefined;
360
348
  }>;
349
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
350
+ getAppInstallationSystemSoftware: (conf: {
351
+ appInstallationId: string;
352
+ headers?: {
353
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
354
+ "x-access-token"?: string | undefined;
355
+ } | undefined;
356
+ queryParameters?: {
357
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
358
+ tagFilter?: string | undefined;
359
+ } | undefined;
360
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftware[]>;
361
361
  };
362
362
  declare const buildArticleApi: (baseClient: MittwaldAPIV3NextClient) => {
363
363
  /** Get an Article. */
@@ -1369,66 +1369,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
1369
1369
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
1370
1370
  [x: string]: unknown;
1371
1371
  }, 429, "application/json">>>;
1372
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
1373
- getInstalledSystemsoftwareForAppinstallation: (request: {
1374
- appInstallationId: string;
1375
- headers?: {
1376
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1377
- "x-access-token"?: string | undefined;
1378
- } | undefined;
1379
- queryParameters?: {
1380
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1381
- tagFilter?: string | undefined;
1382
- } | undefined;
1383
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
1384
- headers?: Partial<{
1385
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1386
- }>;
1387
- } & {
1388
- pathParameters: {
1389
- appInstallationId: string;
1390
- };
1391
- } & {
1392
- queryParameters: {
1393
- tagFilter?: string | undefined;
1394
- } & Partial<{
1395
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1396
- }>;
1397
- } & {
1398
- headers: {
1399
- "x-access-token"?: string | undefined;
1400
- } & Partial<{
1401
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1402
- }>;
1403
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftware[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
1404
- [x: string]: unknown;
1405
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
1406
- [x: string]: unknown;
1407
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
1408
- headers?: Partial<{
1409
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1410
- }>;
1411
- } & {
1412
- pathParameters: {
1413
- appInstallationId: string;
1414
- };
1415
- } & {
1416
- queryParameters: {
1417
- tagFilter?: string | undefined;
1418
- } & Partial<{
1419
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1420
- }>;
1421
- } & {
1422
- headers: {
1423
- "x-access-token"?: string | undefined;
1424
- } & Partial<{
1425
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1426
- }>;
1427
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftware[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
1428
- [x: string]: unknown;
1429
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
1430
- [x: string]: unknown;
1431
- }, 429, "application/json">>>;
1432
1372
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
1433
1373
  getMissingDependenciesForAppinstallation: (request: {
1434
1374
  queryParameters: {
@@ -2238,6 +2178,66 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
2238
2178
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2239
2179
  [x: string]: unknown;
2240
2180
  }, 429, "application/json">>>;
2181
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
2182
+ getAppInstallationSystemSoftware: (request: {
2183
+ appInstallationId: string;
2184
+ headers?: {
2185
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2186
+ "x-access-token"?: string | undefined;
2187
+ } | undefined;
2188
+ queryParameters?: {
2189
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2190
+ tagFilter?: string | undefined;
2191
+ } | undefined;
2192
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2193
+ headers?: Partial<{
2194
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2195
+ }>;
2196
+ } & {
2197
+ pathParameters: {
2198
+ appInstallationId: string;
2199
+ };
2200
+ } & {
2201
+ queryParameters: {
2202
+ tagFilter?: string | undefined;
2203
+ } & Partial<{
2204
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2205
+ }>;
2206
+ } & {
2207
+ headers: {
2208
+ "x-access-token"?: string | undefined;
2209
+ } & Partial<{
2210
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2211
+ }>;
2212
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftware[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2213
+ [x: string]: unknown;
2214
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2215
+ [x: string]: unknown;
2216
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2217
+ headers?: Partial<{
2218
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2219
+ }>;
2220
+ } & {
2221
+ pathParameters: {
2222
+ appInstallationId: string;
2223
+ };
2224
+ } & {
2225
+ queryParameters: {
2226
+ tagFilter?: string | undefined;
2227
+ } & Partial<{
2228
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2229
+ }>;
2230
+ } & {
2231
+ headers: {
2232
+ "x-access-token"?: string | undefined;
2233
+ } & Partial<{
2234
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2235
+ }>;
2236
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftware[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2237
+ [x: string]: unknown;
2238
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2239
+ [x: string]: unknown;
2240
+ }, 429, "application/json">>>;
2241
2241
  };
2242
2242
  /** The article API allows you to read article information. */
2243
2243
  readonly article: {
@@ -47,8 +47,6 @@ export declare const appUninstallAppinstallation: OpenAPIOperation<RequestType<S
47
47
  export declare const appPatchAppinstallation: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
48
48
  /** Get an AppVersion. */
49
49
  export declare const appGetAppversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppsAppIdVersionsAppVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppsAppIdVersionsAppVersionId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppsAppIdVersionsAppVersionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppsAppIdVersionsAppVersionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppsAppIdVersionsAppVersionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppsAppIdVersionsAppVersionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppsAppIdVersionsAppVersionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
50
- /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
51
- export declare const appGetInstalledSystemsoftwareForAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
52
50
  /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
53
51
  export declare const appGetMissingDependenciesForAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdMissingDependencies.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdMissingDependencies.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdMissingDependencies.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdMissingDependencies.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdMissingDependencies.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdMissingDependencies.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdMissingDependencies.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
54
52
  /** Get a SystemSoftware. */
@@ -937,3 +935,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
937
935
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
938
936
  /** Check if a company exists. */
939
937
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
938
+ /** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
939
+ export declare const appGetAppInstallationSystemSoftware: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -90,10 +90,6 @@ export declare namespace MittwaldAPIV3Next {
90
90
  type RequestData = InferredRequestData<typeof descriptors.appGetAppversion>;
91
91
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetAppversion, TStatus>;
92
92
  }
93
- namespace AppGetInstalledSystemsoftwareForAppinstallation {
94
- type RequestData = InferredRequestData<typeof descriptors.appGetInstalledSystemsoftwareForAppinstallation>;
95
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetInstalledSystemsoftwareForAppinstallation, TStatus>;
96
- }
97
93
  namespace AppGetMissingDependenciesForAppinstallation {
98
94
  type RequestData = InferredRequestData<typeof descriptors.appGetMissingDependenciesForAppinstallation>;
99
95
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetMissingDependenciesForAppinstallation, TStatus>;
@@ -1870,6 +1866,10 @@ export declare namespace MittwaldAPIV3Next {
1870
1866
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1871
1867
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1872
1868
  }
1869
+ namespace AppGetAppInstallationSystemSoftware {
1870
+ type RequestData = InferredRequestData<typeof descriptors.appGetAppInstallationSystemSoftware>;
1871
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetAppInstallationSystemSoftware, TStatus>;
1872
+ }
1873
1873
  }
1874
1874
  namespace Components {
1875
1875
  namespace Schemas {
@@ -8519,47 +8519,7 @@ export declare namespace MittwaldAPIV3Next {
8519
8519
  }
8520
8520
  }
8521
8521
  }
8522
- namespace V3NextAppInstallationsAppInstallationIdSystemSoftware {
8523
- namespace Get {
8524
- namespace Parameters {
8525
- type Path = {
8526
- appInstallationId: string;
8527
- };
8528
- type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
8529
- type Query = {
8530
- tagFilter?: string;
8531
- };
8532
- }
8533
- namespace Responses {
8534
- namespace $200 {
8535
- namespace Content {
8536
- type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftware[];
8537
- }
8538
- }
8539
- namespace $404 {
8540
- namespace Content {
8541
- interface ApplicationJson {
8542
- [k: string]: unknown;
8543
- }
8544
- }
8545
- }
8546
- namespace $429 {
8547
- namespace Content {
8548
- interface ApplicationJson {
8549
- [k: string]: unknown;
8550
- }
8551
- }
8552
- }
8553
- namespace Default {
8554
- namespace Content {
8555
- interface ApplicationJson {
8556
- [k: string]: unknown;
8557
- }
8558
- }
8559
- }
8560
- }
8561
- }
8562
- }
8522
+ namespace V3NextAppInstallationsAppInstallationIdSystemSoftware { }
8563
8523
  namespace V3NextAppInstallationsAppInstallationIdMissingDependencies {
8564
8524
  namespace Get {
8565
8525
  namespace Parameters {
@@ -31321,5 +31281,46 @@ export declare namespace MittwaldAPIV3Next {
31321
31281
  }
31322
31282
  }
31323
31283
  }
31284
+ namespace V3NextAppInstallationsAppInstallationIdSystemSoftware {
31285
+ namespace Get {
31286
+ namespace Parameters {
31287
+ type Path = {
31288
+ appInstallationId: string;
31289
+ };
31290
+ type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
31291
+ type Query = {
31292
+ tagFilter?: string;
31293
+ };
31294
+ }
31295
+ namespace Responses {
31296
+ namespace $200 {
31297
+ namespace Content {
31298
+ type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppSystemSoftware[];
31299
+ }
31300
+ }
31301
+ namespace $404 {
31302
+ namespace Content {
31303
+ interface ApplicationJson {
31304
+ [k: string]: unknown;
31305
+ }
31306
+ }
31307
+ }
31308
+ namespace $429 {
31309
+ namespace Content {
31310
+ interface ApplicationJson {
31311
+ [k: string]: unknown;
31312
+ }
31313
+ }
31314
+ }
31315
+ namespace Default {
31316
+ namespace Content {
31317
+ interface ApplicationJson {
31318
+ [k: string]: unknown;
31319
+ }
31320
+ }
31321
+ }
31322
+ }
31323
+ }
31324
+ }
31324
31325
  }
31325
31326
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.444.0';
1
+ export declare const MittwaldAPIClientVersion = '4.445.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.445.0",
3
+ "version": "4.446.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",
@@ -72,11 +72,11 @@
72
72
  "test:compile": "run tsc --noEmit"
73
73
  },
74
74
  "dependencies": {
75
- "@mittwald/api-client-commons": "^4.445.0",
75
+ "@mittwald/api-client-commons": "^4.446.0",
76
76
  "browser-or-node": "^3.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@mittwald/api-code-generator": "^4.445.0",
79
+ "@mittwald/api-code-generator": "^4.446.0",
80
80
  "@mittwald/react-use-promise": "^2.6.2",
81
81
  "@types/node": "^22.18.11",
82
82
  "@types/react": "^18.3.26",
@@ -106,5 +106,5 @@
106
106
  "optional": true
107
107
  }
108
108
  },
109
- "gitHead": "01edb0a20dd2cc572881a85c8c2d5e5cd3ff3e4b"
109
+ "gitHead": "ead12ef1edd195e5799a38b3133da861ef6f11dd"
110
110
  }