@mittwald/api-client 4.121.0 → 4.123.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.
@@ -1777,8 +1777,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1777
1777
  } | undefined;
1778
1778
  queryParameters?: {
1779
1779
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1780
+ searchTerm?: string | undefined;
1780
1781
  withExportsOnly?: boolean | undefined;
1781
1782
  sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
1783
+ limit?: number | undefined;
1784
+ skip?: number | undefined;
1785
+ page?: number | undefined;
1782
1786
  } | undefined;
1783
1787
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
1784
1788
  headers?: Partial<{
@@ -1790,8 +1794,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1790
1794
  };
1791
1795
  } & {
1792
1796
  queryParameters: {
1797
+ searchTerm?: string | undefined;
1793
1798
  withExportsOnly?: boolean | undefined;
1794
1799
  sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
1800
+ limit?: number | undefined;
1801
+ skip?: number | undefined;
1802
+ page?: number | undefined;
1795
1803
  } & Partial<{
1796
1804
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1797
1805
  }>;
@@ -1813,8 +1821,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1813
1821
  };
1814
1822
  } & {
1815
1823
  queryParameters: {
1824
+ searchTerm?: string | undefined;
1816
1825
  withExportsOnly?: boolean | undefined;
1817
1826
  sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
1827
+ limit?: number | undefined;
1828
+ skip?: number | undefined;
1829
+ page?: number | undefined;
1818
1830
  } & Partial<{
1819
1831
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1820
1832
  }>;
@@ -4342,6 +4354,61 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4342
4354
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
4343
4355
  [x: string]: unknown;
4344
4356
  }, 400, "application/json">>>;
4357
+ /** Authenticate your external application using the extensionInstanceSecret. */
4358
+ extensionAuthenticateWithSessionToken: (request: {
4359
+ data: {
4360
+ sessionToken: string;
4361
+ extensionSecret?: string | undefined;
4362
+ };
4363
+ headers?: {
4364
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4365
+ "x-access-token"?: string | undefined;
4366
+ } | undefined;
4367
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4368
+ data: {
4369
+ extensionSecret?: string | undefined;
4370
+ sessionToken: string;
4371
+ };
4372
+ } & {
4373
+ headers?: Partial<{
4374
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4375
+ }>;
4376
+ } & {
4377
+ headers: {
4378
+ "x-access-token"?: string | undefined;
4379
+ } & Partial<{
4380
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4381
+ }>;
4382
+ }, import("@mittwald/api-client-commons").Response<{
4383
+ expiry: string;
4384
+ publicToken: string;
4385
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
4386
+ [x: string]: unknown;
4387
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4388
+ [x: string]: unknown;
4389
+ }, 404, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4390
+ data: {
4391
+ extensionSecret?: string | undefined;
4392
+ sessionToken: string;
4393
+ };
4394
+ } & {
4395
+ headers?: Partial<{
4396
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4397
+ }>;
4398
+ } & {
4399
+ headers: {
4400
+ "x-access-token"?: string | undefined;
4401
+ } & Partial<{
4402
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4403
+ }>;
4404
+ }, import("@mittwald/api-client-commons").Response<{
4405
+ expiry: string;
4406
+ publicToken: string;
4407
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
4408
+ [x: string]: unknown;
4409
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4410
+ [x: string]: unknown;
4411
+ }, 404, "application/json">>>;
4345
4412
  /** Consent to extension scopes. */
4346
4413
  extensionConsentToExtensionScopes: (request: {
4347
4414
  data: {
@@ -4695,9 +4762,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4695
4762
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4696
4763
  [x: string]: unknown;
4697
4764
  }, 429, "application/json">>>;
4698
- /** Disable an ExtensionInstance. */
4699
- extensionDisableExtensionInstance: (request: {
4700
- extensionInstanceId: string;
4765
+ /** Get Extension of own contributor. */
4766
+ extensionGetOwnExtension: (request: {
4767
+ contributorId: string;
4768
+ extensionId: string;
4701
4769
  headers?: {
4702
4770
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4703
4771
  "x-access-token"?: string | undefined;
@@ -4708,7 +4776,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4708
4776
  }>;
4709
4777
  } & {
4710
4778
  pathParameters: {
4711
- extensionInstanceId: string;
4779
+ contributorId: string;
4780
+ extensionId: string;
4712
4781
  };
4713
4782
  } & {
4714
4783
  headers: {
@@ -4717,10 +4786,43 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4717
4786
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4718
4787
  }>;
4719
4788
  }, import("@mittwald/api-client-commons").Response<{
4789
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
4790
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
4791
+ blocked?: boolean | undefined;
4792
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
4793
+ contributorId: string;
4794
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
4795
+ description?: string | undefined;
4796
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
4797
+ disabled?: boolean | undefined;
4798
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
4799
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
4800
+ frontendFragments?: {
4801
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
4802
+ } | undefined;
4803
+ functional: boolean;
4804
+ id: string;
4805
+ logoRefId?: string | undefined;
4806
+ name: string;
4807
+ published: boolean;
4808
+ requestedChanges?: {
4809
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
4810
+ scopes?: string[];
4811
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
4812
+ } | undefined;
4813
+ scopes?: string[] | undefined;
4814
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
4815
+ state?: "enabled" | "blocked" | "disabled" | undefined;
4816
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
4817
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
4818
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
4819
+ tags?: string[] | undefined;
4820
+ verificationRequested: boolean;
4821
+ verified: boolean;
4822
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
4823
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4720
4824
  [x: string]: unknown;
4721
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
4722
- [x: string]: unknown;
4723
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4825
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4724
4826
  [x: string]: unknown;
4725
4827
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4726
4828
  headers?: Partial<{
@@ -4728,7 +4830,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4728
4830
  }>;
4729
4831
  } & {
4730
4832
  pathParameters: {
4731
- extensionInstanceId: string;
4833
+ contributorId: string;
4834
+ extensionId: string;
4732
4835
  };
4733
4836
  } & {
4734
4837
  headers: {
@@ -4737,49 +4840,67 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4737
4840
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4738
4841
  }>;
4739
4842
  }, import("@mittwald/api-client-commons").Response<{
4843
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
4844
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
4845
+ blocked?: boolean | undefined;
4846
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
4847
+ contributorId: string;
4848
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
4849
+ description?: string | undefined;
4850
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
4851
+ disabled?: boolean | undefined;
4852
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
4853
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
4854
+ frontendFragments?: {
4855
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
4856
+ } | undefined;
4857
+ functional: boolean;
4858
+ id: string;
4859
+ logoRefId?: string | undefined;
4860
+ name: string;
4861
+ published: boolean;
4862
+ requestedChanges?: {
4863
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
4864
+ scopes?: string[];
4865
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
4866
+ } | undefined;
4867
+ scopes?: string[] | undefined;
4868
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
4869
+ state?: "enabled" | "blocked" | "disabled" | undefined;
4870
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
4871
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
4872
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
4873
+ tags?: string[] | undefined;
4874
+ verificationRequested: boolean;
4875
+ verified: boolean;
4876
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
4877
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4740
4878
  [x: string]: unknown;
4741
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
4742
- [x: string]: unknown;
4743
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4879
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4744
4880
  [x: string]: unknown;
4745
4881
  }, 429, "application/json">>>;
4746
- /** Dry run a webhook with random or given values. */
4747
- extensionDryRunWebhook: (request: {
4882
+ /** Delete an extension. */
4883
+ extensionDeleteExtension: (request: {
4748
4884
  contributorId: string;
4749
4885
  extensionId: string;
4750
- extensionInstanceId: string;
4751
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
4886
+ data?: {
4887
+ reason?: string | undefined;
4888
+ } | undefined;
4752
4889
  headers?: {
4753
4890
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4754
4891
  "x-access-token"?: string | undefined;
4755
4892
  } | undefined;
4756
- queryParameters?: {
4757
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4758
- contextId?: string | undefined;
4759
- scopes?: string[] | undefined;
4760
- instanceDisabled?: boolean | undefined;
4761
- createdAt?: string | undefined;
4762
- secret?: string | undefined;
4763
- } | undefined;
4764
4893
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4765
- headers?: Partial<{
4766
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4767
- }>;
4894
+ data: {
4895
+ reason?: string | undefined;
4896
+ };
4768
4897
  } & {
4769
4898
  pathParameters: {
4770
4899
  contributorId: string;
4771
4900
  extensionId: string;
4772
- extensionInstanceId: string;
4773
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
4774
4901
  };
4775
4902
  } & {
4776
- queryParameters: {
4777
- contextId?: string | undefined;
4778
- scopes?: string[] | undefined;
4779
- instanceDisabled?: boolean | undefined;
4780
- createdAt?: string | undefined;
4781
- secret?: string | undefined;
4782
- } & Partial<{
4903
+ headers?: Partial<{
4783
4904
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4784
4905
  }>;
4785
4906
  } & {
@@ -4788,106 +4909,436 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4788
4909
  } & Partial<{
4789
4910
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4790
4911
  }>;
4791
- }, import("@mittwald/api-client-commons").Response<{
4792
- errorMessage?: string | undefined;
4793
- responseBody?: string | undefined;
4794
- responseCode?: number | undefined;
4795
- responseHeaders?: string | undefined;
4796
- routeCalled: string;
4797
- successful: boolean;
4798
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4912
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
4799
4913
  [x: string]: unknown;
4800
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4914
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4801
4915
  [x: string]: unknown;
4802
4916
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4803
- headers?: Partial<{
4804
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4805
- }>;
4917
+ data: {
4918
+ reason?: string | undefined;
4919
+ };
4806
4920
  } & {
4807
4921
  pathParameters: {
4808
4922
  contributorId: string;
4809
4923
  extensionId: string;
4810
- extensionInstanceId: string;
4811
- webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
4812
4924
  };
4813
4925
  } & {
4814
- queryParameters: {
4815
- contextId?: string | undefined;
4816
- scopes?: string[] | undefined;
4817
- instanceDisabled?: boolean | undefined;
4818
- createdAt?: string | undefined;
4819
- secret?: string | undefined;
4820
- } & Partial<{
4821
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4822
- }>;
4823
- } & {
4824
- headers: {
4825
- "x-access-token"?: string | undefined;
4826
- } & Partial<{
4827
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4828
- }>;
4829
- }, import("@mittwald/api-client-commons").Response<{
4830
- errorMessage?: string | undefined;
4831
- responseBody?: string | undefined;
4832
- responseCode?: number | undefined;
4833
- responseHeaders?: string | undefined;
4834
- routeCalled: string;
4835
- successful: boolean;
4836
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4837
- [x: string]: unknown;
4838
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4839
- [x: string]: unknown;
4840
- }, 429, "application/json">>>;
4841
- /** Enable an ExtensionInstance. */
4842
- extensionEnableExtensionInstance: (request: {
4843
- extensionInstanceId: string;
4844
- headers?: {
4845
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4846
- "x-access-token"?: string | undefined;
4847
- } | undefined;
4848
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4849
4926
  headers?: Partial<{
4850
4927
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4851
4928
  }>;
4852
- } & {
4853
- pathParameters: {
4854
- extensionInstanceId: string;
4855
- };
4856
4929
  } & {
4857
4930
  headers: {
4858
4931
  "x-access-token"?: string | undefined;
4859
4932
  } & Partial<{
4860
4933
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4861
4934
  }>;
4862
- }, import("@mittwald/api-client-commons").Response<{
4863
- [x: string]: unknown;
4864
- }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
4935
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
4865
4936
  [x: string]: unknown;
4866
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4937
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4867
4938
  [x: string]: unknown;
4868
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4869
- headers?: Partial<{
4870
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4871
- }>;
4872
- } & {
4873
- pathParameters: {
4874
- extensionInstanceId: string;
4875
- };
4876
- } & {
4877
- headers: {
4878
- "x-access-token"?: string | undefined;
4879
- } & Partial<{
4880
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4881
- }>;
4882
- }, import("@mittwald/api-client-commons").Response<{
4939
+ }, 429, "application/json">>>;
4940
+ /** Patch Extension. */
4941
+ extensionPatchExtension: (request: {
4942
+ contributorId: string;
4943
+ extensionId: string;
4944
+ data?: {
4945
+ deprecation?: {
4946
+ deprecatedAt: string;
4947
+ note?: string | undefined;
4948
+ successorId?: string | undefined;
4949
+ } | undefined;
4950
+ description?: string | undefined;
4951
+ detailedDescriptions?: {
4952
+ de: {
4953
+ markdown: string;
4954
+ plain?: string | undefined;
4955
+ };
4956
+ en?: {
4957
+ markdown: string;
4958
+ plain?: string | undefined;
4959
+ } | undefined;
4960
+ } | undefined;
4961
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
4962
+ frontendFragments?: {
4963
+ [x: string]: {
4964
+ url: string;
4965
+ additionalProperties?: {
4966
+ [x: string]: string;
4967
+ } | undefined;
4968
+ };
4969
+ } | undefined;
4970
+ name?: string | undefined;
4971
+ scopes?: string[] | undefined;
4972
+ subTitle?: {
4973
+ de: string;
4974
+ en?: string | undefined;
4975
+ } | undefined;
4976
+ support?: {
4977
+ email?: string | undefined;
4978
+ phone?: string | undefined;
4979
+ } | undefined;
4980
+ tags?: string[] | undefined;
4981
+ webhookUrls?: {
4982
+ extensionAddedToContext: {
4983
+ url: string;
4984
+ };
4985
+ extensionInstanceRemovedFromContext: {
4986
+ url: string;
4987
+ };
4988
+ extensionInstanceSecretRotated: {
4989
+ url: string;
4990
+ };
4991
+ extensionInstanceUpdated: {
4992
+ url: string;
4993
+ };
4994
+ } | undefined;
4995
+ } | undefined;
4996
+ headers?: {
4997
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4998
+ "x-access-token"?: string | undefined;
4999
+ } | undefined;
5000
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5001
+ data: {
5002
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5003
+ description?: string | undefined;
5004
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5005
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5006
+ frontendFragments?: {
5007
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5008
+ } | undefined;
5009
+ name?: string | undefined;
5010
+ scopes?: string[] | undefined;
5011
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5012
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5013
+ tags?: string[] | undefined;
5014
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5015
+ };
5016
+ } & {
5017
+ pathParameters: {
5018
+ contributorId: string;
5019
+ extensionId: string;
5020
+ };
5021
+ } & {
5022
+ headers?: Partial<{
5023
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5024
+ }>;
5025
+ } & {
5026
+ headers: {
5027
+ "x-access-token"?: string | undefined;
5028
+ } & Partial<{
5029
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5030
+ }>;
5031
+ }, import("@mittwald/api-client-commons").Response<{
5032
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
5033
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
5034
+ blocked?: boolean | undefined;
5035
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
5036
+ contributorId: string;
5037
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5038
+ description?: string | undefined;
5039
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5040
+ disabled?: boolean | undefined;
5041
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5042
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5043
+ frontendFragments?: {
5044
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5045
+ } | undefined;
5046
+ functional: boolean;
5047
+ id: string;
5048
+ logoRefId?: string | undefined;
5049
+ name: string;
5050
+ published: boolean;
5051
+ requestedChanges?: {
5052
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5053
+ scopes?: string[];
5054
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
5055
+ } | undefined;
5056
+ scopes?: string[] | undefined;
5057
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
5058
+ state?: "enabled" | "blocked" | "disabled" | undefined;
5059
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5060
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5061
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5062
+ tags?: string[] | undefined;
5063
+ verificationRequested: boolean;
5064
+ verified: boolean;
5065
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5066
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5067
+ [x: string]: unknown;
5068
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5069
+ [x: string]: unknown;
5070
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5071
+ [x: string]: unknown;
5072
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
5073
+ [x: string]: unknown;
5074
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5075
+ data: {
5076
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5077
+ description?: string | undefined;
5078
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5079
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5080
+ frontendFragments?: {
5081
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5082
+ } | undefined;
5083
+ name?: string | undefined;
5084
+ scopes?: string[] | undefined;
5085
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5086
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5087
+ tags?: string[] | undefined;
5088
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5089
+ };
5090
+ } & {
5091
+ pathParameters: {
5092
+ contributorId: string;
5093
+ extensionId: string;
5094
+ };
5095
+ } & {
5096
+ headers?: Partial<{
5097
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5098
+ }>;
5099
+ } & {
5100
+ headers: {
5101
+ "x-access-token"?: string | undefined;
5102
+ } & Partial<{
5103
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5104
+ }>;
5105
+ }, import("@mittwald/api-client-commons").Response<{
5106
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
5107
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
5108
+ blocked?: boolean | undefined;
5109
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
5110
+ contributorId: string;
5111
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5112
+ description?: string | undefined;
5113
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5114
+ disabled?: boolean | undefined;
5115
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5116
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5117
+ frontendFragments?: {
5118
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5119
+ } | undefined;
5120
+ functional: boolean;
5121
+ id: string;
5122
+ logoRefId?: string | undefined;
5123
+ name: string;
5124
+ published: boolean;
5125
+ requestedChanges?: {
5126
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5127
+ scopes?: string[];
5128
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
5129
+ } | undefined;
5130
+ scopes?: string[] | undefined;
5131
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
5132
+ state?: "enabled" | "blocked" | "disabled" | undefined;
5133
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5134
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5135
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5136
+ tags?: string[] | undefined;
5137
+ verificationRequested: boolean;
5138
+ verified: boolean;
5139
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5140
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5141
+ [x: string]: unknown;
5142
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5143
+ [x: string]: unknown;
5144
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5145
+ [x: string]: unknown;
5146
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
5147
+ [x: string]: unknown;
5148
+ }, 429, "application/json">>>;
5149
+ /** Disable an ExtensionInstance. */
5150
+ extensionDisableExtensionInstance: (request: {
5151
+ extensionInstanceId: string;
5152
+ headers?: {
5153
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5154
+ "x-access-token"?: string | undefined;
5155
+ } | undefined;
5156
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5157
+ headers?: Partial<{
5158
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5159
+ }>;
5160
+ } & {
5161
+ pathParameters: {
5162
+ extensionInstanceId: string;
5163
+ };
5164
+ } & {
5165
+ headers: {
5166
+ "x-access-token"?: string | undefined;
5167
+ } & Partial<{
5168
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5169
+ }>;
5170
+ }, import("@mittwald/api-client-commons").Response<{
5171
+ [x: string]: unknown;
5172
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
5173
+ [x: string]: unknown;
5174
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5175
+ [x: string]: unknown;
5176
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5177
+ headers?: Partial<{
5178
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5179
+ }>;
5180
+ } & {
5181
+ pathParameters: {
5182
+ extensionInstanceId: string;
5183
+ };
5184
+ } & {
5185
+ headers: {
5186
+ "x-access-token"?: string | undefined;
5187
+ } & Partial<{
5188
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5189
+ }>;
5190
+ }, import("@mittwald/api-client-commons").Response<{
5191
+ [x: string]: unknown;
5192
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
5193
+ [x: string]: unknown;
5194
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5195
+ [x: string]: unknown;
5196
+ }, 429, "application/json">>>;
5197
+ /** Dry run a webhook with random or given values. */
5198
+ extensionDryRunWebhook: (request: {
5199
+ contributorId: string;
5200
+ extensionId: string;
5201
+ extensionInstanceId: string;
5202
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
5203
+ headers?: {
5204
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5205
+ "x-access-token"?: string | undefined;
5206
+ } | undefined;
5207
+ queryParameters?: {
5208
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5209
+ contextId?: string | undefined;
5210
+ scopes?: string[] | undefined;
5211
+ instanceDisabled?: boolean | undefined;
5212
+ createdAt?: string | undefined;
5213
+ secret?: string | undefined;
5214
+ } | undefined;
5215
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5216
+ headers?: Partial<{
5217
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5218
+ }>;
5219
+ } & {
5220
+ pathParameters: {
5221
+ contributorId: string;
5222
+ extensionId: string;
5223
+ extensionInstanceId: string;
5224
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
5225
+ };
5226
+ } & {
5227
+ queryParameters: {
5228
+ contextId?: string | undefined;
5229
+ scopes?: string[] | undefined;
5230
+ instanceDisabled?: boolean | undefined;
5231
+ createdAt?: string | undefined;
5232
+ secret?: string | undefined;
5233
+ } & Partial<{
5234
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5235
+ }>;
5236
+ } & {
5237
+ headers: {
5238
+ "x-access-token"?: string | undefined;
5239
+ } & Partial<{
5240
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5241
+ }>;
5242
+ }, import("@mittwald/api-client-commons").Response<{
5243
+ errorMessage?: string | undefined;
5244
+ responseBody?: string | undefined;
5245
+ responseCode?: number | undefined;
5246
+ responseHeaders?: string | undefined;
5247
+ routeCalled: string;
5248
+ successful: boolean;
5249
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5250
+ [x: string]: unknown;
5251
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5252
+ [x: string]: unknown;
5253
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5254
+ headers?: Partial<{
5255
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5256
+ }>;
5257
+ } & {
5258
+ pathParameters: {
5259
+ contributorId: string;
5260
+ extensionId: string;
5261
+ extensionInstanceId: string;
5262
+ webhookKind: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
5263
+ };
5264
+ } & {
5265
+ queryParameters: {
5266
+ contextId?: string | undefined;
5267
+ scopes?: string[] | undefined;
5268
+ instanceDisabled?: boolean | undefined;
5269
+ createdAt?: string | undefined;
5270
+ secret?: string | undefined;
5271
+ } & Partial<{
5272
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5273
+ }>;
5274
+ } & {
5275
+ headers: {
5276
+ "x-access-token"?: string | undefined;
5277
+ } & Partial<{
5278
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5279
+ }>;
5280
+ }, import("@mittwald/api-client-commons").Response<{
5281
+ errorMessage?: string | undefined;
5282
+ responseBody?: string | undefined;
5283
+ responseCode?: number | undefined;
5284
+ responseHeaders?: string | undefined;
5285
+ routeCalled: string;
5286
+ successful: boolean;
5287
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5288
+ [x: string]: unknown;
5289
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5290
+ [x: string]: unknown;
5291
+ }, 429, "application/json">>>;
5292
+ /** Enable an ExtensionInstance. */
5293
+ extensionEnableExtensionInstance: (request: {
5294
+ extensionInstanceId: string;
5295
+ headers?: {
5296
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5297
+ "x-access-token"?: string | undefined;
5298
+ } | undefined;
5299
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5300
+ headers?: Partial<{
5301
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5302
+ }>;
5303
+ } & {
5304
+ pathParameters: {
5305
+ extensionInstanceId: string;
5306
+ };
5307
+ } & {
5308
+ headers: {
5309
+ "x-access-token"?: string | undefined;
5310
+ } & Partial<{
5311
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5312
+ }>;
5313
+ }, import("@mittwald/api-client-commons").Response<{
5314
+ [x: string]: unknown;
5315
+ }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
5316
+ [x: string]: unknown;
5317
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5318
+ [x: string]: unknown;
5319
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5320
+ headers?: Partial<{
5321
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5322
+ }>;
5323
+ } & {
5324
+ pathParameters: {
5325
+ extensionInstanceId: string;
5326
+ };
5327
+ } & {
5328
+ headers: {
5329
+ "x-access-token"?: string | undefined;
5330
+ } & Partial<{
5331
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5332
+ }>;
5333
+ }, import("@mittwald/api-client-commons").Response<{
4883
5334
  [x: string]: unknown;
4884
5335
  }, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
4885
5336
  [x: string]: unknown;
4886
5337
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4887
5338
  [x: string]: unknown;
4888
5339
  }, 429, "application/json">>>;
4889
- /** Generate a session key to transmit it to the extensions frontend fragment. */
4890
- extensionGenerateSessionKey: (request: {
5340
+ /** Generate a session token to transmit it to the extensions frontend fragment. */
5341
+ extensionGenerateSessionToken: (request: {
4891
5342
  extensionInstanceId: string;
4892
5343
  sessionId: string;
4893
5344
  headers?: {
@@ -4910,7 +5361,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4910
5361
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4911
5362
  }>;
4912
5363
  }, import("@mittwald/api-client-commons").Response<{
4913
- sessionKeyJwt?: string | undefined;
5364
+ sessionToken: string;
4914
5365
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4915
5366
  [x: string]: unknown;
4916
5367
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -4933,7 +5384,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4933
5384
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4934
5385
  }>;
4935
5386
  }, import("@mittwald/api-client-commons").Response<{
4936
- sessionKeyJwt?: string | undefined;
5387
+ sessionToken: string;
4937
5388
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4938
5389
  [x: string]: unknown;
4939
5390
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -5096,187 +5547,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5096
5547
  domain: string;
5097
5548
  id: string;
5098
5549
  };
5099
- consentedScopes: string[];
5100
- createdAt?: string | undefined;
5101
- disabled: boolean;
5102
- extensionId: string;
5103
- id: string;
5104
- pendingInstallation: boolean;
5105
- pendingRemoval: boolean;
5106
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5107
- [x: string]: unknown;
5108
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5109
- [x: string]: unknown;
5110
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5111
- headers?: Partial<{
5112
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5113
- }>;
5114
- } & {
5115
- pathParameters: {
5116
- projectId: string;
5117
- extensionId: string;
5118
- };
5119
- } & {
5120
- headers: {
5121
- "x-access-token"?: string | undefined;
5122
- } & Partial<{
5123
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5124
- }>;
5125
- }, import("@mittwald/api-client-commons").Response<{
5126
- aggregateReference: {
5127
- aggregate: string;
5128
- domain: string;
5129
- id: string;
5130
- };
5131
- consentedScopes: string[];
5132
- createdAt?: string | undefined;
5133
- disabled: boolean;
5134
- extensionId: string;
5135
- id: string;
5136
- pendingInstallation: boolean;
5137
- pendingRemoval: boolean;
5138
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5139
- [x: string]: unknown;
5140
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5141
- [x: string]: unknown;
5142
- }, 429, "application/json">>>;
5143
- /** Get an Extension. */
5144
- extensionGetExtension: (request: {
5145
- extensionId: string;
5146
- headers?: {
5147
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5148
- } | undefined;
5149
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5150
- headers?: Partial<{
5151
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5152
- }>;
5153
- } & {
5154
- pathParameters: {
5155
- extensionId: string;
5156
- };
5157
- }, import("@mittwald/api-client-commons").Response<{
5158
- assets: [] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset];
5159
- blocked: boolean;
5160
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5161
- contributorId: string;
5162
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5163
- description: string;
5164
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5165
- disabled: boolean;
5166
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5167
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5168
- frontendFragments?: {
5169
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5170
- } | undefined;
5171
- id: string;
5172
- logoRefId: string;
5173
- name: string;
5174
- published: boolean;
5175
- scopes: string[];
5176
- state: "enabled" | "blocked" | "disabled";
5177
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5178
- subTitle: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
5179
- support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
5180
- tags: string[];
5181
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5182
- [x: string]: unknown;
5183
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5184
- [x: string]: unknown;
5185
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5186
- headers?: Partial<{
5187
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5188
- }>;
5189
- } & {
5190
- pathParameters: {
5191
- extensionId: string;
5192
- };
5193
- }, import("@mittwald/api-client-commons").Response<{
5194
- assets: [] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset];
5195
- blocked: boolean;
5196
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5197
- contributorId: string;
5198
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5199
- description: string;
5200
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5201
- disabled: boolean;
5202
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5203
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5204
- frontendFragments?: {
5205
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5206
- } | undefined;
5207
- id: string;
5208
- logoRefId: string;
5209
- name: string;
5210
- published: boolean;
5211
- scopes: string[];
5212
- state: "enabled" | "blocked" | "disabled";
5213
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5214
- subTitle: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
5215
- support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
5216
- tags: string[];
5217
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5218
- [x: string]: unknown;
5219
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5220
- [x: string]: unknown;
5221
- }, 429, "application/json">>>;
5222
- /** Get Extension of own contributor. */
5223
- extensionGetOwnExtension: (request: {
5224
- contributorId: string;
5225
- extensionId: string;
5226
- headers?: {
5227
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5228
- "x-access-token"?: string | undefined;
5229
- } | undefined;
5230
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5231
- headers?: Partial<{
5232
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5233
- }>;
5234
- } & {
5235
- pathParameters: {
5236
- contributorId: string;
5237
- extensionId: string;
5238
- };
5239
- } & {
5240
- headers: {
5241
- "x-access-token"?: string | undefined;
5242
- } & Partial<{
5243
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5244
- }>;
5245
- }, import("@mittwald/api-client-commons").Response<{
5246
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
5247
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
5248
- blocked?: boolean | undefined;
5249
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
5250
- contributorId: string;
5251
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5252
- description?: string | undefined;
5253
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5254
- disabled?: boolean | undefined;
5255
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5256
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5257
- frontendFragments?: {
5258
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5259
- } | undefined;
5260
- functional: boolean;
5261
- id: string;
5262
- logoRefId?: string | undefined;
5263
- name: string;
5264
- published: boolean;
5265
- requestedChanges?: {
5266
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5267
- scopes?: string[];
5268
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
5269
- } | undefined;
5270
- scopes?: string[] | undefined;
5271
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
5272
- state?: "enabled" | "blocked" | "disabled" | undefined;
5273
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5274
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5275
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5276
- tags?: string[] | undefined;
5277
- verificationRequested: boolean;
5278
- verified: boolean;
5279
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5550
+ consentedScopes: string[];
5551
+ createdAt?: string | undefined;
5552
+ disabled: boolean;
5553
+ extensionId: string;
5554
+ id: string;
5555
+ pendingInstallation: boolean;
5556
+ pendingRemoval: boolean;
5280
5557
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5281
5558
  [x: string]: unknown;
5282
5559
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -5287,7 +5564,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5287
5564
  }>;
5288
5565
  } & {
5289
5566
  pathParameters: {
5290
- contributorId: string;
5567
+ projectId: string;
5291
5568
  extensionId: string;
5292
5569
  };
5293
5570
  } & {
@@ -5297,253 +5574,101 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5297
5574
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5298
5575
  }>;
5299
5576
  }, import("@mittwald/api-client-commons").Response<{
5300
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
5301
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
5302
- blocked?: boolean | undefined;
5303
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
5304
- contributorId: string;
5305
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5306
- description?: string | undefined;
5307
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5308
- disabled?: boolean | undefined;
5309
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5310
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5311
- frontendFragments?: {
5312
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5313
- } | undefined;
5314
- functional: boolean;
5577
+ aggregateReference: {
5578
+ aggregate: string;
5579
+ domain: string;
5580
+ id: string;
5581
+ };
5582
+ consentedScopes: string[];
5583
+ createdAt?: string | undefined;
5584
+ disabled: boolean;
5585
+ extensionId: string;
5315
5586
  id: string;
5316
- logoRefId?: string | undefined;
5317
- name: string;
5318
- published: boolean;
5319
- requestedChanges?: {
5320
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5321
- scopes?: string[];
5322
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
5323
- } | undefined;
5324
- scopes?: string[] | undefined;
5325
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
5326
- state?: "enabled" | "blocked" | "disabled" | undefined;
5327
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5328
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5329
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5330
- tags?: string[] | undefined;
5331
- verificationRequested: boolean;
5332
- verified: boolean;
5333
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5587
+ pendingInstallation: boolean;
5588
+ pendingRemoval: boolean;
5334
5589
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5335
5590
  [x: string]: unknown;
5336
5591
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5337
5592
  [x: string]: unknown;
5338
5593
  }, 429, "application/json">>>;
5339
- /** Patch Extension. */
5340
- extensionPatchExtension: (request: {
5341
- contributorId: string;
5594
+ /** Get an Extension. */
5595
+ extensionGetExtension: (request: {
5342
5596
  extensionId: string;
5343
- data?: {
5344
- deprecation?: {
5345
- deprecatedAt: string;
5346
- note?: string | undefined;
5347
- successorId?: string | undefined;
5348
- } | undefined;
5349
- description?: string | undefined;
5350
- detailedDescriptions?: {
5351
- de: {
5352
- markdown: string;
5353
- plain?: string | undefined;
5354
- };
5355
- en?: {
5356
- markdown: string;
5357
- plain?: string | undefined;
5358
- } | undefined;
5359
- } | undefined;
5360
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5361
- frontendFragments?: {
5362
- [x: string]: {
5363
- url: string;
5364
- additionalProperties?: {
5365
- [x: string]: string;
5366
- } | undefined;
5367
- };
5368
- } | undefined;
5369
- name?: string | undefined;
5370
- scopes?: string[] | undefined;
5371
- subTitle?: {
5372
- de: string;
5373
- en?: string | undefined;
5374
- } | undefined;
5375
- support?: {
5376
- email?: string | undefined;
5377
- phone?: string | undefined;
5378
- } | undefined;
5379
- tags?: string[] | undefined;
5380
- webhookUrls?: {
5381
- extensionAddedToContext: {
5382
- url: string;
5383
- };
5384
- extensionInstanceRemovedFromContext: {
5385
- url: string;
5386
- };
5387
- extensionInstanceSecretRotated: {
5388
- url: string;
5389
- };
5390
- extensionInstanceUpdated: {
5391
- url: string;
5392
- };
5393
- } | undefined;
5394
- } | undefined;
5395
5597
  headers?: {
5396
5598
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5397
- "x-access-token"?: string | undefined;
5398
5599
  } | undefined;
5399
5600
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5400
- data: {
5401
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5402
- description?: string | undefined;
5403
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5404
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5405
- frontendFragments?: {
5406
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5407
- } | undefined;
5408
- name?: string | undefined;
5409
- scopes?: string[] | undefined;
5410
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5411
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5412
- tags?: string[] | undefined;
5413
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5414
- };
5415
- } & {
5416
- pathParameters: {
5417
- contributorId: string;
5418
- extensionId: string;
5419
- };
5420
- } & {
5421
5601
  headers?: Partial<{
5422
5602
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5423
5603
  }>;
5424
5604
  } & {
5425
- headers: {
5426
- "x-access-token"?: string | undefined;
5427
- } & Partial<{
5428
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5429
- }>;
5605
+ pathParameters: {
5606
+ extensionId: string;
5607
+ };
5430
5608
  }, import("@mittwald/api-client-commons").Response<{
5431
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
5432
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
5433
- blocked?: boolean | undefined;
5434
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
5609
+ assets: [] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset];
5610
+ blocked: boolean;
5611
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5435
5612
  contributorId: string;
5436
5613
  deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5437
- description?: string | undefined;
5614
+ description: string;
5438
5615
  detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5439
- disabled?: boolean | undefined;
5616
+ disabled: boolean;
5440
5617
  externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5441
5618
  frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5442
5619
  frontendFragments?: {
5443
5620
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5444
5621
  } | undefined;
5445
- functional: boolean;
5446
5622
  id: string;
5447
- logoRefId?: string | undefined;
5623
+ logoRefId: string;
5448
5624
  name: string;
5449
5625
  published: boolean;
5450
- requestedChanges?: {
5451
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5452
- scopes?: string[];
5453
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
5454
- } | undefined;
5455
- scopes?: string[] | undefined;
5456
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
5457
- state?: "enabled" | "blocked" | "disabled" | undefined;
5626
+ scopes: string[];
5627
+ state: "enabled" | "blocked" | "disabled";
5458
5628
  statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5459
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5460
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5461
- tags?: string[] | undefined;
5462
- verificationRequested: boolean;
5463
- verified: boolean;
5464
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5629
+ subTitle: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
5630
+ support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
5631
+ tags: string[];
5465
5632
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5466
5633
  [x: string]: unknown;
5467
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5468
- [x: string]: unknown;
5469
5634
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5470
5635
  [x: string]: unknown;
5471
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
5472
- [x: string]: unknown;
5473
5636
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5474
- data: {
5475
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5476
- description?: string | undefined;
5477
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5478
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5479
- frontendFragments?: {
5480
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5481
- } | undefined;
5482
- name?: string | undefined;
5483
- scopes?: string[] | undefined;
5484
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5485
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5486
- tags?: string[] | undefined;
5487
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5488
- };
5489
- } & {
5490
- pathParameters: {
5491
- contributorId: string;
5492
- extensionId: string;
5493
- };
5494
- } & {
5495
5637
  headers?: Partial<{
5496
5638
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5497
5639
  }>;
5498
5640
  } & {
5499
- headers: {
5500
- "x-access-token"?: string | undefined;
5501
- } & Partial<{
5502
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5503
- }>;
5641
+ pathParameters: {
5642
+ extensionId: string;
5643
+ };
5504
5644
  }, import("@mittwald/api-client-commons").Response<{
5505
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
5506
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
5507
- blocked?: boolean | undefined;
5508
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
5645
+ assets: [] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset] | [import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset, import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset];
5646
+ blocked: boolean;
5647
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5509
5648
  contributorId: string;
5510
5649
  deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5511
- description?: string | undefined;
5650
+ description: string;
5512
5651
  detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5513
- disabled?: boolean | undefined;
5652
+ disabled: boolean;
5514
5653
  externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5515
5654
  frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
5516
5655
  frontendFragments?: {
5517
5656
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
5518
5657
  } | undefined;
5519
- functional: boolean;
5520
5658
  id: string;
5521
- logoRefId?: string | undefined;
5659
+ logoRefId: string;
5522
5660
  name: string;
5523
5661
  published: boolean;
5524
- requestedChanges?: {
5525
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5526
- scopes?: string[];
5527
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
5528
- } | undefined;
5529
- scopes?: string[] | undefined;
5530
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
5531
- state?: "enabled" | "blocked" | "disabled" | undefined;
5662
+ scopes: string[];
5663
+ state: "enabled" | "blocked" | "disabled";
5532
5664
  statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5533
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
5534
- support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
5535
- tags?: string[] | undefined;
5536
- verificationRequested: boolean;
5537
- verified: boolean;
5538
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
5665
+ subTitle: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
5666
+ support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
5667
+ tags: string[];
5539
5668
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5540
5669
  [x: string]: unknown;
5541
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5542
- [x: string]: unknown;
5543
5670
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5544
5671
  [x: string]: unknown;
5545
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
5546
- [x: string]: unknown;
5547
5672
  }, 429, "application/json">>>;
5548
5673
  /** Get the public key to verify the webhook signature. */
5549
5674
  extensionGetPublicKey: (request: {
@@ -5551,6 +5676,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5551
5676
  headers?: {
5552
5677
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5553
5678
  } | undefined;
5679
+ queryParameters?: {
5680
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5681
+ purpose?: "webhook" | "session_token" | undefined;
5682
+ format?: "raw" | "spki" | undefined;
5683
+ } | undefined;
5554
5684
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5555
5685
  headers?: Partial<{
5556
5686
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -5559,6 +5689,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5559
5689
  pathParameters: {
5560
5690
  serial: string;
5561
5691
  };
5692
+ } & {
5693
+ queryParameters: {
5694
+ purpose?: "webhook" | "session_token" | undefined;
5695
+ format?: "raw" | "spki" | undefined;
5696
+ } & Partial<{
5697
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5698
+ }>;
5562
5699
  }, import("@mittwald/api-client-commons").Response<{
5563
5700
  algorithm: string;
5564
5701
  key: string;
@@ -5575,6 +5712,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5575
5712
  pathParameters: {
5576
5713
  serial: string;
5577
5714
  };
5715
+ } & {
5716
+ queryParameters: {
5717
+ purpose?: "webhook" | "session_token" | undefined;
5718
+ format?: "raw" | "spki" | undefined;
5719
+ } & Partial<{
5720
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5721
+ }>;
5578
5722
  }, import("@mittwald/api-client-commons").Response<{
5579
5723
  algorithm: string;
5580
5724
  key: string;
@@ -8599,8 +8743,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8599
8743
  customerId: string;
8600
8744
  customerNumber: string;
8601
8745
  executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
8746
+ flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
8602
8747
  isBanned?: boolean | undefined;
8603
8748
  isInDefaultOfPayment?: boolean | undefined;
8749
+ levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
8604
8750
  memberCount: number;
8605
8751
  name: string;
8606
8752
  owner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerContact | undefined;
@@ -8639,8 +8785,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8639
8785
  customerId: string;
8640
8786
  customerNumber: string;
8641
8787
  executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
8788
+ flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
8642
8789
  isBanned?: boolean | undefined;
8643
8790
  isInDefaultOfPayment?: boolean | undefined;
8791
+ levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
8644
8792
  memberCount: number;
8645
8793
  name: string;
8646
8794
  owner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerContact | undefined;