@mittwald/api-client 4.463.0 → 4.465.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 +8 -0
- package/dist/esm/generated/v2/descriptors.js +24 -0
- package/dist/esm/generated/v3-next/client-react.js +2 -0
- package/dist/esm/generated/v3-next/client.js +8 -0
- package/dist/esm/generated/v3-next/descriptors.js +24 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +13 -0
- package/dist/types/generated/v2/client.d.ts +214 -0
- package/dist/types/generated/v2/descriptors.d.ts +8 -0
- package/dist/types/generated/v2/types.d.ts +176 -0
- package/dist/types/generated/v3-next/client-react.d.ts +13 -0
- package/dist/types/generated/v3-next/client.d.ts +214 -0
- package/dist/types/generated/v3-next/descriptors.d.ts +8 -0
- package/dist/types/generated/v3-next/types.d.ts +176 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -432,6 +432,8 @@ const buildUserApi = (baseClient) => ({
|
|
|
432
432
|
getPollStatus: new ApiCallAsyncResourceFactory(descriptors.userGetPollStatus, baseClient.user.getPollStatus).getApiResource,
|
|
433
433
|
/** Get a specific session. */
|
|
434
434
|
getSession: new ApiCallAsyncResourceFactory(descriptors.userGetSession, baseClient.user.getSession).getApiResource,
|
|
435
|
+
/** Submitted feedback of the given user. */
|
|
436
|
+
getSpotlightInfo: new ApiCallAsyncResourceFactory(descriptors.userGetSpotlightInfo, baseClient.user.getSpotlightInfo).getApiResource,
|
|
435
437
|
/** Get profile information for a user. */
|
|
436
438
|
getUser: new ApiCallAsyncResourceFactory(descriptors.userGetUser, baseClient.user.getUser).getApiResource,
|
|
437
439
|
/** Submitted feedback of the given user. */
|
|
@@ -400,6 +400,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
400
400
|
extensionRequestAssetUpload: this.requestFunctionFactory(descriptors.extensionRequestAssetUpload),
|
|
401
401
|
/** Start the verification process of an Extension. */
|
|
402
402
|
extensionRequestExtensionVerification: this.requestFunctionFactory(descriptors.extensionRequestExtensionVerification),
|
|
403
|
+
/** Resume the webhook execution of an ExtensionInstance. */
|
|
404
|
+
extensionResumeWebhookExecutionForExtensionInstance: this.requestFunctionFactory(descriptors.extensionResumeWebhookExecutionForExtensionInstance),
|
|
403
405
|
/** Publish or withdraw an Extension. */
|
|
404
406
|
extensionSetExtensionPublishedState: this.requestFunctionFactory(descriptors.extensionSetExtensionPublishedState),
|
|
405
407
|
/** Creates or Updates Pricing for an Extension. */
|
|
@@ -804,6 +806,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
804
806
|
getSession: this.requestFunctionFactory(descriptors.userGetSession),
|
|
805
807
|
/** Terminate a specific Session. */
|
|
806
808
|
terminateSession: this.requestFunctionFactory(descriptors.userTerminateSession),
|
|
809
|
+
/** Submitted feedback of the given user. */
|
|
810
|
+
getSpotlightInfo: this.requestFunctionFactory(descriptors.userGetSpotlightInfo),
|
|
811
|
+
/** Submit your usage of the spotlight. */
|
|
812
|
+
spotlightUsage: this.requestFunctionFactory(descriptors.userSpotlightUsage),
|
|
807
813
|
/** Get profile information for a user. */
|
|
808
814
|
getUser: this.requestFunctionFactory(descriptors.userGetUser),
|
|
809
815
|
/** Change personal information. */
|
|
@@ -834,6 +840,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
834
840
|
removeAvatar: this.requestFunctionFactory(descriptors.userRemoveAvatar),
|
|
835
841
|
/** Resend the Email-Address verification email. */
|
|
836
842
|
resendVerificationEmail: this.requestFunctionFactory(descriptors.userResendVerificationEmail),
|
|
843
|
+
/** Submit your spotlight usage. */
|
|
844
|
+
spotlightFeedback: this.requestFunctionFactory(descriptors.userSpotlightFeedback),
|
|
837
845
|
/** Request a support code. */
|
|
838
846
|
supportCodeRequest: this.requestFunctionFactory(descriptors.userSupportCodeRequest),
|
|
839
847
|
/** Verify an added Email-Address. */
|
|
@@ -1708,6 +1708,12 @@ export const extensionRequestExtensionVerification = {
|
|
|
1708
1708
|
method: "POST",
|
|
1709
1709
|
operationId: "extension-request-extension-verification",
|
|
1710
1710
|
};
|
|
1711
|
+
/** Resume the webhook execution of an ExtensionInstance. */
|
|
1712
|
+
export const extensionResumeWebhookExecutionForExtensionInstance = {
|
|
1713
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/actions/resume-webhook-execution",
|
|
1714
|
+
method: "POST",
|
|
1715
|
+
operationId: "extension-resume-webhook-execution-for-extension-instance",
|
|
1716
|
+
};
|
|
1711
1717
|
/** Publish or withdraw an Extension. */
|
|
1712
1718
|
export const extensionSetExtensionPublishedState = {
|
|
1713
1719
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/published",
|
|
@@ -2740,6 +2746,18 @@ export const userTerminateSession = {
|
|
|
2740
2746
|
method: "DELETE",
|
|
2741
2747
|
operationId: "user-terminate-session",
|
|
2742
2748
|
};
|
|
2749
|
+
/** Submitted feedback of the given user. */
|
|
2750
|
+
export const userGetSpotlightInfo = {
|
|
2751
|
+
path: "/v2/users/self/spotlights/{spotlightId}",
|
|
2752
|
+
method: "GET",
|
|
2753
|
+
operationId: "user-get-spotlight-info",
|
|
2754
|
+
};
|
|
2755
|
+
/** Submit your usage of the spotlight. */
|
|
2756
|
+
export const userSpotlightUsage = {
|
|
2757
|
+
path: "/v2/users/self/spotlights/{spotlightId}",
|
|
2758
|
+
method: "POST",
|
|
2759
|
+
operationId: "user-spotlight-usage",
|
|
2760
|
+
};
|
|
2743
2761
|
/** Get profile information for a user. */
|
|
2744
2762
|
export const userGetUser = {
|
|
2745
2763
|
path: "/v2/users/{userId}",
|
|
@@ -2830,6 +2848,12 @@ export const userResendVerificationEmail = {
|
|
|
2830
2848
|
method: "POST",
|
|
2831
2849
|
operationId: "user-resend-verification-email",
|
|
2832
2850
|
};
|
|
2851
|
+
/** Submit your spotlight usage. */
|
|
2852
|
+
export const userSpotlightFeedback = {
|
|
2853
|
+
path: "/v2/users/self/spotlights/{spotlightId}/feedback",
|
|
2854
|
+
method: "POST",
|
|
2855
|
+
operationId: "user-spotlight-feedback",
|
|
2856
|
+
};
|
|
2833
2857
|
/** Request a support code. */
|
|
2834
2858
|
export const userSupportCodeRequest = {
|
|
2835
2859
|
path: "/v2/users/self/credentials/support-code",
|
|
@@ -432,6 +432,8 @@ const buildUserApi = (baseClient) => ({
|
|
|
432
432
|
getPollStatus: new ApiCallAsyncResourceFactory(descriptors.userGetPollStatus, baseClient.user.getPollStatus).getApiResource,
|
|
433
433
|
/** Get a specific session. */
|
|
434
434
|
getSession: new ApiCallAsyncResourceFactory(descriptors.userGetSession, baseClient.user.getSession).getApiResource,
|
|
435
|
+
/** Submitted feedback of the given user. */
|
|
436
|
+
getSpotlightInfo: new ApiCallAsyncResourceFactory(descriptors.userGetSpotlightInfo, baseClient.user.getSpotlightInfo).getApiResource,
|
|
435
437
|
/** Get profile information for a user. */
|
|
436
438
|
getUser: new ApiCallAsyncResourceFactory(descriptors.userGetUser, baseClient.user.getUser).getApiResource,
|
|
437
439
|
/** Submitted feedback of the given user. */
|
|
@@ -400,6 +400,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
400
400
|
extensionRequestAssetUpload: this.requestFunctionFactory(descriptors.extensionRequestAssetUpload),
|
|
401
401
|
/** Start the verification process of an Extension. */
|
|
402
402
|
extensionRequestExtensionVerification: this.requestFunctionFactory(descriptors.extensionRequestExtensionVerification),
|
|
403
|
+
/** Resume the webhook execution of an ExtensionInstance. */
|
|
404
|
+
extensionResumeWebhookExecutionForExtensionInstance: this.requestFunctionFactory(descriptors.extensionResumeWebhookExecutionForExtensionInstance),
|
|
403
405
|
/** Publish or withdraw an Extension. */
|
|
404
406
|
extensionSetExtensionPublishedState: this.requestFunctionFactory(descriptors.extensionSetExtensionPublishedState),
|
|
405
407
|
/** Creates or Updates Pricing for an Extension. */
|
|
@@ -804,6 +806,10 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
804
806
|
getSession: this.requestFunctionFactory(descriptors.userGetSession),
|
|
805
807
|
/** Terminate a specific Session. */
|
|
806
808
|
terminateSession: this.requestFunctionFactory(descriptors.userTerminateSession),
|
|
809
|
+
/** Submitted feedback of the given user. */
|
|
810
|
+
getSpotlightInfo: this.requestFunctionFactory(descriptors.userGetSpotlightInfo),
|
|
811
|
+
/** Submit your usage of the spotlight. */
|
|
812
|
+
spotlightUsage: this.requestFunctionFactory(descriptors.userSpotlightUsage),
|
|
807
813
|
/** Get profile information for a user. */
|
|
808
814
|
getUser: this.requestFunctionFactory(descriptors.userGetUser),
|
|
809
815
|
/** Change personal information. */
|
|
@@ -834,6 +840,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
834
840
|
removeAvatar: this.requestFunctionFactory(descriptors.userRemoveAvatar),
|
|
835
841
|
/** Resend the Email-Address verification email. */
|
|
836
842
|
resendVerificationEmail: this.requestFunctionFactory(descriptors.userResendVerificationEmail),
|
|
843
|
+
/** Submit your spotlight usage. */
|
|
844
|
+
spotlightFeedback: this.requestFunctionFactory(descriptors.userSpotlightFeedback),
|
|
837
845
|
/** Request a support code. */
|
|
838
846
|
supportCodeRequest: this.requestFunctionFactory(descriptors.userSupportCodeRequest),
|
|
839
847
|
/** Verify an added Email-Address. */
|
|
@@ -1708,6 +1708,12 @@ export const extensionRequestExtensionVerification = {
|
|
|
1708
1708
|
method: "POST",
|
|
1709
1709
|
operationId: "extension-request-extension-verification",
|
|
1710
1710
|
};
|
|
1711
|
+
/** Resume the webhook execution of an ExtensionInstance. */
|
|
1712
|
+
export const extensionResumeWebhookExecutionForExtensionInstance = {
|
|
1713
|
+
path: "/v3-next/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/actions/resume-webhook-execution",
|
|
1714
|
+
method: "POST",
|
|
1715
|
+
operationId: "extension-resume-webhook-execution-for-extension-instance",
|
|
1716
|
+
};
|
|
1711
1717
|
/** Publish or withdraw an Extension. */
|
|
1712
1718
|
export const extensionSetExtensionPublishedState = {
|
|
1713
1719
|
path: "/v3-next/contributors/{contributorId}/extensions/{extensionId}/published",
|
|
@@ -2740,6 +2746,18 @@ export const userTerminateSession = {
|
|
|
2740
2746
|
method: "DELETE",
|
|
2741
2747
|
operationId: "user-terminate-session",
|
|
2742
2748
|
};
|
|
2749
|
+
/** Submitted feedback of the given user. */
|
|
2750
|
+
export const userGetSpotlightInfo = {
|
|
2751
|
+
path: "/v3-next/users/self/spotlights/{spotlightId}",
|
|
2752
|
+
method: "GET",
|
|
2753
|
+
operationId: "user-get-spotlight-info",
|
|
2754
|
+
};
|
|
2755
|
+
/** Submit your usage of the spotlight. */
|
|
2756
|
+
export const userSpotlightUsage = {
|
|
2757
|
+
path: "/v3-next/users/self/spotlights/{spotlightId}",
|
|
2758
|
+
method: "POST",
|
|
2759
|
+
operationId: "user-spotlight-usage",
|
|
2760
|
+
};
|
|
2743
2761
|
/** Get profile information for a user. */
|
|
2744
2762
|
export const userGetUser = {
|
|
2745
2763
|
path: "/v3-next/users/{userId}",
|
|
@@ -2830,6 +2848,12 @@ export const userResendVerificationEmail = {
|
|
|
2830
2848
|
method: "POST",
|
|
2831
2849
|
operationId: "user-resend-verification-email",
|
|
2832
2850
|
};
|
|
2851
|
+
/** Submit your spotlight usage. */
|
|
2852
|
+
export const userSpotlightFeedback = {
|
|
2853
|
+
path: "/v3-next/users/self/spotlights/{spotlightId}/feedback",
|
|
2854
|
+
method: "POST",
|
|
2855
|
+
operationId: "user-spotlight-feedback",
|
|
2856
|
+
};
|
|
2833
2857
|
/** Request a support code. */
|
|
2834
2858
|
export const userSupportCodeRequest = {
|
|
2835
2859
|
path: "/v3-next/users/self/credentials/support-code",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.464.0';
|
|
@@ -3400,6 +3400,19 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3400
3400
|
location?: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupLocation | undefined;
|
|
3401
3401
|
tokenId: string;
|
|
3402
3402
|
}>;
|
|
3403
|
+
/** Submitted feedback of the given user. */
|
|
3404
|
+
getSpotlightInfo: (conf: {
|
|
3405
|
+
spotlightId: string;
|
|
3406
|
+
headers?: {
|
|
3407
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3408
|
+
"x-access-token"?: string | undefined;
|
|
3409
|
+
} | undefined;
|
|
3410
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3411
|
+
acknowledged: boolean;
|
|
3412
|
+
decision?: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision | undefined;
|
|
3413
|
+
spotlightId: string;
|
|
3414
|
+
used: boolean;
|
|
3415
|
+
}>;
|
|
3403
3416
|
/** Get profile information for a user. */
|
|
3404
3417
|
getUser: (conf: {
|
|
3405
3418
|
userId: string;
|
|
@@ -13275,6 +13275,56 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13275
13275
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13276
13276
|
[x: string]: unknown;
|
|
13277
13277
|
}, 429, "application/json">>>;
|
|
13278
|
+
/** Resume the webhook execution of an ExtensionInstance. */
|
|
13279
|
+
extensionResumeWebhookExecutionForExtensionInstance: (request: {
|
|
13280
|
+
contributorId: string;
|
|
13281
|
+
extensionId: string;
|
|
13282
|
+
extensionInstanceId: string;
|
|
13283
|
+
headers?: {
|
|
13284
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
13285
|
+
"x-access-token"?: string | undefined;
|
|
13286
|
+
} | undefined;
|
|
13287
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13288
|
+
headers?: Partial<{
|
|
13289
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13290
|
+
}>;
|
|
13291
|
+
} & {
|
|
13292
|
+
pathParameters: {
|
|
13293
|
+
contributorId: string;
|
|
13294
|
+
extensionId: string;
|
|
13295
|
+
extensionInstanceId: string;
|
|
13296
|
+
};
|
|
13297
|
+
} & {
|
|
13298
|
+
headers: {
|
|
13299
|
+
"x-access-token"?: string | undefined;
|
|
13300
|
+
} & Partial<{
|
|
13301
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13302
|
+
}>;
|
|
13303
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
13304
|
+
[x: string]: unknown;
|
|
13305
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13306
|
+
[x: string]: unknown;
|
|
13307
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13308
|
+
headers?: Partial<{
|
|
13309
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13310
|
+
}>;
|
|
13311
|
+
} & {
|
|
13312
|
+
pathParameters: {
|
|
13313
|
+
contributorId: string;
|
|
13314
|
+
extensionId: string;
|
|
13315
|
+
extensionInstanceId: string;
|
|
13316
|
+
};
|
|
13317
|
+
} & {
|
|
13318
|
+
headers: {
|
|
13319
|
+
"x-access-token"?: string | undefined;
|
|
13320
|
+
} & Partial<{
|
|
13321
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13322
|
+
}>;
|
|
13323
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
13324
|
+
[x: string]: unknown;
|
|
13325
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13326
|
+
[x: string]: unknown;
|
|
13327
|
+
}, 429, "application/json">>>;
|
|
13278
13328
|
/** Publish or withdraw an Extension. */
|
|
13279
13329
|
extensionSetExtensionPublishedState: (request: {
|
|
13280
13330
|
data: {
|
|
@@ -25177,6 +25227,113 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25177
25227
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25178
25228
|
[x: string]: unknown;
|
|
25179
25229
|
}, 429, "application/json">>>;
|
|
25230
|
+
/** Submitted feedback of the given user. */
|
|
25231
|
+
getSpotlightInfo: (request: {
|
|
25232
|
+
spotlightId: string;
|
|
25233
|
+
headers?: {
|
|
25234
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25235
|
+
"x-access-token"?: string | undefined;
|
|
25236
|
+
} | undefined;
|
|
25237
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25238
|
+
headers?: Partial<{
|
|
25239
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25240
|
+
}>;
|
|
25241
|
+
} & {
|
|
25242
|
+
pathParameters: {
|
|
25243
|
+
spotlightId: string;
|
|
25244
|
+
};
|
|
25245
|
+
} & {
|
|
25246
|
+
headers: {
|
|
25247
|
+
"x-access-token"?: string | undefined;
|
|
25248
|
+
} & Partial<{
|
|
25249
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25250
|
+
}>;
|
|
25251
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25252
|
+
acknowledged: boolean;
|
|
25253
|
+
decision?: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision | undefined;
|
|
25254
|
+
spotlightId: string;
|
|
25255
|
+
used: boolean;
|
|
25256
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25257
|
+
[x: string]: unknown;
|
|
25258
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25259
|
+
headers?: Partial<{
|
|
25260
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25261
|
+
}>;
|
|
25262
|
+
} & {
|
|
25263
|
+
pathParameters: {
|
|
25264
|
+
spotlightId: string;
|
|
25265
|
+
};
|
|
25266
|
+
} & {
|
|
25267
|
+
headers: {
|
|
25268
|
+
"x-access-token"?: string | undefined;
|
|
25269
|
+
} & Partial<{
|
|
25270
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25271
|
+
}>;
|
|
25272
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25273
|
+
acknowledged: boolean;
|
|
25274
|
+
decision?: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision | undefined;
|
|
25275
|
+
spotlightId: string;
|
|
25276
|
+
used: boolean;
|
|
25277
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25278
|
+
[x: string]: unknown;
|
|
25279
|
+
}, 429, "application/json">>>;
|
|
25280
|
+
/** Submit your usage of the spotlight. */
|
|
25281
|
+
spotlightUsage: (request: {
|
|
25282
|
+
spotlightId: string;
|
|
25283
|
+
data?: {
|
|
25284
|
+
acknowledged?: boolean | undefined;
|
|
25285
|
+
owner?: string | undefined;
|
|
25286
|
+
used?: boolean | undefined;
|
|
25287
|
+
} | undefined;
|
|
25288
|
+
headers?: {
|
|
25289
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25290
|
+
"x-access-token"?: string | undefined;
|
|
25291
|
+
} | undefined;
|
|
25292
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25293
|
+
data: {
|
|
25294
|
+
acknowledged?: boolean | undefined;
|
|
25295
|
+
owner?: string | undefined;
|
|
25296
|
+
used?: boolean | undefined;
|
|
25297
|
+
};
|
|
25298
|
+
} & {
|
|
25299
|
+
pathParameters: {
|
|
25300
|
+
spotlightId: string;
|
|
25301
|
+
};
|
|
25302
|
+
} & {
|
|
25303
|
+
headers?: Partial<{
|
|
25304
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25305
|
+
}>;
|
|
25306
|
+
} & {
|
|
25307
|
+
headers: {
|
|
25308
|
+
"x-access-token"?: string | undefined;
|
|
25309
|
+
} & Partial<{
|
|
25310
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25311
|
+
}>;
|
|
25312
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
25313
|
+
[x: string]: unknown;
|
|
25314
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25315
|
+
data: {
|
|
25316
|
+
acknowledged?: boolean | undefined;
|
|
25317
|
+
owner?: string | undefined;
|
|
25318
|
+
used?: boolean | undefined;
|
|
25319
|
+
};
|
|
25320
|
+
} & {
|
|
25321
|
+
pathParameters: {
|
|
25322
|
+
spotlightId: string;
|
|
25323
|
+
};
|
|
25324
|
+
} & {
|
|
25325
|
+
headers?: Partial<{
|
|
25326
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25327
|
+
}>;
|
|
25328
|
+
} & {
|
|
25329
|
+
headers: {
|
|
25330
|
+
"x-access-token"?: string | undefined;
|
|
25331
|
+
} & Partial<{
|
|
25332
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25333
|
+
}>;
|
|
25334
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
25335
|
+
[x: string]: unknown;
|
|
25336
|
+
}, 429, "application/json">>>;
|
|
25180
25337
|
/** Get profile information for a user. */
|
|
25181
25338
|
getUser: (request: {
|
|
25182
25339
|
userId: string;
|
|
@@ -25990,6 +26147,63 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25990
26147
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25991
26148
|
[x: string]: unknown;
|
|
25992
26149
|
}, 429, "application/json">>>;
|
|
26150
|
+
/** Submit your spotlight usage. */
|
|
26151
|
+
spotlightFeedback: (request: {
|
|
26152
|
+
data: {
|
|
26153
|
+
decision: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
26154
|
+
owner: string;
|
|
26155
|
+
message?: string | undefined;
|
|
26156
|
+
};
|
|
26157
|
+
spotlightId: string;
|
|
26158
|
+
headers?: {
|
|
26159
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26160
|
+
"x-access-token"?: string | undefined;
|
|
26161
|
+
} | undefined;
|
|
26162
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26163
|
+
data: {
|
|
26164
|
+
decision: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
26165
|
+
message?: string | undefined;
|
|
26166
|
+
owner: string;
|
|
26167
|
+
};
|
|
26168
|
+
} & {
|
|
26169
|
+
pathParameters: {
|
|
26170
|
+
spotlightId: string;
|
|
26171
|
+
};
|
|
26172
|
+
} & {
|
|
26173
|
+
headers?: Partial<{
|
|
26174
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26175
|
+
}>;
|
|
26176
|
+
} & {
|
|
26177
|
+
headers: {
|
|
26178
|
+
"x-access-token"?: string | undefined;
|
|
26179
|
+
} & Partial<{
|
|
26180
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26181
|
+
}>;
|
|
26182
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26183
|
+
[x: string]: unknown;
|
|
26184
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26185
|
+
data: {
|
|
26186
|
+
decision: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
26187
|
+
message?: string | undefined;
|
|
26188
|
+
owner: string;
|
|
26189
|
+
};
|
|
26190
|
+
} & {
|
|
26191
|
+
pathParameters: {
|
|
26192
|
+
spotlightId: string;
|
|
26193
|
+
};
|
|
26194
|
+
} & {
|
|
26195
|
+
headers?: Partial<{
|
|
26196
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26197
|
+
}>;
|
|
26198
|
+
} & {
|
|
26199
|
+
headers: {
|
|
26200
|
+
"x-access-token"?: string | undefined;
|
|
26201
|
+
} & Partial<{
|
|
26202
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26203
|
+
}>;
|
|
26204
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26205
|
+
[x: string]: unknown;
|
|
26206
|
+
}, 429, "application/json">>>;
|
|
25993
26207
|
/** Request a support code. */
|
|
25994
26208
|
supportCodeRequest: (request?: {
|
|
25995
26209
|
headers?: {
|
|
@@ -573,6 +573,8 @@ export declare const extensionRemoveLogo: OpenAPIOperation<RequestType<Simplify<
|
|
|
573
573
|
export declare const extensionRequestAssetUpload: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
574
574
|
/** Start the verification process of an Extension. */
|
|
575
575
|
export declare const extensionRequestExtensionVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
576
|
+
/** Resume the webhook execution of an ExtensionInstance. */
|
|
577
|
+
export declare const extensionResumeWebhookExecutionForExtensionInstance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
576
578
|
/** Publish or withdraw an Extension. */
|
|
577
579
|
export declare const extensionSetExtensionPublishedState: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
578
580
|
/** Creates or Updates Pricing for an Extension. */
|
|
@@ -917,6 +919,10 @@ export declare const userPostPollStatus: OpenAPIOperation<RequestType<Simplify<M
|
|
|
917
919
|
export declare const userGetSession: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
918
920
|
/** Terminate a specific Session. */
|
|
919
921
|
export declare const userTerminateSession: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsTokenId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
922
|
+
/** Submitted feedback of the given user. */
|
|
923
|
+
export declare const userGetSpotlightInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
924
|
+
/** Submit your usage of the spotlight. */
|
|
925
|
+
export declare const userSpotlightUsage: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightId.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
920
926
|
/** Get profile information for a user. */
|
|
921
927
|
export declare const userGetUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
922
928
|
/** Change personal information. */
|
|
@@ -947,6 +953,8 @@ export declare const userRequestAvatarUpload: OpenAPIOperation<RequestType<Simpl
|
|
|
947
953
|
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">>;
|
|
948
954
|
/** Resend the Email-Address verification email. */
|
|
949
955
|
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">>;
|
|
956
|
+
/** Submit your spotlight usage. */
|
|
957
|
+
export declare const userSpotlightFeedback: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightIdFeedback.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightIdFeedback.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightIdFeedback.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightIdFeedback.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightIdFeedback.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightIdFeedback.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSpotlightsSpotlightIdFeedback.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
950
958
|
/** Request a support code. */
|
|
951
959
|
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">>;
|
|
952
960
|
/** Verify an added Email-Address. */
|
|
@@ -1142,6 +1142,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1142
1142
|
type RequestData = InferredRequestData<typeof descriptors.extensionRequestExtensionVerification>;
|
|
1143
1143
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestExtensionVerification, TStatus>;
|
|
1144
1144
|
}
|
|
1145
|
+
namespace ExtensionResumeWebhookExecutionForExtensionInstance {
|
|
1146
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionResumeWebhookExecutionForExtensionInstance>;
|
|
1147
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionResumeWebhookExecutionForExtensionInstance, TStatus>;
|
|
1148
|
+
}
|
|
1145
1149
|
namespace ExtensionSetExtensionPublishedState {
|
|
1146
1150
|
type RequestData = InferredRequestData<typeof descriptors.extensionSetExtensionPublishedState>;
|
|
1147
1151
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionSetExtensionPublishedState, TStatus>;
|
|
@@ -1830,6 +1834,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1830
1834
|
type RequestData = InferredRequestData<typeof descriptors.userTerminateSession>;
|
|
1831
1835
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userTerminateSession, TStatus>;
|
|
1832
1836
|
}
|
|
1837
|
+
namespace UserGetSpotlightInfo {
|
|
1838
|
+
type RequestData = InferredRequestData<typeof descriptors.userGetSpotlightInfo>;
|
|
1839
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetSpotlightInfo, TStatus>;
|
|
1840
|
+
}
|
|
1841
|
+
namespace UserSpotlightUsage {
|
|
1842
|
+
type RequestData = InferredRequestData<typeof descriptors.userSpotlightUsage>;
|
|
1843
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSpotlightUsage, TStatus>;
|
|
1844
|
+
}
|
|
1833
1845
|
namespace UserGetUser {
|
|
1834
1846
|
type RequestData = InferredRequestData<typeof descriptors.userGetUser>;
|
|
1835
1847
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetUser, TStatus>;
|
|
@@ -1890,6 +1902,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1890
1902
|
type RequestData = InferredRequestData<typeof descriptors.userResendVerificationEmail>;
|
|
1891
1903
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userResendVerificationEmail, TStatus>;
|
|
1892
1904
|
}
|
|
1905
|
+
namespace UserSpotlightFeedback {
|
|
1906
|
+
type RequestData = InferredRequestData<typeof descriptors.userSpotlightFeedback>;
|
|
1907
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSpotlightFeedback, TStatus>;
|
|
1908
|
+
}
|
|
1893
1909
|
namespace UserSupportCodeRequest {
|
|
1894
1910
|
type RequestData = InferredRequestData<typeof descriptors.userSupportCodeRequest>;
|
|
1895
1911
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSupportCodeRequest, TStatus>;
|
|
@@ -7300,6 +7316,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7300
7316
|
}
|
|
7301
7317
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
7302
7318
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
7319
|
+
type UserUserFeedbackSpotlightDecision = "keep" | "kill" | "ignore";
|
|
7303
7320
|
interface CommonsAddress {
|
|
7304
7321
|
street: string;
|
|
7305
7322
|
houseNumber: string;
|
|
@@ -22237,6 +22254,47 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22237
22254
|
}
|
|
22238
22255
|
}
|
|
22239
22256
|
}
|
|
22257
|
+
namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution {
|
|
22258
|
+
namespace Post {
|
|
22259
|
+
namespace Parameters {
|
|
22260
|
+
type Path = {
|
|
22261
|
+
contributorId: string;
|
|
22262
|
+
extensionId: string;
|
|
22263
|
+
extensionInstanceId: string;
|
|
22264
|
+
};
|
|
22265
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22266
|
+
type Query = {};
|
|
22267
|
+
}
|
|
22268
|
+
namespace Responses {
|
|
22269
|
+
namespace $204 {
|
|
22270
|
+
namespace Content {
|
|
22271
|
+
type Empty = unknown;
|
|
22272
|
+
}
|
|
22273
|
+
}
|
|
22274
|
+
namespace $400 {
|
|
22275
|
+
namespace Content {
|
|
22276
|
+
interface ApplicationJson {
|
|
22277
|
+
[k: string]: unknown;
|
|
22278
|
+
}
|
|
22279
|
+
}
|
|
22280
|
+
}
|
|
22281
|
+
namespace $429 {
|
|
22282
|
+
namespace Content {
|
|
22283
|
+
interface ApplicationJson {
|
|
22284
|
+
[k: string]: unknown;
|
|
22285
|
+
}
|
|
22286
|
+
}
|
|
22287
|
+
}
|
|
22288
|
+
namespace Default {
|
|
22289
|
+
namespace Content {
|
|
22290
|
+
interface ApplicationJson {
|
|
22291
|
+
[k: string]: unknown;
|
|
22292
|
+
}
|
|
22293
|
+
}
|
|
22294
|
+
}
|
|
22295
|
+
}
|
|
22296
|
+
}
|
|
22297
|
+
}
|
|
22240
22298
|
namespace V2ContributorsContributorIdExtensionsExtensionIdPublished {
|
|
22241
22299
|
namespace Put {
|
|
22242
22300
|
namespace Parameters {
|
|
@@ -31261,6 +31319,81 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31261
31319
|
}
|
|
31262
31320
|
}
|
|
31263
31321
|
}
|
|
31322
|
+
namespace V2UsersSelfSpotlightsSpotlightId {
|
|
31323
|
+
namespace Get {
|
|
31324
|
+
namespace Parameters {
|
|
31325
|
+
type Path = {
|
|
31326
|
+
spotlightId: string;
|
|
31327
|
+
};
|
|
31328
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31329
|
+
type Query = {};
|
|
31330
|
+
}
|
|
31331
|
+
namespace Responses {
|
|
31332
|
+
namespace $200 {
|
|
31333
|
+
namespace Content {
|
|
31334
|
+
interface ApplicationJson {
|
|
31335
|
+
acknowledged: boolean;
|
|
31336
|
+
decision?: MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
31337
|
+
spotlightId: string;
|
|
31338
|
+
used: boolean;
|
|
31339
|
+
}
|
|
31340
|
+
}
|
|
31341
|
+
}
|
|
31342
|
+
namespace $429 {
|
|
31343
|
+
namespace Content {
|
|
31344
|
+
interface ApplicationJson {
|
|
31345
|
+
[k: string]: unknown;
|
|
31346
|
+
}
|
|
31347
|
+
}
|
|
31348
|
+
}
|
|
31349
|
+
namespace Default {
|
|
31350
|
+
namespace Content {
|
|
31351
|
+
interface ApplicationJson {
|
|
31352
|
+
[k: string]: unknown;
|
|
31353
|
+
}
|
|
31354
|
+
}
|
|
31355
|
+
}
|
|
31356
|
+
}
|
|
31357
|
+
}
|
|
31358
|
+
namespace Post {
|
|
31359
|
+
namespace Parameters {
|
|
31360
|
+
type Path = {
|
|
31361
|
+
spotlightId: string;
|
|
31362
|
+
};
|
|
31363
|
+
interface RequestBody {
|
|
31364
|
+
acknowledged?: boolean;
|
|
31365
|
+
/**
|
|
31366
|
+
* The Owner of the Feature the spotlight is highlighting.
|
|
31367
|
+
*/
|
|
31368
|
+
owner?: string;
|
|
31369
|
+
used?: boolean;
|
|
31370
|
+
}
|
|
31371
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31372
|
+
type Query = {};
|
|
31373
|
+
}
|
|
31374
|
+
namespace Responses {
|
|
31375
|
+
namespace $204 {
|
|
31376
|
+
namespace Content {
|
|
31377
|
+
type Empty = unknown;
|
|
31378
|
+
}
|
|
31379
|
+
}
|
|
31380
|
+
namespace $429 {
|
|
31381
|
+
namespace Content {
|
|
31382
|
+
interface ApplicationJson {
|
|
31383
|
+
[k: string]: unknown;
|
|
31384
|
+
}
|
|
31385
|
+
}
|
|
31386
|
+
}
|
|
31387
|
+
namespace Default {
|
|
31388
|
+
namespace Content {
|
|
31389
|
+
interface ApplicationJson {
|
|
31390
|
+
[k: string]: unknown;
|
|
31391
|
+
}
|
|
31392
|
+
}
|
|
31393
|
+
}
|
|
31394
|
+
}
|
|
31395
|
+
}
|
|
31396
|
+
}
|
|
31264
31397
|
namespace V2UsersUserId {
|
|
31265
31398
|
namespace Get {
|
|
31266
31399
|
namespace Parameters {
|
|
@@ -31954,6 +32087,49 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31954
32087
|
}
|
|
31955
32088
|
}
|
|
31956
32089
|
namespace V2SignupMfaResetRecoverycodes { }
|
|
32090
|
+
namespace V2UsersSelfSpotlightsSpotlightIdFeedback {
|
|
32091
|
+
namespace Post {
|
|
32092
|
+
namespace Parameters {
|
|
32093
|
+
type Path = {
|
|
32094
|
+
spotlightId: string;
|
|
32095
|
+
};
|
|
32096
|
+
interface RequestBody {
|
|
32097
|
+
decision: MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
32098
|
+
/**
|
|
32099
|
+
* Personal feedback message.
|
|
32100
|
+
*/
|
|
32101
|
+
message?: string;
|
|
32102
|
+
/**
|
|
32103
|
+
* The Owner of the Feature the spotlight is highlighting.
|
|
32104
|
+
*/
|
|
32105
|
+
owner: string;
|
|
32106
|
+
}
|
|
32107
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
32108
|
+
type Query = {};
|
|
32109
|
+
}
|
|
32110
|
+
namespace Responses {
|
|
32111
|
+
namespace $204 {
|
|
32112
|
+
namespace Content {
|
|
32113
|
+
type Empty = unknown;
|
|
32114
|
+
}
|
|
32115
|
+
}
|
|
32116
|
+
namespace $429 {
|
|
32117
|
+
namespace Content {
|
|
32118
|
+
interface ApplicationJson {
|
|
32119
|
+
[k: string]: unknown;
|
|
32120
|
+
}
|
|
32121
|
+
}
|
|
32122
|
+
}
|
|
32123
|
+
namespace Default {
|
|
32124
|
+
namespace Content {
|
|
32125
|
+
interface ApplicationJson {
|
|
32126
|
+
[k: string]: unknown;
|
|
32127
|
+
}
|
|
32128
|
+
}
|
|
32129
|
+
}
|
|
32130
|
+
}
|
|
32131
|
+
}
|
|
32132
|
+
}
|
|
31957
32133
|
namespace V2SignupSupportcode { }
|
|
31958
32134
|
namespace V2SignupSupportcodes { }
|
|
31959
32135
|
namespace V2UsersSelfCredentialsSupportCode {
|
|
@@ -3400,6 +3400,19 @@ declare const buildUserApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
3400
3400
|
location?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldSignupLocation | undefined;
|
|
3401
3401
|
tokenId: string;
|
|
3402
3402
|
}>;
|
|
3403
|
+
/** Submitted feedback of the given user. */
|
|
3404
|
+
getSpotlightInfo: (conf: {
|
|
3405
|
+
spotlightId: string;
|
|
3406
|
+
headers?: {
|
|
3407
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3408
|
+
"x-access-token"?: string | undefined;
|
|
3409
|
+
} | undefined;
|
|
3410
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3411
|
+
acknowledged: boolean;
|
|
3412
|
+
decision?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision | undefined;
|
|
3413
|
+
spotlightId: string;
|
|
3414
|
+
used: boolean;
|
|
3415
|
+
}>;
|
|
3403
3416
|
/** Get profile information for a user. */
|
|
3404
3417
|
getUser: (conf: {
|
|
3405
3418
|
userId: string;
|
|
@@ -13275,6 +13275,56 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
13275
13275
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13276
13276
|
[x: string]: unknown;
|
|
13277
13277
|
}, 429, "application/json">>>;
|
|
13278
|
+
/** Resume the webhook execution of an ExtensionInstance. */
|
|
13279
|
+
extensionResumeWebhookExecutionForExtensionInstance: (request: {
|
|
13280
|
+
contributorId: string;
|
|
13281
|
+
extensionId: string;
|
|
13282
|
+
extensionInstanceId: string;
|
|
13283
|
+
headers?: {
|
|
13284
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
13285
|
+
"x-access-token"?: string | undefined;
|
|
13286
|
+
} | undefined;
|
|
13287
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13288
|
+
headers?: Partial<{
|
|
13289
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13290
|
+
}>;
|
|
13291
|
+
} & {
|
|
13292
|
+
pathParameters: {
|
|
13293
|
+
contributorId: string;
|
|
13294
|
+
extensionId: string;
|
|
13295
|
+
extensionInstanceId: string;
|
|
13296
|
+
};
|
|
13297
|
+
} & {
|
|
13298
|
+
headers: {
|
|
13299
|
+
"x-access-token"?: string | undefined;
|
|
13300
|
+
} & Partial<{
|
|
13301
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13302
|
+
}>;
|
|
13303
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
13304
|
+
[x: string]: unknown;
|
|
13305
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13306
|
+
[x: string]: unknown;
|
|
13307
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13308
|
+
headers?: Partial<{
|
|
13309
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13310
|
+
}>;
|
|
13311
|
+
} & {
|
|
13312
|
+
pathParameters: {
|
|
13313
|
+
contributorId: string;
|
|
13314
|
+
extensionId: string;
|
|
13315
|
+
extensionInstanceId: string;
|
|
13316
|
+
};
|
|
13317
|
+
} & {
|
|
13318
|
+
headers: {
|
|
13319
|
+
"x-access-token"?: string | undefined;
|
|
13320
|
+
} & Partial<{
|
|
13321
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13322
|
+
}>;
|
|
13323
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
13324
|
+
[x: string]: unknown;
|
|
13325
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13326
|
+
[x: string]: unknown;
|
|
13327
|
+
}, 429, "application/json">>>;
|
|
13278
13328
|
/** Publish or withdraw an Extension. */
|
|
13279
13329
|
extensionSetExtensionPublishedState: (request: {
|
|
13280
13330
|
data: {
|
|
@@ -25177,6 +25227,113 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
25177
25227
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25178
25228
|
[x: string]: unknown;
|
|
25179
25229
|
}, 429, "application/json">>>;
|
|
25230
|
+
/** Submitted feedback of the given user. */
|
|
25231
|
+
getSpotlightInfo: (request: {
|
|
25232
|
+
spotlightId: string;
|
|
25233
|
+
headers?: {
|
|
25234
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25235
|
+
"x-access-token"?: string | undefined;
|
|
25236
|
+
} | undefined;
|
|
25237
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25238
|
+
headers?: Partial<{
|
|
25239
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25240
|
+
}>;
|
|
25241
|
+
} & {
|
|
25242
|
+
pathParameters: {
|
|
25243
|
+
spotlightId: string;
|
|
25244
|
+
};
|
|
25245
|
+
} & {
|
|
25246
|
+
headers: {
|
|
25247
|
+
"x-access-token"?: string | undefined;
|
|
25248
|
+
} & Partial<{
|
|
25249
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25250
|
+
}>;
|
|
25251
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25252
|
+
acknowledged: boolean;
|
|
25253
|
+
decision?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision | undefined;
|
|
25254
|
+
spotlightId: string;
|
|
25255
|
+
used: boolean;
|
|
25256
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25257
|
+
[x: string]: unknown;
|
|
25258
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25259
|
+
headers?: Partial<{
|
|
25260
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25261
|
+
}>;
|
|
25262
|
+
} & {
|
|
25263
|
+
pathParameters: {
|
|
25264
|
+
spotlightId: string;
|
|
25265
|
+
};
|
|
25266
|
+
} & {
|
|
25267
|
+
headers: {
|
|
25268
|
+
"x-access-token"?: string | undefined;
|
|
25269
|
+
} & Partial<{
|
|
25270
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25271
|
+
}>;
|
|
25272
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25273
|
+
acknowledged: boolean;
|
|
25274
|
+
decision?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision | undefined;
|
|
25275
|
+
spotlightId: string;
|
|
25276
|
+
used: boolean;
|
|
25277
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25278
|
+
[x: string]: unknown;
|
|
25279
|
+
}, 429, "application/json">>>;
|
|
25280
|
+
/** Submit your usage of the spotlight. */
|
|
25281
|
+
spotlightUsage: (request: {
|
|
25282
|
+
spotlightId: string;
|
|
25283
|
+
data?: {
|
|
25284
|
+
acknowledged?: boolean | undefined;
|
|
25285
|
+
owner?: string | undefined;
|
|
25286
|
+
used?: boolean | undefined;
|
|
25287
|
+
} | undefined;
|
|
25288
|
+
headers?: {
|
|
25289
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25290
|
+
"x-access-token"?: string | undefined;
|
|
25291
|
+
} | undefined;
|
|
25292
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25293
|
+
data: {
|
|
25294
|
+
acknowledged?: boolean | undefined;
|
|
25295
|
+
owner?: string | undefined;
|
|
25296
|
+
used?: boolean | undefined;
|
|
25297
|
+
};
|
|
25298
|
+
} & {
|
|
25299
|
+
pathParameters: {
|
|
25300
|
+
spotlightId: string;
|
|
25301
|
+
};
|
|
25302
|
+
} & {
|
|
25303
|
+
headers?: Partial<{
|
|
25304
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25305
|
+
}>;
|
|
25306
|
+
} & {
|
|
25307
|
+
headers: {
|
|
25308
|
+
"x-access-token"?: string | undefined;
|
|
25309
|
+
} & Partial<{
|
|
25310
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25311
|
+
}>;
|
|
25312
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
25313
|
+
[x: string]: unknown;
|
|
25314
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25315
|
+
data: {
|
|
25316
|
+
acknowledged?: boolean | undefined;
|
|
25317
|
+
owner?: string | undefined;
|
|
25318
|
+
used?: boolean | undefined;
|
|
25319
|
+
};
|
|
25320
|
+
} & {
|
|
25321
|
+
pathParameters: {
|
|
25322
|
+
spotlightId: string;
|
|
25323
|
+
};
|
|
25324
|
+
} & {
|
|
25325
|
+
headers?: Partial<{
|
|
25326
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25327
|
+
}>;
|
|
25328
|
+
} & {
|
|
25329
|
+
headers: {
|
|
25330
|
+
"x-access-token"?: string | undefined;
|
|
25331
|
+
} & Partial<{
|
|
25332
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25333
|
+
}>;
|
|
25334
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
25335
|
+
[x: string]: unknown;
|
|
25336
|
+
}, 429, "application/json">>>;
|
|
25180
25337
|
/** Get profile information for a user. */
|
|
25181
25338
|
getUser: (request: {
|
|
25182
25339
|
userId: string;
|
|
@@ -25990,6 +26147,63 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
25990
26147
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25991
26148
|
[x: string]: unknown;
|
|
25992
26149
|
}, 429, "application/json">>>;
|
|
26150
|
+
/** Submit your spotlight usage. */
|
|
26151
|
+
spotlightFeedback: (request: {
|
|
26152
|
+
data: {
|
|
26153
|
+
decision: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
26154
|
+
owner: string;
|
|
26155
|
+
message?: string | undefined;
|
|
26156
|
+
};
|
|
26157
|
+
spotlightId: string;
|
|
26158
|
+
headers?: {
|
|
26159
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26160
|
+
"x-access-token"?: string | undefined;
|
|
26161
|
+
} | undefined;
|
|
26162
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26163
|
+
data: {
|
|
26164
|
+
decision: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
26165
|
+
message?: string | undefined;
|
|
26166
|
+
owner: string;
|
|
26167
|
+
};
|
|
26168
|
+
} & {
|
|
26169
|
+
pathParameters: {
|
|
26170
|
+
spotlightId: string;
|
|
26171
|
+
};
|
|
26172
|
+
} & {
|
|
26173
|
+
headers?: Partial<{
|
|
26174
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26175
|
+
}>;
|
|
26176
|
+
} & {
|
|
26177
|
+
headers: {
|
|
26178
|
+
"x-access-token"?: string | undefined;
|
|
26179
|
+
} & Partial<{
|
|
26180
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26181
|
+
}>;
|
|
26182
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26183
|
+
[x: string]: unknown;
|
|
26184
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26185
|
+
data: {
|
|
26186
|
+
decision: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
26187
|
+
message?: string | undefined;
|
|
26188
|
+
owner: string;
|
|
26189
|
+
};
|
|
26190
|
+
} & {
|
|
26191
|
+
pathParameters: {
|
|
26192
|
+
spotlightId: string;
|
|
26193
|
+
};
|
|
26194
|
+
} & {
|
|
26195
|
+
headers?: Partial<{
|
|
26196
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26197
|
+
}>;
|
|
26198
|
+
} & {
|
|
26199
|
+
headers: {
|
|
26200
|
+
"x-access-token"?: string | undefined;
|
|
26201
|
+
} & Partial<{
|
|
26202
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26203
|
+
}>;
|
|
26204
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26205
|
+
[x: string]: unknown;
|
|
26206
|
+
}, 429, "application/json">>>;
|
|
25993
26207
|
/** Request a support code. */
|
|
25994
26208
|
supportCodeRequest: (request?: {
|
|
25995
26209
|
headers?: {
|
|
@@ -573,6 +573,8 @@ export declare const extensionRemoveLogo: OpenAPIOperation<RequestType<Simplify<
|
|
|
573
573
|
export declare const extensionRequestAssetUpload: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
574
574
|
/** Start the verification process of an Extension. */
|
|
575
575
|
export declare const extensionRequestExtensionVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
576
|
+
/** Resume the webhook execution of an ExtensionInstance. */
|
|
577
|
+
export declare const extensionResumeWebhookExecutionForExtensionInstance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
576
578
|
/** Publish or withdraw an Extension. */
|
|
577
579
|
export declare const extensionSetExtensionPublishedState: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
578
580
|
/** Creates or Updates Pricing for an Extension. */
|
|
@@ -917,6 +919,10 @@ export declare const userPostPollStatus: OpenAPIOperation<RequestType<Simplify<M
|
|
|
917
919
|
export declare const userGetSession: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
918
920
|
/** Terminate a specific Session. */
|
|
919
921
|
export declare const userTerminateSession: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Delete.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Delete.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSessionsTokenId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
922
|
+
/** Submitted feedback of the given user. */
|
|
923
|
+
export declare const userGetSpotlightInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
924
|
+
/** Submit your usage of the spotlight. */
|
|
925
|
+
export declare const userSpotlightUsage: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightId.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
920
926
|
/** Get profile information for a user. */
|
|
921
927
|
export declare const userGetUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserId.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
922
928
|
/** Change personal information. */
|
|
@@ -947,6 +953,8 @@ export declare const userRequestAvatarUpload: OpenAPIOperation<RequestType<Simpl
|
|
|
947
953
|
export declare const userRemoveAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserIdAvatar.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersUserIdAvatar.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
948
954
|
/** Resend the Email-Address verification email. */
|
|
949
955
|
export declare const userResendVerificationEmail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsEmailActionsResendEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
956
|
+
/** Submit your spotlight usage. */
|
|
957
|
+
export declare const userSpotlightFeedback: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightIdFeedback.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightIdFeedback.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightIdFeedback.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightIdFeedback.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightIdFeedback.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightIdFeedback.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfSpotlightsSpotlightIdFeedback.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
950
958
|
/** Request a support code. */
|
|
951
959
|
export declare const userSupportCodeRequest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsSupportCode.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsSupportCode.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsSupportCode.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsSupportCode.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsSupportCode.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextUsersSelfCredentialsSupportCode.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
952
960
|
/** Verify an added Email-Address. */
|
|
@@ -1142,6 +1142,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1142
1142
|
type RequestData = InferredRequestData<typeof descriptors.extensionRequestExtensionVerification>;
|
|
1143
1143
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestExtensionVerification, TStatus>;
|
|
1144
1144
|
}
|
|
1145
|
+
namespace ExtensionResumeWebhookExecutionForExtensionInstance {
|
|
1146
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionResumeWebhookExecutionForExtensionInstance>;
|
|
1147
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionResumeWebhookExecutionForExtensionInstance, TStatus>;
|
|
1148
|
+
}
|
|
1145
1149
|
namespace ExtensionSetExtensionPublishedState {
|
|
1146
1150
|
type RequestData = InferredRequestData<typeof descriptors.extensionSetExtensionPublishedState>;
|
|
1147
1151
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionSetExtensionPublishedState, TStatus>;
|
|
@@ -1830,6 +1834,14 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1830
1834
|
type RequestData = InferredRequestData<typeof descriptors.userTerminateSession>;
|
|
1831
1835
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userTerminateSession, TStatus>;
|
|
1832
1836
|
}
|
|
1837
|
+
namespace UserGetSpotlightInfo {
|
|
1838
|
+
type RequestData = InferredRequestData<typeof descriptors.userGetSpotlightInfo>;
|
|
1839
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetSpotlightInfo, TStatus>;
|
|
1840
|
+
}
|
|
1841
|
+
namespace UserSpotlightUsage {
|
|
1842
|
+
type RequestData = InferredRequestData<typeof descriptors.userSpotlightUsage>;
|
|
1843
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSpotlightUsage, TStatus>;
|
|
1844
|
+
}
|
|
1833
1845
|
namespace UserGetUser {
|
|
1834
1846
|
type RequestData = InferredRequestData<typeof descriptors.userGetUser>;
|
|
1835
1847
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetUser, TStatus>;
|
|
@@ -1890,6 +1902,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1890
1902
|
type RequestData = InferredRequestData<typeof descriptors.userResendVerificationEmail>;
|
|
1891
1903
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userResendVerificationEmail, TStatus>;
|
|
1892
1904
|
}
|
|
1905
|
+
namespace UserSpotlightFeedback {
|
|
1906
|
+
type RequestData = InferredRequestData<typeof descriptors.userSpotlightFeedback>;
|
|
1907
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSpotlightFeedback, TStatus>;
|
|
1908
|
+
}
|
|
1893
1909
|
namespace UserSupportCodeRequest {
|
|
1894
1910
|
type RequestData = InferredRequestData<typeof descriptors.userSupportCodeRequest>;
|
|
1895
1911
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSupportCodeRequest, TStatus>;
|
|
@@ -7304,6 +7320,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7304
7320
|
}
|
|
7305
7321
|
type DeMittwaldVerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
7306
7322
|
type DeMittwaldContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
7323
|
+
type DeMittwaldUserUserFeedbackSpotlightDecision = "keep" | "kill" | "ignore";
|
|
7307
7324
|
interface DeMittwaldCommonsAddress {
|
|
7308
7325
|
street: string;
|
|
7309
7326
|
houseNumber: string;
|
|
@@ -22210,6 +22227,47 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
22210
22227
|
}
|
|
22211
22228
|
}
|
|
22212
22229
|
}
|
|
22230
|
+
namespace V3NextContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsResumeWebhookExecution {
|
|
22231
|
+
namespace Post {
|
|
22232
|
+
namespace Parameters {
|
|
22233
|
+
type Path = {
|
|
22234
|
+
contributorId: string;
|
|
22235
|
+
extensionId: string;
|
|
22236
|
+
extensionInstanceId: string;
|
|
22237
|
+
};
|
|
22238
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
22239
|
+
type Query = {};
|
|
22240
|
+
}
|
|
22241
|
+
namespace Responses {
|
|
22242
|
+
namespace $204 {
|
|
22243
|
+
namespace Content {
|
|
22244
|
+
type Empty = unknown;
|
|
22245
|
+
}
|
|
22246
|
+
}
|
|
22247
|
+
namespace $400 {
|
|
22248
|
+
namespace Content {
|
|
22249
|
+
interface ApplicationJson {
|
|
22250
|
+
[k: string]: unknown;
|
|
22251
|
+
}
|
|
22252
|
+
}
|
|
22253
|
+
}
|
|
22254
|
+
namespace $429 {
|
|
22255
|
+
namespace Content {
|
|
22256
|
+
interface ApplicationJson {
|
|
22257
|
+
[k: string]: unknown;
|
|
22258
|
+
}
|
|
22259
|
+
}
|
|
22260
|
+
}
|
|
22261
|
+
namespace Default {
|
|
22262
|
+
namespace Content {
|
|
22263
|
+
interface ApplicationJson {
|
|
22264
|
+
[k: string]: unknown;
|
|
22265
|
+
}
|
|
22266
|
+
}
|
|
22267
|
+
}
|
|
22268
|
+
}
|
|
22269
|
+
}
|
|
22270
|
+
}
|
|
22213
22271
|
namespace V3NextContributorsContributorIdExtensionsExtensionIdPublished {
|
|
22214
22272
|
namespace Put {
|
|
22215
22273
|
namespace Parameters {
|
|
@@ -31191,6 +31249,81 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31191
31249
|
}
|
|
31192
31250
|
}
|
|
31193
31251
|
}
|
|
31252
|
+
namespace V3NextUsersSelfSpotlightsSpotlightId {
|
|
31253
|
+
namespace Get {
|
|
31254
|
+
namespace Parameters {
|
|
31255
|
+
type Path = {
|
|
31256
|
+
spotlightId: string;
|
|
31257
|
+
};
|
|
31258
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31259
|
+
type Query = {};
|
|
31260
|
+
}
|
|
31261
|
+
namespace Responses {
|
|
31262
|
+
namespace $200 {
|
|
31263
|
+
namespace Content {
|
|
31264
|
+
interface ApplicationJson {
|
|
31265
|
+
acknowledged: boolean;
|
|
31266
|
+
decision?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
31267
|
+
spotlightId: string;
|
|
31268
|
+
used: boolean;
|
|
31269
|
+
}
|
|
31270
|
+
}
|
|
31271
|
+
}
|
|
31272
|
+
namespace $429 {
|
|
31273
|
+
namespace Content {
|
|
31274
|
+
interface ApplicationJson {
|
|
31275
|
+
[k: string]: unknown;
|
|
31276
|
+
}
|
|
31277
|
+
}
|
|
31278
|
+
}
|
|
31279
|
+
namespace Default {
|
|
31280
|
+
namespace Content {
|
|
31281
|
+
interface ApplicationJson {
|
|
31282
|
+
[k: string]: unknown;
|
|
31283
|
+
}
|
|
31284
|
+
}
|
|
31285
|
+
}
|
|
31286
|
+
}
|
|
31287
|
+
}
|
|
31288
|
+
namespace Post {
|
|
31289
|
+
namespace Parameters {
|
|
31290
|
+
type Path = {
|
|
31291
|
+
spotlightId: string;
|
|
31292
|
+
};
|
|
31293
|
+
interface RequestBody {
|
|
31294
|
+
acknowledged?: boolean;
|
|
31295
|
+
/**
|
|
31296
|
+
* The Owner of the Feature the spotlight is highlighting.
|
|
31297
|
+
*/
|
|
31298
|
+
owner?: string;
|
|
31299
|
+
used?: boolean;
|
|
31300
|
+
}
|
|
31301
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31302
|
+
type Query = {};
|
|
31303
|
+
}
|
|
31304
|
+
namespace Responses {
|
|
31305
|
+
namespace $204 {
|
|
31306
|
+
namespace Content {
|
|
31307
|
+
type Empty = unknown;
|
|
31308
|
+
}
|
|
31309
|
+
}
|
|
31310
|
+
namespace $429 {
|
|
31311
|
+
namespace Content {
|
|
31312
|
+
interface ApplicationJson {
|
|
31313
|
+
[k: string]: unknown;
|
|
31314
|
+
}
|
|
31315
|
+
}
|
|
31316
|
+
}
|
|
31317
|
+
namespace Default {
|
|
31318
|
+
namespace Content {
|
|
31319
|
+
interface ApplicationJson {
|
|
31320
|
+
[k: string]: unknown;
|
|
31321
|
+
}
|
|
31322
|
+
}
|
|
31323
|
+
}
|
|
31324
|
+
}
|
|
31325
|
+
}
|
|
31326
|
+
}
|
|
31194
31327
|
namespace V3NextUsersUserId {
|
|
31195
31328
|
namespace Get {
|
|
31196
31329
|
namespace Parameters {
|
|
@@ -31882,6 +32015,49 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31882
32015
|
}
|
|
31883
32016
|
}
|
|
31884
32017
|
}
|
|
32018
|
+
namespace V3NextUsersSelfSpotlightsSpotlightIdFeedback {
|
|
32019
|
+
namespace Post {
|
|
32020
|
+
namespace Parameters {
|
|
32021
|
+
type Path = {
|
|
32022
|
+
spotlightId: string;
|
|
32023
|
+
};
|
|
32024
|
+
interface RequestBody {
|
|
32025
|
+
decision: MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
32026
|
+
/**
|
|
32027
|
+
* Personal feedback message.
|
|
32028
|
+
*/
|
|
32029
|
+
message?: string;
|
|
32030
|
+
/**
|
|
32031
|
+
* The Owner of the Feature the spotlight is highlighting.
|
|
32032
|
+
*/
|
|
32033
|
+
owner: string;
|
|
32034
|
+
}
|
|
32035
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
32036
|
+
type Query = {};
|
|
32037
|
+
}
|
|
32038
|
+
namespace Responses {
|
|
32039
|
+
namespace $204 {
|
|
32040
|
+
namespace Content {
|
|
32041
|
+
type Empty = unknown;
|
|
32042
|
+
}
|
|
32043
|
+
}
|
|
32044
|
+
namespace $429 {
|
|
32045
|
+
namespace Content {
|
|
32046
|
+
interface ApplicationJson {
|
|
32047
|
+
[k: string]: unknown;
|
|
32048
|
+
}
|
|
32049
|
+
}
|
|
32050
|
+
}
|
|
32051
|
+
namespace Default {
|
|
32052
|
+
namespace Content {
|
|
32053
|
+
interface ApplicationJson {
|
|
32054
|
+
[k: string]: unknown;
|
|
32055
|
+
}
|
|
32056
|
+
}
|
|
32057
|
+
}
|
|
32058
|
+
}
|
|
32059
|
+
}
|
|
32060
|
+
}
|
|
31885
32061
|
namespace V3NextUsersSelfCredentialsSupportCode {
|
|
31886
32062
|
namespace Get {
|
|
31887
32063
|
namespace Parameters {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.464.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.465.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.
|
|
75
|
+
"@mittwald/api-client-commons": "^4.465.0",
|
|
76
76
|
"browser-or-node": "^3.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@mittwald/api-code-generator": "^4.
|
|
79
|
+
"@mittwald/api-code-generator": "^4.465.0",
|
|
80
80
|
"@mittwald/react-use-promise": "^4.2.3",
|
|
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": "
|
|
109
|
+
"gitHead": "74fd5453c0bd37dfdaf67f198cc9cf9850993c39"
|
|
110
110
|
}
|