@mittwald/api-client 4.71.0 → 4.73.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.
@@ -94,14 +94,14 @@ const buildConversationApi = (baseClient) => ({
94
94
  getCategory: new ApiCallAsyncResourceFactory(descriptors.conversationGetCategory, baseClient.conversation.getCategory).getApiResource,
95
95
  /** Get members of a support conversation. */
96
96
  getConversationMembers: new ApiCallAsyncResourceFactory(descriptors.conversationGetConversationMembers, baseClient.conversation.getConversationMembers).getApiResource,
97
+ /** Get preferences for customer conversations. */
98
+ getConversationPreferencesOfCustomer: new ApiCallAsyncResourceFactory(descriptors.conversationGetConversationPreferencesOfCustomer, baseClient.conversation.getConversationPreferencesOfCustomer).getApiResource,
97
99
  /** Get a support conversation. */
98
100
  getConversation: new ApiCallAsyncResourceFactory(descriptors.conversationGetConversation, baseClient.conversation.getConversation).getApiResource,
99
101
  /** Request an access token for the File belonging to the Conversation. */
100
102
  getFileAccessToken: new ApiCallAsyncResourceFactory(descriptors.conversationGetFileAccessToken, baseClient.conversation.getFileAccessToken).getApiResource,
101
103
  /** Get all conversation categories. */
102
104
  listCategories: new ApiCallAsyncResourceFactory(descriptors.conversationListCategories, baseClient.conversation.listCategories).getApiResource,
103
- /** Get preferences for customer conversations. */
104
- getConversationPreferencesOfCustomer: new ApiCallAsyncResourceFactory(descriptors.conversationGetConversationPreferencesOfCustomer, baseClient.conversation.getConversationPreferencesOfCustomer).getApiResource,
105
105
  });
106
106
  const buildCronjobApi = (baseClient) => ({
107
107
  /** List Cronjobs belonging to a Project. */
@@ -204,6 +204,8 @@ const buildMarketplaceApi = (baseClient) => ({
204
204
  extensionListContributors: new ApiCallAsyncResourceFactory(descriptors.extensionListContributors, baseClient.marketplace.extensionListContributors).getApiResource,
205
205
  /** List Extensions. */
206
206
  extensionListExtensions: new ApiCallAsyncResourceFactory(descriptors.extensionListExtensions, baseClient.marketplace.extensionListExtensions).getApiResource,
207
+ /** Get all extensions and instances health for the contributor. */
208
+ getExtensionshealth: new ApiCallAsyncResourceFactory(descriptors.marketplaceGetExtensionshealth, baseClient.marketplace.getExtensionshealth).getApiResource,
207
209
  });
208
210
  const buildFileApi = (baseClient) => ({
209
211
  /** Get a File's meta. */
@@ -180,6 +180,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
180
180
  extensionListContributors: this.requestFunctionFactory(descriptors.extensionListContributors),
181
181
  /** List Extensions. */
182
182
  extensionListExtensions: this.requestFunctionFactory(descriptors.extensionListExtensions),
183
+ /** Get all extensions and instances health for the contributor. */
184
+ getExtensionshealth: this.requestFunctionFactory(descriptors.marketplaceGetExtensionshealth),
183
185
  };
184
186
  /** The conversation API allows you to manage your support conversations. */
185
187
  conversation = {
@@ -195,6 +197,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
195
197
  getCategory: this.requestFunctionFactory(descriptors.conversationGetCategory),
196
198
  /** Get members of a support conversation. */
197
199
  getConversationMembers: this.requestFunctionFactory(descriptors.conversationGetConversationMembers),
200
+ /** Get preferences for customer conversations. */
201
+ getConversationPreferencesOfCustomer: this.requestFunctionFactory(descriptors.conversationGetConversationPreferencesOfCustomer),
198
202
  /** Get a support conversation. */
199
203
  getConversation: this.requestFunctionFactory(descriptors.conversationGetConversation),
200
204
  /** Update the basic properties of the conversation. */
@@ -209,8 +213,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
209
213
  setConversationStatus: this.requestFunctionFactory(descriptors.conversationSetConversationStatus),
210
214
  /** Update the content of the message */
211
215
  updateMessage: this.requestFunctionFactory(descriptors.conversationUpdateMessage),
212
- /** Get preferences for customer conversations. */
213
- getConversationPreferencesOfCustomer: this.requestFunctionFactory(descriptors.conversationGetConversationPreferencesOfCustomer),
214
216
  };
215
217
  /** The cronjob API allows you to manage cronjobs within a project. */
216
218
  cronjob = {
@@ -352,6 +352,12 @@ export const conversationGetConversationMembers = {
352
352
  method: "GET",
353
353
  operationId: "conversation-get-conversation-members",
354
354
  };
355
+ /** Get preferences for customer conversations. */
356
+ export const conversationGetConversationPreferencesOfCustomer = {
357
+ path: "/v2/customers/{customerId}/conversation-preferences",
358
+ method: "GET",
359
+ operationId: "conversation-get-conversation-preferences-of-customer",
360
+ };
355
361
  /** Get a support conversation. */
356
362
  export const conversationGetConversation = {
357
363
  path: "/v2/conversations/{conversationId}",
@@ -1216,6 +1222,12 @@ export const mailUpdateProjectMailSetting = {
1216
1222
  method: "PATCH",
1217
1223
  operationId: "mail-update-project-mail-setting",
1218
1224
  };
1225
+ /** Get all extensions and instances health for the contributor. */
1226
+ export const marketplaceGetExtensionshealth = {
1227
+ path: "/v2/marketplace/{contributorId}/extensionshealth",
1228
+ method: "GET",
1229
+ operationId: "marketplace-get-extensionshealth",
1230
+ };
1219
1231
  /** Getting the subscription status of the subscription. */
1220
1232
  export const newsletterGetInfo = {
1221
1233
  path: "/v2/newsletter-subscriptions/self",
@@ -1996,9 +2008,3 @@ export const verificationVerifyCompany = {
1996
2008
  method: "POST",
1997
2009
  operationId: "verification-verify-company",
1998
2010
  };
1999
- /** Get preferences for customer conversations. */
2000
- export const conversationGetConversationPreferencesOfCustomer = {
2001
- path: "/v2/customers/{customerId}/conversation-preferences",
2002
- method: "GET",
2003
- operationId: "conversation-get-conversation-preferences-of-customer",
2004
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.70.0';
1
+ export const MittwaldAPIClientVersion = '4.72.0';
@@ -677,6 +677,21 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
677
677
  }) => import("@mittwald/react-use-promise").AsyncResource<(import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser & {
678
678
  active: boolean;
679
679
  })[]>;
680
+ /** Get preferences for customer conversations. */
681
+ getConversationPreferencesOfCustomer: (conf: {
682
+ customerId: string;
683
+ headers?: {
684
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
685
+ } | undefined;
686
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
687
+ customerId: string;
688
+ preferredUsers: {
689
+ categoryUserPairs?: {
690
+ [k: string]: string;
691
+ };
692
+ fallback?: string;
693
+ };
694
+ }>;
680
695
  /** Get a support conversation. */
681
696
  getConversation: (conf: {
682
697
  conversationId: string;
@@ -721,21 +736,6 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
721
736
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
722
737
  } | undefined;
723
738
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory[]>;
724
- /** Get preferences for customer conversations. */
725
- getConversationPreferencesOfCustomer: (conf: {
726
- customerId: string;
727
- headers?: {
728
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
729
- } | undefined;
730
- }) => import("@mittwald/react-use-promise").AsyncResource<{
731
- customerId: string;
732
- preferredUsers: {
733
- categoryUserPairs?: {
734
- [k: string]: string;
735
- };
736
- fallback?: string;
737
- };
738
- }>;
739
739
  };
740
740
  declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
741
741
  /** List Cronjobs belonging to a Project. */
@@ -1392,6 +1392,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1392
1392
  } | undefined;
1393
1393
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1394
1394
  customerId: string;
1395
+ description: string;
1395
1396
  email?: string | undefined;
1396
1397
  id: string;
1397
1398
  logoRefId?: string | undefined;
@@ -1422,6 +1423,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1422
1423
  } | undefined;
1423
1424
  id: string;
1424
1425
  name: string;
1426
+ published: boolean;
1425
1427
  scopes: string[];
1426
1428
  state: "enabled" | "blocked" | "disabled";
1427
1429
  support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
@@ -1463,6 +1465,16 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1463
1465
  page?: number | undefined;
1464
1466
  } | undefined;
1465
1467
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
1468
+ /** Get all extensions and instances health for the contributor. */
1469
+ getExtensionshealth: (conf: {
1470
+ contributorId: string;
1471
+ headers?: {
1472
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1473
+ "x-access-token"?: string | undefined;
1474
+ } | undefined;
1475
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1476
+ extensionsHealth: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionHealth[];
1477
+ }>;
1466
1478
  };
1467
1479
  declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1468
1480
  /** Get a File's meta. */
@@ -4890,6 +4890,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4890
4890
  };
4891
4891
  }, import("@mittwald/api-client-commons").Response<{
4892
4892
  customerId: string;
4893
+ description: string;
4893
4894
  email?: string | undefined;
4894
4895
  id: string;
4895
4896
  logoRefId?: string | undefined;
@@ -4911,6 +4912,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4911
4912
  };
4912
4913
  }, import("@mittwald/api-client-commons").Response<{
4913
4914
  customerId: string;
4915
+ description: string;
4914
4916
  email?: string | undefined;
4915
4917
  id: string;
4916
4918
  logoRefId?: string | undefined;
@@ -4953,6 +4955,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4953
4955
  } | undefined;
4954
4956
  id: string;
4955
4957
  name: string;
4958
+ published: boolean;
4956
4959
  scopes: string[];
4957
4960
  state: "enabled" | "blocked" | "disabled";
4958
4961
  support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
@@ -4985,6 +4988,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4985
4988
  } | undefined;
4986
4989
  id: string;
4987
4990
  name: string;
4991
+ published: boolean;
4988
4992
  scopes: string[];
4989
4993
  state: "enabled" | "blocked" | "disabled";
4990
4994
  support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
@@ -5116,6 +5120,54 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5116
5120
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5117
5121
  [x: string]: unknown;
5118
5122
  }, 429, "application/json">>>;
5123
+ /** Get all extensions and instances health for the contributor. */
5124
+ getExtensionshealth: (request: {
5125
+ contributorId: string;
5126
+ headers?: {
5127
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5128
+ "x-access-token"?: string | undefined;
5129
+ } | undefined;
5130
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5131
+ headers?: Partial<{
5132
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5133
+ }> | undefined;
5134
+ } & {
5135
+ pathParameters: {
5136
+ contributorId: string;
5137
+ };
5138
+ } & {
5139
+ headers: {
5140
+ "x-access-token"?: string | undefined;
5141
+ } & Partial<{
5142
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5143
+ }>;
5144
+ }, import("@mittwald/api-client-commons").Response<{
5145
+ extensionsHealth: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionHealth[];
5146
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5147
+ [x: string]: unknown;
5148
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5149
+ [x: string]: unknown;
5150
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5151
+ headers?: Partial<{
5152
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5153
+ }> | undefined;
5154
+ } & {
5155
+ pathParameters: {
5156
+ contributorId: string;
5157
+ };
5158
+ } & {
5159
+ headers: {
5160
+ "x-access-token"?: string | undefined;
5161
+ } & Partial<{
5162
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5163
+ }>;
5164
+ }, import("@mittwald/api-client-commons").Response<{
5165
+ extensionsHealth: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionHealth[];
5166
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5167
+ [x: string]: unknown;
5168
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5169
+ [x: string]: unknown;
5170
+ }, 429, "application/json">>>;
5119
5171
  };
5120
5172
  /** The conversation API allows you to manage your support conversations. */
5121
5173
  readonly conversation: {
@@ -5409,6 +5461,61 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5409
5461
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5410
5462
  [x: string]: unknown;
5411
5463
  }, 429, "application/json">>>;
5464
+ /** Get preferences for customer conversations. */
5465
+ getConversationPreferencesOfCustomer: (request: {
5466
+ customerId: string;
5467
+ headers?: {
5468
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5469
+ } | undefined;
5470
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5471
+ headers?: Partial<{
5472
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5473
+ }> | undefined;
5474
+ } & {
5475
+ pathParameters: {
5476
+ customerId: string;
5477
+ };
5478
+ }, import("@mittwald/api-client-commons").Response<{
5479
+ customerId: string;
5480
+ preferredUsers: {
5481
+ categoryUserPairs?: {
5482
+ [k: string]: string;
5483
+ };
5484
+ fallback?: string;
5485
+ };
5486
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5487
+ [x: string]: unknown;
5488
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5489
+ [x: string]: unknown;
5490
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5491
+ [x: string]: unknown;
5492
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5493
+ [x: string]: unknown;
5494
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5495
+ headers?: Partial<{
5496
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5497
+ }> | undefined;
5498
+ } & {
5499
+ pathParameters: {
5500
+ customerId: string;
5501
+ };
5502
+ }, import("@mittwald/api-client-commons").Response<{
5503
+ customerId: string;
5504
+ preferredUsers: {
5505
+ categoryUserPairs?: {
5506
+ [k: string]: string;
5507
+ };
5508
+ fallback?: string;
5509
+ };
5510
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5511
+ [x: string]: unknown;
5512
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5513
+ [x: string]: unknown;
5514
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5515
+ [x: string]: unknown;
5516
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5517
+ [x: string]: unknown;
5518
+ }, 429, "application/json">>>;
5412
5519
  /** Get a support conversation. */
5413
5520
  getConversation: (request: {
5414
5521
  conversationId: string;
@@ -5814,61 +5921,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5814
5921
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5815
5922
  [x: string]: unknown;
5816
5923
  }, 429, "application/json">>>;
5817
- /** Get preferences for customer conversations. */
5818
- getConversationPreferencesOfCustomer: (request: {
5819
- customerId: string;
5820
- headers?: {
5821
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5822
- } | undefined;
5823
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5824
- headers?: Partial<{
5825
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5826
- }> | undefined;
5827
- } & {
5828
- pathParameters: {
5829
- customerId: string;
5830
- };
5831
- }, import("@mittwald/api-client-commons").Response<{
5832
- customerId: string;
5833
- preferredUsers: {
5834
- categoryUserPairs?: {
5835
- [k: string]: string;
5836
- };
5837
- fallback?: string;
5838
- };
5839
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5840
- [x: string]: unknown;
5841
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5842
- [x: string]: unknown;
5843
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5844
- [x: string]: unknown;
5845
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5846
- [x: string]: unknown;
5847
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5848
- headers?: Partial<{
5849
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5850
- }> | undefined;
5851
- } & {
5852
- pathParameters: {
5853
- customerId: string;
5854
- };
5855
- }, import("@mittwald/api-client-commons").Response<{
5856
- customerId: string;
5857
- preferredUsers: {
5858
- categoryUserPairs?: {
5859
- [k: string]: string;
5860
- };
5861
- fallback?: string;
5862
- };
5863
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5864
- [x: string]: unknown;
5865
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5866
- [x: string]: unknown;
5867
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5868
- [x: string]: unknown;
5869
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5870
- [x: string]: unknown;
5871
- }, 429, "application/json">>>;
5872
5924
  };
5873
5925
  /** The cronjob API allows you to manage cronjobs within a project. */
5874
5926
  readonly cronjob: {
@@ -121,6 +121,8 @@ export declare const conversationCreateMessage: OpenAPIOperation<RequestType<Sim
121
121
  export declare const conversationGetCategory: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
122
122
  /** Get members of a support conversation. */
123
123
  export declare const conversationGetConversationMembers: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMembers.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
124
+ /** Get preferences for customer conversations. */
125
+ export declare const conversationGetConversationPreferencesOfCustomer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
124
126
  /** Get a support conversation. */
125
127
  export declare const conversationGetConversation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
126
128
  /** Update the basic properties of the conversation. */
@@ -409,6 +411,8 @@ export declare const mailUpdateMailAddressQuota: OpenAPIOperation<RequestType<Si
409
411
  export declare const mailUpdateMailAddressSpamProtection: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
410
412
  /** Update a mail setting of a Project. */
411
413
  export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
414
+ /** Get all extensions and instances health for the contributor. */
415
+ export declare const marketplaceGetExtensionshealth: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
412
416
  /** Getting the subscription status of the subscription. */
413
417
  export declare const newsletterGetInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
414
418
  /** Unsubscribe a user from the mStudio newsletter. */
@@ -669,5 +673,3 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
669
673
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
670
674
  /** Check if a company exists. */
671
675
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
672
- /** Get preferences for customer conversations. */
673
- export declare const conversationGetConversationPreferencesOfCustomer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdConversationPreferences.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -238,6 +238,10 @@ export declare namespace MittwaldAPIV2 {
238
238
  type RequestData = InferredRequestData<typeof descriptors.conversationGetConversationMembers>;
239
239
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetConversationMembers, TStatus>;
240
240
  }
241
+ namespace ConversationGetConversationPreferencesOfCustomer {
242
+ type RequestData = InferredRequestData<typeof descriptors.conversationGetConversationPreferencesOfCustomer>;
243
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetConversationPreferencesOfCustomer, TStatus>;
244
+ }
241
245
  namespace ConversationGetConversation {
242
246
  type RequestData = InferredRequestData<typeof descriptors.conversationGetConversation>;
243
247
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetConversation, TStatus>;
@@ -814,6 +818,10 @@ export declare namespace MittwaldAPIV2 {
814
818
  type RequestData = InferredRequestData<typeof descriptors.mailUpdateProjectMailSetting>;
815
819
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateProjectMailSetting, TStatus>;
816
820
  }
821
+ namespace MarketplaceGetExtensionshealth {
822
+ type RequestData = InferredRequestData<typeof descriptors.marketplaceGetExtensionshealth>;
823
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.marketplaceGetExtensionshealth, TStatus>;
824
+ }
817
825
  namespace NewsletterGetInfo {
818
826
  type RequestData = InferredRequestData<typeof descriptors.newsletterGetInfo>;
819
827
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.newsletterGetInfo, TStatus>;
@@ -1334,10 +1342,6 @@ export declare namespace MittwaldAPIV2 {
1334
1342
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1335
1343
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1336
1344
  }
1337
- namespace ConversationGetConversationPreferencesOfCustomer {
1338
- type RequestData = InferredRequestData<typeof descriptors.conversationGetConversationPreferencesOfCustomer>;
1339
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetConversationPreferencesOfCustomer, TStatus>;
1340
- }
1341
1345
  }
1342
1346
  namespace Components {
1343
1347
  namespace Schemas {
@@ -1804,6 +1808,32 @@ export declare namespace MittwaldAPIV2 {
1804
1808
  messageId: string;
1805
1809
  type: "MESSAGE";
1806
1810
  }
1811
+ type ConversationNotificationRole = "customer_owner" | "customer_accountant" | "customer_member" | "project_owner" | "project_email_admin" | "project_external";
1812
+ type ConversationRelatedAggregateReference = {
1813
+ aggregate: "user";
1814
+ domain: "user";
1815
+ id: string;
1816
+ } | {
1817
+ aggregate: "customer";
1818
+ domain: "customer";
1819
+ id: string;
1820
+ } | {
1821
+ aggregate: "project";
1822
+ domain: "project";
1823
+ id: string;
1824
+ } | {
1825
+ aggregate: "appinstallation";
1826
+ domain: "app";
1827
+ id: string;
1828
+ } | {
1829
+ aggregate: "placementgroup";
1830
+ domain: "project";
1831
+ id: string;
1832
+ } | {
1833
+ aggregate: "extensionInstance";
1834
+ domain: "extension";
1835
+ id: string;
1836
+ };
1807
1837
  type ConversationShareableAggregateReference = {
1808
1838
  aggregate: "user";
1809
1839
  domain: "user";
@@ -2298,6 +2328,7 @@ export declare namespace MittwaldAPIV2 {
2298
2328
  }
2299
2329
  interface MarketplaceContributor {
2300
2330
  customerId: string;
2331
+ description: string;
2301
2332
  email?: string;
2302
2333
  id: string;
2303
2334
  logoRefId?: string;
@@ -2329,6 +2360,10 @@ export declare namespace MittwaldAPIV2 {
2329
2360
  };
2330
2361
  id: string;
2331
2362
  name: string;
2363
+ /**
2364
+ * Whether the extension has been published by the contributor.
2365
+ */
2366
+ published: boolean;
2332
2367
  scopes: string[];
2333
2368
  /**
2334
2369
  * @deprecated
@@ -2365,6 +2400,11 @@ export declare namespace MittwaldAPIV2 {
2365
2400
  de: MittwaldAPIV2.Components.Schemas.MarketplaceDescriptionFormats;
2366
2401
  en?: MittwaldAPIV2.Components.Schemas.MarketplaceDescriptionFormats;
2367
2402
  }
2403
+ interface MarketplaceExtensionHealth {
2404
+ extensionInstancesHealth?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
2405
+ functional: boolean;
2406
+ id: string;
2407
+ }
2368
2408
  interface MarketplaceExtensionInstance {
2369
2409
  aggregateReference: {
2370
2410
  aggregate: string;
@@ -2379,6 +2419,13 @@ export declare namespace MittwaldAPIV2 {
2379
2419
  pendingInstallation: boolean;
2380
2420
  pendingRemoval: boolean;
2381
2421
  }
2422
+ interface MarketplaceExtensionInstanceHealth {
2423
+ id: string;
2424
+ pendingInstallation?: boolean;
2425
+ pendingRemval?: boolean;
2426
+ pendingWebhooks?: number;
2427
+ webhooksHalted?: boolean;
2428
+ }
2382
2429
  interface MarketplaceExternalComponent {
2383
2430
  name: string;
2384
2431
  url: string;
@@ -3906,32 +3953,6 @@ export declare namespace MittwaldAPIV2 {
3906
3953
  name: string;
3907
3954
  value: string;
3908
3955
  }
3909
- type ConversationNotificationRole = "customer_owner" | "customer_accountant" | "customer_member" | "project_owner" | "project_email_admin" | "project_external";
3910
- type ConversationRelatedAggregateReference = {
3911
- aggregate: "user";
3912
- domain: "user";
3913
- id: string;
3914
- } | {
3915
- aggregate: "customer";
3916
- domain: "customer";
3917
- id: string;
3918
- } | {
3919
- aggregate: "project";
3920
- domain: "project";
3921
- id: string;
3922
- } | {
3923
- aggregate: "appinstallation";
3924
- domain: "app";
3925
- id: string;
3926
- } | {
3927
- aggregate: "placementgroup";
3928
- domain: "project";
3929
- id: string;
3930
- } | {
3931
- aggregate: "extensionInstance";
3932
- domain: "extension";
3933
- id: string;
3934
- };
3935
3956
  interface CommonsAddress {
3936
3957
  street: string;
3937
3958
  houseNumber: string;
@@ -6815,6 +6836,59 @@ export declare namespace MittwaldAPIV2 {
6815
6836
  }
6816
6837
  }
6817
6838
  }
6839
+ namespace V2CustomersCustomerIdConversationPreferences {
6840
+ namespace Get {
6841
+ namespace Parameters {
6842
+ type Path = {
6843
+ customerId: string;
6844
+ };
6845
+ type Header = {};
6846
+ type Query = {};
6847
+ }
6848
+ namespace Responses {
6849
+ namespace $200 {
6850
+ namespace Content {
6851
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ConversationConversationPreferences;
6852
+ }
6853
+ }
6854
+ namespace $400 {
6855
+ namespace Content {
6856
+ interface ApplicationJson {
6857
+ [k: string]: unknown;
6858
+ }
6859
+ }
6860
+ }
6861
+ namespace $403 {
6862
+ namespace Content {
6863
+ interface ApplicationJson {
6864
+ [k: string]: unknown;
6865
+ }
6866
+ }
6867
+ }
6868
+ namespace $404 {
6869
+ namespace Content {
6870
+ interface ApplicationJson {
6871
+ [k: string]: unknown;
6872
+ }
6873
+ }
6874
+ }
6875
+ namespace $429 {
6876
+ namespace Content {
6877
+ interface ApplicationJson {
6878
+ [k: string]: unknown;
6879
+ }
6880
+ }
6881
+ }
6882
+ namespace Default {
6883
+ namespace Content {
6884
+ interface ApplicationJson {
6885
+ [k: string]: unknown;
6886
+ }
6887
+ }
6888
+ }
6889
+ }
6890
+ }
6891
+ }
6818
6892
  namespace V2ConversationsConversationId {
6819
6893
  namespace Get {
6820
6894
  namespace Parameters {
@@ -14169,6 +14243,47 @@ export declare namespace MittwaldAPIV2 {
14169
14243
  }
14170
14244
  }
14171
14245
  namespace V2ProjectsProjectIdMailSettingsSetting { }
14246
+ namespace V2MarketplaceContributorIdExtensionshealth {
14247
+ namespace Get {
14248
+ namespace Parameters {
14249
+ type Path = {
14250
+ contributorId: string;
14251
+ };
14252
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14253
+ type Query = {};
14254
+ }
14255
+ namespace Responses {
14256
+ namespace $200 {
14257
+ namespace Content {
14258
+ interface ApplicationJson {
14259
+ extensionsHealth: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionHealth[];
14260
+ }
14261
+ }
14262
+ }
14263
+ namespace $404 {
14264
+ namespace Content {
14265
+ interface ApplicationJson {
14266
+ [k: string]: unknown;
14267
+ }
14268
+ }
14269
+ }
14270
+ namespace $429 {
14271
+ namespace Content {
14272
+ interface ApplicationJson {
14273
+ [k: string]: unknown;
14274
+ }
14275
+ }
14276
+ }
14277
+ namespace Default {
14278
+ namespace Content {
14279
+ interface ApplicationJson {
14280
+ [k: string]: unknown;
14281
+ }
14282
+ }
14283
+ }
14284
+ }
14285
+ }
14286
+ }
14172
14287
  namespace V2NewsletterSubscriptionsSelf {
14173
14288
  namespace Get {
14174
14289
  namespace Parameters {
@@ -20144,58 +20259,5 @@ export declare namespace MittwaldAPIV2 {
20144
20259
  }
20145
20260
  }
20146
20261
  }
20147
- namespace V2CustomersCustomerIdConversationPreferences {
20148
- namespace Get {
20149
- namespace Parameters {
20150
- type Path = {
20151
- customerId: string;
20152
- };
20153
- type Header = {};
20154
- type Query = {};
20155
- }
20156
- namespace Responses {
20157
- namespace $200 {
20158
- namespace Content {
20159
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ConversationConversationPreferences;
20160
- }
20161
- }
20162
- namespace $400 {
20163
- namespace Content {
20164
- interface ApplicationJson {
20165
- [k: string]: unknown;
20166
- }
20167
- }
20168
- }
20169
- namespace $403 {
20170
- namespace Content {
20171
- interface ApplicationJson {
20172
- [k: string]: unknown;
20173
- }
20174
- }
20175
- }
20176
- namespace $404 {
20177
- namespace Content {
20178
- interface ApplicationJson {
20179
- [k: string]: unknown;
20180
- }
20181
- }
20182
- }
20183
- namespace $429 {
20184
- namespace Content {
20185
- interface ApplicationJson {
20186
- [k: string]: unknown;
20187
- }
20188
- }
20189
- }
20190
- namespace Default {
20191
- namespace Content {
20192
- interface ApplicationJson {
20193
- [k: string]: unknown;
20194
- }
20195
- }
20196
- }
20197
- }
20198
- }
20199
- }
20200
20262
  }
20201
20263
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.70.0';
1
+ export declare const MittwaldAPIClientVersion = '4.72.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.71.0",
3
+ "version": "4.73.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "987726703d6d5dad4a824adf61b56a8b1a3cc7f4"
83
+ "gitHead": "86a7d0f9c104421ecc3254fe21654795d1a83360"
84
84
  }