@mittwald/api-client 4.168.0 → 4.170.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.
@@ -6043,32 +6043,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6043
6043
  };
6044
6044
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
6045
6045
  readonly marketplace: {
6046
- /** Rotate the secret for an extension instance. */
6047
- contributorRotateSecretForExtensionInstance: (request: {
6046
+ /** Get Contributor Billing Information. */
6047
+ contributorGetBillingInformation: (request: {
6048
6048
  contributorId: string;
6049
- extensionId: string;
6050
- extensionInstanceId: string;
6051
- data?: {
6052
- allowWebhookFailure?: boolean | undefined;
6053
- } | undefined;
6054
6049
  headers?: {
6055
6050
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6056
6051
  "x-access-token"?: string | undefined;
6057
6052
  } | undefined;
6058
6053
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6059
- data: {
6060
- allowWebhookFailure?: boolean | undefined;
6061
- };
6054
+ headers?: Partial<{
6055
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6056
+ }>;
6062
6057
  } & {
6063
6058
  pathParameters: {
6064
6059
  contributorId: string;
6065
- extensionId: string;
6066
- extensionInstanceId: string;
6067
6060
  };
6068
- } & {
6069
- headers?: Partial<{
6070
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6071
- }>;
6072
6061
  } & {
6073
6062
  headers: {
6074
6063
  "x-access-token"?: string | undefined;
@@ -6076,11 +6065,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6076
6065
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6077
6066
  }>;
6078
6067
  }, import("@mittwald/api-client-commons").Response<{
6079
- secret: string;
6080
- webhookResult: {
6081
- failure: boolean;
6082
- statusCode?: string;
6083
- };
6068
+ contributorId?: string | undefined;
6069
+ invoiceFooter?: string | undefined;
6070
+ onboardingStatus?: "NOT_STARTED" | "STARTED" | "SUCCESSFUL" | undefined;
6071
+ stripeAccountId?: string | undefined;
6084
6072
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6085
6073
  [x: string]: unknown;
6086
6074
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -6088,19 +6076,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6088
6076
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6089
6077
  [x: string]: unknown;
6090
6078
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6091
- data: {
6092
- allowWebhookFailure?: boolean | undefined;
6093
- };
6079
+ headers?: Partial<{
6080
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6081
+ }>;
6094
6082
  } & {
6095
6083
  pathParameters: {
6096
6084
  contributorId: string;
6097
- extensionId: string;
6098
- extensionInstanceId: string;
6099
6085
  };
6100
- } & {
6101
- headers?: Partial<{
6102
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6103
- }>;
6104
6086
  } & {
6105
6087
  headers: {
6106
6088
  "x-access-token"?: string | undefined;
@@ -6108,11 +6090,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6108
6090
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6109
6091
  }>;
6110
6092
  }, import("@mittwald/api-client-commons").Response<{
6111
- secret: string;
6112
- webhookResult: {
6113
- failure: boolean;
6114
- statusCode?: string;
6115
- };
6093
+ contributorId?: string | undefined;
6094
+ invoiceFooter?: string | undefined;
6095
+ onboardingStatus?: "NOT_STARTED" | "STARTED" | "SUCCESSFUL" | undefined;
6096
+ stripeAccountId?: string | undefined;
6116
6097
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6117
6098
  [x: string]: unknown;
6118
6099
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -6120,23 +6101,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6120
6101
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6121
6102
  [x: string]: unknown;
6122
6103
  }, 429, "application/json">>>;
6123
- /** Authenticate your external application using the extensionInstanceSecret. */
6124
- extensionAuthenticateInstance: (request: {
6125
- data: {
6126
- extensionInstanceSecret: string;
6127
- };
6128
- extensionInstanceId: string;
6104
+ /** Update Contributor Billing Information. */
6105
+ contributorUpdateBillingInformation: (request: {
6106
+ contributorId: string;
6107
+ data?: {
6108
+ invoiceFooter?: string | undefined;
6109
+ } | undefined;
6129
6110
  headers?: {
6130
6111
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6131
6112
  "x-access-token"?: string | undefined;
6132
6113
  } | undefined;
6133
6114
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6134
6115
  data: {
6135
- extensionInstanceSecret: string;
6116
+ invoiceFooter?: string | undefined;
6136
6117
  };
6137
6118
  } & {
6138
6119
  pathParameters: {
6139
- extensionInstanceId: string;
6120
+ contributorId: string;
6140
6121
  };
6141
6122
  } & {
6142
6123
  headers?: Partial<{
@@ -6149,17 +6130,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6149
6130
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6150
6131
  }>;
6151
6132
  }, import("@mittwald/api-client-commons").Response<{
6152
- expiry: string;
6153
- publicToken: string;
6154
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6133
+ contributorId?: string | undefined;
6134
+ invoiceFooter?: string | undefined;
6135
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6155
6136
  [x: string]: unknown;
6156
- }, 400, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6137
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6138
+ [x: string]: unknown;
6139
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6140
+ [x: string]: unknown;
6141
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6157
6142
  data: {
6158
- extensionInstanceSecret: string;
6143
+ invoiceFooter?: string | undefined;
6159
6144
  };
6160
6145
  } & {
6161
6146
  pathParameters: {
6162
- extensionInstanceId: string;
6147
+ contributorId: string;
6163
6148
  };
6164
6149
  } & {
6165
6150
  headers?: Partial<{
@@ -6172,30 +6157,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6172
6157
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6173
6158
  }>;
6174
6159
  }, import("@mittwald/api-client-commons").Response<{
6175
- expiry: string;
6176
- publicToken: string;
6177
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6160
+ contributorId?: string | undefined;
6161
+ invoiceFooter?: string | undefined;
6162
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6178
6163
  [x: string]: unknown;
6179
- }, 400, "application/json">>>;
6180
- /** Authenticate your external application using a session token and an extension secret */
6181
- extensionAuthenticateWithSessionToken: (request: {
6182
- data: {
6183
- sessionToken: string;
6184
- extensionSecret?: string | undefined;
6185
- };
6164
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6165
+ [x: string]: unknown;
6166
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6167
+ [x: string]: unknown;
6168
+ }, 429, "application/json">>>;
6169
+ /** Get the Stripe Billing Portal Link for a Customer */
6170
+ contributorGetCustomerBillingPortalLink: (request: {
6171
+ customerId: string;
6186
6172
  headers?: {
6187
6173
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6188
6174
  "x-access-token"?: string | undefined;
6189
6175
  } | undefined;
6190
6176
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6191
- data: {
6192
- extensionSecret?: string | undefined;
6193
- sessionToken: string;
6194
- };
6195
- } & {
6196
6177
  headers?: Partial<{
6197
6178
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6198
6179
  }>;
6180
+ } & {
6181
+ pathParameters: {
6182
+ customerId: string;
6183
+ };
6199
6184
  } & {
6200
6185
  headers: {
6201
6186
  "x-access-token"?: string | undefined;
@@ -6203,21 +6188,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6203
6188
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6204
6189
  }>;
6205
6190
  }, import("@mittwald/api-client-commons").Response<{
6206
- expiry: string;
6207
- publicToken: string;
6208
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6191
+ url?: string | undefined;
6192
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6209
6193
  [x: string]: unknown;
6210
6194
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6211
6195
  [x: string]: unknown;
6212
- }, 404, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6213
- data: {
6214
- extensionSecret?: string | undefined;
6215
- sessionToken: string;
6216
- };
6217
- } & {
6196
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6197
+ [x: string]: unknown;
6198
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6218
6199
  headers?: Partial<{
6219
6200
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6220
6201
  }>;
6202
+ } & {
6203
+ pathParameters: {
6204
+ customerId: string;
6205
+ };
6221
6206
  } & {
6222
6207
  headers: {
6223
6208
  "x-access-token"?: string | undefined;
@@ -6225,37 +6210,51 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6225
6210
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6226
6211
  }>;
6227
6212
  }, import("@mittwald/api-client-commons").Response<{
6228
- expiry: string;
6229
- publicToken: string;
6230
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6213
+ url?: string | undefined;
6214
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6231
6215
  [x: string]: unknown;
6232
6216
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6233
6217
  [x: string]: unknown;
6234
- }, 404, "application/json">>>;
6235
- /** Change the context of an Extension. */
6236
- extensionChangeContext: (request: {
6237
- data: {
6238
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6239
- };
6218
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6219
+ [x: string]: unknown;
6220
+ }, 429, "application/json">>>;
6221
+ /** Get the Stripe Dashboard Link for a Contributor. */
6222
+ contributorGetLoginLink: (request: {
6240
6223
  contributorId: string;
6241
- extensionId: string;
6242
6224
  headers?: {
6243
6225
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6244
6226
  "x-access-token"?: string | undefined;
6245
6227
  } | undefined;
6246
6228
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6247
- data: {
6248
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6249
- };
6229
+ headers?: Partial<{
6230
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6231
+ }>;
6250
6232
  } & {
6251
6233
  pathParameters: {
6252
6234
  contributorId: string;
6253
- extensionId: string;
6254
6235
  };
6255
6236
  } & {
6237
+ headers: {
6238
+ "x-access-token"?: string | undefined;
6239
+ } & Partial<{
6240
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6241
+ }>;
6242
+ }, import("@mittwald/api-client-commons").Response<{
6243
+ url?: string | undefined;
6244
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6245
+ [x: string]: unknown;
6246
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6247
+ [x: string]: unknown;
6248
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6249
+ [x: string]: unknown;
6250
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6256
6251
  headers?: Partial<{
6257
6252
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6258
6253
  }>;
6254
+ } & {
6255
+ pathParameters: {
6256
+ contributorId: string;
6257
+ };
6259
6258
  } & {
6260
6259
  headers: {
6261
6260
  "x-access-token"?: string | undefined;
@@ -6263,26 +6262,57 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6263
6262
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6264
6263
  }>;
6265
6264
  }, import("@mittwald/api-client-commons").Response<{
6266
- cleaningUpInstances: boolean;
6267
- currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6268
- id: string;
6265
+ url?: string | undefined;
6269
6266
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6270
6267
  [x: string]: unknown;
6268
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6269
+ [x: string]: unknown;
6271
6270
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6272
6271
  [x: string]: unknown;
6273
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6274
- data: {
6275
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6276
- };
6272
+ }, 429, "application/json">>>;
6273
+ /** List all invoices on behalf of a contributor. */
6274
+ contributorListOnbehalfInvoices: (request: {
6275
+ contributorId: string;
6276
+ headers?: {
6277
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6278
+ "x-access-token"?: string | undefined;
6279
+ } | undefined;
6280
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6281
+ headers?: Partial<{
6282
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6283
+ }>;
6277
6284
  } & {
6278
6285
  pathParameters: {
6279
6286
  contributorId: string;
6280
- extensionId: string;
6281
6287
  };
6282
6288
  } & {
6289
+ headers: {
6290
+ "x-access-token"?: string | undefined;
6291
+ } & Partial<{
6292
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6293
+ }>;
6294
+ }, import("@mittwald/api-client-commons").Response<{
6295
+ invoiceDate: string;
6296
+ invoiceId: string;
6297
+ invoiceNumber: string;
6298
+ pdfLink: string;
6299
+ totalGross: number;
6300
+ totalNet: number;
6301
+ webLink: string;
6302
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6303
+ [x: string]: unknown;
6304
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6305
+ [x: string]: unknown;
6306
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6307
+ [x: string]: unknown;
6308
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6283
6309
  headers?: Partial<{
6284
6310
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6285
6311
  }>;
6312
+ } & {
6313
+ pathParameters: {
6314
+ contributorId: string;
6315
+ };
6286
6316
  } & {
6287
6317
  headers: {
6288
6318
  "x-access-token"?: string | undefined;
@@ -6290,30 +6320,40 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6290
6320
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6291
6321
  }>;
6292
6322
  }, import("@mittwald/api-client-commons").Response<{
6293
- cleaningUpInstances: boolean;
6294
- currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6295
- id: string;
6296
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6323
+ invoiceDate: string;
6324
+ invoiceId: string;
6325
+ invoiceNumber: string;
6326
+ pdfLink: string;
6327
+ totalGross: number;
6328
+ totalNet: number;
6329
+ webLink: string;
6330
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6331
+ [x: string]: unknown;
6332
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6297
6333
  [x: string]: unknown;
6298
6334
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6299
6335
  [x: string]: unknown;
6300
6336
  }, 429, "application/json">>>;
6301
- /** Consent to extension scopes. */
6302
- extensionConsentToExtensionScopes: (request: {
6303
- data: {
6304
- consentedScopes: string[];
6305
- };
6337
+ /** Rotate the secret for an extension instance. */
6338
+ contributorRotateSecretForExtensionInstance: (request: {
6339
+ contributorId: string;
6340
+ extensionId: string;
6306
6341
  extensionInstanceId: string;
6342
+ data?: {
6343
+ allowWebhookFailure?: boolean | undefined;
6344
+ } | undefined;
6307
6345
  headers?: {
6308
6346
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6309
6347
  "x-access-token"?: string | undefined;
6310
6348
  } | undefined;
6311
6349
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6312
6350
  data: {
6313
- consentedScopes: string[];
6351
+ allowWebhookFailure?: boolean | undefined;
6314
6352
  };
6315
6353
  } & {
6316
6354
  pathParameters: {
6355
+ contributorId: string;
6356
+ extensionId: string;
6317
6357
  extensionInstanceId: string;
6318
6358
  };
6319
6359
  } & {
@@ -6326,16 +6366,26 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6326
6366
  } & Partial<{
6327
6367
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6328
6368
  }>;
6329
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6369
+ }, import("@mittwald/api-client-commons").Response<{
6370
+ secret: string;
6371
+ webhookResult: {
6372
+ failure: boolean;
6373
+ statusCode?: string;
6374
+ };
6375
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6330
6376
  [x: string]: unknown;
6331
6377
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6332
6378
  [x: string]: unknown;
6379
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6380
+ [x: string]: unknown;
6333
6381
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6334
6382
  data: {
6335
- consentedScopes: string[];
6383
+ allowWebhookFailure?: boolean | undefined;
6336
6384
  };
6337
6385
  } & {
6338
6386
  pathParameters: {
6387
+ contributorId: string;
6388
+ extensionId: string;
6339
6389
  extensionInstanceId: string;
6340
6390
  };
6341
6391
  } & {
@@ -6348,43 +6398,39 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6348
6398
  } & Partial<{
6349
6399
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6350
6400
  }>;
6351
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6401
+ }, import("@mittwald/api-client-commons").Response<{
6402
+ secret: string;
6403
+ webhookResult: {
6404
+ failure: boolean;
6405
+ statusCode?: string;
6406
+ };
6407
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6352
6408
  [x: string]: unknown;
6353
6409
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6354
6410
  [x: string]: unknown;
6411
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6412
+ [x: string]: unknown;
6355
6413
  }, 429, "application/json">>>;
6356
- /** List ExtensionInstances. */
6357
- extensionListExtensionInstances: (request?: {
6414
+ /** Authenticate your external application using the extensionInstanceSecret. */
6415
+ extensionAuthenticateInstance: (request: {
6416
+ data: {
6417
+ extensionInstanceSecret: string;
6418
+ };
6419
+ extensionInstanceId: string;
6358
6420
  headers?: {
6359
6421
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6360
6422
  "x-access-token"?: string | undefined;
6361
6423
  } | undefined;
6362
- queryParameters?: {
6363
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6364
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6365
- contextId?: string | undefined;
6366
- extensionId?: string | undefined;
6367
- limit?: number | undefined;
6368
- skip?: number | undefined;
6369
- page?: number | undefined;
6370
- sort?: ("createdAt" | "exensionId")[] | undefined;
6371
- order?: ("asc" | "desc")[] | undefined;
6372
- } | undefined;
6373
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6374
- headers?: Partial<{
6375
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6376
- }>;
6424
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6425
+ data: {
6426
+ extensionInstanceSecret: string;
6427
+ };
6377
6428
  } & {
6378
- queryParameters: {
6379
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6380
- contextId?: string | undefined;
6381
- extensionId?: string | undefined;
6382
- limit?: number | undefined;
6383
- skip?: number | undefined;
6384
- page?: number | undefined;
6385
- sort?: ("createdAt" | "exensionId")[] | undefined;
6386
- order?: ("asc" | "desc")[] | undefined;
6387
- } & Partial<{
6429
+ pathParameters: {
6430
+ extensionInstanceId: string;
6431
+ };
6432
+ } & {
6433
+ headers?: Partial<{
6388
6434
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6389
6435
  }>;
6390
6436
  } & {
@@ -6393,25 +6439,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6393
6439
  } & Partial<{
6394
6440
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6395
6441
  }>;
6396
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6397
- [x: string]: unknown;
6398
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6442
+ }, import("@mittwald/api-client-commons").Response<{
6443
+ expiry: string;
6444
+ publicToken: string;
6445
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6399
6446
  [x: string]: unknown;
6400
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6401
- headers?: Partial<{
6402
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6403
- }>;
6447
+ }, 400, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6448
+ data: {
6449
+ extensionInstanceSecret: string;
6450
+ };
6404
6451
  } & {
6405
- queryParameters: {
6406
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6407
- contextId?: string | undefined;
6408
- extensionId?: string | undefined;
6409
- limit?: number | undefined;
6410
- skip?: number | undefined;
6411
- page?: number | undefined;
6412
- sort?: ("createdAt" | "exensionId")[] | undefined;
6413
- order?: ("asc" | "desc")[] | undefined;
6414
- } & Partial<{
6452
+ pathParameters: {
6453
+ extensionInstanceId: string;
6454
+ };
6455
+ } & {
6456
+ headers?: Partial<{
6415
6457
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6416
6458
  }>;
6417
6459
  } & {
@@ -6420,18 +6462,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6420
6462
  } & Partial<{
6421
6463
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6422
6464
  }>;
6423
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6424
- [x: string]: unknown;
6425
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6465
+ }, import("@mittwald/api-client-commons").Response<{
6466
+ expiry: string;
6467
+ publicToken: string;
6468
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6426
6469
  [x: string]: unknown;
6427
- }, 429, "application/json">>>;
6428
- /** Create an ExtensionInstance. */
6429
- extensionCreateExtensionInstance: (request: {
6470
+ }, 400, "application/json">>>;
6471
+ /** Authenticate your external application using a session token and an extension secret */
6472
+ extensionAuthenticateWithSessionToken: (request: {
6430
6473
  data: {
6431
- consentedScopes: string[];
6432
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6433
- contextId: string;
6434
- extensionId: string;
6474
+ sessionToken: string;
6475
+ extensionSecret?: string | undefined;
6435
6476
  };
6436
6477
  headers?: {
6437
6478
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -6439,10 +6480,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6439
6480
  } | undefined;
6440
6481
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6441
6482
  data: {
6442
- consentedScopes: string[];
6443
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6444
- contextId: string;
6445
- extensionId: string;
6483
+ extensionSecret?: string | undefined;
6484
+ sessionToken: string;
6446
6485
  };
6447
6486
  } & {
6448
6487
  headers?: Partial<{
@@ -6455,24 +6494,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6455
6494
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6456
6495
  }>;
6457
6496
  }, import("@mittwald/api-client-commons").Response<{
6458
- id: string;
6497
+ expiry: string;
6498
+ publicToken: string;
6459
6499
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6460
6500
  [x: string]: unknown;
6461
6501
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6462
- message: string;
6463
- type: string;
6464
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6465
- [x: string]: unknown;
6466
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6467
6502
  [x: string]: unknown;
6468
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6469
- [x: string]: unknown;
6470
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6503
+ }, 404, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6471
6504
  data: {
6472
- consentedScopes: string[];
6473
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6474
- contextId: string;
6475
- extensionId: string;
6505
+ extensionSecret?: string | undefined;
6506
+ sessionToken: string;
6476
6507
  };
6477
6508
  } & {
6478
6509
  headers?: Partial<{
@@ -6485,34 +6516,35 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6485
6516
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6486
6517
  }>;
6487
6518
  }, import("@mittwald/api-client-commons").Response<{
6488
- id: string;
6519
+ expiry: string;
6520
+ publicToken: string;
6489
6521
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6490
6522
  [x: string]: unknown;
6491
6523
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6492
- message: string;
6493
- type: string;
6494
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6495
- [x: string]: unknown;
6496
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6497
- [x: string]: unknown;
6498
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6499
6524
  [x: string]: unknown;
6500
- }, 429, "application/json">>>;
6501
- /** Create an access token retrieval key for an extension instance. */
6502
- extensionCreateRetrievalKey: (request: {
6525
+ }, 404, "application/json">>>;
6526
+ /** Schedule an Extension Instance Termination for the next possible date. */
6527
+ extensionScheduleExtensionTermination: (request: {
6503
6528
  extensionInstanceId: string;
6529
+ data?: {
6530
+ instantTermination?: boolean | undefined;
6531
+ } | undefined;
6504
6532
  headers?: {
6505
6533
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6506
6534
  "x-access-token"?: string | undefined;
6507
6535
  } | undefined;
6508
6536
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6509
- headers?: Partial<{
6510
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6511
- }>;
6537
+ data: {
6538
+ instantTermination?: boolean | undefined;
6539
+ };
6512
6540
  } & {
6513
6541
  pathParameters: {
6514
6542
  extensionInstanceId: string;
6515
6543
  };
6544
+ } & {
6545
+ headers?: Partial<{
6546
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6547
+ }>;
6516
6548
  } & {
6517
6549
  headers: {
6518
6550
  "x-access-token"?: string | undefined;
@@ -6520,20 +6552,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6520
6552
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6521
6553
  }>;
6522
6554
  }, import("@mittwald/api-client-commons").Response<{
6523
- accessTokenRetrievalKey: string;
6524
- userId: string;
6525
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6555
+ extensionInstanceId: string;
6556
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6526
6557
  [x: string]: unknown;
6527
6558
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6528
6559
  [x: string]: unknown;
6560
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6561
+ [x: string]: unknown;
6529
6562
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6530
- headers?: Partial<{
6531
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6532
- }>;
6563
+ data: {
6564
+ instantTermination?: boolean | undefined;
6565
+ };
6533
6566
  } & {
6534
6567
  pathParameters: {
6535
6568
  extensionInstanceId: string;
6536
6569
  };
6570
+ } & {
6571
+ headers?: Partial<{
6572
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6573
+ }>;
6537
6574
  } & {
6538
6575
  headers: {
6539
6576
  "x-access-token"?: string | undefined;
@@ -6541,15 +6578,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6541
6578
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6542
6579
  }>;
6543
6580
  }, import("@mittwald/api-client-commons").Response<{
6544
- accessTokenRetrievalKey: string;
6545
- userId: string;
6546
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6581
+ extensionInstanceId: string;
6582
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6547
6583
  [x: string]: unknown;
6548
6584
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6549
6585
  [x: string]: unknown;
6586
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6587
+ [x: string]: unknown;
6550
6588
  }, 429, "application/json">>>;
6551
- /** Get an ExtensionInstance. */
6552
- extensionGetExtensionInstance: (request: {
6589
+ /** Cancel an Extension Instance Termination. */
6590
+ extensionCancelExtensionTermination: (request: {
6553
6591
  extensionInstanceId: string;
6554
6592
  headers?: {
6555
6593
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -6570,25 +6608,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6570
6608
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6571
6609
  }>;
6572
6610
  }, import("@mittwald/api-client-commons").Response<{
6573
- aggregateReference: {
6574
- aggregate: string;
6575
- domain: string;
6576
- id: string;
6577
- };
6578
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
6579
- consentedScopes: string[];
6580
- contributorId?: string | undefined;
6581
- contributorName: string;
6582
- createdAt?: string | undefined;
6583
- disabled: boolean;
6584
- extensionId: string;
6585
- extensionName: string;
6586
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
6587
- id: string;
6588
- pendingInstallation: boolean;
6589
- pendingRemoval: boolean;
6611
+ extensionInstanceId: string;
6590
6612
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6591
6613
  [x: string]: unknown;
6614
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6615
+ [x: string]: unknown;
6592
6616
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6593
6617
  [x: string]: unknown;
6594
6618
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -6606,43 +6630,38 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6606
6630
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6607
6631
  }>;
6608
6632
  }, import("@mittwald/api-client-commons").Response<{
6609
- aggregateReference: {
6610
- aggregate: string;
6611
- domain: string;
6612
- id: string;
6613
- };
6614
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
6615
- consentedScopes: string[];
6616
- contributorId?: string | undefined;
6617
- contributorName: string;
6618
- createdAt?: string | undefined;
6619
- disabled: boolean;
6620
- extensionId: string;
6621
- extensionName: string;
6622
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
6623
- id: string;
6624
- pendingInstallation: boolean;
6625
- pendingRemoval: boolean;
6633
+ extensionInstanceId: string;
6626
6634
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6627
6635
  [x: string]: unknown;
6636
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6637
+ [x: string]: unknown;
6628
6638
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6629
6639
  [x: string]: unknown;
6630
6640
  }, 429, "application/json">>>;
6631
- /** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
6632
- extensionDeleteExtensionInstance: (request: {
6633
- extensionInstanceId: string;
6641
+ /** Change the context of an Extension. */
6642
+ extensionChangeContext: (request: {
6643
+ data: {
6644
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6645
+ };
6646
+ contributorId: string;
6647
+ extensionId: string;
6634
6648
  headers?: {
6635
6649
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6636
6650
  "x-access-token"?: string | undefined;
6637
6651
  } | undefined;
6638
6652
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6639
- headers?: Partial<{
6640
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6641
- }>;
6653
+ data: {
6654
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6655
+ };
6642
6656
  } & {
6643
6657
  pathParameters: {
6644
- extensionInstanceId: string;
6658
+ contributorId: string;
6659
+ extensionId: string;
6645
6660
  };
6661
+ } & {
6662
+ headers?: Partial<{
6663
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6664
+ }>;
6646
6665
  } & {
6647
6666
  headers: {
6648
6667
  "x-access-token"?: string | undefined;
@@ -6650,21 +6669,26 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6650
6669
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6651
6670
  }>;
6652
6671
  }, import("@mittwald/api-client-commons").Response<{
6653
- [x: string]: unknown;
6654
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
6672
+ cleaningUpInstances: boolean;
6673
+ currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6674
+ id: string;
6675
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6655
6676
  [x: string]: unknown;
6656
6677
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6657
6678
  [x: string]: unknown;
6658
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6659
- [x: string]: unknown;
6660
6679
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6661
- headers?: Partial<{
6662
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6663
- }>;
6680
+ data: {
6681
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6682
+ };
6664
6683
  } & {
6665
6684
  pathParameters: {
6666
- extensionInstanceId: string;
6685
+ contributorId: string;
6686
+ extensionId: string;
6667
6687
  };
6688
+ } & {
6689
+ headers?: Partial<{
6690
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6691
+ }>;
6668
6692
  } & {
6669
6693
  headers: {
6670
6694
  "x-access-token"?: string | undefined;
@@ -6672,152 +6696,86 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6672
6696
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6673
6697
  }>;
6674
6698
  }, import("@mittwald/api-client-commons").Response<{
6675
- [x: string]: unknown;
6676
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
6699
+ cleaningUpInstances: boolean;
6700
+ currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6701
+ id: string;
6702
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6677
6703
  [x: string]: unknown;
6678
6704
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6679
6705
  [x: string]: unknown;
6680
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6681
- [x: string]: unknown;
6682
6706
  }, 429, "application/json">>>;
6683
- /** Get Extension of own contributor. */
6684
- extensionGetOwnExtension: (request: {
6685
- contributorId: string;
6686
- extensionId: string;
6707
+ /** Consent to extension scopes. */
6708
+ extensionConsentToExtensionScopes: (request: {
6709
+ data: {
6710
+ consentedScopes: string[];
6711
+ };
6712
+ extensionInstanceId: string;
6687
6713
  headers?: {
6688
6714
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6689
6715
  "x-access-token"?: string | undefined;
6690
6716
  } | undefined;
6691
6717
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6692
- headers?: Partial<{
6693
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6694
- }>;
6718
+ data: {
6719
+ consentedScopes: string[];
6720
+ };
6695
6721
  } & {
6696
6722
  pathParameters: {
6697
- contributorId: string;
6698
- extensionId: string;
6723
+ extensionInstanceId: string;
6699
6724
  };
6725
+ } & {
6726
+ headers?: Partial<{
6727
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6728
+ }>;
6700
6729
  } & {
6701
6730
  headers: {
6702
6731
  "x-access-token"?: string | undefined;
6703
6732
  } & Partial<{
6704
6733
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6705
6734
  }>;
6706
- }, import("@mittwald/api-client-commons").Response<{
6707
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
6708
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
6709
- blocked?: boolean | undefined;
6710
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6711
- contributorId: string;
6712
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
6713
- description?: string | undefined;
6714
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
6715
- disabled?: boolean | undefined;
6716
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
6717
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
6718
- frontendFragments?: {
6719
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
6720
- } | undefined;
6721
- functional: boolean;
6722
- id: string;
6723
- logoRefId?: string | undefined;
6724
- name: string;
6725
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
6726
- published: boolean;
6727
- requestedChanges?: {
6728
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6729
- scopes?: string[];
6730
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
6731
- } | undefined;
6732
- scopes?: string[] | undefined;
6733
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
6734
- state?: "enabled" | "blocked" | "disabled" | undefined;
6735
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
6736
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
6737
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
6738
- tags?: string[] | undefined;
6739
- verificationRequested: boolean;
6740
- verified: boolean;
6741
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
6742
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6735
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6743
6736
  [x: string]: unknown;
6744
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6737
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6745
6738
  [x: string]: unknown;
6746
6739
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6747
- headers?: Partial<{
6748
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6749
- }>;
6740
+ data: {
6741
+ consentedScopes: string[];
6742
+ };
6750
6743
  } & {
6751
6744
  pathParameters: {
6752
- contributorId: string;
6753
- extensionId: string;
6745
+ extensionInstanceId: string;
6754
6746
  };
6747
+ } & {
6748
+ headers?: Partial<{
6749
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6750
+ }>;
6755
6751
  } & {
6756
6752
  headers: {
6757
6753
  "x-access-token"?: string | undefined;
6758
6754
  } & Partial<{
6759
6755
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6760
6756
  }>;
6761
- }, import("@mittwald/api-client-commons").Response<{
6762
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
6763
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
6764
- blocked?: boolean | undefined;
6765
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6766
- contributorId: string;
6767
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
6768
- description?: string | undefined;
6769
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
6770
- disabled?: boolean | undefined;
6771
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
6772
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
6773
- frontendFragments?: {
6774
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
6775
- } | undefined;
6776
- functional: boolean;
6777
- id: string;
6778
- logoRefId?: string | undefined;
6779
- name: string;
6780
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
6781
- published: boolean;
6782
- requestedChanges?: {
6783
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6784
- scopes?: string[];
6785
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
6786
- } | undefined;
6787
- scopes?: string[] | undefined;
6788
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
6789
- state?: "enabled" | "blocked" | "disabled" | undefined;
6790
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
6791
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
6792
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
6793
- tags?: string[] | undefined;
6794
- verificationRequested: boolean;
6795
- verified: boolean;
6796
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
6797
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6757
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6798
6758
  [x: string]: unknown;
6799
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6759
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6800
6760
  [x: string]: unknown;
6801
6761
  }, 429, "application/json">>>;
6802
- /** Delete an extension. */
6803
- extensionDeleteExtension: (request: {
6762
+ /** Create the OnboardingProcess of a Contributor. */
6763
+ extensionCreateContributorOnboardingProcess: (request: {
6764
+ data: {
6765
+ shippingCountryRestriction: "onlyDomestic";
6766
+ };
6804
6767
  contributorId: string;
6805
- extensionId: string;
6806
- data?: {
6807
- reason?: string | undefined;
6808
- } | undefined;
6809
6768
  headers?: {
6810
6769
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6811
6770
  "x-access-token"?: string | undefined;
6812
6771
  } | undefined;
6813
6772
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6814
6773
  data: {
6815
- reason?: string | undefined;
6774
+ shippingCountryRestriction: "onlyDomestic";
6816
6775
  };
6817
6776
  } & {
6818
6777
  pathParameters: {
6819
6778
  contributorId: string;
6820
- extensionId: string;
6821
6779
  };
6822
6780
  } & {
6823
6781
  headers?: Partial<{
@@ -6829,18 +6787,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6829
6787
  } & Partial<{
6830
6788
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6831
6789
  }>;
6832
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6790
+ }, import("@mittwald/api-client-commons").Response<{
6791
+ contributorId?: string | undefined;
6792
+ onboardingLink?: string | undefined;
6793
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6794
+ [x: string]: unknown;
6795
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6833
6796
  [x: string]: unknown;
6834
6797
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6835
6798
  [x: string]: unknown;
6836
6799
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6837
6800
  data: {
6838
- reason?: string | undefined;
6801
+ shippingCountryRestriction: "onlyDomestic";
6839
6802
  };
6840
6803
  } & {
6841
6804
  pathParameters: {
6842
6805
  contributorId: string;
6843
- extensionId: string;
6844
6806
  };
6845
6807
  } & {
6846
6808
  headers?: Partial<{
@@ -6852,240 +6814,114 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6852
6814
  } & Partial<{
6853
6815
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6854
6816
  }>;
6855
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6817
+ }, import("@mittwald/api-client-commons").Response<{
6818
+ contributorId?: string | undefined;
6819
+ onboardingLink?: string | undefined;
6820
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6821
+ [x: string]: unknown;
6822
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6856
6823
  [x: string]: unknown;
6857
6824
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6858
6825
  [x: string]: unknown;
6859
6826
  }, 429, "application/json">>>;
6860
- /** Patch Extension. */
6861
- extensionPatchExtension: (request: {
6862
- contributorId: string;
6863
- extensionId: string;
6864
- data?: {
6865
- assets?: string[] | undefined;
6866
- deprecation?: {
6867
- deprecatedAt: string;
6868
- note?: string | undefined;
6869
- successorId?: string | undefined;
6870
- } | undefined;
6871
- description?: string | undefined;
6872
- detailedDescriptions?: {
6873
- de: {
6874
- markdown: string;
6875
- plain?: string | undefined;
6876
- };
6877
- en?: {
6878
- markdown: string;
6879
- plain?: string | undefined;
6880
- } | undefined;
6881
- } | undefined;
6882
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
6883
- frontendFragments?: {
6884
- [x: string]: {
6885
- url: string;
6886
- additionalProperties?: {
6887
- [x: string]: string;
6888
- } | undefined;
6889
- };
6890
- } | undefined;
6891
- name?: string | undefined;
6892
- scopes?: string[] | undefined;
6893
- subTitle?: {
6894
- de: string;
6895
- en?: string | undefined;
6896
- } | undefined;
6897
- support?: {
6898
- email?: string | undefined;
6899
- phone?: string | undefined;
6900
- } | undefined;
6901
- tags?: string[] | undefined;
6902
- webhookUrls?: {
6903
- extensionAddedToContext: {
6904
- url: string;
6905
- };
6906
- extensionInstanceRemovedFromContext: {
6907
- url: string;
6908
- };
6909
- extensionInstanceSecretRotated: {
6910
- url: string;
6911
- };
6912
- extensionInstanceUpdated: {
6913
- url: string;
6914
- };
6915
- } | undefined;
6916
- } | undefined;
6827
+ /** List ExtensionInstances. */
6828
+ extensionListExtensionInstances: (request?: {
6917
6829
  headers?: {
6918
6830
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6919
6831
  "x-access-token"?: string | undefined;
6920
6832
  } | undefined;
6921
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6922
- data: {
6923
- assets?: string[] | undefined;
6924
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
6925
- description?: string | undefined;
6926
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
6927
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
6928
- frontendFragments?: {
6929
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
6930
- } | undefined;
6931
- name?: string | undefined;
6932
- scopes?: string[] | undefined;
6933
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
6934
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
6935
- tags?: string[] | undefined;
6936
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
6937
- };
6938
- } & {
6939
- pathParameters: {
6940
- contributorId: string;
6941
- extensionId: string;
6942
- };
6943
- } & {
6833
+ queryParameters?: {
6834
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6835
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6836
+ contextId?: string | undefined;
6837
+ extensionId?: string | undefined;
6838
+ searchTerm?: string | undefined;
6839
+ limit?: number | undefined;
6840
+ skip?: number | undefined;
6841
+ page?: number | undefined;
6842
+ sort?: ("createdAt" | "exensionId")[] | undefined;
6843
+ order?: ("asc" | "desc")[] | undefined;
6844
+ } | undefined;
6845
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6944
6846
  headers?: Partial<{
6945
6847
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6946
6848
  }>;
6849
+ } & {
6850
+ queryParameters: {
6851
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6852
+ contextId?: string | undefined;
6853
+ extensionId?: string | undefined;
6854
+ searchTerm?: string | undefined;
6855
+ limit?: number | undefined;
6856
+ skip?: number | undefined;
6857
+ page?: number | undefined;
6858
+ sort?: ("createdAt" | "exensionId")[] | undefined;
6859
+ order?: ("asc" | "desc")[] | undefined;
6860
+ } & Partial<{
6861
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6862
+ }>;
6947
6863
  } & {
6948
6864
  headers: {
6949
6865
  "x-access-token"?: string | undefined;
6950
6866
  } & Partial<{
6951
6867
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6952
6868
  }>;
6953
- }, import("@mittwald/api-client-commons").Response<{
6954
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
6955
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
6956
- blocked?: boolean | undefined;
6957
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6958
- contributorId: string;
6959
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
6960
- description?: string | undefined;
6961
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
6962
- disabled?: boolean | undefined;
6963
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
6964
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
6965
- frontendFragments?: {
6966
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
6967
- } | undefined;
6968
- functional: boolean;
6969
- id: string;
6970
- logoRefId?: string | undefined;
6971
- name: string;
6972
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
6973
- published: boolean;
6974
- requestedChanges?: {
6975
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6976
- scopes?: string[];
6977
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
6978
- } | undefined;
6979
- scopes?: string[] | undefined;
6980
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
6981
- state?: "enabled" | "blocked" | "disabled" | undefined;
6982
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
6983
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
6984
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
6985
- tags?: string[] | undefined;
6986
- verificationRequested: boolean;
6987
- verified: boolean;
6988
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
6989
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6869
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6990
6870
  [x: string]: unknown;
6991
6871
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6992
6872
  [x: string]: unknown;
6993
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6994
- [x: string]: unknown;
6995
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
6996
- [x: string]: unknown;
6997
6873
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6998
- data: {
6999
- assets?: string[] | undefined;
7000
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7001
- description?: string | undefined;
7002
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7003
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7004
- frontendFragments?: {
7005
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7006
- } | undefined;
7007
- name?: string | undefined;
7008
- scopes?: string[] | undefined;
7009
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7010
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7011
- tags?: string[] | undefined;
7012
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7013
- };
7014
- } & {
7015
- pathParameters: {
7016
- contributorId: string;
7017
- extensionId: string;
7018
- };
7019
- } & {
7020
6874
  headers?: Partial<{
7021
6875
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7022
6876
  }>;
6877
+ } & {
6878
+ queryParameters: {
6879
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
6880
+ contextId?: string | undefined;
6881
+ extensionId?: string | undefined;
6882
+ searchTerm?: string | undefined;
6883
+ limit?: number | undefined;
6884
+ skip?: number | undefined;
6885
+ page?: number | undefined;
6886
+ sort?: ("createdAt" | "exensionId")[] | undefined;
6887
+ order?: ("asc" | "desc")[] | undefined;
6888
+ } & Partial<{
6889
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6890
+ }>;
7023
6891
  } & {
7024
6892
  headers: {
7025
6893
  "x-access-token"?: string | undefined;
7026
6894
  } & Partial<{
7027
6895
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7028
6896
  }>;
7029
- }, import("@mittwald/api-client-commons").Response<{
7030
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7031
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7032
- blocked?: boolean | undefined;
7033
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7034
- contributorId: string;
7035
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7036
- description?: string | undefined;
7037
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7038
- disabled?: boolean | undefined;
7039
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7040
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7041
- frontendFragments?: {
7042
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7043
- } | undefined;
7044
- functional: boolean;
7045
- id: string;
7046
- logoRefId?: string | undefined;
7047
- name: string;
7048
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
7049
- published: boolean;
7050
- requestedChanges?: {
7051
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7052
- scopes?: string[];
7053
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7054
- } | undefined;
7055
- scopes?: string[] | undefined;
7056
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7057
- state?: "enabled" | "blocked" | "disabled" | undefined;
7058
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7059
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7060
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7061
- tags?: string[] | undefined;
7062
- verificationRequested: boolean;
7063
- verified: boolean;
7064
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7065
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6897
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7066
6898
  [x: string]: unknown;
7067
6899
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7068
6900
  [x: string]: unknown;
7069
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7070
- [x: string]: unknown;
7071
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
7072
- [x: string]: unknown;
7073
6901
  }, 429, "application/json">>>;
7074
- /** Disable an ExtensionInstance. */
7075
- extensionDisableExtensionInstance: (request: {
7076
- extensionInstanceId: string;
6902
+ /** Create an ExtensionInstance. */
6903
+ extensionCreateExtensionInstance: (request: {
6904
+ data: {
6905
+ consentedScopes: string[];
6906
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6907
+ contextId: string;
6908
+ extensionId: string;
6909
+ };
7077
6910
  headers?: {
7078
6911
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7079
6912
  "x-access-token"?: string | undefined;
7080
6913
  } | undefined;
7081
6914
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6915
+ data: {
6916
+ consentedScopes: string[];
6917
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6918
+ contextId: string;
6919
+ extensionId: string;
6920
+ };
6921
+ } & {
7082
6922
  headers?: Partial<{
7083
6923
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7084
6924
  }>;
7085
- } & {
7086
- pathParameters: {
7087
- extensionInstanceId: string;
7088
- };
7089
6925
  } & {
7090
6926
  headers: {
7091
6927
  "x-access-token"?: string | undefined;
@@ -7093,19 +6929,29 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7093
6929
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7094
6930
  }>;
7095
6931
  }, import("@mittwald/api-client-commons").Response<{
7096
- [x: string]: unknown;
7097
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
6932
+ id: string;
6933
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7098
6934
  [x: string]: unknown;
7099
6935
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6936
+ message: string;
6937
+ type: string;
6938
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6939
+ [x: string]: unknown;
6940
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6941
+ [x: string]: unknown;
6942
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7100
6943
  [x: string]: unknown;
7101
6944
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6945
+ data: {
6946
+ consentedScopes: string[];
6947
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6948
+ contextId: string;
6949
+ extensionId: string;
6950
+ };
6951
+ } & {
7102
6952
  headers?: Partial<{
7103
6953
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7104
6954
  }>;
7105
- } & {
7106
- pathParameters: {
7107
- extensionInstanceId: string;
7108
- };
7109
6955
  } & {
7110
6956
  headers: {
7111
6957
  "x-access-token"?: string | undefined;
@@ -7113,51 +6959,34 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7113
6959
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7114
6960
  }>;
7115
6961
  }, import("@mittwald/api-client-commons").Response<{
7116
- [x: string]: unknown;
7117
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
6962
+ id: string;
6963
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7118
6964
  [x: string]: unknown;
7119
6965
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6966
+ message: string;
6967
+ type: string;
6968
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6969
+ [x: string]: unknown;
6970
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6971
+ [x: string]: unknown;
6972
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7120
6973
  [x: string]: unknown;
7121
6974
  }, 429, "application/json">>>;
7122
- /** Dry run a webhook with random or given values. */
7123
- extensionDryRunWebhook: (request: {
7124
- contributorId: string;
7125
- extensionId: string;
6975
+ /** Create an access token retrieval key for an extension instance. */
6976
+ extensionCreateRetrievalKey: (request: {
7126
6977
  extensionInstanceId: string;
7127
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7128
6978
  headers?: {
7129
6979
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7130
6980
  "x-access-token"?: string | undefined;
7131
6981
  } | undefined;
7132
- queryParameters?: {
7133
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7134
- contextId?: string | undefined;
7135
- scopes?: string[] | undefined;
7136
- instanceDisabled?: boolean | undefined;
7137
- createdAt?: string | undefined;
7138
- secret?: string | undefined;
7139
- } | undefined;
7140
6982
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7141
6983
  headers?: Partial<{
7142
6984
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7143
6985
  }>;
7144
6986
  } & {
7145
6987
  pathParameters: {
7146
- contributorId: string;
7147
- extensionId: string;
7148
6988
  extensionInstanceId: string;
7149
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7150
6989
  };
7151
- } & {
7152
- queryParameters: {
7153
- contextId?: string | undefined;
7154
- scopes?: string[] | undefined;
7155
- instanceDisabled?: boolean | undefined;
7156
- createdAt?: string | undefined;
7157
- secret?: string | undefined;
7158
- } & Partial<{
7159
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7160
- }>;
7161
6990
  } & {
7162
6991
  headers: {
7163
6992
  "x-access-token"?: string | undefined;
@@ -7165,12 +6994,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7165
6994
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7166
6995
  }>;
7167
6996
  }, import("@mittwald/api-client-commons").Response<{
7168
- errorMessage?: string | undefined;
7169
- responseBody?: string | undefined;
7170
- responseCode?: number | undefined;
7171
- responseHeaders?: string | undefined;
7172
- routeCalled: string;
7173
- successful: boolean;
6997
+ accessTokenRetrievalKey: string;
6998
+ userId: string;
7174
6999
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7175
7000
  [x: string]: unknown;
7176
7001
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -7181,21 +7006,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7181
7006
  }>;
7182
7007
  } & {
7183
7008
  pathParameters: {
7184
- contributorId: string;
7185
- extensionId: string;
7186
7009
  extensionInstanceId: string;
7187
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7188
7010
  };
7189
- } & {
7190
- queryParameters: {
7191
- contextId?: string | undefined;
7192
- scopes?: string[] | undefined;
7193
- instanceDisabled?: boolean | undefined;
7194
- createdAt?: string | undefined;
7195
- secret?: string | undefined;
7196
- } & Partial<{
7197
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7198
- }>;
7199
7011
  } & {
7200
7012
  headers: {
7201
7013
  "x-access-token"?: string | undefined;
@@ -7203,19 +7015,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7203
7015
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7204
7016
  }>;
7205
7017
  }, import("@mittwald/api-client-commons").Response<{
7206
- errorMessage?: string | undefined;
7207
- responseBody?: string | undefined;
7208
- responseCode?: number | undefined;
7209
- responseHeaders?: string | undefined;
7210
- routeCalled: string;
7211
- successful: boolean;
7018
+ accessTokenRetrievalKey: string;
7019
+ userId: string;
7212
7020
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7213
7021
  [x: string]: unknown;
7214
7022
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7215
7023
  [x: string]: unknown;
7216
7024
  }, 429, "application/json">>>;
7217
- /** Enable an ExtensionInstance. */
7218
- extensionEnableExtensionInstance: (request: {
7025
+ /** Get an ExtensionInstance. */
7026
+ extensionGetExtensionInstance: (request: {
7219
7027
  extensionInstanceId: string;
7220
7028
  headers?: {
7221
7029
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -7236,10 +7044,26 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7236
7044
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7237
7045
  }>;
7238
7046
  }, import("@mittwald/api-client-commons").Response<{
7047
+ aggregateReference: {
7048
+ aggregate: string;
7049
+ domain: string;
7050
+ id: string;
7051
+ };
7052
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7053
+ consentedScopes: string[];
7054
+ contributorId?: string | undefined;
7055
+ contributorName: string;
7056
+ createdAt?: string | undefined;
7057
+ disabled: boolean;
7058
+ extensionId: string;
7059
+ extensionName: string;
7060
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7061
+ id: string;
7062
+ pendingInstallation: boolean;
7063
+ pendingRemoval: boolean;
7064
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7239
7065
  [x: string]: unknown;
7240
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7241
- [x: string]: unknown;
7242
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7066
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7243
7067
  [x: string]: unknown;
7244
7068
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7245
7069
  headers?: Partial<{
@@ -7256,28 +7080,42 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7256
7080
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7257
7081
  }>;
7258
7082
  }, import("@mittwald/api-client-commons").Response<{
7259
- [x: string]: unknown;
7260
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7261
- [x: string]: unknown;
7262
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7263
- [x: string]: unknown;
7264
- }, 429, "application/json">>>;
7265
- /** Generate an Extension secret for the given Extension. */
7266
- extensionGenerateExtensionSecret: (request: {
7267
- contributorId: string;
7268
- extensionId: string;
7269
- headers?: {
7270
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7271
- "x-access-token"?: string | undefined;
7272
- } | undefined;
7273
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7274
- headers?: Partial<{
7275
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7083
+ aggregateReference: {
7084
+ aggregate: string;
7085
+ domain: string;
7086
+ id: string;
7087
+ };
7088
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7089
+ consentedScopes: string[];
7090
+ contributorId?: string | undefined;
7091
+ contributorName: string;
7092
+ createdAt?: string | undefined;
7093
+ disabled: boolean;
7094
+ extensionId: string;
7095
+ extensionName: string;
7096
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7097
+ id: string;
7098
+ pendingInstallation: boolean;
7099
+ pendingRemoval: boolean;
7100
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7101
+ [x: string]: unknown;
7102
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7103
+ [x: string]: unknown;
7104
+ }, 429, "application/json">>>;
7105
+ /** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
7106
+ extensionDeleteExtensionInstance: (request: {
7107
+ extensionInstanceId: string;
7108
+ headers?: {
7109
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7110
+ "x-access-token"?: string | undefined;
7111
+ } | undefined;
7112
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7113
+ headers?: Partial<{
7114
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7276
7115
  }>;
7277
7116
  } & {
7278
7117
  pathParameters: {
7279
- contributorId: string;
7280
- extensionId: string;
7118
+ extensionInstanceId: string;
7281
7119
  };
7282
7120
  } & {
7283
7121
  headers: {
@@ -7286,11 +7124,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7286
7124
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7287
7125
  }>;
7288
7126
  }, import("@mittwald/api-client-commons").Response<{
7289
- secret: string;
7290
- secretId: string;
7291
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7292
7127
  [x: string]: unknown;
7293
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7128
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7294
7129
  [x: string]: unknown;
7295
7130
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7296
7131
  [x: string]: unknown;
@@ -7302,8 +7137,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7302
7137
  }>;
7303
7138
  } & {
7304
7139
  pathParameters: {
7305
- contributorId: string;
7306
- extensionId: string;
7140
+ extensionInstanceId: string;
7307
7141
  };
7308
7142
  } & {
7309
7143
  headers: {
@@ -7312,21 +7146,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7312
7146
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7313
7147
  }>;
7314
7148
  }, import("@mittwald/api-client-commons").Response<{
7315
- secret: string;
7316
- secretId: string;
7317
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7318
7149
  [x: string]: unknown;
7319
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7150
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7320
7151
  [x: string]: unknown;
7321
7152
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7322
7153
  [x: string]: unknown;
7323
7154
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7324
7155
  [x: string]: unknown;
7325
7156
  }, 429, "application/json">>>;
7326
- /** Generate a session token to transmit it to the extensions frontend fragment. */
7327
- extensionGenerateSessionToken: (request: {
7328
- extensionInstanceId: string;
7329
- sessionId: string;
7157
+ /** Get Extension of own contributor. */
7158
+ extensionGetOwnExtension: (request: {
7159
+ contributorId: string;
7160
+ extensionId: string;
7330
7161
  headers?: {
7331
7162
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7332
7163
  "x-access-token"?: string | undefined;
@@ -7337,8 +7168,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7337
7168
  }>;
7338
7169
  } & {
7339
7170
  pathParameters: {
7340
- extensionInstanceId: string;
7341
- sessionId: string;
7171
+ contributorId: string;
7172
+ extensionId: string;
7342
7173
  };
7343
7174
  } & {
7344
7175
  headers: {
@@ -7347,11 +7178,43 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7347
7178
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7348
7179
  }>;
7349
7180
  }, import("@mittwald/api-client-commons").Response<{
7350
- sessionToken: string;
7181
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7182
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7183
+ blocked?: boolean | undefined;
7184
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7185
+ contributorId: string;
7186
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7187
+ description?: string | undefined;
7188
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7189
+ disabled?: boolean | undefined;
7190
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7191
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7192
+ frontendFragments?: {
7193
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7194
+ } | undefined;
7195
+ functional: boolean;
7196
+ id: string;
7197
+ logoRefId?: string | undefined;
7198
+ name: string;
7199
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
7200
+ published: boolean;
7201
+ requestedChanges?: {
7202
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7203
+ scopes?: string[];
7204
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7205
+ } | undefined;
7206
+ scopes?: string[] | undefined;
7207
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7208
+ state?: "enabled" | "blocked" | "disabled" | undefined;
7209
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7210
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7211
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7212
+ tags?: string[] | undefined;
7213
+ verificationRequested: boolean;
7214
+ verified: boolean;
7215
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7351
7216
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7352
7217
  [x: string]: unknown;
7353
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7354
- [x: string]: unknown;
7355
7218
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7356
7219
  [x: string]: unknown;
7357
7220
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -7360,8 +7223,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7360
7223
  }>;
7361
7224
  } & {
7362
7225
  pathParameters: {
7363
- extensionInstanceId: string;
7364
- sessionId: string;
7226
+ contributorId: string;
7227
+ extensionId: string;
7365
7228
  };
7366
7229
  } & {
7367
7230
  headers: {
@@ -7370,145 +7233,191 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7370
7233
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7371
7234
  }>;
7372
7235
  }, import("@mittwald/api-client-commons").Response<{
7373
- sessionToken: string;
7236
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7237
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7238
+ blocked?: boolean | undefined;
7239
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7240
+ contributorId: string;
7241
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7242
+ description?: string | undefined;
7243
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7244
+ disabled?: boolean | undefined;
7245
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7246
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7247
+ frontendFragments?: {
7248
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7249
+ } | undefined;
7250
+ functional: boolean;
7251
+ id: string;
7252
+ logoRefId?: string | undefined;
7253
+ name: string;
7254
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
7255
+ published: boolean;
7256
+ requestedChanges?: {
7257
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7258
+ scopes?: string[];
7259
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7260
+ } | undefined;
7261
+ scopes?: string[] | undefined;
7262
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7263
+ state?: "enabled" | "blocked" | "disabled" | undefined;
7264
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7265
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7266
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7267
+ tags?: string[] | undefined;
7268
+ verificationRequested: boolean;
7269
+ verified: boolean;
7270
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7374
7271
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7375
7272
  [x: string]: unknown;
7376
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7377
- [x: string]: unknown;
7378
7273
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7379
7274
  [x: string]: unknown;
7380
7275
  }, 429, "application/json">>>;
7381
- /** Get a Contributor. */
7382
- extensionGetContributor: (request: {
7276
+ /** Delete an extension. */
7277
+ extensionDeleteExtension: (request: {
7383
7278
  contributorId: string;
7279
+ extensionId: string;
7280
+ data?: {
7281
+ reason?: string | undefined;
7282
+ } | undefined;
7384
7283
  headers?: {
7385
7284
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7285
+ "x-access-token"?: string | undefined;
7386
7286
  } | undefined;
7387
7287
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7388
- headers?: Partial<{
7389
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7390
- }>;
7391
- } & {
7392
- pathParameters: {
7393
- contributorId: string;
7288
+ data: {
7289
+ reason?: string | undefined;
7394
7290
  };
7395
- }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7396
- [x: string]: unknown;
7397
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7398
- [x: string]: unknown;
7399
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7400
- headers?: Partial<{
7401
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7402
- }>;
7403
7291
  } & {
7404
7292
  pathParameters: {
7405
7293
  contributorId: string;
7294
+ extensionId: string;
7406
7295
  };
7407
- }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7408
- [x: string]: unknown;
7409
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7410
- [x: string]: unknown;
7411
- }, 429, "application/json">>>;
7412
- /** Get the ExtensionInstance of a specific customer and extension, if existing. */
7413
- extensionGetExtensionInstanceForCustomer: (request: {
7414
- customerId: string;
7415
- extensionId: string;
7416
- headers?: {
7417
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7418
- "x-access-token"?: string | undefined;
7419
- } | undefined;
7420
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7296
+ } & {
7421
7297
  headers?: Partial<{
7422
7298
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7423
7299
  }>;
7424
- } & {
7425
- pathParameters: {
7426
- customerId: string;
7427
- extensionId: string;
7428
- };
7429
7300
  } & {
7430
7301
  headers: {
7431
7302
  "x-access-token"?: string | undefined;
7432
7303
  } & Partial<{
7433
7304
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7434
7305
  }>;
7435
- }, import("@mittwald/api-client-commons").Response<{
7436
- aggregateReference: {
7437
- aggregate: string;
7438
- domain: string;
7439
- id: string;
7440
- };
7441
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7442
- consentedScopes: string[];
7443
- contributorId?: string | undefined;
7444
- contributorName: string;
7445
- createdAt?: string | undefined;
7446
- disabled: boolean;
7447
- extensionId: string;
7448
- extensionName: string;
7449
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7450
- id: string;
7451
- pendingInstallation: boolean;
7452
- pendingRemoval: boolean;
7453
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7306
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7454
7307
  [x: string]: unknown;
7455
7308
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7456
7309
  [x: string]: unknown;
7457
7310
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7458
- headers?: Partial<{
7459
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7460
- }>;
7311
+ data: {
7312
+ reason?: string | undefined;
7313
+ };
7461
7314
  } & {
7462
7315
  pathParameters: {
7463
- customerId: string;
7316
+ contributorId: string;
7464
7317
  extensionId: string;
7465
7318
  };
7319
+ } & {
7320
+ headers?: Partial<{
7321
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7322
+ }>;
7466
7323
  } & {
7467
7324
  headers: {
7468
7325
  "x-access-token"?: string | undefined;
7469
7326
  } & Partial<{
7470
7327
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7471
7328
  }>;
7472
- }, import("@mittwald/api-client-commons").Response<{
7473
- aggregateReference: {
7474
- aggregate: string;
7475
- domain: string;
7476
- id: string;
7477
- };
7478
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7479
- consentedScopes: string[];
7480
- contributorId?: string | undefined;
7481
- contributorName: string;
7482
- createdAt?: string | undefined;
7483
- disabled: boolean;
7484
- extensionId: string;
7485
- extensionName: string;
7486
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7487
- id: string;
7488
- pendingInstallation: boolean;
7489
- pendingRemoval: boolean;
7490
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7329
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7491
7330
  [x: string]: unknown;
7492
7331
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7493
7332
  [x: string]: unknown;
7494
7333
  }, 429, "application/json">>>;
7495
- /** Get the ExtensionInstance of a specific project and extension, if existing. */
7496
- extensionGetExtensionInstanceForProject: (request: {
7497
- projectId: string;
7334
+ /** Patch Extension. */
7335
+ extensionPatchExtension: (request: {
7336
+ contributorId: string;
7498
7337
  extensionId: string;
7499
- headers?: {
7500
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7501
- "x-access-token"?: string | undefined;
7502
- } | undefined;
7503
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7504
- headers?: Partial<{
7505
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7506
- }>;
7507
- } & {
7508
- pathParameters: {
7509
- projectId: string;
7510
- extensionId: string;
7338
+ data?: {
7339
+ assets?: string[] | undefined;
7340
+ deprecation?: {
7341
+ deprecatedAt: string;
7342
+ note?: string | undefined;
7343
+ successorId?: string | undefined;
7344
+ } | undefined;
7345
+ description?: string | undefined;
7346
+ detailedDescriptions?: {
7347
+ de: {
7348
+ markdown: string;
7349
+ plain?: string | undefined;
7350
+ };
7351
+ en?: {
7352
+ markdown: string;
7353
+ plain?: string | undefined;
7354
+ } | undefined;
7355
+ } | undefined;
7356
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7357
+ frontendFragments?: {
7358
+ [x: string]: {
7359
+ url: string;
7360
+ additionalProperties?: {
7361
+ [x: string]: string;
7362
+ } | undefined;
7363
+ };
7364
+ } | undefined;
7365
+ name?: string | undefined;
7366
+ scopes?: string[] | undefined;
7367
+ subTitle?: {
7368
+ de: string;
7369
+ en?: string | undefined;
7370
+ } | undefined;
7371
+ support?: {
7372
+ email?: string | undefined;
7373
+ phone?: string | undefined;
7374
+ } | undefined;
7375
+ tags?: string[] | undefined;
7376
+ webhookUrls?: {
7377
+ extensionAddedToContext: {
7378
+ url: string;
7379
+ };
7380
+ extensionInstanceRemovedFromContext: {
7381
+ url: string;
7382
+ };
7383
+ extensionInstanceSecretRotated: {
7384
+ url: string;
7385
+ };
7386
+ extensionInstanceUpdated: {
7387
+ url: string;
7388
+ };
7389
+ } | undefined;
7390
+ } | undefined;
7391
+ headers?: {
7392
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7393
+ "x-access-token"?: string | undefined;
7394
+ } | undefined;
7395
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7396
+ data: {
7397
+ assets?: string[] | undefined;
7398
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7399
+ description?: string | undefined;
7400
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7401
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7402
+ frontendFragments?: {
7403
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7404
+ } | undefined;
7405
+ name?: string | undefined;
7406
+ scopes?: string[] | undefined;
7407
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7408
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7409
+ tags?: string[] | undefined;
7410
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7411
+ };
7412
+ } & {
7413
+ pathParameters: {
7414
+ contributorId: string;
7415
+ extensionId: string;
7511
7416
  };
7417
+ } & {
7418
+ headers?: Partial<{
7419
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7420
+ }>;
7512
7421
  } & {
7513
7422
  headers: {
7514
7423
  "x-access-token"?: string | undefined;
@@ -7516,36 +7425,75 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7516
7425
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7517
7426
  }>;
7518
7427
  }, import("@mittwald/api-client-commons").Response<{
7519
- aggregateReference: {
7520
- aggregate: string;
7521
- domain: string;
7522
- id: string;
7523
- };
7524
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7525
- consentedScopes: string[];
7526
- contributorId?: string | undefined;
7527
- contributorName: string;
7528
- createdAt?: string | undefined;
7529
- disabled: boolean;
7530
- extensionId: string;
7531
- extensionName: string;
7532
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7428
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7429
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7430
+ blocked?: boolean | undefined;
7431
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7432
+ contributorId: string;
7433
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7434
+ description?: string | undefined;
7435
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7436
+ disabled?: boolean | undefined;
7437
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7438
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7439
+ frontendFragments?: {
7440
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7441
+ } | undefined;
7442
+ functional: boolean;
7533
7443
  id: string;
7534
- pendingInstallation: boolean;
7535
- pendingRemoval: boolean;
7444
+ logoRefId?: string | undefined;
7445
+ name: string;
7446
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
7447
+ published: boolean;
7448
+ requestedChanges?: {
7449
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7450
+ scopes?: string[];
7451
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7452
+ } | undefined;
7453
+ scopes?: string[] | undefined;
7454
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7455
+ state?: "enabled" | "blocked" | "disabled" | undefined;
7456
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7457
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7458
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7459
+ tags?: string[] | undefined;
7460
+ verificationRequested: boolean;
7461
+ verified: boolean;
7462
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7536
7463
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7537
7464
  [x: string]: unknown;
7465
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7466
+ [x: string]: unknown;
7538
7467
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7539
7468
  [x: string]: unknown;
7469
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
7470
+ [x: string]: unknown;
7540
7471
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7541
- headers?: Partial<{
7542
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7543
- }>;
7472
+ data: {
7473
+ assets?: string[] | undefined;
7474
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7475
+ description?: string | undefined;
7476
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7477
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7478
+ frontendFragments?: {
7479
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7480
+ } | undefined;
7481
+ name?: string | undefined;
7482
+ scopes?: string[] | undefined;
7483
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7484
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7485
+ tags?: string[] | undefined;
7486
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7487
+ };
7544
7488
  } & {
7545
7489
  pathParameters: {
7546
- projectId: string;
7490
+ contributorId: string;
7547
7491
  extensionId: string;
7548
7492
  };
7493
+ } & {
7494
+ headers?: Partial<{
7495
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7496
+ }>;
7549
7497
  } & {
7550
7498
  headers: {
7551
7499
  "x-access-token"?: string | undefined;
@@ -7553,33 +7501,56 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7553
7501
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7554
7502
  }>;
7555
7503
  }, import("@mittwald/api-client-commons").Response<{
7556
- aggregateReference: {
7557
- aggregate: string;
7558
- domain: string;
7559
- id: string;
7560
- };
7561
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7562
- consentedScopes: string[];
7563
- contributorId?: string | undefined;
7564
- contributorName: string;
7565
- createdAt?: string | undefined;
7566
- disabled: boolean;
7567
- extensionId: string;
7568
- extensionName: string;
7569
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7504
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7505
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7506
+ blocked?: boolean | undefined;
7507
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7508
+ contributorId: string;
7509
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7510
+ description?: string | undefined;
7511
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7512
+ disabled?: boolean | undefined;
7513
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7514
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7515
+ frontendFragments?: {
7516
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7517
+ } | undefined;
7518
+ functional: boolean;
7570
7519
  id: string;
7571
- pendingInstallation: boolean;
7572
- pendingRemoval: boolean;
7520
+ logoRefId?: string | undefined;
7521
+ name: string;
7522
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
7523
+ published: boolean;
7524
+ requestedChanges?: {
7525
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7526
+ scopes?: string[];
7527
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7528
+ } | undefined;
7529
+ scopes?: string[] | undefined;
7530
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7531
+ state?: "enabled" | "blocked" | "disabled" | undefined;
7532
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7533
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7534
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7535
+ tags?: string[] | undefined;
7536
+ verificationRequested: boolean;
7537
+ verified: boolean;
7538
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7573
7539
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7574
7540
  [x: string]: unknown;
7541
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7542
+ [x: string]: unknown;
7575
7543
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7576
7544
  [x: string]: unknown;
7545
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
7546
+ [x: string]: unknown;
7577
7547
  }, 429, "application/json">>>;
7578
- /** Get an Extension. */
7579
- extensionGetExtension: (request: {
7580
- extensionId: string;
7548
+ /** Disable an ExtensionInstance. */
7549
+ extensionDisableExtensionInstance: (request: {
7550
+ extensionInstanceId: string;
7581
7551
  headers?: {
7582
7552
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7553
+ "x-access-token"?: string | undefined;
7583
7554
  } | undefined;
7584
7555
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7585
7556
  headers?: Partial<{
@@ -7587,11 +7558,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7587
7558
  }>;
7588
7559
  } & {
7589
7560
  pathParameters: {
7590
- extensionId: string;
7561
+ extensionInstanceId: string;
7591
7562
  };
7592
- }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7563
+ } & {
7564
+ headers: {
7565
+ "x-access-token"?: string | undefined;
7566
+ } & Partial<{
7567
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7568
+ }>;
7569
+ }, import("@mittwald/api-client-commons").Response<{
7593
7570
  [x: string]: unknown;
7594
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7571
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7572
+ [x: string]: unknown;
7573
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7595
7574
  [x: string]: unknown;
7596
7575
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7597
7576
  headers?: Partial<{
@@ -7599,76 +7578,1238 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7599
7578
  }>;
7600
7579
  } & {
7601
7580
  pathParameters: {
7602
- extensionId: string;
7581
+ extensionInstanceId: string;
7603
7582
  };
7604
- }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7583
+ } & {
7584
+ headers: {
7585
+ "x-access-token"?: string | undefined;
7586
+ } & Partial<{
7587
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7588
+ }>;
7589
+ }, import("@mittwald/api-client-commons").Response<{
7605
7590
  [x: string]: unknown;
7606
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7591
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7592
+ [x: string]: unknown;
7593
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7607
7594
  [x: string]: unknown;
7608
7595
  }, 429, "application/json">>>;
7609
- /** Get the public key to verify the webhook signature. */
7610
- extensionGetPublicKey: (request: {
7611
- serial: string;
7596
+ /** Dry run a webhook with random or given values. */
7597
+ extensionDryRunWebhook: (request: {
7598
+ contributorId: string;
7599
+ extensionId: string;
7600
+ extensionInstanceId: string;
7601
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7602
+ headers?: {
7603
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7604
+ "x-access-token"?: string | undefined;
7605
+ } | undefined;
7606
+ queryParameters?: {
7607
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7608
+ contextId?: string | undefined;
7609
+ scopes?: string[] | undefined;
7610
+ instanceDisabled?: boolean | undefined;
7611
+ createdAt?: string | undefined;
7612
+ secret?: string | undefined;
7613
+ } | undefined;
7614
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7615
+ headers?: Partial<{
7616
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7617
+ }>;
7618
+ } & {
7619
+ pathParameters: {
7620
+ contributorId: string;
7621
+ extensionId: string;
7622
+ extensionInstanceId: string;
7623
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7624
+ };
7625
+ } & {
7626
+ queryParameters: {
7627
+ contextId?: string | undefined;
7628
+ scopes?: string[] | undefined;
7629
+ instanceDisabled?: boolean | undefined;
7630
+ createdAt?: string | undefined;
7631
+ secret?: string | undefined;
7632
+ } & Partial<{
7633
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7634
+ }>;
7635
+ } & {
7636
+ headers: {
7637
+ "x-access-token"?: string | undefined;
7638
+ } & Partial<{
7639
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7640
+ }>;
7641
+ }, import("@mittwald/api-client-commons").Response<{
7642
+ errorMessage?: string | undefined;
7643
+ responseBody?: string | undefined;
7644
+ responseCode?: number | undefined;
7645
+ responseHeaders?: string | undefined;
7646
+ routeCalled: string;
7647
+ successful: boolean;
7648
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7649
+ [x: string]: unknown;
7650
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7651
+ [x: string]: unknown;
7652
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7653
+ headers?: Partial<{
7654
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7655
+ }>;
7656
+ } & {
7657
+ pathParameters: {
7658
+ contributorId: string;
7659
+ extensionId: string;
7660
+ extensionInstanceId: string;
7661
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7662
+ };
7663
+ } & {
7664
+ queryParameters: {
7665
+ contextId?: string | undefined;
7666
+ scopes?: string[] | undefined;
7667
+ instanceDisabled?: boolean | undefined;
7668
+ createdAt?: string | undefined;
7669
+ secret?: string | undefined;
7670
+ } & Partial<{
7671
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7672
+ }>;
7673
+ } & {
7674
+ headers: {
7675
+ "x-access-token"?: string | undefined;
7676
+ } & Partial<{
7677
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7678
+ }>;
7679
+ }, import("@mittwald/api-client-commons").Response<{
7680
+ errorMessage?: string | undefined;
7681
+ responseBody?: string | undefined;
7682
+ responseCode?: number | undefined;
7683
+ responseHeaders?: string | undefined;
7684
+ routeCalled: string;
7685
+ successful: boolean;
7686
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7687
+ [x: string]: unknown;
7688
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7689
+ [x: string]: unknown;
7690
+ }, 429, "application/json">>>;
7691
+ /** Enable an ExtensionInstance. */
7692
+ extensionEnableExtensionInstance: (request: {
7693
+ extensionInstanceId: string;
7694
+ headers?: {
7695
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7696
+ "x-access-token"?: string | undefined;
7697
+ } | undefined;
7698
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7699
+ headers?: Partial<{
7700
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7701
+ }>;
7702
+ } & {
7703
+ pathParameters: {
7704
+ extensionInstanceId: string;
7705
+ };
7706
+ } & {
7707
+ headers: {
7708
+ "x-access-token"?: string | undefined;
7709
+ } & Partial<{
7710
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7711
+ }>;
7712
+ }, import("@mittwald/api-client-commons").Response<{
7713
+ [x: string]: unknown;
7714
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7715
+ [x: string]: unknown;
7716
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7717
+ [x: string]: unknown;
7718
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7719
+ headers?: Partial<{
7720
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7721
+ }>;
7722
+ } & {
7723
+ pathParameters: {
7724
+ extensionInstanceId: string;
7725
+ };
7726
+ } & {
7727
+ headers: {
7728
+ "x-access-token"?: string | undefined;
7729
+ } & Partial<{
7730
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7731
+ }>;
7732
+ }, import("@mittwald/api-client-commons").Response<{
7733
+ [x: string]: unknown;
7734
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7735
+ [x: string]: unknown;
7736
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7737
+ [x: string]: unknown;
7738
+ }, 429, "application/json">>>;
7739
+ /** Generate an Extension secret for the given Extension. */
7740
+ extensionGenerateExtensionSecret: (request: {
7741
+ contributorId: string;
7742
+ extensionId: string;
7743
+ headers?: {
7744
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7745
+ "x-access-token"?: string | undefined;
7746
+ } | undefined;
7747
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7748
+ headers?: Partial<{
7749
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7750
+ }>;
7751
+ } & {
7752
+ pathParameters: {
7753
+ contributorId: string;
7754
+ extensionId: string;
7755
+ };
7756
+ } & {
7757
+ headers: {
7758
+ "x-access-token"?: string | undefined;
7759
+ } & Partial<{
7760
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7761
+ }>;
7762
+ }, import("@mittwald/api-client-commons").Response<{
7763
+ secret: string;
7764
+ secretId: string;
7765
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7766
+ [x: string]: unknown;
7767
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7768
+ [x: string]: unknown;
7769
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7770
+ [x: string]: unknown;
7771
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7772
+ [x: string]: unknown;
7773
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7774
+ headers?: Partial<{
7775
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7776
+ }>;
7777
+ } & {
7778
+ pathParameters: {
7779
+ contributorId: string;
7780
+ extensionId: string;
7781
+ };
7782
+ } & {
7783
+ headers: {
7784
+ "x-access-token"?: string | undefined;
7785
+ } & Partial<{
7786
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7787
+ }>;
7788
+ }, import("@mittwald/api-client-commons").Response<{
7789
+ secret: string;
7790
+ secretId: string;
7791
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7792
+ [x: string]: unknown;
7793
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7794
+ [x: string]: unknown;
7795
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7796
+ [x: string]: unknown;
7797
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7798
+ [x: string]: unknown;
7799
+ }, 429, "application/json">>>;
7800
+ /** Generate a session token to transmit it to the extensions frontend fragment. */
7801
+ extensionGenerateSessionToken: (request: {
7802
+ extensionInstanceId: string;
7803
+ sessionId: string;
7804
+ headers?: {
7805
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7806
+ "x-access-token"?: string | undefined;
7807
+ } | undefined;
7808
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7809
+ headers?: Partial<{
7810
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7811
+ }>;
7812
+ } & {
7813
+ pathParameters: {
7814
+ extensionInstanceId: string;
7815
+ sessionId: string;
7816
+ };
7817
+ } & {
7818
+ headers: {
7819
+ "x-access-token"?: string | undefined;
7820
+ } & Partial<{
7821
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7822
+ }>;
7823
+ }, import("@mittwald/api-client-commons").Response<{
7824
+ sessionToken: string;
7825
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7826
+ [x: string]: unknown;
7827
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7828
+ [x: string]: unknown;
7829
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7830
+ [x: string]: unknown;
7831
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7832
+ headers?: Partial<{
7833
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7834
+ }>;
7835
+ } & {
7836
+ pathParameters: {
7837
+ extensionInstanceId: string;
7838
+ sessionId: string;
7839
+ };
7840
+ } & {
7841
+ headers: {
7842
+ "x-access-token"?: string | undefined;
7843
+ } & Partial<{
7844
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7845
+ }>;
7846
+ }, import("@mittwald/api-client-commons").Response<{
7847
+ sessionToken: string;
7848
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7849
+ [x: string]: unknown;
7850
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7851
+ [x: string]: unknown;
7852
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7853
+ [x: string]: unknown;
7854
+ }, 429, "application/json">>>;
7855
+ /** Get a Contributor. */
7856
+ extensionGetContributor: (request: {
7857
+ contributorId: string;
7858
+ headers?: {
7859
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7860
+ } | undefined;
7861
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7862
+ headers?: Partial<{
7863
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7864
+ }>;
7865
+ } & {
7866
+ pathParameters: {
7867
+ contributorId: string;
7868
+ };
7869
+ }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7870
+ [x: string]: unknown;
7871
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7872
+ [x: string]: unknown;
7873
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7874
+ headers?: Partial<{
7875
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7876
+ }>;
7877
+ } & {
7878
+ pathParameters: {
7879
+ contributorId: string;
7880
+ };
7881
+ }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7882
+ [x: string]: unknown;
7883
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7884
+ [x: string]: unknown;
7885
+ }, 429, "application/json">>>;
7886
+ /** Get all open extension orders for given customer */
7887
+ extensionGetCustomerExtensionInstanceOrders: (request: {
7888
+ customerId: string;
7889
+ headers?: {
7890
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7891
+ "x-access-token"?: string | undefined;
7892
+ } | undefined;
7893
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7894
+ headers?: Partial<{
7895
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7896
+ }>;
7897
+ } & {
7898
+ pathParameters: {
7899
+ customerId: string;
7900
+ };
7901
+ } & {
7902
+ headers: {
7903
+ "x-access-token"?: string | undefined;
7904
+ } & Partial<{
7905
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7906
+ }>;
7907
+ }, import("@mittwald/api-client-commons").Response<{
7908
+ extensionId?: string;
7909
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7910
+ [x: string]: unknown;
7911
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7912
+ [x: string]: unknown;
7913
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7914
+ [x: string]: unknown;
7915
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7916
+ headers?: Partial<{
7917
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7918
+ }>;
7919
+ } & {
7920
+ pathParameters: {
7921
+ customerId: string;
7922
+ };
7923
+ } & {
7924
+ headers: {
7925
+ "x-access-token"?: string | undefined;
7926
+ } & Partial<{
7927
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7928
+ }>;
7929
+ }, import("@mittwald/api-client-commons").Response<{
7930
+ extensionId?: string;
7931
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7932
+ [x: string]: unknown;
7933
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7934
+ [x: string]: unknown;
7935
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7936
+ [x: string]: unknown;
7937
+ }, 429, "application/json">>>;
7938
+ /** Get the Contract Strategy of an Extension Instance */
7939
+ extensionGetExtensionInstanceContract: (request: {
7940
+ extensionInstanceId: string;
7941
+ headers?: {
7942
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7943
+ "x-access-token"?: string | undefined;
7944
+ } | undefined;
7945
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7946
+ headers?: Partial<{
7947
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7948
+ }>;
7949
+ } & {
7950
+ pathParameters: {
7951
+ extensionInstanceId: string;
7952
+ };
7953
+ } & {
7954
+ headers: {
7955
+ "x-access-token"?: string | undefined;
7956
+ } & Partial<{
7957
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7958
+ }>;
7959
+ }, import("@mittwald/api-client-commons").Response<{
7960
+ interactionDeadline?: string | undefined;
7961
+ interactionRequired: boolean;
7962
+ status: "notStarted" | "pending" | "active" | "terminationPending";
7963
+ terminationTargetDate?: string | undefined;
7964
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7965
+ [x: string]: unknown;
7966
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7967
+ [x: string]: unknown;
7968
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7969
+ [x: string]: unknown;
7970
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7971
+ headers?: Partial<{
7972
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7973
+ }>;
7974
+ } & {
7975
+ pathParameters: {
7976
+ extensionInstanceId: string;
7977
+ };
7978
+ } & {
7979
+ headers: {
7980
+ "x-access-token"?: string | undefined;
7981
+ } & Partial<{
7982
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7983
+ }>;
7984
+ }, import("@mittwald/api-client-commons").Response<{
7985
+ interactionDeadline?: string | undefined;
7986
+ interactionRequired: boolean;
7987
+ status: "notStarted" | "pending" | "active" | "terminationPending";
7988
+ terminationTargetDate?: string | undefined;
7989
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7990
+ [x: string]: unknown;
7991
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7992
+ [x: string]: unknown;
7993
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7994
+ [x: string]: unknown;
7995
+ }, 429, "application/json">>>;
7996
+ /** Update or Create Contract for existing Extension Instances. */
7997
+ extensionUpdateExtensionInstanceContract: (request: {
7998
+ extensionInstanceId: string;
7999
+ headers?: {
8000
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8001
+ "x-access-token"?: string | undefined;
8002
+ } | undefined;
8003
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8004
+ headers?: Partial<{
8005
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8006
+ }>;
8007
+ } & {
8008
+ pathParameters: {
8009
+ extensionInstanceId: string;
8010
+ };
8011
+ } & {
8012
+ headers: {
8013
+ "x-access-token"?: string | undefined;
8014
+ } & Partial<{
8015
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8016
+ }>;
8017
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8018
+ [x: string]: unknown;
8019
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8020
+ [x: string]: unknown;
8021
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8022
+ [x: string]: unknown;
8023
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8024
+ headers?: Partial<{
8025
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8026
+ }>;
8027
+ } & {
8028
+ pathParameters: {
8029
+ extensionInstanceId: string;
8030
+ };
8031
+ } & {
8032
+ headers: {
8033
+ "x-access-token"?: string | undefined;
8034
+ } & Partial<{
8035
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8036
+ }>;
8037
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8038
+ [x: string]: unknown;
8039
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8040
+ [x: string]: unknown;
8041
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8042
+ [x: string]: unknown;
8043
+ }, 429, "application/json">>>;
8044
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
8045
+ extensionGetExtensionInstanceForCustomer: (request: {
8046
+ customerId: string;
8047
+ extensionId: string;
8048
+ headers?: {
8049
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8050
+ "x-access-token"?: string | undefined;
8051
+ } | undefined;
8052
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8053
+ headers?: Partial<{
8054
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8055
+ }>;
8056
+ } & {
8057
+ pathParameters: {
8058
+ customerId: string;
8059
+ extensionId: string;
8060
+ };
8061
+ } & {
8062
+ headers: {
8063
+ "x-access-token"?: string | undefined;
8064
+ } & Partial<{
8065
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8066
+ }>;
8067
+ }, import("@mittwald/api-client-commons").Response<{
8068
+ aggregateReference: {
8069
+ aggregate: string;
8070
+ domain: string;
8071
+ id: string;
8072
+ };
8073
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8074
+ consentedScopes: string[];
8075
+ contributorId?: string | undefined;
8076
+ contributorName: string;
8077
+ createdAt?: string | undefined;
8078
+ disabled: boolean;
8079
+ extensionId: string;
8080
+ extensionName: string;
8081
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8082
+ id: string;
8083
+ pendingInstallation: boolean;
8084
+ pendingRemoval: boolean;
8085
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8086
+ [x: string]: unknown;
8087
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8088
+ [x: string]: unknown;
8089
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8090
+ headers?: Partial<{
8091
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8092
+ }>;
8093
+ } & {
8094
+ pathParameters: {
8095
+ customerId: string;
8096
+ extensionId: string;
8097
+ };
8098
+ } & {
8099
+ headers: {
8100
+ "x-access-token"?: string | undefined;
8101
+ } & Partial<{
8102
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8103
+ }>;
8104
+ }, import("@mittwald/api-client-commons").Response<{
8105
+ aggregateReference: {
8106
+ aggregate: string;
8107
+ domain: string;
8108
+ id: string;
8109
+ };
8110
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8111
+ consentedScopes: string[];
8112
+ contributorId?: string | undefined;
8113
+ contributorName: string;
8114
+ createdAt?: string | undefined;
8115
+ disabled: boolean;
8116
+ extensionId: string;
8117
+ extensionName: string;
8118
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8119
+ id: string;
8120
+ pendingInstallation: boolean;
8121
+ pendingRemoval: boolean;
8122
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8123
+ [x: string]: unknown;
8124
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8125
+ [x: string]: unknown;
8126
+ }, 429, "application/json">>>;
8127
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
8128
+ extensionGetExtensionInstanceForProject: (request: {
8129
+ projectId: string;
8130
+ extensionId: string;
8131
+ headers?: {
8132
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8133
+ "x-access-token"?: string | undefined;
8134
+ } | undefined;
8135
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8136
+ headers?: Partial<{
8137
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8138
+ }>;
8139
+ } & {
8140
+ pathParameters: {
8141
+ projectId: string;
8142
+ extensionId: string;
8143
+ };
8144
+ } & {
8145
+ headers: {
8146
+ "x-access-token"?: string | undefined;
8147
+ } & Partial<{
8148
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8149
+ }>;
8150
+ }, import("@mittwald/api-client-commons").Response<{
8151
+ aggregateReference: {
8152
+ aggregate: string;
8153
+ domain: string;
8154
+ id: string;
8155
+ };
8156
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8157
+ consentedScopes: string[];
8158
+ contributorId?: string | undefined;
8159
+ contributorName: string;
8160
+ createdAt?: string | undefined;
8161
+ disabled: boolean;
8162
+ extensionId: string;
8163
+ extensionName: string;
8164
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8165
+ id: string;
8166
+ pendingInstallation: boolean;
8167
+ pendingRemoval: boolean;
8168
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8169
+ [x: string]: unknown;
8170
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8171
+ [x: string]: unknown;
8172
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8173
+ headers?: Partial<{
8174
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8175
+ }>;
8176
+ } & {
8177
+ pathParameters: {
8178
+ projectId: string;
8179
+ extensionId: string;
8180
+ };
8181
+ } & {
8182
+ headers: {
8183
+ "x-access-token"?: string | undefined;
8184
+ } & Partial<{
8185
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8186
+ }>;
8187
+ }, import("@mittwald/api-client-commons").Response<{
8188
+ aggregateReference: {
8189
+ aggregate: string;
8190
+ domain: string;
8191
+ id: string;
8192
+ };
8193
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8194
+ consentedScopes: string[];
8195
+ contributorId?: string | undefined;
8196
+ contributorName: string;
8197
+ createdAt?: string | undefined;
8198
+ disabled: boolean;
8199
+ extensionId: string;
8200
+ extensionName: string;
8201
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8202
+ id: string;
8203
+ pendingInstallation: boolean;
8204
+ pendingRemoval: boolean;
8205
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8206
+ [x: string]: unknown;
8207
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8208
+ [x: string]: unknown;
8209
+ }, 429, "application/json">>>;
8210
+ /** Get an Extension. */
8211
+ extensionGetExtension: (request: {
8212
+ extensionId: string;
8213
+ headers?: {
8214
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8215
+ } | undefined;
8216
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8217
+ headers?: Partial<{
8218
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8219
+ }>;
8220
+ } & {
8221
+ pathParameters: {
8222
+ extensionId: string;
8223
+ };
8224
+ }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8225
+ [x: string]: unknown;
8226
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8227
+ [x: string]: unknown;
8228
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8229
+ headers?: Partial<{
8230
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8231
+ }>;
8232
+ } & {
8233
+ pathParameters: {
8234
+ extensionId: string;
8235
+ };
8236
+ }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8237
+ [x: string]: unknown;
8238
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8239
+ [x: string]: unknown;
8240
+ }, 429, "application/json">>>;
8241
+ /** Get all open extension orders for given project */
8242
+ extensionGetProjectExtensionInstanceOrders: (request: {
8243
+ projectId: string;
8244
+ headers?: {
8245
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8246
+ "x-access-token"?: string | undefined;
8247
+ } | undefined;
8248
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8249
+ headers?: Partial<{
8250
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8251
+ }>;
8252
+ } & {
8253
+ pathParameters: {
8254
+ projectId: string;
8255
+ };
8256
+ } & {
8257
+ headers: {
8258
+ "x-access-token"?: string | undefined;
8259
+ } & Partial<{
8260
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8261
+ }>;
8262
+ }, import("@mittwald/api-client-commons").Response<{
8263
+ extensionId?: string;
8264
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8265
+ [x: string]: unknown;
8266
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8267
+ [x: string]: unknown;
8268
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8269
+ [x: string]: unknown;
8270
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8271
+ headers?: Partial<{
8272
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8273
+ }>;
8274
+ } & {
8275
+ pathParameters: {
8276
+ projectId: string;
8277
+ };
8278
+ } & {
8279
+ headers: {
8280
+ "x-access-token"?: string | undefined;
8281
+ } & Partial<{
8282
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8283
+ }>;
8284
+ }, import("@mittwald/api-client-commons").Response<{
8285
+ extensionId?: string;
8286
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8287
+ [x: string]: unknown;
8288
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8289
+ [x: string]: unknown;
8290
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8291
+ [x: string]: unknown;
8292
+ }, 429, "application/json">>>;
8293
+ /** Get the public key to verify the webhook signature. */
8294
+ extensionGetPublicKey: (request: {
8295
+ serial: string;
8296
+ headers?: {
8297
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8298
+ } | undefined;
8299
+ queryParameters?: {
8300
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8301
+ purpose?: "webhook" | "session_token" | undefined;
8302
+ format?: "raw" | "spki" | undefined;
8303
+ } | undefined;
8304
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8305
+ headers?: Partial<{
8306
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8307
+ }>;
8308
+ } & {
8309
+ pathParameters: {
8310
+ serial: string;
8311
+ };
8312
+ } & {
8313
+ queryParameters: {
8314
+ purpose?: "webhook" | "session_token" | undefined;
8315
+ format?: "raw" | "spki" | undefined;
8316
+ } & Partial<{
8317
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8318
+ }>;
8319
+ }, import("@mittwald/api-client-commons").Response<{
8320
+ algorithm: string;
8321
+ key: string;
8322
+ serial: string;
8323
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8324
+ [x: string]: unknown;
8325
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8326
+ [x: string]: unknown;
8327
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8328
+ headers?: Partial<{
8329
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8330
+ }>;
8331
+ } & {
8332
+ pathParameters: {
8333
+ serial: string;
8334
+ };
8335
+ } & {
8336
+ queryParameters: {
8337
+ purpose?: "webhook" | "session_token" | undefined;
8338
+ format?: "raw" | "spki" | undefined;
8339
+ } & Partial<{
8340
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8341
+ }>;
8342
+ }, import("@mittwald/api-client-commons").Response<{
8343
+ algorithm: string;
8344
+ key: string;
8345
+ serial: string;
8346
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8347
+ [x: string]: unknown;
8348
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8349
+ [x: string]: unknown;
8350
+ }, 429, "application/json">>>;
8351
+ /** Invalidate the given Extension secret immediately. */
8352
+ extensionInvalidateExtensionSecret: (request: {
8353
+ contributorId: string;
8354
+ extensionId: string;
8355
+ extensionSecretId: string;
8356
+ headers?: {
8357
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8358
+ "x-access-token"?: string | undefined;
8359
+ } | undefined;
8360
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8361
+ headers?: Partial<{
8362
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8363
+ }>;
8364
+ } & {
8365
+ pathParameters: {
8366
+ contributorId: string;
8367
+ extensionId: string;
8368
+ extensionSecretId: string;
8369
+ };
8370
+ } & {
8371
+ headers: {
8372
+ "x-access-token"?: string | undefined;
8373
+ } & Partial<{
8374
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8375
+ }>;
8376
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8377
+ [x: string]: unknown;
8378
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8379
+ [x: string]: unknown;
8380
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8381
+ [x: string]: unknown;
8382
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8383
+ [x: string]: unknown;
8384
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8385
+ headers?: Partial<{
8386
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8387
+ }>;
8388
+ } & {
8389
+ pathParameters: {
8390
+ contributorId: string;
8391
+ extensionId: string;
8392
+ extensionSecretId: string;
8393
+ };
8394
+ } & {
8395
+ headers: {
8396
+ "x-access-token"?: string | undefined;
8397
+ } & Partial<{
8398
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8399
+ }>;
8400
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8401
+ [x: string]: unknown;
8402
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8403
+ [x: string]: unknown;
8404
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8405
+ [x: string]: unknown;
8406
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8407
+ [x: string]: unknown;
8408
+ }, 429, "application/json">>>;
8409
+ /** List Contributors. */
8410
+ extensionListContributors: (request?: {
8411
+ headers?: {
8412
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8413
+ } | undefined;
8414
+ queryParameters?: {
8415
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8416
+ limit?: number | undefined;
8417
+ skip?: number | undefined;
8418
+ page?: number | undefined;
8419
+ } | undefined;
8420
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8421
+ headers?: Partial<{
8422
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8423
+ }>;
8424
+ } & {
8425
+ queryParameters: {
8426
+ limit?: number | undefined;
8427
+ skip?: number | undefined;
8428
+ page?: number | undefined;
8429
+ } & Partial<{
8430
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8431
+ }>;
8432
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8433
+ [x: string]: unknown;
8434
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8435
+ headers?: Partial<{
8436
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8437
+ }>;
8438
+ } & {
8439
+ queryParameters: {
8440
+ limit?: number | undefined;
8441
+ skip?: number | undefined;
8442
+ page?: number | undefined;
8443
+ } & Partial<{
8444
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8445
+ }>;
8446
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8447
+ [x: string]: unknown;
8448
+ }, 429, "application/json">>>;
8449
+ /** List Extensions. */
8450
+ extensionListExtensions: (request?: {
8451
+ headers?: {
8452
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8453
+ } | undefined;
8454
+ queryParameters?: {
8455
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8456
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8457
+ searchTerm?: string | undefined;
8458
+ limit?: number | undefined;
8459
+ skip?: number | undefined;
8460
+ page?: number | undefined;
8461
+ } | undefined;
8462
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8463
+ headers?: Partial<{
8464
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8465
+ }>;
8466
+ } & {
8467
+ queryParameters: {
8468
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8469
+ searchTerm?: string | undefined;
8470
+ limit?: number | undefined;
8471
+ skip?: number | undefined;
8472
+ page?: number | undefined;
8473
+ } & Partial<{
8474
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8475
+ }>;
8476
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8477
+ [x: string]: unknown;
8478
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8479
+ headers?: Partial<{
8480
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8481
+ }>;
8482
+ } & {
8483
+ queryParameters: {
8484
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8485
+ searchTerm?: string | undefined;
8486
+ limit?: number | undefined;
8487
+ skip?: number | undefined;
8488
+ page?: number | undefined;
8489
+ } & Partial<{
8490
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8491
+ }>;
8492
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8493
+ [x: string]: unknown;
8494
+ }, 429, "application/json">>>;
8495
+ /** List Extensions of own contributor. */
8496
+ extensionListOwnExtensions: (request: {
8497
+ contributorId: string;
8498
+ headers?: {
8499
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8500
+ "x-access-token"?: string | undefined;
8501
+ } | undefined;
8502
+ queryParameters?: {
8503
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8504
+ limit?: number | undefined;
8505
+ skip?: number | undefined;
8506
+ page?: number | undefined;
8507
+ } | undefined;
8508
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8509
+ headers?: Partial<{
8510
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8511
+ }>;
8512
+ } & {
8513
+ pathParameters: {
8514
+ contributorId: string;
8515
+ };
8516
+ } & {
8517
+ queryParameters: {
8518
+ limit?: number | undefined;
8519
+ skip?: number | undefined;
8520
+ page?: number | undefined;
8521
+ } & Partial<{
8522
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8523
+ }>;
8524
+ } & {
8525
+ headers: {
8526
+ "x-access-token"?: string | undefined;
8527
+ } & Partial<{
8528
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8529
+ }>;
8530
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8531
+ [x: string]: unknown;
8532
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8533
+ headers?: Partial<{
8534
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8535
+ }>;
8536
+ } & {
8537
+ pathParameters: {
8538
+ contributorId: string;
8539
+ };
8540
+ } & {
8541
+ queryParameters: {
8542
+ limit?: number | undefined;
8543
+ skip?: number | undefined;
8544
+ page?: number | undefined;
8545
+ } & Partial<{
8546
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8547
+ }>;
8548
+ } & {
8549
+ headers: {
8550
+ "x-access-token"?: string | undefined;
8551
+ } & Partial<{
8552
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8553
+ }>;
8554
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8555
+ [x: string]: unknown;
8556
+ }, 429, "application/json">>>;
8557
+ /** Register an Extension. */
8558
+ extensionRegisterExtension: (request: {
8559
+ data: {
8560
+ name: string;
8561
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8562
+ description?: string | undefined;
8563
+ detailedDescriptions?: {
8564
+ de: {
8565
+ markdown: string;
8566
+ plain?: string | undefined;
8567
+ };
8568
+ en?: {
8569
+ markdown: string;
8570
+ plain?: string | undefined;
8571
+ } | undefined;
8572
+ } | undefined;
8573
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8574
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8575
+ frontendFragments?: {
8576
+ [x: string]: {
8577
+ url: string;
8578
+ additionalProperties?: {
8579
+ [x: string]: string;
8580
+ } | undefined;
8581
+ };
8582
+ } | undefined;
8583
+ scopes?: string[] | undefined;
8584
+ subTitle?: {
8585
+ de: string;
8586
+ en?: string | undefined;
8587
+ } | undefined;
8588
+ support?: {
8589
+ email?: string | undefined;
8590
+ phone?: string | undefined;
8591
+ } | undefined;
8592
+ tags?: string[] | undefined;
8593
+ webhookURLs?: {
8594
+ extensionAddedToContext: {
8595
+ url: string;
8596
+ };
8597
+ extensionInstanceRemovedFromContext: {
8598
+ url: string;
8599
+ };
8600
+ extensionInstanceSecretRotated: {
8601
+ url: string;
8602
+ };
8603
+ extensionInstanceUpdated: {
8604
+ url: string;
8605
+ };
8606
+ } | undefined;
8607
+ webhookUrls?: {
8608
+ extensionAddedToContext: {
8609
+ url: string;
8610
+ };
8611
+ extensionInstanceRemovedFromContext: {
8612
+ url: string;
8613
+ };
8614
+ extensionInstanceSecretRotated: {
8615
+ url: string;
8616
+ };
8617
+ extensionInstanceUpdated: {
8618
+ url: string;
8619
+ };
8620
+ } | undefined;
8621
+ };
8622
+ contributorId: string;
8623
+ headers?: {
8624
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8625
+ "x-access-token"?: string | undefined;
8626
+ } | undefined;
8627
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8628
+ data: {
8629
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8630
+ description?: string | undefined;
8631
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8632
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8633
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8634
+ frontendFragments?: {
8635
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8636
+ } | undefined;
8637
+ name: string;
8638
+ scopes?: string[] | undefined;
8639
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8640
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
8641
+ tags?: string[] | undefined;
8642
+ webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
8643
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
8644
+ };
8645
+ } & {
8646
+ pathParameters: {
8647
+ contributorId: string;
8648
+ };
8649
+ } & {
8650
+ headers?: Partial<{
8651
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8652
+ }>;
8653
+ } & {
8654
+ headers: {
8655
+ "x-access-token"?: string | undefined;
8656
+ } & Partial<{
8657
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8658
+ }>;
8659
+ }, import("@mittwald/api-client-commons").Response<{
8660
+ id: string;
8661
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8662
+ [x: string]: unknown;
8663
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8664
+ [x: string]: unknown;
8665
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8666
+ data: {
8667
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8668
+ description?: string | undefined;
8669
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8670
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8671
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8672
+ frontendFragments?: {
8673
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8674
+ } | undefined;
8675
+ name: string;
8676
+ scopes?: string[] | undefined;
8677
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8678
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
8679
+ tags?: string[] | undefined;
8680
+ webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
8681
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
8682
+ };
8683
+ } & {
8684
+ pathParameters: {
8685
+ contributorId: string;
8686
+ };
8687
+ } & {
8688
+ headers?: Partial<{
8689
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8690
+ }>;
8691
+ } & {
8692
+ headers: {
8693
+ "x-access-token"?: string | undefined;
8694
+ } & Partial<{
8695
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8696
+ }>;
8697
+ }, import("@mittwald/api-client-commons").Response<{
8698
+ id: string;
8699
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8700
+ [x: string]: unknown;
8701
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8702
+ [x: string]: unknown;
8703
+ }, 429, "application/json">>>;
8704
+ /** List Scopes. */
8705
+ extensionListScopes: (request?: {
8706
+ headers?: {
8707
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8708
+ } | undefined;
8709
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8710
+ headers?: Partial<{
8711
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8712
+ }>;
8713
+ }, import("@mittwald/api-client-commons").Response<{
8714
+ name: string;
8715
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8716
+ [x: string]: unknown;
8717
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8718
+ headers?: Partial<{
8719
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8720
+ }>;
8721
+ }, import("@mittwald/api-client-commons").Response<{
8722
+ name: string;
8723
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8724
+ [x: string]: unknown;
8725
+ }, 429, "application/json">>>;
8726
+ /** Order Extension with saved payment method */
8727
+ extensionOrderExtension: (request: {
8728
+ data: {
8729
+ consentedScopes: string[];
8730
+ customerId: string;
8731
+ };
8732
+ extensionId: string;
7612
8733
  headers?: {
7613
8734
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8735
+ "x-access-token"?: string | undefined;
7614
8736
  } | undefined;
7615
- queryParameters?: {
8737
+ } | {
8738
+ data: {
8739
+ consentedScopes: string[];
8740
+ projectId: string;
8741
+ };
8742
+ extensionId: string;
8743
+ headers?: {
7616
8744
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7617
- purpose?: "webhook" | "session_token" | undefined;
7618
- format?: "raw" | "spki" | undefined;
8745
+ "x-access-token"?: string | undefined;
7619
8746
  } | undefined;
7620
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8747
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
8748
+ data: {
8749
+ consentedScopes: string[];
8750
+ customerId: string;
8751
+ };
8752
+ } | {
8753
+ data: {
8754
+ consentedScopes: string[];
8755
+ projectId: string;
8756
+ };
8757
+ }) & {
8758
+ pathParameters: {
8759
+ extensionId: string;
8760
+ };
8761
+ }) & {
7621
8762
  headers?: Partial<{
7622
8763
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7623
8764
  }>;
7624
8765
  } & {
7625
- pathParameters: {
7626
- serial: string;
7627
- };
7628
- } & {
7629
- queryParameters: {
7630
- purpose?: "webhook" | "session_token" | undefined;
7631
- format?: "raw" | "spki" | undefined;
8766
+ headers: {
8767
+ "x-access-token"?: string | undefined;
7632
8768
  } & Partial<{
7633
8769
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7634
8770
  }>;
7635
- }, import("@mittwald/api-client-commons").Response<{
7636
- algorithm: string;
7637
- key: string;
7638
- serial: string;
7639
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8771
+ }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8772
+ [x: string]: unknown;
8773
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7640
8774
  [x: string]: unknown;
7641
8775
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7642
8776
  [x: string]: unknown;
7643
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8777
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
8778
+ data: {
8779
+ consentedScopes: string[];
8780
+ customerId: string;
8781
+ };
8782
+ } | {
8783
+ data: {
8784
+ consentedScopes: string[];
8785
+ projectId: string;
8786
+ };
8787
+ }) & {
8788
+ pathParameters: {
8789
+ extensionId: string;
8790
+ };
8791
+ }) & {
7644
8792
  headers?: Partial<{
7645
8793
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7646
8794
  }>;
7647
8795
  } & {
7648
- pathParameters: {
7649
- serial: string;
7650
- };
7651
- } & {
7652
- queryParameters: {
7653
- purpose?: "webhook" | "session_token" | undefined;
7654
- format?: "raw" | "spki" | undefined;
8796
+ headers: {
8797
+ "x-access-token"?: string | undefined;
7655
8798
  } & Partial<{
7656
8799
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7657
8800
  }>;
7658
- }, import("@mittwald/api-client-commons").Response<{
7659
- algorithm: string;
7660
- key: string;
7661
- serial: string;
7662
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8801
+ }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8802
+ [x: string]: unknown;
8803
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7663
8804
  [x: string]: unknown;
7664
8805
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7665
8806
  [x: string]: unknown;
7666
8807
  }, 429, "application/json">>>;
7667
- /** Invalidate the given Extension secret immediately. */
7668
- extensionInvalidateExtensionSecret: (request: {
8808
+ /** Remove an asset of an extension. */
8809
+ extensionRemoveAsset: (request: {
7669
8810
  contributorId: string;
7670
8811
  extensionId: string;
7671
- extensionSecretId: string;
8812
+ assetRefId: string;
7672
8813
  headers?: {
7673
8814
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7674
8815
  "x-access-token"?: string | undefined;
@@ -7681,7 +8822,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7681
8822
  pathParameters: {
7682
8823
  contributorId: string;
7683
8824
  extensionId: string;
7684
- extensionSecretId: string;
8825
+ assetRefId: string;
7685
8826
  };
7686
8827
  } & {
7687
8828
  headers: {
@@ -7691,12 +8832,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7691
8832
  }>;
7692
8833
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7693
8834
  [x: string]: unknown;
7694
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7695
- [x: string]: unknown;
7696
8835
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7697
8836
  [x: string]: unknown;
7698
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7699
- [x: string]: unknown;
7700
8837
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7701
8838
  headers?: Partial<{
7702
8839
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -7705,7 +8842,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7705
8842
  pathParameters: {
7706
8843
  contributorId: string;
7707
8844
  extensionId: string;
7708
- extensionSecretId: string;
8845
+ assetRefId: string;
7709
8846
  };
7710
8847
  } & {
7711
8848
  headers: {
@@ -7715,135 +8852,128 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7715
8852
  }>;
7716
8853
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7717
8854
  [x: string]: unknown;
7718
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7719
- [x: string]: unknown;
7720
8855
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7721
8856
  [x: string]: unknown;
7722
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7723
- [x: string]: unknown;
7724
8857
  }, 429, "application/json">>>;
7725
- /** List Contributors. */
7726
- extensionListContributors: (request?: {
8858
+ /** Add a logo to an extension. */
8859
+ extensionRequestLogoUpload: (request: {
8860
+ contributorId: string;
8861
+ extensionId: string;
7727
8862
  headers?: {
7728
8863
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8864
+ "x-access-token"?: string | undefined;
7729
8865
  } | undefined;
7730
- queryParameters?: {
7731
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7732
- limit?: number | undefined;
7733
- skip?: number | undefined;
7734
- page?: number | undefined;
7735
- } | undefined;
7736
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8866
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7737
8867
  headers?: Partial<{
7738
8868
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7739
8869
  }>;
7740
8870
  } & {
7741
- queryParameters: {
7742
- limit?: number | undefined;
7743
- skip?: number | undefined;
7744
- page?: number | undefined;
7745
- } & Partial<{
7746
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7747
- }>;
7748
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7749
- [x: string]: unknown;
7750
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7751
- headers?: Partial<{
7752
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7753
- }>;
8871
+ pathParameters: {
8872
+ contributorId: string;
8873
+ extensionId: string;
8874
+ };
7754
8875
  } & {
7755
- queryParameters: {
7756
- limit?: number | undefined;
7757
- skip?: number | undefined;
7758
- page?: number | undefined;
8876
+ headers: {
8877
+ "x-access-token"?: string | undefined;
7759
8878
  } & Partial<{
7760
8879
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7761
8880
  }>;
7762
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8881
+ }, import("@mittwald/api-client-commons").Response<{
8882
+ logoRefId: string;
8883
+ rules: {
8884
+ extensions: string[];
8885
+ fileTypes: {
8886
+ extensions: string[];
8887
+ mimeType: string;
8888
+ }[];
8889
+ maxSizeInBytes: number;
8890
+ mimeTypes: string[];
8891
+ properties?: {
8892
+ imageDimensions?: {
8893
+ max: {
8894
+ height?: number;
8895
+ width?: number;
8896
+ };
8897
+ min: {
8898
+ height?: number;
8899
+ width?: number;
8900
+ };
8901
+ };
8902
+ };
8903
+ };
8904
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7763
8905
  [x: string]: unknown;
7764
- }, 429, "application/json">>>;
7765
- /** List Extensions. */
7766
- extensionListExtensions: (request?: {
7767
- headers?: {
7768
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7769
- } | undefined;
7770
- queryParameters?: {
7771
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7772
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7773
- searchTerm?: string | undefined;
7774
- limit?: number | undefined;
7775
- skip?: number | undefined;
7776
- page?: number | undefined;
7777
- } | undefined;
7778
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7779
- headers?: Partial<{
7780
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7781
- }>;
7782
- } & {
7783
- queryParameters: {
7784
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7785
- searchTerm?: string | undefined;
7786
- limit?: number | undefined;
7787
- skip?: number | undefined;
7788
- page?: number | undefined;
7789
- } & Partial<{
7790
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7791
- }>;
7792
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8906
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7793
8907
  [x: string]: unknown;
7794
8908
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7795
8909
  headers?: Partial<{
7796
8910
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7797
8911
  }>;
7798
8912
  } & {
7799
- queryParameters: {
7800
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7801
- searchTerm?: string | undefined;
7802
- limit?: number | undefined;
7803
- skip?: number | undefined;
7804
- page?: number | undefined;
8913
+ pathParameters: {
8914
+ contributorId: string;
8915
+ extensionId: string;
8916
+ };
8917
+ } & {
8918
+ headers: {
8919
+ "x-access-token"?: string | undefined;
7805
8920
  } & Partial<{
7806
8921
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7807
8922
  }>;
7808
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8923
+ }, import("@mittwald/api-client-commons").Response<{
8924
+ logoRefId: string;
8925
+ rules: {
8926
+ extensions: string[];
8927
+ fileTypes: {
8928
+ extensions: string[];
8929
+ mimeType: string;
8930
+ }[];
8931
+ maxSizeInBytes: number;
8932
+ mimeTypes: string[];
8933
+ properties?: {
8934
+ imageDimensions?: {
8935
+ max: {
8936
+ height?: number;
8937
+ width?: number;
8938
+ };
8939
+ min: {
8940
+ height?: number;
8941
+ width?: number;
8942
+ };
8943
+ };
8944
+ };
8945
+ };
8946
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8947
+ [x: string]: unknown;
8948
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7809
8949
  [x: string]: unknown;
7810
8950
  }, 429, "application/json">>>;
7811
- /** List Extensions of own contributor. */
7812
- extensionListOwnExtensions: (request: {
8951
+ /** Remove the logo of an extension. */
8952
+ extensionRemoveLogo: (request: {
7813
8953
  contributorId: string;
8954
+ extensionId: string;
7814
8955
  headers?: {
7815
8956
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7816
8957
  "x-access-token"?: string | undefined;
7817
8958
  } | undefined;
7818
- queryParameters?: {
7819
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7820
- limit?: number | undefined;
7821
- skip?: number | undefined;
7822
- page?: number | undefined;
7823
- } | undefined;
7824
8959
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7825
- headers?: Partial<{
7826
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7827
- }>;
7828
- } & {
7829
- pathParameters: {
7830
- contributorId: string;
7831
- };
7832
- } & {
7833
- queryParameters: {
7834
- limit?: number | undefined;
7835
- skip?: number | undefined;
7836
- page?: number | undefined;
7837
- } & Partial<{
8960
+ headers?: Partial<{
7838
8961
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7839
8962
  }>;
8963
+ } & {
8964
+ pathParameters: {
8965
+ contributorId: string;
8966
+ extensionId: string;
8967
+ };
7840
8968
  } & {
7841
8969
  headers: {
7842
8970
  "x-access-token"?: string | undefined;
7843
8971
  } & Partial<{
7844
8972
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7845
8973
  }>;
7846
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8974
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8975
+ [x: string]: unknown;
8976
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7847
8977
  [x: string]: unknown;
7848
8978
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7849
8979
  headers?: Partial<{
@@ -7852,115 +8982,38 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7852
8982
  } & {
7853
8983
  pathParameters: {
7854
8984
  contributorId: string;
8985
+ extensionId: string;
7855
8986
  };
7856
- } & {
7857
- queryParameters: {
7858
- limit?: number | undefined;
7859
- skip?: number | undefined;
7860
- page?: number | undefined;
7861
- } & Partial<{
7862
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7863
- }>;
7864
8987
  } & {
7865
8988
  headers: {
7866
8989
  "x-access-token"?: string | undefined;
7867
8990
  } & Partial<{
7868
8991
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7869
8992
  }>;
7870
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8993
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8994
+ [x: string]: unknown;
8995
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7871
8996
  [x: string]: unknown;
7872
8997
  }, 429, "application/json">>>;
7873
- /** Register an Extension. */
7874
- extensionRegisterExtension: (request: {
8998
+ /** Add an asset to an extension. */
8999
+ extensionRequestAssetUpload: (request: {
7875
9000
  data: {
7876
- name: string;
7877
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7878
- description?: string | undefined;
7879
- detailedDescriptions?: {
7880
- de: {
7881
- markdown: string;
7882
- plain?: string | undefined;
7883
- };
7884
- en?: {
7885
- markdown: string;
7886
- plain?: string | undefined;
7887
- } | undefined;
7888
- } | undefined;
7889
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7890
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7891
- frontendFragments?: {
7892
- [x: string]: {
7893
- url: string;
7894
- additionalProperties?: {
7895
- [x: string]: string;
7896
- } | undefined;
7897
- };
7898
- } | undefined;
7899
- scopes?: string[] | undefined;
7900
- subTitle?: {
7901
- de: string;
7902
- en?: string | undefined;
7903
- } | undefined;
7904
- support?: {
7905
- email?: string | undefined;
7906
- phone?: string | undefined;
7907
- } | undefined;
7908
- tags?: string[] | undefined;
7909
- webhookURLs?: {
7910
- extensionAddedToContext: {
7911
- url: string;
7912
- };
7913
- extensionInstanceRemovedFromContext: {
7914
- url: string;
7915
- };
7916
- extensionInstanceSecretRotated: {
7917
- url: string;
7918
- };
7919
- extensionInstanceUpdated: {
7920
- url: string;
7921
- };
7922
- } | undefined;
7923
- webhookUrls?: {
7924
- extensionAddedToContext: {
7925
- url: string;
7926
- };
7927
- extensionInstanceRemovedFromContext: {
7928
- url: string;
7929
- };
7930
- extensionInstanceSecretRotated: {
7931
- url: string;
7932
- };
7933
- extensionInstanceUpdated: {
7934
- url: string;
7935
- };
7936
- } | undefined;
9001
+ assetType: "image" | "video";
7937
9002
  };
7938
9003
  contributorId: string;
9004
+ extensionId: string;
7939
9005
  headers?: {
7940
9006
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7941
9007
  "x-access-token"?: string | undefined;
7942
9008
  } | undefined;
7943
9009
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7944
9010
  data: {
7945
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7946
- description?: string | undefined;
7947
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7948
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7949
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7950
- frontendFragments?: {
7951
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7952
- } | undefined;
7953
- name: string;
7954
- scopes?: string[] | undefined;
7955
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7956
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7957
- tags?: string[] | undefined;
7958
- webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
7959
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9011
+ assetType: "image" | "video";
7960
9012
  };
7961
9013
  } & {
7962
9014
  pathParameters: {
7963
9015
  contributorId: string;
9016
+ extensionId: string;
7964
9017
  };
7965
9018
  } & {
7966
9019
  headers?: Partial<{
@@ -7973,32 +9026,44 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7973
9026
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7974
9027
  }>;
7975
9028
  }, import("@mittwald/api-client-commons").Response<{
7976
- id: string;
7977
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9029
+ assetRefId: string;
9030
+ rules: {
9031
+ extensions: string[];
9032
+ fileTypes: {
9033
+ extensions: string[];
9034
+ mimeType: string;
9035
+ }[];
9036
+ maxSizeInBytes: number;
9037
+ mimeTypes: string[];
9038
+ properties?: {
9039
+ imageDimensions?: {
9040
+ max: {
9041
+ height?: number;
9042
+ width?: number;
9043
+ };
9044
+ min: {
9045
+ height?: number;
9046
+ width?: number;
9047
+ };
9048
+ };
9049
+ };
9050
+ };
9051
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7978
9052
  [x: string]: unknown;
7979
9053
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7980
9054
  [x: string]: unknown;
9055
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9056
+ [x: string]: unknown;
9057
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9058
+ [x: string]: unknown;
7981
9059
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7982
9060
  data: {
7983
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7984
- description?: string | undefined;
7985
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7986
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7987
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7988
- frontendFragments?: {
7989
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7990
- } | undefined;
7991
- name: string;
7992
- scopes?: string[] | undefined;
7993
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7994
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7995
- tags?: string[] | undefined;
7996
- webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
7997
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9061
+ assetType: "image" | "video";
7998
9062
  };
7999
9063
  } & {
8000
9064
  pathParameters: {
8001
9065
  contributorId: string;
9066
+ extensionId: string;
8002
9067
  };
8003
9068
  } & {
8004
9069
  headers?: Partial<{
@@ -8011,39 +9076,41 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8011
9076
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8012
9077
  }>;
8013
9078
  }, import("@mittwald/api-client-commons").Response<{
8014
- id: string;
8015
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9079
+ assetRefId: string;
9080
+ rules: {
9081
+ extensions: string[];
9082
+ fileTypes: {
9083
+ extensions: string[];
9084
+ mimeType: string;
9085
+ }[];
9086
+ maxSizeInBytes: number;
9087
+ mimeTypes: string[];
9088
+ properties?: {
9089
+ imageDimensions?: {
9090
+ max: {
9091
+ height?: number;
9092
+ width?: number;
9093
+ };
9094
+ min: {
9095
+ height?: number;
9096
+ width?: number;
9097
+ };
9098
+ };
9099
+ };
9100
+ };
9101
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8016
9102
  [x: string]: unknown;
8017
9103
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8018
9104
  [x: string]: unknown;
8019
- }, 429, "application/json">>>;
8020
- /** List Scopes. */
8021
- extensionListScopes: (request?: {
8022
- headers?: {
8023
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8024
- } | undefined;
8025
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8026
- headers?: Partial<{
8027
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8028
- }>;
8029
- }, import("@mittwald/api-client-commons").Response<{
8030
- name: string;
8031
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9105
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8032
9106
  [x: string]: unknown;
8033
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8034
- headers?: Partial<{
8035
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8036
- }>;
8037
- }, import("@mittwald/api-client-commons").Response<{
8038
- name: string;
8039
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9107
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8040
9108
  [x: string]: unknown;
8041
9109
  }, 429, "application/json">>>;
8042
- /** Remove an asset of an extension. */
8043
- extensionRemoveAsset: (request: {
9110
+ /** Start the verification process of an Extension. */
9111
+ extensionRequestExtensionVerification: (request: {
8044
9112
  contributorId: string;
8045
9113
  extensionId: string;
8046
- assetRefId: string;
8047
9114
  headers?: {
8048
9115
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8049
9116
  "x-access-token"?: string | undefined;
@@ -8056,7 +9123,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8056
9123
  pathParameters: {
8057
9124
  contributorId: string;
8058
9125
  extensionId: string;
8059
- assetRefId: string;
8060
9126
  };
8061
9127
  } & {
8062
9128
  headers: {
@@ -8064,9 +9130,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8064
9130
  } & Partial<{
8065
9131
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8066
9132
  }>;
8067
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9133
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8068
9134
  [x: string]: unknown;
8069
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9135
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8070
9136
  [x: string]: unknown;
8071
9137
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8072
9138
  headers?: Partial<{
@@ -8076,7 +9142,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8076
9142
  pathParameters: {
8077
9143
  contributorId: string;
8078
9144
  extensionId: string;
8079
- assetRefId: string;
8080
9145
  };
8081
9146
  } & {
8082
9147
  headers: {
@@ -8084,13 +9149,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8084
9149
  } & Partial<{
8085
9150
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8086
9151
  }>;
8087
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9152
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8088
9153
  [x: string]: unknown;
8089
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9154
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8090
9155
  [x: string]: unknown;
8091
9156
  }, 429, "application/json">>>;
8092
- /** Add a logo to an extension. */
8093
- extensionRequestLogoUpload: (request: {
9157
+ /** Publish or withdraw an Extension. */
9158
+ extensionSetExtensionPublishedState: (request: {
9159
+ data: {
9160
+ published: boolean;
9161
+ reason?: string | undefined;
9162
+ };
8094
9163
  contributorId: string;
8095
9164
  extensionId: string;
8096
9165
  headers?: {
@@ -8098,14 +9167,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8098
9167
  "x-access-token"?: string | undefined;
8099
9168
  } | undefined;
8100
9169
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8101
- headers?: Partial<{
8102
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8103
- }>;
9170
+ data: {
9171
+ published: boolean;
9172
+ reason?: string | undefined;
9173
+ };
8104
9174
  } & {
8105
9175
  pathParameters: {
8106
9176
  contributorId: string;
8107
9177
  extensionId: string;
8108
9178
  };
9179
+ } & {
9180
+ headers?: Partial<{
9181
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9182
+ }>;
8109
9183
  } & {
8110
9184
  headers: {
8111
9185
  "x-access-token"?: string | undefined;
@@ -8113,41 +9187,26 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8113
9187
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8114
9188
  }>;
8115
9189
  }, import("@mittwald/api-client-commons").Response<{
8116
- logoRefId: string;
8117
- rules: {
8118
- extensions: string[];
8119
- fileTypes: {
8120
- extensions: string[];
8121
- mimeType: string;
8122
- }[];
8123
- maxSizeInBytes: number;
8124
- mimeTypes: string[];
8125
- properties?: {
8126
- imageDimensions?: {
8127
- max: {
8128
- height?: number;
8129
- width?: number;
8130
- };
8131
- min: {
8132
- height?: number;
8133
- width?: number;
8134
- };
8135
- };
8136
- };
8137
- };
9190
+ id: string;
9191
+ published: boolean;
8138
9192
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8139
9193
  [x: string]: unknown;
8140
9194
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8141
9195
  [x: string]: unknown;
8142
9196
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8143
- headers?: Partial<{
8144
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8145
- }>;
9197
+ data: {
9198
+ published: boolean;
9199
+ reason?: string | undefined;
9200
+ };
8146
9201
  } & {
8147
9202
  pathParameters: {
8148
9203
  contributorId: string;
8149
9204
  extensionId: string;
8150
9205
  };
9206
+ } & {
9207
+ headers?: Partial<{
9208
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9209
+ }>;
8151
9210
  } & {
8152
9211
  headers: {
8153
9212
  "x-access-token"?: string | undefined;
@@ -8155,99 +9214,118 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8155
9214
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8156
9215
  }>;
8157
9216
  }, import("@mittwald/api-client-commons").Response<{
8158
- logoRefId: string;
8159
- rules: {
8160
- extensions: string[];
8161
- fileTypes: {
8162
- extensions: string[];
8163
- mimeType: string;
8164
- }[];
8165
- maxSizeInBytes: number;
8166
- mimeTypes: string[];
8167
- properties?: {
8168
- imageDimensions?: {
8169
- max: {
8170
- height?: number;
8171
- width?: number;
8172
- };
8173
- min: {
8174
- height?: number;
8175
- width?: number;
8176
- };
8177
- };
8178
- };
8179
- };
9217
+ id: string;
9218
+ published: boolean;
8180
9219
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8181
9220
  [x: string]: unknown;
8182
9221
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8183
9222
  [x: string]: unknown;
8184
9223
  }, 429, "application/json">>>;
8185
- /** Remove the logo of an extension. */
8186
- extensionRemoveLogo: (request: {
8187
- contributorId: string;
9224
+ /** Start a checkout process for an extension. */
9225
+ extensionStartExtensionCheckout: (request: {
9226
+ data: {
9227
+ consentedScopes: string[];
9228
+ customerId: string;
9229
+ };
8188
9230
  extensionId: string;
8189
9231
  headers?: {
8190
9232
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8191
9233
  "x-access-token"?: string | undefined;
8192
9234
  } | undefined;
8193
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8194
- headers?: Partial<{
8195
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8196
- }>;
8197
- } & {
9235
+ } | {
9236
+ data: {
9237
+ consentedScopes: string[];
9238
+ projectId: string;
9239
+ };
9240
+ extensionId: string;
9241
+ headers?: {
9242
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9243
+ "x-access-token"?: string | undefined;
9244
+ } | undefined;
9245
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
9246
+ data: {
9247
+ consentedScopes: string[];
9248
+ customerId: string;
9249
+ };
9250
+ } | {
9251
+ data: {
9252
+ consentedScopes: string[];
9253
+ projectId: string;
9254
+ };
9255
+ }) & {
8198
9256
  pathParameters: {
8199
- contributorId: string;
8200
9257
  extensionId: string;
8201
9258
  };
9259
+ }) & {
9260
+ headers?: Partial<{
9261
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9262
+ }>;
8202
9263
  } & {
8203
9264
  headers: {
8204
9265
  "x-access-token"?: string | undefined;
8205
9266
  } & Partial<{
8206
9267
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8207
9268
  }>;
8208
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9269
+ }, import("@mittwald/api-client-commons").Response<{
9270
+ checkoutUrl?: string | undefined;
9271
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9272
+ [x: string]: unknown;
9273
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8209
9274
  [x: string]: unknown;
8210
9275
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8211
9276
  [x: string]: unknown;
8212
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8213
- headers?: Partial<{
8214
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8215
- }>;
8216
- } & {
9277
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
9278
+ data: {
9279
+ consentedScopes: string[];
9280
+ customerId: string;
9281
+ };
9282
+ } | {
9283
+ data: {
9284
+ consentedScopes: string[];
9285
+ projectId: string;
9286
+ };
9287
+ }) & {
8217
9288
  pathParameters: {
8218
- contributorId: string;
8219
9289
  extensionId: string;
8220
9290
  };
9291
+ }) & {
9292
+ headers?: Partial<{
9293
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9294
+ }>;
8221
9295
  } & {
8222
9296
  headers: {
8223
9297
  "x-access-token"?: string | undefined;
8224
9298
  } & Partial<{
8225
9299
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8226
9300
  }>;
8227
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9301
+ }, import("@mittwald/api-client-commons").Response<{
9302
+ checkoutUrl?: string | undefined;
9303
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9304
+ [x: string]: unknown;
9305
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8228
9306
  [x: string]: unknown;
8229
9307
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8230
9308
  [x: string]: unknown;
8231
9309
  }, 429, "application/json">>>;
8232
- /** Add an asset to an extension. */
8233
- extensionRequestAssetUpload: (request: {
8234
- data: {
8235
- assetType: "image" | "video";
8236
- };
8237
- contributorId: string;
9310
+ /** Creates or Updates Pricing for an Extension. */
9311
+ extensionUpdateExtensionPricing: (request: {
8238
9312
  extensionId: string;
9313
+ contributorId: string;
9314
+ data?: {
9315
+ priceInCents?: number | undefined;
9316
+ } | undefined;
8239
9317
  headers?: {
8240
9318
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8241
9319
  "x-access-token"?: string | undefined;
8242
9320
  } | undefined;
8243
9321
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8244
9322
  data: {
8245
- assetType: "image" | "video";
9323
+ priceInCents?: number | undefined;
8246
9324
  };
8247
9325
  } & {
8248
9326
  pathParameters: {
8249
- contributorId: string;
8250
9327
  extensionId: string;
9328
+ contributorId: string;
8251
9329
  };
8252
9330
  } & {
8253
9331
  headers?: Partial<{
@@ -8260,44 +9338,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8260
9338
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8261
9339
  }>;
8262
9340
  }, import("@mittwald/api-client-commons").Response<{
8263
- assetRefId: string;
8264
- rules: {
8265
- extensions: string[];
8266
- fileTypes: {
8267
- extensions: string[];
8268
- mimeType: string;
8269
- }[];
8270
- maxSizeInBytes: number;
8271
- mimeTypes: string[];
8272
- properties?: {
8273
- imageDimensions?: {
8274
- max: {
8275
- height?: number;
8276
- width?: number;
8277
- };
8278
- min: {
8279
- height?: number;
8280
- width?: number;
8281
- };
8282
- };
8283
- };
8284
- };
9341
+ extensionId?: string | undefined;
8285
9342
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8286
9343
  [x: string]: unknown;
8287
9344
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8288
9345
  [x: string]: unknown;
8289
9346
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8290
9347
  [x: string]: unknown;
8291
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8292
- [x: string]: unknown;
8293
9348
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8294
9349
  data: {
8295
- assetType: "image" | "video";
9350
+ priceInCents?: number | undefined;
8296
9351
  };
8297
9352
  } & {
8298
9353
  pathParameters: {
8299
- contributorId: string;
8300
9354
  extensionId: string;
9355
+ contributorId: string;
8301
9356
  };
8302
9357
  } & {
8303
9358
  headers?: Partial<{
@@ -8310,41 +9365,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8310
9365
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8311
9366
  }>;
8312
9367
  }, import("@mittwald/api-client-commons").Response<{
8313
- assetRefId: string;
8314
- rules: {
8315
- extensions: string[];
8316
- fileTypes: {
8317
- extensions: string[];
8318
- mimeType: string;
8319
- }[];
8320
- maxSizeInBytes: number;
8321
- mimeTypes: string[];
8322
- properties?: {
8323
- imageDimensions?: {
8324
- max: {
8325
- height?: number;
8326
- width?: number;
8327
- };
8328
- min: {
8329
- height?: number;
8330
- width?: number;
8331
- };
8332
- };
8333
- };
8334
- };
9368
+ extensionId?: string | undefined;
8335
9369
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8336
9370
  [x: string]: unknown;
8337
9371
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8338
9372
  [x: string]: unknown;
8339
9373
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8340
9374
  [x: string]: unknown;
8341
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8342
- [x: string]: unknown;
8343
9375
  }, 429, "application/json">>>;
8344
- /** Start the verification process of an Extension. */
8345
- extensionRequestExtensionVerification: (request: {
8346
- contributorId: string;
8347
- extensionId: string;
9376
+ /** Get payment method details */
9377
+ customerGetPaymentMethod: (request: {
9378
+ customerId: string;
8348
9379
  headers?: {
8349
9380
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8350
9381
  "x-access-token"?: string | undefined;
@@ -8355,8 +9386,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8355
9386
  }>;
8356
9387
  } & {
8357
9388
  pathParameters: {
8358
- contributorId: string;
8359
- extensionId: string;
9389
+ customerId: string;
8360
9390
  };
8361
9391
  } & {
8362
9392
  headers: {
@@ -8364,18 +9394,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8364
9394
  } & Partial<{
8365
9395
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8366
9396
  }>;
8367
- }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
9397
+ }, import("@mittwald/api-client-commons").Response<{
9398
+ cardDetails?: {
9399
+ brand: string;
9400
+ last4: string;
9401
+ } | undefined;
9402
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8368
9403
  [x: string]: unknown;
8369
9404
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8370
9405
  [x: string]: unknown;
9406
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9407
+ [x: string]: unknown;
8371
9408
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8372
9409
  headers?: Partial<{
8373
9410
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8374
9411
  }>;
8375
9412
  } & {
8376
9413
  pathParameters: {
8377
- contributorId: string;
8378
- extensionId: string;
9414
+ customerId: string;
8379
9415
  };
8380
9416
  } & {
8381
9417
  headers: {
@@ -8383,32 +9419,35 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8383
9419
  } & Partial<{
8384
9420
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8385
9421
  }>;
8386
- }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
9422
+ }, import("@mittwald/api-client-commons").Response<{
9423
+ cardDetails?: {
9424
+ brand: string;
9425
+ last4: string;
9426
+ } | undefined;
9427
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8387
9428
  [x: string]: unknown;
8388
9429
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8389
9430
  [x: string]: unknown;
9431
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9432
+ [x: string]: unknown;
8390
9433
  }, 429, "application/json">>>;
8391
- /** Publish or withdraw an Extension. */
8392
- extensionSetExtensionPublishedState: (request: {
8393
- data: {
8394
- published: boolean;
8395
- reason?: string | undefined;
8396
- };
8397
- contributorId: string;
8398
- extensionId: string;
9434
+ /** Get the link to update the marketplace payment method */
9435
+ customerUpdatePaymentMethod: (request: {
9436
+ customerId: string;
9437
+ data?: {
9438
+ customReturnUrl?: string | undefined;
9439
+ } | undefined;
8399
9440
  headers?: {
8400
9441
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8401
9442
  "x-access-token"?: string | undefined;
8402
9443
  } | undefined;
8403
9444
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8404
9445
  data: {
8405
- published: boolean;
8406
- reason?: string | undefined;
9446
+ customReturnUrl?: string | undefined;
8407
9447
  };
8408
9448
  } & {
8409
9449
  pathParameters: {
8410
- contributorId: string;
8411
- extensionId: string;
9450
+ customerId: string;
8412
9451
  };
8413
9452
  } & {
8414
9453
  headers?: Partial<{
@@ -8421,21 +9460,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8421
9460
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8422
9461
  }>;
8423
9462
  }, import("@mittwald/api-client-commons").Response<{
8424
- id: string;
8425
- published: boolean;
9463
+ url?: string | undefined;
8426
9464
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8427
9465
  [x: string]: unknown;
9466
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9467
+ [x: string]: unknown;
8428
9468
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8429
9469
  [x: string]: unknown;
8430
9470
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8431
9471
  data: {
8432
- published: boolean;
8433
- reason?: string | undefined;
9472
+ customReturnUrl?: string | undefined;
8434
9473
  };
8435
9474
  } & {
8436
9475
  pathParameters: {
8437
- contributorId: string;
8438
- extensionId: string;
9476
+ customerId: string;
8439
9477
  };
8440
9478
  } & {
8441
9479
  headers?: Partial<{
@@ -8448,10 +9486,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8448
9486
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8449
9487
  }>;
8450
9488
  }, import("@mittwald/api-client-commons").Response<{
8451
- id: string;
8452
- published: boolean;
9489
+ url?: string | undefined;
8453
9490
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8454
9491
  [x: string]: unknown;
9492
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9493
+ [x: string]: unknown;
8455
9494
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8456
9495
  [x: string]: unknown;
8457
9496
  }, 429, "application/json">>>;
@@ -14009,28 +15048,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14009
15048
  }, 429, "application/json">>>;
14010
15049
  /** Get the latest screenshot's FileReference belonging to a Domain. */
14011
15050
  getLatestScreenshot: (request: {
14012
- data: {
15051
+ queryParameters: {
15052
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
14013
15053
  domainName: string;
14014
- path: string;
14015
15054
  };
14016
- domainId: string;
14017
15055
  headers?: {
14018
15056
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
14019
15057
  "x-access-token"?: string | undefined;
14020
15058
  } | undefined;
14021
15059
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
14022
- data: {
14023
- domainName: string;
14024
- path: string;
14025
- };
14026
- } & {
14027
- pathParameters: {
14028
- domainId: string;
14029
- };
14030
- } & {
14031
15060
  headers?: Partial<{
14032
15061
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
14033
15062
  }>;
15063
+ } & {
15064
+ queryParameters: {
15065
+ domainName: string;
15066
+ } & Partial<{
15067
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
15068
+ }>;
14034
15069
  } & {
14035
15070
  headers: {
14036
15071
  "x-access-token"?: string | undefined;
@@ -14044,18 +15079,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14044
15079
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
14045
15080
  [x: string]: unknown;
14046
15081
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
14047
- data: {
14048
- domainName: string;
14049
- path: string;
14050
- };
14051
- } & {
14052
- pathParameters: {
14053
- domainId: string;
14054
- };
14055
- } & {
14056
15082
  headers?: Partial<{
14057
15083
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
14058
15084
  }>;
15085
+ } & {
15086
+ queryParameters: {
15087
+ domainName: string;
15088
+ } & Partial<{
15089
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
15090
+ }>;
14059
15091
  } & {
14060
15092
  headers: {
14061
15093
  "x-access-token"?: string | undefined;