@mittwald/api-client 4.462.0 → 4.464.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 +6 -0
- package/dist/esm/generated/v2/descriptors.js +18 -0
- package/dist/esm/generated/v3-next/client-react.js +2 -0
- package/dist/esm/generated/v3-next/client.js +6 -0
- package/dist/esm/generated/v3-next/descriptors.js +18 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +15 -1
- package/dist/types/generated/v2/client.d.ts +170 -3
- package/dist/types/generated/v2/descriptors.d.ts +6 -0
- package/dist/types/generated/v2/types.d.ts +133 -1
- package/dist/types/generated/v3-next/client-react.d.ts +15 -1
- package/dist/types/generated/v3-next/client.d.ts +170 -3
- package/dist/types/generated/v3-next/descriptors.d.ts +6 -0
- package/dist/types/generated/v3-next/types.d.ts +133 -1
- 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. */
|
|
@@ -804,6 +804,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
804
804
|
getSession: this.requestFunctionFactory(descriptors.userGetSession),
|
|
805
805
|
/** Terminate a specific Session. */
|
|
806
806
|
terminateSession: this.requestFunctionFactory(descriptors.userTerminateSession),
|
|
807
|
+
/** Submitted feedback of the given user. */
|
|
808
|
+
getSpotlightInfo: this.requestFunctionFactory(descriptors.userGetSpotlightInfo),
|
|
809
|
+
/** Submit your usage of the spotlight. */
|
|
810
|
+
spotlightUsage: this.requestFunctionFactory(descriptors.userSpotlightUsage),
|
|
807
811
|
/** Get profile information for a user. */
|
|
808
812
|
getUser: this.requestFunctionFactory(descriptors.userGetUser),
|
|
809
813
|
/** Change personal information. */
|
|
@@ -834,6 +838,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
834
838
|
removeAvatar: this.requestFunctionFactory(descriptors.userRemoveAvatar),
|
|
835
839
|
/** Resend the Email-Address verification email. */
|
|
836
840
|
resendVerificationEmail: this.requestFunctionFactory(descriptors.userResendVerificationEmail),
|
|
841
|
+
/** Submit your spotlight usage. */
|
|
842
|
+
spotlightFeedback: this.requestFunctionFactory(descriptors.userSpotlightFeedback),
|
|
837
843
|
/** Request a support code. */
|
|
838
844
|
supportCodeRequest: this.requestFunctionFactory(descriptors.userSupportCodeRequest),
|
|
839
845
|
/** Verify an added Email-Address. */
|
|
@@ -2740,6 +2740,18 @@ export const userTerminateSession = {
|
|
|
2740
2740
|
method: "DELETE",
|
|
2741
2741
|
operationId: "user-terminate-session",
|
|
2742
2742
|
};
|
|
2743
|
+
/** Submitted feedback of the given user. */
|
|
2744
|
+
export const userGetSpotlightInfo = {
|
|
2745
|
+
path: "/v2/users/self/spotlights/{spotlightId}",
|
|
2746
|
+
method: "GET",
|
|
2747
|
+
operationId: "user-get-spotlight-info",
|
|
2748
|
+
};
|
|
2749
|
+
/** Submit your usage of the spotlight. */
|
|
2750
|
+
export const userSpotlightUsage = {
|
|
2751
|
+
path: "/v2/users/self/spotlights/{spotlightId}",
|
|
2752
|
+
method: "POST",
|
|
2753
|
+
operationId: "user-spotlight-usage",
|
|
2754
|
+
};
|
|
2743
2755
|
/** Get profile information for a user. */
|
|
2744
2756
|
export const userGetUser = {
|
|
2745
2757
|
path: "/v2/users/{userId}",
|
|
@@ -2830,6 +2842,12 @@ export const userResendVerificationEmail = {
|
|
|
2830
2842
|
method: "POST",
|
|
2831
2843
|
operationId: "user-resend-verification-email",
|
|
2832
2844
|
};
|
|
2845
|
+
/** Submit your spotlight usage. */
|
|
2846
|
+
export const userSpotlightFeedback = {
|
|
2847
|
+
path: "/v2/users/self/spotlights/{spotlightId}/feedback",
|
|
2848
|
+
method: "POST",
|
|
2849
|
+
operationId: "user-spotlight-feedback",
|
|
2850
|
+
};
|
|
2833
2851
|
/** Request a support code. */
|
|
2834
2852
|
export const userSupportCodeRequest = {
|
|
2835
2853
|
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. */
|
|
@@ -804,6 +804,10 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
804
804
|
getSession: this.requestFunctionFactory(descriptors.userGetSession),
|
|
805
805
|
/** Terminate a specific Session. */
|
|
806
806
|
terminateSession: this.requestFunctionFactory(descriptors.userTerminateSession),
|
|
807
|
+
/** Submitted feedback of the given user. */
|
|
808
|
+
getSpotlightInfo: this.requestFunctionFactory(descriptors.userGetSpotlightInfo),
|
|
809
|
+
/** Submit your usage of the spotlight. */
|
|
810
|
+
spotlightUsage: this.requestFunctionFactory(descriptors.userSpotlightUsage),
|
|
807
811
|
/** Get profile information for a user. */
|
|
808
812
|
getUser: this.requestFunctionFactory(descriptors.userGetUser),
|
|
809
813
|
/** Change personal information. */
|
|
@@ -834,6 +838,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
834
838
|
removeAvatar: this.requestFunctionFactory(descriptors.userRemoveAvatar),
|
|
835
839
|
/** Resend the Email-Address verification email. */
|
|
836
840
|
resendVerificationEmail: this.requestFunctionFactory(descriptors.userResendVerificationEmail),
|
|
841
|
+
/** Submit your spotlight usage. */
|
|
842
|
+
spotlightFeedback: this.requestFunctionFactory(descriptors.userSpotlightFeedback),
|
|
837
843
|
/** Request a support code. */
|
|
838
844
|
supportCodeRequest: this.requestFunctionFactory(descriptors.userSupportCodeRequest),
|
|
839
845
|
/** Verify an added Email-Address. */
|
|
@@ -2740,6 +2740,18 @@ export const userTerminateSession = {
|
|
|
2740
2740
|
method: "DELETE",
|
|
2741
2741
|
operationId: "user-terminate-session",
|
|
2742
2742
|
};
|
|
2743
|
+
/** Submitted feedback of the given user. */
|
|
2744
|
+
export const userGetSpotlightInfo = {
|
|
2745
|
+
path: "/v3-next/users/self/spotlights/{spotlightId}",
|
|
2746
|
+
method: "GET",
|
|
2747
|
+
operationId: "user-get-spotlight-info",
|
|
2748
|
+
};
|
|
2749
|
+
/** Submit your usage of the spotlight. */
|
|
2750
|
+
export const userSpotlightUsage = {
|
|
2751
|
+
path: "/v3-next/users/self/spotlights/{spotlightId}",
|
|
2752
|
+
method: "POST",
|
|
2753
|
+
operationId: "user-spotlight-usage",
|
|
2754
|
+
};
|
|
2743
2755
|
/** Get profile information for a user. */
|
|
2744
2756
|
export const userGetUser = {
|
|
2745
2757
|
path: "/v3-next/users/{userId}",
|
|
@@ -2830,6 +2842,12 @@ export const userResendVerificationEmail = {
|
|
|
2830
2842
|
method: "POST",
|
|
2831
2843
|
operationId: "user-resend-verification-email",
|
|
2832
2844
|
};
|
|
2845
|
+
/** Submit your spotlight usage. */
|
|
2846
|
+
export const userSpotlightFeedback = {
|
|
2847
|
+
path: "/v3-next/users/self/spotlights/{spotlightId}/feedback",
|
|
2848
|
+
method: "POST",
|
|
2849
|
+
operationId: "user-spotlight-feedback",
|
|
2850
|
+
};
|
|
2833
2851
|
/** Request a support code. */
|
|
2834
2852
|
export const userSupportCodeRequest = {
|
|
2835
2853
|
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.463.0';
|
|
@@ -1500,11 +1500,12 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1500
1500
|
searchTerm?: string | undefined;
|
|
1501
1501
|
anchor?: string | undefined;
|
|
1502
1502
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
1503
|
+
"contract.interactionRequired"?: boolean | undefined;
|
|
1503
1504
|
parentCustomerId?: string | undefined;
|
|
1504
1505
|
limit?: number | undefined;
|
|
1505
1506
|
skip?: number | undefined;
|
|
1506
1507
|
page?: number | undefined;
|
|
1507
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
1508
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[] | undefined;
|
|
1508
1509
|
order?: ("asc" | "desc")[] | undefined;
|
|
1509
1510
|
} | undefined;
|
|
1510
1511
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[]>;
|
|
@@ -3399,6 +3400,19 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3399
3400
|
location?: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupLocation | undefined;
|
|
3400
3401
|
tokenId: string;
|
|
3401
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
|
+
}>;
|
|
3402
3416
|
/** Get profile information for a user. */
|
|
3403
3417
|
getUser: (conf: {
|
|
3404
3418
|
userId: string;
|
|
@@ -10748,11 +10748,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10748
10748
|
searchTerm?: string | undefined;
|
|
10749
10749
|
anchor?: string | undefined;
|
|
10750
10750
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10751
|
+
"contract.interactionRequired"?: boolean | undefined;
|
|
10751
10752
|
parentCustomerId?: string | undefined;
|
|
10752
10753
|
limit?: number | undefined;
|
|
10753
10754
|
skip?: number | undefined;
|
|
10754
10755
|
page?: number | undefined;
|
|
10755
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
10756
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[] | undefined;
|
|
10756
10757
|
order?: ("asc" | "desc")[] | undefined;
|
|
10757
10758
|
} | undefined;
|
|
10758
10759
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -10767,11 +10768,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10767
10768
|
searchTerm?: string | undefined;
|
|
10768
10769
|
anchor?: string | undefined;
|
|
10769
10770
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10771
|
+
"contract.interactionRequired"?: boolean | undefined;
|
|
10770
10772
|
parentCustomerId?: string | undefined;
|
|
10771
10773
|
limit?: number | undefined;
|
|
10772
10774
|
skip?: number | undefined;
|
|
10773
10775
|
page?: number | undefined;
|
|
10774
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
10776
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[] | undefined;
|
|
10775
10777
|
order?: ("asc" | "desc")[] | undefined;
|
|
10776
10778
|
} & Partial<{
|
|
10777
10779
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -10798,11 +10800,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10798
10800
|
searchTerm?: string | undefined;
|
|
10799
10801
|
anchor?: string | undefined;
|
|
10800
10802
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10803
|
+
"contract.interactionRequired"?: boolean | undefined;
|
|
10801
10804
|
parentCustomerId?: string | undefined;
|
|
10802
10805
|
limit?: number | undefined;
|
|
10803
10806
|
skip?: number | undefined;
|
|
10804
10807
|
page?: number | undefined;
|
|
10805
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
10808
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[] | undefined;
|
|
10806
10809
|
order?: ("asc" | "desc")[] | undefined;
|
|
10807
10810
|
} & Partial<{
|
|
10808
10811
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -25174,6 +25177,113 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25174
25177
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25175
25178
|
[x: string]: unknown;
|
|
25176
25179
|
}, 429, "application/json">>>;
|
|
25180
|
+
/** Submitted feedback of the given user. */
|
|
25181
|
+
getSpotlightInfo: (request: {
|
|
25182
|
+
spotlightId: string;
|
|
25183
|
+
headers?: {
|
|
25184
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25185
|
+
"x-access-token"?: string | undefined;
|
|
25186
|
+
} | undefined;
|
|
25187
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25188
|
+
headers?: Partial<{
|
|
25189
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25190
|
+
}>;
|
|
25191
|
+
} & {
|
|
25192
|
+
pathParameters: {
|
|
25193
|
+
spotlightId: string;
|
|
25194
|
+
};
|
|
25195
|
+
} & {
|
|
25196
|
+
headers: {
|
|
25197
|
+
"x-access-token"?: string | undefined;
|
|
25198
|
+
} & Partial<{
|
|
25199
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25200
|
+
}>;
|
|
25201
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25202
|
+
acknowledged: boolean;
|
|
25203
|
+
decision?: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision | undefined;
|
|
25204
|
+
spotlightId: string;
|
|
25205
|
+
used: boolean;
|
|
25206
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25207
|
+
[x: string]: unknown;
|
|
25208
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25209
|
+
headers?: Partial<{
|
|
25210
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25211
|
+
}>;
|
|
25212
|
+
} & {
|
|
25213
|
+
pathParameters: {
|
|
25214
|
+
spotlightId: string;
|
|
25215
|
+
};
|
|
25216
|
+
} & {
|
|
25217
|
+
headers: {
|
|
25218
|
+
"x-access-token"?: string | undefined;
|
|
25219
|
+
} & Partial<{
|
|
25220
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25221
|
+
}>;
|
|
25222
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25223
|
+
acknowledged: boolean;
|
|
25224
|
+
decision?: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision | undefined;
|
|
25225
|
+
spotlightId: string;
|
|
25226
|
+
used: boolean;
|
|
25227
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25228
|
+
[x: string]: unknown;
|
|
25229
|
+
}, 429, "application/json">>>;
|
|
25230
|
+
/** Submit your usage of the spotlight. */
|
|
25231
|
+
spotlightUsage: (request: {
|
|
25232
|
+
spotlightId: string;
|
|
25233
|
+
data?: {
|
|
25234
|
+
acknowledged?: boolean | undefined;
|
|
25235
|
+
owner?: string | undefined;
|
|
25236
|
+
used?: boolean | undefined;
|
|
25237
|
+
} | undefined;
|
|
25238
|
+
headers?: {
|
|
25239
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25240
|
+
"x-access-token"?: string | undefined;
|
|
25241
|
+
} | undefined;
|
|
25242
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25243
|
+
data: {
|
|
25244
|
+
acknowledged?: boolean | undefined;
|
|
25245
|
+
owner?: string | undefined;
|
|
25246
|
+
used?: boolean | undefined;
|
|
25247
|
+
};
|
|
25248
|
+
} & {
|
|
25249
|
+
pathParameters: {
|
|
25250
|
+
spotlightId: string;
|
|
25251
|
+
};
|
|
25252
|
+
} & {
|
|
25253
|
+
headers?: Partial<{
|
|
25254
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25255
|
+
}>;
|
|
25256
|
+
} & {
|
|
25257
|
+
headers: {
|
|
25258
|
+
"x-access-token"?: string | undefined;
|
|
25259
|
+
} & Partial<{
|
|
25260
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25261
|
+
}>;
|
|
25262
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
25263
|
+
[x: string]: unknown;
|
|
25264
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25265
|
+
data: {
|
|
25266
|
+
acknowledged?: boolean | undefined;
|
|
25267
|
+
owner?: string | undefined;
|
|
25268
|
+
used?: boolean | undefined;
|
|
25269
|
+
};
|
|
25270
|
+
} & {
|
|
25271
|
+
pathParameters: {
|
|
25272
|
+
spotlightId: string;
|
|
25273
|
+
};
|
|
25274
|
+
} & {
|
|
25275
|
+
headers?: Partial<{
|
|
25276
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25277
|
+
}>;
|
|
25278
|
+
} & {
|
|
25279
|
+
headers: {
|
|
25280
|
+
"x-access-token"?: string | undefined;
|
|
25281
|
+
} & Partial<{
|
|
25282
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25283
|
+
}>;
|
|
25284
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
25285
|
+
[x: string]: unknown;
|
|
25286
|
+
}, 429, "application/json">>>;
|
|
25177
25287
|
/** Get profile information for a user. */
|
|
25178
25288
|
getUser: (request: {
|
|
25179
25289
|
userId: string;
|
|
@@ -25987,6 +26097,63 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25987
26097
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25988
26098
|
[x: string]: unknown;
|
|
25989
26099
|
}, 429, "application/json">>>;
|
|
26100
|
+
/** Submit your spotlight usage. */
|
|
26101
|
+
spotlightFeedback: (request: {
|
|
26102
|
+
data: {
|
|
26103
|
+
decision: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
26104
|
+
owner: string;
|
|
26105
|
+
message?: string | undefined;
|
|
26106
|
+
};
|
|
26107
|
+
spotlightId: string;
|
|
26108
|
+
headers?: {
|
|
26109
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26110
|
+
"x-access-token"?: string | undefined;
|
|
26111
|
+
} | undefined;
|
|
26112
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26113
|
+
data: {
|
|
26114
|
+
decision: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
26115
|
+
message?: string | undefined;
|
|
26116
|
+
owner: string;
|
|
26117
|
+
};
|
|
26118
|
+
} & {
|
|
26119
|
+
pathParameters: {
|
|
26120
|
+
spotlightId: string;
|
|
26121
|
+
};
|
|
26122
|
+
} & {
|
|
26123
|
+
headers?: Partial<{
|
|
26124
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26125
|
+
}>;
|
|
26126
|
+
} & {
|
|
26127
|
+
headers: {
|
|
26128
|
+
"x-access-token"?: string | undefined;
|
|
26129
|
+
} & Partial<{
|
|
26130
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26131
|
+
}>;
|
|
26132
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26133
|
+
[x: string]: unknown;
|
|
26134
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26135
|
+
data: {
|
|
26136
|
+
decision: import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
26137
|
+
message?: string | undefined;
|
|
26138
|
+
owner: string;
|
|
26139
|
+
};
|
|
26140
|
+
} & {
|
|
26141
|
+
pathParameters: {
|
|
26142
|
+
spotlightId: string;
|
|
26143
|
+
};
|
|
26144
|
+
} & {
|
|
26145
|
+
headers?: Partial<{
|
|
26146
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26147
|
+
}>;
|
|
26148
|
+
} & {
|
|
26149
|
+
headers: {
|
|
26150
|
+
"x-access-token"?: string | undefined;
|
|
26151
|
+
} & Partial<{
|
|
26152
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26153
|
+
}>;
|
|
26154
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26155
|
+
[x: string]: unknown;
|
|
26156
|
+
}, 429, "application/json">>>;
|
|
25990
26157
|
/** Request a support code. */
|
|
25991
26158
|
supportCodeRequest: (request?: {
|
|
25992
26159
|
headers?: {
|
|
@@ -917,6 +917,10 @@ export declare const userPostPollStatus: OpenAPIOperation<RequestType<Simplify<M
|
|
|
917
917
|
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
918
|
/** Terminate a specific Session. */
|
|
919
919
|
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">>;
|
|
920
|
+
/** Submitted feedback of the given user. */
|
|
921
|
+
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">>;
|
|
922
|
+
/** Submit your usage of the spotlight. */
|
|
923
|
+
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
924
|
/** Get profile information for a user. */
|
|
921
925
|
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
926
|
/** Change personal information. */
|
|
@@ -947,6 +951,8 @@ export declare const userRequestAvatarUpload: OpenAPIOperation<RequestType<Simpl
|
|
|
947
951
|
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
952
|
/** Resend the Email-Address verification email. */
|
|
949
953
|
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">>;
|
|
954
|
+
/** Submit your spotlight usage. */
|
|
955
|
+
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
956
|
/** Request a support code. */
|
|
951
957
|
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
958
|
/** Verify an added Email-Address. */
|
|
@@ -1830,6 +1830,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1830
1830
|
type RequestData = InferredRequestData<typeof descriptors.userTerminateSession>;
|
|
1831
1831
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userTerminateSession, TStatus>;
|
|
1832
1832
|
}
|
|
1833
|
+
namespace UserGetSpotlightInfo {
|
|
1834
|
+
type RequestData = InferredRequestData<typeof descriptors.userGetSpotlightInfo>;
|
|
1835
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetSpotlightInfo, TStatus>;
|
|
1836
|
+
}
|
|
1837
|
+
namespace UserSpotlightUsage {
|
|
1838
|
+
type RequestData = InferredRequestData<typeof descriptors.userSpotlightUsage>;
|
|
1839
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSpotlightUsage, TStatus>;
|
|
1840
|
+
}
|
|
1833
1841
|
namespace UserGetUser {
|
|
1834
1842
|
type RequestData = InferredRequestData<typeof descriptors.userGetUser>;
|
|
1835
1843
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetUser, TStatus>;
|
|
@@ -1890,6 +1898,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1890
1898
|
type RequestData = InferredRequestData<typeof descriptors.userResendVerificationEmail>;
|
|
1891
1899
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userResendVerificationEmail, TStatus>;
|
|
1892
1900
|
}
|
|
1901
|
+
namespace UserSpotlightFeedback {
|
|
1902
|
+
type RequestData = InferredRequestData<typeof descriptors.userSpotlightFeedback>;
|
|
1903
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSpotlightFeedback, TStatus>;
|
|
1904
|
+
}
|
|
1893
1905
|
namespace UserSupportCodeRequest {
|
|
1894
1906
|
type RequestData = InferredRequestData<typeof descriptors.userSupportCodeRequest>;
|
|
1895
1907
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSupportCodeRequest, TStatus>;
|
|
@@ -7300,6 +7312,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7300
7312
|
}
|
|
7301
7313
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
7302
7314
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
7315
|
+
type UserUserFeedbackSpotlightDecision = "keep" | "kill" | "ignore";
|
|
7303
7316
|
interface CommonsAddress {
|
|
7304
7317
|
street: string;
|
|
7305
7318
|
houseNumber: string;
|
|
@@ -20595,11 +20608,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20595
20608
|
searchTerm?: string;
|
|
20596
20609
|
anchor?: string;
|
|
20597
20610
|
hasAcceptedAllScopes?: boolean;
|
|
20611
|
+
"contract.interactionRequired"?: boolean;
|
|
20598
20612
|
parentCustomerId?: string;
|
|
20599
20613
|
limit?: number;
|
|
20600
20614
|
skip?: number;
|
|
20601
20615
|
page?: number;
|
|
20602
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[];
|
|
20616
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[];
|
|
20603
20617
|
order?: ("asc" | "desc")[];
|
|
20604
20618
|
};
|
|
20605
20619
|
}
|
|
@@ -31260,6 +31274,81 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31260
31274
|
}
|
|
31261
31275
|
}
|
|
31262
31276
|
}
|
|
31277
|
+
namespace V2UsersSelfSpotlightsSpotlightId {
|
|
31278
|
+
namespace Get {
|
|
31279
|
+
namespace Parameters {
|
|
31280
|
+
type Path = {
|
|
31281
|
+
spotlightId: string;
|
|
31282
|
+
};
|
|
31283
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31284
|
+
type Query = {};
|
|
31285
|
+
}
|
|
31286
|
+
namespace Responses {
|
|
31287
|
+
namespace $200 {
|
|
31288
|
+
namespace Content {
|
|
31289
|
+
interface ApplicationJson {
|
|
31290
|
+
acknowledged: boolean;
|
|
31291
|
+
decision?: MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
31292
|
+
spotlightId: string;
|
|
31293
|
+
used: boolean;
|
|
31294
|
+
}
|
|
31295
|
+
}
|
|
31296
|
+
}
|
|
31297
|
+
namespace $429 {
|
|
31298
|
+
namespace Content {
|
|
31299
|
+
interface ApplicationJson {
|
|
31300
|
+
[k: string]: unknown;
|
|
31301
|
+
}
|
|
31302
|
+
}
|
|
31303
|
+
}
|
|
31304
|
+
namespace Default {
|
|
31305
|
+
namespace Content {
|
|
31306
|
+
interface ApplicationJson {
|
|
31307
|
+
[k: string]: unknown;
|
|
31308
|
+
}
|
|
31309
|
+
}
|
|
31310
|
+
}
|
|
31311
|
+
}
|
|
31312
|
+
}
|
|
31313
|
+
namespace Post {
|
|
31314
|
+
namespace Parameters {
|
|
31315
|
+
type Path = {
|
|
31316
|
+
spotlightId: string;
|
|
31317
|
+
};
|
|
31318
|
+
interface RequestBody {
|
|
31319
|
+
acknowledged?: boolean;
|
|
31320
|
+
/**
|
|
31321
|
+
* The Owner of the Feature the spotlight is highlighting.
|
|
31322
|
+
*/
|
|
31323
|
+
owner?: string;
|
|
31324
|
+
used?: boolean;
|
|
31325
|
+
}
|
|
31326
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31327
|
+
type Query = {};
|
|
31328
|
+
}
|
|
31329
|
+
namespace Responses {
|
|
31330
|
+
namespace $204 {
|
|
31331
|
+
namespace Content {
|
|
31332
|
+
type Empty = unknown;
|
|
31333
|
+
}
|
|
31334
|
+
}
|
|
31335
|
+
namespace $429 {
|
|
31336
|
+
namespace Content {
|
|
31337
|
+
interface ApplicationJson {
|
|
31338
|
+
[k: string]: unknown;
|
|
31339
|
+
}
|
|
31340
|
+
}
|
|
31341
|
+
}
|
|
31342
|
+
namespace Default {
|
|
31343
|
+
namespace Content {
|
|
31344
|
+
interface ApplicationJson {
|
|
31345
|
+
[k: string]: unknown;
|
|
31346
|
+
}
|
|
31347
|
+
}
|
|
31348
|
+
}
|
|
31349
|
+
}
|
|
31350
|
+
}
|
|
31351
|
+
}
|
|
31263
31352
|
namespace V2UsersUserId {
|
|
31264
31353
|
namespace Get {
|
|
31265
31354
|
namespace Parameters {
|
|
@@ -31953,6 +32042,49 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31953
32042
|
}
|
|
31954
32043
|
}
|
|
31955
32044
|
namespace V2SignupMfaResetRecoverycodes { }
|
|
32045
|
+
namespace V2UsersSelfSpotlightsSpotlightIdFeedback {
|
|
32046
|
+
namespace Post {
|
|
32047
|
+
namespace Parameters {
|
|
32048
|
+
type Path = {
|
|
32049
|
+
spotlightId: string;
|
|
32050
|
+
};
|
|
32051
|
+
interface RequestBody {
|
|
32052
|
+
decision: MittwaldAPIV2.Components.Schemas.UserUserFeedbackSpotlightDecision;
|
|
32053
|
+
/**
|
|
32054
|
+
* Personal feedback message.
|
|
32055
|
+
*/
|
|
32056
|
+
message?: string;
|
|
32057
|
+
/**
|
|
32058
|
+
* The Owner of the Feature the spotlight is highlighting.
|
|
32059
|
+
*/
|
|
32060
|
+
owner: string;
|
|
32061
|
+
}
|
|
32062
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
32063
|
+
type Query = {};
|
|
32064
|
+
}
|
|
32065
|
+
namespace Responses {
|
|
32066
|
+
namespace $204 {
|
|
32067
|
+
namespace Content {
|
|
32068
|
+
type Empty = unknown;
|
|
32069
|
+
}
|
|
32070
|
+
}
|
|
32071
|
+
namespace $429 {
|
|
32072
|
+
namespace Content {
|
|
32073
|
+
interface ApplicationJson {
|
|
32074
|
+
[k: string]: unknown;
|
|
32075
|
+
}
|
|
32076
|
+
}
|
|
32077
|
+
}
|
|
32078
|
+
namespace Default {
|
|
32079
|
+
namespace Content {
|
|
32080
|
+
interface ApplicationJson {
|
|
32081
|
+
[k: string]: unknown;
|
|
32082
|
+
}
|
|
32083
|
+
}
|
|
32084
|
+
}
|
|
32085
|
+
}
|
|
32086
|
+
}
|
|
32087
|
+
}
|
|
31956
32088
|
namespace V2SignupSupportcode { }
|
|
31957
32089
|
namespace V2SignupSupportcodes { }
|
|
31958
32090
|
namespace V2UsersSelfCredentialsSupportCode {
|
|
@@ -1500,11 +1500,12 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1500
1500
|
searchTerm?: string | undefined;
|
|
1501
1501
|
anchor?: string | undefined;
|
|
1502
1502
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
1503
|
+
"contract.interactionRequired"?: boolean | undefined;
|
|
1503
1504
|
parentCustomerId?: string | undefined;
|
|
1504
1505
|
limit?: number | undefined;
|
|
1505
1506
|
skip?: number | undefined;
|
|
1506
1507
|
page?: number | undefined;
|
|
1507
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
1508
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[] | undefined;
|
|
1508
1509
|
order?: ("asc" | "desc")[] | undefined;
|
|
1509
1510
|
} | undefined;
|
|
1510
1511
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceExtensionInstance[]>;
|
|
@@ -3399,6 +3400,19 @@ declare const buildUserApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
3399
3400
|
location?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldSignupLocation | undefined;
|
|
3400
3401
|
tokenId: string;
|
|
3401
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
|
+
}>;
|
|
3402
3416
|
/** Get profile information for a user. */
|
|
3403
3417
|
getUser: (conf: {
|
|
3404
3418
|
userId: string;
|
|
@@ -10748,11 +10748,12 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
10748
10748
|
searchTerm?: string | undefined;
|
|
10749
10749
|
anchor?: string | undefined;
|
|
10750
10750
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10751
|
+
"contract.interactionRequired"?: boolean | undefined;
|
|
10751
10752
|
parentCustomerId?: string | undefined;
|
|
10752
10753
|
limit?: number | undefined;
|
|
10753
10754
|
skip?: number | undefined;
|
|
10754
10755
|
page?: number | undefined;
|
|
10755
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
10756
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[] | undefined;
|
|
10756
10757
|
order?: ("asc" | "desc")[] | undefined;
|
|
10757
10758
|
} | undefined;
|
|
10758
10759
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -10767,11 +10768,12 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
10767
10768
|
searchTerm?: string | undefined;
|
|
10768
10769
|
anchor?: string | undefined;
|
|
10769
10770
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10771
|
+
"contract.interactionRequired"?: boolean | undefined;
|
|
10770
10772
|
parentCustomerId?: string | undefined;
|
|
10771
10773
|
limit?: number | undefined;
|
|
10772
10774
|
skip?: number | undefined;
|
|
10773
10775
|
page?: number | undefined;
|
|
10774
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
10776
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[] | undefined;
|
|
10775
10777
|
order?: ("asc" | "desc")[] | undefined;
|
|
10776
10778
|
} & Partial<{
|
|
10777
10779
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -10798,11 +10800,12 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
10798
10800
|
searchTerm?: string | undefined;
|
|
10799
10801
|
anchor?: string | undefined;
|
|
10800
10802
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10803
|
+
"contract.interactionRequired"?: boolean | undefined;
|
|
10801
10804
|
parentCustomerId?: string | undefined;
|
|
10802
10805
|
limit?: number | undefined;
|
|
10803
10806
|
skip?: number | undefined;
|
|
10804
10807
|
page?: number | undefined;
|
|
10805
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
10808
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[] | undefined;
|
|
10806
10809
|
order?: ("asc" | "desc")[] | undefined;
|
|
10807
10810
|
} & Partial<{
|
|
10808
10811
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -25174,6 +25177,113 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
25174
25177
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25175
25178
|
[x: string]: unknown;
|
|
25176
25179
|
}, 429, "application/json">>>;
|
|
25180
|
+
/** Submitted feedback of the given user. */
|
|
25181
|
+
getSpotlightInfo: (request: {
|
|
25182
|
+
spotlightId: string;
|
|
25183
|
+
headers?: {
|
|
25184
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25185
|
+
"x-access-token"?: string | undefined;
|
|
25186
|
+
} | undefined;
|
|
25187
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25188
|
+
headers?: Partial<{
|
|
25189
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25190
|
+
}>;
|
|
25191
|
+
} & {
|
|
25192
|
+
pathParameters: {
|
|
25193
|
+
spotlightId: string;
|
|
25194
|
+
};
|
|
25195
|
+
} & {
|
|
25196
|
+
headers: {
|
|
25197
|
+
"x-access-token"?: string | undefined;
|
|
25198
|
+
} & Partial<{
|
|
25199
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25200
|
+
}>;
|
|
25201
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25202
|
+
acknowledged: boolean;
|
|
25203
|
+
decision?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision | undefined;
|
|
25204
|
+
spotlightId: string;
|
|
25205
|
+
used: boolean;
|
|
25206
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25207
|
+
[x: string]: unknown;
|
|
25208
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25209
|
+
headers?: Partial<{
|
|
25210
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25211
|
+
}>;
|
|
25212
|
+
} & {
|
|
25213
|
+
pathParameters: {
|
|
25214
|
+
spotlightId: string;
|
|
25215
|
+
};
|
|
25216
|
+
} & {
|
|
25217
|
+
headers: {
|
|
25218
|
+
"x-access-token"?: string | undefined;
|
|
25219
|
+
} & Partial<{
|
|
25220
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25221
|
+
}>;
|
|
25222
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25223
|
+
acknowledged: boolean;
|
|
25224
|
+
decision?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision | undefined;
|
|
25225
|
+
spotlightId: string;
|
|
25226
|
+
used: boolean;
|
|
25227
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25228
|
+
[x: string]: unknown;
|
|
25229
|
+
}, 429, "application/json">>>;
|
|
25230
|
+
/** Submit your usage of the spotlight. */
|
|
25231
|
+
spotlightUsage: (request: {
|
|
25232
|
+
spotlightId: string;
|
|
25233
|
+
data?: {
|
|
25234
|
+
acknowledged?: boolean | undefined;
|
|
25235
|
+
owner?: string | undefined;
|
|
25236
|
+
used?: boolean | undefined;
|
|
25237
|
+
} | undefined;
|
|
25238
|
+
headers?: {
|
|
25239
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25240
|
+
"x-access-token"?: string | undefined;
|
|
25241
|
+
} | undefined;
|
|
25242
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25243
|
+
data: {
|
|
25244
|
+
acknowledged?: boolean | undefined;
|
|
25245
|
+
owner?: string | undefined;
|
|
25246
|
+
used?: boolean | undefined;
|
|
25247
|
+
};
|
|
25248
|
+
} & {
|
|
25249
|
+
pathParameters: {
|
|
25250
|
+
spotlightId: string;
|
|
25251
|
+
};
|
|
25252
|
+
} & {
|
|
25253
|
+
headers?: Partial<{
|
|
25254
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25255
|
+
}>;
|
|
25256
|
+
} & {
|
|
25257
|
+
headers: {
|
|
25258
|
+
"x-access-token"?: string | undefined;
|
|
25259
|
+
} & Partial<{
|
|
25260
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25261
|
+
}>;
|
|
25262
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
25263
|
+
[x: string]: unknown;
|
|
25264
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25265
|
+
data: {
|
|
25266
|
+
acknowledged?: boolean | undefined;
|
|
25267
|
+
owner?: string | undefined;
|
|
25268
|
+
used?: boolean | undefined;
|
|
25269
|
+
};
|
|
25270
|
+
} & {
|
|
25271
|
+
pathParameters: {
|
|
25272
|
+
spotlightId: string;
|
|
25273
|
+
};
|
|
25274
|
+
} & {
|
|
25275
|
+
headers?: Partial<{
|
|
25276
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25277
|
+
}>;
|
|
25278
|
+
} & {
|
|
25279
|
+
headers: {
|
|
25280
|
+
"x-access-token"?: string | undefined;
|
|
25281
|
+
} & Partial<{
|
|
25282
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25283
|
+
}>;
|
|
25284
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
25285
|
+
[x: string]: unknown;
|
|
25286
|
+
}, 429, "application/json">>>;
|
|
25177
25287
|
/** Get profile information for a user. */
|
|
25178
25288
|
getUser: (request: {
|
|
25179
25289
|
userId: string;
|
|
@@ -25987,6 +26097,63 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
25987
26097
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25988
26098
|
[x: string]: unknown;
|
|
25989
26099
|
}, 429, "application/json">>>;
|
|
26100
|
+
/** Submit your spotlight usage. */
|
|
26101
|
+
spotlightFeedback: (request: {
|
|
26102
|
+
data: {
|
|
26103
|
+
decision: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
26104
|
+
owner: string;
|
|
26105
|
+
message?: string | undefined;
|
|
26106
|
+
};
|
|
26107
|
+
spotlightId: string;
|
|
26108
|
+
headers?: {
|
|
26109
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26110
|
+
"x-access-token"?: string | undefined;
|
|
26111
|
+
} | undefined;
|
|
26112
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26113
|
+
data: {
|
|
26114
|
+
decision: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
26115
|
+
message?: string | undefined;
|
|
26116
|
+
owner: string;
|
|
26117
|
+
};
|
|
26118
|
+
} & {
|
|
26119
|
+
pathParameters: {
|
|
26120
|
+
spotlightId: string;
|
|
26121
|
+
};
|
|
26122
|
+
} & {
|
|
26123
|
+
headers?: Partial<{
|
|
26124
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26125
|
+
}>;
|
|
26126
|
+
} & {
|
|
26127
|
+
headers: {
|
|
26128
|
+
"x-access-token"?: string | undefined;
|
|
26129
|
+
} & Partial<{
|
|
26130
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26131
|
+
}>;
|
|
26132
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26133
|
+
[x: string]: unknown;
|
|
26134
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26135
|
+
data: {
|
|
26136
|
+
decision: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
26137
|
+
message?: string | undefined;
|
|
26138
|
+
owner: string;
|
|
26139
|
+
};
|
|
26140
|
+
} & {
|
|
26141
|
+
pathParameters: {
|
|
26142
|
+
spotlightId: string;
|
|
26143
|
+
};
|
|
26144
|
+
} & {
|
|
26145
|
+
headers?: Partial<{
|
|
26146
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26147
|
+
}>;
|
|
26148
|
+
} & {
|
|
26149
|
+
headers: {
|
|
26150
|
+
"x-access-token"?: string | undefined;
|
|
26151
|
+
} & Partial<{
|
|
26152
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26153
|
+
}>;
|
|
26154
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26155
|
+
[x: string]: unknown;
|
|
26156
|
+
}, 429, "application/json">>>;
|
|
25990
26157
|
/** Request a support code. */
|
|
25991
26158
|
supportCodeRequest: (request?: {
|
|
25992
26159
|
headers?: {
|
|
@@ -917,6 +917,10 @@ export declare const userPostPollStatus: OpenAPIOperation<RequestType<Simplify<M
|
|
|
917
917
|
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
918
|
/** Terminate a specific Session. */
|
|
919
919
|
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">>;
|
|
920
|
+
/** Submitted feedback of the given user. */
|
|
921
|
+
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">>;
|
|
922
|
+
/** Submit your usage of the spotlight. */
|
|
923
|
+
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
924
|
/** Get profile information for a user. */
|
|
921
925
|
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
926
|
/** Change personal information. */
|
|
@@ -947,6 +951,8 @@ export declare const userRequestAvatarUpload: OpenAPIOperation<RequestType<Simpl
|
|
|
947
951
|
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
952
|
/** Resend the Email-Address verification email. */
|
|
949
953
|
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">>;
|
|
954
|
+
/** Submit your spotlight usage. */
|
|
955
|
+
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
956
|
/** Request a support code. */
|
|
951
957
|
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
958
|
/** Verify an added Email-Address. */
|
|
@@ -1830,6 +1830,14 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1830
1830
|
type RequestData = InferredRequestData<typeof descriptors.userTerminateSession>;
|
|
1831
1831
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userTerminateSession, TStatus>;
|
|
1832
1832
|
}
|
|
1833
|
+
namespace UserGetSpotlightInfo {
|
|
1834
|
+
type RequestData = InferredRequestData<typeof descriptors.userGetSpotlightInfo>;
|
|
1835
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetSpotlightInfo, TStatus>;
|
|
1836
|
+
}
|
|
1837
|
+
namespace UserSpotlightUsage {
|
|
1838
|
+
type RequestData = InferredRequestData<typeof descriptors.userSpotlightUsage>;
|
|
1839
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSpotlightUsage, TStatus>;
|
|
1840
|
+
}
|
|
1833
1841
|
namespace UserGetUser {
|
|
1834
1842
|
type RequestData = InferredRequestData<typeof descriptors.userGetUser>;
|
|
1835
1843
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetUser, TStatus>;
|
|
@@ -1890,6 +1898,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1890
1898
|
type RequestData = InferredRequestData<typeof descriptors.userResendVerificationEmail>;
|
|
1891
1899
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userResendVerificationEmail, TStatus>;
|
|
1892
1900
|
}
|
|
1901
|
+
namespace UserSpotlightFeedback {
|
|
1902
|
+
type RequestData = InferredRequestData<typeof descriptors.userSpotlightFeedback>;
|
|
1903
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSpotlightFeedback, TStatus>;
|
|
1904
|
+
}
|
|
1893
1905
|
namespace UserSupportCodeRequest {
|
|
1894
1906
|
type RequestData = InferredRequestData<typeof descriptors.userSupportCodeRequest>;
|
|
1895
1907
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userSupportCodeRequest, TStatus>;
|
|
@@ -7304,6 +7316,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7304
7316
|
}
|
|
7305
7317
|
type DeMittwaldVerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
7306
7318
|
type DeMittwaldContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
7319
|
+
type DeMittwaldUserUserFeedbackSpotlightDecision = "keep" | "kill" | "ignore";
|
|
7307
7320
|
interface DeMittwaldCommonsAddress {
|
|
7308
7321
|
street: string;
|
|
7309
7322
|
houseNumber: string;
|
|
@@ -20569,11 +20582,12 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
20569
20582
|
searchTerm?: string;
|
|
20570
20583
|
anchor?: string;
|
|
20571
20584
|
hasAcceptedAllScopes?: boolean;
|
|
20585
|
+
"contract.interactionRequired"?: boolean;
|
|
20572
20586
|
parentCustomerId?: string;
|
|
20573
20587
|
limit?: number;
|
|
20574
20588
|
skip?: number;
|
|
20575
20589
|
page?: number;
|
|
20576
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[];
|
|
20590
|
+
sort?: ("createdAt" | "extensionId" | "extensionName" | "unacceptedScopeChanges" | "contract.interactionRequired")[];
|
|
20577
20591
|
order?: ("asc" | "desc")[];
|
|
20578
20592
|
};
|
|
20579
20593
|
}
|
|
@@ -31190,6 +31204,81 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31190
31204
|
}
|
|
31191
31205
|
}
|
|
31192
31206
|
}
|
|
31207
|
+
namespace V3NextUsersSelfSpotlightsSpotlightId {
|
|
31208
|
+
namespace Get {
|
|
31209
|
+
namespace Parameters {
|
|
31210
|
+
type Path = {
|
|
31211
|
+
spotlightId: string;
|
|
31212
|
+
};
|
|
31213
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31214
|
+
type Query = {};
|
|
31215
|
+
}
|
|
31216
|
+
namespace Responses {
|
|
31217
|
+
namespace $200 {
|
|
31218
|
+
namespace Content {
|
|
31219
|
+
interface ApplicationJson {
|
|
31220
|
+
acknowledged: boolean;
|
|
31221
|
+
decision?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
31222
|
+
spotlightId: string;
|
|
31223
|
+
used: boolean;
|
|
31224
|
+
}
|
|
31225
|
+
}
|
|
31226
|
+
}
|
|
31227
|
+
namespace $429 {
|
|
31228
|
+
namespace Content {
|
|
31229
|
+
interface ApplicationJson {
|
|
31230
|
+
[k: string]: unknown;
|
|
31231
|
+
}
|
|
31232
|
+
}
|
|
31233
|
+
}
|
|
31234
|
+
namespace Default {
|
|
31235
|
+
namespace Content {
|
|
31236
|
+
interface ApplicationJson {
|
|
31237
|
+
[k: string]: unknown;
|
|
31238
|
+
}
|
|
31239
|
+
}
|
|
31240
|
+
}
|
|
31241
|
+
}
|
|
31242
|
+
}
|
|
31243
|
+
namespace Post {
|
|
31244
|
+
namespace Parameters {
|
|
31245
|
+
type Path = {
|
|
31246
|
+
spotlightId: string;
|
|
31247
|
+
};
|
|
31248
|
+
interface RequestBody {
|
|
31249
|
+
acknowledged?: boolean;
|
|
31250
|
+
/**
|
|
31251
|
+
* The Owner of the Feature the spotlight is highlighting.
|
|
31252
|
+
*/
|
|
31253
|
+
owner?: string;
|
|
31254
|
+
used?: boolean;
|
|
31255
|
+
}
|
|
31256
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31257
|
+
type Query = {};
|
|
31258
|
+
}
|
|
31259
|
+
namespace Responses {
|
|
31260
|
+
namespace $204 {
|
|
31261
|
+
namespace Content {
|
|
31262
|
+
type Empty = unknown;
|
|
31263
|
+
}
|
|
31264
|
+
}
|
|
31265
|
+
namespace $429 {
|
|
31266
|
+
namespace Content {
|
|
31267
|
+
interface ApplicationJson {
|
|
31268
|
+
[k: string]: unknown;
|
|
31269
|
+
}
|
|
31270
|
+
}
|
|
31271
|
+
}
|
|
31272
|
+
namespace Default {
|
|
31273
|
+
namespace Content {
|
|
31274
|
+
interface ApplicationJson {
|
|
31275
|
+
[k: string]: unknown;
|
|
31276
|
+
}
|
|
31277
|
+
}
|
|
31278
|
+
}
|
|
31279
|
+
}
|
|
31280
|
+
}
|
|
31281
|
+
}
|
|
31193
31282
|
namespace V3NextUsersUserId {
|
|
31194
31283
|
namespace Get {
|
|
31195
31284
|
namespace Parameters {
|
|
@@ -31881,6 +31970,49 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31881
31970
|
}
|
|
31882
31971
|
}
|
|
31883
31972
|
}
|
|
31973
|
+
namespace V3NextUsersSelfSpotlightsSpotlightIdFeedback {
|
|
31974
|
+
namespace Post {
|
|
31975
|
+
namespace Parameters {
|
|
31976
|
+
type Path = {
|
|
31977
|
+
spotlightId: string;
|
|
31978
|
+
};
|
|
31979
|
+
interface RequestBody {
|
|
31980
|
+
decision: MittwaldAPIV3Next.Components.Schemas.DeMittwaldUserUserFeedbackSpotlightDecision;
|
|
31981
|
+
/**
|
|
31982
|
+
* Personal feedback message.
|
|
31983
|
+
*/
|
|
31984
|
+
message?: string;
|
|
31985
|
+
/**
|
|
31986
|
+
* The Owner of the Feature the spotlight is highlighting.
|
|
31987
|
+
*/
|
|
31988
|
+
owner: string;
|
|
31989
|
+
}
|
|
31990
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31991
|
+
type Query = {};
|
|
31992
|
+
}
|
|
31993
|
+
namespace Responses {
|
|
31994
|
+
namespace $204 {
|
|
31995
|
+
namespace Content {
|
|
31996
|
+
type Empty = unknown;
|
|
31997
|
+
}
|
|
31998
|
+
}
|
|
31999
|
+
namespace $429 {
|
|
32000
|
+
namespace Content {
|
|
32001
|
+
interface ApplicationJson {
|
|
32002
|
+
[k: string]: unknown;
|
|
32003
|
+
}
|
|
32004
|
+
}
|
|
32005
|
+
}
|
|
32006
|
+
namespace Default {
|
|
32007
|
+
namespace Content {
|
|
32008
|
+
interface ApplicationJson {
|
|
32009
|
+
[k: string]: unknown;
|
|
32010
|
+
}
|
|
32011
|
+
}
|
|
32012
|
+
}
|
|
32013
|
+
}
|
|
32014
|
+
}
|
|
32015
|
+
}
|
|
31884
32016
|
namespace V3NextUsersSelfCredentialsSupportCode {
|
|
31885
32017
|
namespace Get {
|
|
31886
32018
|
namespace Parameters {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.463.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.464.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.464.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.464.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": "9221df63a37e64ae5caa74a01a205275edaf2469"
|
|
110
110
|
}
|