@mittwald/api-client 4.396.0 → 4.397.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 +4 -4
- package/dist/esm/generated/v2/client.js +4 -4
- package/dist/esm/generated/v2/descriptors.js +12 -12
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +38 -38
- package/dist/types/generated/v2/client.d.ts +164 -164
- package/dist/types/generated/v2/descriptors.d.ts +4 -4
- package/dist/types/generated/v2/types.d.ts +1099 -1099
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -436,8 +436,12 @@ const buildProjectApi = (baseClient) => ({
|
|
|
436
436
|
getSelfMembershipForProject: new ApiCallAsyncResourceFactory(descriptors.projectGetSelfMembershipForProject, baseClient.project.getSelfMembershipForProject).getApiResource,
|
|
437
437
|
/** Get a Server. */
|
|
438
438
|
getServer: new ApiCallAsyncResourceFactory(descriptors.projectGetServer, baseClient.project.getServer).getApiResource,
|
|
439
|
+
/** List Projects belonging to a Customer. */
|
|
440
|
+
listCustomerProjects: new ApiCallAsyncResourceFactory(descriptors.projectListCustomerProjects, baseClient.project.listCustomerProjects).getApiResource,
|
|
439
441
|
/** List Memberships belonging to a Project. */
|
|
440
442
|
listMembershipsForProject: new ApiCallAsyncResourceFactory(descriptors.projectListMembershipsForProject, baseClient.project.listMembershipsForProject).getApiResource,
|
|
443
|
+
/** Get the activities of a project. */
|
|
444
|
+
listProjectActivities: new ApiCallAsyncResourceFactory(descriptors.projectListProjectActivities, baseClient.project.listProjectActivities).getApiResource,
|
|
441
445
|
/** List ProjectInvites belonging to the executing user. */
|
|
442
446
|
listProjectInvites: new ApiCallAsyncResourceFactory(descriptors.projectListProjectInvites, baseClient.project.listProjectInvites).getApiResource,
|
|
443
447
|
/** List ProjectMemberships belonging to the executing user. */
|
|
@@ -450,10 +454,6 @@ const buildProjectApi = (baseClient) => ({
|
|
|
450
454
|
storagespaceGetProjectStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetProjectStatistics, baseClient.project.storagespaceGetProjectStatistics).getApiResource,
|
|
451
455
|
/** Get storage space Statistics belonging to a Server. */
|
|
452
456
|
storagespaceGetServerStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetServerStatistics, baseClient.project.storagespaceGetServerStatistics).getApiResource,
|
|
453
|
-
/** Get the activities of a project. */
|
|
454
|
-
listProjectActivities: new ApiCallAsyncResourceFactory(descriptors.projectListProjectActivities, baseClient.project.listProjectActivities).getApiResource,
|
|
455
|
-
/** List Projects belonging to a Customer. */
|
|
456
|
-
listCustomerProjects: new ApiCallAsyncResourceFactory(descriptors.projectListCustomerProjects, baseClient.project.listCustomerProjects).getApiResource,
|
|
457
457
|
});
|
|
458
458
|
const buildProjectFileSystemApi = (baseClient) => ({
|
|
459
459
|
/** List directories belonging to a Project. */
|
|
@@ -946,8 +946,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
946
946
|
getSelfMembershipForProject: this.requestFunctionFactory(descriptors.projectGetSelfMembershipForProject),
|
|
947
947
|
/** Get a Server. */
|
|
948
948
|
getServer: this.requestFunctionFactory(descriptors.projectGetServer),
|
|
949
|
+
/** List Projects belonging to a Customer. */
|
|
950
|
+
listCustomerProjects: this.requestFunctionFactory(descriptors.projectListCustomerProjects),
|
|
949
951
|
/** List Memberships belonging to a Project. */
|
|
950
952
|
listMembershipsForProject: this.requestFunctionFactory(descriptors.projectListMembershipsForProject),
|
|
953
|
+
/** Get the activities of a project. */
|
|
954
|
+
listProjectActivities: this.requestFunctionFactory(descriptors.projectListProjectActivities),
|
|
951
955
|
/** List ProjectInvites belonging to the executing user. */
|
|
952
956
|
listProjectInvites: this.requestFunctionFactory(descriptors.projectListProjectInvites),
|
|
953
957
|
/** List ProjectMemberships belonging to the executing user. */
|
|
@@ -970,10 +974,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
970
974
|
storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
|
|
971
975
|
/** Update a Server's storage space notification threshold. */
|
|
972
976
|
storagespaceReplaceServerNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceServerNotificationThreshold),
|
|
973
|
-
/** Get the activities of a project. */
|
|
974
|
-
listProjectActivities: this.requestFunctionFactory(descriptors.projectListProjectActivities),
|
|
975
|
-
/** List Projects belonging to a Customer. */
|
|
976
|
-
listCustomerProjects: this.requestFunctionFactory(descriptors.projectListCustomerProjects),
|
|
977
977
|
};
|
|
978
978
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
979
979
|
projectFileSystem = {
|
|
@@ -2284,12 +2284,24 @@ export const projectGetServer = {
|
|
|
2284
2284
|
method: "GET",
|
|
2285
2285
|
operationId: "project-get-server",
|
|
2286
2286
|
};
|
|
2287
|
+
/** List Projects belonging to a Customer. */
|
|
2288
|
+
export const projectListCustomerProjects = {
|
|
2289
|
+
path: "/v2/customers/{customerId}/projects",
|
|
2290
|
+
method: "GET",
|
|
2291
|
+
operationId: "project-list-customer-projects",
|
|
2292
|
+
};
|
|
2287
2293
|
/** List Memberships belonging to a Project. */
|
|
2288
2294
|
export const projectListMembershipsForProject = {
|
|
2289
2295
|
path: "/v2/projects/{projectId}/memberships",
|
|
2290
2296
|
method: "GET",
|
|
2291
2297
|
operationId: "project-list-memberships-for-project",
|
|
2292
2298
|
};
|
|
2299
|
+
/** Get the activities of a project. */
|
|
2300
|
+
export const projectListProjectActivities = {
|
|
2301
|
+
path: "/v2/projects/{projectId}/activities",
|
|
2302
|
+
method: "GET",
|
|
2303
|
+
operationId: "project-list-project-activities",
|
|
2304
|
+
};
|
|
2293
2305
|
/** List ProjectInvites belonging to the executing user. */
|
|
2294
2306
|
export const projectListProjectInvites = {
|
|
2295
2307
|
path: "/v2/project-invites",
|
|
@@ -2812,15 +2824,3 @@ export const verificationVerifyCompany = {
|
|
|
2812
2824
|
method: "POST",
|
|
2813
2825
|
operationId: "verification-verify-company",
|
|
2814
2826
|
};
|
|
2815
|
-
/** Get the activities of a project. */
|
|
2816
|
-
export const projectListProjectActivities = {
|
|
2817
|
-
path: "/v2/projects/{projectId}/activities",
|
|
2818
|
-
method: "GET",
|
|
2819
|
-
operationId: "project-list-project-activities",
|
|
2820
|
-
};
|
|
2821
|
-
/** List Projects belonging to a Customer. */
|
|
2822
|
-
export const projectListCustomerProjects = {
|
|
2823
|
-
path: "/v2/customers/{customerId}/projects",
|
|
2824
|
-
method: "GET",
|
|
2825
|
-
operationId: "project-list-customer-projects",
|
|
2826
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.396.0';
|
|
@@ -3392,6 +3392,23 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3392
3392
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
|
|
3393
3393
|
storage: string;
|
|
3394
3394
|
}>;
|
|
3395
|
+
/** List Projects belonging to a Customer. */
|
|
3396
|
+
listCustomerProjects: (conf: {
|
|
3397
|
+
customerId: string;
|
|
3398
|
+
headers?: {
|
|
3399
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3400
|
+
"x-access-token"?: string | undefined;
|
|
3401
|
+
} | undefined;
|
|
3402
|
+
queryParameters?: {
|
|
3403
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3404
|
+
searchTerm?: string | undefined;
|
|
3405
|
+
limit?: number | undefined;
|
|
3406
|
+
skip?: number | undefined;
|
|
3407
|
+
page?: number | undefined;
|
|
3408
|
+
sort?: "createdAt" | "description" | undefined;
|
|
3409
|
+
order?: "asc" | "desc" | undefined;
|
|
3410
|
+
} | undefined;
|
|
3411
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[]>;
|
|
3395
3412
|
/** List Memberships belonging to a Project. */
|
|
3396
3413
|
listMembershipsForProject: (conf: {
|
|
3397
3414
|
projectId: string;
|
|
@@ -3410,6 +3427,27 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3410
3427
|
searchTerm?: string | undefined;
|
|
3411
3428
|
} | undefined;
|
|
3412
3429
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
|
|
3430
|
+
/** Get the activities of a project. */
|
|
3431
|
+
listProjectActivities: (conf: {
|
|
3432
|
+
projectId: string;
|
|
3433
|
+
headers?: {
|
|
3434
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3435
|
+
} | undefined;
|
|
3436
|
+
queryParameters?: {
|
|
3437
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3438
|
+
aggregateName?: string | undefined;
|
|
3439
|
+
aggregateDomain?: string | undefined;
|
|
3440
|
+
aggregateId?: string | undefined;
|
|
3441
|
+
startTime?: string | undefined;
|
|
3442
|
+
endTime?: string | undefined;
|
|
3443
|
+
fulltextSearch?: string | undefined;
|
|
3444
|
+
limit?: number | undefined;
|
|
3445
|
+
skip?: number | undefined;
|
|
3446
|
+
page?: number | undefined;
|
|
3447
|
+
sort?: "dateTime" | undefined;
|
|
3448
|
+
order?: "asc" | "desc" | undefined;
|
|
3449
|
+
} | undefined;
|
|
3450
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[]>;
|
|
3413
3451
|
/** List ProjectInvites belonging to the executing user. */
|
|
3414
3452
|
listProjectInvites: (conf?: {
|
|
3415
3453
|
headers?: {
|
|
@@ -3508,44 +3546,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3508
3546
|
notificationThresholdInBytes?: number | undefined;
|
|
3509
3547
|
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
3510
3548
|
}>;
|
|
3511
|
-
/** Get the activities of a project. */
|
|
3512
|
-
listProjectActivities: (conf: {
|
|
3513
|
-
projectId: string;
|
|
3514
|
-
headers?: {
|
|
3515
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3516
|
-
} | undefined;
|
|
3517
|
-
queryParameters?: {
|
|
3518
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3519
|
-
aggregateName?: string | undefined;
|
|
3520
|
-
aggregateDomain?: string | undefined;
|
|
3521
|
-
aggregateId?: string | undefined;
|
|
3522
|
-
startTime?: string | undefined;
|
|
3523
|
-
endTime?: string | undefined;
|
|
3524
|
-
fulltextSearch?: string | undefined;
|
|
3525
|
-
limit?: number | undefined;
|
|
3526
|
-
skip?: number | undefined;
|
|
3527
|
-
page?: number | undefined;
|
|
3528
|
-
sort?: "dateTime" | undefined;
|
|
3529
|
-
order?: "asc" | "desc" | undefined;
|
|
3530
|
-
} | undefined;
|
|
3531
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[]>;
|
|
3532
|
-
/** List Projects belonging to a Customer. */
|
|
3533
|
-
listCustomerProjects: (conf: {
|
|
3534
|
-
customerId: string;
|
|
3535
|
-
headers?: {
|
|
3536
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3537
|
-
"x-access-token"?: string | undefined;
|
|
3538
|
-
} | undefined;
|
|
3539
|
-
queryParameters?: {
|
|
3540
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3541
|
-
searchTerm?: string | undefined;
|
|
3542
|
-
limit?: number | undefined;
|
|
3543
|
-
skip?: number | undefined;
|
|
3544
|
-
page?: number | undefined;
|
|
3545
|
-
sort?: "createdAt" | "description" | undefined;
|
|
3546
|
-
order?: "asc" | "desc" | undefined;
|
|
3547
|
-
} | undefined;
|
|
3548
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[]>;
|
|
3549
3549
|
};
|
|
3550
3550
|
declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
3551
3551
|
/** List directories belonging to a Project. */
|
|
@@ -28904,6 +28904,85 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
28904
28904
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28905
28905
|
[x: string]: unknown;
|
|
28906
28906
|
}, 429, "application/json">>>;
|
|
28907
|
+
/** List Projects belonging to a Customer. */
|
|
28908
|
+
listCustomerProjects: (request: {
|
|
28909
|
+
customerId: string;
|
|
28910
|
+
headers?: {
|
|
28911
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
28912
|
+
"x-access-token"?: string | undefined;
|
|
28913
|
+
} | undefined;
|
|
28914
|
+
queryParameters?: {
|
|
28915
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
28916
|
+
searchTerm?: string | undefined;
|
|
28917
|
+
limit?: number | undefined;
|
|
28918
|
+
skip?: number | undefined;
|
|
28919
|
+
page?: number | undefined;
|
|
28920
|
+
sort?: "createdAt" | "description" | undefined;
|
|
28921
|
+
order?: "asc" | "desc" | undefined;
|
|
28922
|
+
} | undefined;
|
|
28923
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
28924
|
+
headers?: Partial<{
|
|
28925
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28926
|
+
}>;
|
|
28927
|
+
} & {
|
|
28928
|
+
pathParameters: {
|
|
28929
|
+
customerId: string;
|
|
28930
|
+
};
|
|
28931
|
+
} & {
|
|
28932
|
+
queryParameters: {
|
|
28933
|
+
searchTerm?: string | undefined;
|
|
28934
|
+
limit?: number | undefined;
|
|
28935
|
+
skip?: number | undefined;
|
|
28936
|
+
page?: number | undefined;
|
|
28937
|
+
sort?: "createdAt" | "description" | undefined;
|
|
28938
|
+
order?: "asc" | "desc" | undefined;
|
|
28939
|
+
} & Partial<{
|
|
28940
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28941
|
+
}>;
|
|
28942
|
+
} & {
|
|
28943
|
+
headers: {
|
|
28944
|
+
"x-access-token"?: string | undefined;
|
|
28945
|
+
} & Partial<{
|
|
28946
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28947
|
+
}>;
|
|
28948
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28949
|
+
[x: string]: unknown;
|
|
28950
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28951
|
+
[x: string]: unknown;
|
|
28952
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28953
|
+
[x: string]: unknown;
|
|
28954
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
28955
|
+
headers?: Partial<{
|
|
28956
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28957
|
+
}>;
|
|
28958
|
+
} & {
|
|
28959
|
+
pathParameters: {
|
|
28960
|
+
customerId: string;
|
|
28961
|
+
};
|
|
28962
|
+
} & {
|
|
28963
|
+
queryParameters: {
|
|
28964
|
+
searchTerm?: string | undefined;
|
|
28965
|
+
limit?: number | undefined;
|
|
28966
|
+
skip?: number | undefined;
|
|
28967
|
+
page?: number | undefined;
|
|
28968
|
+
sort?: "createdAt" | "description" | undefined;
|
|
28969
|
+
order?: "asc" | "desc" | undefined;
|
|
28970
|
+
} & Partial<{
|
|
28971
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28972
|
+
}>;
|
|
28973
|
+
} & {
|
|
28974
|
+
headers: {
|
|
28975
|
+
"x-access-token"?: string | undefined;
|
|
28976
|
+
} & Partial<{
|
|
28977
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28978
|
+
}>;
|
|
28979
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28980
|
+
[x: string]: unknown;
|
|
28981
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28982
|
+
[x: string]: unknown;
|
|
28983
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28984
|
+
[x: string]: unknown;
|
|
28985
|
+
}, 429, "application/json">>>;
|
|
28907
28986
|
/** List Memberships belonging to a Project. */
|
|
28908
28987
|
listMembershipsForProject: (request: {
|
|
28909
28988
|
projectId: string;
|
|
@@ -28982,6 +29061,91 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
28982
29061
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28983
29062
|
[x: string]: unknown;
|
|
28984
29063
|
}, 429, "application/json">>>;
|
|
29064
|
+
/** Get the activities of a project. */
|
|
29065
|
+
listProjectActivities: (request: {
|
|
29066
|
+
projectId: string;
|
|
29067
|
+
headers?: {
|
|
29068
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29069
|
+
} | undefined;
|
|
29070
|
+
queryParameters?: {
|
|
29071
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29072
|
+
aggregateName?: string | undefined;
|
|
29073
|
+
aggregateDomain?: string | undefined;
|
|
29074
|
+
aggregateId?: string | undefined;
|
|
29075
|
+
startTime?: string | undefined;
|
|
29076
|
+
endTime?: string | undefined;
|
|
29077
|
+
fulltextSearch?: string | undefined;
|
|
29078
|
+
limit?: number | undefined;
|
|
29079
|
+
skip?: number | undefined;
|
|
29080
|
+
page?: number | undefined;
|
|
29081
|
+
sort?: "dateTime" | undefined;
|
|
29082
|
+
order?: "asc" | "desc" | undefined;
|
|
29083
|
+
} | undefined;
|
|
29084
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29085
|
+
headers?: Partial<{
|
|
29086
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29087
|
+
}>;
|
|
29088
|
+
} & {
|
|
29089
|
+
pathParameters: {
|
|
29090
|
+
projectId: string;
|
|
29091
|
+
};
|
|
29092
|
+
} & {
|
|
29093
|
+
queryParameters: {
|
|
29094
|
+
aggregateName?: string | undefined;
|
|
29095
|
+
aggregateDomain?: string | undefined;
|
|
29096
|
+
aggregateId?: string | undefined;
|
|
29097
|
+
startTime?: string | undefined;
|
|
29098
|
+
endTime?: string | undefined;
|
|
29099
|
+
fulltextSearch?: string | undefined;
|
|
29100
|
+
limit?: number | undefined;
|
|
29101
|
+
skip?: number | undefined;
|
|
29102
|
+
page?: number | undefined;
|
|
29103
|
+
sort?: "dateTime" | undefined;
|
|
29104
|
+
order?: "asc" | "desc" | undefined;
|
|
29105
|
+
} & Partial<{
|
|
29106
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29107
|
+
}>;
|
|
29108
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29109
|
+
[x: string]: unknown;
|
|
29110
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29111
|
+
[x: string]: unknown;
|
|
29112
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29113
|
+
[x: string]: unknown;
|
|
29114
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29115
|
+
[x: string]: unknown;
|
|
29116
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29117
|
+
headers?: Partial<{
|
|
29118
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29119
|
+
}>;
|
|
29120
|
+
} & {
|
|
29121
|
+
pathParameters: {
|
|
29122
|
+
projectId: string;
|
|
29123
|
+
};
|
|
29124
|
+
} & {
|
|
29125
|
+
queryParameters: {
|
|
29126
|
+
aggregateName?: string | undefined;
|
|
29127
|
+
aggregateDomain?: string | undefined;
|
|
29128
|
+
aggregateId?: string | undefined;
|
|
29129
|
+
startTime?: string | undefined;
|
|
29130
|
+
endTime?: string | undefined;
|
|
29131
|
+
fulltextSearch?: string | undefined;
|
|
29132
|
+
limit?: number | undefined;
|
|
29133
|
+
skip?: number | undefined;
|
|
29134
|
+
page?: number | undefined;
|
|
29135
|
+
sort?: "dateTime" | undefined;
|
|
29136
|
+
order?: "asc" | "desc" | undefined;
|
|
29137
|
+
} & Partial<{
|
|
29138
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29139
|
+
}>;
|
|
29140
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29141
|
+
[x: string]: unknown;
|
|
29142
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29143
|
+
[x: string]: unknown;
|
|
29144
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29145
|
+
[x: string]: unknown;
|
|
29146
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29147
|
+
[x: string]: unknown;
|
|
29148
|
+
}, 429, "application/json">>>;
|
|
28985
29149
|
/** List ProjectInvites belonging to the executing user. */
|
|
28986
29150
|
listProjectInvites: (request?: {
|
|
28987
29151
|
headers?: {
|
|
@@ -29686,170 +29850,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
29686
29850
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29687
29851
|
[x: string]: unknown;
|
|
29688
29852
|
}, 500, "application/json">>>;
|
|
29689
|
-
/** Get the activities of a project. */
|
|
29690
|
-
listProjectActivities: (request: {
|
|
29691
|
-
projectId: string;
|
|
29692
|
-
headers?: {
|
|
29693
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29694
|
-
} | undefined;
|
|
29695
|
-
queryParameters?: {
|
|
29696
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29697
|
-
aggregateName?: string | undefined;
|
|
29698
|
-
aggregateDomain?: string | undefined;
|
|
29699
|
-
aggregateId?: string | undefined;
|
|
29700
|
-
startTime?: string | undefined;
|
|
29701
|
-
endTime?: string | undefined;
|
|
29702
|
-
fulltextSearch?: string | undefined;
|
|
29703
|
-
limit?: number | undefined;
|
|
29704
|
-
skip?: number | undefined;
|
|
29705
|
-
page?: number | undefined;
|
|
29706
|
-
sort?: "dateTime" | undefined;
|
|
29707
|
-
order?: "asc" | "desc" | undefined;
|
|
29708
|
-
} | undefined;
|
|
29709
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29710
|
-
headers?: Partial<{
|
|
29711
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29712
|
-
}>;
|
|
29713
|
-
} & {
|
|
29714
|
-
pathParameters: {
|
|
29715
|
-
projectId: string;
|
|
29716
|
-
};
|
|
29717
|
-
} & {
|
|
29718
|
-
queryParameters: {
|
|
29719
|
-
aggregateName?: string | undefined;
|
|
29720
|
-
aggregateDomain?: string | undefined;
|
|
29721
|
-
aggregateId?: string | undefined;
|
|
29722
|
-
startTime?: string | undefined;
|
|
29723
|
-
endTime?: string | undefined;
|
|
29724
|
-
fulltextSearch?: string | undefined;
|
|
29725
|
-
limit?: number | undefined;
|
|
29726
|
-
skip?: number | undefined;
|
|
29727
|
-
page?: number | undefined;
|
|
29728
|
-
sort?: "dateTime" | undefined;
|
|
29729
|
-
order?: "asc" | "desc" | undefined;
|
|
29730
|
-
} & Partial<{
|
|
29731
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29732
|
-
}>;
|
|
29733
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29734
|
-
[x: string]: unknown;
|
|
29735
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29736
|
-
[x: string]: unknown;
|
|
29737
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29738
|
-
[x: string]: unknown;
|
|
29739
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29740
|
-
[x: string]: unknown;
|
|
29741
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29742
|
-
headers?: Partial<{
|
|
29743
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29744
|
-
}>;
|
|
29745
|
-
} & {
|
|
29746
|
-
pathParameters: {
|
|
29747
|
-
projectId: string;
|
|
29748
|
-
};
|
|
29749
|
-
} & {
|
|
29750
|
-
queryParameters: {
|
|
29751
|
-
aggregateName?: string | undefined;
|
|
29752
|
-
aggregateDomain?: string | undefined;
|
|
29753
|
-
aggregateId?: string | undefined;
|
|
29754
|
-
startTime?: string | undefined;
|
|
29755
|
-
endTime?: string | undefined;
|
|
29756
|
-
fulltextSearch?: string | undefined;
|
|
29757
|
-
limit?: number | undefined;
|
|
29758
|
-
skip?: number | undefined;
|
|
29759
|
-
page?: number | undefined;
|
|
29760
|
-
sort?: "dateTime" | undefined;
|
|
29761
|
-
order?: "asc" | "desc" | undefined;
|
|
29762
|
-
} & Partial<{
|
|
29763
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29764
|
-
}>;
|
|
29765
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29766
|
-
[x: string]: unknown;
|
|
29767
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29768
|
-
[x: string]: unknown;
|
|
29769
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29770
|
-
[x: string]: unknown;
|
|
29771
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29772
|
-
[x: string]: unknown;
|
|
29773
|
-
}, 429, "application/json">>>;
|
|
29774
|
-
/** List Projects belonging to a Customer. */
|
|
29775
|
-
listCustomerProjects: (request: {
|
|
29776
|
-
customerId: string;
|
|
29777
|
-
headers?: {
|
|
29778
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29779
|
-
"x-access-token"?: string | undefined;
|
|
29780
|
-
} | undefined;
|
|
29781
|
-
queryParameters?: {
|
|
29782
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29783
|
-
searchTerm?: string | undefined;
|
|
29784
|
-
limit?: number | undefined;
|
|
29785
|
-
skip?: number | undefined;
|
|
29786
|
-
page?: number | undefined;
|
|
29787
|
-
sort?: "createdAt" | "description" | undefined;
|
|
29788
|
-
order?: "asc" | "desc" | undefined;
|
|
29789
|
-
} | undefined;
|
|
29790
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29791
|
-
headers?: Partial<{
|
|
29792
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29793
|
-
}>;
|
|
29794
|
-
} & {
|
|
29795
|
-
pathParameters: {
|
|
29796
|
-
customerId: string;
|
|
29797
|
-
};
|
|
29798
|
-
} & {
|
|
29799
|
-
queryParameters: {
|
|
29800
|
-
searchTerm?: string | undefined;
|
|
29801
|
-
limit?: number | undefined;
|
|
29802
|
-
skip?: number | undefined;
|
|
29803
|
-
page?: number | undefined;
|
|
29804
|
-
sort?: "createdAt" | "description" | undefined;
|
|
29805
|
-
order?: "asc" | "desc" | undefined;
|
|
29806
|
-
} & Partial<{
|
|
29807
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29808
|
-
}>;
|
|
29809
|
-
} & {
|
|
29810
|
-
headers: {
|
|
29811
|
-
"x-access-token"?: string | undefined;
|
|
29812
|
-
} & Partial<{
|
|
29813
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29814
|
-
}>;
|
|
29815
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29816
|
-
[x: string]: unknown;
|
|
29817
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29818
|
-
[x: string]: unknown;
|
|
29819
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29820
|
-
[x: string]: unknown;
|
|
29821
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29822
|
-
headers?: Partial<{
|
|
29823
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29824
|
-
}>;
|
|
29825
|
-
} & {
|
|
29826
|
-
pathParameters: {
|
|
29827
|
-
customerId: string;
|
|
29828
|
-
};
|
|
29829
|
-
} & {
|
|
29830
|
-
queryParameters: {
|
|
29831
|
-
searchTerm?: string | undefined;
|
|
29832
|
-
limit?: number | undefined;
|
|
29833
|
-
skip?: number | undefined;
|
|
29834
|
-
page?: number | undefined;
|
|
29835
|
-
sort?: "createdAt" | "description" | undefined;
|
|
29836
|
-
order?: "asc" | "desc" | undefined;
|
|
29837
|
-
} & Partial<{
|
|
29838
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29839
|
-
}>;
|
|
29840
|
-
} & {
|
|
29841
|
-
headers: {
|
|
29842
|
-
"x-access-token"?: string | undefined;
|
|
29843
|
-
} & Partial<{
|
|
29844
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29845
|
-
}>;
|
|
29846
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29847
|
-
[x: string]: unknown;
|
|
29848
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29849
|
-
[x: string]: unknown;
|
|
29850
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29851
|
-
[x: string]: unknown;
|
|
29852
|
-
}, 429, "application/json">>>;
|
|
29853
29853
|
};
|
|
29854
29854
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
29855
29855
|
readonly projectFileSystem: {
|
|
@@ -765,8 +765,12 @@ export declare const projectGetProjectTokenInvite: OpenAPIOperation<RequestType<
|
|
|
765
765
|
export declare const projectGetSelfMembershipForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
766
766
|
/** Get a Server. */
|
|
767
767
|
export declare const projectGetServer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
768
|
+
/** List Projects belonging to a Customer. */
|
|
769
|
+
export declare const projectListCustomerProjects: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
768
770
|
/** List Memberships belonging to a Project. */
|
|
769
771
|
export declare const projectListMembershipsForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
772
|
+
/** Get the activities of a project. */
|
|
773
|
+
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">>;
|
|
770
774
|
/** List ProjectInvites belonging to the executing user. */
|
|
771
775
|
export declare const projectListProjectInvites: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
772
776
|
/** List ProjectMemberships belonging to the executing user. */
|
|
@@ -941,7 +945,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
941
945
|
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">>;
|
|
942
946
|
/** Check if a company exists. */
|
|
943
947
|
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">>;
|
|
944
|
-
/** Get the activities of a project. */
|
|
945
|
-
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">>;
|
|
946
|
-
/** List Projects belonging to a Customer. */
|
|
947
|
-
export declare const projectListCustomerProjects: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|