@mittwald/api-client 4.167.0 → 4.169.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 +45 -29
- package/dist/esm/generated/v2/client.js +34 -0
- package/dist/esm/generated/v2/descriptors.js +103 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +323 -228
- package/dist/types/generated/v2/client.d.ts +2269 -1237
- package/dist/types/generated/v2/descriptors.d.ts +35 -1
- package/dist/types/generated/v2/types.d.ts +966 -21
- package/dist/types/version.d.ts +1 -1
- package/package.json +3 -3
|
@@ -306,6 +306,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
306
306
|
type RequestData = InferredRequestData<typeof descriptors.contractListContracts>;
|
|
307
307
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractListContracts, TStatus>;
|
|
308
308
|
}
|
|
309
|
+
namespace ContributorGetBillingInformation {
|
|
310
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorGetBillingInformation>;
|
|
311
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorGetBillingInformation, TStatus>;
|
|
312
|
+
}
|
|
313
|
+
namespace ContributorUpdateBillingInformation {
|
|
314
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorUpdateBillingInformation>;
|
|
315
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorUpdateBillingInformation, TStatus>;
|
|
316
|
+
}
|
|
317
|
+
namespace ContributorGetCustomerBillingPortalLink {
|
|
318
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorGetCustomerBillingPortalLink>;
|
|
319
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorGetCustomerBillingPortalLink, TStatus>;
|
|
320
|
+
}
|
|
321
|
+
namespace ContributorGetLoginLink {
|
|
322
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorGetLoginLink>;
|
|
323
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorGetLoginLink, TStatus>;
|
|
324
|
+
}
|
|
325
|
+
namespace ContributorListOnbehalfInvoices {
|
|
326
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorListOnbehalfInvoices>;
|
|
327
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorListOnbehalfInvoices, TStatus>;
|
|
328
|
+
}
|
|
309
329
|
namespace ContributorRotateSecretForExtensionInstance {
|
|
310
330
|
type RequestData = InferredRequestData<typeof descriptors.contributorRotateSecretForExtensionInstance>;
|
|
311
331
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRotateSecretForExtensionInstance, TStatus>;
|
|
@@ -734,6 +754,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
734
754
|
type RequestData = InferredRequestData<typeof descriptors.extensionAuthenticateWithSessionToken>;
|
|
735
755
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionAuthenticateWithSessionToken, TStatus>;
|
|
736
756
|
}
|
|
757
|
+
namespace ExtensionScheduleExtensionTermination {
|
|
758
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionScheduleExtensionTermination>;
|
|
759
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionScheduleExtensionTermination, TStatus>;
|
|
760
|
+
}
|
|
761
|
+
namespace ExtensionCancelExtensionTermination {
|
|
762
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionCancelExtensionTermination>;
|
|
763
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionCancelExtensionTermination, TStatus>;
|
|
764
|
+
}
|
|
737
765
|
namespace ExtensionChangeContext {
|
|
738
766
|
type RequestData = InferredRequestData<typeof descriptors.extensionChangeContext>;
|
|
739
767
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionChangeContext, TStatus>;
|
|
@@ -742,6 +770,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
742
770
|
type RequestData = InferredRequestData<typeof descriptors.extensionConsentToExtensionScopes>;
|
|
743
771
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionConsentToExtensionScopes, TStatus>;
|
|
744
772
|
}
|
|
773
|
+
namespace ExtensionCreateContributorOnboardingProcess {
|
|
774
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionCreateContributorOnboardingProcess>;
|
|
775
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionCreateContributorOnboardingProcess, TStatus>;
|
|
776
|
+
}
|
|
745
777
|
namespace ExtensionListExtensionInstances {
|
|
746
778
|
type RequestData = InferredRequestData<typeof descriptors.extensionListExtensionInstances>;
|
|
747
779
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionListExtensionInstances, TStatus>;
|
|
@@ -798,6 +830,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
798
830
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetContributor>;
|
|
799
831
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetContributor, TStatus>;
|
|
800
832
|
}
|
|
833
|
+
namespace ExtensionGetCustomerExtensionInstanceOrders {
|
|
834
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionGetCustomerExtensionInstanceOrders>;
|
|
835
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetCustomerExtensionInstanceOrders, TStatus>;
|
|
836
|
+
}
|
|
837
|
+
namespace ExtensionGetExtensionInstanceContract {
|
|
838
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtensionInstanceContract>;
|
|
839
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtensionInstanceContract, TStatus>;
|
|
840
|
+
}
|
|
841
|
+
namespace ExtensionUpdateExtensionInstanceContract {
|
|
842
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionUpdateExtensionInstanceContract>;
|
|
843
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionUpdateExtensionInstanceContract, TStatus>;
|
|
844
|
+
}
|
|
801
845
|
namespace ExtensionGetExtensionInstanceForCustomer {
|
|
802
846
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtensionInstanceForCustomer>;
|
|
803
847
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtensionInstanceForCustomer, TStatus>;
|
|
@@ -810,6 +854,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
810
854
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtension>;
|
|
811
855
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtension, TStatus>;
|
|
812
856
|
}
|
|
857
|
+
namespace ExtensionGetProjectExtensionInstanceOrders {
|
|
858
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionGetProjectExtensionInstanceOrders>;
|
|
859
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetProjectExtensionInstanceOrders, TStatus>;
|
|
860
|
+
}
|
|
813
861
|
namespace ExtensionGetPublicKey {
|
|
814
862
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetPublicKey>;
|
|
815
863
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetPublicKey, TStatus>;
|
|
@@ -838,6 +886,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
838
886
|
type RequestData = InferredRequestData<typeof descriptors.extensionListScopes>;
|
|
839
887
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionListScopes, TStatus>;
|
|
840
888
|
}
|
|
889
|
+
namespace ExtensionOrderExtension {
|
|
890
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionOrderExtension>;
|
|
891
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionOrderExtension, TStatus>;
|
|
892
|
+
}
|
|
841
893
|
namespace ExtensionRemoveAsset {
|
|
842
894
|
type RequestData = InferredRequestData<typeof descriptors.extensionRemoveAsset>;
|
|
843
895
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRemoveAsset, TStatus>;
|
|
@@ -862,6 +914,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
862
914
|
type RequestData = InferredRequestData<typeof descriptors.extensionSetExtensionPublishedState>;
|
|
863
915
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionSetExtensionPublishedState, TStatus>;
|
|
864
916
|
}
|
|
917
|
+
namespace ExtensionStartExtensionCheckout {
|
|
918
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionStartExtensionCheckout>;
|
|
919
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionStartExtensionCheckout, TStatus>;
|
|
920
|
+
}
|
|
921
|
+
namespace ExtensionUpdateExtensionPricing {
|
|
922
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionUpdateExtensionPricing>;
|
|
923
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionUpdateExtensionPricing, TStatus>;
|
|
924
|
+
}
|
|
865
925
|
namespace FileCreateFile {
|
|
866
926
|
type RequestData = InferredRequestData<typeof descriptors.fileCreateFile>;
|
|
867
927
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.fileCreateFile, TStatus>;
|
|
@@ -1038,6 +1098,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1038
1098
|
type RequestData = InferredRequestData<typeof descriptors.mailUpdateProjectMailSetting>;
|
|
1039
1099
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateProjectMailSetting, TStatus>;
|
|
1040
1100
|
}
|
|
1101
|
+
namespace MarketplaceCustomerGetPaymentMethod {
|
|
1102
|
+
type RequestData = InferredRequestData<typeof descriptors.marketplaceCustomerGetPaymentMethod>;
|
|
1103
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.marketplaceCustomerGetPaymentMethod, TStatus>;
|
|
1104
|
+
}
|
|
1105
|
+
namespace MarketplaceCustomerUpdatePaymentMethod {
|
|
1106
|
+
type RequestData = InferredRequestData<typeof descriptors.marketplaceCustomerUpdatePaymentMethod>;
|
|
1107
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.marketplaceCustomerUpdatePaymentMethod, TStatus>;
|
|
1108
|
+
}
|
|
1041
1109
|
namespace NewsletterGetInfo {
|
|
1042
1110
|
type RequestData = InferredRequestData<typeof descriptors.newsletterGetInfo>;
|
|
1043
1111
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.newsletterGetInfo, TStatus>;
|
|
@@ -2236,7 +2304,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2236
2304
|
id: string;
|
|
2237
2305
|
status: "requested";
|
|
2238
2306
|
}
|
|
2239
|
-
type ConversationFile = MittwaldAPIV2.Components.Schemas.ConversationRequestedFile | MittwaldAPIV2.Components.Schemas.ConversationUploadedFile;
|
|
2307
|
+
type ConversationFile = MittwaldAPIV2.Components.Schemas.ConversationRequestedFile | MittwaldAPIV2.Components.Schemas.ConversationUploadedFile | MittwaldAPIV2.Components.Schemas.ConversationDeletedFile;
|
|
2240
2308
|
interface ConversationUploadedFile {
|
|
2241
2309
|
id: string;
|
|
2242
2310
|
name: string;
|
|
@@ -4932,6 +5000,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4932
5000
|
name: string;
|
|
4933
5001
|
value: string;
|
|
4934
5002
|
}
|
|
5003
|
+
interface ConversationDeletedFile {
|
|
5004
|
+
deletionDate: string;
|
|
5005
|
+
id: string;
|
|
5006
|
+
name: string;
|
|
5007
|
+
status: "deleted";
|
|
5008
|
+
type: string;
|
|
5009
|
+
}
|
|
4935
5010
|
interface CommonsAddress {
|
|
4936
5011
|
street: string;
|
|
4937
5012
|
houseNumber: string;
|
|
@@ -9032,6 +9107,257 @@ export declare namespace MittwaldAPIV2 {
|
|
|
9032
9107
|
}
|
|
9033
9108
|
}
|
|
9034
9109
|
}
|
|
9110
|
+
namespace V2ContributorsContributorIdBillingInformation {
|
|
9111
|
+
namespace Get {
|
|
9112
|
+
namespace Parameters {
|
|
9113
|
+
type Path = {
|
|
9114
|
+
contributorId: string;
|
|
9115
|
+
};
|
|
9116
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9117
|
+
type Query = {};
|
|
9118
|
+
}
|
|
9119
|
+
namespace Responses {
|
|
9120
|
+
namespace $200 {
|
|
9121
|
+
namespace Content {
|
|
9122
|
+
interface ApplicationJson {
|
|
9123
|
+
contributorId?: string;
|
|
9124
|
+
invoiceFooter?: string;
|
|
9125
|
+
onboardingStatus?: "NOT_STARTED" | "STARTED" | "SUCCESSFUL";
|
|
9126
|
+
stripeAccountId?: string;
|
|
9127
|
+
}
|
|
9128
|
+
}
|
|
9129
|
+
}
|
|
9130
|
+
namespace $400 {
|
|
9131
|
+
namespace Content {
|
|
9132
|
+
interface ApplicationJson {
|
|
9133
|
+
[k: string]: unknown;
|
|
9134
|
+
}
|
|
9135
|
+
}
|
|
9136
|
+
}
|
|
9137
|
+
namespace $404 {
|
|
9138
|
+
namespace Content {
|
|
9139
|
+
interface ApplicationJson {
|
|
9140
|
+
[k: string]: unknown;
|
|
9141
|
+
}
|
|
9142
|
+
}
|
|
9143
|
+
}
|
|
9144
|
+
namespace $429 {
|
|
9145
|
+
namespace Content {
|
|
9146
|
+
interface ApplicationJson {
|
|
9147
|
+
[k: string]: unknown;
|
|
9148
|
+
}
|
|
9149
|
+
}
|
|
9150
|
+
}
|
|
9151
|
+
namespace Default {
|
|
9152
|
+
namespace Content {
|
|
9153
|
+
interface ApplicationJson {
|
|
9154
|
+
[k: string]: unknown;
|
|
9155
|
+
}
|
|
9156
|
+
}
|
|
9157
|
+
}
|
|
9158
|
+
}
|
|
9159
|
+
}
|
|
9160
|
+
namespace Put {
|
|
9161
|
+
namespace Parameters {
|
|
9162
|
+
type Path = {
|
|
9163
|
+
contributorId: string;
|
|
9164
|
+
};
|
|
9165
|
+
interface RequestBody {
|
|
9166
|
+
invoiceFooter?: string;
|
|
9167
|
+
}
|
|
9168
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9169
|
+
type Query = {};
|
|
9170
|
+
}
|
|
9171
|
+
namespace Responses {
|
|
9172
|
+
namespace $200 {
|
|
9173
|
+
namespace Content {
|
|
9174
|
+
interface ApplicationJson {
|
|
9175
|
+
contributorId?: string;
|
|
9176
|
+
invoiceFooter?: string;
|
|
9177
|
+
}
|
|
9178
|
+
}
|
|
9179
|
+
}
|
|
9180
|
+
namespace $400 {
|
|
9181
|
+
namespace Content {
|
|
9182
|
+
interface ApplicationJson {
|
|
9183
|
+
[k: string]: unknown;
|
|
9184
|
+
}
|
|
9185
|
+
}
|
|
9186
|
+
}
|
|
9187
|
+
namespace $404 {
|
|
9188
|
+
namespace Content {
|
|
9189
|
+
interface ApplicationJson {
|
|
9190
|
+
[k: string]: unknown;
|
|
9191
|
+
}
|
|
9192
|
+
}
|
|
9193
|
+
}
|
|
9194
|
+
namespace $429 {
|
|
9195
|
+
namespace Content {
|
|
9196
|
+
interface ApplicationJson {
|
|
9197
|
+
[k: string]: unknown;
|
|
9198
|
+
}
|
|
9199
|
+
}
|
|
9200
|
+
}
|
|
9201
|
+
namespace Default {
|
|
9202
|
+
namespace Content {
|
|
9203
|
+
interface ApplicationJson {
|
|
9204
|
+
[k: string]: unknown;
|
|
9205
|
+
}
|
|
9206
|
+
}
|
|
9207
|
+
}
|
|
9208
|
+
}
|
|
9209
|
+
}
|
|
9210
|
+
}
|
|
9211
|
+
namespace V2CustomersCustomerIdBillingPortal {
|
|
9212
|
+
namespace Get {
|
|
9213
|
+
namespace Parameters {
|
|
9214
|
+
type Path = {
|
|
9215
|
+
customerId: string;
|
|
9216
|
+
};
|
|
9217
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9218
|
+
type Query = {};
|
|
9219
|
+
}
|
|
9220
|
+
namespace Responses {
|
|
9221
|
+
namespace $200 {
|
|
9222
|
+
namespace Content {
|
|
9223
|
+
interface ApplicationJson {
|
|
9224
|
+
url?: string;
|
|
9225
|
+
}
|
|
9226
|
+
}
|
|
9227
|
+
}
|
|
9228
|
+
namespace $400 {
|
|
9229
|
+
namespace Content {
|
|
9230
|
+
interface ApplicationJson {
|
|
9231
|
+
[k: string]: unknown;
|
|
9232
|
+
}
|
|
9233
|
+
}
|
|
9234
|
+
}
|
|
9235
|
+
namespace $404 {
|
|
9236
|
+
namespace Content {
|
|
9237
|
+
interface ApplicationJson {
|
|
9238
|
+
[k: string]: unknown;
|
|
9239
|
+
}
|
|
9240
|
+
}
|
|
9241
|
+
}
|
|
9242
|
+
namespace $429 {
|
|
9243
|
+
namespace Content {
|
|
9244
|
+
interface ApplicationJson {
|
|
9245
|
+
[k: string]: unknown;
|
|
9246
|
+
}
|
|
9247
|
+
}
|
|
9248
|
+
}
|
|
9249
|
+
namespace Default {
|
|
9250
|
+
namespace Content {
|
|
9251
|
+
interface ApplicationJson {
|
|
9252
|
+
[k: string]: unknown;
|
|
9253
|
+
}
|
|
9254
|
+
}
|
|
9255
|
+
}
|
|
9256
|
+
}
|
|
9257
|
+
}
|
|
9258
|
+
}
|
|
9259
|
+
namespace V2ContributorsContributorIdDashboard {
|
|
9260
|
+
namespace Get {
|
|
9261
|
+
namespace Parameters {
|
|
9262
|
+
type Path = {
|
|
9263
|
+
contributorId: string;
|
|
9264
|
+
};
|
|
9265
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9266
|
+
type Query = {};
|
|
9267
|
+
}
|
|
9268
|
+
namespace Responses {
|
|
9269
|
+
namespace $200 {
|
|
9270
|
+
namespace Content {
|
|
9271
|
+
interface ApplicationJson {
|
|
9272
|
+
url?: string;
|
|
9273
|
+
}
|
|
9274
|
+
}
|
|
9275
|
+
}
|
|
9276
|
+
namespace $400 {
|
|
9277
|
+
namespace Content {
|
|
9278
|
+
interface ApplicationJson {
|
|
9279
|
+
[k: string]: unknown;
|
|
9280
|
+
}
|
|
9281
|
+
}
|
|
9282
|
+
}
|
|
9283
|
+
namespace $404 {
|
|
9284
|
+
namespace Content {
|
|
9285
|
+
interface ApplicationJson {
|
|
9286
|
+
[k: string]: unknown;
|
|
9287
|
+
}
|
|
9288
|
+
}
|
|
9289
|
+
}
|
|
9290
|
+
namespace $429 {
|
|
9291
|
+
namespace Content {
|
|
9292
|
+
interface ApplicationJson {
|
|
9293
|
+
[k: string]: unknown;
|
|
9294
|
+
}
|
|
9295
|
+
}
|
|
9296
|
+
}
|
|
9297
|
+
namespace Default {
|
|
9298
|
+
namespace Content {
|
|
9299
|
+
interface ApplicationJson {
|
|
9300
|
+
[k: string]: unknown;
|
|
9301
|
+
}
|
|
9302
|
+
}
|
|
9303
|
+
}
|
|
9304
|
+
}
|
|
9305
|
+
}
|
|
9306
|
+
}
|
|
9307
|
+
namespace V2ContributorsContributorIdInvoicesOutgoing {
|
|
9308
|
+
namespace Get {
|
|
9309
|
+
namespace Parameters {
|
|
9310
|
+
type Path = {
|
|
9311
|
+
contributorId: string;
|
|
9312
|
+
};
|
|
9313
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9314
|
+
type Query = {};
|
|
9315
|
+
}
|
|
9316
|
+
namespace Responses {
|
|
9317
|
+
namespace $200 {
|
|
9318
|
+
namespace Content {
|
|
9319
|
+
type ApplicationJson = {
|
|
9320
|
+
invoiceDate: string;
|
|
9321
|
+
invoiceId: string;
|
|
9322
|
+
invoiceNumber: string;
|
|
9323
|
+
pdfLink: string;
|
|
9324
|
+
totalGross: number;
|
|
9325
|
+
totalNet: number;
|
|
9326
|
+
webLink: string;
|
|
9327
|
+
}[];
|
|
9328
|
+
}
|
|
9329
|
+
}
|
|
9330
|
+
namespace $400 {
|
|
9331
|
+
namespace Content {
|
|
9332
|
+
interface ApplicationJson {
|
|
9333
|
+
[k: string]: unknown;
|
|
9334
|
+
}
|
|
9335
|
+
}
|
|
9336
|
+
}
|
|
9337
|
+
namespace $404 {
|
|
9338
|
+
namespace Content {
|
|
9339
|
+
interface ApplicationJson {
|
|
9340
|
+
[k: string]: unknown;
|
|
9341
|
+
}
|
|
9342
|
+
}
|
|
9343
|
+
}
|
|
9344
|
+
namespace $429 {
|
|
9345
|
+
namespace Content {
|
|
9346
|
+
interface ApplicationJson {
|
|
9347
|
+
[k: string]: unknown;
|
|
9348
|
+
}
|
|
9349
|
+
}
|
|
9350
|
+
}
|
|
9351
|
+
namespace Default {
|
|
9352
|
+
namespace Content {
|
|
9353
|
+
interface ApplicationJson {
|
|
9354
|
+
[k: string]: unknown;
|
|
9355
|
+
}
|
|
9356
|
+
}
|
|
9357
|
+
}
|
|
9358
|
+
}
|
|
9359
|
+
}
|
|
9360
|
+
}
|
|
9035
9361
|
namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret {
|
|
9036
9362
|
namespace Put {
|
|
9037
9363
|
namespace Parameters {
|
|
@@ -13832,18 +14158,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13832
14158
|
}
|
|
13833
14159
|
}
|
|
13834
14160
|
}
|
|
13835
|
-
namespace
|
|
14161
|
+
namespace V2DomainsLatestScreenshot {
|
|
13836
14162
|
namespace Get {
|
|
13837
14163
|
namespace Parameters {
|
|
13838
|
-
type Path = {
|
|
13839
|
-
domainId: string;
|
|
13840
|
-
};
|
|
13841
|
-
interface RequestBody {
|
|
13842
|
-
domainName: string;
|
|
13843
|
-
path: string;
|
|
13844
|
-
}
|
|
14164
|
+
type Path = {};
|
|
13845
14165
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13846
|
-
type Query = {
|
|
14166
|
+
type Query = {
|
|
14167
|
+
domainName: string;
|
|
14168
|
+
};
|
|
13847
14169
|
}
|
|
13848
14170
|
namespace Responses {
|
|
13849
14171
|
namespace $200 {
|
|
@@ -14302,6 +14624,108 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14302
14624
|
}
|
|
14303
14625
|
}
|
|
14304
14626
|
}
|
|
14627
|
+
namespace V2ExtensionInstancesExtensionInstanceIdTermination {
|
|
14628
|
+
namespace Post {
|
|
14629
|
+
namespace Parameters {
|
|
14630
|
+
type Path = {
|
|
14631
|
+
extensionInstanceId: string;
|
|
14632
|
+
};
|
|
14633
|
+
interface RequestBody {
|
|
14634
|
+
/**
|
|
14635
|
+
* If set, the Extension Instance will be removed as fast as possible. No credit will be given.
|
|
14636
|
+
*/
|
|
14637
|
+
instantTermination?: boolean;
|
|
14638
|
+
}
|
|
14639
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
14640
|
+
type Query = {};
|
|
14641
|
+
}
|
|
14642
|
+
namespace Responses {
|
|
14643
|
+
namespace $201 {
|
|
14644
|
+
namespace Content {
|
|
14645
|
+
interface ApplicationJson {
|
|
14646
|
+
extensionInstanceId: string;
|
|
14647
|
+
}
|
|
14648
|
+
}
|
|
14649
|
+
}
|
|
14650
|
+
namespace $400 {
|
|
14651
|
+
namespace Content {
|
|
14652
|
+
interface ApplicationJson {
|
|
14653
|
+
[k: string]: unknown;
|
|
14654
|
+
}
|
|
14655
|
+
}
|
|
14656
|
+
}
|
|
14657
|
+
namespace $404 {
|
|
14658
|
+
namespace Content {
|
|
14659
|
+
interface ApplicationJson {
|
|
14660
|
+
[k: string]: unknown;
|
|
14661
|
+
}
|
|
14662
|
+
}
|
|
14663
|
+
}
|
|
14664
|
+
namespace $429 {
|
|
14665
|
+
namespace Content {
|
|
14666
|
+
interface ApplicationJson {
|
|
14667
|
+
[k: string]: unknown;
|
|
14668
|
+
}
|
|
14669
|
+
}
|
|
14670
|
+
}
|
|
14671
|
+
namespace Default {
|
|
14672
|
+
namespace Content {
|
|
14673
|
+
interface ApplicationJson {
|
|
14674
|
+
[k: string]: unknown;
|
|
14675
|
+
}
|
|
14676
|
+
}
|
|
14677
|
+
}
|
|
14678
|
+
}
|
|
14679
|
+
}
|
|
14680
|
+
namespace Delete {
|
|
14681
|
+
namespace Parameters {
|
|
14682
|
+
type Path = {
|
|
14683
|
+
extensionInstanceId: string;
|
|
14684
|
+
};
|
|
14685
|
+
interface RequestBody {
|
|
14686
|
+
}
|
|
14687
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
14688
|
+
type Query = {};
|
|
14689
|
+
}
|
|
14690
|
+
namespace Responses {
|
|
14691
|
+
namespace $200 {
|
|
14692
|
+
namespace Content {
|
|
14693
|
+
interface ApplicationJson {
|
|
14694
|
+
extensionInstanceId: string;
|
|
14695
|
+
}
|
|
14696
|
+
}
|
|
14697
|
+
}
|
|
14698
|
+
namespace $400 {
|
|
14699
|
+
namespace Content {
|
|
14700
|
+
interface ApplicationJson {
|
|
14701
|
+
[k: string]: unknown;
|
|
14702
|
+
}
|
|
14703
|
+
}
|
|
14704
|
+
}
|
|
14705
|
+
namespace $404 {
|
|
14706
|
+
namespace Content {
|
|
14707
|
+
interface ApplicationJson {
|
|
14708
|
+
[k: string]: unknown;
|
|
14709
|
+
}
|
|
14710
|
+
}
|
|
14711
|
+
}
|
|
14712
|
+
namespace $429 {
|
|
14713
|
+
namespace Content {
|
|
14714
|
+
interface ApplicationJson {
|
|
14715
|
+
[k: string]: unknown;
|
|
14716
|
+
}
|
|
14717
|
+
}
|
|
14718
|
+
}
|
|
14719
|
+
namespace Default {
|
|
14720
|
+
namespace Content {
|
|
14721
|
+
interface ApplicationJson {
|
|
14722
|
+
[k: string]: unknown;
|
|
14723
|
+
}
|
|
14724
|
+
}
|
|
14725
|
+
}
|
|
14726
|
+
}
|
|
14727
|
+
}
|
|
14728
|
+
}
|
|
14305
14729
|
namespace V2ContributorsContributorIdExtensionsExtensionIdContext {
|
|
14306
14730
|
namespace Put {
|
|
14307
14731
|
namespace Parameters {
|
|
@@ -14394,6 +14818,61 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14394
14818
|
}
|
|
14395
14819
|
}
|
|
14396
14820
|
}
|
|
14821
|
+
namespace V2ContributorsContributorIdOnboardingProcess {
|
|
14822
|
+
namespace Post {
|
|
14823
|
+
namespace Parameters {
|
|
14824
|
+
type Path = {
|
|
14825
|
+
contributorId: string;
|
|
14826
|
+
};
|
|
14827
|
+
interface RequestBody {
|
|
14828
|
+
/**
|
|
14829
|
+
* You can restrict your customers to certain countries.
|
|
14830
|
+
*/
|
|
14831
|
+
shippingCountryRestriction: "onlyDomestic";
|
|
14832
|
+
}
|
|
14833
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
14834
|
+
type Query = {};
|
|
14835
|
+
}
|
|
14836
|
+
namespace Responses {
|
|
14837
|
+
namespace $201 {
|
|
14838
|
+
namespace Content {
|
|
14839
|
+
interface ApplicationJson {
|
|
14840
|
+
contributorId?: string;
|
|
14841
|
+
onboardingLink?: string;
|
|
14842
|
+
}
|
|
14843
|
+
}
|
|
14844
|
+
}
|
|
14845
|
+
namespace $400 {
|
|
14846
|
+
namespace Content {
|
|
14847
|
+
interface ApplicationJson {
|
|
14848
|
+
[k: string]: unknown;
|
|
14849
|
+
}
|
|
14850
|
+
}
|
|
14851
|
+
}
|
|
14852
|
+
namespace $404 {
|
|
14853
|
+
namespace Content {
|
|
14854
|
+
interface ApplicationJson {
|
|
14855
|
+
[k: string]: unknown;
|
|
14856
|
+
}
|
|
14857
|
+
}
|
|
14858
|
+
}
|
|
14859
|
+
namespace $429 {
|
|
14860
|
+
namespace Content {
|
|
14861
|
+
interface ApplicationJson {
|
|
14862
|
+
[k: string]: unknown;
|
|
14863
|
+
}
|
|
14864
|
+
}
|
|
14865
|
+
}
|
|
14866
|
+
namespace Default {
|
|
14867
|
+
namespace Content {
|
|
14868
|
+
interface ApplicationJson {
|
|
14869
|
+
[k: string]: unknown;
|
|
14870
|
+
}
|
|
14871
|
+
}
|
|
14872
|
+
}
|
|
14873
|
+
}
|
|
14874
|
+
}
|
|
14875
|
+
}
|
|
14397
14876
|
namespace V2ExtensionInstances {
|
|
14398
14877
|
namespace Get {
|
|
14399
14878
|
namespace Parameters {
|
|
@@ -14403,6 +14882,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14403
14882
|
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
14404
14883
|
contextId?: string;
|
|
14405
14884
|
extensionId?: string;
|
|
14885
|
+
searchTerm?: string;
|
|
14406
14886
|
limit?: number;
|
|
14407
14887
|
skip?: number;
|
|
14408
14888
|
page?: number;
|
|
@@ -15072,6 +15552,147 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15072
15552
|
}
|
|
15073
15553
|
}
|
|
15074
15554
|
}
|
|
15555
|
+
namespace V2CustomersCustomerIdExtensionOrders {
|
|
15556
|
+
namespace Get {
|
|
15557
|
+
namespace Parameters {
|
|
15558
|
+
type Path = {
|
|
15559
|
+
customerId: string;
|
|
15560
|
+
};
|
|
15561
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15562
|
+
type Query = {};
|
|
15563
|
+
}
|
|
15564
|
+
namespace Responses {
|
|
15565
|
+
namespace $200 {
|
|
15566
|
+
namespace Content {
|
|
15567
|
+
type ApplicationJson = {
|
|
15568
|
+
extensionId?: string;
|
|
15569
|
+
}[];
|
|
15570
|
+
}
|
|
15571
|
+
}
|
|
15572
|
+
namespace $400 {
|
|
15573
|
+
namespace Content {
|
|
15574
|
+
interface ApplicationJson {
|
|
15575
|
+
[k: string]: unknown;
|
|
15576
|
+
}
|
|
15577
|
+
}
|
|
15578
|
+
}
|
|
15579
|
+
namespace $404 {
|
|
15580
|
+
namespace Content {
|
|
15581
|
+
interface ApplicationJson {
|
|
15582
|
+
[k: string]: unknown;
|
|
15583
|
+
}
|
|
15584
|
+
}
|
|
15585
|
+
}
|
|
15586
|
+
namespace $429 {
|
|
15587
|
+
namespace Content {
|
|
15588
|
+
interface ApplicationJson {
|
|
15589
|
+
[k: string]: unknown;
|
|
15590
|
+
}
|
|
15591
|
+
}
|
|
15592
|
+
}
|
|
15593
|
+
namespace Default {
|
|
15594
|
+
namespace Content {
|
|
15595
|
+
interface ApplicationJson {
|
|
15596
|
+
[k: string]: unknown;
|
|
15597
|
+
}
|
|
15598
|
+
}
|
|
15599
|
+
}
|
|
15600
|
+
}
|
|
15601
|
+
}
|
|
15602
|
+
}
|
|
15603
|
+
namespace V2ExtensionInstancesExtensionInstanceIdContract {
|
|
15604
|
+
namespace Get {
|
|
15605
|
+
namespace Parameters {
|
|
15606
|
+
type Path = {
|
|
15607
|
+
extensionInstanceId: string;
|
|
15608
|
+
};
|
|
15609
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15610
|
+
type Query = {};
|
|
15611
|
+
}
|
|
15612
|
+
namespace Responses {
|
|
15613
|
+
namespace $200 {
|
|
15614
|
+
namespace Content {
|
|
15615
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ExtensionExtensionInstanceContract;
|
|
15616
|
+
}
|
|
15617
|
+
}
|
|
15618
|
+
namespace $400 {
|
|
15619
|
+
namespace Content {
|
|
15620
|
+
interface ApplicationJson {
|
|
15621
|
+
[k: string]: unknown;
|
|
15622
|
+
}
|
|
15623
|
+
}
|
|
15624
|
+
}
|
|
15625
|
+
namespace $404 {
|
|
15626
|
+
namespace Content {
|
|
15627
|
+
interface ApplicationJson {
|
|
15628
|
+
[k: string]: unknown;
|
|
15629
|
+
}
|
|
15630
|
+
}
|
|
15631
|
+
}
|
|
15632
|
+
namespace $429 {
|
|
15633
|
+
namespace Content {
|
|
15634
|
+
interface ApplicationJson {
|
|
15635
|
+
[k: string]: unknown;
|
|
15636
|
+
}
|
|
15637
|
+
}
|
|
15638
|
+
}
|
|
15639
|
+
namespace Default {
|
|
15640
|
+
namespace Content {
|
|
15641
|
+
interface ApplicationJson {
|
|
15642
|
+
[k: string]: unknown;
|
|
15643
|
+
}
|
|
15644
|
+
}
|
|
15645
|
+
}
|
|
15646
|
+
}
|
|
15647
|
+
}
|
|
15648
|
+
namespace Put {
|
|
15649
|
+
namespace Parameters {
|
|
15650
|
+
type Path = {
|
|
15651
|
+
extensionInstanceId: string;
|
|
15652
|
+
};
|
|
15653
|
+
interface RequestBody {
|
|
15654
|
+
}
|
|
15655
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15656
|
+
type Query = {};
|
|
15657
|
+
}
|
|
15658
|
+
namespace Responses {
|
|
15659
|
+
namespace $200 {
|
|
15660
|
+
namespace Content {
|
|
15661
|
+
interface ApplicationJson {
|
|
15662
|
+
}
|
|
15663
|
+
}
|
|
15664
|
+
}
|
|
15665
|
+
namespace $400 {
|
|
15666
|
+
namespace Content {
|
|
15667
|
+
interface ApplicationJson {
|
|
15668
|
+
[k: string]: unknown;
|
|
15669
|
+
}
|
|
15670
|
+
}
|
|
15671
|
+
}
|
|
15672
|
+
namespace $404 {
|
|
15673
|
+
namespace Content {
|
|
15674
|
+
interface ApplicationJson {
|
|
15675
|
+
[k: string]: unknown;
|
|
15676
|
+
}
|
|
15677
|
+
}
|
|
15678
|
+
}
|
|
15679
|
+
namespace $429 {
|
|
15680
|
+
namespace Content {
|
|
15681
|
+
interface ApplicationJson {
|
|
15682
|
+
[k: string]: unknown;
|
|
15683
|
+
}
|
|
15684
|
+
}
|
|
15685
|
+
}
|
|
15686
|
+
namespace Default {
|
|
15687
|
+
namespace Content {
|
|
15688
|
+
interface ApplicationJson {
|
|
15689
|
+
[k: string]: unknown;
|
|
15690
|
+
}
|
|
15691
|
+
}
|
|
15692
|
+
}
|
|
15693
|
+
}
|
|
15694
|
+
}
|
|
15695
|
+
}
|
|
15075
15696
|
namespace V2CustomersCustomerIdExtensionsExtensionId {
|
|
15076
15697
|
namespace Get {
|
|
15077
15698
|
namespace Parameters {
|
|
@@ -15191,6 +15812,54 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15191
15812
|
}
|
|
15192
15813
|
}
|
|
15193
15814
|
}
|
|
15815
|
+
namespace V2ProjectsProjectIdExtensionOrders {
|
|
15816
|
+
namespace Get {
|
|
15817
|
+
namespace Parameters {
|
|
15818
|
+
type Path = {
|
|
15819
|
+
projectId: string;
|
|
15820
|
+
};
|
|
15821
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15822
|
+
type Query = {};
|
|
15823
|
+
}
|
|
15824
|
+
namespace Responses {
|
|
15825
|
+
namespace $200 {
|
|
15826
|
+
namespace Content {
|
|
15827
|
+
type ApplicationJson = {
|
|
15828
|
+
extensionId?: string;
|
|
15829
|
+
}[];
|
|
15830
|
+
}
|
|
15831
|
+
}
|
|
15832
|
+
namespace $400 {
|
|
15833
|
+
namespace Content {
|
|
15834
|
+
interface ApplicationJson {
|
|
15835
|
+
[k: string]: unknown;
|
|
15836
|
+
}
|
|
15837
|
+
}
|
|
15838
|
+
}
|
|
15839
|
+
namespace $404 {
|
|
15840
|
+
namespace Content {
|
|
15841
|
+
interface ApplicationJson {
|
|
15842
|
+
[k: string]: unknown;
|
|
15843
|
+
}
|
|
15844
|
+
}
|
|
15845
|
+
}
|
|
15846
|
+
namespace $429 {
|
|
15847
|
+
namespace Content {
|
|
15848
|
+
interface ApplicationJson {
|
|
15849
|
+
[k: string]: unknown;
|
|
15850
|
+
}
|
|
15851
|
+
}
|
|
15852
|
+
}
|
|
15853
|
+
namespace Default {
|
|
15854
|
+
namespace Content {
|
|
15855
|
+
interface ApplicationJson {
|
|
15856
|
+
[k: string]: unknown;
|
|
15857
|
+
}
|
|
15858
|
+
}
|
|
15859
|
+
}
|
|
15860
|
+
}
|
|
15861
|
+
}
|
|
15862
|
+
}
|
|
15194
15863
|
namespace V2WebhookPublicKeysSerial { }
|
|
15195
15864
|
namespace V2PublicKeysSerial {
|
|
15196
15865
|
namespace Get {
|
|
@@ -15432,9 +16101,41 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15432
16101
|
}
|
|
15433
16102
|
namespace $400 {
|
|
15434
16103
|
namespace Content {
|
|
15435
|
-
interface ApplicationJson {
|
|
15436
|
-
[k: string]: unknown;
|
|
15437
|
-
}
|
|
16104
|
+
interface ApplicationJson {
|
|
16105
|
+
[k: string]: unknown;
|
|
16106
|
+
}
|
|
16107
|
+
}
|
|
16108
|
+
}
|
|
16109
|
+
namespace $429 {
|
|
16110
|
+
namespace Content {
|
|
16111
|
+
interface ApplicationJson {
|
|
16112
|
+
[k: string]: unknown;
|
|
16113
|
+
}
|
|
16114
|
+
}
|
|
16115
|
+
}
|
|
16116
|
+
namespace Default {
|
|
16117
|
+
namespace Content {
|
|
16118
|
+
interface ApplicationJson {
|
|
16119
|
+
[k: string]: unknown;
|
|
16120
|
+
}
|
|
16121
|
+
}
|
|
16122
|
+
}
|
|
16123
|
+
}
|
|
16124
|
+
}
|
|
16125
|
+
}
|
|
16126
|
+
namespace V2Scopes {
|
|
16127
|
+
namespace Get {
|
|
16128
|
+
namespace Parameters {
|
|
16129
|
+
type Path = {};
|
|
16130
|
+
type Header = {};
|
|
16131
|
+
type Query = {};
|
|
16132
|
+
}
|
|
16133
|
+
namespace Responses {
|
|
16134
|
+
namespace $200 {
|
|
16135
|
+
namespace Content {
|
|
16136
|
+
type ApplicationJson = {
|
|
16137
|
+
name: string;
|
|
16138
|
+
}[];
|
|
15438
16139
|
}
|
|
15439
16140
|
}
|
|
15440
16141
|
namespace $429 {
|
|
@@ -15454,19 +16155,47 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15454
16155
|
}
|
|
15455
16156
|
}
|
|
15456
16157
|
}
|
|
15457
|
-
namespace
|
|
15458
|
-
namespace
|
|
16158
|
+
namespace V2ExtensionsExtensionIdOrder {
|
|
16159
|
+
namespace Post {
|
|
15459
16160
|
namespace Parameters {
|
|
15460
|
-
type Path = {
|
|
15461
|
-
|
|
16161
|
+
type Path = {
|
|
16162
|
+
extensionId: string;
|
|
16163
|
+
};
|
|
16164
|
+
type RequestBody = {
|
|
16165
|
+
consentedScopes: string[];
|
|
16166
|
+
/**
|
|
16167
|
+
* The customer the extension should be booked for. Either customerId or projectId is required.
|
|
16168
|
+
*/
|
|
16169
|
+
customerId: string;
|
|
16170
|
+
} | {
|
|
16171
|
+
consentedScopes: string[];
|
|
16172
|
+
/**
|
|
16173
|
+
* The project the extension should be installed in. Either customerId or projectId is required.
|
|
16174
|
+
*/
|
|
16175
|
+
projectId: string;
|
|
16176
|
+
};
|
|
16177
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15462
16178
|
type Query = {};
|
|
15463
16179
|
}
|
|
15464
16180
|
namespace Responses {
|
|
15465
|
-
namespace $
|
|
16181
|
+
namespace $201 {
|
|
15466
16182
|
namespace Content {
|
|
15467
|
-
|
|
15468
|
-
|
|
15469
|
-
|
|
16183
|
+
interface ApplicationJson {
|
|
16184
|
+
}
|
|
16185
|
+
}
|
|
16186
|
+
}
|
|
16187
|
+
namespace $400 {
|
|
16188
|
+
namespace Content {
|
|
16189
|
+
interface ApplicationJson {
|
|
16190
|
+
[k: string]: unknown;
|
|
16191
|
+
}
|
|
16192
|
+
}
|
|
16193
|
+
}
|
|
16194
|
+
namespace $404 {
|
|
16195
|
+
namespace Content {
|
|
16196
|
+
interface ApplicationJson {
|
|
16197
|
+
[k: string]: unknown;
|
|
16198
|
+
}
|
|
15470
16199
|
}
|
|
15471
16200
|
}
|
|
15472
16201
|
namespace $429 {
|
|
@@ -15814,6 +16543,122 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15814
16543
|
}
|
|
15815
16544
|
}
|
|
15816
16545
|
}
|
|
16546
|
+
namespace V2ExtensionsExtensionIdCheckout {
|
|
16547
|
+
namespace Post {
|
|
16548
|
+
namespace Parameters {
|
|
16549
|
+
type Path = {
|
|
16550
|
+
extensionId: string;
|
|
16551
|
+
};
|
|
16552
|
+
type RequestBody = {
|
|
16553
|
+
consentedScopes: string[];
|
|
16554
|
+
/**
|
|
16555
|
+
* The customer the extension should be booked for. Either customerId or projectId is required.
|
|
16556
|
+
*/
|
|
16557
|
+
customerId: string;
|
|
16558
|
+
} | {
|
|
16559
|
+
consentedScopes: string[];
|
|
16560
|
+
/**
|
|
16561
|
+
* The project the extension should be installed in. Either customerId or projectId is required.
|
|
16562
|
+
*/
|
|
16563
|
+
projectId: string;
|
|
16564
|
+
};
|
|
16565
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
16566
|
+
type Query = {};
|
|
16567
|
+
}
|
|
16568
|
+
namespace Responses {
|
|
16569
|
+
namespace $201 {
|
|
16570
|
+
namespace Content {
|
|
16571
|
+
interface ApplicationJson {
|
|
16572
|
+
checkoutUrl?: string;
|
|
16573
|
+
}
|
|
16574
|
+
}
|
|
16575
|
+
}
|
|
16576
|
+
namespace $400 {
|
|
16577
|
+
namespace Content {
|
|
16578
|
+
interface ApplicationJson {
|
|
16579
|
+
[k: string]: unknown;
|
|
16580
|
+
}
|
|
16581
|
+
}
|
|
16582
|
+
}
|
|
16583
|
+
namespace $404 {
|
|
16584
|
+
namespace Content {
|
|
16585
|
+
interface ApplicationJson {
|
|
16586
|
+
[k: string]: unknown;
|
|
16587
|
+
}
|
|
16588
|
+
}
|
|
16589
|
+
}
|
|
16590
|
+
namespace $429 {
|
|
16591
|
+
namespace Content {
|
|
16592
|
+
interface ApplicationJson {
|
|
16593
|
+
[k: string]: unknown;
|
|
16594
|
+
}
|
|
16595
|
+
}
|
|
16596
|
+
}
|
|
16597
|
+
namespace Default {
|
|
16598
|
+
namespace Content {
|
|
16599
|
+
interface ApplicationJson {
|
|
16600
|
+
[k: string]: unknown;
|
|
16601
|
+
}
|
|
16602
|
+
}
|
|
16603
|
+
}
|
|
16604
|
+
}
|
|
16605
|
+
}
|
|
16606
|
+
}
|
|
16607
|
+
namespace V2ContributorsContributorIdExtensionsExtensionIdPricing {
|
|
16608
|
+
namespace Put {
|
|
16609
|
+
namespace Parameters {
|
|
16610
|
+
type Path = {
|
|
16611
|
+
extensionId: string;
|
|
16612
|
+
contributorId: string;
|
|
16613
|
+
};
|
|
16614
|
+
interface RequestBody {
|
|
16615
|
+
/**
|
|
16616
|
+
* Price in cents.
|
|
16617
|
+
*/
|
|
16618
|
+
priceInCents?: number;
|
|
16619
|
+
}
|
|
16620
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
16621
|
+
type Query = {};
|
|
16622
|
+
}
|
|
16623
|
+
namespace Responses {
|
|
16624
|
+
namespace $200 {
|
|
16625
|
+
namespace Content {
|
|
16626
|
+
interface ApplicationJson {
|
|
16627
|
+
extensionId?: string;
|
|
16628
|
+
}
|
|
16629
|
+
}
|
|
16630
|
+
}
|
|
16631
|
+
namespace $400 {
|
|
16632
|
+
namespace Content {
|
|
16633
|
+
interface ApplicationJson {
|
|
16634
|
+
[k: string]: unknown;
|
|
16635
|
+
}
|
|
16636
|
+
}
|
|
16637
|
+
}
|
|
16638
|
+
namespace $404 {
|
|
16639
|
+
namespace Content {
|
|
16640
|
+
interface ApplicationJson {
|
|
16641
|
+
[k: string]: unknown;
|
|
16642
|
+
}
|
|
16643
|
+
}
|
|
16644
|
+
}
|
|
16645
|
+
namespace $429 {
|
|
16646
|
+
namespace Content {
|
|
16647
|
+
interface ApplicationJson {
|
|
16648
|
+
[k: string]: unknown;
|
|
16649
|
+
}
|
|
16650
|
+
}
|
|
16651
|
+
}
|
|
16652
|
+
namespace Default {
|
|
16653
|
+
namespace Content {
|
|
16654
|
+
interface ApplicationJson {
|
|
16655
|
+
[k: string]: unknown;
|
|
16656
|
+
}
|
|
16657
|
+
}
|
|
16658
|
+
}
|
|
16659
|
+
}
|
|
16660
|
+
}
|
|
16661
|
+
}
|
|
15817
16662
|
namespace V2Files {
|
|
15818
16663
|
namespace Post {
|
|
15819
16664
|
namespace Parameters {
|
|
@@ -18499,6 +19344,106 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18499
19344
|
}
|
|
18500
19345
|
}
|
|
18501
19346
|
}
|
|
19347
|
+
namespace V2CustomersCustomerIdPaymentMethod {
|
|
19348
|
+
namespace Get {
|
|
19349
|
+
namespace Parameters {
|
|
19350
|
+
type Path = {
|
|
19351
|
+
customerId: string;
|
|
19352
|
+
};
|
|
19353
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19354
|
+
type Query = {};
|
|
19355
|
+
}
|
|
19356
|
+
namespace Responses {
|
|
19357
|
+
namespace $200 {
|
|
19358
|
+
namespace Content {
|
|
19359
|
+
interface ApplicationJson {
|
|
19360
|
+
cardDetails?: {
|
|
19361
|
+
brand: string;
|
|
19362
|
+
last4: string;
|
|
19363
|
+
};
|
|
19364
|
+
}
|
|
19365
|
+
}
|
|
19366
|
+
}
|
|
19367
|
+
namespace $400 {
|
|
19368
|
+
namespace Content {
|
|
19369
|
+
interface ApplicationJson {
|
|
19370
|
+
[k: string]: unknown;
|
|
19371
|
+
}
|
|
19372
|
+
}
|
|
19373
|
+
}
|
|
19374
|
+
namespace $404 {
|
|
19375
|
+
namespace Content {
|
|
19376
|
+
interface ApplicationJson {
|
|
19377
|
+
[k: string]: unknown;
|
|
19378
|
+
}
|
|
19379
|
+
}
|
|
19380
|
+
}
|
|
19381
|
+
namespace $429 {
|
|
19382
|
+
namespace Content {
|
|
19383
|
+
interface ApplicationJson {
|
|
19384
|
+
[k: string]: unknown;
|
|
19385
|
+
}
|
|
19386
|
+
}
|
|
19387
|
+
}
|
|
19388
|
+
namespace Default {
|
|
19389
|
+
namespace Content {
|
|
19390
|
+
interface ApplicationJson {
|
|
19391
|
+
[k: string]: unknown;
|
|
19392
|
+
}
|
|
19393
|
+
}
|
|
19394
|
+
}
|
|
19395
|
+
}
|
|
19396
|
+
}
|
|
19397
|
+
namespace Put {
|
|
19398
|
+
namespace Parameters {
|
|
19399
|
+
type Path = {
|
|
19400
|
+
customerId: string;
|
|
19401
|
+
};
|
|
19402
|
+
interface RequestBody {
|
|
19403
|
+
customReturnUrl?: string;
|
|
19404
|
+
}
|
|
19405
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19406
|
+
type Query = {};
|
|
19407
|
+
}
|
|
19408
|
+
namespace Responses {
|
|
19409
|
+
namespace $200 {
|
|
19410
|
+
namespace Content {
|
|
19411
|
+
interface ApplicationJson {
|
|
19412
|
+
url?: string;
|
|
19413
|
+
}
|
|
19414
|
+
}
|
|
19415
|
+
}
|
|
19416
|
+
namespace $400 {
|
|
19417
|
+
namespace Content {
|
|
19418
|
+
interface ApplicationJson {
|
|
19419
|
+
[k: string]: unknown;
|
|
19420
|
+
}
|
|
19421
|
+
}
|
|
19422
|
+
}
|
|
19423
|
+
namespace $404 {
|
|
19424
|
+
namespace Content {
|
|
19425
|
+
interface ApplicationJson {
|
|
19426
|
+
[k: string]: unknown;
|
|
19427
|
+
}
|
|
19428
|
+
}
|
|
19429
|
+
}
|
|
19430
|
+
namespace $429 {
|
|
19431
|
+
namespace Content {
|
|
19432
|
+
interface ApplicationJson {
|
|
19433
|
+
[k: string]: unknown;
|
|
19434
|
+
}
|
|
19435
|
+
}
|
|
19436
|
+
}
|
|
19437
|
+
namespace Default {
|
|
19438
|
+
namespace Content {
|
|
19439
|
+
interface ApplicationJson {
|
|
19440
|
+
[k: string]: unknown;
|
|
19441
|
+
}
|
|
19442
|
+
}
|
|
19443
|
+
}
|
|
19444
|
+
}
|
|
19445
|
+
}
|
|
19446
|
+
}
|
|
18502
19447
|
namespace V2NewsletterSubscriptionsSelf {
|
|
18503
19448
|
namespace Get {
|
|
18504
19449
|
namespace Parameters {
|