@mittwald/api-client 4.214.1 → 4.215.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.
@@ -34,6 +34,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
34
34
  lockedBy?: {
35
35
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
36
36
  } | undefined;
37
+ phase: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPhase;
37
38
  projectId: string;
38
39
  screenshotId?: string | undefined;
39
40
  screenshotRef?: string | undefined;
@@ -890,6 +891,19 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
890
891
  }) => import("@mittwald/react-use-promise").AsyncResource<{
891
892
  url?: string | undefined;
892
893
  }>;
894
+ /** List ContractPartners of the contributor. */
895
+ contributorListContractPartnersOfContributor: (conf: {
896
+ contributorId: string;
897
+ headers?: {
898
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
899
+ "x-access-token"?: string | undefined;
900
+ } | undefined;
901
+ queryParameters?: {
902
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
903
+ extensionId?: string | undefined;
904
+ extensionInstanceId?: string | undefined;
905
+ } | undefined;
906
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
893
907
  /** List incoming Invoices of a Contributor. */
894
908
  contributorListIncomingInvoices: (conf: {
895
909
  contributorId: string;
@@ -934,6 +948,13 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
934
948
  totalNet: number;
935
949
  webLink: string;
936
950
  }[]>;
951
+ /** Get a Contributor. */
952
+ extensionGetContributor: (conf: {
953
+ contributorId: string;
954
+ headers?: {
955
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
956
+ } | undefined;
957
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>>;
937
958
  /** Request an Access Token for the Incoming Invoice file. */
938
959
  contributorReceiptGetFileAccessToken: (conf: {
939
960
  contributorId: string;
@@ -946,86 +967,28 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
946
967
  accessToken: string;
947
968
  expiresAt: string;
948
969
  }>;
949
- /** Get all open extension orders for given customer */
950
- extensionGetCustomerExtensionInstanceOrders: (conf: {
951
- customerId: string;
952
- headers?: {
953
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
954
- "x-access-token"?: string | undefined;
955
- } | undefined;
956
- }) => import("@mittwald/react-use-promise").AsyncResource<{
957
- extensionId?: string;
958
- }[]>;
959
- /** Get the Contract Strategy of an Extension Instance */
960
- extensionGetExtensionInstanceContract: (conf: {
961
- extensionInstanceId: string;
962
- headers?: {
963
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
964
- "x-access-token"?: string | undefined;
965
- } | undefined;
966
- }) => import("@mittwald/react-use-promise").AsyncResource<{
967
- currentPrice?: number | undefined;
968
- interactionDeadline?: string | undefined;
969
- interactionRequired: boolean;
970
- status: "notStarted" | "pending" | "active" | "terminationPending";
971
- terminationTargetDate?: string | undefined;
972
- }>;
973
- /** Get all open extension orders for given project */
974
- extensionGetProjectExtensionInstanceOrders: (conf: {
975
- projectId: string;
976
- headers?: {
977
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
978
- "x-access-token"?: string | undefined;
979
- } | undefined;
980
- }) => import("@mittwald/react-use-promise").AsyncResource<{
981
- extensionId?: string;
982
- }[]>;
983
- /** Get payment method details */
984
- customerGetPaymentMethod: (conf: {
985
- customerId: string;
986
- headers?: {
987
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
988
- "x-access-token"?: string | undefined;
989
- } | undefined;
990
- }) => import("@mittwald/react-use-promise").AsyncResource<{
991
- cardDetails?: {
992
- brand: string;
993
- last4: string;
994
- } | undefined;
995
- }>;
996
- /** List ContractPartners of the contributor. */
997
- contributorListContractPartnersOfContributor: (conf: {
998
- contributorId: string;
970
+ /** List ExtensionInstances. */
971
+ extensionListExtensionInstances: (conf?: {
999
972
  headers?: {
1000
973
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1001
974
  "x-access-token"?: string | undefined;
1002
975
  } | undefined;
1003
976
  queryParameters?: {
1004
977
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
978
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
979
+ contextId?: string | undefined;
1005
980
  extensionId?: string | undefined;
1006
- extensionInstanceId?: string | undefined;
1007
- } | undefined;
1008
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
1009
- /** Get the public key to verify the webhook signature. */
1010
- extensionGetPublicKey: (conf: {
1011
- serial: string;
1012
- headers?: {
1013
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1014
- } | undefined;
1015
- queryParameters?: {
1016
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1017
- purpose?: "webhook" | "session_token" | undefined;
1018
- format?: "raw" | "spki" | undefined;
981
+ searchTerm?: string | undefined;
982
+ limit?: number | undefined;
983
+ skip?: number | undefined;
984
+ page?: number | undefined;
985
+ sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
986
+ order?: ("asc" | "desc")[] | undefined;
1019
987
  } | undefined;
1020
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1021
- algorithm: string;
1022
- key: string;
1023
- serial: string;
1024
- }>;
1025
- /** Get the ExtensionInstance of a specific customer and extension, if existing. */
1026
- extensionGetExtensionInstanceForCustomer: (conf: {
1027
- customerId: string;
1028
- extensionId: string;
988
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[]>;
989
+ /** Get an ExtensionInstance. */
990
+ extensionGetExtensionInstance: (conf: {
991
+ extensionInstanceId: string;
1029
992
  headers?: {
1030
993
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1031
994
  "x-access-token"?: string | undefined;
@@ -1049,43 +1012,80 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1049
1012
  pendingInstallation: boolean;
1050
1013
  pendingRemoval: boolean;
1051
1014
  }>;
1052
- /** List Contributors. */
1053
- extensionListContributors: (conf?: {
1015
+ /** Get Extension of own contributor. */
1016
+ extensionGetOwnExtension: (conf: {
1017
+ contributorId: string;
1018
+ extensionId: string;
1054
1019
  headers?: {
1055
1020
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1021
+ "x-access-token"?: string | undefined;
1056
1022
  } | undefined;
1057
- queryParameters?: {
1058
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1059
- limit?: number | undefined;
1060
- skip?: number | undefined;
1061
- page?: number | undefined;
1062
- } | undefined;
1063
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
1064
- /** Get a Contributor. */
1065
- extensionGetContributor: (conf: {
1023
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1024
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
1025
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
1026
+ blocked?: boolean | undefined;
1027
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
1066
1028
  contributorId: string;
1067
- headers?: {
1068
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1029
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
1030
+ description?: string | undefined;
1031
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
1032
+ disabled?: boolean | undefined;
1033
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
1034
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
1035
+ frontendFragments?: {
1036
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1069
1037
  } | undefined;
1070
- }) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>>;
1071
- /** List Scopes. */
1072
- extensionListScopes: (conf?: {
1038
+ functional: boolean;
1039
+ id: string;
1040
+ logoRefId?: string | undefined;
1041
+ name: string;
1042
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
1043
+ published: boolean;
1044
+ requestedChanges?: {
1045
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
1046
+ scopes?: string[];
1047
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
1048
+ } | undefined;
1049
+ scopes?: string[] | undefined;
1050
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
1051
+ state?: "enabled" | "blocked" | "disabled" | undefined;
1052
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
1053
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
1054
+ support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
1055
+ inherited: boolean;
1056
+ }) | undefined;
1057
+ tags?: string[] | undefined;
1058
+ verificationRequested: boolean;
1059
+ verified: boolean;
1060
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
1061
+ }>;
1062
+ /** Get all open extension orders for given customer */
1063
+ extensionGetCustomerExtensionInstanceOrders: (conf: {
1064
+ customerId: string;
1073
1065
  headers?: {
1074
1066
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1067
+ "x-access-token"?: string | undefined;
1075
1068
  } | undefined;
1076
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
1077
- name: string;
1069
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1070
+ extensionId?: string;
1078
1071
  }[]>;
1079
- /** Get an Extension. */
1080
- extensionGetExtension: (conf: {
1081
- extensionId: string;
1072
+ /** Get the Contract Strategy of an Extension Instance */
1073
+ extensionGetExtensionInstanceContract: (conf: {
1074
+ extensionInstanceId: string;
1082
1075
  headers?: {
1083
1076
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1077
+ "x-access-token"?: string | undefined;
1084
1078
  } | undefined;
1085
- }) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>>;
1086
- /** Get the ExtensionInstance of a specific project and extension, if existing. */
1087
- extensionGetExtensionInstanceForProject: (conf: {
1088
- projectId: string;
1079
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1080
+ currentPrice?: number | undefined;
1081
+ interactionDeadline?: string | undefined;
1082
+ interactionRequired: boolean;
1083
+ status: "notStarted" | "pending" | "active" | "terminationPending";
1084
+ terminationTargetDate?: string | undefined;
1085
+ }>;
1086
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
1087
+ extensionGetExtensionInstanceForCustomer: (conf: {
1088
+ customerId: string;
1089
1089
  extensionId: string;
1090
1090
  headers?: {
1091
1091
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1110,9 +1110,10 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1110
1110
  pendingInstallation: boolean;
1111
1111
  pendingRemoval: boolean;
1112
1112
  }>;
1113
- /** Get an ExtensionInstance. */
1114
- extensionGetExtensionInstance: (conf: {
1115
- extensionInstanceId: string;
1113
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
1114
+ extensionGetExtensionInstanceForProject: (conf: {
1115
+ projectId: string;
1116
+ extensionId: string;
1116
1117
  headers?: {
1117
1118
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1118
1119
  "x-access-token"?: string | undefined;
@@ -1136,78 +1137,43 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1136
1137
  pendingInstallation: boolean;
1137
1138
  pendingRemoval: boolean;
1138
1139
  }>;
1139
- /** List ExtensionInstances. */
1140
- extensionListExtensionInstances: (conf?: {
1140
+ /** Get an Extension. */
1141
+ extensionGetExtension: (conf: {
1142
+ extensionId: string;
1141
1143
  headers?: {
1142
1144
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1143
- "x-access-token"?: string | undefined;
1144
- } | undefined;
1145
- queryParameters?: {
1146
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1147
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
1148
- contextId?: string | undefined;
1149
- extensionId?: string | undefined;
1150
- searchTerm?: string | undefined;
1151
- limit?: number | undefined;
1152
- skip?: number | undefined;
1153
- page?: number | undefined;
1154
- sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
1155
- order?: ("asc" | "desc")[] | undefined;
1156
1145
  } | undefined;
1157
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[]>;
1158
- /** Get Extension of own contributor. */
1159
- extensionGetOwnExtension: (conf: {
1160
- contributorId: string;
1161
- extensionId: string;
1146
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>>;
1147
+ /** Get all open extension orders for given project */
1148
+ extensionGetProjectExtensionInstanceOrders: (conf: {
1149
+ projectId: string;
1162
1150
  headers?: {
1163
1151
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1164
1152
  "x-access-token"?: string | undefined;
1165
1153
  } | undefined;
1166
1154
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1167
- assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
1168
- backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
1169
- blocked?: boolean | undefined;
1170
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
1171
- contributorId: string;
1172
- deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
1173
- description?: string | undefined;
1174
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
1175
- disabled?: boolean | undefined;
1176
- externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
1177
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
1178
- frontendFragments?: {
1179
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1155
+ extensionId?: string;
1156
+ }[]>;
1157
+ /** Get the public key to verify the webhook signature. */
1158
+ extensionGetPublicKey: (conf: {
1159
+ serial: string;
1160
+ headers?: {
1161
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1180
1162
  } | undefined;
1181
- functional: boolean;
1182
- id: string;
1183
- logoRefId?: string | undefined;
1184
- name: string;
1185
- pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
1186
- published: boolean;
1187
- requestedChanges?: {
1188
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
1189
- scopes?: string[];
1190
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
1163
+ queryParameters?: {
1164
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1165
+ purpose?: "webhook" | "session_token" | undefined;
1166
+ format?: "raw" | "spki" | undefined;
1191
1167
  } | undefined;
1192
- scopes?: string[] | undefined;
1193
- secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
1194
- state?: "enabled" | "blocked" | "disabled" | undefined;
1195
- statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
1196
- subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
1197
- support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
1198
- inherited: boolean;
1199
- }) | undefined;
1200
- tags?: string[] | undefined;
1201
- verificationRequested: boolean;
1202
- verified: boolean;
1203
- webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
1168
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1169
+ algorithm: string;
1170
+ key: string;
1171
+ serial: string;
1204
1172
  }>;
1205
- /** List Extensions of own contributor. */
1206
- extensionListOwnExtensions: (conf: {
1207
- contributorId: string;
1173
+ /** List Contributors. */
1174
+ extensionListContributors: (conf?: {
1208
1175
  headers?: {
1209
1176
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1210
- "x-access-token"?: string | undefined;
1211
1177
  } | undefined;
1212
1178
  queryParameters?: {
1213
1179
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1215,7 +1181,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1215
1181
  skip?: number | undefined;
1216
1182
  page?: number | undefined;
1217
1183
  } | undefined;
1218
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
1184
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
1219
1185
  /** List Extensions. */
1220
1186
  extensionListExtensions: (conf?: {
1221
1187
  headers?: {
@@ -1233,6 +1199,41 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1233
1199
  order?: "asc" | "desc" | undefined;
1234
1200
  } | undefined;
1235
1201
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
1202
+ /** List Extensions of own contributor. */
1203
+ extensionListOwnExtensions: (conf: {
1204
+ contributorId: string;
1205
+ headers?: {
1206
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1207
+ "x-access-token"?: string | undefined;
1208
+ } | undefined;
1209
+ queryParameters?: {
1210
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1211
+ limit?: number | undefined;
1212
+ skip?: number | undefined;
1213
+ page?: number | undefined;
1214
+ } | undefined;
1215
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
1216
+ /** List Scopes. */
1217
+ extensionListScopes: (conf?: {
1218
+ headers?: {
1219
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1220
+ } | undefined;
1221
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
1222
+ name: string;
1223
+ }[]>;
1224
+ /** Get payment method details */
1225
+ customerGetPaymentMethod: (conf: {
1226
+ customerId: string;
1227
+ headers?: {
1228
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1229
+ "x-access-token"?: string | undefined;
1230
+ } | undefined;
1231
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1232
+ cardDetails?: {
1233
+ brand: string;
1234
+ last4: string;
1235
+ } | undefined;
1236
+ }>;
1236
1237
  };
1237
1238
  declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
1238
1239
  /** Get all conversation the authenticated user has created or has access to. */