@mittwald/api-client 4.125.0 → 4.127.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.js +7 -3
- package/dist/esm/generated/v2/descriptors.js +19 -7
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +5 -0
- package/dist/types/generated/v2/client.d.ts +175 -48
- package/dist/types/generated/v2/descriptors.d.ts +8 -4
- package/dist/types/generated/v2/types.d.ts +138 -44
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -152,8 +152,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
152
152
|
contributorRotateSecretForExtensionInstance: this.requestFunctionFactory(descriptors.contributorRotateSecretForExtensionInstance),
|
|
153
153
|
/** Authenticate your external application using the extensionInstanceSecret. */
|
|
154
154
|
extensionAuthenticateInstance: this.requestFunctionFactory(descriptors.extensionAuthenticateInstance),
|
|
155
|
-
/** Authenticate your external application using
|
|
155
|
+
/** Authenticate your external application using a session token and an extension secret */
|
|
156
156
|
extensionAuthenticateWithSessionToken: this.requestFunctionFactory(descriptors.extensionAuthenticateWithSessionToken),
|
|
157
|
+
/** Change the context of an Extension. */
|
|
158
|
+
extensionChangeContext: this.requestFunctionFactory(descriptors.extensionChangeContext),
|
|
157
159
|
/** Consent to extension scopes. */
|
|
158
160
|
extensionConsentToExtensionScopes: this.requestFunctionFactory(descriptors.extensionConsentToExtensionScopes),
|
|
159
161
|
/** List ExtensionInstances. */
|
|
@@ -200,12 +202,14 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
200
202
|
extensionRegisterExtension: this.requestFunctionFactory(descriptors.extensionRegisterExtension),
|
|
201
203
|
/** Remove an asset of an extension. */
|
|
202
204
|
extensionRemoveAsset: this.requestFunctionFactory(descriptors.extensionRemoveAsset),
|
|
205
|
+
/** Add a logo to an extension. */
|
|
206
|
+
extensionRequestLogoUpload: this.requestFunctionFactory(descriptors.extensionRequestLogoUpload),
|
|
207
|
+
/** Remove the logo of an extension. */
|
|
208
|
+
extensionRemoveLogo: this.requestFunctionFactory(descriptors.extensionRemoveLogo),
|
|
203
209
|
/** Add an asset to an extension. */
|
|
204
210
|
extensionRequestAssetUpload: this.requestFunctionFactory(descriptors.extensionRequestAssetUpload),
|
|
205
211
|
/** Start the verification process of an Extension. */
|
|
206
212
|
extensionRequestExtensionVerification: this.requestFunctionFactory(descriptors.extensionRequestExtensionVerification),
|
|
207
|
-
/** Add a logo to an extension. */
|
|
208
|
-
extensionRequestLogoUpload: this.requestFunctionFactory(descriptors.extensionRequestLogoUpload),
|
|
209
213
|
/** Publish or withdraw an Extension. */
|
|
210
214
|
extensionSetExtensionPublishedState: this.requestFunctionFactory(descriptors.extensionSetExtensionPublishedState),
|
|
211
215
|
};
|
|
@@ -946,12 +946,18 @@ export const extensionAuthenticateInstance = {
|
|
|
946
946
|
method: "POST",
|
|
947
947
|
operationId: "extension-authenticate-instance",
|
|
948
948
|
};
|
|
949
|
-
/** Authenticate your external application using
|
|
949
|
+
/** Authenticate your external application using a session token and an extension secret */
|
|
950
950
|
export const extensionAuthenticateWithSessionToken = {
|
|
951
951
|
path: "/v2/authenticate-session-token",
|
|
952
952
|
method: "POST",
|
|
953
953
|
operationId: "extension-authenticate-with-session-token",
|
|
954
954
|
};
|
|
955
|
+
/** Change the context of an Extension. */
|
|
956
|
+
export const extensionChangeContext = {
|
|
957
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/context",
|
|
958
|
+
method: "PUT",
|
|
959
|
+
operationId: "extension-change-context",
|
|
960
|
+
};
|
|
955
961
|
/** Consent to extension scopes. */
|
|
956
962
|
export const extensionConsentToExtensionScopes = {
|
|
957
963
|
path: "/v2/extension-instances/{extensionInstanceId}/scopes",
|
|
@@ -1090,6 +1096,18 @@ export const extensionRemoveAsset = {
|
|
|
1090
1096
|
method: "DELETE",
|
|
1091
1097
|
operationId: "extension-remove-asset",
|
|
1092
1098
|
};
|
|
1099
|
+
/** Add a logo to an extension. */
|
|
1100
|
+
export const extensionRequestLogoUpload = {
|
|
1101
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/logo",
|
|
1102
|
+
method: "POST",
|
|
1103
|
+
operationId: "extension-request-logo-upload",
|
|
1104
|
+
};
|
|
1105
|
+
/** Remove the logo of an extension. */
|
|
1106
|
+
export const extensionRemoveLogo = {
|
|
1107
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/logo",
|
|
1108
|
+
method: "DELETE",
|
|
1109
|
+
operationId: "extension-remove-logo",
|
|
1110
|
+
};
|
|
1093
1111
|
/** Add an asset to an extension. */
|
|
1094
1112
|
export const extensionRequestAssetUpload = {
|
|
1095
1113
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/assets",
|
|
@@ -1102,12 +1120,6 @@ export const extensionRequestExtensionVerification = {
|
|
|
1102
1120
|
method: "POST",
|
|
1103
1121
|
operationId: "extension-request-extension-verification",
|
|
1104
1122
|
};
|
|
1105
|
-
/** Add a logo to an extension. */
|
|
1106
|
-
export const extensionRequestLogoUpload = {
|
|
1107
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/logo",
|
|
1108
|
-
method: "POST",
|
|
1109
|
-
operationId: "extension-request-logo-upload",
|
|
1110
|
-
};
|
|
1111
1123
|
/** Publish or withdraw an Extension. */
|
|
1112
1124
|
export const extensionSetExtensionPublishedState = {
|
|
1113
1125
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/published",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.126.0';
|
|
@@ -130,6 +130,8 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
130
130
|
} | undefined;
|
|
131
131
|
queryParameters?: {
|
|
132
132
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
133
|
+
appIds?: string[] | undefined;
|
|
134
|
+
searchTerm?: string | undefined;
|
|
133
135
|
limit?: number | undefined;
|
|
134
136
|
skip?: number | undefined;
|
|
135
137
|
page?: number | undefined;
|
|
@@ -144,6 +146,8 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
144
146
|
} | undefined;
|
|
145
147
|
queryParameters?: {
|
|
146
148
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
149
|
+
appIds?: string[] | undefined;
|
|
150
|
+
searchTerm?: string | undefined;
|
|
147
151
|
limit?: number | undefined;
|
|
148
152
|
skip?: number | undefined;
|
|
149
153
|
page?: number | undefined;
|
|
@@ -931,6 +935,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
931
935
|
customerNumber: string;
|
|
932
936
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
933
937
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
938
|
+
isAllowedToPlaceOrders?: boolean | undefined;
|
|
934
939
|
isBanned?: boolean | undefined;
|
|
935
940
|
isInDefaultOfPayment?: boolean | undefined;
|
|
936
941
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
@@ -687,6 +687,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
687
687
|
} | undefined;
|
|
688
688
|
queryParameters?: {
|
|
689
689
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
690
|
+
appIds?: string[] | undefined;
|
|
691
|
+
searchTerm?: string | undefined;
|
|
690
692
|
limit?: number | undefined;
|
|
691
693
|
skip?: number | undefined;
|
|
692
694
|
page?: number | undefined;
|
|
@@ -697,6 +699,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
697
699
|
}>;
|
|
698
700
|
} & {
|
|
699
701
|
queryParameters: {
|
|
702
|
+
appIds?: string[] | undefined;
|
|
703
|
+
searchTerm?: string | undefined;
|
|
700
704
|
limit?: number | undefined;
|
|
701
705
|
skip?: number | undefined;
|
|
702
706
|
page?: number | undefined;
|
|
@@ -717,6 +721,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
717
721
|
}>;
|
|
718
722
|
} & {
|
|
719
723
|
queryParameters: {
|
|
724
|
+
appIds?: string[] | undefined;
|
|
725
|
+
searchTerm?: string | undefined;
|
|
720
726
|
limit?: number | undefined;
|
|
721
727
|
skip?: number | undefined;
|
|
722
728
|
page?: number | undefined;
|
|
@@ -741,6 +747,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
741
747
|
} | undefined;
|
|
742
748
|
queryParameters?: {
|
|
743
749
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
750
|
+
appIds?: string[] | undefined;
|
|
751
|
+
searchTerm?: string | undefined;
|
|
744
752
|
limit?: number | undefined;
|
|
745
753
|
skip?: number | undefined;
|
|
746
754
|
page?: number | undefined;
|
|
@@ -755,6 +763,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
755
763
|
};
|
|
756
764
|
} & {
|
|
757
765
|
queryParameters: {
|
|
766
|
+
appIds?: string[] | undefined;
|
|
767
|
+
searchTerm?: string | undefined;
|
|
758
768
|
limit?: number | undefined;
|
|
759
769
|
skip?: number | undefined;
|
|
760
770
|
page?: number | undefined;
|
|
@@ -779,6 +789,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
779
789
|
};
|
|
780
790
|
} & {
|
|
781
791
|
queryParameters: {
|
|
792
|
+
appIds?: string[] | undefined;
|
|
793
|
+
searchTerm?: string | undefined;
|
|
782
794
|
limit?: number | undefined;
|
|
783
795
|
skip?: number | undefined;
|
|
784
796
|
page?: number | undefined;
|
|
@@ -4354,7 +4366,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4354
4366
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4355
4367
|
[x: string]: unknown;
|
|
4356
4368
|
}, 400, "application/json">>>;
|
|
4357
|
-
/** Authenticate your external application using
|
|
4369
|
+
/** Authenticate your external application using a session token and an extension secret */
|
|
4358
4370
|
extensionAuthenticateWithSessionToken: (request: {
|
|
4359
4371
|
data: {
|
|
4360
4372
|
sessionToken: string;
|
|
@@ -4409,6 +4421,72 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4409
4421
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4410
4422
|
[x: string]: unknown;
|
|
4411
4423
|
}, 404, "application/json">>>;
|
|
4424
|
+
/** Change the context of an Extension. */
|
|
4425
|
+
extensionChangeContext: (request: {
|
|
4426
|
+
data: {
|
|
4427
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4428
|
+
};
|
|
4429
|
+
contributorId: string;
|
|
4430
|
+
extensionId: string;
|
|
4431
|
+
headers?: {
|
|
4432
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4433
|
+
"x-access-token"?: string | undefined;
|
|
4434
|
+
} | undefined;
|
|
4435
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4436
|
+
data: {
|
|
4437
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4438
|
+
};
|
|
4439
|
+
} & {
|
|
4440
|
+
pathParameters: {
|
|
4441
|
+
contributorId: string;
|
|
4442
|
+
extensionId: string;
|
|
4443
|
+
};
|
|
4444
|
+
} & {
|
|
4445
|
+
headers?: Partial<{
|
|
4446
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4447
|
+
}>;
|
|
4448
|
+
} & {
|
|
4449
|
+
headers: {
|
|
4450
|
+
"x-access-token"?: string | undefined;
|
|
4451
|
+
} & Partial<{
|
|
4452
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4453
|
+
}>;
|
|
4454
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4455
|
+
cleaningUpInstances: boolean;
|
|
4456
|
+
currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4457
|
+
id: string;
|
|
4458
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4459
|
+
[x: string]: unknown;
|
|
4460
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4461
|
+
[x: string]: unknown;
|
|
4462
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4463
|
+
data: {
|
|
4464
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4465
|
+
};
|
|
4466
|
+
} & {
|
|
4467
|
+
pathParameters: {
|
|
4468
|
+
contributorId: string;
|
|
4469
|
+
extensionId: string;
|
|
4470
|
+
};
|
|
4471
|
+
} & {
|
|
4472
|
+
headers?: Partial<{
|
|
4473
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4474
|
+
}>;
|
|
4475
|
+
} & {
|
|
4476
|
+
headers: {
|
|
4477
|
+
"x-access-token"?: string | undefined;
|
|
4478
|
+
} & Partial<{
|
|
4479
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4480
|
+
}>;
|
|
4481
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4482
|
+
cleaningUpInstances: boolean;
|
|
4483
|
+
currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4484
|
+
id: string;
|
|
4485
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4486
|
+
[x: string]: unknown;
|
|
4487
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4488
|
+
[x: string]: unknown;
|
|
4489
|
+
}, 429, "application/json">>>;
|
|
4412
4490
|
/** Consent to extension scopes. */
|
|
4413
4491
|
extensionConsentToExtensionScopes: (request: {
|
|
4414
4492
|
data: {
|
|
@@ -6054,11 +6132,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6054
6132
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6055
6133
|
[x: string]: unknown;
|
|
6056
6134
|
}, 429, "application/json">>>;
|
|
6057
|
-
/** Add
|
|
6058
|
-
|
|
6059
|
-
data: {
|
|
6060
|
-
assetType: "image" | "video";
|
|
6061
|
-
};
|
|
6135
|
+
/** Add a logo to an extension. */
|
|
6136
|
+
extensionRequestLogoUpload: (request: {
|
|
6062
6137
|
contributorId: string;
|
|
6063
6138
|
extensionId: string;
|
|
6064
6139
|
headers?: {
|
|
@@ -6066,18 +6141,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6066
6141
|
"x-access-token"?: string | undefined;
|
|
6067
6142
|
} | undefined;
|
|
6068
6143
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
}
|
|
6144
|
+
headers?: Partial<{
|
|
6145
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6146
|
+
}>;
|
|
6072
6147
|
} & {
|
|
6073
6148
|
pathParameters: {
|
|
6074
6149
|
contributorId: string;
|
|
6075
6150
|
extensionId: string;
|
|
6076
6151
|
};
|
|
6077
|
-
} & {
|
|
6078
|
-
headers?: Partial<{
|
|
6079
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6080
|
-
}>;
|
|
6081
6152
|
} & {
|
|
6082
6153
|
headers: {
|
|
6083
6154
|
"x-access-token"?: string | undefined;
|
|
@@ -6085,7 +6156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6085
6156
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6086
6157
|
}>;
|
|
6087
6158
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6088
|
-
|
|
6159
|
+
logoRefId: string;
|
|
6089
6160
|
rules: {
|
|
6090
6161
|
extensions: string[];
|
|
6091
6162
|
fileTypes: {
|
|
@@ -6109,25 +6180,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6109
6180
|
};
|
|
6110
6181
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6111
6182
|
[x: string]: unknown;
|
|
6112
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6113
|
-
[x: string]: unknown;
|
|
6114
6183
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6115
6184
|
[x: string]: unknown;
|
|
6116
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6117
|
-
[x: string]: unknown;
|
|
6118
6185
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6119
|
-
|
|
6120
|
-
|
|
6121
|
-
}
|
|
6186
|
+
headers?: Partial<{
|
|
6187
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6188
|
+
}>;
|
|
6122
6189
|
} & {
|
|
6123
6190
|
pathParameters: {
|
|
6124
6191
|
contributorId: string;
|
|
6125
6192
|
extensionId: string;
|
|
6126
6193
|
};
|
|
6127
|
-
} & {
|
|
6128
|
-
headers?: Partial<{
|
|
6129
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6130
|
-
}>;
|
|
6131
6194
|
} & {
|
|
6132
6195
|
headers: {
|
|
6133
6196
|
"x-access-token"?: string | undefined;
|
|
@@ -6135,7 +6198,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6135
6198
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6136
6199
|
}>;
|
|
6137
6200
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6138
|
-
|
|
6201
|
+
logoRefId: string;
|
|
6139
6202
|
rules: {
|
|
6140
6203
|
extensions: string[];
|
|
6141
6204
|
fileTypes: {
|
|
@@ -6159,15 +6222,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6159
6222
|
};
|
|
6160
6223
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6161
6224
|
[x: string]: unknown;
|
|
6162
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6163
|
-
[x: string]: unknown;
|
|
6164
6225
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6165
6226
|
[x: string]: unknown;
|
|
6166
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6167
|
-
[x: string]: unknown;
|
|
6168
6227
|
}, 429, "application/json">>>;
|
|
6169
|
-
/**
|
|
6170
|
-
|
|
6228
|
+
/** Remove the logo of an extension. */
|
|
6229
|
+
extensionRemoveLogo: (request: {
|
|
6171
6230
|
contributorId: string;
|
|
6172
6231
|
extensionId: string;
|
|
6173
6232
|
headers?: {
|
|
@@ -6189,9 +6248,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6189
6248
|
} & Partial<{
|
|
6190
6249
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6191
6250
|
}>;
|
|
6192
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "
|
|
6251
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6193
6252
|
[x: string]: unknown;
|
|
6194
|
-
},
|
|
6253
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6195
6254
|
[x: string]: unknown;
|
|
6196
6255
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6197
6256
|
headers?: Partial<{
|
|
@@ -6208,13 +6267,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6208
6267
|
} & Partial<{
|
|
6209
6268
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6210
6269
|
}>;
|
|
6211
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "
|
|
6270
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6212
6271
|
[x: string]: unknown;
|
|
6213
|
-
},
|
|
6272
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6214
6273
|
[x: string]: unknown;
|
|
6215
6274
|
}, 429, "application/json">>>;
|
|
6216
|
-
/** Add
|
|
6217
|
-
|
|
6275
|
+
/** Add an asset to an extension. */
|
|
6276
|
+
extensionRequestAssetUpload: (request: {
|
|
6277
|
+
data: {
|
|
6278
|
+
assetType: "image" | "video";
|
|
6279
|
+
};
|
|
6218
6280
|
contributorId: string;
|
|
6219
6281
|
extensionId: string;
|
|
6220
6282
|
headers?: {
|
|
@@ -6222,14 +6284,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6222
6284
|
"x-access-token"?: string | undefined;
|
|
6223
6285
|
} | undefined;
|
|
6224
6286
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6225
|
-
|
|
6226
|
-
|
|
6227
|
-
}
|
|
6287
|
+
data: {
|
|
6288
|
+
assetType: "image" | "video";
|
|
6289
|
+
};
|
|
6228
6290
|
} & {
|
|
6229
6291
|
pathParameters: {
|
|
6230
6292
|
contributorId: string;
|
|
6231
6293
|
extensionId: string;
|
|
6232
6294
|
};
|
|
6295
|
+
} & {
|
|
6296
|
+
headers?: Partial<{
|
|
6297
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6298
|
+
}>;
|
|
6233
6299
|
} & {
|
|
6234
6300
|
headers: {
|
|
6235
6301
|
"x-access-token"?: string | undefined;
|
|
@@ -6237,7 +6303,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6237
6303
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6238
6304
|
}>;
|
|
6239
6305
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6240
|
-
|
|
6306
|
+
assetRefId: string;
|
|
6241
6307
|
rules: {
|
|
6242
6308
|
extensions: string[];
|
|
6243
6309
|
fileTypes: {
|
|
@@ -6261,17 +6327,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6261
6327
|
};
|
|
6262
6328
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6263
6329
|
[x: string]: unknown;
|
|
6330
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6331
|
+
[x: string]: unknown;
|
|
6264
6332
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6265
6333
|
[x: string]: unknown;
|
|
6334
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6335
|
+
[x: string]: unknown;
|
|
6266
6336
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6267
|
-
|
|
6268
|
-
|
|
6269
|
-
}
|
|
6337
|
+
data: {
|
|
6338
|
+
assetType: "image" | "video";
|
|
6339
|
+
};
|
|
6270
6340
|
} & {
|
|
6271
6341
|
pathParameters: {
|
|
6272
6342
|
contributorId: string;
|
|
6273
6343
|
extensionId: string;
|
|
6274
6344
|
};
|
|
6345
|
+
} & {
|
|
6346
|
+
headers?: Partial<{
|
|
6347
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6348
|
+
}>;
|
|
6275
6349
|
} & {
|
|
6276
6350
|
headers: {
|
|
6277
6351
|
"x-access-token"?: string | undefined;
|
|
@@ -6279,7 +6353,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6279
6353
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6280
6354
|
}>;
|
|
6281
6355
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6282
|
-
|
|
6356
|
+
assetRefId: string;
|
|
6283
6357
|
rules: {
|
|
6284
6358
|
extensions: string[];
|
|
6285
6359
|
fileTypes: {
|
|
@@ -6303,8 +6377,59 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6303
6377
|
};
|
|
6304
6378
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6305
6379
|
[x: string]: unknown;
|
|
6380
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6381
|
+
[x: string]: unknown;
|
|
6306
6382
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6307
6383
|
[x: string]: unknown;
|
|
6384
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6385
|
+
[x: string]: unknown;
|
|
6386
|
+
}, 429, "application/json">>>;
|
|
6387
|
+
/** Start the verification process of an Extension. */
|
|
6388
|
+
extensionRequestExtensionVerification: (request: {
|
|
6389
|
+
contributorId: string;
|
|
6390
|
+
extensionId: string;
|
|
6391
|
+
headers?: {
|
|
6392
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6393
|
+
"x-access-token"?: string | undefined;
|
|
6394
|
+
} | undefined;
|
|
6395
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6396
|
+
headers?: Partial<{
|
|
6397
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6398
|
+
}>;
|
|
6399
|
+
} & {
|
|
6400
|
+
pathParameters: {
|
|
6401
|
+
contributorId: string;
|
|
6402
|
+
extensionId: string;
|
|
6403
|
+
};
|
|
6404
|
+
} & {
|
|
6405
|
+
headers: {
|
|
6406
|
+
"x-access-token"?: string | undefined;
|
|
6407
|
+
} & Partial<{
|
|
6408
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6409
|
+
}>;
|
|
6410
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6411
|
+
[x: string]: unknown;
|
|
6412
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6413
|
+
[x: string]: unknown;
|
|
6414
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6415
|
+
headers?: Partial<{
|
|
6416
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6417
|
+
}>;
|
|
6418
|
+
} & {
|
|
6419
|
+
pathParameters: {
|
|
6420
|
+
contributorId: string;
|
|
6421
|
+
extensionId: string;
|
|
6422
|
+
};
|
|
6423
|
+
} & {
|
|
6424
|
+
headers: {
|
|
6425
|
+
"x-access-token"?: string | undefined;
|
|
6426
|
+
} & Partial<{
|
|
6427
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6428
|
+
}>;
|
|
6429
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6430
|
+
[x: string]: unknown;
|
|
6431
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6432
|
+
[x: string]: unknown;
|
|
6308
6433
|
}, 429, "application/json">>>;
|
|
6309
6434
|
/** Publish or withdraw an Extension. */
|
|
6310
6435
|
extensionSetExtensionPublishedState: (request: {
|
|
@@ -8744,6 +8869,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8744
8869
|
customerNumber: string;
|
|
8745
8870
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
8746
8871
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
8872
|
+
isAllowedToPlaceOrders?: boolean | undefined;
|
|
8747
8873
|
isBanned?: boolean | undefined;
|
|
8748
8874
|
isInDefaultOfPayment?: boolean | undefined;
|
|
8749
8875
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
@@ -8786,6 +8912,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8786
8912
|
customerNumber: string;
|
|
8787
8913
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
8788
8914
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
8915
|
+
isAllowedToPlaceOrders?: boolean | undefined;
|
|
8789
8916
|
isBanned?: boolean | undefined;
|
|
8790
8917
|
isInDefaultOfPayment?: boolean | undefined;
|
|
8791
8918
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
@@ -11306,7 +11433,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11306
11433
|
} & Partial<{
|
|
11307
11434
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11308
11435
|
}>;
|
|
11309
|
-
}, import("@mittwald/api-client-commons").Response<{},
|
|
11436
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
11310
11437
|
[x: string]: unknown;
|
|
11311
11438
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11312
11439
|
[x: string]: unknown;
|
|
@@ -11324,7 +11451,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11324
11451
|
} & Partial<{
|
|
11325
11452
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11326
11453
|
}>;
|
|
11327
|
-
}, import("@mittwald/api-client-commons").Response<{},
|
|
11454
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
11328
11455
|
[x: string]: unknown;
|
|
11329
11456
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11330
11457
|
[x: string]: unknown;
|
|
@@ -282,7 +282,7 @@ export declare const dnsCreateDnsZone: OpenAPIOperation<RequestType<Simplify<Mit
|
|
|
282
282
|
/** Get a DNSZone. */
|
|
283
283
|
export declare const dnsGetDnsZone: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
284
284
|
/** Delete a DNSZone. */
|
|
285
|
-
export declare const dnsDeleteDnsZone: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Responses.$
|
|
285
|
+
export declare const dnsDeleteDnsZone: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
286
286
|
/** List DNSZones belonging to a Project. */
|
|
287
287
|
export declare const dnsListDnsZones: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
288
288
|
/** Set a record set on a DNSZone to managed. */
|
|
@@ -319,8 +319,10 @@ export declare const domainUpdateDomainContact: OpenAPIOperation<RequestType<Sim
|
|
|
319
319
|
export declare const domainUpdateDomainProjectId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
320
320
|
/** Authenticate your external application using the extensionInstanceSecret. */
|
|
321
321
|
export declare const extensionAuthenticateInstance: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdTokens.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdTokens.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdTokens.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdTokens.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdTokens.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdTokens.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdTokens.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
322
|
-
/** Authenticate your external application using
|
|
322
|
+
/** Authenticate your external application using a session token and an extension secret */
|
|
323
323
|
export declare const extensionAuthenticateWithSessionToken: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AuthenticateSessionToken.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateSessionToken.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateSessionToken.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateSessionToken.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateSessionToken.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateSessionToken.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateSessionToken.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateSessionToken.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
324
|
+
/** Change the context of an Extension. */
|
|
325
|
+
export declare const extensionChangeContext: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
324
326
|
/** Consent to extension scopes. */
|
|
325
327
|
export declare const extensionConsentToExtensionScopes: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
326
328
|
/** List ExtensionInstances. */
|
|
@@ -367,12 +369,14 @@ export declare const extensionListOwnExtensions: OpenAPIOperation<RequestType<Si
|
|
|
367
369
|
export declare const extensionRegisterExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
368
370
|
/** Remove an asset of an extension. */
|
|
369
371
|
export declare const extensionRemoveAsset: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
372
|
+
/** Add a logo to an extension. */
|
|
373
|
+
export declare const extensionRequestLogoUpload: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
374
|
+
/** Remove the logo of an extension. */
|
|
375
|
+
export declare const extensionRemoveLogo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
370
376
|
/** Add an asset to an extension. */
|
|
371
377
|
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">>;
|
|
372
378
|
/** Start the verification process of an Extension. */
|
|
373
379
|
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.ApplicationJson>, 204, "application/json"> | 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">>;
|
|
374
|
-
/** Add a logo to an extension. */
|
|
375
|
-
export declare const extensionRequestLogoUpload: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdLogo.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
376
380
|
/** Publish or withdraw an Extension. */
|
|
377
381
|
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">>;
|
|
378
382
|
/** Create a File. */
|
|
@@ -638,6 +638,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
638
638
|
type RequestData = InferredRequestData<typeof descriptors.extensionAuthenticateWithSessionToken>;
|
|
639
639
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionAuthenticateWithSessionToken, TStatus>;
|
|
640
640
|
}
|
|
641
|
+
namespace ExtensionChangeContext {
|
|
642
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionChangeContext>;
|
|
643
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionChangeContext, TStatus>;
|
|
644
|
+
}
|
|
641
645
|
namespace ExtensionConsentToExtensionScopes {
|
|
642
646
|
type RequestData = InferredRequestData<typeof descriptors.extensionConsentToExtensionScopes>;
|
|
643
647
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionConsentToExtensionScopes, TStatus>;
|
|
@@ -730,6 +734,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
730
734
|
type RequestData = InferredRequestData<typeof descriptors.extensionRemoveAsset>;
|
|
731
735
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRemoveAsset, TStatus>;
|
|
732
736
|
}
|
|
737
|
+
namespace ExtensionRequestLogoUpload {
|
|
738
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionRequestLogoUpload>;
|
|
739
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestLogoUpload, TStatus>;
|
|
740
|
+
}
|
|
741
|
+
namespace ExtensionRemoveLogo {
|
|
742
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionRemoveLogo>;
|
|
743
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRemoveLogo, TStatus>;
|
|
744
|
+
}
|
|
733
745
|
namespace ExtensionRequestAssetUpload {
|
|
734
746
|
type RequestData = InferredRequestData<typeof descriptors.extensionRequestAssetUpload>;
|
|
735
747
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestAssetUpload, TStatus>;
|
|
@@ -738,10 +750,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
738
750
|
type RequestData = InferredRequestData<typeof descriptors.extensionRequestExtensionVerification>;
|
|
739
751
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestExtensionVerification, TStatus>;
|
|
740
752
|
}
|
|
741
|
-
namespace ExtensionRequestLogoUpload {
|
|
742
|
-
type RequestData = InferredRequestData<typeof descriptors.extensionRequestLogoUpload>;
|
|
743
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestLogoUpload, TStatus>;
|
|
744
|
-
}
|
|
745
753
|
namespace ExtensionSetExtensionPublishedState {
|
|
746
754
|
type RequestData = InferredRequestData<typeof descriptors.extensionSetExtensionPublishedState>;
|
|
747
755
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionSetExtensionPublishedState, TStatus>;
|
|
@@ -2121,6 +2129,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2121
2129
|
customerNumber: string;
|
|
2122
2130
|
executingUserRoles?: MittwaldAPIV2.Components.Schemas.CustomerRole[];
|
|
2123
2131
|
flags?: MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[];
|
|
2132
|
+
isAllowedToPlaceOrders?: boolean;
|
|
2124
2133
|
isBanned?: boolean;
|
|
2125
2134
|
isInDefaultOfPayment?: boolean;
|
|
2126
2135
|
levelOfUndeliverableDunningNotice?: "first" | "second";
|
|
@@ -2856,7 +2865,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2856
2865
|
}
|
|
2857
2866
|
interface IngressPath {
|
|
2858
2867
|
path: string;
|
|
2859
|
-
target: MittwaldAPIV2.Components.Schemas.
|
|
2868
|
+
target: MittwaldAPIV2.Components.Schemas.IngressTargetUrl | MittwaldAPIV2.Components.Schemas.IngressTargetInstallation | MittwaldAPIV2.Components.Schemas.IngressTargetUseDefaultPage | MittwaldAPIV2.Components.Schemas.IngressTargetContainer;
|
|
2860
2869
|
}
|
|
2861
2870
|
interface IngressTargetContainer {
|
|
2862
2871
|
container: {
|
|
@@ -2867,13 +2876,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2867
2876
|
portProtocol: string;
|
|
2868
2877
|
};
|
|
2869
2878
|
}
|
|
2870
|
-
interface IngressTargetDirectory {
|
|
2871
|
-
/**
|
|
2872
|
-
* @deprecated
|
|
2873
|
-
* This property is deprecated. It will only be supported until the end of march. Please use installationId instead.
|
|
2874
|
-
*/
|
|
2875
|
-
directory: string;
|
|
2876
|
-
}
|
|
2877
2879
|
interface IngressTargetInstallation {
|
|
2878
2880
|
installationId: string;
|
|
2879
2881
|
}
|
|
@@ -4871,6 +4873,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4871
4873
|
type Path = {};
|
|
4872
4874
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4873
4875
|
type Query = {
|
|
4876
|
+
appIds?: string[];
|
|
4877
|
+
searchTerm?: string;
|
|
4874
4878
|
limit?: number;
|
|
4875
4879
|
skip?: number;
|
|
4876
4880
|
page?: number;
|
|
@@ -4908,6 +4912,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4908
4912
|
};
|
|
4909
4913
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4910
4914
|
type Query = {
|
|
4915
|
+
appIds?: string[];
|
|
4916
|
+
searchTerm?: string;
|
|
4911
4917
|
limit?: number;
|
|
4912
4918
|
skip?: number;
|
|
4913
4919
|
page?: number;
|
|
@@ -11143,7 +11149,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11143
11149
|
type Query = {};
|
|
11144
11150
|
}
|
|
11145
11151
|
namespace Responses {
|
|
11146
|
-
namespace $
|
|
11152
|
+
namespace $204 {
|
|
11147
11153
|
namespace Content {
|
|
11148
11154
|
type Empty = unknown;
|
|
11149
11155
|
}
|
|
@@ -12053,6 +12059,56 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12053
12059
|
}
|
|
12054
12060
|
}
|
|
12055
12061
|
}
|
|
12062
|
+
namespace V2ContributorsContributorIdExtensionsExtensionIdContext {
|
|
12063
|
+
namespace Put {
|
|
12064
|
+
namespace Parameters {
|
|
12065
|
+
type Path = {
|
|
12066
|
+
contributorId: string;
|
|
12067
|
+
extensionId: string;
|
|
12068
|
+
};
|
|
12069
|
+
interface RequestBody {
|
|
12070
|
+
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
12071
|
+
}
|
|
12072
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12073
|
+
type Query = {};
|
|
12074
|
+
}
|
|
12075
|
+
namespace Responses {
|
|
12076
|
+
namespace $200 {
|
|
12077
|
+
namespace Content {
|
|
12078
|
+
interface ApplicationJson {
|
|
12079
|
+
/**
|
|
12080
|
+
* If this value is true the context will change asynchronously after removing all extension-instances of this extension.
|
|
12081
|
+
*/
|
|
12082
|
+
cleaningUpInstances: boolean;
|
|
12083
|
+
currentContext: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
12084
|
+
id: string;
|
|
12085
|
+
}
|
|
12086
|
+
}
|
|
12087
|
+
}
|
|
12088
|
+
namespace $404 {
|
|
12089
|
+
namespace Content {
|
|
12090
|
+
interface ApplicationJson {
|
|
12091
|
+
[k: string]: unknown;
|
|
12092
|
+
}
|
|
12093
|
+
}
|
|
12094
|
+
}
|
|
12095
|
+
namespace $429 {
|
|
12096
|
+
namespace Content {
|
|
12097
|
+
interface ApplicationJson {
|
|
12098
|
+
[k: string]: unknown;
|
|
12099
|
+
}
|
|
12100
|
+
}
|
|
12101
|
+
}
|
|
12102
|
+
namespace Default {
|
|
12103
|
+
namespace Content {
|
|
12104
|
+
interface ApplicationJson {
|
|
12105
|
+
[k: string]: unknown;
|
|
12106
|
+
}
|
|
12107
|
+
}
|
|
12108
|
+
}
|
|
12109
|
+
}
|
|
12110
|
+
}
|
|
12111
|
+
}
|
|
12056
12112
|
namespace V2ExtensionInstancesExtensionInstanceIdScopes {
|
|
12057
12113
|
namespace Patch {
|
|
12058
12114
|
namespace Parameters {
|
|
@@ -13063,16 +13119,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13063
13119
|
}
|
|
13064
13120
|
}
|
|
13065
13121
|
}
|
|
13066
|
-
namespace
|
|
13122
|
+
namespace V2ContributorsContributorIdExtensionsExtensionIdLogo {
|
|
13067
13123
|
namespace Post {
|
|
13068
13124
|
namespace Parameters {
|
|
13069
13125
|
type Path = {
|
|
13070
13126
|
contributorId: string;
|
|
13071
13127
|
extensionId: string;
|
|
13072
13128
|
};
|
|
13073
|
-
interface RequestBody {
|
|
13074
|
-
assetType: "image" | "video";
|
|
13075
|
-
}
|
|
13076
13129
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13077
13130
|
type Query = {};
|
|
13078
13131
|
}
|
|
@@ -13081,11 +13134,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13081
13134
|
namespace Content {
|
|
13082
13135
|
interface ApplicationJson {
|
|
13083
13136
|
/**
|
|
13084
|
-
* Use the
|
|
13137
|
+
* Use the logoRefId as updload token at `/v2/files/{logoRefId}`.
|
|
13085
13138
|
*/
|
|
13086
|
-
|
|
13139
|
+
logoRefId: string;
|
|
13087
13140
|
/**
|
|
13088
|
-
* Constraints for the
|
|
13141
|
+
* Constraints for the logo image upload.
|
|
13089
13142
|
*/
|
|
13090
13143
|
rules: {
|
|
13091
13144
|
extensions: string[];
|
|
@@ -13111,13 +13164,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13111
13164
|
}
|
|
13112
13165
|
}
|
|
13113
13166
|
}
|
|
13114
|
-
namespace $400 {
|
|
13115
|
-
namespace Content {
|
|
13116
|
-
interface ApplicationJson {
|
|
13117
|
-
[k: string]: unknown;
|
|
13118
|
-
}
|
|
13119
|
-
}
|
|
13120
|
-
}
|
|
13121
13167
|
namespace $404 {
|
|
13122
13168
|
namespace Content {
|
|
13123
13169
|
interface ApplicationJson {
|
|
@@ -13125,13 +13171,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13125
13171
|
}
|
|
13126
13172
|
}
|
|
13127
13173
|
}
|
|
13128
|
-
namespace $412 {
|
|
13129
|
-
namespace Content {
|
|
13130
|
-
interface ApplicationJson {
|
|
13131
|
-
[k: string]: unknown;
|
|
13132
|
-
}
|
|
13133
|
-
}
|
|
13134
|
-
}
|
|
13135
13174
|
namespace $429 {
|
|
13136
13175
|
namespace Content {
|
|
13137
13176
|
interface ApplicationJson {
|
|
@@ -13148,9 +13187,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13148
13187
|
}
|
|
13149
13188
|
}
|
|
13150
13189
|
}
|
|
13151
|
-
|
|
13152
|
-
namespace V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess {
|
|
13153
|
-
namespace Post {
|
|
13190
|
+
namespace Delete {
|
|
13154
13191
|
namespace Parameters {
|
|
13155
13192
|
type Path = {
|
|
13156
13193
|
contributorId: string;
|
|
@@ -13162,11 +13199,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13162
13199
|
namespace Responses {
|
|
13163
13200
|
namespace $204 {
|
|
13164
13201
|
namespace Content {
|
|
13165
|
-
|
|
13166
|
-
}
|
|
13202
|
+
type Empty = unknown;
|
|
13167
13203
|
}
|
|
13168
13204
|
}
|
|
13169
|
-
namespace $
|
|
13205
|
+
namespace $404 {
|
|
13170
13206
|
namespace Content {
|
|
13171
13207
|
interface ApplicationJson {
|
|
13172
13208
|
[k: string]: unknown;
|
|
@@ -13190,13 +13226,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13190
13226
|
}
|
|
13191
13227
|
}
|
|
13192
13228
|
}
|
|
13193
|
-
namespace
|
|
13229
|
+
namespace V2ContributorsContributorIdExtensionsExtensionIdAssets {
|
|
13194
13230
|
namespace Post {
|
|
13195
13231
|
namespace Parameters {
|
|
13196
13232
|
type Path = {
|
|
13197
13233
|
contributorId: string;
|
|
13198
13234
|
extensionId: string;
|
|
13199
13235
|
};
|
|
13236
|
+
interface RequestBody {
|
|
13237
|
+
assetType: "image" | "video";
|
|
13238
|
+
}
|
|
13200
13239
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13201
13240
|
type Query = {};
|
|
13202
13241
|
}
|
|
@@ -13205,11 +13244,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13205
13244
|
namespace Content {
|
|
13206
13245
|
interface ApplicationJson {
|
|
13207
13246
|
/**
|
|
13208
|
-
* Use the
|
|
13247
|
+
* Use the ID as upload token at `/v2/files/{assetRefId}`. This ID will also be the ID of your asset in extension.
|
|
13209
13248
|
*/
|
|
13210
|
-
|
|
13249
|
+
assetRefId: string;
|
|
13211
13250
|
/**
|
|
13212
|
-
* Constraints for the
|
|
13251
|
+
* Constraints for the asset image or video upload, defers on the given assetType.
|
|
13213
13252
|
*/
|
|
13214
13253
|
rules: {
|
|
13215
13254
|
extensions: string[];
|
|
@@ -13235,6 +13274,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13235
13274
|
}
|
|
13236
13275
|
}
|
|
13237
13276
|
}
|
|
13277
|
+
namespace $400 {
|
|
13278
|
+
namespace Content {
|
|
13279
|
+
interface ApplicationJson {
|
|
13280
|
+
[k: string]: unknown;
|
|
13281
|
+
}
|
|
13282
|
+
}
|
|
13283
|
+
}
|
|
13238
13284
|
namespace $404 {
|
|
13239
13285
|
namespace Content {
|
|
13240
13286
|
interface ApplicationJson {
|
|
@@ -13242,6 +13288,54 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13242
13288
|
}
|
|
13243
13289
|
}
|
|
13244
13290
|
}
|
|
13291
|
+
namespace $412 {
|
|
13292
|
+
namespace Content {
|
|
13293
|
+
interface ApplicationJson {
|
|
13294
|
+
[k: string]: unknown;
|
|
13295
|
+
}
|
|
13296
|
+
}
|
|
13297
|
+
}
|
|
13298
|
+
namespace $429 {
|
|
13299
|
+
namespace Content {
|
|
13300
|
+
interface ApplicationJson {
|
|
13301
|
+
[k: string]: unknown;
|
|
13302
|
+
}
|
|
13303
|
+
}
|
|
13304
|
+
}
|
|
13305
|
+
namespace Default {
|
|
13306
|
+
namespace Content {
|
|
13307
|
+
interface ApplicationJson {
|
|
13308
|
+
[k: string]: unknown;
|
|
13309
|
+
}
|
|
13310
|
+
}
|
|
13311
|
+
}
|
|
13312
|
+
}
|
|
13313
|
+
}
|
|
13314
|
+
}
|
|
13315
|
+
namespace V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess {
|
|
13316
|
+
namespace Post {
|
|
13317
|
+
namespace Parameters {
|
|
13318
|
+
type Path = {
|
|
13319
|
+
contributorId: string;
|
|
13320
|
+
extensionId: string;
|
|
13321
|
+
};
|
|
13322
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13323
|
+
type Query = {};
|
|
13324
|
+
}
|
|
13325
|
+
namespace Responses {
|
|
13326
|
+
namespace $204 {
|
|
13327
|
+
namespace Content {
|
|
13328
|
+
interface ApplicationJson {
|
|
13329
|
+
}
|
|
13330
|
+
}
|
|
13331
|
+
}
|
|
13332
|
+
namespace $400 {
|
|
13333
|
+
namespace Content {
|
|
13334
|
+
interface ApplicationJson {
|
|
13335
|
+
[k: string]: unknown;
|
|
13336
|
+
}
|
|
13337
|
+
}
|
|
13338
|
+
}
|
|
13245
13339
|
namespace $429 {
|
|
13246
13340
|
namespace Content {
|
|
13247
13341
|
interface ApplicationJson {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.126.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.127.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",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "93464277f81f01fb623aa7cb4d3b7b7a4a763cac"
|
|
84
84
|
}
|