@mittwald/api-client 4.212.0 → 4.213.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.
@@ -6132,6 +6132,101 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6132
6132
  };
6133
6133
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
6134
6134
  readonly marketplace: {
6135
+ /** Express interest to be a contributor. */
6136
+ contributorExpressInterestToContribute: (request: {
6137
+ customerId: string;
6138
+ data?: {
6139
+ deviatingContactPersonUserId?: string | undefined;
6140
+ deviatingContractOwner?: {
6141
+ salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
6142
+ address: {
6143
+ street: string;
6144
+ houseNumber: string;
6145
+ city: string;
6146
+ zip: string;
6147
+ countryCode: string;
6148
+ addressPrefix?: string | undefined;
6149
+ };
6150
+ firstName?: string | undefined;
6151
+ lastName?: string | undefined;
6152
+ title?: string | undefined;
6153
+ company?: string | undefined;
6154
+ emailAddress?: string | undefined;
6155
+ phoneNumbers?: string[] | undefined;
6156
+ useFormalTerm?: boolean | undefined;
6157
+ } | undefined;
6158
+ deviatingName?: string | undefined;
6159
+ deviatingSupportInformation?: {
6160
+ email: string;
6161
+ phone?: string | undefined;
6162
+ } | undefined;
6163
+ imprint?: {
6164
+ text: string;
6165
+ } | {
6166
+ url: string;
6167
+ } | undefined;
6168
+ } | undefined;
6169
+ headers?: {
6170
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6171
+ "x-access-token"?: string | undefined;
6172
+ } | undefined;
6173
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6174
+ data: {
6175
+ deviatingContactPersonUserId?: string | undefined;
6176
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
6177
+ deviatingName?: string | undefined;
6178
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
6179
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
6180
+ };
6181
+ } & {
6182
+ pathParameters: {
6183
+ customerId: string;
6184
+ };
6185
+ } & {
6186
+ headers?: Partial<{
6187
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6188
+ }>;
6189
+ } & {
6190
+ headers: {
6191
+ "x-access-token"?: string | undefined;
6192
+ } & Partial<{
6193
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6194
+ }>;
6195
+ }, import("@mittwald/api-client-commons").Response<{
6196
+ id: string;
6197
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6198
+ [x: string]: unknown;
6199
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6200
+ [x: string]: unknown;
6201
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6202
+ data: {
6203
+ deviatingContactPersonUserId?: string | undefined;
6204
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
6205
+ deviatingName?: string | undefined;
6206
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
6207
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
6208
+ };
6209
+ } & {
6210
+ pathParameters: {
6211
+ customerId: string;
6212
+ };
6213
+ } & {
6214
+ headers?: Partial<{
6215
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6216
+ }>;
6217
+ } & {
6218
+ headers: {
6219
+ "x-access-token"?: string | undefined;
6220
+ } & Partial<{
6221
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6222
+ }>;
6223
+ }, import("@mittwald/api-client-commons").Response<{
6224
+ id: string;
6225
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6226
+ [x: string]: unknown;
6227
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6228
+ [x: string]: unknown;
6229
+ }, 429, "application/json">>>;
6135
6230
  /** Get Contributor Billing Information. */
6136
6231
  contributorGetBillingInformation: (request: {
6137
6232
  contributorId: string;
@@ -6359,6 +6454,65 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6359
6454
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6360
6455
  [x: string]: unknown;
6361
6456
  }, 429, "application/json">>>;
6457
+ /** List ContractPartners of the contributor. */
6458
+ contributorListContractPartnersOfContributor: (request: {
6459
+ contributorId: string;
6460
+ queryParameters?: {
6461
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6462
+ extensionId?: string | undefined;
6463
+ extensionInstanceId?: string | undefined;
6464
+ } | undefined;
6465
+ headers?: {
6466
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6467
+ "x-access-token"?: string | undefined;
6468
+ } | undefined;
6469
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6470
+ headers?: Partial<{
6471
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6472
+ }>;
6473
+ } & {
6474
+ pathParameters: {
6475
+ contributorId: string;
6476
+ };
6477
+ } & {
6478
+ queryParameters: {
6479
+ extensionId?: string | undefined;
6480
+ extensionInstanceId?: string | undefined;
6481
+ } & Partial<{
6482
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6483
+ }>;
6484
+ } & {
6485
+ headers: {
6486
+ "x-access-token"?: string | undefined;
6487
+ } & Partial<{
6488
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6489
+ }>;
6490
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6491
+ [x: string]: unknown;
6492
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6493
+ headers?: Partial<{
6494
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6495
+ }>;
6496
+ } & {
6497
+ pathParameters: {
6498
+ contributorId: string;
6499
+ };
6500
+ } & {
6501
+ queryParameters: {
6502
+ extensionId?: string | undefined;
6503
+ extensionInstanceId?: string | undefined;
6504
+ } & Partial<{
6505
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6506
+ }>;
6507
+ } & {
6508
+ headers: {
6509
+ "x-access-token"?: string | undefined;
6510
+ } & Partial<{
6511
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6512
+ }>;
6513
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6514
+ [x: string]: unknown;
6515
+ }, 429, "application/json">>>;
6362
6516
  /** List incoming Invoices of a Contributor. */
6363
6517
  contributorListIncomingInvoices: (request: {
6364
6518
  contributorId: string;
@@ -6523,13 +6677,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6523
6677
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6524
6678
  [x: string]: unknown;
6525
6679
  }, 429, "application/json">>>;
6526
- /** Request an Access Token for the Incoming Invoice file. */
6527
- contributorReceiptGetFileAccessToken: (request: {
6680
+ /** Get a Contributor. */
6681
+ extensionGetContributor: (request: {
6528
6682
  contributorId: string;
6529
- contributorReceiptId: string;
6530
6683
  headers?: {
6531
6684
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6532
- "x-access-token"?: string | undefined;
6533
6685
  } | undefined;
6534
6686
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6535
6687
  headers?: Partial<{
@@ -6538,20 +6690,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6538
6690
  } & {
6539
6691
  pathParameters: {
6540
6692
  contributorId: string;
6541
- contributorReceiptId: string;
6542
6693
  };
6543
- } & {
6544
- headers: {
6545
- "x-access-token"?: string | undefined;
6546
- } & Partial<{
6547
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6548
- }>;
6549
- }, import("@mittwald/api-client-commons").Response<{
6550
- accessToken: string;
6551
- expiresAt: string;
6552
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6553
- [x: string]: unknown;
6554
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6694
+ }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6555
6695
  [x: string]: unknown;
6556
6696
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6557
6697
  [x: string]: unknown;
@@ -6562,41 +6702,71 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6562
6702
  } & {
6563
6703
  pathParameters: {
6564
6704
  contributorId: string;
6565
- contributorReceiptId: string;
6566
6705
  };
6567
- } & {
6568
- headers: {
6569
- "x-access-token"?: string | undefined;
6570
- } & Partial<{
6571
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6572
- }>;
6573
- }, import("@mittwald/api-client-commons").Response<{
6574
- accessToken: string;
6575
- expiresAt: string;
6576
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6577
- [x: string]: unknown;
6578
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6706
+ }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6579
6707
  [x: string]: unknown;
6580
6708
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6581
6709
  [x: string]: unknown;
6582
6710
  }, 429, "application/json">>>;
6583
- /** Authenticate your external application using the extensionInstanceSecret. */
6584
- extensionAuthenticateInstance: (request: {
6585
- data: {
6586
- extensionInstanceSecret: string;
6587
- };
6588
- extensionInstanceId: string;
6711
+ /** Patch Contributor. */
6712
+ contributorPatchContributor: (request: {
6713
+ contributorId: string;
6714
+ data?: {
6715
+ contactPersonUserId?: string | undefined;
6716
+ descriptions?: {
6717
+ de: string;
6718
+ en?: string | undefined;
6719
+ } | undefined;
6720
+ deviatingContractOwner?: {
6721
+ contact: {
6722
+ salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
6723
+ address: {
6724
+ street: string;
6725
+ houseNumber: string;
6726
+ city: string;
6727
+ zip: string;
6728
+ countryCode: string;
6729
+ addressPrefix?: string | undefined;
6730
+ };
6731
+ firstName?: string | undefined;
6732
+ lastName?: string | undefined;
6733
+ title?: string | undefined;
6734
+ company?: string | undefined;
6735
+ emailAddress?: string | undefined;
6736
+ phoneNumbers?: string[] | undefined;
6737
+ useFormalTerm?: boolean | undefined;
6738
+ };
6739
+ inherited: boolean;
6740
+ } | undefined;
6741
+ deviatingName?: string | undefined;
6742
+ deviatingSupportInformation?: {
6743
+ email: string;
6744
+ phone?: string | undefined;
6745
+ } | undefined;
6746
+ homepage?: string | undefined;
6747
+ imprint?: {
6748
+ text: string;
6749
+ } | {
6750
+ url: string;
6751
+ } | undefined;
6752
+ } | undefined;
6589
6753
  headers?: {
6590
6754
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6591
6755
  "x-access-token"?: string | undefined;
6592
6756
  } | undefined;
6593
6757
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6594
6758
  data: {
6595
- extensionInstanceSecret: string;
6759
+ contactPersonUserId?: string | undefined;
6760
+ descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
6761
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner | undefined;
6762
+ deviatingName?: string | undefined;
6763
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
6764
+ homepage?: string | undefined;
6765
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
6596
6766
  };
6597
6767
  } & {
6598
6768
  pathParameters: {
6599
- extensionInstanceId: string;
6769
+ contributorId: string;
6600
6770
  };
6601
6771
  } & {
6602
6772
  headers?: Partial<{
@@ -6609,16 +6779,255 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6609
6779
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6610
6780
  }>;
6611
6781
  }, import("@mittwald/api-client-commons").Response<{
6612
- expiry: string;
6613
- publicToken: string;
6614
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6615
- [x: string]: unknown;
6616
- }, 400, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6617
- data: {
6618
- extensionInstanceSecret: string;
6619
- };
6620
- } & {
6621
- pathParameters: {
6782
+ contactPersonUserId: string;
6783
+ contractOwner: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
6784
+ contributorNumber: string;
6785
+ customerId: string;
6786
+ description?: string | undefined;
6787
+ descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
6788
+ email: string;
6789
+ homepage?: string | undefined;
6790
+ id: string;
6791
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
6792
+ logoRefId?: string | undefined;
6793
+ name: string;
6794
+ nameInherited: boolean;
6795
+ phone?: string | undefined;
6796
+ state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
6797
+ supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
6798
+ inherited: boolean;
6799
+ };
6800
+ url?: string | undefined;
6801
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6802
+ [x: string]: unknown;
6803
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6804
+ [x: string]: unknown;
6805
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6806
+ [x: string]: unknown;
6807
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6808
+ data: {
6809
+ contactPersonUserId?: string | undefined;
6810
+ descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
6811
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner | undefined;
6812
+ deviatingName?: string | undefined;
6813
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
6814
+ homepage?: string | undefined;
6815
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
6816
+ };
6817
+ } & {
6818
+ pathParameters: {
6819
+ contributorId: string;
6820
+ };
6821
+ } & {
6822
+ headers?: Partial<{
6823
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6824
+ }>;
6825
+ } & {
6826
+ headers: {
6827
+ "x-access-token"?: string | undefined;
6828
+ } & Partial<{
6829
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6830
+ }>;
6831
+ }, import("@mittwald/api-client-commons").Response<{
6832
+ contactPersonUserId: string;
6833
+ contractOwner: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
6834
+ contributorNumber: string;
6835
+ customerId: string;
6836
+ description?: string | undefined;
6837
+ descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
6838
+ email: string;
6839
+ homepage?: string | undefined;
6840
+ id: string;
6841
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
6842
+ logoRefId?: string | undefined;
6843
+ name: string;
6844
+ nameInherited: boolean;
6845
+ phone?: string | undefined;
6846
+ state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
6847
+ supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
6848
+ inherited: boolean;
6849
+ };
6850
+ url?: string | undefined;
6851
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6852
+ [x: string]: unknown;
6853
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6854
+ [x: string]: unknown;
6855
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6856
+ [x: string]: unknown;
6857
+ }, 429, "application/json">>>;
6858
+ /** Request an Access Token for the Incoming Invoice file. */
6859
+ contributorReceiptGetFileAccessToken: (request: {
6860
+ contributorId: string;
6861
+ contributorReceiptId: string;
6862
+ headers?: {
6863
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6864
+ "x-access-token"?: string | undefined;
6865
+ } | undefined;
6866
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6867
+ headers?: Partial<{
6868
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6869
+ }>;
6870
+ } & {
6871
+ pathParameters: {
6872
+ contributorId: string;
6873
+ contributorReceiptId: string;
6874
+ };
6875
+ } & {
6876
+ headers: {
6877
+ "x-access-token"?: string | undefined;
6878
+ } & Partial<{
6879
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6880
+ }>;
6881
+ }, import("@mittwald/api-client-commons").Response<{
6882
+ accessToken: string;
6883
+ expiresAt: string;
6884
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6885
+ [x: string]: unknown;
6886
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6887
+ [x: string]: unknown;
6888
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6889
+ [x: string]: unknown;
6890
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6891
+ headers?: Partial<{
6892
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6893
+ }>;
6894
+ } & {
6895
+ pathParameters: {
6896
+ contributorId: string;
6897
+ contributorReceiptId: string;
6898
+ };
6899
+ } & {
6900
+ headers: {
6901
+ "x-access-token"?: string | undefined;
6902
+ } & Partial<{
6903
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6904
+ }>;
6905
+ }, import("@mittwald/api-client-commons").Response<{
6906
+ accessToken: string;
6907
+ expiresAt: string;
6908
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6909
+ [x: string]: unknown;
6910
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6911
+ [x: string]: unknown;
6912
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6913
+ [x: string]: unknown;
6914
+ }, 429, "application/json">>>;
6915
+ /** Rotate the secret for an extension instance. */
6916
+ contributorRotateSecretForExtensionInstance: (request: {
6917
+ contributorId: string;
6918
+ extensionId: string;
6919
+ extensionInstanceId: string;
6920
+ data?: {
6921
+ allowWebhookFailure?: boolean | undefined;
6922
+ } | undefined;
6923
+ headers?: {
6924
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6925
+ "x-access-token"?: string | undefined;
6926
+ } | undefined;
6927
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6928
+ data: {
6929
+ allowWebhookFailure?: boolean | undefined;
6930
+ };
6931
+ } & {
6932
+ pathParameters: {
6933
+ contributorId: string;
6934
+ extensionId: string;
6935
+ extensionInstanceId: string;
6936
+ };
6937
+ } & {
6938
+ headers?: Partial<{
6939
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6940
+ }>;
6941
+ } & {
6942
+ headers: {
6943
+ "x-access-token"?: string | undefined;
6944
+ } & Partial<{
6945
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6946
+ }>;
6947
+ }, import("@mittwald/api-client-commons").Response<{
6948
+ secret: string;
6949
+ webhookResult: {
6950
+ failure: boolean;
6951
+ statusCode?: string;
6952
+ };
6953
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6954
+ [x: string]: unknown;
6955
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6956
+ [x: string]: unknown;
6957
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6958
+ [x: string]: unknown;
6959
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6960
+ data: {
6961
+ allowWebhookFailure?: boolean | undefined;
6962
+ };
6963
+ } & {
6964
+ pathParameters: {
6965
+ contributorId: string;
6966
+ extensionId: string;
6967
+ extensionInstanceId: string;
6968
+ };
6969
+ } & {
6970
+ headers?: Partial<{
6971
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6972
+ }>;
6973
+ } & {
6974
+ headers: {
6975
+ "x-access-token"?: string | undefined;
6976
+ } & Partial<{
6977
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6978
+ }>;
6979
+ }, import("@mittwald/api-client-commons").Response<{
6980
+ secret: string;
6981
+ webhookResult: {
6982
+ failure: boolean;
6983
+ statusCode?: string;
6984
+ };
6985
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6986
+ [x: string]: unknown;
6987
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6988
+ [x: string]: unknown;
6989
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6990
+ [x: string]: unknown;
6991
+ }, 429, "application/json">>>;
6992
+ /** Authenticate your external application using the extensionInstanceSecret. */
6993
+ extensionAuthenticateInstance: (request: {
6994
+ data: {
6995
+ extensionInstanceSecret: string;
6996
+ };
6997
+ extensionInstanceId: string;
6998
+ headers?: {
6999
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7000
+ "x-access-token"?: string | undefined;
7001
+ } | undefined;
7002
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7003
+ data: {
7004
+ extensionInstanceSecret: string;
7005
+ };
7006
+ } & {
7007
+ pathParameters: {
7008
+ extensionInstanceId: string;
7009
+ };
7010
+ } & {
7011
+ headers?: Partial<{
7012
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7013
+ }>;
7014
+ } & {
7015
+ headers: {
7016
+ "x-access-token"?: string | undefined;
7017
+ } & Partial<{
7018
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7019
+ }>;
7020
+ }, import("@mittwald/api-client-commons").Response<{
7021
+ expiry: string;
7022
+ publicToken: string;
7023
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7024
+ [x: string]: unknown;
7025
+ }, 400, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7026
+ data: {
7027
+ extensionInstanceSecret: string;
7028
+ };
7029
+ } & {
7030
+ pathParameters: {
6622
7031
  extensionInstanceId: string;
6623
7032
  };
6624
7033
  } & {
@@ -6807,23 +7216,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6807
7216
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6808
7217
  [x: string]: unknown;
6809
7218
  }, 429, "application/json">>>;
6810
- /** Create the OnboardingProcess of a Contributor. */
6811
- extensionCreateContributorOnboardingProcess: (request: {
7219
+ /** Change the context of an Extension. */
7220
+ extensionChangeContext: (request: {
6812
7221
  data: {
6813
- shippingCountryRestriction: "onlyDomestic";
7222
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6814
7223
  };
6815
7224
  contributorId: string;
7225
+ extensionId: string;
6816
7226
  headers?: {
6817
7227
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6818
7228
  "x-access-token"?: string | undefined;
6819
7229
  } | undefined;
6820
7230
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6821
7231
  data: {
6822
- shippingCountryRestriction: "onlyDomestic";
7232
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6823
7233
  };
6824
7234
  } & {
6825
7235
  pathParameters: {
6826
7236
  contributorId: string;
7237
+ extensionId: string;
6827
7238
  };
6828
7239
  } & {
6829
7240
  headers?: Partial<{
@@ -6836,21 +7247,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6836
7247
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6837
7248
  }>;
6838
7249
  }, 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<{
7250
+ cleaningUpInstances: boolean;
7251
+ currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7252
+ id: string;
7253
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6844
7254
  [x: string]: unknown;
6845
7255
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6846
7256
  [x: string]: unknown;
6847
7257
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6848
7258
  data: {
6849
- shippingCountryRestriction: "onlyDomestic";
7259
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6850
7260
  };
6851
7261
  } & {
6852
7262
  pathParameters: {
6853
7263
  contributorId: string;
7264
+ extensionId: string;
6854
7265
  };
6855
7266
  } & {
6856
7267
  headers?: Partial<{
@@ -6863,82 +7274,91 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6863
7274
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6864
7275
  }>;
6865
7276
  }, 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<{
7277
+ cleaningUpInstances: boolean;
7278
+ currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7279
+ id: string;
7280
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6871
7281
  [x: string]: unknown;
6872
7282
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6873
7283
  [x: string]: unknown;
6874
7284
  }, 429, "application/json">>>;
6875
- /** Get all open extension orders for given customer */
6876
- extensionGetCustomerExtensionInstanceOrders: (request: {
6877
- customerId: string;
7285
+ /** Consent to extension scopes. */
7286
+ extensionConsentToExtensionScopes: (request: {
7287
+ data: {
7288
+ consentedScopes: string[];
7289
+ };
7290
+ extensionInstanceId: string;
6878
7291
  headers?: {
6879
7292
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6880
7293
  "x-access-token"?: string | undefined;
6881
7294
  } | undefined;
6882
7295
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6883
- headers?: Partial<{
6884
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6885
- }>;
7296
+ data: {
7297
+ consentedScopes: string[];
7298
+ };
6886
7299
  } & {
6887
7300
  pathParameters: {
6888
- customerId: string;
7301
+ extensionInstanceId: string;
6889
7302
  };
7303
+ } & {
7304
+ headers?: Partial<{
7305
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7306
+ }>;
6890
7307
  } & {
6891
7308
  headers: {
6892
7309
  "x-access-token"?: string | undefined;
6893
7310
  } & Partial<{
6894
7311
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6895
7312
  }>;
6896
- }, import("@mittwald/api-client-commons").Response<{
6897
- extensionId?: string;
6898
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7313
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6899
7314
  [x: string]: unknown;
6900
7315
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6901
7316
  [x: string]: unknown;
6902
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6903
- [x: string]: unknown;
6904
7317
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6905
- headers?: Partial<{
6906
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6907
- }>;
7318
+ data: {
7319
+ consentedScopes: string[];
7320
+ };
6908
7321
  } & {
6909
7322
  pathParameters: {
6910
- customerId: string;
7323
+ extensionInstanceId: string;
6911
7324
  };
7325
+ } & {
7326
+ headers?: Partial<{
7327
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7328
+ }>;
6912
7329
  } & {
6913
7330
  headers: {
6914
7331
  "x-access-token"?: string | undefined;
6915
7332
  } & Partial<{
6916
7333
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6917
7334
  }>;
6918
- }, import("@mittwald/api-client-commons").Response<{
6919
- extensionId?: string;
6920
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7335
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6921
7336
  [x: string]: unknown;
6922
7337
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6923
7338
  [x: string]: unknown;
6924
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6925
- [x: string]: unknown;
6926
7339
  }, 429, "application/json">>>;
6927
- /** Get the Contract Strategy of an Extension Instance */
6928
- extensionGetExtensionInstanceContract: (request: {
6929
- extensionInstanceId: string;
7340
+ /** Create the OnboardingProcess of a Contributor. */
7341
+ extensionCreateContributorOnboardingProcess: (request: {
7342
+ data: {
7343
+ shippingCountryRestriction: "onlyDomestic";
7344
+ };
7345
+ contributorId: string;
6930
7346
  headers?: {
6931
7347
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6932
7348
  "x-access-token"?: string | undefined;
6933
7349
  } | undefined;
6934
7350
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6935
- headers?: Partial<{
6936
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6937
- }>;
7351
+ data: {
7352
+ shippingCountryRestriction: "onlyDomestic";
7353
+ };
6938
7354
  } & {
6939
7355
  pathParameters: {
6940
- extensionInstanceId: string;
7356
+ contributorId: string;
6941
7357
  };
7358
+ } & {
7359
+ headers?: Partial<{
7360
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7361
+ }>;
6942
7362
  } & {
6943
7363
  headers: {
6944
7364
  "x-access-token"?: string | undefined;
@@ -6946,25 +7366,26 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6946
7366
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6947
7367
  }>;
6948
7368
  }, 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<{
7369
+ contributorId?: string | undefined;
7370
+ onboardingLink?: string | undefined;
7371
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6955
7372
  [x: string]: unknown;
6956
7373
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6957
7374
  [x: string]: unknown;
6958
7375
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6959
7376
  [x: string]: unknown;
6960
7377
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6961
- headers?: Partial<{
6962
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6963
- }>;
7378
+ data: {
7379
+ shippingCountryRestriction: "onlyDomestic";
7380
+ };
6964
7381
  } & {
6965
7382
  pathParameters: {
6966
- extensionInstanceId: string;
7383
+ contributorId: string;
6967
7384
  };
7385
+ } & {
7386
+ headers?: Partial<{
7387
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7388
+ }>;
6968
7389
  } & {
6969
7390
  headers: {
6970
7391
  "x-access-token"?: string | undefined;
@@ -6972,81 +7393,113 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6972
7393
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6973
7394
  }>;
6974
7395
  }, 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<{
7396
+ contributorId?: string | undefined;
7397
+ onboardingLink?: string | undefined;
7398
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6981
7399
  [x: string]: unknown;
6982
7400
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6983
7401
  [x: string]: unknown;
6984
7402
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6985
7403
  [x: string]: unknown;
6986
7404
  }, 429, "application/json">>>;
6987
- /** Update or Create Contract for existing Extension Instances. */
6988
- extensionUpdateExtensionInstanceContract: (request: {
6989
- extensionInstanceId: string;
7405
+ /** List ExtensionInstances. */
7406
+ extensionListExtensionInstances: (request?: {
6990
7407
  headers?: {
6991
7408
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6992
7409
  "x-access-token"?: string | undefined;
6993
7410
  } | undefined;
6994
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7411
+ queryParameters?: {
7412
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7413
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7414
+ contextId?: string | undefined;
7415
+ extensionId?: string | undefined;
7416
+ searchTerm?: string | undefined;
7417
+ limit?: number | undefined;
7418
+ skip?: number | undefined;
7419
+ page?: number | undefined;
7420
+ sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
7421
+ order?: ("asc" | "desc")[] | undefined;
7422
+ } | undefined;
7423
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6995
7424
  headers?: Partial<{
6996
7425
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6997
7426
  }>;
6998
7427
  } & {
6999
- pathParameters: {
7000
- extensionInstanceId: string;
7001
- };
7428
+ queryParameters: {
7429
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7430
+ contextId?: string | undefined;
7431
+ extensionId?: string | undefined;
7432
+ searchTerm?: string | undefined;
7433
+ limit?: number | undefined;
7434
+ skip?: number | undefined;
7435
+ page?: number | undefined;
7436
+ sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
7437
+ order?: ("asc" | "desc")[] | undefined;
7438
+ } & Partial<{
7439
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7440
+ }>;
7002
7441
  } & {
7003
7442
  headers: {
7004
7443
  "x-access-token"?: string | undefined;
7005
7444
  } & Partial<{
7006
7445
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7007
7446
  }>;
7008
- }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7447
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7009
7448
  [x: string]: unknown;
7010
7449
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7011
7450
  [x: string]: unknown;
7012
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7013
- [x: string]: unknown;
7014
7451
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7015
7452
  headers?: Partial<{
7016
7453
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7017
7454
  }>;
7018
7455
  } & {
7019
- pathParameters: {
7020
- extensionInstanceId: string;
7021
- };
7456
+ queryParameters: {
7457
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7458
+ contextId?: string | undefined;
7459
+ extensionId?: string | undefined;
7460
+ searchTerm?: string | undefined;
7461
+ limit?: number | undefined;
7462
+ skip?: number | undefined;
7463
+ page?: number | undefined;
7464
+ sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
7465
+ order?: ("asc" | "desc")[] | undefined;
7466
+ } & Partial<{
7467
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7468
+ }>;
7022
7469
  } & {
7023
7470
  headers: {
7024
7471
  "x-access-token"?: string | undefined;
7025
7472
  } & Partial<{
7026
7473
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7027
7474
  }>;
7028
- }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7475
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7029
7476
  [x: string]: unknown;
7030
7477
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7031
7478
  [x: string]: unknown;
7032
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7033
- [x: string]: unknown;
7034
7479
  }, 429, "application/json">>>;
7035
- /** Get all open extension orders for given project */
7036
- extensionGetProjectExtensionInstanceOrders: (request: {
7037
- projectId: string;
7480
+ /** Create an ExtensionInstance. */
7481
+ extensionCreateExtensionInstance: (request: {
7482
+ data: {
7483
+ consentedScopes: string[];
7484
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7485
+ contextId: string;
7486
+ extensionId: string;
7487
+ };
7038
7488
  headers?: {
7039
7489
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7040
7490
  "x-access-token"?: string | undefined;
7041
7491
  } | undefined;
7042
7492
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7493
+ data: {
7494
+ consentedScopes: string[];
7495
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7496
+ contextId: string;
7497
+ extensionId: string;
7498
+ };
7499
+ } & {
7043
7500
  headers?: Partial<{
7044
7501
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7045
7502
  }>;
7046
- } & {
7047
- pathParameters: {
7048
- projectId: string;
7049
- };
7050
7503
  } & {
7051
7504
  headers: {
7052
7505
  "x-access-token"?: string | undefined;
@@ -7054,21 +7507,29 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7054
7507
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7055
7508
  }>;
7056
7509
  }, import("@mittwald/api-client-commons").Response<{
7057
- extensionId?: string;
7058
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7510
+ id: string;
7511
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7059
7512
  [x: string]: unknown;
7060
7513
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7514
+ message: string;
7515
+ type: string;
7516
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
7061
7517
  [x: string]: unknown;
7062
7518
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7063
7519
  [x: string]: unknown;
7520
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7521
+ [x: string]: unknown;
7064
7522
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7523
+ data: {
7524
+ consentedScopes: string[];
7525
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7526
+ contextId: string;
7527
+ extensionId: string;
7528
+ };
7529
+ } & {
7065
7530
  headers?: Partial<{
7066
7531
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7067
7532
  }>;
7068
- } & {
7069
- pathParameters: {
7070
- projectId: string;
7071
- };
7072
7533
  } & {
7073
7534
  headers: {
7074
7535
  "x-access-token"?: string | undefined;
@@ -7076,124 +7537,84 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7076
7537
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7077
7538
  }>;
7078
7539
  }, import("@mittwald/api-client-commons").Response<{
7079
- extensionId?: string;
7080
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7540
+ id: string;
7541
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7081
7542
  [x: string]: unknown;
7082
7543
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7544
+ message: string;
7545
+ type: string;
7546
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
7083
7547
  [x: string]: unknown;
7084
7548
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7085
7549
  [x: string]: unknown;
7550
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7551
+ [x: string]: unknown;
7086
7552
  }, 429, "application/json">>>;
7087
- /** Order Extension with saved payment method */
7088
- extensionOrderExtension: (request: {
7089
- data: {
7090
- consentedScopes: string[];
7091
- customerId: string;
7092
- };
7093
- extensionId: string;
7553
+ /** Create an access token retrieval key for an extension instance. */
7554
+ extensionCreateRetrievalKey: (request: {
7555
+ extensionInstanceId: string;
7094
7556
  headers?: {
7095
7557
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7096
7558
  "x-access-token"?: string | undefined;
7097
7559
  } | undefined;
7098
- } | {
7099
- data: {
7100
- consentedScopes: string[];
7101
- projectId: string;
7560
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7561
+ headers?: Partial<{
7562
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7563
+ }>;
7564
+ } & {
7565
+ pathParameters: {
7566
+ extensionInstanceId: string;
7102
7567
  };
7103
- extensionId: string;
7104
- headers?: {
7105
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7106
- "x-access-token"?: string | undefined;
7107
- } | undefined;
7108
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
7109
- data: {
7110
- consentedScopes: string[];
7111
- customerId: string;
7112
- };
7113
- } | {
7114
- data: {
7115
- consentedScopes: string[];
7116
- projectId: string;
7117
- };
7118
- }) & {
7119
- pathParameters: {
7120
- extensionId: string;
7121
- };
7122
- }) & {
7123
- headers?: Partial<{
7124
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7125
- }>;
7126
- } & {
7127
- headers: {
7568
+ } & {
7569
+ headers: {
7128
7570
  "x-access-token"?: string | undefined;
7129
7571
  } & Partial<{
7130
7572
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7131
7573
  }>;
7132
- }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7574
+ }, import("@mittwald/api-client-commons").Response<{
7575
+ accessTokenRetrievalKey: string;
7576
+ userId: string;
7577
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7133
7578
  [x: string]: unknown;
7134
7579
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7135
7580
  [x: string]: unknown;
7136
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7137
- [x: string]: unknown;
7138
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7139
- [x: string]: unknown;
7140
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
7141
- data: {
7142
- consentedScopes: string[];
7143
- customerId: string;
7144
- };
7145
- } | {
7146
- data: {
7147
- consentedScopes: string[];
7148
- projectId: string;
7149
- };
7150
- }) & {
7151
- pathParameters: {
7152
- extensionId: string;
7153
- };
7154
- }) & {
7581
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7155
7582
  headers?: Partial<{
7156
7583
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7157
7584
  }>;
7585
+ } & {
7586
+ pathParameters: {
7587
+ extensionInstanceId: string;
7588
+ };
7158
7589
  } & {
7159
7590
  headers: {
7160
7591
  "x-access-token"?: string | undefined;
7161
7592
  } & Partial<{
7162
7593
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7163
7594
  }>;
7164
- }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7595
+ }, import("@mittwald/api-client-commons").Response<{
7596
+ accessTokenRetrievalKey: string;
7597
+ userId: string;
7598
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7165
7599
  [x: string]: unknown;
7166
7600
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7167
7601
  [x: string]: unknown;
7168
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7169
- [x: string]: unknown;
7170
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7171
- [x: string]: unknown;
7172
7602
  }, 429, "application/json">>>;
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;
7603
+ /** Get an ExtensionInstance. */
7604
+ extensionGetExtensionInstance: (request: {
7605
+ extensionInstanceId: string;
7180
7606
  headers?: {
7181
7607
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7182
7608
  "x-access-token"?: string | undefined;
7183
7609
  } | undefined;
7184
7610
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7185
- data: {
7186
- priceInCents?: number | undefined;
7187
- };
7188
- } & {
7189
- pathParameters: {
7190
- extensionId: string;
7191
- contributorId: string;
7192
- };
7193
- } & {
7194
7611
  headers?: Partial<{
7195
7612
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7196
7613
  }>;
7614
+ } & {
7615
+ pathParameters: {
7616
+ extensionInstanceId: string;
7617
+ };
7197
7618
  } & {
7198
7619
  headers: {
7199
7620
  "x-access-token"?: string | undefined;
@@ -7201,28 +7622,35 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7201
7622
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7202
7623
  }>;
7203
7624
  }, import("@mittwald/api-client-commons").Response<{
7204
- extensionId?: string | undefined;
7625
+ aggregateReference: {
7626
+ aggregate: string;
7627
+ domain: string;
7628
+ id: string;
7629
+ };
7630
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7631
+ consentedScopes: string[];
7632
+ contributorId: string;
7633
+ contributorName: string;
7634
+ createdAt?: string | undefined;
7635
+ disabled: boolean;
7636
+ extensionId: string;
7637
+ extensionName: string;
7638
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7639
+ id: string;
7640
+ pendingInstallation: boolean;
7641
+ pendingRemoval: boolean;
7205
7642
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7206
7643
  [x: string]: unknown;
7207
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7208
- [x: string]: unknown;
7209
7644
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7210
7645
  [x: string]: unknown;
7211
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7212
- [x: string]: unknown;
7213
7646
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7214
- data: {
7215
- priceInCents?: number | undefined;
7216
- };
7217
- } & {
7218
- pathParameters: {
7219
- extensionId: string;
7220
- contributorId: string;
7221
- };
7222
- } & {
7223
7647
  headers?: Partial<{
7224
7648
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7225
7649
  }>;
7650
+ } & {
7651
+ pathParameters: {
7652
+ extensionInstanceId: string;
7653
+ };
7226
7654
  } & {
7227
7655
  headers: {
7228
7656
  "x-access-token"?: string | undefined;
@@ -7230,19 +7658,31 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7230
7658
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7231
7659
  }>;
7232
7660
  }, import("@mittwald/api-client-commons").Response<{
7233
- extensionId?: string | undefined;
7661
+ aggregateReference: {
7662
+ aggregate: string;
7663
+ domain: string;
7664
+ id: string;
7665
+ };
7666
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
7667
+ consentedScopes: string[];
7668
+ contributorId: string;
7669
+ contributorName: string;
7670
+ createdAt?: string | undefined;
7671
+ disabled: boolean;
7672
+ extensionId: string;
7673
+ extensionName: string;
7674
+ extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7675
+ id: string;
7676
+ pendingInstallation: boolean;
7677
+ pendingRemoval: boolean;
7234
7678
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7235
7679
  [x: string]: unknown;
7236
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7237
- [x: string]: unknown;
7238
7680
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7239
7681
  [x: string]: unknown;
7240
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7241
- [x: string]: unknown;
7242
7682
  }, 429, "application/json">>>;
7243
- /** Get payment method details */
7244
- customerGetPaymentMethod: (request: {
7245
- customerId: string;
7683
+ /** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
7684
+ extensionDeleteExtensionInstance: (request: {
7685
+ extensionInstanceId: string;
7246
7686
  headers?: {
7247
7687
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7248
7688
  "x-access-token"?: string | undefined;
@@ -7253,7 +7693,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7253
7693
  }>;
7254
7694
  } & {
7255
7695
  pathParameters: {
7256
- customerId: string;
7696
+ extensionInstanceId: string;
7257
7697
  };
7258
7698
  } & {
7259
7699
  headers: {
@@ -7262,23 +7702,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7262
7702
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7263
7703
  }>;
7264
7704
  }, import("@mittwald/api-client-commons").Response<{
7265
- cardDetails?: {
7266
- brand: string;
7267
- last4: string;
7268
- } | undefined;
7269
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7270
7705
  [x: string]: unknown;
7271
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7706
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7272
7707
  [x: string]: unknown;
7273
7708
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7274
7709
  [x: string]: unknown;
7710
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7711
+ [x: string]: unknown;
7275
7712
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7276
7713
  headers?: Partial<{
7277
7714
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7278
7715
  }>;
7279
7716
  } & {
7280
7717
  pathParameters: {
7281
- customerId: string;
7718
+ extensionInstanceId: string;
7282
7719
  };
7283
7720
  } & {
7284
7721
  headers: {
@@ -7287,39 +7724,31 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7287
7724
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7288
7725
  }>;
7289
7726
  }, import("@mittwald/api-client-commons").Response<{
7290
- cardDetails?: {
7291
- brand: string;
7292
- last4: string;
7293
- } | undefined;
7294
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7295
7727
  [x: string]: unknown;
7296
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7728
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
7297
7729
  [x: string]: unknown;
7298
7730
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7299
7731
  [x: string]: unknown;
7732
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
7733
+ [x: string]: unknown;
7300
7734
  }, 429, "application/json">>>;
7301
- /** Get the link to update the marketplace payment method */
7302
- customerUpdatePaymentMethod: (request: {
7303
- customerId: string;
7304
- data?: {
7305
- customReturnUrl?: string | undefined;
7306
- } | undefined;
7735
+ /** Get Extension of own contributor. */
7736
+ extensionGetOwnExtension: (request: {
7737
+ contributorId: string;
7738
+ extensionId: string;
7307
7739
  headers?: {
7308
7740
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7309
7741
  "x-access-token"?: string | undefined;
7310
7742
  } | undefined;
7311
7743
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7312
- data: {
7313
- customReturnUrl?: string | undefined;
7314
- };
7315
- } & {
7316
- pathParameters: {
7317
- customerId: string;
7318
- };
7319
- } & {
7320
7744
  headers?: Partial<{
7321
7745
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7322
7746
  }>;
7747
+ } & {
7748
+ pathParameters: {
7749
+ contributorId: string;
7750
+ extensionId: string;
7751
+ };
7323
7752
  } & {
7324
7753
  headers: {
7325
7754
  "x-access-token"?: string | undefined;
@@ -7327,25 +7756,56 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7327
7756
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7328
7757
  }>;
7329
7758
  }, import("@mittwald/api-client-commons").Response<{
7330
- url?: string | undefined;
7759
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7760
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7761
+ blocked?: boolean | undefined;
7762
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7763
+ contributorId: string;
7764
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7765
+ description?: string | undefined;
7766
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7767
+ disabled?: boolean | undefined;
7768
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7769
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7770
+ frontendFragments?: {
7771
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7772
+ } | undefined;
7773
+ functional: boolean;
7774
+ id: string;
7775
+ logoRefId?: string | undefined;
7776
+ name: string;
7777
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
7778
+ published: boolean;
7779
+ requestedChanges?: {
7780
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7781
+ scopes?: string[];
7782
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7783
+ } | undefined;
7784
+ scopes?: string[] | undefined;
7785
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7786
+ state?: "enabled" | "blocked" | "disabled" | undefined;
7787
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7788
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7789
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
7790
+ inherited: boolean;
7791
+ }) | undefined;
7792
+ tags?: string[] | undefined;
7793
+ verificationRequested: boolean;
7794
+ verified: boolean;
7795
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7331
7796
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7332
7797
  [x: string]: unknown;
7333
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7334
- [x: string]: unknown;
7335
7798
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7336
7799
  [x: string]: unknown;
7337
7800
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7338
- data: {
7339
- customReturnUrl?: string | undefined;
7340
- };
7341
- } & {
7342
- pathParameters: {
7343
- customerId: string;
7344
- };
7345
- } & {
7346
7801
  headers?: Partial<{
7347
7802
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7348
7803
  }>;
7804
+ } & {
7805
+ pathParameters: {
7806
+ contributorId: string;
7807
+ extensionId: string;
7808
+ };
7349
7809
  } & {
7350
7810
  headers: {
7351
7811
  "x-access-token"?: string | undefined;
@@ -7353,170 +7813,72 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7353
7813
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7354
7814
  }>;
7355
7815
  }, import("@mittwald/api-client-commons").Response<{
7356
- url?: string | undefined;
7357
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7358
- [x: string]: unknown;
7359
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7360
- [x: string]: unknown;
7361
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7362
- [x: string]: unknown;
7363
- }, 429, "application/json">>>;
7364
- /** List ContractPartners of the contributor. */
7365
- contributorListContractPartnersOfContributor: (request: {
7366
- contributorId: string;
7367
- queryParameters?: {
7368
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7369
- extensionId?: string | undefined;
7370
- extensionInstanceId?: string | undefined;
7371
- } | undefined;
7372
- headers?: {
7373
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7374
- "x-access-token"?: string | undefined;
7375
- } | undefined;
7376
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7377
- headers?: Partial<{
7378
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7379
- }>;
7380
- } & {
7381
- pathParameters: {
7382
- contributorId: string;
7383
- };
7384
- } & {
7385
- queryParameters: {
7386
- extensionId?: string | undefined;
7387
- extensionInstanceId?: string | undefined;
7388
- } & Partial<{
7389
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7390
- }>;
7391
- } & {
7392
- headers: {
7393
- "x-access-token"?: string | undefined;
7394
- } & Partial<{
7395
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7396
- }>;
7397
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7398
- [x: string]: unknown;
7399
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7400
- headers?: Partial<{
7401
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7402
- }>;
7403
- } & {
7404
- pathParameters: {
7405
- contributorId: string;
7406
- };
7407
- } & {
7408
- queryParameters: {
7409
- extensionId?: string | undefined;
7410
- extensionInstanceId?: string | undefined;
7411
- } & Partial<{
7412
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7413
- }>;
7414
- } & {
7415
- headers: {
7416
- "x-access-token"?: string | undefined;
7417
- } & Partial<{
7418
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7419
- }>;
7420
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7421
- [x: string]: unknown;
7422
- }, 429, "application/json">>>;
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;
7816
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
7817
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
7818
+ blocked?: boolean | undefined;
7819
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
7820
+ contributorId: string;
7821
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7822
+ description?: string | undefined;
7823
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7824
+ disabled?: boolean | undefined;
7825
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7826
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7827
+ frontendFragments?: {
7828
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7430
7829
  } | undefined;
7431
- headers?: {
7432
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7830
+ functional: boolean;
7831
+ id: string;
7832
+ logoRefId?: string | undefined;
7833
+ name: string;
7834
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
7835
+ published: boolean;
7836
+ requestedChanges?: {
7837
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
7838
+ scopes?: string[];
7839
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
7433
7840
  } | undefined;
7434
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7435
- headers?: Partial<{
7436
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7437
- }>;
7438
- } & {
7439
- pathParameters: {
7440
- serial: string;
7441
- };
7442
- } & {
7443
- queryParameters: {
7444
- purpose?: "webhook" | "session_token" | undefined;
7445
- format?: "raw" | "spki" | undefined;
7446
- } & Partial<{
7447
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7448
- }>;
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<{
7454
- [x: string]: unknown;
7455
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7456
- [x: string]: unknown;
7457
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7458
- headers?: Partial<{
7459
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7460
- }>;
7461
- } & {
7462
- pathParameters: {
7463
- serial: string;
7464
- };
7465
- } & {
7466
- queryParameters: {
7467
- purpose?: "webhook" | "session_token" | undefined;
7468
- format?: "raw" | "spki" | undefined;
7469
- } & Partial<{
7470
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7471
- }>;
7472
- }, import("@mittwald/api-client-commons").Response<{
7473
- algorithm: string;
7474
- key: string;
7475
- serial: string;
7841
+ scopes?: string[] | undefined;
7842
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
7843
+ state?: "enabled" | "blocked" | "disabled" | undefined;
7844
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
7845
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7846
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
7847
+ inherited: boolean;
7848
+ }) | undefined;
7849
+ tags?: string[] | undefined;
7850
+ verificationRequested: boolean;
7851
+ verified: boolean;
7852
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7476
7853
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7477
7854
  [x: string]: unknown;
7478
7855
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7479
7856
  [x: string]: unknown;
7480
7857
  }, 429, "application/json">>>;
7481
- /** Remove an asset of an extension. */
7482
- extensionRemoveAsset: (request: {
7858
+ /** Delete an extension. */
7859
+ extensionDeleteExtension: (request: {
7483
7860
  contributorId: string;
7484
7861
  extensionId: string;
7485
- assetRefId: string;
7862
+ data?: {
7863
+ reason?: string | undefined;
7864
+ } | undefined;
7486
7865
  headers?: {
7487
7866
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7488
7867
  "x-access-token"?: string | undefined;
7489
7868
  } | undefined;
7490
7869
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7491
- headers?: Partial<{
7492
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7493
- }>;
7870
+ data: {
7871
+ reason?: string | undefined;
7872
+ };
7494
7873
  } & {
7495
7874
  pathParameters: {
7496
7875
  contributorId: string;
7497
7876
  extensionId: string;
7498
- assetRefId: string;
7499
7877
  };
7500
7878
  } & {
7501
- headers: {
7502
- "x-access-token"?: string | undefined;
7503
- } & Partial<{
7504
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7505
- }>;
7506
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7507
- [x: string]: unknown;
7508
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7509
- [x: string]: unknown;
7510
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7511
7879
  headers?: Partial<{
7512
7880
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7513
7881
  }>;
7514
- } & {
7515
- pathParameters: {
7516
- contributorId: string;
7517
- extensionId: string;
7518
- assetRefId: string;
7519
- };
7520
7882
  } & {
7521
7883
  headers: {
7522
7884
  "x-access-token"?: string | undefined;
@@ -7527,107 +7889,117 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7527
7889
  [x: string]: unknown;
7528
7890
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7529
7891
  [x: string]: unknown;
7530
- }, 429, "application/json">>>;
7531
- /** Get the ExtensionInstance of a specific customer and extension, if existing. */
7532
- extensionGetExtensionInstanceForCustomer: (request: {
7533
- customerId: string;
7534
- extensionId: string;
7535
- headers?: {
7536
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7537
- "x-access-token"?: string | undefined;
7538
- } | undefined;
7539
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7540
- headers?: Partial<{
7541
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7542
- }>;
7892
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7893
+ data: {
7894
+ reason?: string | undefined;
7895
+ };
7543
7896
  } & {
7544
7897
  pathParameters: {
7545
- customerId: string;
7898
+ contributorId: string;
7546
7899
  extensionId: string;
7547
7900
  };
7548
7901
  } & {
7549
- headers: {
7550
- "x-access-token"?: string | undefined;
7551
- } & Partial<{
7552
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7553
- }>;
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<{
7573
- [x: string]: unknown;
7574
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7575
- [x: string]: unknown;
7576
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7577
7902
  headers?: Partial<{
7578
7903
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7579
7904
  }>;
7580
- } & {
7581
- pathParameters: {
7582
- customerId: string;
7583
- extensionId: string;
7584
- };
7585
7905
  } & {
7586
7906
  headers: {
7587
7907
  "x-access-token"?: string | undefined;
7588
7908
  } & Partial<{
7589
7909
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7590
7910
  }>;
7591
- }, import("@mittwald/api-client-commons").Response<{
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[];
7599
- contributorId: string;
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<{
7911
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7610
7912
  [x: string]: unknown;
7611
7913
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7612
7914
  [x: string]: unknown;
7613
7915
  }, 429, "application/json">>>;
7614
- /** Generate an Extension secret for the given Extension. */
7615
- extensionGenerateExtensionSecret: (request: {
7916
+ /** Patch Extension. */
7917
+ extensionPatchExtension: (request: {
7616
7918
  contributorId: string;
7617
7919
  extensionId: string;
7920
+ data?: {
7921
+ assets?: string[] | undefined;
7922
+ deprecation?: {
7923
+ deprecatedAt: string;
7924
+ note?: string | undefined;
7925
+ successorId?: string | undefined;
7926
+ } | undefined;
7927
+ description?: string | undefined;
7928
+ detailedDescriptions?: {
7929
+ de: {
7930
+ markdown: string;
7931
+ plain?: string | undefined;
7932
+ };
7933
+ en?: {
7934
+ markdown: string;
7935
+ plain?: string | undefined;
7936
+ } | undefined;
7937
+ } | undefined;
7938
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7939
+ frontendFragments?: {
7940
+ [x: string]: {
7941
+ url: string;
7942
+ additionalProperties?: {
7943
+ [x: string]: string;
7944
+ } | undefined;
7945
+ };
7946
+ } | undefined;
7947
+ name?: string | undefined;
7948
+ scopes?: string[] | undefined;
7949
+ subTitle?: {
7950
+ de: string;
7951
+ en?: string | undefined;
7952
+ } | undefined;
7953
+ support?: {
7954
+ email: string;
7955
+ phone?: string | undefined;
7956
+ } | undefined;
7957
+ tags?: string[] | undefined;
7958
+ webhookUrls?: {
7959
+ extensionAddedToContext: {
7960
+ url: string;
7961
+ };
7962
+ extensionInstanceRemovedFromContext: {
7963
+ url: string;
7964
+ };
7965
+ extensionInstanceSecretRotated: {
7966
+ url: string;
7967
+ };
7968
+ extensionInstanceUpdated: {
7969
+ url: string;
7970
+ };
7971
+ } | undefined;
7972
+ } | undefined;
7618
7973
  headers?: {
7619
7974
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7620
7975
  "x-access-token"?: string | undefined;
7621
7976
  } | undefined;
7622
7977
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7623
- headers?: Partial<{
7624
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7625
- }>;
7978
+ data: {
7979
+ assets?: string[] | undefined;
7980
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
7981
+ description?: string | undefined;
7982
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
7983
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
7984
+ frontendFragments?: {
7985
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
7986
+ } | undefined;
7987
+ name?: string | undefined;
7988
+ scopes?: string[] | undefined;
7989
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
7990
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7991
+ tags?: string[] | undefined;
7992
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7993
+ };
7626
7994
  } & {
7627
7995
  pathParameters: {
7628
7996
  contributorId: string;
7629
7997
  extensionId: string;
7630
7998
  };
7999
+ } & {
8000
+ headers?: Partial<{
8001
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8002
+ }>;
7631
8003
  } & {
7632
8004
  headers: {
7633
8005
  "x-access-token"?: string | undefined;
@@ -7635,25 +8007,77 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7635
8007
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7636
8008
  }>;
7637
8009
  }, import("@mittwald/api-client-commons").Response<{
7638
- secret: string;
7639
- secretId: string;
8010
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
8011
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
8012
+ blocked?: boolean | undefined;
8013
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8014
+ contributorId: string;
8015
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
8016
+ description?: string | undefined;
8017
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8018
+ disabled?: boolean | undefined;
8019
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8020
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8021
+ frontendFragments?: {
8022
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8023
+ } | undefined;
8024
+ functional: boolean;
8025
+ id: string;
8026
+ logoRefId?: string | undefined;
8027
+ name: string;
8028
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
8029
+ published: boolean;
8030
+ requestedChanges?: {
8031
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8032
+ scopes?: string[];
8033
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
8034
+ } | undefined;
8035
+ scopes?: string[] | undefined;
8036
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
8037
+ state?: "enabled" | "blocked" | "disabled" | undefined;
8038
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
8039
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8040
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
8041
+ inherited: boolean;
8042
+ }) | undefined;
8043
+ tags?: string[] | undefined;
8044
+ verificationRequested: boolean;
8045
+ verified: boolean;
8046
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7640
8047
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7641
8048
  [x: string]: unknown;
7642
8049
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7643
8050
  [x: string]: unknown;
7644
8051
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7645
8052
  [x: string]: unknown;
7646
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8053
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
7647
8054
  [x: string]: unknown;
7648
8055
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7649
- headers?: Partial<{
7650
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7651
- }>;
8056
+ data: {
8057
+ assets?: string[] | undefined;
8058
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
8059
+ description?: string | undefined;
8060
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8061
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8062
+ frontendFragments?: {
8063
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8064
+ } | undefined;
8065
+ name?: string | undefined;
8066
+ scopes?: string[] | undefined;
8067
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8068
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
8069
+ tags?: string[] | undefined;
8070
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
8071
+ };
7652
8072
  } & {
7653
8073
  pathParameters: {
7654
8074
  contributorId: string;
7655
8075
  extensionId: string;
7656
8076
  };
8077
+ } & {
8078
+ headers?: Partial<{
8079
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8080
+ }>;
7657
8081
  } & {
7658
8082
  headers: {
7659
8083
  "x-access-token"?: string | undefined;
@@ -7661,15 +8085,50 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7661
8085
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7662
8086
  }>;
7663
8087
  }, import("@mittwald/api-client-commons").Response<{
7664
- secret: string;
7665
- secretId: string;
8088
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
8089
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
8090
+ blocked?: boolean | undefined;
8091
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8092
+ contributorId: string;
8093
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
8094
+ description?: string | undefined;
8095
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8096
+ disabled?: boolean | undefined;
8097
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8098
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8099
+ frontendFragments?: {
8100
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8101
+ } | undefined;
8102
+ functional: boolean;
8103
+ id: string;
8104
+ logoRefId?: string | undefined;
8105
+ name: string;
8106
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
8107
+ published: boolean;
8108
+ requestedChanges?: {
8109
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8110
+ scopes?: string[];
8111
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
8112
+ } | undefined;
8113
+ scopes?: string[] | undefined;
8114
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
8115
+ state?: "enabled" | "blocked" | "disabled" | undefined;
8116
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
8117
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8118
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
8119
+ inherited: boolean;
8120
+ }) | undefined;
8121
+ tags?: string[] | undefined;
8122
+ verificationRequested: boolean;
8123
+ verified: boolean;
8124
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
7666
8125
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7667
8126
  [x: string]: unknown;
7668
8127
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7669
8128
  [x: string]: unknown;
7670
8129
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7671
8130
  [x: string]: unknown;
7672
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8131
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
7673
8132
  [x: string]: unknown;
7674
8133
  }, 429, "application/json">>>;
7675
8134
  /** Disable an ExtensionInstance. */
@@ -7720,101 +8179,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7720
8179
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7721
8180
  [x: string]: unknown;
7722
8181
  }, 429, "application/json">>>;
7723
- /** Create an access token retrieval key for an extension instance. */
7724
- extensionCreateRetrievalKey: (request: {
8182
+ /** Dry run a webhook with random or given values. */
8183
+ extensionDryRunWebhook: (request: {
8184
+ contributorId: string;
8185
+ extensionId: string;
7725
8186
  extensionInstanceId: string;
7726
- headers?: {
7727
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7728
- "x-access-token"?: string | undefined;
7729
- } | undefined;
7730
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7731
- headers?: Partial<{
7732
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7733
- }>;
7734
- } & {
7735
- pathParameters: {
7736
- extensionInstanceId: string;
7737
- };
7738
- } & {
7739
- headers: {
7740
- "x-access-token"?: string | undefined;
7741
- } & Partial<{
7742
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7743
- }>;
7744
- }, import("@mittwald/api-client-commons").Response<{
7745
- accessTokenRetrievalKey: string;
7746
- userId: string;
7747
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7748
- [x: string]: unknown;
7749
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7750
- [x: string]: unknown;
7751
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7752
- headers?: Partial<{
7753
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7754
- }>;
7755
- } & {
7756
- pathParameters: {
7757
- extensionInstanceId: string;
7758
- };
7759
- } & {
7760
- headers: {
7761
- "x-access-token"?: string | undefined;
7762
- } & Partial<{
7763
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7764
- }>;
7765
- }, import("@mittwald/api-client-commons").Response<{
7766
- accessTokenRetrievalKey: string;
7767
- userId: string;
7768
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7769
- [x: string]: unknown;
7770
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7771
- [x: string]: unknown;
7772
- }, 429, "application/json">>>;
7773
- /** List Contributors. */
7774
- extensionListContributors: (request?: {
7775
- headers?: {
7776
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7777
- } | undefined;
8187
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7778
8188
  queryParameters?: {
7779
8189
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7780
- limit?: number | undefined;
7781
- skip?: number | undefined;
7782
- page?: number | undefined;
8190
+ contextId?: string | undefined;
8191
+ scopes?: string[] | undefined;
8192
+ instanceDisabled?: boolean | undefined;
8193
+ createdAt?: string | undefined;
8194
+ secret?: string | undefined;
7783
8195
  } | undefined;
7784
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7785
- headers?: Partial<{
7786
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7787
- }>;
7788
- } & {
7789
- queryParameters: {
7790
- limit?: number | undefined;
7791
- skip?: number | undefined;
7792
- page?: number | undefined;
7793
- } & Partial<{
7794
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7795
- }>;
7796
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7797
- [x: string]: unknown;
7798
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7799
- headers?: Partial<{
7800
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7801
- }>;
7802
- } & {
7803
- queryParameters: {
7804
- limit?: number | undefined;
7805
- skip?: number | undefined;
7806
- page?: number | undefined;
7807
- } & Partial<{
7808
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7809
- }>;
7810
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7811
- [x: string]: unknown;
7812
- }, 429, "application/json">>>;
7813
- /** Get a Contributor. */
7814
- extensionGetContributor: (request: {
7815
- contributorId: string;
7816
8196
  headers?: {
7817
8197
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8198
+ "x-access-token"?: string | undefined;
7818
8199
  } | undefined;
7819
8200
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7820
8201
  headers?: Partial<{
@@ -7823,136 +8204,56 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7823
8204
  } & {
7824
8205
  pathParameters: {
7825
8206
  contributorId: string;
8207
+ extensionId: string;
8208
+ extensionInstanceId: string;
8209
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7826
8210
  };
7827
- }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7828
- [x: string]: unknown;
7829
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7830
- [x: string]: unknown;
7831
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7832
- headers?: Partial<{
7833
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7834
- }>;
7835
- } & {
7836
- pathParameters: {
7837
- contributorId: string;
7838
- };
7839
- }, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7840
- [x: string]: unknown;
7841
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7842
- [x: string]: unknown;
7843
- }, 429, "application/json">>>;
7844
- /** Patch Contributor. */
7845
- contributorPatchContributor: (request: {
7846
- contributorId: string;
7847
- data?: {
7848
- contactPersonUserId?: string | undefined;
7849
- descriptions?: {
7850
- de: string;
7851
- en?: string | undefined;
7852
- } | undefined;
7853
- deviatingContractOwner?: {
7854
- contact: {
7855
- salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
7856
- address: {
7857
- street: string;
7858
- houseNumber: string;
7859
- city: string;
7860
- zip: string;
7861
- countryCode: string;
7862
- addressPrefix?: string | undefined;
7863
- };
7864
- firstName?: string | undefined;
7865
- lastName?: string | undefined;
7866
- title?: string | undefined;
7867
- company?: string | undefined;
7868
- emailAddress?: string | undefined;
7869
- phoneNumbers?: string[] | undefined;
7870
- useFormalTerm?: boolean | undefined;
7871
- };
7872
- inherited: boolean;
7873
- } | undefined;
7874
- deviatingName?: string | undefined;
7875
- deviatingSupportInformation?: {
7876
- email: string;
7877
- phone?: string | undefined;
7878
- } | undefined;
7879
- homepage?: string | undefined;
7880
- imprint?: {
7881
- text: string;
7882
- } | {
7883
- url: string;
7884
- } | undefined;
7885
- } | undefined;
7886
- headers?: {
7887
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7888
- "x-access-token"?: string | undefined;
7889
- } | undefined;
7890
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7891
- data: {
7892
- contactPersonUserId?: string | undefined;
7893
- descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
7894
- deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner | undefined;
7895
- deviatingName?: string | undefined;
7896
- deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7897
- homepage?: string | undefined;
7898
- imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
7899
- };
7900
- } & {
7901
- pathParameters: {
7902
- contributorId: string;
7903
- };
7904
- } & {
7905
- headers?: Partial<{
7906
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7907
- }>;
7908
8211
  } & {
7909
- headers: {
7910
- "x-access-token"?: string | undefined;
7911
- } & Partial<{
7912
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7913
- }>;
7914
- }, import("@mittwald/api-client-commons").Response<{
7915
- contactPersonUserId: string;
7916
- contractOwner: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
7917
- contributorNumber: string;
7918
- customerId: string;
7919
- description?: string | undefined;
7920
- descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
7921
- email: string;
7922
- homepage?: string | undefined;
7923
- id: string;
7924
- imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
7925
- logoRefId?: string | undefined;
7926
- name: string;
7927
- nameInherited: boolean;
7928
- phone?: string | undefined;
7929
- state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
7930
- supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
7931
- inherited: boolean;
7932
- };
7933
- url?: string | undefined;
8212
+ queryParameters: {
8213
+ contextId?: string | undefined;
8214
+ scopes?: string[] | undefined;
8215
+ instanceDisabled?: boolean | undefined;
8216
+ createdAt?: string | undefined;
8217
+ secret?: string | undefined;
8218
+ } & Partial<{
8219
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8220
+ }>;
8221
+ } & {
8222
+ headers: {
8223
+ "x-access-token"?: string | undefined;
8224
+ } & Partial<{
8225
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8226
+ }>;
8227
+ }, import("@mittwald/api-client-commons").Response<{
8228
+ errorMessage?: string | undefined;
8229
+ responseBody?: string | undefined;
8230
+ responseCode?: number | undefined;
8231
+ responseHeaders?: string | undefined;
8232
+ routeCalled: string;
8233
+ successful: boolean;
7934
8234
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7935
8235
  [x: string]: unknown;
7936
8236
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7937
8237
  [x: string]: unknown;
7938
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7939
- [x: string]: unknown;
7940
8238
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7941
- data: {
7942
- contactPersonUserId?: string | undefined;
7943
- descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
7944
- deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner | undefined;
7945
- deviatingName?: string | undefined;
7946
- deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
7947
- homepage?: string | undefined;
7948
- imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
7949
- };
8239
+ headers?: Partial<{
8240
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8241
+ }>;
7950
8242
  } & {
7951
8243
  pathParameters: {
7952
8244
  contributorId: string;
8245
+ extensionId: string;
8246
+ extensionInstanceId: string;
8247
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
7953
8248
  };
7954
8249
  } & {
7955
- headers?: Partial<{
8250
+ queryParameters: {
8251
+ contextId?: string | undefined;
8252
+ scopes?: string[] | undefined;
8253
+ instanceDisabled?: boolean | undefined;
8254
+ createdAt?: string | undefined;
8255
+ secret?: string | undefined;
8256
+ } & Partial<{
7956
8257
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7957
8258
  }>;
7958
8259
  } & {
@@ -7962,31 +8263,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7962
8263
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7963
8264
  }>;
7964
8265
  }, import("@mittwald/api-client-commons").Response<{
7965
- contactPersonUserId: string;
7966
- contractOwner: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
7967
- contributorNumber: string;
7968
- customerId: string;
7969
- description?: string | undefined;
7970
- descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
7971
- email: string;
7972
- homepage?: string | undefined;
7973
- id: string;
7974
- imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
7975
- logoRefId?: string | undefined;
7976
- name: string;
7977
- nameInherited: boolean;
7978
- phone?: string | undefined;
7979
- state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
7980
- supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
7981
- inherited: boolean;
7982
- };
7983
- url?: string | undefined;
8266
+ errorMessage?: string | undefined;
8267
+ responseBody?: string | undefined;
8268
+ responseCode?: number | undefined;
8269
+ responseHeaders?: string | undefined;
8270
+ routeCalled: string;
8271
+ successful: boolean;
7984
8272
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7985
8273
  [x: string]: unknown;
7986
8274
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7987
8275
  [x: string]: unknown;
7988
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7989
- [x: string]: unknown;
7990
8276
  }, 429, "application/json">>>;
7991
8277
  /** Enable an ExtensionInstance. */
7992
8278
  extensionEnableExtensionInstance: (request: {
@@ -8036,54 +8322,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8036
8322
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8037
8323
  [x: string]: unknown;
8038
8324
  }, 429, "application/json">>>;
8039
- /** List Scopes. */
8040
- extensionListScopes: (request?: {
8041
- headers?: {
8042
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8043
- } | undefined;
8044
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8045
- headers?: Partial<{
8046
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8047
- }>;
8048
- }, import("@mittwald/api-client-commons").Response<{
8049
- name: string;
8050
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8051
- [x: string]: unknown;
8052
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8053
- headers?: Partial<{
8054
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8055
- }>;
8056
- }, import("@mittwald/api-client-commons").Response<{
8057
- name: string;
8058
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8059
- [x: string]: unknown;
8060
- }, 429, "application/json">>>;
8061
- /** Rotate the secret for an extension instance. */
8062
- contributorRotateSecretForExtensionInstance: (request: {
8325
+ /** Generate an Extension secret for the given Extension. */
8326
+ extensionGenerateExtensionSecret: (request: {
8063
8327
  contributorId: string;
8064
8328
  extensionId: string;
8065
- extensionInstanceId: string;
8066
- data?: {
8067
- allowWebhookFailure?: boolean | undefined;
8068
- } | undefined;
8069
8329
  headers?: {
8070
8330
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8071
8331
  "x-access-token"?: string | undefined;
8072
8332
  } | undefined;
8073
8333
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8074
- data: {
8075
- allowWebhookFailure?: boolean | undefined;
8076
- };
8334
+ headers?: Partial<{
8335
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8336
+ }>;
8077
8337
  } & {
8078
8338
  pathParameters: {
8079
8339
  contributorId: string;
8080
8340
  extensionId: string;
8081
- extensionInstanceId: string;
8082
8341
  };
8083
- } & {
8084
- headers?: Partial<{
8085
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8086
- }>;
8087
8342
  } & {
8088
8343
  headers: {
8089
8344
  "x-access-token"?: string | undefined;
@@ -8092,30 +8347,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8092
8347
  }>;
8093
8348
  }, import("@mittwald/api-client-commons").Response<{
8094
8349
  secret: string;
8095
- webhookResult: {
8096
- failure: boolean;
8097
- statusCode?: string;
8098
- };
8350
+ secretId: string;
8099
8351
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8100
8352
  [x: string]: unknown;
8101
8353
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8102
8354
  [x: string]: unknown;
8103
8355
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8104
8356
  [x: string]: unknown;
8357
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8358
+ [x: string]: unknown;
8105
8359
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8106
- data: {
8107
- allowWebhookFailure?: boolean | undefined;
8108
- };
8360
+ headers?: Partial<{
8361
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8362
+ }>;
8109
8363
  } & {
8110
8364
  pathParameters: {
8111
8365
  contributorId: string;
8112
8366
  extensionId: string;
8113
- extensionInstanceId: string;
8114
8367
  };
8115
- } & {
8116
- headers?: Partial<{
8117
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8118
- }>;
8119
8368
  } & {
8120
8369
  headers: {
8121
8370
  "x-access-token"?: string | undefined;
@@ -8124,22 +8373,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8124
8373
  }>;
8125
8374
  }, import("@mittwald/api-client-commons").Response<{
8126
8375
  secret: string;
8127
- webhookResult: {
8128
- failure: boolean;
8129
- statusCode?: string;
8130
- };
8376
+ secretId: string;
8131
8377
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8132
8378
  [x: string]: unknown;
8133
8379
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8134
8380
  [x: string]: unknown;
8135
8381
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8136
8382
  [x: string]: unknown;
8383
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8384
+ [x: string]: unknown;
8137
8385
  }, 429, "application/json">>>;
8138
- /** Get an Extension. */
8139
- extensionGetExtension: (request: {
8140
- extensionId: string;
8386
+ /** Generate a session token to transmit it to the extensions frontend fragment. */
8387
+ extensionGenerateSessionToken: (request: {
8388
+ extensionInstanceId: string;
8389
+ sessionId: string;
8141
8390
  headers?: {
8142
8391
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8392
+ "x-access-token"?: string | undefined;
8143
8393
  } | undefined;
8144
8394
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8145
8395
  headers?: Partial<{
@@ -8147,9 +8397,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8147
8397
  }>;
8148
8398
  } & {
8149
8399
  pathParameters: {
8150
- extensionId: string;
8400
+ extensionInstanceId: string;
8401
+ sessionId: string;
8151
8402
  };
8152
- }, 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<{
8403
+ } & {
8404
+ headers: {
8405
+ "x-access-token"?: string | undefined;
8406
+ } & Partial<{
8407
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8408
+ }>;
8409
+ }, import("@mittwald/api-client-commons").Response<{
8410
+ sessionToken: string;
8411
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8412
+ [x: string]: unknown;
8413
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8153
8414
  [x: string]: unknown;
8154
8415
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8155
8416
  [x: string]: unknown;
@@ -8159,17 +8420,27 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8159
8420
  }>;
8160
8421
  } & {
8161
8422
  pathParameters: {
8162
- extensionId: string;
8423
+ extensionInstanceId: string;
8424
+ sessionId: string;
8163
8425
  };
8164
- }, 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<{
8426
+ } & {
8427
+ headers: {
8428
+ "x-access-token"?: string | undefined;
8429
+ } & Partial<{
8430
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8431
+ }>;
8432
+ }, import("@mittwald/api-client-commons").Response<{
8433
+ sessionToken: string;
8434
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8435
+ [x: string]: unknown;
8436
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8165
8437
  [x: string]: unknown;
8166
8438
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8167
8439
  [x: string]: unknown;
8168
8440
  }, 429, "application/json">>>;
8169
- /** Add a logo to an extension. */
8170
- extensionRequestLogoUpload: (request: {
8171
- contributorId: string;
8172
- extensionId: string;
8441
+ /** Get all open extension orders for given customer */
8442
+ extensionGetCustomerExtensionInstanceOrders: (request: {
8443
+ customerId: string;
8173
8444
  headers?: {
8174
8445
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8175
8446
  "x-access-token"?: string | undefined;
@@ -8180,8 +8451,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8180
8451
  }>;
8181
8452
  } & {
8182
8453
  pathParameters: {
8183
- contributorId: string;
8184
- extensionId: string;
8454
+ customerId: string;
8185
8455
  };
8186
8456
  } & {
8187
8457
  headers: {
@@ -8190,29 +8460,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8190
8460
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8191
8461
  }>;
8192
8462
  }, import("@mittwald/api-client-commons").Response<{
8193
- logoRefId: string;
8194
- rules: {
8195
- extensions: string[];
8196
- fileTypes: {
8197
- extensions: string[];
8198
- mimeType: string;
8199
- }[];
8200
- maxSizeInBytes: number;
8201
- mimeTypes: string[];
8202
- properties?: {
8203
- imageDimensions?: {
8204
- max: {
8205
- height?: number;
8206
- width?: number;
8207
- };
8208
- min: {
8209
- height?: number;
8210
- width?: number;
8211
- };
8212
- };
8213
- };
8214
- };
8215
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8463
+ extensionId?: string;
8464
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8465
+ [x: string]: unknown;
8466
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8216
8467
  [x: string]: unknown;
8217
8468
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8218
8469
  [x: string]: unknown;
@@ -8222,8 +8473,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8222
8473
  }>;
8223
8474
  } & {
8224
8475
  pathParameters: {
8225
- contributorId: string;
8226
- extensionId: string;
8476
+ customerId: string;
8227
8477
  };
8228
8478
  } & {
8229
8479
  headers: {
@@ -8232,37 +8482,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8232
8482
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8233
8483
  }>;
8234
8484
  }, import("@mittwald/api-client-commons").Response<{
8235
- logoRefId: string;
8236
- rules: {
8237
- extensions: string[];
8238
- fileTypes: {
8239
- extensions: string[];
8240
- mimeType: string;
8241
- }[];
8242
- maxSizeInBytes: number;
8243
- mimeTypes: string[];
8244
- properties?: {
8245
- imageDimensions?: {
8246
- max: {
8247
- height?: number;
8248
- width?: number;
8249
- };
8250
- min: {
8251
- height?: number;
8252
- width?: number;
8253
- };
8254
- };
8255
- };
8256
- };
8257
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8485
+ extensionId?: string;
8486
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8487
+ [x: string]: unknown;
8488
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8258
8489
  [x: string]: unknown;
8259
8490
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8260
8491
  [x: string]: unknown;
8261
8492
  }, 429, "application/json">>>;
8262
- /** Remove the logo of an extension. */
8263
- extensionRemoveLogo: (request: {
8264
- contributorId: string;
8265
- extensionId: string;
8493
+ /** Get the Contract Strategy of an Extension Instance */
8494
+ extensionGetExtensionInstanceContract: (request: {
8495
+ extensionInstanceId: string;
8266
8496
  headers?: {
8267
8497
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8268
8498
  "x-access-token"?: string | undefined;
@@ -8273,8 +8503,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8273
8503
  }>;
8274
8504
  } & {
8275
8505
  pathParameters: {
8276
- contributorId: string;
8277
- extensionId: string;
8506
+ extensionInstanceId: string;
8278
8507
  };
8279
8508
  } & {
8280
8509
  headers: {
@@ -8282,7 +8511,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8282
8511
  } & Partial<{
8283
8512
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8284
8513
  }>;
8285
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8514
+ }, import("@mittwald/api-client-commons").Response<{
8515
+ currentPrice?: number | undefined;
8516
+ interactionDeadline?: string | undefined;
8517
+ interactionRequired: boolean;
8518
+ status: "notStarted" | "pending" | "active" | "terminationPending";
8519
+ terminationTargetDate?: string | undefined;
8520
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8521
+ [x: string]: unknown;
8522
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8286
8523
  [x: string]: unknown;
8287
8524
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8288
8525
  [x: string]: unknown;
@@ -8292,8 +8529,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8292
8529
  }>;
8293
8530
  } & {
8294
8531
  pathParameters: {
8295
- contributorId: string;
8296
- extensionId: string;
8532
+ extensionInstanceId: string;
8297
8533
  };
8298
8534
  } & {
8299
8535
  headers: {
@@ -8301,25 +8537,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8301
8537
  } & Partial<{
8302
8538
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8303
8539
  }>;
8304
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8540
+ }, import("@mittwald/api-client-commons").Response<{
8541
+ currentPrice?: number | undefined;
8542
+ interactionDeadline?: string | undefined;
8543
+ interactionRequired: boolean;
8544
+ status: "notStarted" | "pending" | "active" | "terminationPending";
8545
+ terminationTargetDate?: string | undefined;
8546
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8547
+ [x: string]: unknown;
8548
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8305
8549
  [x: string]: unknown;
8306
8550
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8307
8551
  [x: string]: unknown;
8308
8552
  }, 429, "application/json">>>;
8309
- /** Dry run a webhook with random or given values. */
8310
- extensionDryRunWebhook: (request: {
8311
- contributorId: string;
8312
- extensionId: string;
8553
+ /** Update or Create Contract for existing Extension Instances. */
8554
+ extensionUpdateExtensionInstanceContract: (request: {
8313
8555
  extensionInstanceId: string;
8314
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
8315
- queryParameters?: {
8316
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8317
- contextId?: string | undefined;
8318
- scopes?: string[] | undefined;
8319
- instanceDisabled?: boolean | undefined;
8320
- createdAt?: string | undefined;
8321
- secret?: string | undefined;
8322
- } | undefined;
8323
8556
  headers?: {
8324
8557
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8325
8558
  "x-access-token"?: string | undefined;
@@ -8330,80 +8563,44 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8330
8563
  }>;
8331
8564
  } & {
8332
8565
  pathParameters: {
8333
- contributorId: string;
8334
- extensionId: string;
8335
8566
  extensionInstanceId: string;
8336
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
8337
8567
  };
8338
- } & {
8339
- queryParameters: {
8340
- contextId?: string | undefined;
8341
- scopes?: string[] | undefined;
8342
- instanceDisabled?: boolean | undefined;
8343
- createdAt?: string | undefined;
8344
- secret?: string | undefined;
8345
- } & Partial<{
8346
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8347
- }>;
8348
8568
  } & {
8349
8569
  headers: {
8350
8570
  "x-access-token"?: string | undefined;
8351
8571
  } & Partial<{
8352
8572
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8353
8573
  }>;
8354
- }, import("@mittwald/api-client-commons").Response<{
8355
- errorMessage?: string | undefined;
8356
- responseBody?: string | undefined;
8357
- responseCode?: number | undefined;
8358
- responseHeaders?: string | undefined;
8359
- routeCalled: string;
8360
- successful: boolean;
8361
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8574
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8362
8575
  [x: string]: unknown;
8363
8576
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8364
8577
  [x: string]: unknown;
8578
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8579
+ [x: string]: unknown;
8365
8580
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8366
8581
  headers?: Partial<{
8367
8582
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8368
8583
  }>;
8369
8584
  } & {
8370
8585
  pathParameters: {
8371
- contributorId: string;
8372
- extensionId: string;
8373
8586
  extensionInstanceId: string;
8374
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
8375
8587
  };
8376
- } & {
8377
- queryParameters: {
8378
- contextId?: string | undefined;
8379
- scopes?: string[] | undefined;
8380
- instanceDisabled?: boolean | undefined;
8381
- createdAt?: string | undefined;
8382
- secret?: string | undefined;
8383
- } & Partial<{
8384
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8385
- }>;
8386
8588
  } & {
8387
8589
  headers: {
8388
8590
  "x-access-token"?: string | undefined;
8389
8591
  } & Partial<{
8390
8592
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8391
8593
  }>;
8392
- }, import("@mittwald/api-client-commons").Response<{
8393
- errorMessage?: string | undefined;
8394
- responseBody?: string | undefined;
8395
- responseCode?: number | undefined;
8396
- responseHeaders?: string | undefined;
8397
- routeCalled: string;
8398
- successful: boolean;
8399
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8594
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8400
8595
  [x: string]: unknown;
8401
8596
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8402
8597
  [x: string]: unknown;
8598
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8599
+ [x: string]: unknown;
8403
8600
  }, 429, "application/json">>>;
8404
- /** Get the ExtensionInstance of a specific project and extension, if existing. */
8405
- extensionGetExtensionInstanceForProject: (request: {
8406
- projectId: string;
8601
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
8602
+ extensionGetExtensionInstanceForCustomer: (request: {
8603
+ customerId: string;
8407
8604
  extensionId: string;
8408
8605
  headers?: {
8409
8606
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -8415,7 +8612,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8415
8612
  }>;
8416
8613
  } & {
8417
8614
  pathParameters: {
8418
- projectId: string;
8615
+ customerId: string;
8419
8616
  extensionId: string;
8420
8617
  };
8421
8618
  } & {
@@ -8452,7 +8649,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8452
8649
  }>;
8453
8650
  } & {
8454
8651
  pathParameters: {
8455
- projectId: string;
8652
+ customerId: string;
8456
8653
  extensionId: string;
8457
8654
  };
8458
8655
  } & {
@@ -8484,9 +8681,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8484
8681
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8485
8682
  [x: string]: unknown;
8486
8683
  }, 429, "application/json">>>;
8487
- /** Get an ExtensionInstance. */
8488
- extensionGetExtensionInstance: (request: {
8489
- extensionInstanceId: string;
8684
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
8685
+ extensionGetExtensionInstanceForProject: (request: {
8686
+ projectId: string;
8687
+ extensionId: string;
8490
8688
  headers?: {
8491
8689
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8492
8690
  "x-access-token"?: string | undefined;
@@ -8497,7 +8695,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8497
8695
  }>;
8498
8696
  } & {
8499
8697
  pathParameters: {
8500
- extensionInstanceId: string;
8698
+ projectId: string;
8699
+ extensionId: string;
8501
8700
  };
8502
8701
  } & {
8503
8702
  headers: {
@@ -8533,7 +8732,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8533
8732
  }>;
8534
8733
  } & {
8535
8734
  pathParameters: {
8536
- extensionInstanceId: string;
8735
+ projectId: string;
8736
+ extensionId: string;
8537
8737
  };
8538
8738
  } & {
8539
8739
  headers: {
@@ -8564,9 +8764,40 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8564
8764
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8565
8765
  [x: string]: unknown;
8566
8766
  }, 429, "application/json">>>;
8567
- /** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
8568
- extensionDeleteExtensionInstance: (request: {
8569
- extensionInstanceId: string;
8767
+ /** Get an Extension. */
8768
+ extensionGetExtension: (request: {
8769
+ extensionId: string;
8770
+ headers?: {
8771
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8772
+ } | undefined;
8773
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8774
+ headers?: Partial<{
8775
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8776
+ }>;
8777
+ } & {
8778
+ pathParameters: {
8779
+ extensionId: string;
8780
+ };
8781
+ }, 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<{
8782
+ [x: string]: unknown;
8783
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8784
+ [x: string]: unknown;
8785
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8786
+ headers?: Partial<{
8787
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8788
+ }>;
8789
+ } & {
8790
+ pathParameters: {
8791
+ extensionId: string;
8792
+ };
8793
+ }, 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<{
8794
+ [x: string]: unknown;
8795
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8796
+ [x: string]: unknown;
8797
+ }, 429, "application/json">>>;
8798
+ /** Get all open extension orders for given project */
8799
+ extensionGetProjectExtensionInstanceOrders: (request: {
8800
+ projectId: string;
8570
8801
  headers?: {
8571
8802
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8572
8803
  "x-access-token"?: string | undefined;
@@ -8577,7 +8808,29 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8577
8808
  }>;
8578
8809
  } & {
8579
8810
  pathParameters: {
8580
- extensionInstanceId: string;
8811
+ projectId: string;
8812
+ };
8813
+ } & {
8814
+ headers: {
8815
+ "x-access-token"?: string | undefined;
8816
+ } & Partial<{
8817
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8818
+ }>;
8819
+ }, import("@mittwald/api-client-commons").Response<{
8820
+ extensionId?: string;
8821
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8822
+ [x: string]: unknown;
8823
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8824
+ [x: string]: unknown;
8825
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8826
+ [x: string]: unknown;
8827
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8828
+ headers?: Partial<{
8829
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8830
+ }>;
8831
+ } & {
8832
+ pathParameters: {
8833
+ projectId: string;
8581
8834
  };
8582
8835
  } & {
8583
8836
  headers: {
@@ -8586,8 +8839,100 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8586
8839
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8587
8840
  }>;
8588
8841
  }, import("@mittwald/api-client-commons").Response<{
8842
+ extensionId?: string;
8843
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8844
+ [x: string]: unknown;
8845
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8846
+ [x: string]: unknown;
8847
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8848
+ [x: string]: unknown;
8849
+ }, 429, "application/json">>>;
8850
+ /** Get the public key to verify the webhook signature. */
8851
+ extensionGetPublicKey: (request: {
8852
+ serial: string;
8853
+ queryParameters?: {
8854
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8855
+ purpose?: "webhook" | "session_token" | undefined;
8856
+ format?: "raw" | "spki" | undefined;
8857
+ } | undefined;
8858
+ headers?: {
8859
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8860
+ } | undefined;
8861
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8862
+ headers?: Partial<{
8863
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8864
+ }>;
8865
+ } & {
8866
+ pathParameters: {
8867
+ serial: string;
8868
+ };
8869
+ } & {
8870
+ queryParameters: {
8871
+ purpose?: "webhook" | "session_token" | undefined;
8872
+ format?: "raw" | "spki" | undefined;
8873
+ } & Partial<{
8874
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8875
+ }>;
8876
+ }, import("@mittwald/api-client-commons").Response<{
8877
+ algorithm: string;
8878
+ key: string;
8879
+ serial: string;
8880
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8881
+ [x: string]: unknown;
8882
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8883
+ [x: string]: unknown;
8884
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8885
+ headers?: Partial<{
8886
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8887
+ }>;
8888
+ } & {
8889
+ pathParameters: {
8890
+ serial: string;
8891
+ };
8892
+ } & {
8893
+ queryParameters: {
8894
+ purpose?: "webhook" | "session_token" | undefined;
8895
+ format?: "raw" | "spki" | undefined;
8896
+ } & Partial<{
8897
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8898
+ }>;
8899
+ }, import("@mittwald/api-client-commons").Response<{
8900
+ algorithm: string;
8901
+ key: string;
8902
+ serial: string;
8903
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8904
+ [x: string]: unknown;
8905
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8906
+ [x: string]: unknown;
8907
+ }, 429, "application/json">>>;
8908
+ /** Invalidate the given Extension secret immediately. */
8909
+ extensionInvalidateExtensionSecret: (request: {
8910
+ contributorId: string;
8911
+ extensionId: string;
8912
+ extensionSecretId: string;
8913
+ headers?: {
8914
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8915
+ "x-access-token"?: string | undefined;
8916
+ } | undefined;
8917
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8918
+ headers?: Partial<{
8919
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8920
+ }>;
8921
+ } & {
8922
+ pathParameters: {
8923
+ contributorId: string;
8924
+ extensionId: string;
8925
+ extensionSecretId: string;
8926
+ };
8927
+ } & {
8928
+ headers: {
8929
+ "x-access-token"?: string | undefined;
8930
+ } & Partial<{
8931
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8932
+ }>;
8933
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8589
8934
  [x: string]: unknown;
8590
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8935
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8591
8936
  [x: string]: unknown;
8592
8937
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8593
8938
  [x: string]: unknown;
@@ -8599,7 +8944,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8599
8944
  }>;
8600
8945
  } & {
8601
8946
  pathParameters: {
8602
- extensionInstanceId: string;
8947
+ contributorId: string;
8948
+ extensionId: string;
8949
+ extensionSecretId: string;
8603
8950
  };
8604
8951
  } & {
8605
8952
  headers: {
@@ -8607,32 +8954,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8607
8954
  } & Partial<{
8608
8955
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8609
8956
  }>;
8610
- }, import("@mittwald/api-client-commons").Response<{
8957
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8611
8958
  [x: string]: unknown;
8612
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8959
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8613
8960
  [x: string]: unknown;
8614
8961
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8615
8962
  [x: string]: unknown;
8616
8963
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8617
8964
  [x: string]: unknown;
8618
8965
  }, 429, "application/json">>>;
8619
- /** List ExtensionInstances. */
8620
- extensionListExtensionInstances: (request?: {
8966
+ /** List Contributors. */
8967
+ extensionListContributors: (request?: {
8621
8968
  headers?: {
8622
8969
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8623
- "x-access-token"?: string | undefined;
8624
8970
  } | undefined;
8625
8971
  queryParameters?: {
8626
8972
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8627
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8628
- contextId?: string | undefined;
8629
- extensionId?: string | undefined;
8630
- searchTerm?: string | undefined;
8631
8973
  limit?: number | undefined;
8632
8974
  skip?: number | undefined;
8633
8975
  page?: number | undefined;
8634
- sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
8635
- order?: ("asc" | "desc")[] | undefined;
8636
8976
  } | undefined;
8637
8977
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8638
8978
  headers?: Partial<{
@@ -8640,27 +8980,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8640
8980
  }>;
8641
8981
  } & {
8642
8982
  queryParameters: {
8643
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8644
- contextId?: string | undefined;
8645
- extensionId?: string | undefined;
8646
- searchTerm?: string | undefined;
8647
8983
  limit?: number | undefined;
8648
8984
  skip?: number | undefined;
8649
8985
  page?: number | undefined;
8650
- sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
8651
- order?: ("asc" | "desc")[] | undefined;
8652
- } & Partial<{
8653
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8654
- }>;
8655
- } & {
8656
- headers: {
8657
- "x-access-token"?: string | undefined;
8658
8986
  } & Partial<{
8659
8987
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8660
8988
  }>;
8661
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8662
- [x: string]: unknown;
8663
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8989
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8664
8990
  [x: string]: unknown;
8665
8991
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8666
8992
  headers?: Partial<{
@@ -8668,106 +8994,79 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8668
8994
  }>;
8669
8995
  } & {
8670
8996
  queryParameters: {
8671
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8672
- contextId?: string | undefined;
8673
- extensionId?: string | undefined;
8674
- searchTerm?: string | undefined;
8675
8997
  limit?: number | undefined;
8676
8998
  skip?: number | undefined;
8677
8999
  page?: number | undefined;
8678
- sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
8679
- order?: ("asc" | "desc")[] | undefined;
8680
- } & Partial<{
8681
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8682
- }>;
8683
- } & {
8684
- headers: {
8685
- "x-access-token"?: string | undefined;
8686
9000
  } & Partial<{
8687
9001
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8688
9002
  }>;
8689
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8690
- [x: string]: unknown;
8691
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9003
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8692
9004
  [x: string]: unknown;
8693
9005
  }, 429, "application/json">>>;
8694
- /** Create an ExtensionInstance. */
8695
- extensionCreateExtensionInstance: (request: {
8696
- data: {
8697
- consentedScopes: string[];
8698
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8699
- contextId: string;
8700
- extensionId: string;
8701
- };
9006
+ /** List Extensions. */
9007
+ extensionListExtensions: (request?: {
8702
9008
  headers?: {
8703
9009
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8704
- "x-access-token"?: string | undefined;
8705
9010
  } | undefined;
8706
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8707
- data: {
8708
- consentedScopes: string[];
8709
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8710
- contextId: string;
8711
- extensionId: string;
8712
- };
8713
- } & {
9011
+ queryParameters?: {
9012
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9013
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9014
+ searchTerm?: string | undefined;
9015
+ includeDeprecated?: boolean | undefined;
9016
+ limit?: number | undefined;
9017
+ skip?: number | undefined;
9018
+ page?: number | undefined;
9019
+ sort?: "name" | undefined;
9020
+ order?: "asc" | "desc" | undefined;
9021
+ } | undefined;
9022
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8714
9023
  headers?: Partial<{
8715
9024
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8716
9025
  }>;
8717
9026
  } & {
8718
- headers: {
8719
- "x-access-token"?: string | undefined;
9027
+ queryParameters: {
9028
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9029
+ searchTerm?: string | undefined;
9030
+ includeDeprecated?: boolean | undefined;
9031
+ limit?: number | undefined;
9032
+ skip?: number | undefined;
9033
+ page?: number | undefined;
9034
+ sort?: "name" | undefined;
9035
+ order?: "asc" | "desc" | undefined;
8720
9036
  } & Partial<{
8721
9037
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8722
9038
  }>;
8723
- }, import("@mittwald/api-client-commons").Response<{
8724
- id: string;
8725
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8726
- [x: string]: unknown;
8727
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8728
- message: string;
8729
- type: string;
8730
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
8731
- [x: string]: unknown;
8732
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8733
- [x: string]: unknown;
8734
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9039
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8735
9040
  [x: string]: unknown;
8736
9041
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8737
- data: {
8738
- consentedScopes: string[];
8739
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8740
- contextId: string;
8741
- extensionId: string;
8742
- };
8743
- } & {
8744
9042
  headers?: Partial<{
8745
9043
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8746
9044
  }>;
8747
9045
  } & {
8748
- headers: {
8749
- "x-access-token"?: string | undefined;
9046
+ queryParameters: {
9047
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9048
+ searchTerm?: string | undefined;
9049
+ includeDeprecated?: boolean | undefined;
9050
+ limit?: number | undefined;
9051
+ skip?: number | undefined;
9052
+ page?: number | undefined;
9053
+ sort?: "name" | undefined;
9054
+ order?: "asc" | "desc" | undefined;
8750
9055
  } & Partial<{
8751
9056
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8752
9057
  }>;
8753
- }, import("@mittwald/api-client-commons").Response<{
8754
- id: string;
8755
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8756
- [x: string]: unknown;
8757
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8758
- message: string;
8759
- type: string;
8760
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
8761
- [x: string]: unknown;
8762
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8763
- [x: string]: unknown;
8764
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9058
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8765
9059
  [x: string]: unknown;
8766
9060
  }, 429, "application/json">>>;
8767
- /** Start the verification process of an Extension. */
8768
- extensionRequestExtensionVerification: (request: {
9061
+ /** List Extensions of own contributor. */
9062
+ extensionListOwnExtensions: (request: {
8769
9063
  contributorId: string;
8770
- extensionId: string;
9064
+ queryParameters?: {
9065
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9066
+ limit?: number | undefined;
9067
+ skip?: number | undefined;
9068
+ page?: number | undefined;
9069
+ } | undefined;
8771
9070
  headers?: {
8772
9071
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8773
9072
  "x-access-token"?: string | undefined;
@@ -8779,17 +9078,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8779
9078
  } & {
8780
9079
  pathParameters: {
8781
9080
  contributorId: string;
8782
- extensionId: string;
8783
9081
  };
9082
+ } & {
9083
+ queryParameters: {
9084
+ limit?: number | undefined;
9085
+ skip?: number | undefined;
9086
+ page?: number | undefined;
9087
+ } & Partial<{
9088
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9089
+ }>;
8784
9090
  } & {
8785
9091
  headers: {
8786
9092
  "x-access-token"?: string | undefined;
8787
9093
  } & Partial<{
8788
9094
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8789
9095
  }>;
8790
- }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8791
- [x: string]: unknown;
8792
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9096
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8793
9097
  [x: string]: unknown;
8794
9098
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8795
9099
  headers?: Partial<{
@@ -8798,117 +9102,158 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8798
9102
  } & {
8799
9103
  pathParameters: {
8800
9104
  contributorId: string;
8801
- extensionId: string;
8802
9105
  };
9106
+ } & {
9107
+ queryParameters: {
9108
+ limit?: number | undefined;
9109
+ skip?: number | undefined;
9110
+ page?: number | undefined;
9111
+ } & Partial<{
9112
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9113
+ }>;
8803
9114
  } & {
8804
9115
  headers: {
8805
9116
  "x-access-token"?: string | undefined;
8806
9117
  } & Partial<{
8807
9118
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8808
9119
  }>;
8809
- }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
8810
- [x: string]: unknown;
8811
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9120
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8812
9121
  [x: string]: unknown;
8813
9122
  }, 429, "application/json">>>;
8814
- /** Invalidate the given Extension secret immediately. */
8815
- extensionInvalidateExtensionSecret: (request: {
9123
+ /** Register an Extension. */
9124
+ extensionRegisterExtension: (request: {
9125
+ data: {
9126
+ name: string;
9127
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9128
+ description?: string | undefined;
9129
+ detailedDescriptions?: {
9130
+ de: {
9131
+ markdown: string;
9132
+ plain?: string | undefined;
9133
+ };
9134
+ en?: {
9135
+ markdown: string;
9136
+ plain?: string | undefined;
9137
+ } | undefined;
9138
+ } | undefined;
9139
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9140
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9141
+ frontendFragments?: {
9142
+ [x: string]: {
9143
+ url: string;
9144
+ additionalProperties?: {
9145
+ [x: string]: string;
9146
+ } | undefined;
9147
+ };
9148
+ } | undefined;
9149
+ scopes?: string[] | undefined;
9150
+ subTitle?: {
9151
+ de: string;
9152
+ en?: string | undefined;
9153
+ } | undefined;
9154
+ support?: {
9155
+ email: string;
9156
+ phone?: string | undefined;
9157
+ } | undefined;
9158
+ tags?: string[] | undefined;
9159
+ webhookURLs?: {
9160
+ extensionAddedToContext: {
9161
+ url: string;
9162
+ };
9163
+ extensionInstanceRemovedFromContext: {
9164
+ url: string;
9165
+ };
9166
+ extensionInstanceSecretRotated: {
9167
+ url: string;
9168
+ };
9169
+ extensionInstanceUpdated: {
9170
+ url: string;
9171
+ };
9172
+ } | undefined;
9173
+ webhookUrls?: {
9174
+ extensionAddedToContext: {
9175
+ url: string;
9176
+ };
9177
+ extensionInstanceRemovedFromContext: {
9178
+ url: string;
9179
+ };
9180
+ extensionInstanceSecretRotated: {
9181
+ url: string;
9182
+ };
9183
+ extensionInstanceUpdated: {
9184
+ url: string;
9185
+ };
9186
+ } | undefined;
9187
+ };
8816
9188
  contributorId: string;
8817
- extensionId: string;
8818
- extensionSecretId: string;
8819
9189
  headers?: {
8820
9190
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8821
9191
  "x-access-token"?: string | undefined;
8822
9192
  } | undefined;
8823
9193
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8824
- headers?: Partial<{
8825
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8826
- }>;
9194
+ data: {
9195
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9196
+ description?: string | undefined;
9197
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9198
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9199
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9200
+ frontendFragments?: {
9201
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9202
+ } | undefined;
9203
+ name: string;
9204
+ scopes?: string[] | undefined;
9205
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9206
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9207
+ tags?: string[] | undefined;
9208
+ webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
9209
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9210
+ };
8827
9211
  } & {
8828
9212
  pathParameters: {
8829
9213
  contributorId: string;
8830
- extensionId: string;
8831
- extensionSecretId: string;
8832
9214
  };
8833
9215
  } & {
8834
- headers: {
8835
- "x-access-token"?: string | undefined;
8836
- } & Partial<{
8837
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8838
- }>;
8839
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8840
- [x: string]: unknown;
8841
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8842
- [x: string]: unknown;
8843
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8844
- [x: string]: unknown;
8845
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8846
- [x: string]: unknown;
8847
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8848
9216
  headers?: Partial<{
8849
9217
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8850
9218
  }>;
8851
- } & {
8852
- pathParameters: {
8853
- contributorId: string;
8854
- extensionId: string;
8855
- extensionSecretId: string;
8856
- };
8857
9219
  } & {
8858
9220
  headers: {
8859
9221
  "x-access-token"?: string | undefined;
8860
9222
  } & Partial<{
8861
9223
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8862
9224
  }>;
8863
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9225
+ }, import("@mittwald/api-client-commons").Response<{
9226
+ id: string;
9227
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8864
9228
  [x: string]: unknown;
8865
9229
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8866
9230
  [x: string]: unknown;
8867
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8868
- [x: string]: unknown;
8869
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
8870
- [x: string]: unknown;
8871
- }, 429, "application/json">>>;
8872
- /** Generate a session token to transmit it to the extensions frontend fragment. */
8873
- extensionGenerateSessionToken: (request: {
8874
- extensionInstanceId: string;
8875
- sessionId: string;
8876
- headers?: {
8877
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8878
- "x-access-token"?: string | undefined;
8879
- } | undefined;
8880
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8881
- headers?: Partial<{
8882
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8883
- }>;
9231
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9232
+ data: {
9233
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9234
+ description?: string | undefined;
9235
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9236
+ externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9237
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9238
+ frontendFragments?: {
9239
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9240
+ } | undefined;
9241
+ name: string;
9242
+ scopes?: string[] | undefined;
9243
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9244
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9245
+ tags?: string[] | undefined;
9246
+ webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
9247
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9248
+ };
8884
9249
  } & {
8885
9250
  pathParameters: {
8886
- extensionInstanceId: string;
8887
- sessionId: string;
9251
+ contributorId: string;
8888
9252
  };
8889
9253
  } & {
8890
- headers: {
8891
- "x-access-token"?: string | undefined;
8892
- } & Partial<{
8893
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8894
- }>;
8895
- }, import("@mittwald/api-client-commons").Response<{
8896
- sessionToken: string;
8897
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8898
- [x: string]: unknown;
8899
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8900
- [x: string]: unknown;
8901
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8902
- [x: string]: unknown;
8903
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8904
9254
  headers?: Partial<{
8905
9255
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8906
9256
  }>;
8907
- } & {
8908
- pathParameters: {
8909
- extensionInstanceId: string;
8910
- sessionId: string;
8911
- };
8912
9257
  } & {
8913
9258
  headers: {
8914
9259
  "x-access-token"?: string | undefined;
@@ -8916,158 +9261,70 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8916
9261
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8917
9262
  }>;
8918
9263
  }, import("@mittwald/api-client-commons").Response<{
8919
- sessionToken: string;
8920
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9264
+ id: string;
9265
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
8921
9266
  [x: string]: unknown;
8922
9267
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8923
9268
  [x: string]: unknown;
8924
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8925
- [x: string]: unknown;
8926
9269
  }, 429, "application/json">>>;
8927
- /** Get Extension of own contributor. */
8928
- extensionGetOwnExtension: (request: {
8929
- contributorId: string;
8930
- extensionId: string;
9270
+ /** List Scopes. */
9271
+ extensionListScopes: (request?: {
8931
9272
  headers?: {
8932
9273
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8933
- "x-access-token"?: string | undefined;
8934
9274
  } | undefined;
8935
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9275
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8936
9276
  headers?: Partial<{
8937
9277
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8938
9278
  }>;
8939
- } & {
8940
- pathParameters: {
8941
- contributorId: string;
8942
- extensionId: string;
8943
- };
8944
- } & {
8945
- headers: {
8946
- "x-access-token"?: string | undefined;
8947
- } & Partial<{
8948
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8949
- }>;
8950
9279
  }, import("@mittwald/api-client-commons").Response<{
8951
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
8952
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
8953
- blocked?: boolean | undefined;
8954
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
8955
- contributorId: string;
8956
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
8957
- description?: string | undefined;
8958
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
8959
- disabled?: boolean | undefined;
8960
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8961
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
8962
- frontendFragments?: {
8963
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
8964
- } | undefined;
8965
- functional: boolean;
8966
- id: string;
8967
- logoRefId?: string | undefined;
8968
9280
  name: string;
8969
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
8970
- published: boolean;
8971
- requestedChanges?: {
8972
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
8973
- scopes?: string[];
8974
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
8975
- } | undefined;
8976
- scopes?: string[] | undefined;
8977
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
8978
- state?: "enabled" | "blocked" | "disabled" | undefined;
8979
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
8980
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
8981
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
8982
- inherited: boolean;
8983
- }) | undefined;
8984
- tags?: string[] | undefined;
8985
- verificationRequested: boolean;
8986
- verified: boolean;
8987
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
8988
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8989
- [x: string]: unknown;
8990
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9281
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8991
9282
  [x: string]: unknown;
8992
9283
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8993
9284
  headers?: Partial<{
8994
9285
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8995
9286
  }>;
8996
- } & {
8997
- pathParameters: {
8998
- contributorId: string;
8999
- extensionId: string;
9000
- };
9001
- } & {
9002
- headers: {
9003
- "x-access-token"?: string | undefined;
9004
- } & Partial<{
9005
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9006
- }>;
9007
9287
  }, import("@mittwald/api-client-commons").Response<{
9008
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
9009
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
9010
- blocked?: boolean | undefined;
9011
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9012
- contributorId: string;
9013
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9014
- description?: string | undefined;
9015
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9016
- disabled?: boolean | undefined;
9017
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9018
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9019
- frontendFragments?: {
9020
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9021
- } | undefined;
9022
- functional: boolean;
9023
- id: string;
9024
- logoRefId?: string | undefined;
9025
9288
  name: string;
9026
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
9027
- published: boolean;
9028
- requestedChanges?: {
9029
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9030
- scopes?: string[];
9031
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
9032
- } | undefined;
9033
- scopes?: string[] | undefined;
9034
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
9035
- state?: "enabled" | "blocked" | "disabled" | undefined;
9036
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
9037
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9038
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
9039
- inherited: boolean;
9040
- }) | undefined;
9041
- tags?: string[] | undefined;
9042
- verificationRequested: boolean;
9043
- verified: boolean;
9044
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9045
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9046
- [x: string]: unknown;
9047
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9289
+ }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9048
9290
  [x: string]: unknown;
9049
9291
  }, 429, "application/json">>>;
9050
- /** Delete an extension. */
9051
- extensionDeleteExtension: (request: {
9052
- contributorId: string;
9292
+ /** Order Extension with saved payment method */
9293
+ extensionOrderExtension: (request: {
9294
+ data: {
9295
+ consentedScopes: string[];
9296
+ customerId: string;
9297
+ };
9053
9298
  extensionId: string;
9054
- data?: {
9055
- reason?: string | undefined;
9299
+ headers?: {
9300
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9301
+ "x-access-token"?: string | undefined;
9056
9302
  } | undefined;
9303
+ } | {
9304
+ data: {
9305
+ consentedScopes: string[];
9306
+ projectId: string;
9307
+ };
9308
+ extensionId: string;
9057
9309
  headers?: {
9058
9310
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9059
9311
  "x-access-token"?: string | undefined;
9060
9312
  } | undefined;
9061
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9313
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
9062
9314
  data: {
9063
- reason?: string | undefined;
9315
+ consentedScopes: string[];
9316
+ customerId: string;
9064
9317
  };
9065
- } & {
9318
+ } | {
9319
+ data: {
9320
+ consentedScopes: string[];
9321
+ projectId: string;
9322
+ };
9323
+ }) & {
9066
9324
  pathParameters: {
9067
- contributorId: string;
9068
9325
  extensionId: string;
9069
9326
  };
9070
- } & {
9327
+ }) & {
9071
9328
  headers?: Partial<{
9072
9329
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9073
9330
  }>;
@@ -9077,20 +9334,29 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9077
9334
  } & Partial<{
9078
9335
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9079
9336
  }>;
9080
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9337
+ }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9338
+ [x: string]: unknown;
9339
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9081
9340
  [x: string]: unknown;
9082
9341
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9083
9342
  [x: string]: unknown;
9084
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9343
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9344
+ [x: string]: unknown;
9345
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
9346
+ data: {
9347
+ consentedScopes: string[];
9348
+ customerId: string;
9349
+ };
9350
+ } | {
9085
9351
  data: {
9086
- reason?: string | undefined;
9352
+ consentedScopes: string[];
9353
+ projectId: string;
9087
9354
  };
9088
- } & {
9355
+ }) & {
9089
9356
  pathParameters: {
9090
- contributorId: string;
9091
9357
  extensionId: string;
9092
9358
  };
9093
- } & {
9359
+ }) & {
9094
9360
  headers?: Partial<{
9095
9361
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9096
9362
  }>;
@@ -9100,289 +9366,160 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9100
9366
  } & Partial<{
9101
9367
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9102
9368
  }>;
9103
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9369
+ }, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9370
+ [x: string]: unknown;
9371
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9104
9372
  [x: string]: unknown;
9105
9373
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9106
9374
  [x: string]: unknown;
9375
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9376
+ [x: string]: unknown;
9107
9377
  }, 429, "application/json">>>;
9108
- /** Patch Extension. */
9109
- extensionPatchExtension: (request: {
9378
+ /** Remove an asset of an extension. */
9379
+ extensionRemoveAsset: (request: {
9110
9380
  contributorId: string;
9111
9381
  extensionId: string;
9112
- data?: {
9113
- assets?: string[] | undefined;
9114
- deprecation?: {
9115
- deprecatedAt: string;
9116
- note?: string | undefined;
9117
- successorId?: string | undefined;
9118
- } | undefined;
9119
- description?: string | undefined;
9120
- detailedDescriptions?: {
9121
- de: {
9122
- markdown: string;
9123
- plain?: string | undefined;
9124
- };
9125
- en?: {
9126
- markdown: string;
9127
- plain?: string | undefined;
9128
- } | undefined;
9129
- } | undefined;
9130
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9131
- frontendFragments?: {
9132
- [x: string]: {
9133
- url: string;
9134
- additionalProperties?: {
9135
- [x: string]: string;
9136
- } | undefined;
9137
- };
9138
- } | undefined;
9139
- name?: string | undefined;
9140
- scopes?: string[] | undefined;
9141
- subTitle?: {
9142
- de: string;
9143
- en?: string | undefined;
9144
- } | undefined;
9145
- support?: {
9146
- email: string;
9147
- phone?: string | undefined;
9148
- } | undefined;
9149
- tags?: string[] | undefined;
9150
- webhookUrls?: {
9151
- extensionAddedToContext: {
9152
- url: string;
9153
- };
9154
- extensionInstanceRemovedFromContext: {
9155
- url: string;
9156
- };
9157
- extensionInstanceSecretRotated: {
9158
- url: string;
9159
- };
9160
- extensionInstanceUpdated: {
9161
- url: string;
9162
- };
9163
- } | undefined;
9164
- } | undefined;
9382
+ assetRefId: string;
9165
9383
  headers?: {
9166
9384
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9167
9385
  "x-access-token"?: string | undefined;
9168
9386
  } | undefined;
9169
9387
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9170
- data: {
9171
- assets?: string[] | undefined;
9172
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9173
- description?: string | undefined;
9174
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9175
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9176
- frontendFragments?: {
9177
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9178
- } | undefined;
9179
- name?: string | undefined;
9180
- scopes?: string[] | undefined;
9181
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9182
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9183
- tags?: string[] | undefined;
9184
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9185
- };
9388
+ headers?: Partial<{
9389
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9390
+ }>;
9186
9391
  } & {
9187
9392
  pathParameters: {
9188
9393
  contributorId: string;
9189
9394
  extensionId: string;
9395
+ assetRefId: string;
9190
9396
  };
9191
- } & {
9192
- headers?: Partial<{
9193
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9194
- }>;
9195
9397
  } & {
9196
9398
  headers: {
9197
9399
  "x-access-token"?: string | undefined;
9198
9400
  } & Partial<{
9199
9401
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9200
9402
  }>;
9201
- }, import("@mittwald/api-client-commons").Response<{
9202
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
9203
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
9204
- blocked?: boolean | undefined;
9205
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9206
- contributorId: string;
9207
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9208
- description?: string | undefined;
9209
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9210
- disabled?: boolean | undefined;
9211
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9212
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9213
- frontendFragments?: {
9214
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9215
- } | undefined;
9216
- functional: boolean;
9217
- id: string;
9218
- logoRefId?: string | undefined;
9219
- name: string;
9220
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
9221
- published: boolean;
9222
- requestedChanges?: {
9223
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9224
- scopes?: string[];
9225
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
9226
- } | undefined;
9227
- scopes?: string[] | undefined;
9228
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
9229
- state?: "enabled" | "blocked" | "disabled" | undefined;
9230
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
9231
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9232
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
9233
- inherited: boolean;
9234
- }) | undefined;
9235
- tags?: string[] | undefined;
9236
- verificationRequested: boolean;
9237
- verified: boolean;
9238
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9239
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9240
- [x: string]: unknown;
9241
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9403
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9242
9404
  [x: string]: unknown;
9243
9405
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9244
9406
  [x: string]: unknown;
9245
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
9246
- [x: string]: unknown;
9247
9407
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9248
- data: {
9249
- assets?: string[] | undefined;
9250
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9251
- description?: string | undefined;
9252
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9253
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9254
- frontendFragments?: {
9255
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9256
- } | undefined;
9257
- name?: string | undefined;
9258
- scopes?: string[] | undefined;
9259
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9260
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9261
- tags?: string[] | undefined;
9262
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9263
- };
9408
+ headers?: Partial<{
9409
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9410
+ }>;
9264
9411
  } & {
9265
9412
  pathParameters: {
9266
9413
  contributorId: string;
9267
9414
  extensionId: string;
9415
+ assetRefId: string;
9268
9416
  };
9269
- } & {
9270
- headers?: Partial<{
9271
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9272
- }>;
9273
9417
  } & {
9274
9418
  headers: {
9275
9419
  "x-access-token"?: string | undefined;
9276
9420
  } & Partial<{
9277
9421
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9278
9422
  }>;
9279
- }, import("@mittwald/api-client-commons").Response<{
9280
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
9281
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
9282
- blocked?: boolean | undefined;
9283
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9284
- contributorId: string;
9285
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
9286
- description?: string | undefined;
9287
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9288
- disabled?: boolean | undefined;
9289
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9290
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9291
- frontendFragments?: {
9292
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9293
- } | undefined;
9294
- functional: boolean;
9295
- id: string;
9296
- logoRefId?: string | undefined;
9297
- name: string;
9298
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
9299
- published: boolean;
9300
- requestedChanges?: {
9301
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9302
- scopes?: string[];
9303
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
9304
- } | undefined;
9305
- scopes?: string[] | undefined;
9306
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
9307
- state?: "enabled" | "blocked" | "disabled" | undefined;
9308
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
9309
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9310
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
9311
- inherited: boolean;
9312
- }) | undefined;
9313
- tags?: string[] | undefined;
9314
- verificationRequested: boolean;
9315
- verified: boolean;
9316
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9317
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9318
- [x: string]: unknown;
9319
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9423
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9320
9424
  [x: string]: unknown;
9321
9425
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9322
9426
  [x: string]: unknown;
9323
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
9324
- [x: string]: unknown;
9325
9427
  }, 429, "application/json">>>;
9326
- /** Consent to extension scopes. */
9327
- extensionConsentToExtensionScopes: (request: {
9328
- data: {
9329
- consentedScopes: string[];
9330
- };
9331
- extensionInstanceId: string;
9428
+ /** Add a logo to an extension. */
9429
+ extensionRequestLogoUpload: (request: {
9430
+ contributorId: string;
9431
+ extensionId: string;
9332
9432
  headers?: {
9333
9433
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9334
9434
  "x-access-token"?: string | undefined;
9335
9435
  } | undefined;
9336
9436
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9337
- data: {
9338
- consentedScopes: string[];
9339
- };
9340
- } & {
9341
- pathParameters: {
9342
- extensionInstanceId: string;
9343
- };
9344
- } & {
9345
9437
  headers?: Partial<{
9346
9438
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9347
9439
  }>;
9440
+ } & {
9441
+ pathParameters: {
9442
+ contributorId: string;
9443
+ extensionId: string;
9444
+ };
9348
9445
  } & {
9349
9446
  headers: {
9350
9447
  "x-access-token"?: string | undefined;
9351
9448
  } & Partial<{
9352
9449
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9353
9450
  }>;
9354
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9451
+ }, import("@mittwald/api-client-commons").Response<{
9452
+ logoRefId: string;
9453
+ rules: {
9454
+ extensions: string[];
9455
+ fileTypes: {
9456
+ extensions: string[];
9457
+ mimeType: string;
9458
+ }[];
9459
+ maxSizeInBytes: number;
9460
+ mimeTypes: string[];
9461
+ properties?: {
9462
+ imageDimensions?: {
9463
+ max: {
9464
+ height?: number;
9465
+ width?: number;
9466
+ };
9467
+ min: {
9468
+ height?: number;
9469
+ width?: number;
9470
+ };
9471
+ };
9472
+ };
9473
+ };
9474
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9355
9475
  [x: string]: unknown;
9356
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9476
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9357
9477
  [x: string]: unknown;
9358
9478
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9359
- data: {
9360
- consentedScopes: string[];
9361
- };
9362
- } & {
9363
- pathParameters: {
9364
- extensionInstanceId: string;
9365
- };
9366
- } & {
9367
9479
  headers?: Partial<{
9368
9480
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9369
9481
  }>;
9482
+ } & {
9483
+ pathParameters: {
9484
+ contributorId: string;
9485
+ extensionId: string;
9486
+ };
9370
9487
  } & {
9371
9488
  headers: {
9372
9489
  "x-access-token"?: string | undefined;
9373
9490
  } & Partial<{
9374
9491
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9375
9492
  }>;
9376
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9493
+ }, import("@mittwald/api-client-commons").Response<{
9494
+ logoRefId: string;
9495
+ rules: {
9496
+ extensions: string[];
9497
+ fileTypes: {
9498
+ extensions: string[];
9499
+ mimeType: string;
9500
+ }[];
9501
+ maxSizeInBytes: number;
9502
+ mimeTypes: string[];
9503
+ properties?: {
9504
+ imageDimensions?: {
9505
+ max: {
9506
+ height?: number;
9507
+ width?: number;
9508
+ };
9509
+ min: {
9510
+ height?: number;
9511
+ width?: number;
9512
+ };
9513
+ };
9514
+ };
9515
+ };
9516
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9377
9517
  [x: string]: unknown;
9378
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9518
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9379
9519
  [x: string]: unknown;
9380
9520
  }, 429, "application/json">>>;
9381
- /** Change the context of an Extension. */
9382
- extensionChangeContext: (request: {
9383
- data: {
9384
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9385
- };
9521
+ /** Remove the logo of an extension. */
9522
+ extensionRemoveLogo: (request: {
9386
9523
  contributorId: string;
9387
9524
  extensionId: string;
9388
9525
  headers?: {
@@ -9390,65 +9527,48 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9390
9527
  "x-access-token"?: string | undefined;
9391
9528
  } | undefined;
9392
9529
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9393
- data: {
9394
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9395
- };
9530
+ headers?: Partial<{
9531
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9532
+ }>;
9396
9533
  } & {
9397
9534
  pathParameters: {
9398
9535
  contributorId: string;
9399
9536
  extensionId: string;
9400
9537
  };
9401
- } & {
9402
- headers?: Partial<{
9403
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9404
- }>;
9405
9538
  } & {
9406
9539
  headers: {
9407
9540
  "x-access-token"?: string | undefined;
9408
9541
  } & Partial<{
9409
9542
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9410
9543
  }>;
9411
- }, import("@mittwald/api-client-commons").Response<{
9412
- cleaningUpInstances: boolean;
9413
- currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9414
- id: string;
9415
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9544
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9416
9545
  [x: string]: unknown;
9417
9546
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9418
9547
  [x: string]: unknown;
9419
9548
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9420
- data: {
9421
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9422
- };
9549
+ headers?: Partial<{
9550
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9551
+ }>;
9423
9552
  } & {
9424
9553
  pathParameters: {
9425
9554
  contributorId: string;
9426
9555
  extensionId: string;
9427
9556
  };
9428
- } & {
9429
- headers?: Partial<{
9430
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9431
- }>;
9432
9557
  } & {
9433
9558
  headers: {
9434
9559
  "x-access-token"?: string | undefined;
9435
9560
  } & Partial<{
9436
9561
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9437
9562
  }>;
9438
- }, import("@mittwald/api-client-commons").Response<{
9439
- cleaningUpInstances: boolean;
9440
- currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
9441
- id: string;
9442
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9563
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
9443
9564
  [x: string]: unknown;
9444
9565
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9445
9566
  [x: string]: unknown;
9446
9567
  }, 429, "application/json">>>;
9447
- /** Publish or withdraw an Extension. */
9448
- extensionSetExtensionPublishedState: (request: {
9568
+ /** Add an asset to an extension. */
9569
+ extensionRequestAssetUpload: (request: {
9449
9570
  data: {
9450
- published: boolean;
9451
- reason?: string | undefined;
9571
+ assetType: "image" | "video";
9452
9572
  };
9453
9573
  contributorId: string;
9454
9574
  extensionId: string;
@@ -9458,8 +9578,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9458
9578
  } | undefined;
9459
9579
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9460
9580
  data: {
9461
- published: boolean;
9462
- reason?: string | undefined;
9581
+ assetType: "image" | "video";
9463
9582
  };
9464
9583
  } & {
9465
9584
  pathParameters: {
@@ -9477,16 +9596,39 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9477
9596
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9478
9597
  }>;
9479
9598
  }, import("@mittwald/api-client-commons").Response<{
9480
- id: string;
9481
- published: boolean;
9599
+ assetRefId: string;
9600
+ rules: {
9601
+ extensions: string[];
9602
+ fileTypes: {
9603
+ extensions: string[];
9604
+ mimeType: string;
9605
+ }[];
9606
+ maxSizeInBytes: number;
9607
+ mimeTypes: string[];
9608
+ properties?: {
9609
+ imageDimensions?: {
9610
+ max: {
9611
+ height?: number;
9612
+ width?: number;
9613
+ };
9614
+ min: {
9615
+ height?: number;
9616
+ width?: number;
9617
+ };
9618
+ };
9619
+ };
9620
+ };
9482
9621
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9483
9622
  [x: string]: unknown;
9623
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9624
+ [x: string]: unknown;
9484
9625
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9485
9626
  [x: string]: unknown;
9627
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9628
+ [x: string]: unknown;
9486
9629
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9487
9630
  data: {
9488
- published: boolean;
9489
- reason?: string | undefined;
9631
+ assetType: "image" | "video";
9490
9632
  };
9491
9633
  } & {
9492
9634
  pathParameters: {
@@ -9504,22 +9646,41 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9504
9646
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9505
9647
  }>;
9506
9648
  }, import("@mittwald/api-client-commons").Response<{
9507
- id: string;
9508
- published: boolean;
9649
+ assetRefId: string;
9650
+ rules: {
9651
+ extensions: string[];
9652
+ fileTypes: {
9653
+ extensions: string[];
9654
+ mimeType: string;
9655
+ }[];
9656
+ maxSizeInBytes: number;
9657
+ mimeTypes: string[];
9658
+ properties?: {
9659
+ imageDimensions?: {
9660
+ max: {
9661
+ height?: number;
9662
+ width?: number;
9663
+ };
9664
+ min: {
9665
+ height?: number;
9666
+ width?: number;
9667
+ };
9668
+ };
9669
+ };
9670
+ };
9509
9671
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9510
9672
  [x: string]: unknown;
9673
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9674
+ [x: string]: unknown;
9511
9675
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9512
9676
  [x: string]: unknown;
9677
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9678
+ [x: string]: unknown;
9513
9679
  }, 429, "application/json">>>;
9514
- /** List Extensions of own contributor. */
9515
- extensionListOwnExtensions: (request: {
9680
+ /** Start the verification process of an Extension. */
9681
+ extensionRequestExtensionVerification: (request: {
9516
9682
  contributorId: string;
9517
- queryParameters?: {
9518
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9519
- limit?: number | undefined;
9520
- skip?: number | undefined;
9521
- page?: number | undefined;
9522
- } | undefined;
9683
+ extensionId: string;
9523
9684
  headers?: {
9524
9685
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9525
9686
  "x-access-token"?: string | undefined;
@@ -9531,22 +9692,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9531
9692
  } & {
9532
9693
  pathParameters: {
9533
9694
  contributorId: string;
9695
+ extensionId: string;
9534
9696
  };
9535
- } & {
9536
- queryParameters: {
9537
- limit?: number | undefined;
9538
- skip?: number | undefined;
9539
- page?: number | undefined;
9540
- } & Partial<{
9541
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9542
- }>;
9543
9697
  } & {
9544
9698
  headers: {
9545
9699
  "x-access-token"?: string | undefined;
9546
9700
  } & Partial<{
9547
9701
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9548
9702
  }>;
9549
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9703
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
9704
+ [x: string]: unknown;
9705
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9550
9706
  [x: string]: unknown;
9551
9707
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9552
9708
  headers?: Partial<{
@@ -9555,115 +9711,40 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9555
9711
  } & {
9556
9712
  pathParameters: {
9557
9713
  contributorId: string;
9714
+ extensionId: string;
9558
9715
  };
9559
- } & {
9560
- queryParameters: {
9561
- limit?: number | undefined;
9562
- skip?: number | undefined;
9563
- page?: number | undefined;
9564
- } & Partial<{
9565
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9566
- }>;
9567
9716
  } & {
9568
9717
  headers: {
9569
- "x-access-token"?: string | undefined;
9570
- } & Partial<{
9571
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9572
- }>;
9573
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9574
- [x: string]: unknown;
9575
- }, 429, "application/json">>>;
9576
- /** Register an Extension. */
9577
- extensionRegisterExtension: (request: {
9578
- data: {
9579
- name: string;
9580
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9581
- description?: string | undefined;
9582
- detailedDescriptions?: {
9583
- de: {
9584
- markdown: string;
9585
- plain?: string | undefined;
9586
- };
9587
- en?: {
9588
- markdown: string;
9589
- plain?: string | undefined;
9590
- } | undefined;
9591
- } | undefined;
9592
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9593
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9594
- frontendFragments?: {
9595
- [x: string]: {
9596
- url: string;
9597
- additionalProperties?: {
9598
- [x: string]: string;
9599
- } | undefined;
9600
- };
9601
- } | undefined;
9602
- scopes?: string[] | undefined;
9603
- subTitle?: {
9604
- de: string;
9605
- en?: string | undefined;
9606
- } | undefined;
9607
- support?: {
9608
- email: string;
9609
- phone?: string | undefined;
9610
- } | undefined;
9611
- tags?: string[] | undefined;
9612
- webhookURLs?: {
9613
- extensionAddedToContext: {
9614
- url: string;
9615
- };
9616
- extensionInstanceRemovedFromContext: {
9617
- url: string;
9618
- };
9619
- extensionInstanceSecretRotated: {
9620
- url: string;
9621
- };
9622
- extensionInstanceUpdated: {
9623
- url: string;
9624
- };
9625
- } | undefined;
9626
- webhookUrls?: {
9627
- extensionAddedToContext: {
9628
- url: string;
9629
- };
9630
- extensionInstanceRemovedFromContext: {
9631
- url: string;
9632
- };
9633
- extensionInstanceSecretRotated: {
9634
- url: string;
9635
- };
9636
- extensionInstanceUpdated: {
9637
- url: string;
9638
- };
9639
- } | undefined;
9718
+ "x-access-token"?: string | undefined;
9719
+ } & Partial<{
9720
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9721
+ }>;
9722
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
9723
+ [x: string]: unknown;
9724
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9725
+ [x: string]: unknown;
9726
+ }, 429, "application/json">>>;
9727
+ /** Publish or withdraw an Extension. */
9728
+ extensionSetExtensionPublishedState: (request: {
9729
+ data: {
9730
+ published: boolean;
9731
+ reason?: string | undefined;
9640
9732
  };
9641
9733
  contributorId: string;
9734
+ extensionId: string;
9642
9735
  headers?: {
9643
9736
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9644
9737
  "x-access-token"?: string | undefined;
9645
9738
  } | undefined;
9646
9739
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9647
9740
  data: {
9648
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9649
- description?: string | undefined;
9650
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9651
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9652
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9653
- frontendFragments?: {
9654
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9655
- } | undefined;
9656
- name: string;
9657
- scopes?: string[] | undefined;
9658
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9659
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9660
- tags?: string[] | undefined;
9661
- webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
9662
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9741
+ published: boolean;
9742
+ reason?: string | undefined;
9663
9743
  };
9664
9744
  } & {
9665
9745
  pathParameters: {
9666
9746
  contributorId: string;
9747
+ extensionId: string;
9667
9748
  };
9668
9749
  } & {
9669
9750
  headers?: Partial<{
@@ -9677,31 +9758,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9677
9758
  }>;
9678
9759
  }, import("@mittwald/api-client-commons").Response<{
9679
9760
  id: string;
9680
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9761
+ published: boolean;
9762
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9681
9763
  [x: string]: unknown;
9682
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9764
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9683
9765
  [x: string]: unknown;
9684
9766
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9685
9767
  data: {
9686
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9687
- description?: string | undefined;
9688
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
9689
- externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9690
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
9691
- frontendFragments?: {
9692
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9693
- } | undefined;
9694
- name: string;
9695
- scopes?: string[] | undefined;
9696
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
9697
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9698
- tags?: string[] | undefined;
9699
- webhookURLs?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls & {}) | undefined;
9700
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
9768
+ published: boolean;
9769
+ reason?: string | undefined;
9701
9770
  };
9702
9771
  } & {
9703
9772
  pathParameters: {
9704
9773
  contributorId: string;
9774
+ extensionId: string;
9705
9775
  };
9706
9776
  } & {
9707
9777
  headers?: Partial<{
@@ -9715,30 +9785,31 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9715
9785
  }>;
9716
9786
  }, import("@mittwald/api-client-commons").Response<{
9717
9787
  id: string;
9718
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9788
+ published: boolean;
9789
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9719
9790
  [x: string]: unknown;
9720
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9791
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9721
9792
  [x: string]: unknown;
9722
9793
  }, 429, "application/json">>>;
9723
- /** Add an asset to an extension. */
9724
- extensionRequestAssetUpload: (request: {
9725
- data: {
9726
- assetType: "image" | "video";
9727
- };
9728
- contributorId: string;
9794
+ /** Creates or Updates Pricing for an Extension. */
9795
+ extensionUpdateExtensionPricing: (request: {
9729
9796
  extensionId: string;
9797
+ contributorId: string;
9798
+ data?: {
9799
+ priceInCents?: number | undefined;
9800
+ } | undefined;
9730
9801
  headers?: {
9731
9802
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9732
9803
  "x-access-token"?: string | undefined;
9733
9804
  } | undefined;
9734
9805
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9735
9806
  data: {
9736
- assetType: "image" | "video";
9807
+ priceInCents?: number | undefined;
9737
9808
  };
9738
9809
  } & {
9739
9810
  pathParameters: {
9740
- contributorId: string;
9741
9811
  extensionId: string;
9812
+ contributorId: string;
9742
9813
  };
9743
9814
  } & {
9744
9815
  headers?: Partial<{
@@ -9751,28 +9822,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9751
9822
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9752
9823
  }>;
9753
9824
  }, import("@mittwald/api-client-commons").Response<{
9754
- assetRefId: string;
9755
- rules: {
9756
- extensions: string[];
9757
- fileTypes: {
9758
- extensions: string[];
9759
- mimeType: string;
9760
- }[];
9761
- maxSizeInBytes: number;
9762
- mimeTypes: string[];
9763
- properties?: {
9764
- imageDimensions?: {
9765
- max: {
9766
- height?: number;
9767
- width?: number;
9768
- };
9769
- min: {
9770
- height?: number;
9771
- width?: number;
9772
- };
9773
- };
9774
- };
9775
- };
9825
+ extensionId?: string | undefined;
9776
9826
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9777
9827
  [x: string]: unknown;
9778
9828
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9783,12 +9833,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9783
9833
  [x: string]: unknown;
9784
9834
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9785
9835
  data: {
9786
- assetType: "image" | "video";
9836
+ priceInCents?: number | undefined;
9787
9837
  };
9788
9838
  } & {
9789
9839
  pathParameters: {
9790
- contributorId: string;
9791
9840
  extensionId: string;
9841
+ contributorId: string;
9792
9842
  };
9793
9843
  } & {
9794
9844
  headers?: Partial<{
@@ -9801,28 +9851,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9801
9851
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9802
9852
  }>;
9803
9853
  }, import("@mittwald/api-client-commons").Response<{
9804
- assetRefId: string;
9805
- rules: {
9806
- extensions: string[];
9807
- fileTypes: {
9808
- extensions: string[];
9809
- mimeType: string;
9810
- }[];
9811
- maxSizeInBytes: number;
9812
- mimeTypes: string[];
9813
- properties?: {
9814
- imageDimensions?: {
9815
- max: {
9816
- height?: number;
9817
- width?: number;
9818
- };
9819
- min: {
9820
- height?: number;
9821
- width?: number;
9822
- };
9823
- };
9824
- };
9825
- };
9854
+ extensionId?: string | undefined;
9826
9855
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9827
9856
  [x: string]: unknown;
9828
9857
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9832,94 +9861,69 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9832
9861
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9833
9862
  [x: string]: unknown;
9834
9863
  }, 429, "application/json">>>;
9835
- /** List Extensions. */
9836
- extensionListExtensions: (request?: {
9864
+ /** Get payment method details */
9865
+ customerGetPaymentMethod: (request: {
9866
+ customerId: string;
9837
9867
  headers?: {
9838
9868
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9869
+ "x-access-token"?: string | undefined;
9839
9870
  } | undefined;
9840
- queryParameters?: {
9841
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9842
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9843
- searchTerm?: string | undefined;
9844
- includeDeprecated?: boolean | undefined;
9845
- limit?: number | undefined;
9846
- skip?: number | undefined;
9847
- page?: number | undefined;
9848
- sort?: "name" | undefined;
9849
- order?: "asc" | "desc" | undefined;
9850
- } | undefined;
9851
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9871
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9852
9872
  headers?: Partial<{
9853
9873
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9854
9874
  }>;
9855
9875
  } & {
9856
- queryParameters: {
9857
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9858
- searchTerm?: string | undefined;
9859
- includeDeprecated?: boolean | undefined;
9860
- limit?: number | undefined;
9861
- skip?: number | undefined;
9862
- page?: number | undefined;
9863
- sort?: "name" | undefined;
9864
- order?: "asc" | "desc" | undefined;
9876
+ pathParameters: {
9877
+ customerId: string;
9878
+ };
9879
+ } & {
9880
+ headers: {
9881
+ "x-access-token"?: string | undefined;
9865
9882
  } & Partial<{
9866
9883
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9867
9884
  }>;
9868
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9885
+ }, import("@mittwald/api-client-commons").Response<{
9886
+ cardDetails?: {
9887
+ brand: string;
9888
+ last4: string;
9889
+ } | undefined;
9890
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9891
+ [x: string]: unknown;
9892
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9893
+ [x: string]: unknown;
9894
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9869
9895
  [x: string]: unknown;
9870
9896
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9871
9897
  headers?: Partial<{
9872
9898
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9873
9899
  }>;
9874
9900
  } & {
9875
- queryParameters: {
9876
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
9877
- searchTerm?: string | undefined;
9878
- includeDeprecated?: boolean | undefined;
9879
- limit?: number | undefined;
9880
- skip?: number | undefined;
9881
- page?: number | undefined;
9882
- sort?: "name" | undefined;
9883
- order?: "asc" | "desc" | undefined;
9901
+ pathParameters: {
9902
+ customerId: string;
9903
+ };
9904
+ } & {
9905
+ headers: {
9906
+ "x-access-token"?: string | undefined;
9884
9907
  } & Partial<{
9885
9908
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9886
9909
  }>;
9887
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9910
+ }, import("@mittwald/api-client-commons").Response<{
9911
+ cardDetails?: {
9912
+ brand: string;
9913
+ last4: string;
9914
+ } | undefined;
9915
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9916
+ [x: string]: unknown;
9917
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9918
+ [x: string]: unknown;
9919
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9888
9920
  [x: string]: unknown;
9889
9921
  }, 429, "application/json">>>;
9890
- /** Express interest to be a contributor. */
9891
- contributorExpressInterestToContribute: (request: {
9922
+ /** Get the link to update the marketplace payment method */
9923
+ customerUpdatePaymentMethod: (request: {
9892
9924
  customerId: string;
9893
9925
  data?: {
9894
- deviatingContactPersonUserId?: string | undefined;
9895
- deviatingContractOwner?: {
9896
- salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
9897
- address: {
9898
- street: string;
9899
- houseNumber: string;
9900
- city: string;
9901
- zip: string;
9902
- countryCode: string;
9903
- addressPrefix?: string | undefined;
9904
- };
9905
- firstName?: string | undefined;
9906
- lastName?: string | undefined;
9907
- title?: string | undefined;
9908
- company?: string | undefined;
9909
- emailAddress?: string | undefined;
9910
- phoneNumbers?: string[] | undefined;
9911
- useFormalTerm?: boolean | undefined;
9912
- } | undefined;
9913
- deviatingName?: string | undefined;
9914
- deviatingSupportInformation?: {
9915
- email: string;
9916
- phone?: string | undefined;
9917
- } | undefined;
9918
- imprint?: {
9919
- text: string;
9920
- } | {
9921
- url: string;
9922
- } | undefined;
9926
+ customReturnUrl?: string | undefined;
9923
9927
  } | undefined;
9924
9928
  headers?: {
9925
9929
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -9927,11 +9931,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9927
9931
  } | undefined;
9928
9932
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9929
9933
  data: {
9930
- deviatingContactPersonUserId?: string | undefined;
9931
- deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
9932
- deviatingName?: string | undefined;
9933
- deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9934
- imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
9934
+ customReturnUrl?: string | undefined;
9935
9935
  };
9936
9936
  } & {
9937
9937
  pathParameters: {
@@ -9948,18 +9948,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9948
9948
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9949
9949
  }>;
9950
9950
  }, import("@mittwald/api-client-commons").Response<{
9951
- id: string;
9952
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9951
+ url?: string | undefined;
9952
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9953
9953
  [x: string]: unknown;
9954
9954
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9955
9955
  [x: string]: unknown;
9956
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9957
+ [x: string]: unknown;
9956
9958
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9957
9959
  data: {
9958
- deviatingContactPersonUserId?: string | undefined;
9959
- deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
9960
- deviatingName?: string | undefined;
9961
- deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9962
- imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
9960
+ customReturnUrl?: string | undefined;
9963
9961
  };
9964
9962
  } & {
9965
9963
  pathParameters: {
@@ -9976,11 +9974,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9976
9974
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9977
9975
  }>;
9978
9976
  }, import("@mittwald/api-client-commons").Response<{
9979
- id: string;
9980
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9977
+ url?: string | undefined;
9978
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9981
9979
  [x: string]: unknown;
9982
9980
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9983
9981
  [x: string]: unknown;
9982
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9983
+ [x: string]: unknown;
9984
9984
  }, 429, "application/json">>>;
9985
9985
  };
9986
9986
  /** The conversation API allows you to manage your support conversations. */