@mittwald/api-client 4.214.1 → 4.216.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;
@@ -857,6 +858,13 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
857
858
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
858
859
  };
859
860
  declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
861
+ /** Get a Contributor. */
862
+ extensionGetContributor: (conf: {
863
+ contributorId: string;
864
+ headers?: {
865
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
866
+ } | undefined;
867
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>>;
860
868
  /** Get Contributor Billing Information. */
861
869
  contributorGetBillingInformation: (conf: {
862
870
  contributorId: string;
@@ -890,6 +898,19 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
890
898
  }) => import("@mittwald/react-use-promise").AsyncResource<{
891
899
  url?: string | undefined;
892
900
  }>;
901
+ /** List ContractPartners of the contributor. */
902
+ contributorListContractPartnersOfContributor: (conf: {
903
+ contributorId: string;
904
+ headers?: {
905
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
906
+ "x-access-token"?: string | undefined;
907
+ } | undefined;
908
+ queryParameters?: {
909
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
910
+ extensionId?: string | undefined;
911
+ extensionInstanceId?: string | undefined;
912
+ } | undefined;
913
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
893
914
  /** List incoming Invoices of a Contributor. */
894
915
  contributorListIncomingInvoices: (conf: {
895
916
  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,82 @@ 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
+ context?: "project" | "customer";
1071
+ extensionId?: string;
1072
+ referencedId?: string;
1078
1073
  }[]>;
1079
- /** Get an Extension. */
1080
- extensionGetExtension: (conf: {
1081
- extensionId: string;
1074
+ /** Get the Contract Strategy of an Extension Instance */
1075
+ extensionGetExtensionInstanceContract: (conf: {
1076
+ extensionInstanceId: string;
1082
1077
  headers?: {
1083
1078
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1079
+ "x-access-token"?: string | undefined;
1084
1080
  } | 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;
1081
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1082
+ currentPrice?: number | undefined;
1083
+ interactionDeadline?: string | undefined;
1084
+ interactionRequired: boolean;
1085
+ status: "notStarted" | "pending" | "active" | "terminationPending";
1086
+ terminationTargetDate?: string | undefined;
1087
+ }>;
1088
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
1089
+ extensionGetExtensionInstanceForCustomer: (conf: {
1090
+ customerId: string;
1089
1091
  extensionId: string;
1090
1092
  headers?: {
1091
1093
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1110,9 +1112,10 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1110
1112
  pendingInstallation: boolean;
1111
1113
  pendingRemoval: boolean;
1112
1114
  }>;
1113
- /** Get an ExtensionInstance. */
1114
- extensionGetExtensionInstance: (conf: {
1115
- extensionInstanceId: string;
1115
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
1116
+ extensionGetExtensionInstanceForProject: (conf: {
1117
+ projectId: string;
1118
+ extensionId: string;
1116
1119
  headers?: {
1117
1120
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1118
1121
  "x-access-token"?: string | undefined;
@@ -1136,78 +1139,45 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1136
1139
  pendingInstallation: boolean;
1137
1140
  pendingRemoval: boolean;
1138
1141
  }>;
1139
- /** List ExtensionInstances. */
1140
- extensionListExtensionInstances: (conf?: {
1142
+ /** Get an Extension. */
1143
+ extensionGetExtension: (conf: {
1144
+ extensionId: string;
1141
1145
  headers?: {
1142
1146
  [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
1147
  } | 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;
1148
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>>;
1149
+ /** Get all open extension orders for given project */
1150
+ extensionGetProjectExtensionInstanceOrders: (conf: {
1151
+ projectId: string;
1162
1152
  headers?: {
1163
1153
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1164
1154
  "x-access-token"?: string | undefined;
1165
1155
  } | undefined;
1166
1156
  }) => 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;
1157
+ context?: "project" | "customer";
1158
+ extensionId?: string;
1159
+ referencedId?: string;
1160
+ }[]>;
1161
+ /** Get the public key to verify the webhook signature. */
1162
+ extensionGetPublicKey: (conf: {
1163
+ serial: string;
1164
+ headers?: {
1165
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1180
1166
  } | 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 | {};
1167
+ queryParameters?: {
1168
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1169
+ purpose?: "webhook" | "session_token" | undefined;
1170
+ format?: "raw" | "spki" | undefined;
1191
1171
  } | 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;
1172
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1173
+ algorithm: string;
1174
+ key: string;
1175
+ serial: string;
1204
1176
  }>;
1205
- /** List Extensions of own contributor. */
1206
- extensionListOwnExtensions: (conf: {
1207
- contributorId: string;
1177
+ /** List Contributors. */
1178
+ extensionListContributors: (conf?: {
1208
1179
  headers?: {
1209
1180
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1210
- "x-access-token"?: string | undefined;
1211
1181
  } | undefined;
1212
1182
  queryParameters?: {
1213
1183
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1215,7 +1185,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1215
1185
  skip?: number | undefined;
1216
1186
  page?: number | undefined;
1217
1187
  } | undefined;
1218
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
1188
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
1219
1189
  /** List Extensions. */
1220
1190
  extensionListExtensions: (conf?: {
1221
1191
  headers?: {
@@ -1233,6 +1203,41 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1233
1203
  order?: "asc" | "desc" | undefined;
1234
1204
  } | undefined;
1235
1205
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
1206
+ /** List Extensions of own contributor. */
1207
+ extensionListOwnExtensions: (conf: {
1208
+ contributorId: string;
1209
+ headers?: {
1210
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1211
+ "x-access-token"?: string | undefined;
1212
+ } | undefined;
1213
+ queryParameters?: {
1214
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1215
+ limit?: number | undefined;
1216
+ skip?: number | undefined;
1217
+ page?: number | undefined;
1218
+ } | undefined;
1219
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
1220
+ /** List Scopes. */
1221
+ extensionListScopes: (conf?: {
1222
+ headers?: {
1223
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1224
+ } | undefined;
1225
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
1226
+ name: string;
1227
+ }[]>;
1228
+ /** Get payment method details */
1229
+ customerGetPaymentMethod: (conf: {
1230
+ customerId: string;
1231
+ headers?: {
1232
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1233
+ "x-access-token"?: string | undefined;
1234
+ } | undefined;
1235
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1236
+ cardDetails?: {
1237
+ brand: string;
1238
+ last4: string;
1239
+ } | undefined;
1240
+ }>;
1236
1241
  };
1237
1242
  declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
1238
1243
  /** Get all conversation the authenticated user has created or has access to. */
@@ -2242,7 +2247,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2242
2247
  limit?: number | undefined;
2243
2248
  skip?: number | undefined;
2244
2249
  page?: number | undefined;
2245
- sort?: "potential" | "relevance" | undefined;
2250
+ sort?: "potential" | "relevance" | "company" | undefined;
2246
2251
  order?: "asc" | "desc" | undefined;
2247
2252
  } | undefined;
2248
2253
  }) => import("@mittwald/react-use-promise").AsyncResource<{