@mittwald/api-client 4.384.0 → 4.386.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +2 -0
- package/dist/esm/generated/v2/client.js +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +23 -0
- package/dist/types/generated/v2/client.d.ts +97 -0
- package/dist/types/generated/v2/descriptors.d.ts +3 -1
- package/dist/types/generated/v2/types.d.ts +392 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -446,6 +446,8 @@ const buildProjectApi = (baseClient) => ({
|
|
|
446
446
|
storagespaceGetProjectStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetProjectStatistics, baseClient.project.storagespaceGetProjectStatistics).getApiResource,
|
|
447
447
|
/** Get storage space Statistics belonging to a Server. */
|
|
448
448
|
storagespaceGetServerStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetServerStatistics, baseClient.project.storagespaceGetServerStatistics).getApiResource,
|
|
449
|
+
/** Get the activities of a project. */
|
|
450
|
+
listProjectActivities: new ApiCallAsyncResourceFactory(descriptors.projectListProjectActivities, baseClient.project.listProjectActivities).getApiResource,
|
|
449
451
|
});
|
|
450
452
|
const buildProjectFileSystemApi = (baseClient) => ({
|
|
451
453
|
/** List directories belonging to a Project. */
|
|
@@ -962,6 +962,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
962
962
|
storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
|
|
963
963
|
/** Update a Server's storage space notification threshold. */
|
|
964
964
|
storagespaceReplaceServerNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceServerNotificationThreshold),
|
|
965
|
+
/** Get the activities of a project. */
|
|
966
|
+
listProjectActivities: this.requestFunctionFactory(descriptors.projectListProjectActivities),
|
|
965
967
|
};
|
|
966
968
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
967
969
|
projectFileSystem = {
|
|
@@ -2788,3 +2788,9 @@ export const verificationVerifyCompany = {
|
|
|
2788
2788
|
method: "POST",
|
|
2789
2789
|
operationId: "verification-verify-company",
|
|
2790
2790
|
};
|
|
2791
|
+
/** Get the activities of a project. */
|
|
2792
|
+
export const projectListProjectActivities = {
|
|
2793
|
+
path: "/v2/projects/{projectId}/activities",
|
|
2794
|
+
method: "GET",
|
|
2795
|
+
operationId: "project-list-project-activities",
|
|
2796
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.385.0';
|
|
@@ -647,6 +647,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
647
647
|
pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
|
|
648
648
|
projectId: string;
|
|
649
649
|
requiresRecreate: boolean;
|
|
650
|
+
restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped" | undefined;
|
|
650
651
|
serviceName: string;
|
|
651
652
|
shortId: string;
|
|
652
653
|
stackId: string;
|
|
@@ -2267,6 +2268,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2267
2268
|
id: string;
|
|
2268
2269
|
ips: {
|
|
2269
2270
|
v4: string[];
|
|
2271
|
+
v6: string[];
|
|
2270
2272
|
};
|
|
2271
2273
|
isDefault: boolean;
|
|
2272
2274
|
isDomain?: boolean | undefined;
|
|
@@ -3479,6 +3481,27 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3479
3481
|
notificationThresholdInBytes?: number | undefined;
|
|
3480
3482
|
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
3481
3483
|
}>;
|
|
3484
|
+
/** Get the activities of a project. */
|
|
3485
|
+
listProjectActivities: (conf: {
|
|
3486
|
+
projectId: string;
|
|
3487
|
+
headers?: {
|
|
3488
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3489
|
+
} | undefined;
|
|
3490
|
+
queryParameters?: {
|
|
3491
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3492
|
+
aggregateName?: string | undefined;
|
|
3493
|
+
aggregateDomain?: string | undefined;
|
|
3494
|
+
aggregateId?: string | undefined;
|
|
3495
|
+
startTime?: string | undefined;
|
|
3496
|
+
endTime?: string | undefined;
|
|
3497
|
+
fulltextSearch?: string | undefined;
|
|
3498
|
+
limit?: number | undefined;
|
|
3499
|
+
skip?: number | undefined;
|
|
3500
|
+
page?: number | undefined;
|
|
3501
|
+
sort?: "dateTime" | undefined;
|
|
3502
|
+
order?: "asc" | "desc" | undefined;
|
|
3503
|
+
} | undefined;
|
|
3504
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[]>;
|
|
3482
3505
|
};
|
|
3483
3506
|
declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
3484
3507
|
/** List directories belonging to a Project. */
|
|
@@ -3971,6 +3971,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3971
3971
|
[x: string]: string;
|
|
3972
3972
|
} | undefined;
|
|
3973
3973
|
ports?: string[] | undefined;
|
|
3974
|
+
restartPolicy?: string | undefined;
|
|
3974
3975
|
volumes?: string[] | undefined;
|
|
3975
3976
|
};
|
|
3976
3977
|
} | undefined;
|
|
@@ -4102,6 +4103,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4102
4103
|
} | undefined;
|
|
4103
4104
|
image?: string | undefined;
|
|
4104
4105
|
ports?: string[] | undefined;
|
|
4106
|
+
restartPolicy?: string | undefined;
|
|
4105
4107
|
volumes?: string[] | undefined;
|
|
4106
4108
|
};
|
|
4107
4109
|
} | undefined;
|
|
@@ -4763,6 +4765,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4763
4765
|
pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
|
|
4764
4766
|
projectId: string;
|
|
4765
4767
|
requiresRecreate: boolean;
|
|
4768
|
+
restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped" | undefined;
|
|
4766
4769
|
serviceName: string;
|
|
4767
4770
|
shortId: string;
|
|
4768
4771
|
stackId: string;
|
|
@@ -4804,6 +4807,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4804
4807
|
pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
|
|
4805
4808
|
projectId: string;
|
|
4806
4809
|
requiresRecreate: boolean;
|
|
4810
|
+
restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped" | undefined;
|
|
4807
4811
|
serviceName: string;
|
|
4808
4812
|
shortId: string;
|
|
4809
4813
|
stackId: string;
|
|
@@ -19238,6 +19242,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19238
19242
|
id: string;
|
|
19239
19243
|
ips: {
|
|
19240
19244
|
v4: string[];
|
|
19245
|
+
v6: string[];
|
|
19241
19246
|
};
|
|
19242
19247
|
isDefault: boolean;
|
|
19243
19248
|
isDomain?: boolean | undefined;
|
|
@@ -19270,6 +19275,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19270
19275
|
id: string;
|
|
19271
19276
|
ips: {
|
|
19272
19277
|
v4: string[];
|
|
19278
|
+
v6: string[];
|
|
19273
19279
|
};
|
|
19274
19280
|
isDefault: boolean;
|
|
19275
19281
|
isDomain?: boolean | undefined;
|
|
@@ -24896,6 +24902,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24896
24902
|
message?: string | undefined;
|
|
24897
24903
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
24898
24904
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24905
|
+
message: string;
|
|
24906
|
+
type: string;
|
|
24907
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24899
24908
|
[x: string]: unknown;
|
|
24900
24909
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24901
24910
|
data: {
|
|
@@ -24911,6 +24920,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24911
24920
|
message?: string | undefined;
|
|
24912
24921
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
24913
24922
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24923
|
+
message: string;
|
|
24924
|
+
type: string;
|
|
24925
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24914
24926
|
[x: string]: unknown;
|
|
24915
24927
|
}, 429, "application/json">>>;
|
|
24916
24928
|
/** Request a support code. */
|
|
@@ -29387,6 +29399,91 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
29387
29399
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29388
29400
|
[x: string]: unknown;
|
|
29389
29401
|
}, 500, "application/json">>>;
|
|
29402
|
+
/** Get the activities of a project. */
|
|
29403
|
+
listProjectActivities: (request: {
|
|
29404
|
+
projectId: string;
|
|
29405
|
+
headers?: {
|
|
29406
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29407
|
+
} | undefined;
|
|
29408
|
+
queryParameters?: {
|
|
29409
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29410
|
+
aggregateName?: string | undefined;
|
|
29411
|
+
aggregateDomain?: string | undefined;
|
|
29412
|
+
aggregateId?: string | undefined;
|
|
29413
|
+
startTime?: string | undefined;
|
|
29414
|
+
endTime?: string | undefined;
|
|
29415
|
+
fulltextSearch?: string | undefined;
|
|
29416
|
+
limit?: number | undefined;
|
|
29417
|
+
skip?: number | undefined;
|
|
29418
|
+
page?: number | undefined;
|
|
29419
|
+
sort?: "dateTime" | undefined;
|
|
29420
|
+
order?: "asc" | "desc" | undefined;
|
|
29421
|
+
} | undefined;
|
|
29422
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29423
|
+
headers?: Partial<{
|
|
29424
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29425
|
+
}>;
|
|
29426
|
+
} & {
|
|
29427
|
+
pathParameters: {
|
|
29428
|
+
projectId: string;
|
|
29429
|
+
};
|
|
29430
|
+
} & {
|
|
29431
|
+
queryParameters: {
|
|
29432
|
+
aggregateName?: string | undefined;
|
|
29433
|
+
aggregateDomain?: string | undefined;
|
|
29434
|
+
aggregateId?: string | undefined;
|
|
29435
|
+
startTime?: string | undefined;
|
|
29436
|
+
endTime?: string | undefined;
|
|
29437
|
+
fulltextSearch?: string | undefined;
|
|
29438
|
+
limit?: number | undefined;
|
|
29439
|
+
skip?: number | undefined;
|
|
29440
|
+
page?: number | undefined;
|
|
29441
|
+
sort?: "dateTime" | undefined;
|
|
29442
|
+
order?: "asc" | "desc" | undefined;
|
|
29443
|
+
} & Partial<{
|
|
29444
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29445
|
+
}>;
|
|
29446
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29447
|
+
[x: string]: unknown;
|
|
29448
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29449
|
+
[x: string]: unknown;
|
|
29450
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29451
|
+
[x: string]: unknown;
|
|
29452
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29453
|
+
[x: string]: unknown;
|
|
29454
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29455
|
+
headers?: Partial<{
|
|
29456
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29457
|
+
}>;
|
|
29458
|
+
} & {
|
|
29459
|
+
pathParameters: {
|
|
29460
|
+
projectId: string;
|
|
29461
|
+
};
|
|
29462
|
+
} & {
|
|
29463
|
+
queryParameters: {
|
|
29464
|
+
aggregateName?: string | undefined;
|
|
29465
|
+
aggregateDomain?: string | undefined;
|
|
29466
|
+
aggregateId?: string | undefined;
|
|
29467
|
+
startTime?: string | undefined;
|
|
29468
|
+
endTime?: string | undefined;
|
|
29469
|
+
fulltextSearch?: string | undefined;
|
|
29470
|
+
limit?: number | undefined;
|
|
29471
|
+
skip?: number | undefined;
|
|
29472
|
+
page?: number | undefined;
|
|
29473
|
+
sort?: "dateTime" | undefined;
|
|
29474
|
+
order?: "asc" | "desc" | undefined;
|
|
29475
|
+
} & Partial<{
|
|
29476
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29477
|
+
}>;
|
|
29478
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29479
|
+
[x: string]: unknown;
|
|
29480
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29481
|
+
[x: string]: unknown;
|
|
29482
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29483
|
+
[x: string]: unknown;
|
|
29484
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29485
|
+
[x: string]: unknown;
|
|
29486
|
+
}, 429, "application/json">>>;
|
|
29390
29487
|
};
|
|
29391
29488
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
29392
29489
|
readonly projectFileSystem: {
|
|
@@ -918,7 +918,7 @@ export declare const userRequestAvatarUpload: OpenAPIOperation<RequestType<Simpl
|
|
|
918
918
|
/** Remove Avatar. */
|
|
919
919
|
export declare const userRemoveAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
920
920
|
/** Resend the Email-Address verification email. */
|
|
921
|
-
export declare const userResendVerificationEmail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
921
|
+
export declare const userResendVerificationEmail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
922
922
|
/** Request a support code. */
|
|
923
923
|
export declare const userSupportCodeRequest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
924
924
|
/** Verify an added Email-Address. */
|
|
@@ -933,3 +933,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
933
933
|
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">>;
|
|
934
934
|
/** Check if a company exists. */
|
|
935
935
|
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">>;
|
|
936
|
+
/** Get the activities of a project. */
|
|
937
|
+
export declare const projectListProjectActivities: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1862,6 +1862,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1862
1862
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1863
1863
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1864
1864
|
}
|
|
1865
|
+
namespace ProjectListProjectActivities {
|
|
1866
|
+
type RequestData = InferredRequestData<typeof descriptors.projectListProjectActivities>;
|
|
1867
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListProjectActivities, TStatus>;
|
|
1868
|
+
}
|
|
1865
1869
|
}
|
|
1866
1870
|
namespace Components {
|
|
1867
1871
|
namespace Schemas {
|
|
@@ -2649,6 +2653,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2649
2653
|
*
|
|
2650
2654
|
*/
|
|
2651
2655
|
ports?: string[];
|
|
2656
|
+
restartPolicy?: string;
|
|
2652
2657
|
/**
|
|
2653
2658
|
* Volume mounts for this container. These items always follow the format `<volume>:<mountpoint>`. The `<volume>` may either be a named volume, or a file path in the (always present) project file system (which is shared among containers and managed apps within a project).
|
|
2654
2659
|
*
|
|
@@ -2710,6 +2715,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2710
2715
|
*
|
|
2711
2716
|
*/
|
|
2712
2717
|
ports?: string[];
|
|
2718
|
+
restartPolicy?: string;
|
|
2713
2719
|
/**
|
|
2714
2720
|
* Volume mounts for this container. These items always follow the format `<volume>:<mountpoint>`. The `<volume>` may either be a named volume, or a file path in the (always present) project file system (which is shared among containers and managed apps within a project).
|
|
2715
2721
|
*
|
|
@@ -2751,6 +2757,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2751
2757
|
pendingState: MittwaldAPIV2.Components.Schemas.ContainerServiceState;
|
|
2752
2758
|
projectId: string;
|
|
2753
2759
|
requiresRecreate: boolean;
|
|
2760
|
+
restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped";
|
|
2754
2761
|
serviceName: string;
|
|
2755
2762
|
/**
|
|
2756
2763
|
* A short ID of the container. This is a unique identifier for the container within the project, and can be used to reference it in other API calls, or for SSH connections.
|
|
@@ -4441,6 +4448,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4441
4448
|
id: string;
|
|
4442
4449
|
ips: {
|
|
4443
4450
|
v4: string[];
|
|
4451
|
+
v6: string[];
|
|
4444
4452
|
};
|
|
4445
4453
|
/**
|
|
4446
4454
|
* Whether this ingress is the default ingress or not. A default ingress is automatically created, it cannot be deleted. There can be only one default ingress per project.
|
|
@@ -6278,6 +6286,320 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6278
6286
|
}
|
|
6279
6287
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6280
6288
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6289
|
+
interface ActivitylogDatabaseMysqlNameSet {
|
|
6290
|
+
changes: {
|
|
6291
|
+
after?: {
|
|
6292
|
+
name: string;
|
|
6293
|
+
};
|
|
6294
|
+
before?: {
|
|
6295
|
+
name: string | null;
|
|
6296
|
+
};
|
|
6297
|
+
};
|
|
6298
|
+
name: "database.mysql-name-set";
|
|
6299
|
+
parameters: {
|
|
6300
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6301
|
+
};
|
|
6302
|
+
}
|
|
6303
|
+
interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
|
|
6304
|
+
changes: {
|
|
6305
|
+
after?: {
|
|
6306
|
+
software: string;
|
|
6307
|
+
softwareVersion: string;
|
|
6308
|
+
updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6309
|
+
};
|
|
6310
|
+
before?: {
|
|
6311
|
+
software?: string;
|
|
6312
|
+
softwareVersion?: string;
|
|
6313
|
+
updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6314
|
+
};
|
|
6315
|
+
};
|
|
6316
|
+
name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
|
|
6317
|
+
parameters?: {
|
|
6318
|
+
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6319
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6320
|
+
};
|
|
6321
|
+
}
|
|
6322
|
+
interface ActivitylogAppInstallationAppVersionSet {
|
|
6323
|
+
changes: {
|
|
6324
|
+
after?: {
|
|
6325
|
+
appId: string;
|
|
6326
|
+
appVersionId: string;
|
|
6327
|
+
};
|
|
6328
|
+
before?: {
|
|
6329
|
+
appId?: string | null;
|
|
6330
|
+
appVersionId?: string | null;
|
|
6331
|
+
};
|
|
6332
|
+
};
|
|
6333
|
+
name: "app.version-set";
|
|
6334
|
+
}
|
|
6335
|
+
interface ActivitylogAppInstallationCopyRequested {
|
|
6336
|
+
changes: {
|
|
6337
|
+
after?: {
|
|
6338
|
+
appId: string;
|
|
6339
|
+
sourceAppInstallationId: string;
|
|
6340
|
+
};
|
|
6341
|
+
before?: {
|
|
6342
|
+
appId?: string | null;
|
|
6343
|
+
sourceAppInstallationId?: string | null;
|
|
6344
|
+
};
|
|
6345
|
+
};
|
|
6346
|
+
name: "app.copy-requested";
|
|
6347
|
+
}
|
|
6348
|
+
interface ActivitylogParameterProperty {
|
|
6349
|
+
aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6350
|
+
name: string;
|
|
6351
|
+
}
|
|
6352
|
+
interface ActivitylogAggregateReference {
|
|
6353
|
+
aggregate: string;
|
|
6354
|
+
domain: string;
|
|
6355
|
+
id: string;
|
|
6356
|
+
}
|
|
6357
|
+
interface ActivitylogLinkedParameterProperty {
|
|
6358
|
+
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6359
|
+
name: string;
|
|
6360
|
+
}
|
|
6361
|
+
interface ActivitylogLogEntry {
|
|
6362
|
+
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6363
|
+
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6364
|
+
dateTime: string;
|
|
6365
|
+
/**
|
|
6366
|
+
* Null or empty object. If set, the action was executed by an mittwald employee.
|
|
6367
|
+
*/
|
|
6368
|
+
impersonator?: {};
|
|
6369
|
+
user?: {
|
|
6370
|
+
id: string;
|
|
6371
|
+
type: "user" | "extension";
|
|
6372
|
+
};
|
|
6373
|
+
}
|
|
6374
|
+
interface ActivitylogDnsMxRecordSet {
|
|
6375
|
+
changes: {
|
|
6376
|
+
after?: {
|
|
6377
|
+
mx: {}[];
|
|
6378
|
+
};
|
|
6379
|
+
before?: {
|
|
6380
|
+
mx: {}[];
|
|
6381
|
+
};
|
|
6382
|
+
};
|
|
6383
|
+
name: "dns.mx-record-set";
|
|
6384
|
+
parameters: {
|
|
6385
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6386
|
+
};
|
|
6387
|
+
}
|
|
6388
|
+
interface ActivitylogDnsZoneDeleted {
|
|
6389
|
+
changes: {};
|
|
6390
|
+
name: "dns.zone-deleted";
|
|
6391
|
+
parameters: {
|
|
6392
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6393
|
+
};
|
|
6394
|
+
}
|
|
6395
|
+
interface ActivitylogDnsTxtRecordSet {
|
|
6396
|
+
changes: {
|
|
6397
|
+
after?: {
|
|
6398
|
+
txt: string[];
|
|
6399
|
+
};
|
|
6400
|
+
before?: {
|
|
6401
|
+
txt: string[];
|
|
6402
|
+
};
|
|
6403
|
+
};
|
|
6404
|
+
name: "dns.txt-record-set";
|
|
6405
|
+
parameters: {
|
|
6406
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6407
|
+
};
|
|
6408
|
+
}
|
|
6409
|
+
interface ActivitylogDnsARecordSet {
|
|
6410
|
+
changes: {
|
|
6411
|
+
after?: {
|
|
6412
|
+
aRecords: string[];
|
|
6413
|
+
aaaaRecords: string[];
|
|
6414
|
+
};
|
|
6415
|
+
before?: {
|
|
6416
|
+
aRecords: string[];
|
|
6417
|
+
aaaaRecords: string[];
|
|
6418
|
+
};
|
|
6419
|
+
};
|
|
6420
|
+
name: "dns.a-record-set";
|
|
6421
|
+
parameters: {
|
|
6422
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6423
|
+
};
|
|
6424
|
+
}
|
|
6425
|
+
/**
|
|
6426
|
+
* Fallback when no matching action is found
|
|
6427
|
+
*/
|
|
6428
|
+
interface ActivitylogGenericAction {
|
|
6429
|
+
changes: {
|
|
6430
|
+
[k: string]: {
|
|
6431
|
+
after?: {
|
|
6432
|
+
[k: string]: unknown;
|
|
6433
|
+
};
|
|
6434
|
+
before?: {
|
|
6435
|
+
[k: string]: unknown;
|
|
6436
|
+
};
|
|
6437
|
+
};
|
|
6438
|
+
};
|
|
6439
|
+
name: string;
|
|
6440
|
+
parameters: {
|
|
6441
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6442
|
+
};
|
|
6443
|
+
}
|
|
6444
|
+
interface ActivitylogDatabaseDeleted {
|
|
6445
|
+
changes: {};
|
|
6446
|
+
name: "database.mysql-deleted" | "database.redis-deleted";
|
|
6447
|
+
parameters: {
|
|
6448
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6449
|
+
};
|
|
6450
|
+
}
|
|
6451
|
+
interface ActivitylogDatabaseDescriptionSet {
|
|
6452
|
+
changes: {
|
|
6453
|
+
after?: {
|
|
6454
|
+
description: string;
|
|
6455
|
+
};
|
|
6456
|
+
before?: {
|
|
6457
|
+
description: string | null;
|
|
6458
|
+
};
|
|
6459
|
+
};
|
|
6460
|
+
name: "database.mysql-description-set" | "database.redis-description-set";
|
|
6461
|
+
parameters: {
|
|
6462
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6463
|
+
};
|
|
6464
|
+
}
|
|
6465
|
+
interface ActivitylogDnsSrvRecordSet {
|
|
6466
|
+
changes: {
|
|
6467
|
+
after?: {
|
|
6468
|
+
srv: {}[];
|
|
6469
|
+
};
|
|
6470
|
+
before?: {
|
|
6471
|
+
srv: {}[];
|
|
6472
|
+
};
|
|
6473
|
+
};
|
|
6474
|
+
name: "dns.srv-record-set";
|
|
6475
|
+
parameters: {
|
|
6476
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6477
|
+
};
|
|
6478
|
+
}
|
|
6479
|
+
interface ActivitylogDatabaseMysqlUserUpdated {
|
|
6480
|
+
changes: {
|
|
6481
|
+
after?: {
|
|
6482
|
+
description: string;
|
|
6483
|
+
externalAccess: boolean;
|
|
6484
|
+
permissions: {};
|
|
6485
|
+
};
|
|
6486
|
+
before?: {
|
|
6487
|
+
description: string | null;
|
|
6488
|
+
externalAccess: boolean | null;
|
|
6489
|
+
permissions: {};
|
|
6490
|
+
};
|
|
6491
|
+
};
|
|
6492
|
+
name: "database.mysql-user-updated";
|
|
6493
|
+
parameters: {
|
|
6494
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6495
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6496
|
+
};
|
|
6497
|
+
}
|
|
6498
|
+
interface ActivitylogDatabaseVersionSet {
|
|
6499
|
+
changes: {
|
|
6500
|
+
after?: {
|
|
6501
|
+
version: string;
|
|
6502
|
+
};
|
|
6503
|
+
before?: {
|
|
6504
|
+
version: string;
|
|
6505
|
+
};
|
|
6506
|
+
};
|
|
6507
|
+
name: "database.mysql-version-set" | "database.redis-version-set";
|
|
6508
|
+
parameters: {
|
|
6509
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6510
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6511
|
+
};
|
|
6512
|
+
}
|
|
6513
|
+
interface ActivitylogDatabaseCreated {
|
|
6514
|
+
changes: {
|
|
6515
|
+
after?: {
|
|
6516
|
+
description: string;
|
|
6517
|
+
name: string;
|
|
6518
|
+
version: string;
|
|
6519
|
+
};
|
|
6520
|
+
before?: {
|
|
6521
|
+
description?: string | null;
|
|
6522
|
+
name?: string | null;
|
|
6523
|
+
version?: string | null;
|
|
6524
|
+
};
|
|
6525
|
+
};
|
|
6526
|
+
name: "database.mysql-created" | "database.redis-created";
|
|
6527
|
+
parameters: {
|
|
6528
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6529
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6530
|
+
};
|
|
6531
|
+
}
|
|
6532
|
+
interface ActivitylogDnsCnameRecordSet {
|
|
6533
|
+
changes: {
|
|
6534
|
+
after?: {
|
|
6535
|
+
cname: string;
|
|
6536
|
+
};
|
|
6537
|
+
before?: {
|
|
6538
|
+
cname: string;
|
|
6539
|
+
};
|
|
6540
|
+
};
|
|
6541
|
+
name: "dns.cname-record-set";
|
|
6542
|
+
parameters: {
|
|
6543
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6544
|
+
};
|
|
6545
|
+
}
|
|
6546
|
+
interface ActivitylogDatabaseMysqlUserDeleted {
|
|
6547
|
+
changes: {};
|
|
6548
|
+
name: "database.mysql-user-deleted";
|
|
6549
|
+
parameters: {
|
|
6550
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6551
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6552
|
+
};
|
|
6553
|
+
}
|
|
6554
|
+
interface ActivitylogDnsZoneCreated {
|
|
6555
|
+
changes: {
|
|
6556
|
+
after?: {
|
|
6557
|
+
domain: string;
|
|
6558
|
+
};
|
|
6559
|
+
before?: {
|
|
6560
|
+
domain: string | null;
|
|
6561
|
+
};
|
|
6562
|
+
};
|
|
6563
|
+
name: "dns.zone-created";
|
|
6564
|
+
parameters: {
|
|
6565
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6566
|
+
};
|
|
6567
|
+
}
|
|
6568
|
+
interface ActivitylogDatabaseMysqlUserCreated {
|
|
6569
|
+
changes: {
|
|
6570
|
+
after?: {
|
|
6571
|
+
description: string;
|
|
6572
|
+
externalAccess: boolean;
|
|
6573
|
+
name: string;
|
|
6574
|
+
permissions: {};
|
|
6575
|
+
};
|
|
6576
|
+
before?: {
|
|
6577
|
+
description?: string | null;
|
|
6578
|
+
externalAccess?: boolean | null;
|
|
6579
|
+
name?: string | null;
|
|
6580
|
+
permissions?: {} | null;
|
|
6581
|
+
};
|
|
6582
|
+
};
|
|
6583
|
+
name: "database.mysql-user-created";
|
|
6584
|
+
parameters: {
|
|
6585
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6586
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6587
|
+
};
|
|
6588
|
+
}
|
|
6589
|
+
interface ActivitylogDnsCaaRecordSet {
|
|
6590
|
+
changes: {
|
|
6591
|
+
after?: {
|
|
6592
|
+
caa: {}[];
|
|
6593
|
+
};
|
|
6594
|
+
before?: {
|
|
6595
|
+
caa: {}[];
|
|
6596
|
+
};
|
|
6597
|
+
};
|
|
6598
|
+
name: "dns.caa-record-set";
|
|
6599
|
+
parameters: {
|
|
6600
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6601
|
+
};
|
|
6602
|
+
}
|
|
6281
6603
|
interface CommonsAddress {
|
|
6282
6604
|
street: string;
|
|
6283
6605
|
houseNumber: string;
|
|
@@ -30025,6 +30347,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
30025
30347
|
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
30026
30348
|
}
|
|
30027
30349
|
}
|
|
30350
|
+
namespace $412 {
|
|
30351
|
+
namespace Content {
|
|
30352
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsError;
|
|
30353
|
+
}
|
|
30354
|
+
}
|
|
30028
30355
|
namespace $429 {
|
|
30029
30356
|
namespace Content {
|
|
30030
30357
|
interface ApplicationJson {
|
|
@@ -30378,5 +30705,70 @@ export declare namespace MittwaldAPIV2 {
|
|
|
30378
30705
|
}
|
|
30379
30706
|
}
|
|
30380
30707
|
}
|
|
30708
|
+
namespace V2ProjectsProjectIdActivities {
|
|
30709
|
+
namespace Get {
|
|
30710
|
+
namespace Parameters {
|
|
30711
|
+
type Path = {
|
|
30712
|
+
projectId: string;
|
|
30713
|
+
};
|
|
30714
|
+
type Header = {};
|
|
30715
|
+
type Query = {
|
|
30716
|
+
aggregateName?: string;
|
|
30717
|
+
aggregateDomain?: string;
|
|
30718
|
+
aggregateId?: string;
|
|
30719
|
+
startTime?: string;
|
|
30720
|
+
endTime?: string;
|
|
30721
|
+
fulltextSearch?: string;
|
|
30722
|
+
limit?: number;
|
|
30723
|
+
skip?: number;
|
|
30724
|
+
page?: number;
|
|
30725
|
+
sort?: "dateTime";
|
|
30726
|
+
order?: "asc" | "desc";
|
|
30727
|
+
};
|
|
30728
|
+
}
|
|
30729
|
+
namespace Responses {
|
|
30730
|
+
namespace $200 {
|
|
30731
|
+
namespace Content {
|
|
30732
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[];
|
|
30733
|
+
}
|
|
30734
|
+
}
|
|
30735
|
+
namespace $400 {
|
|
30736
|
+
namespace Content {
|
|
30737
|
+
interface ApplicationJson {
|
|
30738
|
+
[k: string]: unknown;
|
|
30739
|
+
}
|
|
30740
|
+
}
|
|
30741
|
+
}
|
|
30742
|
+
namespace $403 {
|
|
30743
|
+
namespace Content {
|
|
30744
|
+
interface ApplicationJson {
|
|
30745
|
+
[k: string]: unknown;
|
|
30746
|
+
}
|
|
30747
|
+
}
|
|
30748
|
+
}
|
|
30749
|
+
namespace $404 {
|
|
30750
|
+
namespace Content {
|
|
30751
|
+
interface ApplicationJson {
|
|
30752
|
+
[k: string]: unknown;
|
|
30753
|
+
}
|
|
30754
|
+
}
|
|
30755
|
+
}
|
|
30756
|
+
namespace $429 {
|
|
30757
|
+
namespace Content {
|
|
30758
|
+
interface ApplicationJson {
|
|
30759
|
+
[k: string]: unknown;
|
|
30760
|
+
}
|
|
30761
|
+
}
|
|
30762
|
+
}
|
|
30763
|
+
namespace Default {
|
|
30764
|
+
namespace Content {
|
|
30765
|
+
interface ApplicationJson {
|
|
30766
|
+
[k: string]: unknown;
|
|
30767
|
+
}
|
|
30768
|
+
}
|
|
30769
|
+
}
|
|
30770
|
+
}
|
|
30771
|
+
}
|
|
30772
|
+
}
|
|
30381
30773
|
}
|
|
30382
30774
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.385.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.386.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.386.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.386.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "6b8cfefd8f401066c050ad601aca8fd6f99514ca"
|
|
84
84
|
}
|