@mittwald/api-client 4.207.0 → 4.209.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.
@@ -3229,6 +3229,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3229
3229
  getServiceLogs: (request: {
3230
3230
  stackId: string;
3231
3231
  serviceId: string;
3232
+ queryParameters?: {
3233
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3234
+ tail?: number | undefined;
3235
+ } | undefined;
3232
3236
  headers?: {
3233
3237
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3234
3238
  "x-access-token"?: string | undefined;
@@ -3242,6 +3246,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3242
3246
  stackId: string;
3243
3247
  serviceId: string;
3244
3248
  };
3249
+ } & {
3250
+ queryParameters: {
3251
+ tail?: number | undefined;
3252
+ } & Partial<{
3253
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3254
+ }>;
3245
3255
  } & {
3246
3256
  headers: {
3247
3257
  "x-access-token"?: string | undefined;
@@ -3267,6 +3277,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3267
3277
  stackId: string;
3268
3278
  serviceId: string;
3269
3279
  };
3280
+ } & {
3281
+ queryParameters: {
3282
+ tail?: number | undefined;
3283
+ } & Partial<{
3284
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3285
+ }>;
3270
3286
  } & {
3271
3287
  headers: {
3272
3288
  "x-access-token"?: string | undefined;
@@ -6343,13 +6359,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6343
6359
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6344
6360
  [x: string]: unknown;
6345
6361
  }, 429, "application/json">>>;
6346
- /** List ContractPartners of the contributor. */
6347
- contributorListContractPartnersOfContributor: (request: {
6362
+ /** List incoming Invoices of a Contributor. */
6363
+ contributorListIncomingInvoices: (request: {
6348
6364
  contributorId: string;
6349
6365
  queryParameters?: {
6350
6366
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6351
- extensionId?: string | undefined;
6352
- extensionInstanceId?: string | undefined;
6367
+ limit?: number | undefined;
6368
+ skip?: number | undefined;
6369
+ page?: number | undefined;
6370
+ sort?: "invoiceNumber"[] | undefined;
6371
+ order?: ("asc" | "desc")[] | undefined;
6353
6372
  } | undefined;
6354
6373
  headers?: {
6355
6374
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -6365,58 +6384,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6365
6384
  };
6366
6385
  } & {
6367
6386
  queryParameters: {
6368
- extensionId?: string | undefined;
6369
- extensionInstanceId?: string | undefined;
6370
- } & Partial<{
6371
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6372
- }>;
6373
- } & {
6374
- headers: {
6375
- "x-access-token"?: string | undefined;
6376
- } & Partial<{
6377
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6378
- }>;
6379
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6380
- [x: string]: unknown;
6381
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6382
- headers?: Partial<{
6383
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6384
- }>;
6385
- } & {
6386
- pathParameters: {
6387
- contributorId: string;
6388
- };
6389
- } & {
6390
- queryParameters: {
6391
- extensionId?: string | undefined;
6392
- extensionInstanceId?: string | undefined;
6393
- } & Partial<{
6394
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6395
- }>;
6396
- } & {
6397
- headers: {
6398
- "x-access-token"?: string | undefined;
6387
+ limit?: number | undefined;
6388
+ skip?: number | undefined;
6389
+ page?: number | undefined;
6390
+ sort?: "invoiceNumber"[] | undefined;
6391
+ order?: ("asc" | "desc")[] | undefined;
6399
6392
  } & Partial<{
6400
6393
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6401
6394
  }>;
6402
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6403
- [x: string]: unknown;
6404
- }, 429, "application/json">>>;
6405
- /** List incoming Invoices of a Contributor. */
6406
- contributorListIncomingInvoices: (request: {
6407
- contributorId: string;
6408
- headers?: {
6409
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6410
- "x-access-token"?: string | undefined;
6411
- } | undefined;
6412
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6413
- headers?: Partial<{
6414
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6415
- }>;
6416
- } & {
6417
- pathParameters: {
6418
- contributorId: string;
6419
- };
6420
6395
  } & {
6421
6396
  headers: {
6422
6397
  "x-access-token"?: string | undefined;
@@ -6449,6 +6424,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6449
6424
  pathParameters: {
6450
6425
  contributorId: string;
6451
6426
  };
6427
+ } & {
6428
+ queryParameters: {
6429
+ limit?: number | undefined;
6430
+ skip?: number | undefined;
6431
+ page?: number | undefined;
6432
+ sort?: "invoiceNumber"[] | undefined;
6433
+ order?: ("asc" | "desc")[] | undefined;
6434
+ } & Partial<{
6435
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6436
+ }>;
6452
6437
  } & {
6453
6438
  headers: {
6454
6439
  "x-access-token"?: string | undefined;
@@ -6595,83 +6580,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6595
6580
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6596
6581
  [x: string]: unknown;
6597
6582
  }, 429, "application/json">>>;
6598
- /** Rotate the secret for an extension instance. */
6599
- contributorRotateSecretForExtensionInstance: (request: {
6600
- contributorId: string;
6601
- extensionId: string;
6602
- extensionInstanceId: string;
6603
- data?: {
6604
- allowWebhookFailure?: boolean | undefined;
6605
- } | undefined;
6606
- headers?: {
6607
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6608
- "x-access-token"?: string | undefined;
6609
- } | undefined;
6610
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6611
- data: {
6612
- allowWebhookFailure?: boolean | undefined;
6613
- };
6614
- } & {
6615
- pathParameters: {
6616
- contributorId: string;
6617
- extensionId: string;
6618
- extensionInstanceId: string;
6619
- };
6620
- } & {
6621
- headers?: Partial<{
6622
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6623
- }>;
6624
- } & {
6625
- headers: {
6626
- "x-access-token"?: string | undefined;
6627
- } & Partial<{
6628
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6629
- }>;
6630
- }, import("@mittwald/api-client-commons").Response<{
6631
- secret: string;
6632
- webhookResult: {
6633
- failure: boolean;
6634
- statusCode?: string;
6635
- };
6636
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6637
- [x: string]: unknown;
6638
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6639
- [x: string]: unknown;
6640
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6641
- [x: string]: unknown;
6642
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6643
- data: {
6644
- allowWebhookFailure?: boolean | undefined;
6645
- };
6646
- } & {
6647
- pathParameters: {
6648
- contributorId: string;
6649
- extensionId: string;
6650
- extensionInstanceId: string;
6651
- };
6652
- } & {
6653
- headers?: Partial<{
6654
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6655
- }>;
6656
- } & {
6657
- headers: {
6658
- "x-access-token"?: string | undefined;
6659
- } & Partial<{
6660
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6661
- }>;
6662
- }, import("@mittwald/api-client-commons").Response<{
6663
- secret: string;
6664
- webhookResult: {
6665
- failure: boolean;
6666
- statusCode?: string;
6667
- };
6668
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6669
- [x: string]: unknown;
6670
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6671
- [x: string]: unknown;
6672
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6673
- [x: string]: unknown;
6674
- }, 429, "application/json">>>;
6675
6583
  /** Authenticate your external application using the extensionInstanceSecret. */
6676
6584
  extensionAuthenticateInstance: (request: {
6677
6585
  data: {
@@ -6899,25 +6807,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6899
6807
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6900
6808
  [x: string]: unknown;
6901
6809
  }, 429, "application/json">>>;
6902
- /** Change the context of an Extension. */
6903
- extensionChangeContext: (request: {
6810
+ /** Create the OnboardingProcess of a Contributor. */
6811
+ extensionCreateContributorOnboardingProcess: (request: {
6904
6812
  data: {
6905
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6813
+ shippingCountryRestriction: "onlyDomestic";
6906
6814
  };
6907
6815
  contributorId: string;
6908
- extensionId: string;
6909
6816
  headers?: {
6910
6817
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6911
6818
  "x-access-token"?: string | undefined;
6912
6819
  } | undefined;
6913
6820
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6914
6821
  data: {
6915
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6822
+ shippingCountryRestriction: "onlyDomestic";
6916
6823
  };
6917
6824
  } & {
6918
6825
  pathParameters: {
6919
6826
  contributorId: string;
6920
- extensionId: string;
6921
6827
  };
6922
6828
  } & {
6923
6829
  headers?: Partial<{
@@ -6930,21 +6836,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6930
6836
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6931
6837
  }>;
6932
6838
  }, import("@mittwald/api-client-commons").Response<{
6933
- cleaningUpInstances: boolean;
6934
- currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6935
- id: string;
6936
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6839
+ contributorId?: string | undefined;
6840
+ onboardingLink?: string | undefined;
6841
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6842
+ [x: string]: unknown;
6843
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6937
6844
  [x: string]: unknown;
6938
6845
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6939
6846
  [x: string]: unknown;
6940
6847
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6941
6848
  data: {
6942
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6849
+ shippingCountryRestriction: "onlyDomestic";
6943
6850
  };
6944
6851
  } & {
6945
6852
  pathParameters: {
6946
6853
  contributorId: string;
6947
- extensionId: string;
6948
6854
  };
6949
6855
  } & {
6950
6856
  headers?: Partial<{
@@ -6957,91 +6863,108 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6957
6863
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6958
6864
  }>;
6959
6865
  }, import("@mittwald/api-client-commons").Response<{
6960
- cleaningUpInstances: boolean;
6961
- currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6962
- id: string;
6963
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6866
+ contributorId?: string | undefined;
6867
+ onboardingLink?: string | undefined;
6868
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6869
+ [x: string]: unknown;
6870
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6964
6871
  [x: string]: unknown;
6965
6872
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6966
6873
  [x: string]: unknown;
6967
6874
  }, 429, "application/json">>>;
6968
- /** Consent to extension scopes. */
6969
- extensionConsentToExtensionScopes: (request: {
6970
- data: {
6971
- consentedScopes: string[];
6972
- };
6973
- extensionInstanceId: string;
6875
+ /** Get all open extension orders for given customer */
6876
+ extensionGetCustomerExtensionInstanceOrders: (request: {
6877
+ customerId: string;
6974
6878
  headers?: {
6975
6879
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6976
6880
  "x-access-token"?: string | undefined;
6977
6881
  } | undefined;
6978
6882
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6979
- data: {
6980
- consentedScopes: string[];
6981
- };
6982
- } & {
6983
- pathParameters: {
6984
- extensionInstanceId: string;
6985
- };
6986
- } & {
6987
6883
  headers?: Partial<{
6988
6884
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6989
6885
  }>;
6886
+ } & {
6887
+ pathParameters: {
6888
+ customerId: string;
6889
+ };
6990
6890
  } & {
6991
6891
  headers: {
6992
6892
  "x-access-token"?: string | undefined;
6993
6893
  } & Partial<{
6994
6894
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6995
6895
  }>;
6996
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6896
+ }, import("@mittwald/api-client-commons").Response<{
6897
+ extensionId?: string;
6898
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6997
6899
  [x: string]: unknown;
6998
6900
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6999
6901
  [x: string]: unknown;
6902
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6903
+ [x: string]: unknown;
7000
6904
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7001
- data: {
7002
- consentedScopes: string[];
7003
- };
7004
- } & {
7005
- pathParameters: {
7006
- extensionInstanceId: string;
7007
- };
7008
- } & {
7009
6905
  headers?: Partial<{
7010
6906
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7011
6907
  }>;
6908
+ } & {
6909
+ pathParameters: {
6910
+ customerId: string;
6911
+ };
7012
6912
  } & {
7013
6913
  headers: {
7014
6914
  "x-access-token"?: string | undefined;
7015
6915
  } & Partial<{
7016
6916
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7017
6917
  }>;
7018
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6918
+ }, import("@mittwald/api-client-commons").Response<{
6919
+ extensionId?: string;
6920
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7019
6921
  [x: string]: unknown;
7020
6922
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7021
6923
  [x: string]: unknown;
6924
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6925
+ [x: string]: unknown;
7022
6926
  }, 429, "application/json">>>;
7023
- /** Create the OnboardingProcess of a Contributor. */
7024
- extensionCreateContributorOnboardingProcess: (request: {
7025
- data: {
7026
- shippingCountryRestriction: "onlyDomestic";
7027
- };
7028
- contributorId: string;
6927
+ /** Get the Contract Strategy of an Extension Instance */
6928
+ extensionGetExtensionInstanceContract: (request: {
6929
+ extensionInstanceId: string;
7029
6930
  headers?: {
7030
6931
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7031
6932
  "x-access-token"?: string | undefined;
7032
6933
  } | undefined;
7033
6934
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7034
- data: {
7035
- shippingCountryRestriction: "onlyDomestic";
7036
- };
6935
+ headers?: Partial<{
6936
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6937
+ }>;
7037
6938
  } & {
7038
6939
  pathParameters: {
7039
- contributorId: string;
6940
+ extensionInstanceId: string;
7040
6941
  };
7041
6942
  } & {
6943
+ headers: {
6944
+ "x-access-token"?: string | undefined;
6945
+ } & Partial<{
6946
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6947
+ }>;
6948
+ }, import("@mittwald/api-client-commons").Response<{
6949
+ currentPrice?: number | undefined;
6950
+ interactionDeadline?: string | undefined;
6951
+ interactionRequired: boolean;
6952
+ status: "notStarted" | "pending" | "active" | "terminationPending";
6953
+ terminationTargetDate?: string | undefined;
6954
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6955
+ [x: string]: unknown;
6956
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6957
+ [x: string]: unknown;
6958
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6959
+ [x: string]: unknown;
6960
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7042
6961
  headers?: Partial<{
7043
6962
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7044
6963
  }>;
6964
+ } & {
6965
+ pathParameters: {
6966
+ extensionInstanceId: string;
6967
+ };
7045
6968
  } & {
7046
6969
  headers: {
7047
6970
  "x-access-token"?: string | undefined;
@@ -7049,137 +6972,154 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7049
6972
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7050
6973
  }>;
7051
6974
  }, import("@mittwald/api-client-commons").Response<{
7052
- contributorId?: string | undefined;
7053
- onboardingLink?: string | undefined;
7054
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6975
+ currentPrice?: number | undefined;
6976
+ interactionDeadline?: string | undefined;
6977
+ interactionRequired: boolean;
6978
+ status: "notStarted" | "pending" | "active" | "terminationPending";
6979
+ terminationTargetDate?: string | undefined;
6980
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7055
6981
  [x: string]: unknown;
7056
6982
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7057
6983
  [x: string]: unknown;
7058
6984
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7059
6985
  [x: string]: unknown;
7060
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7061
- data: {
7062
- shippingCountryRestriction: "onlyDomestic";
7063
- };
6986
+ }, 429, "application/json">>>;
6987
+ /** Update or Create Contract for existing Extension Instances. */
6988
+ extensionUpdateExtensionInstanceContract: (request: {
6989
+ extensionInstanceId: string;
6990
+ headers?: {
6991
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6992
+ "x-access-token"?: string | undefined;
6993
+ } | undefined;
6994
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6995
+ headers?: Partial<{
6996
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6997
+ }>;
7064
6998
  } & {
7065
6999
  pathParameters: {
7066
- contributorId: string;
7000
+ extensionInstanceId: string;
7067
7001
  };
7068
7002
  } & {
7003
+ headers: {
7004
+ "x-access-token"?: string | undefined;
7005
+ } & Partial<{
7006
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7007
+ }>;
7008
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7009
+ [x: string]: unknown;
7010
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7011
+ [x: string]: unknown;
7012
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7013
+ [x: string]: unknown;
7014
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7069
7015
  headers?: Partial<{
7070
7016
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7071
7017
  }>;
7018
+ } & {
7019
+ pathParameters: {
7020
+ extensionInstanceId: string;
7021
+ };
7072
7022
  } & {
7073
7023
  headers: {
7074
7024
  "x-access-token"?: string | undefined;
7075
7025
  } & Partial<{
7076
7026
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7077
7027
  }>;
7078
- }, import("@mittwald/api-client-commons").Response<{
7079
- contributorId?: string | undefined;
7080
- onboardingLink?: string | undefined;
7081
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7028
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7082
7029
  [x: string]: unknown;
7083
7030
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7084
7031
  [x: string]: unknown;
7085
7032
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7086
7033
  [x: string]: unknown;
7087
7034
  }, 429, "application/json">>>;
7088
- /** List ExtensionInstances. */
7089
- extensionListExtensionInstances: (request?: {
7035
+ /** Get all open extension orders for given project */
7036
+ extensionGetProjectExtensionInstanceOrders: (request: {
7037
+ projectId: string;
7090
7038
  headers?: {
7091
7039
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7092
7040
  "x-access-token"?: string | undefined;
7093
7041
  } | undefined;
7094
- queryParameters?: {
7095
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7096
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7097
- contextId?: string | undefined;
7098
- extensionId?: string | undefined;
7099
- searchTerm?: string | undefined;
7100
- limit?: number | undefined;
7101
- skip?: number | undefined;
7102
- page?: number | undefined;
7103
- sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
7104
- order?: ("asc" | "desc")[] | undefined;
7105
- } | undefined;
7106
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7042
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7107
7043
  headers?: Partial<{
7108
7044
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7109
7045
  }>;
7110
7046
  } & {
7111
- queryParameters: {
7112
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7113
- contextId?: string | undefined;
7114
- extensionId?: string | undefined;
7115
- searchTerm?: string | undefined;
7116
- limit?: number | undefined;
7117
- skip?: number | undefined;
7118
- page?: number | undefined;
7119
- sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
7120
- order?: ("asc" | "desc")[] | undefined;
7121
- } & Partial<{
7122
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7123
- }>;
7047
+ pathParameters: {
7048
+ projectId: string;
7049
+ };
7124
7050
  } & {
7125
7051
  headers: {
7126
7052
  "x-access-token"?: string | undefined;
7127
7053
  } & Partial<{
7128
7054
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7129
7055
  }>;
7130
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7056
+ }, import("@mittwald/api-client-commons").Response<{
7057
+ extensionId?: string;
7058
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7131
7059
  [x: string]: unknown;
7132
7060
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7133
7061
  [x: string]: unknown;
7062
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7063
+ [x: string]: unknown;
7134
7064
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7135
7065
  headers?: Partial<{
7136
7066
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7137
7067
  }>;
7138
7068
  } & {
7139
- queryParameters: {
7140
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7141
- contextId?: string | undefined;
7142
- extensionId?: string | undefined;
7143
- searchTerm?: string | undefined;
7144
- limit?: number | undefined;
7145
- skip?: number | undefined;
7146
- page?: number | undefined;
7147
- sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
7148
- order?: ("asc" | "desc")[] | undefined;
7149
- } & Partial<{
7150
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7151
- }>;
7069
+ pathParameters: {
7070
+ projectId: string;
7071
+ };
7152
7072
  } & {
7153
7073
  headers: {
7154
7074
  "x-access-token"?: string | undefined;
7155
7075
  } & Partial<{
7156
7076
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7157
7077
  }>;
7158
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7078
+ }, import("@mittwald/api-client-commons").Response<{
7079
+ extensionId?: string;
7080
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7159
7081
  [x: string]: unknown;
7160
7082
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7161
7083
  [x: string]: unknown;
7084
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7085
+ [x: string]: unknown;
7162
7086
  }, 429, "application/json">>>;
7163
- /** Create an ExtensionInstance. */
7164
- extensionCreateExtensionInstance: (request: {
7087
+ /** Order Extension with saved payment method */
7088
+ extensionOrderExtension: (request: {
7165
7089
  data: {
7166
7090
  consentedScopes: string[];
7167
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7168
- contextId: string;
7169
- extensionId: string;
7091
+ customerId: string;
7092
+ };
7093
+ extensionId: string;
7094
+ headers?: {
7095
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7096
+ "x-access-token"?: string | undefined;
7097
+ } | undefined;
7098
+ } | {
7099
+ data: {
7100
+ consentedScopes: string[];
7101
+ projectId: string;
7170
7102
  };
7103
+ extensionId: string;
7171
7104
  headers?: {
7172
7105
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7173
7106
  "x-access-token"?: string | undefined;
7174
7107
  } | undefined;
7175
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7108
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
7176
7109
  data: {
7177
7110
  consentedScopes: string[];
7178
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7179
- contextId: string;
7111
+ customerId: string;
7112
+ };
7113
+ } | {
7114
+ data: {
7115
+ consentedScopes: string[];
7116
+ projectId: string;
7117
+ };
7118
+ }) & {
7119
+ pathParameters: {
7180
7120
  extensionId: string;
7181
7121
  };
7182
- } & {
7122
+ }) & {
7183
7123
  headers?: Partial<{
7184
7124
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7185
7125
  }>;
@@ -7189,27 +7129,29 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7189
7129
  } & Partial<{
7190
7130
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7191
7131
  }>;
7192
- }, import("@mittwald/api-client-commons").Response<{
7193
- id: string;
7194
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7132
+ }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7195
7133
  [x: string]: unknown;
7196
7134
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7197
- message: string;
7198
- type: string;
7199
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
7200
7135
  [x: string]: unknown;
7201
7136
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7202
7137
  [x: string]: unknown;
7203
7138
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7204
7139
  [x: string]: unknown;
7205
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7140
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
7206
7141
  data: {
7207
7142
  consentedScopes: string[];
7208
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7209
- contextId: string;
7143
+ customerId: string;
7144
+ };
7145
+ } | {
7146
+ data: {
7147
+ consentedScopes: string[];
7148
+ projectId: string;
7149
+ };
7150
+ }) & {
7151
+ pathParameters: {
7210
7152
  extensionId: string;
7211
7153
  };
7212
- } & {
7154
+ }) & {
7213
7155
  headers?: Partial<{
7214
7156
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7215
7157
  }>;
@@ -7219,35 +7161,39 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7219
7161
  } & Partial<{
7220
7162
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7221
7163
  }>;
7222
- }, import("@mittwald/api-client-commons").Response<{
7223
- id: string;
7224
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7164
+ }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7225
7165
  [x: string]: unknown;
7226
7166
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7227
- message: string;
7228
- type: string;
7229
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
7230
7167
  [x: string]: unknown;
7231
7168
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7232
7169
  [x: string]: unknown;
7233
7170
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7234
7171
  [x: string]: unknown;
7235
7172
  }, 429, "application/json">>>;
7236
- /** Create an access token retrieval key for an extension instance. */
7237
- extensionCreateRetrievalKey: (request: {
7238
- extensionInstanceId: string;
7173
+ /** Creates or Updates Pricing for an Extension. */
7174
+ extensionUpdateExtensionPricing: (request: {
7175
+ extensionId: string;
7176
+ contributorId: string;
7177
+ data?: {
7178
+ priceInCents?: number | undefined;
7179
+ } | undefined;
7239
7180
  headers?: {
7240
7181
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7241
7182
  "x-access-token"?: string | undefined;
7242
7183
  } | undefined;
7243
7184
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7244
- headers?: Partial<{
7245
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7246
- }>;
7185
+ data: {
7186
+ priceInCents?: number | undefined;
7187
+ };
7247
7188
  } & {
7248
7189
  pathParameters: {
7249
- extensionInstanceId: string;
7190
+ extensionId: string;
7191
+ contributorId: string;
7250
7192
  };
7193
+ } & {
7194
+ headers?: Partial<{
7195
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7196
+ }>;
7251
7197
  } & {
7252
7198
  headers: {
7253
7199
  "x-access-token"?: string | undefined;
@@ -7255,20 +7201,28 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7255
7201
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7256
7202
  }>;
7257
7203
  }, import("@mittwald/api-client-commons").Response<{
7258
- accessTokenRetrievalKey: string;
7259
- userId: string;
7204
+ extensionId?: string | undefined;
7260
7205
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7261
7206
  [x: string]: unknown;
7262
7207
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7263
7208
  [x: string]: unknown;
7209
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7210
+ [x: string]: unknown;
7211
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7212
+ [x: string]: unknown;
7264
7213
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7265
- headers?: Partial<{
7266
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7267
- }>;
7214
+ data: {
7215
+ priceInCents?: number | undefined;
7216
+ };
7268
7217
  } & {
7269
7218
  pathParameters: {
7270
- extensionInstanceId: string;
7219
+ extensionId: string;
7220
+ contributorId: string;
7271
7221
  };
7222
+ } & {
7223
+ headers?: Partial<{
7224
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7225
+ }>;
7272
7226
  } & {
7273
7227
  headers: {
7274
7228
  "x-access-token"?: string | undefined;
@@ -7276,16 +7230,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7276
7230
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7277
7231
  }>;
7278
7232
  }, import("@mittwald/api-client-commons").Response<{
7279
- accessTokenRetrievalKey: string;
7280
- userId: string;
7233
+ extensionId?: string | undefined;
7281
7234
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7282
7235
  [x: string]: unknown;
7283
7236
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7284
7237
  [x: string]: unknown;
7238
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7239
+ [x: string]: unknown;
7240
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7241
+ [x: string]: unknown;
7285
7242
  }, 429, "application/json">>>;
7286
- /** Get an ExtensionInstance. */
7287
- extensionGetExtensionInstance: (request: {
7288
- extensionInstanceId: string;
7243
+ /** Get payment method details */
7244
+ customerGetPaymentMethod: (request: {
7245
+ customerId: string;
7289
7246
  headers?: {
7290
7247
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7291
7248
  "x-access-token"?: string | undefined;
@@ -7296,7 +7253,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7296
7253
  }>;
7297
7254
  } & {
7298
7255
  pathParameters: {
7299
- extensionInstanceId: string;
7256
+ customerId: string;
7300
7257
  };
7301
7258
  } & {
7302
7259
  headers: {
@@ -7305,25 +7262,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7305
7262
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7306
7263
  }>;
7307
7264
  }, import("@mittwald/api-client-commons").Response<{
7308
- aggregateReference: {
7309
- aggregate: string;
7310
- domain: string;
7311
- id: string;
7312
- };
7313
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7314
- consentedScopes: string[];
7315
- contributorId: string;
7316
- contributorName: string;
7317
- createdAt?: string | undefined;
7318
- disabled: boolean;
7319
- extensionId: string;
7320
- extensionName: string;
7321
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7322
- id: string;
7323
- pendingInstallation: boolean;
7324
- pendingRemoval: boolean;
7265
+ cardDetails?: {
7266
+ brand: string;
7267
+ last4: string;
7268
+ } | undefined;
7325
7269
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7326
7270
  [x: string]: unknown;
7271
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7272
+ [x: string]: unknown;
7327
7273
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7328
7274
  [x: string]: unknown;
7329
7275
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -7332,7 +7278,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7332
7278
  }>;
7333
7279
  } & {
7334
7280
  pathParameters: {
7335
- extensionInstanceId: string;
7281
+ customerId: string;
7336
7282
  };
7337
7283
  } & {
7338
7284
  headers: {
@@ -7341,43 +7287,39 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7341
7287
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7342
7288
  }>;
7343
7289
  }, import("@mittwald/api-client-commons").Response<{
7344
- aggregateReference: {
7345
- aggregate: string;
7346
- domain: string;
7347
- id: string;
7348
- };
7349
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7350
- consentedScopes: string[];
7351
- contributorId: string;
7352
- contributorName: string;
7353
- createdAt?: string | undefined;
7354
- disabled: boolean;
7355
- extensionId: string;
7356
- extensionName: string;
7357
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7358
- id: string;
7359
- pendingInstallation: boolean;
7360
- pendingRemoval: boolean;
7290
+ cardDetails?: {
7291
+ brand: string;
7292
+ last4: string;
7293
+ } | undefined;
7361
7294
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7362
7295
  [x: string]: unknown;
7296
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7297
+ [x: string]: unknown;
7363
7298
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7364
7299
  [x: string]: unknown;
7365
7300
  }, 429, "application/json">>>;
7366
- /** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
7367
- extensionDeleteExtensionInstance: (request: {
7368
- extensionInstanceId: string;
7301
+ /** Get the link to update the marketplace payment method */
7302
+ customerUpdatePaymentMethod: (request: {
7303
+ customerId: string;
7304
+ data?: {
7305
+ customReturnUrl?: string | undefined;
7306
+ } | undefined;
7369
7307
  headers?: {
7370
7308
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7371
7309
  "x-access-token"?: string | undefined;
7372
7310
  } | undefined;
7373
7311
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7374
- headers?: Partial<{
7375
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7376
- }>;
7312
+ data: {
7313
+ customReturnUrl?: string | undefined;
7314
+ };
7377
7315
  } & {
7378
7316
  pathParameters: {
7379
- extensionInstanceId: string;
7317
+ customerId: string;
7380
7318
  };
7319
+ } & {
7320
+ headers?: Partial<{
7321
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7322
+ }>;
7381
7323
  } & {
7382
7324
  headers: {
7383
7325
  "x-access-token"?: string | undefined;
@@ -7385,21 +7327,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7385
7327
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7386
7328
  }>;
7387
7329
  }, import("@mittwald/api-client-commons").Response<{
7330
+ url?: string | undefined;
7331
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7388
7332
  [x: string]: unknown;
7389
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7333
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7390
7334
  [x: string]: unknown;
7391
7335
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7392
7336
  [x: string]: unknown;
7393
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7394
- [x: string]: unknown;
7395
7337
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7396
- headers?: Partial<{
7397
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7398
- }>;
7338
+ data: {
7339
+ customReturnUrl?: string | undefined;
7340
+ };
7399
7341
  } & {
7400
7342
  pathParameters: {
7401
- extensionInstanceId: string;
7343
+ customerId: string;
7402
7344
  };
7345
+ } & {
7346
+ headers?: Partial<{
7347
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7348
+ }>;
7403
7349
  } & {
7404
7350
  headers: {
7405
7351
  "x-access-token"?: string | undefined;
@@ -7407,18 +7353,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7407
7353
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7408
7354
  }>;
7409
7355
  }, import("@mittwald/api-client-commons").Response<{
7356
+ url?: string | undefined;
7357
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7410
7358
  [x: string]: unknown;
7411
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7359
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7412
7360
  [x: string]: unknown;
7413
7361
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7414
7362
  [x: string]: unknown;
7415
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7416
- [x: string]: unknown;
7417
7363
  }, 429, "application/json">>>;
7418
- /** Get Extension of own contributor. */
7419
- extensionGetOwnExtension: (request: {
7364
+ /** List ContractPartners of the contributor. */
7365
+ contributorListContractPartnersOfContributor: (request: {
7420
7366
  contributorId: string;
7421
- extensionId: string;
7367
+ queryParameters?: {
7368
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7369
+ extensionId?: string | undefined;
7370
+ extensionInstanceId?: string | undefined;
7371
+ } | undefined;
7422
7372
  headers?: {
7423
7373
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7424
7374
  "x-access-token"?: string | undefined;
@@ -7430,55 +7380,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7430
7380
  } & {
7431
7381
  pathParameters: {
7432
7382
  contributorId: string;
7433
- extensionId: string;
7434
7383
  };
7384
+ } & {
7385
+ queryParameters: {
7386
+ extensionId?: string | undefined;
7387
+ extensionInstanceId?: string | undefined;
7388
+ } & Partial<{
7389
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7390
+ }>;
7435
7391
  } & {
7436
7392
  headers: {
7437
7393
  "x-access-token"?: string | undefined;
7438
7394
  } & Partial<{
7439
7395
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7440
7396
  }>;
7441
- }, import("@mittwald/api-client-commons").Response<{
7442
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7443
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7444
- blocked?: boolean | undefined;
7445
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7446
- contributorId: string;
7447
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7448
- description?: string | undefined;
7449
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7450
- disabled?: boolean | undefined;
7451
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7452
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7453
- frontendFragments?: {
7454
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7455
- } | undefined;
7456
- functional: boolean;
7457
- id: string;
7458
- logoRefId?: string | undefined;
7459
- name: string;
7460
- pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
7461
- published: boolean;
7462
- requestedChanges?: {
7463
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7464
- scopes?: string[];
7465
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7466
- } | undefined;
7467
- scopes?: string[] | undefined;
7468
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7469
- state?: "enabled" | "blocked" | "disabled" | undefined;
7470
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7471
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7472
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
7473
- inherited: boolean;
7474
- }) | undefined;
7475
- tags?: string[] | undefined;
7476
- verificationRequested: boolean;
7477
- verified: boolean;
7478
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7479
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7480
- [x: string]: unknown;
7481
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7397
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7482
7398
  [x: string]: unknown;
7483
7399
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7484
7400
  headers?: Partial<{
@@ -7487,336 +7403,135 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7487
7403
  } & {
7488
7404
  pathParameters: {
7489
7405
  contributorId: string;
7490
- extensionId: string;
7491
7406
  };
7407
+ } & {
7408
+ queryParameters: {
7409
+ extensionId?: string | undefined;
7410
+ extensionInstanceId?: string | undefined;
7411
+ } & Partial<{
7412
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7413
+ }>;
7492
7414
  } & {
7493
7415
  headers: {
7494
7416
  "x-access-token"?: string | undefined;
7495
7417
  } & Partial<{
7496
7418
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7497
7419
  }>;
7498
- }, import("@mittwald/api-client-commons").Response<{
7499
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7500
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7501
- blocked?: boolean | undefined;
7502
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7503
- contributorId: string;
7504
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7505
- description?: string | undefined;
7506
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7507
- disabled?: boolean | undefined;
7508
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7509
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7510
- frontendFragments?: {
7511
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7512
- } | undefined;
7513
- functional: boolean;
7514
- id: string;
7515
- logoRefId?: string | undefined;
7516
- name: string;
7517
- pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
7518
- published: boolean;
7519
- requestedChanges?: {
7520
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7521
- scopes?: string[];
7522
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7523
- } | undefined;
7524
- scopes?: string[] | undefined;
7525
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7526
- state?: "enabled" | "blocked" | "disabled" | undefined;
7527
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7528
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7529
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
7530
- inherited: boolean;
7531
- }) | undefined;
7532
- tags?: string[] | undefined;
7533
- verificationRequested: boolean;
7534
- verified: boolean;
7535
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7536
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7537
- [x: string]: unknown;
7538
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7420
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7539
7421
  [x: string]: unknown;
7540
7422
  }, 429, "application/json">>>;
7541
- /** Delete an extension. */
7542
- extensionDeleteExtension: (request: {
7543
- contributorId: string;
7544
- extensionId: string;
7545
- data?: {
7546
- reason?: string | undefined;
7423
+ /** Get the public key to verify the webhook signature. */
7424
+ extensionGetPublicKey: (request: {
7425
+ serial: string;
7426
+ queryParameters?: {
7427
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7428
+ purpose?: "webhook" | "session_token" | undefined;
7429
+ format?: "raw" | "spki" | undefined;
7547
7430
  } | undefined;
7548
7431
  headers?: {
7549
7432
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7550
- "x-access-token"?: string | undefined;
7551
7433
  } | undefined;
7552
7434
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7553
- data: {
7554
- reason?: string | undefined;
7555
- };
7556
- } & {
7557
- pathParameters: {
7558
- contributorId: string;
7559
- extensionId: string;
7560
- };
7561
- } & {
7562
7435
  headers?: Partial<{
7563
7436
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7564
7437
  }>;
7565
7438
  } & {
7566
- headers: {
7567
- "x-access-token"?: string | undefined;
7439
+ pathParameters: {
7440
+ serial: string;
7441
+ };
7442
+ } & {
7443
+ queryParameters: {
7444
+ purpose?: "webhook" | "session_token" | undefined;
7445
+ format?: "raw" | "spki" | undefined;
7568
7446
  } & Partial<{
7569
7447
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7570
7448
  }>;
7571
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7449
+ }, import("@mittwald/api-client-commons").Response<{
7450
+ algorithm: string;
7451
+ key: string;
7452
+ serial: string;
7453
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7572
7454
  [x: string]: unknown;
7573
7455
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7574
7456
  [x: string]: unknown;
7575
7457
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7576
- data: {
7577
- reason?: string | undefined;
7578
- };
7458
+ headers?: Partial<{
7459
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7460
+ }>;
7579
7461
  } & {
7580
7462
  pathParameters: {
7581
- contributorId: string;
7582
- extensionId: string;
7463
+ serial: string;
7583
7464
  };
7584
7465
  } & {
7585
- headers?: Partial<{
7466
+ queryParameters: {
7467
+ purpose?: "webhook" | "session_token" | undefined;
7468
+ format?: "raw" | "spki" | undefined;
7469
+ } & Partial<{
7586
7470
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7587
7471
  }>;
7588
- } & {
7589
- headers: {
7590
- "x-access-token"?: string | undefined;
7591
- } & Partial<{
7592
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7593
- }>;
7594
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7472
+ }, import("@mittwald/api-client-commons").Response<{
7473
+ algorithm: string;
7474
+ key: string;
7475
+ serial: string;
7476
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7595
7477
  [x: string]: unknown;
7596
7478
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7597
7479
  [x: string]: unknown;
7598
7480
  }, 429, "application/json">>>;
7599
- /** Patch Extension. */
7600
- extensionPatchExtension: (request: {
7481
+ /** Remove an asset of an extension. */
7482
+ extensionRemoveAsset: (request: {
7601
7483
  contributorId: string;
7602
7484
  extensionId: string;
7603
- data?: {
7604
- assets?: string[] | undefined;
7605
- deprecation?: {
7606
- deprecatedAt: string;
7607
- note?: string | undefined;
7608
- successorId?: string | undefined;
7609
- } | undefined;
7610
- description?: string | undefined;
7611
- detailedDescriptions?: {
7612
- de: {
7613
- markdown: string;
7614
- plain?: string | undefined;
7615
- };
7616
- en?: {
7617
- markdown: string;
7618
- plain?: string | undefined;
7619
- } | undefined;
7620
- } | undefined;
7621
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7622
- frontendFragments?: {
7623
- [x: string]: {
7624
- url: string;
7625
- additionalProperties?: {
7626
- [x: string]: string;
7627
- } | undefined;
7628
- };
7629
- } | undefined;
7630
- name?: string | undefined;
7631
- scopes?: string[] | undefined;
7632
- subTitle?: {
7633
- de: string;
7634
- en?: string | undefined;
7635
- } | undefined;
7636
- support?: {
7637
- email: string;
7638
- phone?: string | undefined;
7639
- } | undefined;
7640
- tags?: string[] | undefined;
7641
- webhookUrls?: {
7642
- extensionAddedToContext: {
7643
- url: string;
7644
- };
7645
- extensionInstanceRemovedFromContext: {
7646
- url: string;
7647
- };
7648
- extensionInstanceSecretRotated: {
7649
- url: string;
7650
- };
7651
- extensionInstanceUpdated: {
7652
- url: string;
7653
- };
7654
- } | undefined;
7655
- } | undefined;
7485
+ assetRefId: string;
7656
7486
  headers?: {
7657
7487
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7658
7488
  "x-access-token"?: string | undefined;
7659
7489
  } | undefined;
7660
7490
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7661
- data: {
7662
- assets?: string[] | undefined;
7663
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7664
- description?: string | undefined;
7665
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7666
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7667
- frontendFragments?: {
7668
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7669
- } | undefined;
7670
- name?: string | undefined;
7671
- scopes?: string[] | undefined;
7672
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7673
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7674
- tags?: string[] | undefined;
7675
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7676
- };
7491
+ headers?: Partial<{
7492
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7493
+ }>;
7677
7494
  } & {
7678
7495
  pathParameters: {
7679
7496
  contributorId: string;
7680
7497
  extensionId: string;
7498
+ assetRefId: string;
7681
7499
  };
7682
- } & {
7683
- headers?: Partial<{
7684
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7685
- }>;
7686
7500
  } & {
7687
7501
  headers: {
7688
7502
  "x-access-token"?: string | undefined;
7689
7503
  } & Partial<{
7690
7504
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7691
7505
  }>;
7692
- }, import("@mittwald/api-client-commons").Response<{
7693
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7694
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7695
- blocked?: boolean | undefined;
7696
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7697
- contributorId: string;
7698
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7699
- description?: string | undefined;
7700
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7701
- disabled?: boolean | undefined;
7702
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7703
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7704
- frontendFragments?: {
7705
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7706
- } | undefined;
7707
- functional: boolean;
7708
- id: string;
7709
- logoRefId?: string | undefined;
7710
- name: string;
7711
- pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
7712
- published: boolean;
7713
- requestedChanges?: {
7714
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7715
- scopes?: string[];
7716
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7717
- } | undefined;
7718
- scopes?: string[] | undefined;
7719
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7720
- state?: "enabled" | "blocked" | "disabled" | undefined;
7721
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7722
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7723
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
7724
- inherited: boolean;
7725
- }) | undefined;
7726
- tags?: string[] | undefined;
7727
- verificationRequested: boolean;
7728
- verified: boolean;
7729
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7730
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7731
- [x: string]: unknown;
7732
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7506
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7733
7507
  [x: string]: unknown;
7734
7508
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7735
7509
  [x: string]: unknown;
7736
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
7737
- [x: string]: unknown;
7738
7510
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7739
- data: {
7740
- assets?: string[] | undefined;
7741
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7742
- description?: string | undefined;
7743
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7744
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7745
- frontendFragments?: {
7746
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7747
- } | undefined;
7748
- name?: string | undefined;
7749
- scopes?: string[] | undefined;
7750
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7751
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7752
- tags?: string[] | undefined;
7753
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7754
- };
7511
+ headers?: Partial<{
7512
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7513
+ }>;
7755
7514
  } & {
7756
7515
  pathParameters: {
7757
7516
  contributorId: string;
7758
7517
  extensionId: string;
7518
+ assetRefId: string;
7759
7519
  };
7760
- } & {
7761
- headers?: Partial<{
7762
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7763
- }>;
7764
7520
  } & {
7765
7521
  headers: {
7766
7522
  "x-access-token"?: string | undefined;
7767
7523
  } & Partial<{
7768
7524
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7769
7525
  }>;
7770
- }, import("@mittwald/api-client-commons").Response<{
7771
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7772
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7773
- blocked?: boolean | undefined;
7774
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7775
- contributorId: string;
7776
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7777
- description?: string | undefined;
7778
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7779
- disabled?: boolean | undefined;
7780
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7781
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7782
- frontendFragments?: {
7783
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7784
- } | undefined;
7785
- functional: boolean;
7786
- id: string;
7787
- logoRefId?: string | undefined;
7788
- name: string;
7789
- pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
7790
- published: boolean;
7791
- requestedChanges?: {
7792
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7793
- scopes?: string[];
7794
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7795
- } | undefined;
7796
- scopes?: string[] | undefined;
7797
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7798
- state?: "enabled" | "blocked" | "disabled" | undefined;
7799
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7800
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7801
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
7802
- inherited: boolean;
7803
- }) | undefined;
7804
- tags?: string[] | undefined;
7805
- verificationRequested: boolean;
7806
- verified: boolean;
7807
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7808
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7809
- [x: string]: unknown;
7810
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7526
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7811
7527
  [x: string]: unknown;
7812
7528
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7813
7529
  [x: string]: unknown;
7814
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
7815
- [x: string]: unknown;
7816
7530
  }, 429, "application/json">>>;
7817
- /** Disable an ExtensionInstance. */
7818
- extensionDisableExtensionInstance: (request: {
7819
- extensionInstanceId: string;
7531
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
7532
+ extensionGetExtensionInstanceForCustomer: (request: {
7533
+ customerId: string;
7534
+ extensionId: string;
7820
7535
  headers?: {
7821
7536
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7822
7537
  "x-access-token"?: string | undefined;
@@ -7827,7 +7542,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7827
7542
  }>;
7828
7543
  } & {
7829
7544
  pathParameters: {
7830
- extensionInstanceId: string;
7545
+ customerId: string;
7546
+ extensionId: string;
7831
7547
  };
7832
7548
  } & {
7833
7549
  headers: {
@@ -7836,10 +7552,26 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7836
7552
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7837
7553
  }>;
7838
7554
  }, import("@mittwald/api-client-commons").Response<{
7555
+ aggregateReference: {
7556
+ aggregate: string;
7557
+ domain: string;
7558
+ id: string;
7559
+ };
7560
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7561
+ consentedScopes: string[];
7562
+ contributorId: string;
7563
+ contributorName: string;
7564
+ createdAt?: string | undefined;
7565
+ disabled: boolean;
7566
+ extensionId: string;
7567
+ extensionName: string;
7568
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7569
+ id: string;
7570
+ pendingInstallation: boolean;
7571
+ pendingRemoval: boolean;
7572
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7839
7573
  [x: string]: unknown;
7840
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7841
- [x: string]: unknown;
7842
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7574
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7843
7575
  [x: string]: unknown;
7844
7576
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7845
7577
  headers?: Partial<{
@@ -7847,7 +7579,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7847
7579
  }>;
7848
7580
  } & {
7849
7581
  pathParameters: {
7850
- extensionInstanceId: string;
7582
+ customerId: string;
7583
+ extensionId: string;
7851
7584
  };
7852
7585
  } & {
7853
7586
  headers: {
@@ -7856,26 +7589,32 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7856
7589
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7857
7590
  }>;
7858
7591
  }, import("@mittwald/api-client-commons").Response<{
7859
- [x: string]: unknown;
7860
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7861
- [x: string]: unknown;
7862
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7863
- [x: string]: unknown;
7864
- }, 429, "application/json">>>;
7865
- /** Dry run a webhook with random or given values. */
7866
- extensionDryRunWebhook: (request: {
7592
+ aggregateReference: {
7593
+ aggregate: string;
7594
+ domain: string;
7595
+ id: string;
7596
+ };
7597
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7598
+ consentedScopes: string[];
7867
7599
  contributorId: string;
7868
- extensionId: string;
7869
- extensionInstanceId: string;
7870
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7871
- queryParameters?: {
7872
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7873
- contextId?: string | undefined;
7874
- scopes?: string[] | undefined;
7875
- instanceDisabled?: boolean | undefined;
7876
- createdAt?: string | undefined;
7877
- secret?: string | undefined;
7878
- } | undefined;
7600
+ contributorName: string;
7601
+ createdAt?: string | undefined;
7602
+ disabled: boolean;
7603
+ extensionId: string;
7604
+ extensionName: string;
7605
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7606
+ id: string;
7607
+ pendingInstallation: boolean;
7608
+ pendingRemoval: boolean;
7609
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7610
+ [x: string]: unknown;
7611
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7612
+ [x: string]: unknown;
7613
+ }, 429, "application/json">>>;
7614
+ /** Generate an Extension secret for the given Extension. */
7615
+ extensionGenerateExtensionSecret: (request: {
7616
+ contributorId: string;
7617
+ extensionId: string;
7879
7618
  headers?: {
7880
7619
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7881
7620
  "x-access-token"?: string | undefined;
@@ -7888,19 +7627,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7888
7627
  pathParameters: {
7889
7628
  contributorId: string;
7890
7629
  extensionId: string;
7891
- extensionInstanceId: string;
7892
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7893
7630
  };
7894
- } & {
7895
- queryParameters: {
7896
- contextId?: string | undefined;
7897
- scopes?: string[] | undefined;
7898
- instanceDisabled?: boolean | undefined;
7899
- createdAt?: string | undefined;
7900
- secret?: string | undefined;
7901
- } & Partial<{
7902
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7903
- }>;
7904
7631
  } & {
7905
7632
  headers: {
7906
7633
  "x-access-token"?: string | undefined;
@@ -7908,16 +7635,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7908
7635
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7909
7636
  }>;
7910
7637
  }, import("@mittwald/api-client-commons").Response<{
7911
- errorMessage?: string | undefined;
7912
- responseBody?: string | undefined;
7913
- responseCode?: number | undefined;
7914
- responseHeaders?: string | undefined;
7915
- routeCalled: string;
7916
- successful: boolean;
7638
+ secret: string;
7639
+ secretId: string;
7917
7640
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7918
7641
  [x: string]: unknown;
7919
7642
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7920
7643
  [x: string]: unknown;
7644
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7645
+ [x: string]: unknown;
7646
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7647
+ [x: string]: unknown;
7921
7648
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7922
7649
  headers?: Partial<{
7923
7650
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -7926,19 +7653,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7926
7653
  pathParameters: {
7927
7654
  contributorId: string;
7928
7655
  extensionId: string;
7929
- extensionInstanceId: string;
7930
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7931
7656
  };
7932
- } & {
7933
- queryParameters: {
7934
- contextId?: string | undefined;
7935
- scopes?: string[] | undefined;
7936
- instanceDisabled?: boolean | undefined;
7937
- createdAt?: string | undefined;
7938
- secret?: string | undefined;
7939
- } & Partial<{
7940
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7941
- }>;
7942
7657
  } & {
7943
7658
  headers: {
7944
7659
  "x-access-token"?: string | undefined;
@@ -7946,19 +7661,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7946
7661
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7947
7662
  }>;
7948
7663
  }, import("@mittwald/api-client-commons").Response<{
7949
- errorMessage?: string | undefined;
7950
- responseBody?: string | undefined;
7951
- responseCode?: number | undefined;
7952
- responseHeaders?: string | undefined;
7953
- routeCalled: string;
7954
- successful: boolean;
7664
+ secret: string;
7665
+ secretId: string;
7955
7666
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7956
7667
  [x: string]: unknown;
7957
7668
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7958
7669
  [x: string]: unknown;
7670
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7671
+ [x: string]: unknown;
7672
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7673
+ [x: string]: unknown;
7959
7674
  }, 429, "application/json">>>;
7960
- /** Enable an ExtensionInstance. */
7961
- extensionEnableExtensionInstance: (request: {
7675
+ /** Disable an ExtensionInstance. */
7676
+ extensionDisableExtensionInstance: (request: {
7962
7677
  extensionInstanceId: string;
7963
7678
  headers?: {
7964
7679
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -8005,10 +7720,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8005
7720
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8006
7721
  [x: string]: unknown;
8007
7722
  }, 429, "application/json">>>;
8008
- /** Generate an Extension secret for the given Extension. */
8009
- extensionGenerateExtensionSecret: (request: {
8010
- contributorId: string;
8011
- extensionId: string;
7723
+ /** Create an access token retrieval key for an extension instance. */
7724
+ extensionCreateRetrievalKey: (request: {
7725
+ extensionInstanceId: string;
8012
7726
  headers?: {
8013
7727
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8014
7728
  "x-access-token"?: string | undefined;
@@ -8019,8 +7733,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8019
7733
  }>;
8020
7734
  } & {
8021
7735
  pathParameters: {
8022
- contributorId: string;
8023
- extensionId: string;
7736
+ extensionInstanceId: string;
8024
7737
  };
8025
7738
  } & {
8026
7739
  headers: {
@@ -8029,24 +7742,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8029
7742
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8030
7743
  }>;
8031
7744
  }, import("@mittwald/api-client-commons").Response<{
8032
- secret: string;
8033
- secretId: string;
7745
+ accessTokenRetrievalKey: string;
7746
+ userId: string;
8034
7747
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8035
7748
  [x: string]: unknown;
8036
7749
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8037
7750
  [x: string]: unknown;
8038
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8039
- [x: string]: unknown;
8040
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8041
- [x: string]: unknown;
8042
7751
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8043
7752
  headers?: Partial<{
8044
7753
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8045
7754
  }>;
8046
7755
  } & {
8047
7756
  pathParameters: {
8048
- contributorId: string;
8049
- extensionId: string;
7757
+ extensionInstanceId: string;
8050
7758
  };
8051
7759
  } & {
8052
7760
  headers: {
@@ -8055,70 +7763,51 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8055
7763
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8056
7764
  }>;
8057
7765
  }, import("@mittwald/api-client-commons").Response<{
8058
- secret: string;
8059
- secretId: string;
7766
+ accessTokenRetrievalKey: string;
7767
+ userId: string;
8060
7768
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8061
7769
  [x: string]: unknown;
8062
7770
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8063
7771
  [x: string]: unknown;
8064
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8065
- [x: string]: unknown;
8066
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8067
- [x: string]: unknown;
8068
7772
  }, 429, "application/json">>>;
8069
- /** Generate a session token to transmit it to the extensions frontend fragment. */
8070
- extensionGenerateSessionToken: (request: {
8071
- extensionInstanceId: string;
8072
- sessionId: string;
7773
+ /** List Contributors. */
7774
+ extensionListContributors: (request?: {
8073
7775
  headers?: {
8074
7776
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8075
- "x-access-token"?: string | undefined;
8076
7777
  } | undefined;
8077
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7778
+ queryParameters?: {
7779
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7780
+ limit?: number | undefined;
7781
+ skip?: number | undefined;
7782
+ page?: number | undefined;
7783
+ } | undefined;
7784
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8078
7785
  headers?: Partial<{
8079
7786
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8080
7787
  }>;
8081
7788
  } & {
8082
- pathParameters: {
8083
- extensionInstanceId: string;
8084
- sessionId: string;
8085
- };
8086
- } & {
8087
- headers: {
8088
- "x-access-token"?: string | undefined;
7789
+ queryParameters: {
7790
+ limit?: number | undefined;
7791
+ skip?: number | undefined;
7792
+ page?: number | undefined;
8089
7793
  } & Partial<{
8090
7794
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8091
7795
  }>;
8092
- }, import("@mittwald/api-client-commons").Response<{
8093
- sessionToken: string;
8094
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8095
- [x: string]: unknown;
8096
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8097
- [x: string]: unknown;
8098
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7796
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8099
7797
  [x: string]: unknown;
8100
7798
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8101
7799
  headers?: Partial<{
8102
7800
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8103
7801
  }>;
8104
7802
  } & {
8105
- pathParameters: {
8106
- extensionInstanceId: string;
8107
- sessionId: string;
8108
- };
8109
- } & {
8110
- headers: {
8111
- "x-access-token"?: string | undefined;
7803
+ queryParameters: {
7804
+ limit?: number | undefined;
7805
+ skip?: number | undefined;
7806
+ page?: number | undefined;
8112
7807
  } & Partial<{
8113
7808
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8114
7809
  }>;
8115
- }, import("@mittwald/api-client-commons").Response<{
8116
- sessionToken: string;
8117
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8118
- [x: string]: unknown;
8119
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8120
- [x: string]: unknown;
8121
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7810
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8122
7811
  [x: string]: unknown;
8123
7812
  }, 429, "application/json">>>;
8124
7813
  /** Get a Contributor. */
@@ -8152,9 +7841,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8152
7841
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8153
7842
  [x: string]: unknown;
8154
7843
  }, 429, "application/json">>>;
8155
- /** Get all open extension orders for given customer */
8156
- extensionGetCustomerExtensionInstanceOrders: (request: {
8157
- customerId: string;
7844
+ /** Enable an ExtensionInstance. */
7845
+ extensionEnableExtensionInstance: (request: {
7846
+ extensionInstanceId: string;
8158
7847
  headers?: {
8159
7848
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8160
7849
  "x-access-token"?: string | undefined;
@@ -8165,7 +7854,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8165
7854
  }>;
8166
7855
  } & {
8167
7856
  pathParameters: {
8168
- customerId: string;
7857
+ extensionInstanceId: string;
8169
7858
  };
8170
7859
  } & {
8171
7860
  headers: {
@@ -8174,12 +7863,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8174
7863
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8175
7864
  }>;
8176
7865
  }, import("@mittwald/api-client-commons").Response<{
8177
- extensionId?: string;
8178
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8179
7866
  [x: string]: unknown;
8180
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7867
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8181
7868
  [x: string]: unknown;
8182
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7869
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8183
7870
  [x: string]: unknown;
8184
7871
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8185
7872
  headers?: Partial<{
@@ -8187,7 +7874,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8187
7874
  }>;
8188
7875
  } & {
8189
7876
  pathParameters: {
8190
- customerId: string;
7877
+ extensionInstanceId: string;
8191
7878
  };
8192
7879
  } & {
8193
7880
  headers: {
@@ -8196,29 +7883,60 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8196
7883
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8197
7884
  }>;
8198
7885
  }, import("@mittwald/api-client-commons").Response<{
8199
- extensionId?: string;
8200
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7886
+ [x: string]: unknown;
7887
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8201
7888
  [x: string]: unknown;
8202
7889
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8203
7890
  [x: string]: unknown;
8204
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7891
+ }, 429, "application/json">>>;
7892
+ /** List Scopes. */
7893
+ extensionListScopes: (request?: {
7894
+ headers?: {
7895
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7896
+ } | undefined;
7897
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7898
+ headers?: Partial<{
7899
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7900
+ }>;
7901
+ }, import("@mittwald/api-client-commons").Response<{
7902
+ name: string;
7903
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7904
+ [x: string]: unknown;
7905
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7906
+ headers?: Partial<{
7907
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7908
+ }>;
7909
+ }, import("@mittwald/api-client-commons").Response<{
7910
+ name: string;
7911
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8205
7912
  [x: string]: unknown;
8206
7913
  }, 429, "application/json">>>;
8207
- /** Get the Contract Strategy of an Extension Instance */
8208
- extensionGetExtensionInstanceContract: (request: {
7914
+ /** Rotate the secret for an extension instance. */
7915
+ contributorRotateSecretForExtensionInstance: (request: {
7916
+ contributorId: string;
7917
+ extensionId: string;
8209
7918
  extensionInstanceId: string;
7919
+ data?: {
7920
+ allowWebhookFailure?: boolean | undefined;
7921
+ } | undefined;
8210
7922
  headers?: {
8211
7923
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8212
7924
  "x-access-token"?: string | undefined;
8213
7925
  } | undefined;
8214
7926
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8215
- headers?: Partial<{
8216
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8217
- }>;
7927
+ data: {
7928
+ allowWebhookFailure?: boolean | undefined;
7929
+ };
8218
7930
  } & {
8219
7931
  pathParameters: {
7932
+ contributorId: string;
7933
+ extensionId: string;
8220
7934
  extensionInstanceId: string;
8221
7935
  };
7936
+ } & {
7937
+ headers?: Partial<{
7938
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7939
+ }>;
8222
7940
  } & {
8223
7941
  headers: {
8224
7942
  "x-access-token"?: string | undefined;
@@ -8226,11 +7944,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8226
7944
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8227
7945
  }>;
8228
7946
  }, import("@mittwald/api-client-commons").Response<{
8229
- currentPrice?: number | undefined;
8230
- interactionDeadline?: string | undefined;
8231
- interactionRequired: boolean;
8232
- status: "notStarted" | "pending" | "active" | "terminationPending";
8233
- terminationTargetDate?: string | undefined;
7947
+ secret: string;
7948
+ webhookResult: {
7949
+ failure: boolean;
7950
+ statusCode?: string;
7951
+ };
8234
7952
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8235
7953
  [x: string]: unknown;
8236
7954
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -8238,13 +7956,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8238
7956
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8239
7957
  [x: string]: unknown;
8240
7958
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8241
- headers?: Partial<{
8242
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8243
- }>;
7959
+ data: {
7960
+ allowWebhookFailure?: boolean | undefined;
7961
+ };
8244
7962
  } & {
8245
7963
  pathParameters: {
7964
+ contributorId: string;
7965
+ extensionId: string;
8246
7966
  extensionInstanceId: string;
8247
7967
  };
7968
+ } & {
7969
+ headers?: Partial<{
7970
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7971
+ }>;
8248
7972
  } & {
8249
7973
  headers: {
8250
7974
  "x-access-token"?: string | undefined;
@@ -8252,21 +7976,53 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8252
7976
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8253
7977
  }>;
8254
7978
  }, import("@mittwald/api-client-commons").Response<{
8255
- currentPrice?: number | undefined;
8256
- interactionDeadline?: string | undefined;
8257
- interactionRequired: boolean;
8258
- status: "notStarted" | "pending" | "active" | "terminationPending";
8259
- terminationTargetDate?: string | undefined;
8260
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8261
- [x: string]: unknown;
8262
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8263
- [x: string]: unknown;
7979
+ secret: string;
7980
+ webhookResult: {
7981
+ failure: boolean;
7982
+ statusCode?: string;
7983
+ };
7984
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7985
+ [x: string]: unknown;
7986
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7987
+ [x: string]: unknown;
8264
7988
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8265
7989
  [x: string]: unknown;
8266
7990
  }, 429, "application/json">>>;
8267
- /** Update or Create Contract for existing Extension Instances. */
8268
- extensionUpdateExtensionInstanceContract: (request: {
8269
- extensionInstanceId: string;
7991
+ /** Get an Extension. */
7992
+ extensionGetExtension: (request: {
7993
+ extensionId: string;
7994
+ headers?: {
7995
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7996
+ } | undefined;
7997
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7998
+ headers?: Partial<{
7999
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8000
+ }>;
8001
+ } & {
8002
+ pathParameters: {
8003
+ extensionId: string;
8004
+ };
8005
+ }, 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<{
8006
+ [x: string]: unknown;
8007
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8008
+ [x: string]: unknown;
8009
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8010
+ headers?: Partial<{
8011
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8012
+ }>;
8013
+ } & {
8014
+ pathParameters: {
8015
+ extensionId: string;
8016
+ };
8017
+ }, 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<{
8018
+ [x: string]: unknown;
8019
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8020
+ [x: string]: unknown;
8021
+ }, 429, "application/json">>>;
8022
+ /** Add a logo to an extension. */
8023
+ extensionRequestLogoUpload: (request: {
8024
+ contributorId: string;
8025
+ extensionId: string;
8270
8026
  headers?: {
8271
8027
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8272
8028
  "x-access-token"?: string | undefined;
@@ -8277,7 +8033,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8277
8033
  }>;
8278
8034
  } & {
8279
8035
  pathParameters: {
8280
- extensionInstanceId: string;
8036
+ contributorId: string;
8037
+ extensionId: string;
8281
8038
  };
8282
8039
  } & {
8283
8040
  headers: {
@@ -8285,9 +8042,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8285
8042
  } & Partial<{
8286
8043
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8287
8044
  }>;
8288
- }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8289
- [x: string]: unknown;
8290
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8045
+ }, import("@mittwald/api-client-commons").Response<{
8046
+ logoRefId: string;
8047
+ rules: {
8048
+ extensions: string[];
8049
+ fileTypes: {
8050
+ extensions: string[];
8051
+ mimeType: string;
8052
+ }[];
8053
+ maxSizeInBytes: number;
8054
+ mimeTypes: string[];
8055
+ properties?: {
8056
+ imageDimensions?: {
8057
+ max: {
8058
+ height?: number;
8059
+ width?: number;
8060
+ };
8061
+ min: {
8062
+ height?: number;
8063
+ width?: number;
8064
+ };
8065
+ };
8066
+ };
8067
+ };
8068
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8291
8069
  [x: string]: unknown;
8292
8070
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8293
8071
  [x: string]: unknown;
@@ -8297,7 +8075,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8297
8075
  }>;
8298
8076
  } & {
8299
8077
  pathParameters: {
8300
- extensionInstanceId: string;
8078
+ contributorId: string;
8079
+ extensionId: string;
8301
8080
  };
8302
8081
  } & {
8303
8082
  headers: {
@@ -8305,16 +8084,37 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8305
8084
  } & Partial<{
8306
8085
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8307
8086
  }>;
8308
- }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8309
- [x: string]: unknown;
8310
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8087
+ }, import("@mittwald/api-client-commons").Response<{
8088
+ logoRefId: string;
8089
+ rules: {
8090
+ extensions: string[];
8091
+ fileTypes: {
8092
+ extensions: string[];
8093
+ mimeType: string;
8094
+ }[];
8095
+ maxSizeInBytes: number;
8096
+ mimeTypes: string[];
8097
+ properties?: {
8098
+ imageDimensions?: {
8099
+ max: {
8100
+ height?: number;
8101
+ width?: number;
8102
+ };
8103
+ min: {
8104
+ height?: number;
8105
+ width?: number;
8106
+ };
8107
+ };
8108
+ };
8109
+ };
8110
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8311
8111
  [x: string]: unknown;
8312
8112
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8313
8113
  [x: string]: unknown;
8314
8114
  }, 429, "application/json">>>;
8315
- /** Get the ExtensionInstance of a specific customer and extension, if existing. */
8316
- extensionGetExtensionInstanceForCustomer: (request: {
8317
- customerId: string;
8115
+ /** Remove the logo of an extension. */
8116
+ extensionRemoveLogo: (request: {
8117
+ contributorId: string;
8318
8118
  extensionId: string;
8319
8119
  headers?: {
8320
8120
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -8326,7 +8126,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8326
8126
  }>;
8327
8127
  } & {
8328
8128
  pathParameters: {
8329
- customerId: string;
8129
+ contributorId: string;
8330
8130
  extensionId: string;
8331
8131
  };
8332
8132
  } & {
@@ -8335,27 +8135,85 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8335
8135
  } & Partial<{
8336
8136
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8337
8137
  }>;
8338
- }, import("@mittwald/api-client-commons").Response<{
8339
- aggregateReference: {
8340
- aggregate: string;
8341
- domain: string;
8342
- id: string;
8138
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8139
+ [x: string]: unknown;
8140
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8141
+ [x: string]: unknown;
8142
+ }, 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
+ }>;
8146
+ } & {
8147
+ pathParameters: {
8148
+ contributorId: string;
8149
+ extensionId: string;
8343
8150
  };
8344
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8345
- consentedScopes: string[];
8151
+ } & {
8152
+ headers: {
8153
+ "x-access-token"?: string | undefined;
8154
+ } & Partial<{
8155
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8156
+ }>;
8157
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8158
+ [x: string]: unknown;
8159
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8160
+ [x: string]: unknown;
8161
+ }, 429, "application/json">>>;
8162
+ /** Dry run a webhook with random or given values. */
8163
+ extensionDryRunWebhook: (request: {
8346
8164
  contributorId: string;
8347
- contributorName: string;
8348
- createdAt?: string | undefined;
8349
- disabled: boolean;
8350
8165
  extensionId: string;
8351
- extensionName: string;
8352
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8353
- id: string;
8354
- pendingInstallation: boolean;
8355
- pendingRemoval: boolean;
8166
+ extensionInstanceId: string;
8167
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
8168
+ queryParameters?: {
8169
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8170
+ contextId?: string | undefined;
8171
+ scopes?: string[] | undefined;
8172
+ instanceDisabled?: boolean | undefined;
8173
+ createdAt?: string | undefined;
8174
+ secret?: string | undefined;
8175
+ } | undefined;
8176
+ headers?: {
8177
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8178
+ "x-access-token"?: string | undefined;
8179
+ } | undefined;
8180
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8181
+ headers?: Partial<{
8182
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8183
+ }>;
8184
+ } & {
8185
+ pathParameters: {
8186
+ contributorId: string;
8187
+ extensionId: string;
8188
+ extensionInstanceId: string;
8189
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
8190
+ };
8191
+ } & {
8192
+ queryParameters: {
8193
+ contextId?: string | undefined;
8194
+ scopes?: string[] | undefined;
8195
+ instanceDisabled?: boolean | undefined;
8196
+ createdAt?: string | undefined;
8197
+ secret?: string | undefined;
8198
+ } & Partial<{
8199
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8200
+ }>;
8201
+ } & {
8202
+ headers: {
8203
+ "x-access-token"?: string | undefined;
8204
+ } & Partial<{
8205
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8206
+ }>;
8207
+ }, import("@mittwald/api-client-commons").Response<{
8208
+ errorMessage?: string | undefined;
8209
+ responseBody?: string | undefined;
8210
+ responseCode?: number | undefined;
8211
+ responseHeaders?: string | undefined;
8212
+ routeCalled: string;
8213
+ successful: boolean;
8356
8214
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8357
8215
  [x: string]: unknown;
8358
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8216
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8359
8217
  [x: string]: unknown;
8360
8218
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8361
8219
  headers?: Partial<{
@@ -8363,9 +8221,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8363
8221
  }>;
8364
8222
  } & {
8365
8223
  pathParameters: {
8366
- customerId: string;
8224
+ contributorId: string;
8367
8225
  extensionId: string;
8226
+ extensionInstanceId: string;
8227
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
8368
8228
  };
8229
+ } & {
8230
+ queryParameters: {
8231
+ contextId?: string | undefined;
8232
+ scopes?: string[] | undefined;
8233
+ instanceDisabled?: boolean | undefined;
8234
+ createdAt?: string | undefined;
8235
+ secret?: string | undefined;
8236
+ } & Partial<{
8237
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8238
+ }>;
8369
8239
  } & {
8370
8240
  headers: {
8371
8241
  "x-access-token"?: string | undefined;
@@ -8373,26 +8243,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8373
8243
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8374
8244
  }>;
8375
8245
  }, import("@mittwald/api-client-commons").Response<{
8376
- aggregateReference: {
8377
- aggregate: string;
8378
- domain: string;
8379
- id: string;
8380
- };
8381
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8382
- consentedScopes: string[];
8383
- contributorId: string;
8384
- contributorName: string;
8385
- createdAt?: string | undefined;
8386
- disabled: boolean;
8387
- extensionId: string;
8388
- extensionName: string;
8389
- extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8390
- id: string;
8391
- pendingInstallation: boolean;
8392
- pendingRemoval: boolean;
8246
+ errorMessage?: string | undefined;
8247
+ responseBody?: string | undefined;
8248
+ responseCode?: number | undefined;
8249
+ responseHeaders?: string | undefined;
8250
+ routeCalled: string;
8251
+ successful: boolean;
8393
8252
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8394
8253
  [x: string]: unknown;
8395
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8254
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8396
8255
  [x: string]: unknown;
8397
8256
  }, 429, "application/json">>>;
8398
8257
  /** Get the ExtensionInstance of a specific project and extension, if existing. */
@@ -8478,11 +8337,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8478
8337
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8479
8338
  [x: string]: unknown;
8480
8339
  }, 429, "application/json">>>;
8481
- /** Get an Extension. */
8482
- extensionGetExtension: (request: {
8483
- extensionId: string;
8340
+ /** Get an ExtensionInstance. */
8341
+ extensionGetExtensionInstance: (request: {
8342
+ extensionInstanceId: string;
8484
8343
  headers?: {
8485
8344
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8345
+ "x-access-token"?: string | undefined;
8486
8346
  } | undefined;
8487
8347
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8488
8348
  headers?: Partial<{
@@ -8490,11 +8350,35 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8490
8350
  }>;
8491
8351
  } & {
8492
8352
  pathParameters: {
8493
- extensionId: string;
8353
+ extensionInstanceId: string;
8494
8354
  };
8495
- }, 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<{
8496
- [x: string]: unknown;
8497
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8355
+ } & {
8356
+ headers: {
8357
+ "x-access-token"?: string | undefined;
8358
+ } & Partial<{
8359
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8360
+ }>;
8361
+ }, import("@mittwald/api-client-commons").Response<{
8362
+ aggregateReference: {
8363
+ aggregate: string;
8364
+ domain: string;
8365
+ id: string;
8366
+ };
8367
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8368
+ consentedScopes: string[];
8369
+ contributorId: string;
8370
+ contributorName: string;
8371
+ createdAt?: string | undefined;
8372
+ disabled: boolean;
8373
+ extensionId: string;
8374
+ extensionName: string;
8375
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8376
+ id: string;
8377
+ pendingInstallation: boolean;
8378
+ pendingRemoval: boolean;
8379
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8380
+ [x: string]: unknown;
8381
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8498
8382
  [x: string]: unknown;
8499
8383
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8500
8384
  headers?: Partial<{
@@ -8502,16 +8386,40 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8502
8386
  }>;
8503
8387
  } & {
8504
8388
  pathParameters: {
8505
- extensionId: string;
8389
+ extensionInstanceId: string;
8506
8390
  };
8507
- }, 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<{
8391
+ } & {
8392
+ headers: {
8393
+ "x-access-token"?: string | undefined;
8394
+ } & Partial<{
8395
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8396
+ }>;
8397
+ }, import("@mittwald/api-client-commons").Response<{
8398
+ aggregateReference: {
8399
+ aggregate: string;
8400
+ domain: string;
8401
+ id: string;
8402
+ };
8403
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8404
+ consentedScopes: string[];
8405
+ contributorId: string;
8406
+ contributorName: string;
8407
+ createdAt?: string | undefined;
8408
+ disabled: boolean;
8409
+ extensionId: string;
8410
+ extensionName: string;
8411
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8412
+ id: string;
8413
+ pendingInstallation: boolean;
8414
+ pendingRemoval: boolean;
8415
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8508
8416
  [x: string]: unknown;
8509
8417
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8510
8418
  [x: string]: unknown;
8511
8419
  }, 429, "application/json">>>;
8512
- /** Get all open extension orders for given project */
8513
- extensionGetProjectExtensionInstanceOrders: (request: {
8514
- projectId: string;
8420
+ /** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
8421
+ extensionDeleteExtensionInstance: (request: {
8422
+ extensionInstanceId: string;
8515
8423
  headers?: {
8516
8424
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8517
8425
  "x-access-token"?: string | undefined;
@@ -8522,7 +8430,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8522
8430
  }>;
8523
8431
  } & {
8524
8432
  pathParameters: {
8525
- projectId: string;
8433
+ extensionInstanceId: string;
8526
8434
  };
8527
8435
  } & {
8528
8436
  headers: {
@@ -8531,20 +8439,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8531
8439
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8532
8440
  }>;
8533
8441
  }, import("@mittwald/api-client-commons").Response<{
8534
- extensionId?: string;
8535
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8536
8442
  [x: string]: unknown;
8537
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8443
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8538
8444
  [x: string]: unknown;
8539
8445
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8540
8446
  [x: string]: unknown;
8447
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8448
+ [x: string]: unknown;
8541
8449
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8542
8450
  headers?: Partial<{
8543
8451
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8544
8452
  }>;
8545
8453
  } & {
8546
8454
  pathParameters: {
8547
- projectId: string;
8455
+ extensionInstanceId: string;
8548
8456
  };
8549
8457
  } & {
8550
8458
  headers: {
@@ -8553,234 +8461,271 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8553
8461
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8554
8462
  }>;
8555
8463
  }, import("@mittwald/api-client-commons").Response<{
8556
- extensionId?: string;
8557
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8558
8464
  [x: string]: unknown;
8559
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8465
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8560
8466
  [x: string]: unknown;
8561
8467
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8562
8468
  [x: string]: unknown;
8469
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8470
+ [x: string]: unknown;
8563
8471
  }, 429, "application/json">>>;
8564
- /** Get the public key to verify the webhook signature. */
8565
- extensionGetPublicKey: (request: {
8566
- serial: string;
8567
- queryParameters?: {
8472
+ /** List ExtensionInstances. */
8473
+ extensionListExtensionInstances: (request?: {
8474
+ headers?: {
8568
8475
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8569
- purpose?: "webhook" | "session_token" | undefined;
8570
- format?: "raw" | "spki" | undefined;
8476
+ "x-access-token"?: string | undefined;
8571
8477
  } | undefined;
8572
- headers?: {
8478
+ queryParameters?: {
8573
8479
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8480
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8481
+ contextId?: string | undefined;
8482
+ extensionId?: string | undefined;
8483
+ searchTerm?: string | undefined;
8484
+ limit?: number | undefined;
8485
+ skip?: number | undefined;
8486
+ page?: number | undefined;
8487
+ sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
8488
+ order?: ("asc" | "desc")[] | undefined;
8574
8489
  } | undefined;
8575
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8490
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8576
8491
  headers?: Partial<{
8577
8492
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8578
8493
  }>;
8579
- } & {
8580
- pathParameters: {
8581
- serial: string;
8582
- };
8583
8494
  } & {
8584
8495
  queryParameters: {
8585
- purpose?: "webhook" | "session_token" | undefined;
8586
- format?: "raw" | "spki" | undefined;
8496
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8497
+ contextId?: string | undefined;
8498
+ extensionId?: string | undefined;
8499
+ searchTerm?: string | undefined;
8500
+ limit?: number | undefined;
8501
+ skip?: number | undefined;
8502
+ page?: number | undefined;
8503
+ sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
8504
+ order?: ("asc" | "desc")[] | undefined;
8587
8505
  } & Partial<{
8588
8506
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8589
8507
  }>;
8590
- }, import("@mittwald/api-client-commons").Response<{
8591
- algorithm: string;
8592
- key: string;
8593
- serial: string;
8594
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8508
+ } & {
8509
+ headers: {
8510
+ "x-access-token"?: string | undefined;
8511
+ } & Partial<{
8512
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8513
+ }>;
8514
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8595
8515
  [x: string]: unknown;
8596
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8516
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8597
8517
  [x: string]: unknown;
8598
8518
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8599
8519
  headers?: Partial<{
8600
8520
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8601
8521
  }>;
8602
- } & {
8603
- pathParameters: {
8604
- serial: string;
8605
- };
8606
8522
  } & {
8607
8523
  queryParameters: {
8608
- purpose?: "webhook" | "session_token" | undefined;
8609
- format?: "raw" | "spki" | undefined;
8524
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8525
+ contextId?: string | undefined;
8526
+ extensionId?: string | undefined;
8527
+ searchTerm?: string | undefined;
8528
+ limit?: number | undefined;
8529
+ skip?: number | undefined;
8530
+ page?: number | undefined;
8531
+ sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
8532
+ order?: ("asc" | "desc")[] | undefined;
8610
8533
  } & Partial<{
8611
8534
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8612
8535
  }>;
8613
- }, import("@mittwald/api-client-commons").Response<{
8614
- algorithm: string;
8615
- key: string;
8616
- serial: string;
8617
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8536
+ } & {
8537
+ headers: {
8538
+ "x-access-token"?: string | undefined;
8539
+ } & Partial<{
8540
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8541
+ }>;
8542
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8618
8543
  [x: string]: unknown;
8619
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8544
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8620
8545
  [x: string]: unknown;
8621
8546
  }, 429, "application/json">>>;
8622
- /** Invalidate the given Extension secret immediately. */
8623
- extensionInvalidateExtensionSecret: (request: {
8624
- contributorId: string;
8625
- extensionId: string;
8626
- extensionSecretId: string;
8547
+ /** Create an ExtensionInstance. */
8548
+ extensionCreateExtensionInstance: (request: {
8549
+ data: {
8550
+ consentedScopes: string[];
8551
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8552
+ contextId: string;
8553
+ extensionId: string;
8554
+ };
8627
8555
  headers?: {
8628
8556
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8629
8557
  "x-access-token"?: string | undefined;
8630
8558
  } | undefined;
8631
8559
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8560
+ data: {
8561
+ consentedScopes: string[];
8562
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8563
+ contextId: string;
8564
+ extensionId: string;
8565
+ };
8566
+ } & {
8632
8567
  headers?: Partial<{
8633
8568
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8634
8569
  }>;
8635
- } & {
8636
- pathParameters: {
8637
- contributorId: string;
8638
- extensionId: string;
8639
- extensionSecretId: string;
8640
- };
8641
8570
  } & {
8642
8571
  headers: {
8643
8572
  "x-access-token"?: string | undefined;
8644
8573
  } & Partial<{
8645
8574
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8646
8575
  }>;
8647
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8576
+ }, import("@mittwald/api-client-commons").Response<{
8577
+ id: string;
8578
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8648
8579
  [x: string]: unknown;
8649
8580
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8581
+ message: string;
8582
+ type: string;
8583
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
8650
8584
  [x: string]: unknown;
8651
8585
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8652
8586
  [x: string]: unknown;
8653
8587
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8654
8588
  [x: string]: unknown;
8655
8589
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8590
+ data: {
8591
+ consentedScopes: string[];
8592
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8593
+ contextId: string;
8594
+ extensionId: string;
8595
+ };
8596
+ } & {
8656
8597
  headers?: Partial<{
8657
8598
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8658
8599
  }>;
8659
- } & {
8660
- pathParameters: {
8661
- contributorId: string;
8662
- extensionId: string;
8663
- extensionSecretId: string;
8664
- };
8665
8600
  } & {
8666
8601
  headers: {
8667
8602
  "x-access-token"?: string | undefined;
8668
8603
  } & Partial<{
8669
8604
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8670
8605
  }>;
8671
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8606
+ }, import("@mittwald/api-client-commons").Response<{
8607
+ id: string;
8608
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8672
8609
  [x: string]: unknown;
8673
8610
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8611
+ message: string;
8612
+ type: string;
8613
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
8674
8614
  [x: string]: unknown;
8675
8615
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8676
8616
  [x: string]: unknown;
8677
8617
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8678
8618
  [x: string]: unknown;
8679
8619
  }, 429, "application/json">>>;
8680
- /** List Contributors. */
8681
- extensionListContributors: (request?: {
8620
+ /** Start the verification process of an Extension. */
8621
+ extensionRequestExtensionVerification: (request: {
8622
+ contributorId: string;
8623
+ extensionId: string;
8682
8624
  headers?: {
8683
8625
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8626
+ "x-access-token"?: string | undefined;
8684
8627
  } | undefined;
8685
- queryParameters?: {
8686
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8687
- limit?: number | undefined;
8688
- skip?: number | undefined;
8689
- page?: number | undefined;
8690
- } | undefined;
8691
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8628
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8692
8629
  headers?: Partial<{
8693
8630
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8694
8631
  }>;
8695
8632
  } & {
8696
- queryParameters: {
8697
- limit?: number | undefined;
8698
- skip?: number | undefined;
8699
- page?: number | undefined;
8633
+ pathParameters: {
8634
+ contributorId: string;
8635
+ extensionId: string;
8636
+ };
8637
+ } & {
8638
+ headers: {
8639
+ "x-access-token"?: string | undefined;
8700
8640
  } & Partial<{
8701
8641
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8702
8642
  }>;
8703
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8643
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8644
+ [x: string]: unknown;
8645
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8704
8646
  [x: string]: unknown;
8705
8647
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8706
8648
  headers?: Partial<{
8707
8649
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8708
8650
  }>;
8709
8651
  } & {
8710
- queryParameters: {
8711
- limit?: number | undefined;
8712
- skip?: number | undefined;
8713
- page?: number | undefined;
8652
+ pathParameters: {
8653
+ contributorId: string;
8654
+ extensionId: string;
8655
+ };
8656
+ } & {
8657
+ headers: {
8658
+ "x-access-token"?: string | undefined;
8714
8659
  } & Partial<{
8715
8660
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8716
8661
  }>;
8717
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8662
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8663
+ [x: string]: unknown;
8664
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8718
8665
  [x: string]: unknown;
8719
8666
  }, 429, "application/json">>>;
8720
- /** List Extensions. */
8721
- extensionListExtensions: (request?: {
8667
+ /** Invalidate the given Extension secret immediately. */
8668
+ extensionInvalidateExtensionSecret: (request: {
8669
+ contributorId: string;
8670
+ extensionId: string;
8671
+ extensionSecretId: string;
8722
8672
  headers?: {
8723
8673
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8674
+ "x-access-token"?: string | undefined;
8724
8675
  } | undefined;
8725
- queryParameters?: {
8726
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8727
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8728
- searchTerm?: string | undefined;
8729
- includeDeprecated?: boolean | undefined;
8730
- limit?: number | undefined;
8731
- skip?: number | undefined;
8732
- page?: number | undefined;
8733
- sort?: "name" | undefined;
8734
- order?: "asc" | "desc" | undefined;
8735
- } | undefined;
8736
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8676
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8737
8677
  headers?: Partial<{
8738
8678
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8739
8679
  }>;
8740
8680
  } & {
8741
- queryParameters: {
8742
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8743
- searchTerm?: string | undefined;
8744
- includeDeprecated?: boolean | undefined;
8745
- limit?: number | undefined;
8746
- skip?: number | undefined;
8747
- page?: number | undefined;
8748
- sort?: "name" | undefined;
8749
- order?: "asc" | "desc" | undefined;
8681
+ pathParameters: {
8682
+ contributorId: string;
8683
+ extensionId: string;
8684
+ extensionSecretId: string;
8685
+ };
8686
+ } & {
8687
+ headers: {
8688
+ "x-access-token"?: string | undefined;
8750
8689
  } & Partial<{
8751
8690
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8752
8691
  }>;
8753
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8692
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8693
+ [x: string]: unknown;
8694
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8695
+ [x: string]: unknown;
8696
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8697
+ [x: string]: unknown;
8698
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8754
8699
  [x: string]: unknown;
8755
8700
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8756
8701
  headers?: Partial<{
8757
8702
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8758
8703
  }>;
8759
8704
  } & {
8760
- queryParameters: {
8761
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8762
- searchTerm?: string | undefined;
8763
- includeDeprecated?: boolean | undefined;
8764
- limit?: number | undefined;
8765
- skip?: number | undefined;
8766
- page?: number | undefined;
8767
- sort?: "name" | undefined;
8768
- order?: "asc" | "desc" | undefined;
8705
+ pathParameters: {
8706
+ contributorId: string;
8707
+ extensionId: string;
8708
+ extensionSecretId: string;
8709
+ };
8710
+ } & {
8711
+ headers: {
8712
+ "x-access-token"?: string | undefined;
8769
8713
  } & Partial<{
8770
8714
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8771
8715
  }>;
8772
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8716
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8717
+ [x: string]: unknown;
8718
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8719
+ [x: string]: unknown;
8720
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8721
+ [x: string]: unknown;
8722
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8773
8723
  [x: string]: unknown;
8774
8724
  }, 429, "application/json">>>;
8775
- /** List Extensions of own contributor. */
8776
- extensionListOwnExtensions: (request: {
8777
- contributorId: string;
8778
- queryParameters?: {
8779
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8780
- limit?: number | undefined;
8781
- skip?: number | undefined;
8782
- page?: number | undefined;
8783
- } | undefined;
8725
+ /** Generate a session token to transmit it to the extensions frontend fragment. */
8726
+ extensionGenerateSessionToken: (request: {
8727
+ extensionInstanceId: string;
8728
+ sessionId: string;
8784
8729
  headers?: {
8785
8730
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8786
8731
  "x-access-token"?: string | undefined;
@@ -8791,23 +8736,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8791
8736
  }>;
8792
8737
  } & {
8793
8738
  pathParameters: {
8794
- contributorId: string;
8739
+ extensionInstanceId: string;
8740
+ sessionId: string;
8795
8741
  };
8796
- } & {
8797
- queryParameters: {
8798
- limit?: number | undefined;
8799
- skip?: number | undefined;
8800
- page?: number | undefined;
8801
- } & Partial<{
8802
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8803
- }>;
8804
8742
  } & {
8805
8743
  headers: {
8806
8744
  "x-access-token"?: string | undefined;
8807
8745
  } & Partial<{
8808
8746
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8809
8747
  }>;
8810
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8748
+ }, import("@mittwald/api-client-commons").Response<{
8749
+ sessionToken: string;
8750
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8751
+ [x: string]: unknown;
8752
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8753
+ [x: string]: unknown;
8754
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8811
8755
  [x: string]: unknown;
8812
8756
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8813
8757
  headers?: Partial<{
@@ -8815,121 +8759,41 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8815
8759
  }>;
8816
8760
  } & {
8817
8761
  pathParameters: {
8818
- contributorId: string;
8762
+ extensionInstanceId: string;
8763
+ sessionId: string;
8819
8764
  };
8820
- } & {
8821
- queryParameters: {
8822
- limit?: number | undefined;
8823
- skip?: number | undefined;
8824
- page?: number | undefined;
8825
- } & Partial<{
8826
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8827
- }>;
8828
8765
  } & {
8829
8766
  headers: {
8830
8767
  "x-access-token"?: string | undefined;
8831
8768
  } & Partial<{
8832
8769
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8833
8770
  }>;
8834
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8771
+ }, import("@mittwald/api-client-commons").Response<{
8772
+ sessionToken: string;
8773
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8774
+ [x: string]: unknown;
8775
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8776
+ [x: string]: unknown;
8777
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8835
8778
  [x: string]: unknown;
8836
8779
  }, 429, "application/json">>>;
8837
- /** Register an Extension. */
8838
- extensionRegisterExtension: (request: {
8839
- data: {
8840
- name: string;
8841
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8842
- description?: string | undefined;
8843
- detailedDescriptions?: {
8844
- de: {
8845
- markdown: string;
8846
- plain?: string | undefined;
8847
- };
8848
- en?: {
8849
- markdown: string;
8850
- plain?: string | undefined;
8851
- } | undefined;
8852
- } | undefined;
8853
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8854
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8855
- frontendFragments?: {
8856
- [x: string]: {
8857
- url: string;
8858
- additionalProperties?: {
8859
- [x: string]: string;
8860
- } | undefined;
8861
- };
8862
- } | undefined;
8863
- scopes?: string[] | undefined;
8864
- subTitle?: {
8865
- de: string;
8866
- en?: string | undefined;
8867
- } | undefined;
8868
- support?: {
8869
- email: string;
8870
- phone?: string | undefined;
8871
- } | undefined;
8872
- tags?: string[] | undefined;
8873
- webhookURLs?: {
8874
- extensionAddedToContext: {
8875
- url: string;
8876
- };
8877
- extensionInstanceRemovedFromContext: {
8878
- url: string;
8879
- };
8880
- extensionInstanceSecretRotated: {
8881
- url: string;
8882
- };
8883
- extensionInstanceUpdated: {
8884
- url: string;
8885
- };
8886
- } | undefined;
8887
- webhookUrls?: {
8888
- extensionAddedToContext: {
8889
- url: string;
8890
- };
8891
- extensionInstanceRemovedFromContext: {
8892
- url: string;
8893
- };
8894
- extensionInstanceSecretRotated: {
8895
- url: string;
8896
- };
8897
- extensionInstanceUpdated: {
8898
- url: string;
8899
- };
8900
- } | undefined;
8901
- };
8780
+ /** Get Extension of own contributor. */
8781
+ extensionGetOwnExtension: (request: {
8902
8782
  contributorId: string;
8783
+ extensionId: string;
8903
8784
  headers?: {
8904
8785
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8905
8786
  "x-access-token"?: string | undefined;
8906
8787
  } | undefined;
8907
8788
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8908
- data: {
8909
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8910
- description?: string | undefined;
8911
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8912
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8913
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8914
- frontendFragments?: {
8915
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8916
- } | undefined;
8917
- name: string;
8918
- scopes?: string[] | undefined;
8919
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8920
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
8921
- tags?: string[] | undefined;
8922
- webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
8923
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
8924
- };
8789
+ headers?: Partial<{
8790
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8791
+ }>;
8925
8792
  } & {
8926
8793
  pathParameters: {
8927
8794
  contributorId: string;
8795
+ extensionId: string;
8928
8796
  };
8929
- } & {
8930
- headers?: Partial<{
8931
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8932
- }>;
8933
8797
  } & {
8934
8798
  headers: {
8935
8799
  "x-access-token"?: string | undefined;
@@ -8937,37 +8801,56 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8937
8801
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8938
8802
  }>;
8939
8803
  }, import("@mittwald/api-client-commons").Response<{
8804
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
8805
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
8806
+ blocked?: boolean | undefined;
8807
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8808
+ contributorId: string;
8809
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
8810
+ description?: string | undefined;
8811
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8812
+ disabled?: boolean | undefined;
8813
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8814
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8815
+ frontendFragments?: {
8816
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8817
+ } | undefined;
8818
+ functional: boolean;
8940
8819
  id: string;
8941
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8820
+ logoRefId?: string | undefined;
8821
+ name: string;
8822
+ pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
8823
+ published: boolean;
8824
+ requestedChanges?: {
8825
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8826
+ scopes?: string[];
8827
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
8828
+ } | undefined;
8829
+ scopes?: string[] | undefined;
8830
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
8831
+ state?: "enabled" | "blocked" | "disabled" | undefined;
8832
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
8833
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8834
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
8835
+ inherited: boolean;
8836
+ }) | undefined;
8837
+ tags?: string[] | undefined;
8838
+ verificationRequested: boolean;
8839
+ verified: boolean;
8840
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
8841
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8942
8842
  [x: string]: unknown;
8943
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8843
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8944
8844
  [x: string]: unknown;
8945
8845
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8946
- data: {
8947
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8948
- description?: string | undefined;
8949
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8950
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8951
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8952
- frontendFragments?: {
8953
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8954
- } | undefined;
8955
- name: string;
8956
- scopes?: string[] | undefined;
8957
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8958
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
8959
- tags?: string[] | undefined;
8960
- webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
8961
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
8962
- };
8846
+ headers?: Partial<{
8847
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8848
+ }>;
8963
8849
  } & {
8964
8850
  pathParameters: {
8965
8851
  contributorId: string;
8852
+ extensionId: string;
8966
8853
  };
8967
- } & {
8968
- headers?: Partial<{
8969
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8970
- }>;
8971
8854
  } & {
8972
8855
  headers: {
8973
8856
  "x-access-token"?: string | undefined;
@@ -8975,70 +8858,69 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8975
8858
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8976
8859
  }>;
8977
8860
  }, import("@mittwald/api-client-commons").Response<{
8978
- id: string;
8979
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8980
- [x: string]: unknown;
8981
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8982
- [x: string]: unknown;
8983
- }, 429, "application/json">>>;
8984
- /** List Scopes. */
8985
- extensionListScopes: (request?: {
8986
- headers?: {
8987
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8861
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
8862
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
8863
+ blocked?: boolean | undefined;
8864
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8865
+ contributorId: string;
8866
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
8867
+ description?: string | undefined;
8868
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8869
+ disabled?: boolean | undefined;
8870
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8871
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8872
+ frontendFragments?: {
8873
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8988
8874
  } | undefined;
8989
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8990
- headers?: Partial<{
8991
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8992
- }>;
8993
- }, import("@mittwald/api-client-commons").Response<{
8875
+ functional: boolean;
8876
+ id: string;
8877
+ logoRefId?: string | undefined;
8994
8878
  name: string;
8995
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8879
+ pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
8880
+ published: boolean;
8881
+ requestedChanges?: {
8882
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8883
+ scopes?: string[];
8884
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
8885
+ } | undefined;
8886
+ scopes?: string[] | undefined;
8887
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
8888
+ state?: "enabled" | "blocked" | "disabled" | undefined;
8889
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
8890
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8891
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
8892
+ inherited: boolean;
8893
+ }) | undefined;
8894
+ tags?: string[] | undefined;
8895
+ verificationRequested: boolean;
8896
+ verified: boolean;
8897
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
8898
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8996
8899
  [x: string]: unknown;
8997
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8998
- headers?: Partial<{
8999
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9000
- }>;
9001
- }, import("@mittwald/api-client-commons").Response<{
9002
- name: string;
9003
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8900
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9004
8901
  [x: string]: unknown;
9005
8902
  }, 429, "application/json">>>;
9006
- /** Order Extension with saved payment method */
9007
- extensionOrderExtension: (request: {
9008
- data: {
9009
- consentedScopes: string[];
9010
- customerId: string;
9011
- };
9012
- extensionId: string;
9013
- headers?: {
9014
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9015
- "x-access-token"?: string | undefined;
9016
- } | undefined;
9017
- } | {
9018
- data: {
9019
- consentedScopes: string[];
9020
- projectId: string;
9021
- };
8903
+ /** Delete an extension. */
8904
+ extensionDeleteExtension: (request: {
8905
+ contributorId: string;
9022
8906
  extensionId: string;
8907
+ data?: {
8908
+ reason?: string | undefined;
8909
+ } | undefined;
9023
8910
  headers?: {
9024
8911
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9025
8912
  "x-access-token"?: string | undefined;
9026
8913
  } | undefined;
9027
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
9028
- data: {
9029
- consentedScopes: string[];
9030
- customerId: string;
9031
- };
9032
- } | {
8914
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9033
8915
  data: {
9034
- consentedScopes: string[];
9035
- projectId: string;
8916
+ reason?: string | undefined;
9036
8917
  };
9037
- }) & {
8918
+ } & {
9038
8919
  pathParameters: {
8920
+ contributorId: string;
9039
8921
  extensionId: string;
9040
8922
  };
9041
- }) & {
8923
+ } & {
9042
8924
  headers?: Partial<{
9043
8925
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9044
8926
  }>;
@@ -9048,29 +8930,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9048
8930
  } & Partial<{
9049
8931
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9050
8932
  }>;
9051
- }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9052
- [x: string]: unknown;
9053
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8933
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9054
8934
  [x: string]: unknown;
9055
8935
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9056
8936
  [x: string]: unknown;
9057
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9058
- [x: string]: unknown;
9059
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
9060
- data: {
9061
- consentedScopes: string[];
9062
- customerId: string;
9063
- };
9064
- } | {
8937
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9065
8938
  data: {
9066
- consentedScopes: string[];
9067
- projectId: string;
8939
+ reason?: string | undefined;
9068
8940
  };
9069
- }) & {
8941
+ } & {
9070
8942
  pathParameters: {
8943
+ contributorId: string;
9071
8944
  extensionId: string;
9072
8945
  };
9073
- }) & {
8946
+ } & {
9074
8947
  headers?: Partial<{
9075
8948
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9076
8949
  }>;
@@ -9080,160 +8953,289 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9080
8953
  } & Partial<{
9081
8954
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9082
8955
  }>;
9083
- }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9084
- [x: string]: unknown;
9085
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8956
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9086
8957
  [x: string]: unknown;
9087
8958
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9088
8959
  [x: string]: unknown;
9089
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9090
- [x: string]: unknown;
9091
8960
  }, 429, "application/json">>>;
9092
- /** Remove an asset of an extension. */
9093
- extensionRemoveAsset: (request: {
8961
+ /** Patch Extension. */
8962
+ extensionPatchExtension: (request: {
9094
8963
  contributorId: string;
9095
8964
  extensionId: string;
9096
- assetRefId: string;
8965
+ data?: {
8966
+ assets?: string[] | undefined;
8967
+ deprecation?: {
8968
+ deprecatedAt: string;
8969
+ note?: string | undefined;
8970
+ successorId?: string | undefined;
8971
+ } | undefined;
8972
+ description?: string | undefined;
8973
+ detailedDescriptions?: {
8974
+ de: {
8975
+ markdown: string;
8976
+ plain?: string | undefined;
8977
+ };
8978
+ en?: {
8979
+ markdown: string;
8980
+ plain?: string | undefined;
8981
+ } | undefined;
8982
+ } | undefined;
8983
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8984
+ frontendFragments?: {
8985
+ [x: string]: {
8986
+ url: string;
8987
+ additionalProperties?: {
8988
+ [x: string]: string;
8989
+ } | undefined;
8990
+ };
8991
+ } | undefined;
8992
+ name?: string | undefined;
8993
+ scopes?: string[] | undefined;
8994
+ subTitle?: {
8995
+ de: string;
8996
+ en?: string | undefined;
8997
+ } | undefined;
8998
+ support?: {
8999
+ email: string;
9000
+ phone?: string | undefined;
9001
+ } | undefined;
9002
+ tags?: string[] | undefined;
9003
+ webhookUrls?: {
9004
+ extensionAddedToContext: {
9005
+ url: string;
9006
+ };
9007
+ extensionInstanceRemovedFromContext: {
9008
+ url: string;
9009
+ };
9010
+ extensionInstanceSecretRotated: {
9011
+ url: string;
9012
+ };
9013
+ extensionInstanceUpdated: {
9014
+ url: string;
9015
+ };
9016
+ } | undefined;
9017
+ } | undefined;
9097
9018
  headers?: {
9098
9019
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9099
9020
  "x-access-token"?: string | undefined;
9100
9021
  } | undefined;
9101
9022
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9102
- headers?: Partial<{
9103
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9104
- }>;
9023
+ data: {
9024
+ assets?: string[] | undefined;
9025
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9026
+ description?: string | undefined;
9027
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9028
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9029
+ frontendFragments?: {
9030
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9031
+ } | undefined;
9032
+ name?: string | undefined;
9033
+ scopes?: string[] | undefined;
9034
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9035
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9036
+ tags?: string[] | undefined;
9037
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9038
+ };
9105
9039
  } & {
9106
9040
  pathParameters: {
9107
9041
  contributorId: string;
9108
9042
  extensionId: string;
9109
- assetRefId: string;
9110
9043
  };
9044
+ } & {
9045
+ headers?: Partial<{
9046
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9047
+ }>;
9111
9048
  } & {
9112
9049
  headers: {
9113
9050
  "x-access-token"?: string | undefined;
9114
9051
  } & Partial<{
9115
9052
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9116
9053
  }>;
9117
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9054
+ }, import("@mittwald/api-client-commons").Response<{
9055
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
9056
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
9057
+ blocked?: boolean | undefined;
9058
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9059
+ contributorId: string;
9060
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9061
+ description?: string | undefined;
9062
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9063
+ disabled?: boolean | undefined;
9064
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9065
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9066
+ frontendFragments?: {
9067
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9068
+ } | undefined;
9069
+ functional: boolean;
9070
+ id: string;
9071
+ logoRefId?: string | undefined;
9072
+ name: string;
9073
+ pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
9074
+ published: boolean;
9075
+ requestedChanges?: {
9076
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9077
+ scopes?: string[];
9078
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
9079
+ } | undefined;
9080
+ scopes?: string[] | undefined;
9081
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
9082
+ state?: "enabled" | "blocked" | "disabled" | undefined;
9083
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
9084
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9085
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
9086
+ inherited: boolean;
9087
+ }) | undefined;
9088
+ tags?: string[] | undefined;
9089
+ verificationRequested: boolean;
9090
+ verified: boolean;
9091
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9092
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9093
+ [x: string]: unknown;
9094
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9118
9095
  [x: string]: unknown;
9119
9096
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9120
9097
  [x: string]: unknown;
9098
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
9099
+ [x: string]: unknown;
9121
9100
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9122
- headers?: Partial<{
9123
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9124
- }>;
9101
+ data: {
9102
+ assets?: string[] | undefined;
9103
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9104
+ description?: string | undefined;
9105
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9106
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9107
+ frontendFragments?: {
9108
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9109
+ } | undefined;
9110
+ name?: string | undefined;
9111
+ scopes?: string[] | undefined;
9112
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9113
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9114
+ tags?: string[] | undefined;
9115
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9116
+ };
9125
9117
  } & {
9126
9118
  pathParameters: {
9127
9119
  contributorId: string;
9128
9120
  extensionId: string;
9129
- assetRefId: string;
9130
9121
  };
9122
+ } & {
9123
+ headers?: Partial<{
9124
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9125
+ }>;
9131
9126
  } & {
9132
9127
  headers: {
9133
9128
  "x-access-token"?: string | undefined;
9134
9129
  } & Partial<{
9135
9130
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9136
9131
  }>;
9137
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9132
+ }, import("@mittwald/api-client-commons").Response<{
9133
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
9134
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
9135
+ blocked?: boolean | undefined;
9136
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9137
+ contributorId: string;
9138
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9139
+ description?: string | undefined;
9140
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9141
+ disabled?: boolean | undefined;
9142
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9143
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9144
+ frontendFragments?: {
9145
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9146
+ } | undefined;
9147
+ functional: boolean;
9148
+ id: string;
9149
+ logoRefId?: string | undefined;
9150
+ name: string;
9151
+ pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
9152
+ published: boolean;
9153
+ requestedChanges?: {
9154
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9155
+ scopes?: string[];
9156
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
9157
+ } | undefined;
9158
+ scopes?: string[] | undefined;
9159
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
9160
+ state?: "enabled" | "blocked" | "disabled" | undefined;
9161
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
9162
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9163
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
9164
+ inherited: boolean;
9165
+ }) | undefined;
9166
+ tags?: string[] | undefined;
9167
+ verificationRequested: boolean;
9168
+ verified: boolean;
9169
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9170
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9171
+ [x: string]: unknown;
9172
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9138
9173
  [x: string]: unknown;
9139
9174
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9140
9175
  [x: string]: unknown;
9176
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
9177
+ [x: string]: unknown;
9141
9178
  }, 429, "application/json">>>;
9142
- /** Add a logo to an extension. */
9143
- extensionRequestLogoUpload: (request: {
9144
- contributorId: string;
9145
- extensionId: string;
9179
+ /** Consent to extension scopes. */
9180
+ extensionConsentToExtensionScopes: (request: {
9181
+ data: {
9182
+ consentedScopes: string[];
9183
+ };
9184
+ extensionInstanceId: string;
9146
9185
  headers?: {
9147
9186
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9148
9187
  "x-access-token"?: string | undefined;
9149
9188
  } | undefined;
9150
9189
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9151
- headers?: Partial<{
9152
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9153
- }>;
9190
+ data: {
9191
+ consentedScopes: string[];
9192
+ };
9154
9193
  } & {
9155
9194
  pathParameters: {
9156
- contributorId: string;
9157
- extensionId: string;
9195
+ extensionInstanceId: string;
9158
9196
  };
9197
+ } & {
9198
+ headers?: Partial<{
9199
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9200
+ }>;
9159
9201
  } & {
9160
9202
  headers: {
9161
9203
  "x-access-token"?: string | undefined;
9162
9204
  } & Partial<{
9163
9205
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9164
9206
  }>;
9165
- }, import("@mittwald/api-client-commons").Response<{
9166
- logoRefId: string;
9167
- rules: {
9168
- extensions: string[];
9169
- fileTypes: {
9170
- extensions: string[];
9171
- mimeType: string;
9172
- }[];
9173
- maxSizeInBytes: number;
9174
- mimeTypes: string[];
9175
- properties?: {
9176
- imageDimensions?: {
9177
- max: {
9178
- height?: number;
9179
- width?: number;
9180
- };
9181
- min: {
9182
- height?: number;
9183
- width?: number;
9184
- };
9185
- };
9186
- };
9187
- };
9188
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9207
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9189
9208
  [x: string]: unknown;
9190
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9209
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9191
9210
  [x: string]: unknown;
9192
9211
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9193
- headers?: Partial<{
9194
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9195
- }>;
9212
+ data: {
9213
+ consentedScopes: string[];
9214
+ };
9196
9215
  } & {
9197
9216
  pathParameters: {
9198
- contributorId: string;
9199
- extensionId: string;
9217
+ extensionInstanceId: string;
9200
9218
  };
9219
+ } & {
9220
+ headers?: Partial<{
9221
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9222
+ }>;
9201
9223
  } & {
9202
9224
  headers: {
9203
9225
  "x-access-token"?: string | undefined;
9204
9226
  } & Partial<{
9205
9227
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9206
9228
  }>;
9207
- }, import("@mittwald/api-client-commons").Response<{
9208
- logoRefId: string;
9209
- rules: {
9210
- extensions: string[];
9211
- fileTypes: {
9212
- extensions: string[];
9213
- mimeType: string;
9214
- }[];
9215
- maxSizeInBytes: number;
9216
- mimeTypes: string[];
9217
- properties?: {
9218
- imageDimensions?: {
9219
- max: {
9220
- height?: number;
9221
- width?: number;
9222
- };
9223
- min: {
9224
- height?: number;
9225
- width?: number;
9226
- };
9227
- };
9228
- };
9229
- };
9230
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9229
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9231
9230
  [x: string]: unknown;
9232
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9231
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9233
9232
  [x: string]: unknown;
9234
9233
  }, 429, "application/json">>>;
9235
- /** Remove the logo of an extension. */
9236
- extensionRemoveLogo: (request: {
9234
+ /** Change the context of an Extension. */
9235
+ extensionChangeContext: (request: {
9236
+ data: {
9237
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9238
+ };
9237
9239
  contributorId: string;
9238
9240
  extensionId: string;
9239
9241
  headers?: {
@@ -9241,48 +9243,65 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9241
9243
  "x-access-token"?: string | undefined;
9242
9244
  } | undefined;
9243
9245
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9244
- headers?: Partial<{
9245
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9246
- }>;
9246
+ data: {
9247
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9248
+ };
9247
9249
  } & {
9248
9250
  pathParameters: {
9249
9251
  contributorId: string;
9250
9252
  extensionId: string;
9251
9253
  };
9254
+ } & {
9255
+ headers?: Partial<{
9256
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9257
+ }>;
9252
9258
  } & {
9253
9259
  headers: {
9254
9260
  "x-access-token"?: string | undefined;
9255
9261
  } & Partial<{
9256
9262
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9257
9263
  }>;
9258
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9264
+ }, import("@mittwald/api-client-commons").Response<{
9265
+ cleaningUpInstances: boolean;
9266
+ currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9267
+ id: string;
9268
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9259
9269
  [x: string]: unknown;
9260
9270
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9261
9271
  [x: string]: unknown;
9262
9272
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9263
- headers?: Partial<{
9264
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9265
- }>;
9273
+ data: {
9274
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9275
+ };
9266
9276
  } & {
9267
9277
  pathParameters: {
9268
9278
  contributorId: string;
9269
9279
  extensionId: string;
9270
9280
  };
9281
+ } & {
9282
+ headers?: Partial<{
9283
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9284
+ }>;
9271
9285
  } & {
9272
9286
  headers: {
9273
9287
  "x-access-token"?: string | undefined;
9274
9288
  } & Partial<{
9275
9289
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9276
9290
  }>;
9277
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9291
+ }, import("@mittwald/api-client-commons").Response<{
9292
+ cleaningUpInstances: boolean;
9293
+ currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9294
+ id: string;
9295
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9278
9296
  [x: string]: unknown;
9279
9297
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9280
9298
  [x: string]: unknown;
9281
9299
  }, 429, "application/json">>>;
9282
- /** Add an asset to an extension. */
9283
- extensionRequestAssetUpload: (request: {
9300
+ /** Publish or withdraw an Extension. */
9301
+ extensionSetExtensionPublishedState: (request: {
9284
9302
  data: {
9285
- assetType: "image" | "video";
9303
+ published: boolean;
9304
+ reason?: string | undefined;
9286
9305
  };
9287
9306
  contributorId: string;
9288
9307
  extensionId: string;
@@ -9292,7 +9311,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9292
9311
  } | undefined;
9293
9312
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9294
9313
  data: {
9295
- assetType: "image" | "video";
9314
+ published: boolean;
9315
+ reason?: string | undefined;
9296
9316
  };
9297
9317
  } & {
9298
9318
  pathParameters: {
@@ -9310,39 +9330,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9310
9330
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9311
9331
  }>;
9312
9332
  }, import("@mittwald/api-client-commons").Response<{
9313
- assetRefId: string;
9314
- rules: {
9315
- extensions: string[];
9316
- fileTypes: {
9317
- extensions: string[];
9318
- mimeType: string;
9319
- }[];
9320
- maxSizeInBytes: number;
9321
- mimeTypes: string[];
9322
- properties?: {
9323
- imageDimensions?: {
9324
- max: {
9325
- height?: number;
9326
- width?: number;
9327
- };
9328
- min: {
9329
- height?: number;
9330
- width?: number;
9331
- };
9332
- };
9333
- };
9334
- };
9333
+ id: string;
9334
+ published: boolean;
9335
9335
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9336
9336
  [x: string]: unknown;
9337
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9338
- [x: string]: unknown;
9339
9337
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9340
9338
  [x: string]: unknown;
9341
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9342
- [x: string]: unknown;
9343
9339
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9344
9340
  data: {
9345
- assetType: "image" | "video";
9341
+ published: boolean;
9342
+ reason?: string | undefined;
9346
9343
  };
9347
9344
  } & {
9348
9345
  pathParameters: {
@@ -9360,41 +9357,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9360
9357
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9361
9358
  }>;
9362
9359
  }, import("@mittwald/api-client-commons").Response<{
9363
- assetRefId: string;
9364
- rules: {
9365
- extensions: string[];
9366
- fileTypes: {
9367
- extensions: string[];
9368
- mimeType: string;
9369
- }[];
9370
- maxSizeInBytes: number;
9371
- mimeTypes: string[];
9372
- properties?: {
9373
- imageDimensions?: {
9374
- max: {
9375
- height?: number;
9376
- width?: number;
9377
- };
9378
- min: {
9379
- height?: number;
9380
- width?: number;
9381
- };
9382
- };
9383
- };
9384
- };
9360
+ id: string;
9361
+ published: boolean;
9385
9362
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9386
9363
  [x: string]: unknown;
9387
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9388
- [x: string]: unknown;
9389
9364
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9390
9365
  [x: string]: unknown;
9391
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9392
- [x: string]: unknown;
9393
9366
  }, 429, "application/json">>>;
9394
- /** Start the verification process of an Extension. */
9395
- extensionRequestExtensionVerification: (request: {
9367
+ /** List Extensions of own contributor. */
9368
+ extensionListOwnExtensions: (request: {
9396
9369
  contributorId: string;
9397
- extensionId: string;
9370
+ queryParameters?: {
9371
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9372
+ limit?: number | undefined;
9373
+ skip?: number | undefined;
9374
+ page?: number | undefined;
9375
+ } | undefined;
9398
9376
  headers?: {
9399
9377
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9400
9378
  "x-access-token"?: string | undefined;
@@ -9406,17 +9384,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9406
9384
  } & {
9407
9385
  pathParameters: {
9408
9386
  contributorId: string;
9409
- extensionId: string;
9410
9387
  };
9388
+ } & {
9389
+ queryParameters: {
9390
+ limit?: number | undefined;
9391
+ skip?: number | undefined;
9392
+ page?: number | undefined;
9393
+ } & Partial<{
9394
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9395
+ }>;
9411
9396
  } & {
9412
9397
  headers: {
9413
9398
  "x-access-token"?: string | undefined;
9414
9399
  } & Partial<{
9415
9400
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9416
9401
  }>;
9417
- }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
9418
- [x: string]: unknown;
9419
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9402
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9420
9403
  [x: string]: unknown;
9421
9404
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9422
9405
  headers?: Partial<{
@@ -9425,40 +9408,115 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9425
9408
  } & {
9426
9409
  pathParameters: {
9427
9410
  contributorId: string;
9428
- extensionId: string;
9429
9411
  };
9412
+ } & {
9413
+ queryParameters: {
9414
+ limit?: number | undefined;
9415
+ skip?: number | undefined;
9416
+ page?: number | undefined;
9417
+ } & Partial<{
9418
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9419
+ }>;
9430
9420
  } & {
9431
9421
  headers: {
9432
9422
  "x-access-token"?: string | undefined;
9433
9423
  } & Partial<{
9434
9424
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9435
9425
  }>;
9436
- }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
9437
- [x: string]: unknown;
9438
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9426
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9439
9427
  [x: string]: unknown;
9440
9428
  }, 429, "application/json">>>;
9441
- /** Publish or withdraw an Extension. */
9442
- extensionSetExtensionPublishedState: (request: {
9429
+ /** Register an Extension. */
9430
+ extensionRegisterExtension: (request: {
9443
9431
  data: {
9444
- published: boolean;
9445
- reason?: string | undefined;
9432
+ name: string;
9433
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9434
+ description?: string | undefined;
9435
+ detailedDescriptions?: {
9436
+ de: {
9437
+ markdown: string;
9438
+ plain?: string | undefined;
9439
+ };
9440
+ en?: {
9441
+ markdown: string;
9442
+ plain?: string | undefined;
9443
+ } | undefined;
9444
+ } | undefined;
9445
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9446
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9447
+ frontendFragments?: {
9448
+ [x: string]: {
9449
+ url: string;
9450
+ additionalProperties?: {
9451
+ [x: string]: string;
9452
+ } | undefined;
9453
+ };
9454
+ } | undefined;
9455
+ scopes?: string[] | undefined;
9456
+ subTitle?: {
9457
+ de: string;
9458
+ en?: string | undefined;
9459
+ } | undefined;
9460
+ support?: {
9461
+ email: string;
9462
+ phone?: string | undefined;
9463
+ } | undefined;
9464
+ tags?: string[] | undefined;
9465
+ webhookURLs?: {
9466
+ extensionAddedToContext: {
9467
+ url: string;
9468
+ };
9469
+ extensionInstanceRemovedFromContext: {
9470
+ url: string;
9471
+ };
9472
+ extensionInstanceSecretRotated: {
9473
+ url: string;
9474
+ };
9475
+ extensionInstanceUpdated: {
9476
+ url: string;
9477
+ };
9478
+ } | undefined;
9479
+ webhookUrls?: {
9480
+ extensionAddedToContext: {
9481
+ url: string;
9482
+ };
9483
+ extensionInstanceRemovedFromContext: {
9484
+ url: string;
9485
+ };
9486
+ extensionInstanceSecretRotated: {
9487
+ url: string;
9488
+ };
9489
+ extensionInstanceUpdated: {
9490
+ url: string;
9491
+ };
9492
+ } | undefined;
9446
9493
  };
9447
9494
  contributorId: string;
9448
- extensionId: string;
9449
9495
  headers?: {
9450
9496
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9451
9497
  "x-access-token"?: string | undefined;
9452
9498
  } | undefined;
9453
9499
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9454
9500
  data: {
9455
- published: boolean;
9456
- reason?: string | undefined;
9501
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9502
+ description?: string | undefined;
9503
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9504
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9505
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9506
+ frontendFragments?: {
9507
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9508
+ } | undefined;
9509
+ name: string;
9510
+ scopes?: string[] | undefined;
9511
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9512
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9513
+ tags?: string[] | undefined;
9514
+ webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
9515
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9457
9516
  };
9458
9517
  } & {
9459
9518
  pathParameters: {
9460
9519
  contributorId: string;
9461
- extensionId: string;
9462
9520
  };
9463
9521
  } & {
9464
9522
  headers?: Partial<{
@@ -9472,20 +9530,31 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9472
9530
  }>;
9473
9531
  }, import("@mittwald/api-client-commons").Response<{
9474
9532
  id: string;
9475
- published: boolean;
9476
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9533
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9477
9534
  [x: string]: unknown;
9478
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9535
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9479
9536
  [x: string]: unknown;
9480
9537
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9481
9538
  data: {
9482
- published: boolean;
9483
- reason?: string | undefined;
9539
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9540
+ description?: string | undefined;
9541
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9542
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9543
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9544
+ frontendFragments?: {
9545
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9546
+ } | undefined;
9547
+ name: string;
9548
+ scopes?: string[] | undefined;
9549
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9550
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9551
+ tags?: string[] | undefined;
9552
+ webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
9553
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9484
9554
  };
9485
9555
  } & {
9486
9556
  pathParameters: {
9487
9557
  contributorId: string;
9488
- extensionId: string;
9489
9558
  };
9490
9559
  } & {
9491
9560
  headers?: Partial<{
@@ -9499,31 +9568,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9499
9568
  }>;
9500
9569
  }, import("@mittwald/api-client-commons").Response<{
9501
9570
  id: string;
9502
- published: boolean;
9503
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9571
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9504
9572
  [x: string]: unknown;
9505
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9573
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9506
9574
  [x: string]: unknown;
9507
9575
  }, 429, "application/json">>>;
9508
- /** Creates or Updates Pricing for an Extension. */
9509
- extensionUpdateExtensionPricing: (request: {
9510
- extensionId: string;
9576
+ /** Add an asset to an extension. */
9577
+ extensionRequestAssetUpload: (request: {
9578
+ data: {
9579
+ assetType: "image" | "video";
9580
+ };
9511
9581
  contributorId: string;
9512
- data?: {
9513
- priceInCents?: number | undefined;
9514
- } | undefined;
9582
+ extensionId: string;
9515
9583
  headers?: {
9516
9584
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9517
9585
  "x-access-token"?: string | undefined;
9518
9586
  } | undefined;
9519
9587
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9520
9588
  data: {
9521
- priceInCents?: number | undefined;
9589
+ assetType: "image" | "video";
9522
9590
  };
9523
9591
  } & {
9524
9592
  pathParameters: {
9525
- extensionId: string;
9526
9593
  contributorId: string;
9594
+ extensionId: string;
9527
9595
  };
9528
9596
  } & {
9529
9597
  headers?: Partial<{
@@ -9536,7 +9604,28 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9536
9604
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9537
9605
  }>;
9538
9606
  }, import("@mittwald/api-client-commons").Response<{
9539
- extensionId?: string | undefined;
9607
+ assetRefId: string;
9608
+ rules: {
9609
+ extensions: string[];
9610
+ fileTypes: {
9611
+ extensions: string[];
9612
+ mimeType: string;
9613
+ }[];
9614
+ maxSizeInBytes: number;
9615
+ mimeTypes: string[];
9616
+ properties?: {
9617
+ imageDimensions?: {
9618
+ max: {
9619
+ height?: number;
9620
+ width?: number;
9621
+ };
9622
+ min: {
9623
+ height?: number;
9624
+ width?: number;
9625
+ };
9626
+ };
9627
+ };
9628
+ };
9540
9629
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9541
9630
  [x: string]: unknown;
9542
9631
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9547,12 +9636,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9547
9636
  [x: string]: unknown;
9548
9637
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9549
9638
  data: {
9550
- priceInCents?: number | undefined;
9639
+ assetType: "image" | "video";
9551
9640
  };
9552
9641
  } & {
9553
9642
  pathParameters: {
9554
- extensionId: string;
9555
9643
  contributorId: string;
9644
+ extensionId: string;
9556
9645
  };
9557
9646
  } & {
9558
9647
  headers?: Partial<{
@@ -9565,7 +9654,28 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9565
9654
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9566
9655
  }>;
9567
9656
  }, import("@mittwald/api-client-commons").Response<{
9568
- extensionId?: string | undefined;
9657
+ assetRefId: string;
9658
+ rules: {
9659
+ extensions: string[];
9660
+ fileTypes: {
9661
+ extensions: string[];
9662
+ mimeType: string;
9663
+ }[];
9664
+ maxSizeInBytes: number;
9665
+ mimeTypes: string[];
9666
+ properties?: {
9667
+ imageDimensions?: {
9668
+ max: {
9669
+ height?: number;
9670
+ width?: number;
9671
+ };
9672
+ min: {
9673
+ height?: number;
9674
+ width?: number;
9675
+ };
9676
+ };
9677
+ };
9678
+ };
9569
9679
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9570
9680
  [x: string]: unknown;
9571
9681
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9575,69 +9685,94 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9575
9685
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9576
9686
  [x: string]: unknown;
9577
9687
  }, 429, "application/json">>>;
9578
- /** Get payment method details */
9579
- customerGetPaymentMethod: (request: {
9580
- customerId: string;
9688
+ /** List Extensions. */
9689
+ extensionListExtensions: (request?: {
9581
9690
  headers?: {
9582
9691
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9583
- "x-access-token"?: string | undefined;
9584
9692
  } | undefined;
9585
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9693
+ queryParameters?: {
9694
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9695
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9696
+ searchTerm?: string | undefined;
9697
+ includeDeprecated?: boolean | undefined;
9698
+ limit?: number | undefined;
9699
+ skip?: number | undefined;
9700
+ page?: number | undefined;
9701
+ sort?: "name" | undefined;
9702
+ order?: "asc" | "desc" | undefined;
9703
+ } | undefined;
9704
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9586
9705
  headers?: Partial<{
9587
9706
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9588
9707
  }>;
9589
9708
  } & {
9590
- pathParameters: {
9591
- customerId: string;
9592
- };
9593
- } & {
9594
- headers: {
9595
- "x-access-token"?: string | undefined;
9709
+ queryParameters: {
9710
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9711
+ searchTerm?: string | undefined;
9712
+ includeDeprecated?: boolean | undefined;
9713
+ limit?: number | undefined;
9714
+ skip?: number | undefined;
9715
+ page?: number | undefined;
9716
+ sort?: "name" | undefined;
9717
+ order?: "asc" | "desc" | undefined;
9596
9718
  } & Partial<{
9597
9719
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9598
9720
  }>;
9599
- }, import("@mittwald/api-client-commons").Response<{
9600
- cardDetails?: {
9601
- brand: string;
9602
- last4: string;
9603
- } | undefined;
9604
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9605
- [x: string]: unknown;
9606
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9607
- [x: string]: unknown;
9608
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9721
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9609
9722
  [x: string]: unknown;
9610
9723
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9611
9724
  headers?: Partial<{
9612
9725
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9613
9726
  }>;
9614
9727
  } & {
9615
- pathParameters: {
9616
- customerId: string;
9617
- };
9618
- } & {
9619
- headers: {
9620
- "x-access-token"?: string | undefined;
9728
+ queryParameters: {
9729
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9730
+ searchTerm?: string | undefined;
9731
+ includeDeprecated?: boolean | undefined;
9732
+ limit?: number | undefined;
9733
+ skip?: number | undefined;
9734
+ page?: number | undefined;
9735
+ sort?: "name" | undefined;
9736
+ order?: "asc" | "desc" | undefined;
9621
9737
  } & Partial<{
9622
9738
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9623
9739
  }>;
9624
- }, import("@mittwald/api-client-commons").Response<{
9625
- cardDetails?: {
9626
- brand: string;
9627
- last4: string;
9628
- } | undefined;
9629
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9630
- [x: string]: unknown;
9631
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9632
- [x: string]: unknown;
9633
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9740
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9634
9741
  [x: string]: unknown;
9635
9742
  }, 429, "application/json">>>;
9636
- /** Get the link to update the marketplace payment method */
9637
- customerUpdatePaymentMethod: (request: {
9743
+ /** Express interest to be a contributor. */
9744
+ contributorExpressInterestToContribute: (request: {
9638
9745
  customerId: string;
9639
9746
  data?: {
9640
- customReturnUrl?: string | undefined;
9747
+ deviatingContactPersonUserId?: string | undefined;
9748
+ deviatingContractOwner?: {
9749
+ salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
9750
+ address: {
9751
+ street: string;
9752
+ houseNumber: string;
9753
+ city: string;
9754
+ zip: string;
9755
+ countryCode: string;
9756
+ addressPrefix?: string | undefined;
9757
+ };
9758
+ firstName?: string | undefined;
9759
+ lastName?: string | undefined;
9760
+ title?: string | undefined;
9761
+ company?: string | undefined;
9762
+ emailAddress?: string | undefined;
9763
+ phoneNumbers?: string[] | undefined;
9764
+ useFormalTerm?: boolean | undefined;
9765
+ } | undefined;
9766
+ deviatingName?: string | undefined;
9767
+ deviatingSupportInformation?: {
9768
+ email: string;
9769
+ phone?: string | undefined;
9770
+ } | undefined;
9771
+ imprint?: {
9772
+ text: string;
9773
+ } | {
9774
+ url: string;
9775
+ } | undefined;
9641
9776
  } | undefined;
9642
9777
  headers?: {
9643
9778
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -9645,7 +9780,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9645
9780
  } | undefined;
9646
9781
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9647
9782
  data: {
9648
- customReturnUrl?: string | undefined;
9783
+ deviatingContactPersonUserId?: string | undefined;
9784
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
9785
+ deviatingName?: string | undefined;
9786
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9787
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
9649
9788
  };
9650
9789
  } & {
9651
9790
  pathParameters: {
@@ -9662,16 +9801,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9662
9801
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9663
9802
  }>;
9664
9803
  }, import("@mittwald/api-client-commons").Response<{
9665
- url?: string | undefined;
9666
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9804
+ id: string;
9805
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9667
9806
  [x: string]: unknown;
9668
9807
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9669
9808
  [x: string]: unknown;
9670
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9671
- [x: string]: unknown;
9672
9809
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9673
9810
  data: {
9674
- customReturnUrl?: string | undefined;
9811
+ deviatingContactPersonUserId?: string | undefined;
9812
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
9813
+ deviatingName?: string | undefined;
9814
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9815
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
9675
9816
  };
9676
9817
  } & {
9677
9818
  pathParameters: {
@@ -9688,13 +9829,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9688
9829
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9689
9830
  }>;
9690
9831
  }, import("@mittwald/api-client-commons").Response<{
9691
- url?: string | undefined;
9692
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9832
+ id: string;
9833
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9693
9834
  [x: string]: unknown;
9694
9835
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9695
9836
  [x: string]: unknown;
9696
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9697
- [x: string]: unknown;
9698
9837
  }, 429, "application/json">>>;
9699
9838
  };
9700
9839
  /** The conversation API allows you to manage your support conversations. */
@@ -25806,7 +25945,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25806
25945
  } & Partial<{
25807
25946
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25808
25947
  }>;
25809
- }, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
25948
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<{
25810
25949
  [x: string]: unknown;
25811
25950
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
25812
25951
  [x: string]: unknown;
@@ -25837,7 +25976,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25837
25976
  } & Partial<{
25838
25977
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25839
25978
  }>;
25840
- }, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
25979
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<{
25841
25980
  [x: string]: unknown;
25842
25981
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
25843
25982
  [x: string]: unknown;