@mittwald/api-client 4.234.0 → 4.236.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.
- package/dist/esm/generated/v2/client-react.js +4 -0
- package/dist/esm/generated/v2/client.js +6 -0
- package/dist/esm/generated/v2/descriptors.js +18 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +39 -3
- package/dist/types/generated/v2/client.d.ts +233 -9
- package/dist/types/generated/v2/descriptors.d.ts +6 -0
- package/dist/types/generated/v2/types.d.ts +245 -5
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -70,6 +70,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
70
70
|
listStacks: new ApiCallAsyncResourceFactory(descriptors.containerListStacks, baseClient.container.listStacks).getApiResource,
|
|
71
71
|
/** List Volumes belonging to a Project. */
|
|
72
72
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
73
|
+
/** List Volumes belonging to a Stack. */
|
|
74
|
+
listStackVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListStackVolumes, baseClient.container.listStackVolumes).getApiResource,
|
|
73
75
|
});
|
|
74
76
|
const buildContractApi = (baseClient) => ({
|
|
75
77
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -292,6 +294,8 @@ const buildLeadFyndrApi = (baseClient) => ({
|
|
|
292
294
|
leadfyndrListLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListLeads, baseClient.leadFyndr.leadfyndrListLeads).getApiResource,
|
|
293
295
|
/** Get all unlocked leads. Organisation can unlock leads. */
|
|
294
296
|
leadfyndrListUnlockedLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListUnlockedLeads, baseClient.leadFyndr.leadfyndrListUnlockedLeads).getApiResource,
|
|
297
|
+
/** Get unlocked leads export history for the given customerId. */
|
|
298
|
+
leadfyndrGetLeadsExportHistory: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadsExportHistory, baseClient.leadFyndr.leadfyndrGetLeadsExportHistory).getApiResource,
|
|
295
299
|
});
|
|
296
300
|
const buildMailApi = (baseClient) => ({
|
|
297
301
|
/** List DeliveryBoxes belonging to a Project. */
|
|
@@ -137,6 +137,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
137
137
|
validateContainerRegistryUri: this.requestFunctionFactory(descriptors.containerValidateContainerRegistryUri),
|
|
138
138
|
/** Validate a Registries' credentials. */
|
|
139
139
|
validateRegistryCredentials: this.requestFunctionFactory(descriptors.containerValidateRegistryCredentials),
|
|
140
|
+
/** List Volumes belonging to a Stack. */
|
|
141
|
+
listStackVolumes: this.requestFunctionFactory(descriptors.containerListStackVolumes),
|
|
140
142
|
};
|
|
141
143
|
/** The contract API allows you to manage your contracts and orders */
|
|
142
144
|
contract = {
|
|
@@ -779,6 +781,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
779
781
|
leadfyndrReserveUnlockedLead: this.requestFunctionFactory(descriptors.leadfyndrReserveUnlockedLead),
|
|
780
782
|
/** Removes a reservation on a unlocked lead for the given customerId. */
|
|
781
783
|
leadfyndrRemoveUnlockedLeadReservation: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservation),
|
|
784
|
+
/** Get unlocked leads export history for the given customerId. */
|
|
785
|
+
leadfyndrGetLeadsExportHistory: this.requestFunctionFactory(descriptors.leadfyndrGetLeadsExportHistory),
|
|
786
|
+
/** Create an export of unlocked leads for the given customerId. */
|
|
787
|
+
leadfyndrCreateLeadsExport: this.requestFunctionFactory(descriptors.leadfyndrCreateLeadsExport),
|
|
782
788
|
};
|
|
783
789
|
/** API endpoints that are not related to any specific API domain */
|
|
784
790
|
misc = {
|
|
@@ -2548,3 +2548,21 @@ export const verificationVerifyCompany = {
|
|
|
2548
2548
|
method: "POST",
|
|
2549
2549
|
operationId: "verification-verify-company",
|
|
2550
2550
|
};
|
|
2551
|
+
/** Get unlocked leads export history for the given customerId. */
|
|
2552
|
+
export const leadfyndrGetLeadsExportHistory = {
|
|
2553
|
+
path: "/v2/customers/{customerId}/unlocked-leads-exports",
|
|
2554
|
+
method: "GET",
|
|
2555
|
+
operationId: "leadfyndr-get-leads-export-history",
|
|
2556
|
+
};
|
|
2557
|
+
/** Create an export of unlocked leads for the given customerId. */
|
|
2558
|
+
export const leadfyndrCreateLeadsExport = {
|
|
2559
|
+
path: "/v2/customers/{customerId}/unlocked-leads-export",
|
|
2560
|
+
method: "POST",
|
|
2561
|
+
operationId: "leadfyndr-create-leads-export",
|
|
2562
|
+
};
|
|
2563
|
+
/** List Volumes belonging to a Stack. */
|
|
2564
|
+
export const containerListStackVolumes = {
|
|
2565
|
+
path: "/v2/stacks/{stackId}/volumes",
|
|
2566
|
+
method: "GET",
|
|
2567
|
+
operationId: "container-list-stack-volumes",
|
|
2568
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.235.0';
|
|
@@ -521,6 +521,22 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
521
521
|
page?: number | undefined;
|
|
522
522
|
} | undefined;
|
|
523
523
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
524
|
+
/** List Volumes belonging to a Stack. */
|
|
525
|
+
listStackVolumes: (conf: {
|
|
526
|
+
stackId: string;
|
|
527
|
+
headers?: {
|
|
528
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
529
|
+
"x-access-token"?: string | undefined;
|
|
530
|
+
} | undefined;
|
|
531
|
+
queryParameters?: {
|
|
532
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
533
|
+
searchTerm?: string | undefined;
|
|
534
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
535
|
+
limit?: number | undefined;
|
|
536
|
+
skip?: number | undefined;
|
|
537
|
+
page?: number | undefined;
|
|
538
|
+
} | undefined;
|
|
539
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
524
540
|
};
|
|
525
541
|
declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
526
542
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -732,6 +748,7 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
732
748
|
paymentSettings?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoicePaymentSettings | undefined;
|
|
733
749
|
pdfId: string;
|
|
734
750
|
recipient: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
|
|
751
|
+
reissuedBy?: string | undefined;
|
|
735
752
|
status: "NEW" | "CONFIRMED" | "DENIED" | "PAID" | "PARTIALLY_PAID" | "OVERPAID";
|
|
736
753
|
totalGross: number;
|
|
737
754
|
totalNet: number;
|
|
@@ -796,12 +813,12 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
796
813
|
} | undefined;
|
|
797
814
|
queryParameters?: {
|
|
798
815
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
799
|
-
limit?: number | undefined;
|
|
800
|
-
skip?: number | undefined;
|
|
801
|
-
page?: number | undefined;
|
|
802
816
|
includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
803
817
|
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
804
818
|
templateNames?: string[] | undefined;
|
|
819
|
+
limit?: number | undefined;
|
|
820
|
+
skip?: number | undefined;
|
|
821
|
+
page?: number | undefined;
|
|
805
822
|
} | undefined;
|
|
806
823
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
|
|
807
824
|
/** Get Order for Customer. */
|
|
@@ -1590,6 +1607,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1590
1607
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1591
1608
|
limit?: number | undefined;
|
|
1592
1609
|
skip?: number | undefined;
|
|
1610
|
+
page?: number | undefined;
|
|
1593
1611
|
} | undefined;
|
|
1594
1612
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
|
|
1595
1613
|
/** List CustomerMemberships belonging to the executing user. */
|
|
@@ -1602,6 +1620,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1602
1620
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1603
1621
|
limit?: number | undefined;
|
|
1604
1622
|
skip?: number | undefined;
|
|
1623
|
+
page?: number | undefined;
|
|
1605
1624
|
hasExpiry?: boolean | undefined;
|
|
1606
1625
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
1607
1626
|
} | undefined;
|
|
@@ -2286,6 +2305,21 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2286
2305
|
skip: number;
|
|
2287
2306
|
totalCount: number;
|
|
2288
2307
|
}>;
|
|
2308
|
+
/** Get unlocked leads export history for the given customerId. */
|
|
2309
|
+
leadfyndrGetLeadsExportHistory: (conf: {
|
|
2310
|
+
customerId: string;
|
|
2311
|
+
headers?: {
|
|
2312
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2313
|
+
} | undefined;
|
|
2314
|
+
queryParameters?: {
|
|
2315
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2316
|
+
limit?: number | undefined;
|
|
2317
|
+
skip?: number | undefined;
|
|
2318
|
+
page?: number | undefined;
|
|
2319
|
+
sort?: "exportedAt" | undefined;
|
|
2320
|
+
order?: "asc" | "desc" | undefined;
|
|
2321
|
+
} | undefined;
|
|
2322
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExport[]>;
|
|
2289
2323
|
};
|
|
2290
2324
|
declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2291
2325
|
/** List DeliveryBoxes belonging to a Project. */
|
|
@@ -2950,6 +2984,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2950
2984
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2951
2985
|
limit?: number | undefined;
|
|
2952
2986
|
skip?: number | undefined;
|
|
2987
|
+
page?: number | undefined;
|
|
2953
2988
|
} | undefined;
|
|
2954
2989
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[]>;
|
|
2955
2990
|
/** List ProjectMemberships belonging to the executing user. */
|
|
@@ -2962,6 +2997,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2962
2997
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2963
2998
|
limit?: number | undefined;
|
|
2964
2999
|
skip?: number | undefined;
|
|
3000
|
+
page?: number | undefined;
|
|
2965
3001
|
hasExpiry?: boolean | undefined;
|
|
2966
3002
|
isInherited?: boolean | undefined;
|
|
2967
3003
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
@@ -4114,6 +4114,86 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4114
4114
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4115
4115
|
[x: string]: unknown;
|
|
4116
4116
|
}, 500, "application/json">>>;
|
|
4117
|
+
/** List Volumes belonging to a Stack. */
|
|
4118
|
+
listStackVolumes: (request: {
|
|
4119
|
+
stackId: string;
|
|
4120
|
+
headers?: {
|
|
4121
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4122
|
+
"x-access-token"?: string | undefined;
|
|
4123
|
+
} | undefined;
|
|
4124
|
+
queryParameters?: {
|
|
4125
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4126
|
+
searchTerm?: string | undefined;
|
|
4127
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
4128
|
+
limit?: number | undefined;
|
|
4129
|
+
skip?: number | undefined;
|
|
4130
|
+
page?: number | undefined;
|
|
4131
|
+
} | undefined;
|
|
4132
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4133
|
+
headers?: Partial<{
|
|
4134
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4135
|
+
}>;
|
|
4136
|
+
} & {
|
|
4137
|
+
pathParameters: {
|
|
4138
|
+
stackId: string;
|
|
4139
|
+
};
|
|
4140
|
+
} & {
|
|
4141
|
+
queryParameters: {
|
|
4142
|
+
searchTerm?: string | undefined;
|
|
4143
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
4144
|
+
limit?: number | undefined;
|
|
4145
|
+
skip?: number | undefined;
|
|
4146
|
+
page?: number | undefined;
|
|
4147
|
+
} & Partial<{
|
|
4148
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4149
|
+
}>;
|
|
4150
|
+
} & {
|
|
4151
|
+
headers: {
|
|
4152
|
+
"x-access-token"?: string | undefined;
|
|
4153
|
+
} & Partial<{
|
|
4154
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4155
|
+
}>;
|
|
4156
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4157
|
+
[x: string]: unknown;
|
|
4158
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4159
|
+
[x: string]: unknown;
|
|
4160
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4161
|
+
[x: string]: unknown;
|
|
4162
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4163
|
+
[x: string]: unknown;
|
|
4164
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4165
|
+
headers?: Partial<{
|
|
4166
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4167
|
+
}>;
|
|
4168
|
+
} & {
|
|
4169
|
+
pathParameters: {
|
|
4170
|
+
stackId: string;
|
|
4171
|
+
};
|
|
4172
|
+
} & {
|
|
4173
|
+
queryParameters: {
|
|
4174
|
+
searchTerm?: string | undefined;
|
|
4175
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
4176
|
+
limit?: number | undefined;
|
|
4177
|
+
skip?: number | undefined;
|
|
4178
|
+
page?: number | undefined;
|
|
4179
|
+
} & Partial<{
|
|
4180
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4181
|
+
}>;
|
|
4182
|
+
} & {
|
|
4183
|
+
headers: {
|
|
4184
|
+
"x-access-token"?: string | undefined;
|
|
4185
|
+
} & Partial<{
|
|
4186
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4187
|
+
}>;
|
|
4188
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4189
|
+
[x: string]: unknown;
|
|
4190
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4191
|
+
[x: string]: unknown;
|
|
4192
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4193
|
+
[x: string]: unknown;
|
|
4194
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4195
|
+
[x: string]: unknown;
|
|
4196
|
+
}, 500, "application/json">>>;
|
|
4117
4197
|
};
|
|
4118
4198
|
/** The contract API allows you to manage your contracts and orders */
|
|
4119
4199
|
readonly contract: {
|
|
@@ -5178,6 +5258,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5178
5258
|
paymentSettings?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoicePaymentSettings | undefined;
|
|
5179
5259
|
pdfId: string;
|
|
5180
5260
|
recipient: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
|
|
5261
|
+
reissuedBy?: string | undefined;
|
|
5181
5262
|
status: "NEW" | "CONFIRMED" | "DENIED" | "PAID" | "PARTIALLY_PAID" | "OVERPAID";
|
|
5182
5263
|
totalGross: number;
|
|
5183
5264
|
totalNet: number;
|
|
@@ -5220,6 +5301,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5220
5301
|
paymentSettings?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoicePaymentSettings | undefined;
|
|
5221
5302
|
pdfId: string;
|
|
5222
5303
|
recipient: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
|
|
5304
|
+
reissuedBy?: string | undefined;
|
|
5223
5305
|
status: "NEW" | "CONFIRMED" | "DENIED" | "PAID" | "PARTIALLY_PAID" | "OVERPAID";
|
|
5224
5306
|
totalGross: number;
|
|
5225
5307
|
totalNet: number;
|
|
@@ -5578,12 +5660,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5578
5660
|
} | undefined;
|
|
5579
5661
|
queryParameters?: {
|
|
5580
5662
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5581
|
-
limit?: number | undefined;
|
|
5582
|
-
skip?: number | undefined;
|
|
5583
|
-
page?: number | undefined;
|
|
5584
5663
|
includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
5585
5664
|
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
5586
5665
|
templateNames?: string[] | undefined;
|
|
5666
|
+
limit?: number | undefined;
|
|
5667
|
+
skip?: number | undefined;
|
|
5668
|
+
page?: number | undefined;
|
|
5587
5669
|
} | undefined;
|
|
5588
5670
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5589
5671
|
headers?: Partial<{
|
|
@@ -5591,12 +5673,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5591
5673
|
}>;
|
|
5592
5674
|
} & {
|
|
5593
5675
|
queryParameters: {
|
|
5594
|
-
limit?: number | undefined;
|
|
5595
|
-
skip?: number | undefined;
|
|
5596
|
-
page?: number | undefined;
|
|
5597
5676
|
includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
5598
5677
|
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
5599
5678
|
templateNames?: string[] | undefined;
|
|
5679
|
+
limit?: number | undefined;
|
|
5680
|
+
skip?: number | undefined;
|
|
5681
|
+
page?: number | undefined;
|
|
5600
5682
|
} & Partial<{
|
|
5601
5683
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5602
5684
|
}>;
|
|
@@ -5614,12 +5696,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5614
5696
|
}>;
|
|
5615
5697
|
} & {
|
|
5616
5698
|
queryParameters: {
|
|
5617
|
-
limit?: number | undefined;
|
|
5618
|
-
skip?: number | undefined;
|
|
5619
|
-
page?: number | undefined;
|
|
5620
5699
|
includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
5621
5700
|
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
5622
5701
|
templateNames?: string[] | undefined;
|
|
5702
|
+
limit?: number | undefined;
|
|
5703
|
+
skip?: number | undefined;
|
|
5704
|
+
page?: number | undefined;
|
|
5623
5705
|
} & Partial<{
|
|
5624
5706
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5625
5707
|
}>;
|
|
@@ -12994,6 +13076,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12994
13076
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
12995
13077
|
limit?: number | undefined;
|
|
12996
13078
|
skip?: number | undefined;
|
|
13079
|
+
page?: number | undefined;
|
|
12997
13080
|
} | undefined;
|
|
12998
13081
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
12999
13082
|
headers?: Partial<{
|
|
@@ -13003,6 +13086,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13003
13086
|
queryParameters: {
|
|
13004
13087
|
limit?: number | undefined;
|
|
13005
13088
|
skip?: number | undefined;
|
|
13089
|
+
page?: number | undefined;
|
|
13006
13090
|
} & Partial<{
|
|
13007
13091
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13008
13092
|
}>;
|
|
@@ -13026,6 +13110,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13026
13110
|
queryParameters: {
|
|
13027
13111
|
limit?: number | undefined;
|
|
13028
13112
|
skip?: number | undefined;
|
|
13113
|
+
page?: number | undefined;
|
|
13029
13114
|
} & Partial<{
|
|
13030
13115
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13031
13116
|
}>;
|
|
@@ -13052,6 +13137,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13052
13137
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
13053
13138
|
limit?: number | undefined;
|
|
13054
13139
|
skip?: number | undefined;
|
|
13140
|
+
page?: number | undefined;
|
|
13055
13141
|
hasExpiry?: boolean | undefined;
|
|
13056
13142
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
13057
13143
|
} | undefined;
|
|
@@ -13063,6 +13149,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13063
13149
|
queryParameters: {
|
|
13064
13150
|
limit?: number | undefined;
|
|
13065
13151
|
skip?: number | undefined;
|
|
13152
|
+
page?: number | undefined;
|
|
13066
13153
|
hasExpiry?: boolean | undefined;
|
|
13067
13154
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
13068
13155
|
} & Partial<{
|
|
@@ -13088,6 +13175,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13088
13175
|
queryParameters: {
|
|
13089
13176
|
limit?: number | undefined;
|
|
13090
13177
|
skip?: number | undefined;
|
|
13178
|
+
page?: number | undefined;
|
|
13091
13179
|
hasExpiry?: boolean | undefined;
|
|
13092
13180
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
13093
13181
|
} & Partial<{
|
|
@@ -23535,6 +23623,136 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23535
23623
|
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23536
23624
|
[x: string]: unknown;
|
|
23537
23625
|
}, 429, "application/json">>>;
|
|
23626
|
+
/** Get unlocked leads export history for the given customerId. */
|
|
23627
|
+
leadfyndrGetLeadsExportHistory: (request: {
|
|
23628
|
+
customerId: string;
|
|
23629
|
+
headers?: {
|
|
23630
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23631
|
+
} | undefined;
|
|
23632
|
+
queryParameters?: {
|
|
23633
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23634
|
+
limit?: number | undefined;
|
|
23635
|
+
skip?: number | undefined;
|
|
23636
|
+
page?: number | undefined;
|
|
23637
|
+
sort?: "exportedAt" | undefined;
|
|
23638
|
+
order?: "asc" | "desc" | undefined;
|
|
23639
|
+
} | undefined;
|
|
23640
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23641
|
+
headers?: Partial<{
|
|
23642
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23643
|
+
}>;
|
|
23644
|
+
} & {
|
|
23645
|
+
pathParameters: {
|
|
23646
|
+
customerId: string;
|
|
23647
|
+
};
|
|
23648
|
+
} & {
|
|
23649
|
+
queryParameters: {
|
|
23650
|
+
limit?: number | undefined;
|
|
23651
|
+
skip?: number | undefined;
|
|
23652
|
+
page?: number | undefined;
|
|
23653
|
+
sort?: "exportedAt" | undefined;
|
|
23654
|
+
order?: "asc" | "desc" | undefined;
|
|
23655
|
+
} & Partial<{
|
|
23656
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23657
|
+
}>;
|
|
23658
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExport[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23659
|
+
[x: string]: unknown;
|
|
23660
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23661
|
+
[x: string]: unknown;
|
|
23662
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23663
|
+
[x: string]: unknown;
|
|
23664
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23665
|
+
[x: string]: unknown;
|
|
23666
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23667
|
+
headers?: Partial<{
|
|
23668
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23669
|
+
}>;
|
|
23670
|
+
} & {
|
|
23671
|
+
pathParameters: {
|
|
23672
|
+
customerId: string;
|
|
23673
|
+
};
|
|
23674
|
+
} & {
|
|
23675
|
+
queryParameters: {
|
|
23676
|
+
limit?: number | undefined;
|
|
23677
|
+
skip?: number | undefined;
|
|
23678
|
+
page?: number | undefined;
|
|
23679
|
+
sort?: "exportedAt" | undefined;
|
|
23680
|
+
order?: "asc" | "desc" | undefined;
|
|
23681
|
+
} & Partial<{
|
|
23682
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23683
|
+
}>;
|
|
23684
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExport[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23685
|
+
[x: string]: unknown;
|
|
23686
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23687
|
+
[x: string]: unknown;
|
|
23688
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23689
|
+
[x: string]: unknown;
|
|
23690
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23691
|
+
[x: string]: unknown;
|
|
23692
|
+
}, 429, "application/json">>>;
|
|
23693
|
+
/** Create an export of unlocked leads for the given customerId. */
|
|
23694
|
+
leadfyndrCreateLeadsExport: (request: {
|
|
23695
|
+
data: {
|
|
23696
|
+
exportAllLeads: boolean;
|
|
23697
|
+
fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
|
|
23698
|
+
};
|
|
23699
|
+
customerId: string;
|
|
23700
|
+
headers?: {
|
|
23701
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23702
|
+
} | undefined;
|
|
23703
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23704
|
+
data: {
|
|
23705
|
+
exportAllLeads: boolean;
|
|
23706
|
+
fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
|
|
23707
|
+
};
|
|
23708
|
+
} & {
|
|
23709
|
+
pathParameters: {
|
|
23710
|
+
customerId: string;
|
|
23711
|
+
};
|
|
23712
|
+
} & {
|
|
23713
|
+
headers?: Partial<{
|
|
23714
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23715
|
+
}>;
|
|
23716
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
23717
|
+
contentBase64: string;
|
|
23718
|
+
exportId: string;
|
|
23719
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<string, 200, "text/csv"> | import("@mittwald/api-client-commons").Response<{
|
|
23720
|
+
[x: string]: unknown;
|
|
23721
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23722
|
+
[x: string]: unknown;
|
|
23723
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23724
|
+
[x: string]: unknown;
|
|
23725
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23726
|
+
[x: string]: unknown;
|
|
23727
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23728
|
+
[x: string]: unknown;
|
|
23729
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23730
|
+
data: {
|
|
23731
|
+
exportAllLeads: boolean;
|
|
23732
|
+
fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
|
|
23733
|
+
};
|
|
23734
|
+
} & {
|
|
23735
|
+
pathParameters: {
|
|
23736
|
+
customerId: string;
|
|
23737
|
+
};
|
|
23738
|
+
} & {
|
|
23739
|
+
headers?: Partial<{
|
|
23740
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23741
|
+
}>;
|
|
23742
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
23743
|
+
contentBase64: string;
|
|
23744
|
+
exportId: string;
|
|
23745
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<string, 200, "text/csv"> | import("@mittwald/api-client-commons").Response<{
|
|
23746
|
+
[x: string]: unknown;
|
|
23747
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23748
|
+
[x: string]: unknown;
|
|
23749
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23750
|
+
[x: string]: unknown;
|
|
23751
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23752
|
+
[x: string]: unknown;
|
|
23753
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23754
|
+
[x: string]: unknown;
|
|
23755
|
+
}, 429, "application/json">>>;
|
|
23538
23756
|
};
|
|
23539
23757
|
/** API endpoints that are not related to any specific API domain */
|
|
23540
23758
|
readonly misc: {
|
|
@@ -25611,6 +25829,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25611
25829
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25612
25830
|
limit?: number | undefined;
|
|
25613
25831
|
skip?: number | undefined;
|
|
25832
|
+
page?: number | undefined;
|
|
25614
25833
|
} | undefined;
|
|
25615
25834
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25616
25835
|
headers?: Partial<{
|
|
@@ -25620,6 +25839,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25620
25839
|
queryParameters: {
|
|
25621
25840
|
limit?: number | undefined;
|
|
25622
25841
|
skip?: number | undefined;
|
|
25842
|
+
page?: number | undefined;
|
|
25623
25843
|
} & Partial<{
|
|
25624
25844
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25625
25845
|
}>;
|
|
@@ -25643,6 +25863,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25643
25863
|
queryParameters: {
|
|
25644
25864
|
limit?: number | undefined;
|
|
25645
25865
|
skip?: number | undefined;
|
|
25866
|
+
page?: number | undefined;
|
|
25646
25867
|
} & Partial<{
|
|
25647
25868
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25648
25869
|
}>;
|
|
@@ -25669,6 +25890,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25669
25890
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25670
25891
|
limit?: number | undefined;
|
|
25671
25892
|
skip?: number | undefined;
|
|
25893
|
+
page?: number | undefined;
|
|
25672
25894
|
hasExpiry?: boolean | undefined;
|
|
25673
25895
|
isInherited?: boolean | undefined;
|
|
25674
25896
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
@@ -25681,6 +25903,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25681
25903
|
queryParameters: {
|
|
25682
25904
|
limit?: number | undefined;
|
|
25683
25905
|
skip?: number | undefined;
|
|
25906
|
+
page?: number | undefined;
|
|
25684
25907
|
hasExpiry?: boolean | undefined;
|
|
25685
25908
|
isInherited?: boolean | undefined;
|
|
25686
25909
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
@@ -25707,6 +25930,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25707
25930
|
queryParameters: {
|
|
25708
25931
|
limit?: number | undefined;
|
|
25709
25932
|
skip?: number | undefined;
|
|
25933
|
+
page?: number | undefined;
|
|
25710
25934
|
hasExpiry?: boolean | undefined;
|
|
25711
25935
|
isInherited?: boolean | undefined;
|
|
25712
25936
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
@@ -853,3 +853,9 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
853
853
|
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">>;
|
|
854
854
|
/** Check if a company exists. */
|
|
855
855
|
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">>;
|
|
856
|
+
/** Get unlocked leads export history for the given customerId. */
|
|
857
|
+
export declare const leadfyndrGetLeadsExportHistory: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
858
|
+
/** Create an export of unlocked leads for the given customerId. */
|
|
859
|
+
export declare const leadfyndrCreateLeadsExport: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$200.Content.TextCsv>, 200, "text/csv"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
860
|
+
/** List Volumes belonging to a Stack. */
|
|
861
|
+
export declare const containerListStackVolumes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1702,6 +1702,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1702
1702
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1703
1703
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1704
1704
|
}
|
|
1705
|
+
namespace LeadfyndrGetLeadsExportHistory {
|
|
1706
|
+
type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLeadsExportHistory>;
|
|
1707
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLeadsExportHistory, TStatus>;
|
|
1708
|
+
}
|
|
1709
|
+
namespace LeadfyndrCreateLeadsExport {
|
|
1710
|
+
type RequestData = InferredRequestData<typeof descriptors.leadfyndrCreateLeadsExport>;
|
|
1711
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrCreateLeadsExport, TStatus>;
|
|
1712
|
+
}
|
|
1713
|
+
namespace ContainerListStackVolumes {
|
|
1714
|
+
type RequestData = InferredRequestData<typeof descriptors.containerListStackVolumes>;
|
|
1715
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStackVolumes, TStatus>;
|
|
1716
|
+
}
|
|
1705
1717
|
}
|
|
1706
1718
|
namespace Components {
|
|
1707
1719
|
namespace Schemas {
|
|
@@ -1985,7 +1997,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1985
1997
|
downloadURL?: string;
|
|
1986
1998
|
expiresAt?: string;
|
|
1987
1999
|
format: string;
|
|
1988
|
-
phase?: "
|
|
2000
|
+
phase?: "Pending" | "Exporting" | "Failed" | "Completed" | "Expired";
|
|
1989
2001
|
sha256Checksum?: string;
|
|
1990
2002
|
withPassword: boolean;
|
|
1991
2003
|
}
|
|
@@ -3743,7 +3755,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3743
3755
|
amountPaid: number;
|
|
3744
3756
|
cancellation?: MittwaldAPIV2.Components.Schemas.InvoiceCancellation;
|
|
3745
3757
|
/**
|
|
3746
|
-
* The ID of the
|
|
3758
|
+
* The ID of the Invoice that this invoice cancels.
|
|
3747
3759
|
*/
|
|
3748
3760
|
cancellationOf?: string;
|
|
3749
3761
|
currency: string;
|
|
@@ -3760,6 +3772,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3760
3772
|
paymentSettings?: MittwaldAPIV2.Components.Schemas.InvoicePaymentSettings;
|
|
3761
3773
|
pdfId: string;
|
|
3762
3774
|
recipient: MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
|
|
3775
|
+
/**
|
|
3776
|
+
* The ID of the Invoice that is a Reissue of this one.
|
|
3777
|
+
*/
|
|
3778
|
+
reissuedBy?: string;
|
|
3763
3779
|
status: "NEW" | "CONFIRMED" | "DENIED" | "PAID" | "PARTIALLY_PAID" | "OVERPAID";
|
|
3764
3780
|
totalGross: number;
|
|
3765
3781
|
totalNet: number;
|
|
@@ -5324,6 +5340,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5324
5340
|
}
|
|
5325
5341
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5326
5342
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5343
|
+
interface LeadfyndrLeadsExport {
|
|
5344
|
+
customerId: string;
|
|
5345
|
+
exportId: string;
|
|
5346
|
+
exportedAt: string;
|
|
5347
|
+
exportedBy?: MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExportExporter;
|
|
5348
|
+
/**
|
|
5349
|
+
* The number of leads included in the export.
|
|
5350
|
+
*/
|
|
5351
|
+
leadCount: number;
|
|
5352
|
+
}
|
|
5353
|
+
interface LeadfyndrLeadsExportExporter {
|
|
5354
|
+
avatarRefId?: string;
|
|
5355
|
+
person?: {
|
|
5356
|
+
firstName: string;
|
|
5357
|
+
lastName: string;
|
|
5358
|
+
};
|
|
5359
|
+
userId: string;
|
|
5360
|
+
}
|
|
5327
5361
|
interface CommonsAddress {
|
|
5328
5362
|
street: string;
|
|
5329
5363
|
houseNumber: string;
|
|
@@ -12281,6 +12315,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12281
12315
|
type Query = {
|
|
12282
12316
|
limit?: number;
|
|
12283
12317
|
skip?: number;
|
|
12318
|
+
page?: number;
|
|
12284
12319
|
};
|
|
12285
12320
|
}
|
|
12286
12321
|
namespace Responses {
|
|
@@ -12328,6 +12363,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12328
12363
|
type Query = {
|
|
12329
12364
|
limit?: number;
|
|
12330
12365
|
skip?: number;
|
|
12366
|
+
page?: number;
|
|
12331
12367
|
hasExpiry?: boolean;
|
|
12332
12368
|
role?: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
12333
12369
|
};
|
|
@@ -20756,12 +20792,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20756
20792
|
type Path = {};
|
|
20757
20793
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20758
20794
|
type Query = {
|
|
20759
|
-
limit?: number;
|
|
20760
|
-
skip?: number;
|
|
20761
|
-
page?: number;
|
|
20762
20795
|
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
20763
20796
|
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
20764
20797
|
templateNames?: string[];
|
|
20798
|
+
limit?: number;
|
|
20799
|
+
skip?: number;
|
|
20800
|
+
page?: number;
|
|
20765
20801
|
};
|
|
20766
20802
|
}
|
|
20767
20803
|
namespace Responses {
|
|
@@ -22802,6 +22838,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22802
22838
|
type Query = {
|
|
22803
22839
|
limit?: number;
|
|
22804
22840
|
skip?: number;
|
|
22841
|
+
page?: number;
|
|
22805
22842
|
};
|
|
22806
22843
|
}
|
|
22807
22844
|
namespace Responses {
|
|
@@ -22849,6 +22886,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22849
22886
|
type Query = {
|
|
22850
22887
|
limit?: number;
|
|
22851
22888
|
skip?: number;
|
|
22889
|
+
page?: number;
|
|
22852
22890
|
hasExpiry?: boolean;
|
|
22853
22891
|
isInherited?: boolean;
|
|
22854
22892
|
role?: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
@@ -26974,5 +27012,207 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26974
27012
|
}
|
|
26975
27013
|
}
|
|
26976
27014
|
}
|
|
27015
|
+
namespace ExperimentalV2CustomersCustomerIdUnlockedLeadsExports { }
|
|
27016
|
+
namespace V2ExperimentalCustomersCustomerIdUnlockedLeadsExports { }
|
|
27017
|
+
namespace V2CustomersCustomerIdUnlockedLeadsExports {
|
|
27018
|
+
namespace Get {
|
|
27019
|
+
namespace Parameters {
|
|
27020
|
+
type Path = {
|
|
27021
|
+
customerId: string;
|
|
27022
|
+
};
|
|
27023
|
+
type Header = {};
|
|
27024
|
+
type Query = {
|
|
27025
|
+
limit?: number;
|
|
27026
|
+
skip?: number;
|
|
27027
|
+
page?: number;
|
|
27028
|
+
sort?: "exportedAt";
|
|
27029
|
+
order?: "asc" | "desc";
|
|
27030
|
+
};
|
|
27031
|
+
}
|
|
27032
|
+
namespace Responses {
|
|
27033
|
+
namespace $200 {
|
|
27034
|
+
namespace Content {
|
|
27035
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExport[];
|
|
27036
|
+
}
|
|
27037
|
+
}
|
|
27038
|
+
namespace $400 {
|
|
27039
|
+
namespace Content {
|
|
27040
|
+
interface ApplicationJson {
|
|
27041
|
+
[k: string]: unknown;
|
|
27042
|
+
}
|
|
27043
|
+
}
|
|
27044
|
+
}
|
|
27045
|
+
namespace $403 {
|
|
27046
|
+
namespace Content {
|
|
27047
|
+
interface ApplicationJson {
|
|
27048
|
+
[k: string]: unknown;
|
|
27049
|
+
}
|
|
27050
|
+
}
|
|
27051
|
+
}
|
|
27052
|
+
namespace $404 {
|
|
27053
|
+
namespace Content {
|
|
27054
|
+
interface ApplicationJson {
|
|
27055
|
+
[k: string]: unknown;
|
|
27056
|
+
}
|
|
27057
|
+
}
|
|
27058
|
+
}
|
|
27059
|
+
namespace $429 {
|
|
27060
|
+
namespace Content {
|
|
27061
|
+
interface ApplicationJson {
|
|
27062
|
+
[k: string]: unknown;
|
|
27063
|
+
}
|
|
27064
|
+
}
|
|
27065
|
+
}
|
|
27066
|
+
namespace Default {
|
|
27067
|
+
namespace Content {
|
|
27068
|
+
interface ApplicationJson {
|
|
27069
|
+
[k: string]: unknown;
|
|
27070
|
+
}
|
|
27071
|
+
}
|
|
27072
|
+
}
|
|
27073
|
+
}
|
|
27074
|
+
}
|
|
27075
|
+
}
|
|
27076
|
+
namespace ExperimentalV2CustomersCustomerIdUnlockedLeadsExport { }
|
|
27077
|
+
namespace V2ExperimentalCustomersCustomerIdUnlockedLeadsExport { }
|
|
27078
|
+
namespace V2CustomersCustomerIdUnlockedLeadsExport {
|
|
27079
|
+
namespace Post {
|
|
27080
|
+
namespace Parameters {
|
|
27081
|
+
type Path = {
|
|
27082
|
+
customerId: string;
|
|
27083
|
+
};
|
|
27084
|
+
interface RequestBody {
|
|
27085
|
+
/**
|
|
27086
|
+
* Whether to export all leads or only not already exported leads.
|
|
27087
|
+
*/
|
|
27088
|
+
exportAllLeads: boolean;
|
|
27089
|
+
/**
|
|
27090
|
+
* The fields to include in the export.
|
|
27091
|
+
*/
|
|
27092
|
+
fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
|
|
27093
|
+
}
|
|
27094
|
+
type Header = {};
|
|
27095
|
+
type Query = {};
|
|
27096
|
+
}
|
|
27097
|
+
namespace Responses {
|
|
27098
|
+
namespace $200 {
|
|
27099
|
+
namespace Content {
|
|
27100
|
+
interface ApplicationJson {
|
|
27101
|
+
/**
|
|
27102
|
+
* The base64 encoded csv content of the export.
|
|
27103
|
+
*/
|
|
27104
|
+
contentBase64: string;
|
|
27105
|
+
exportId: string;
|
|
27106
|
+
}
|
|
27107
|
+
/**
|
|
27108
|
+
* The csv content of the export.
|
|
27109
|
+
*/
|
|
27110
|
+
type TextCsv = string;
|
|
27111
|
+
}
|
|
27112
|
+
}
|
|
27113
|
+
namespace $400 {
|
|
27114
|
+
namespace Content {
|
|
27115
|
+
interface ApplicationJson {
|
|
27116
|
+
[k: string]: unknown;
|
|
27117
|
+
}
|
|
27118
|
+
}
|
|
27119
|
+
}
|
|
27120
|
+
namespace $403 {
|
|
27121
|
+
namespace Content {
|
|
27122
|
+
interface ApplicationJson {
|
|
27123
|
+
[k: string]: unknown;
|
|
27124
|
+
}
|
|
27125
|
+
}
|
|
27126
|
+
}
|
|
27127
|
+
namespace $404 {
|
|
27128
|
+
namespace Content {
|
|
27129
|
+
interface ApplicationJson {
|
|
27130
|
+
[k: string]: unknown;
|
|
27131
|
+
}
|
|
27132
|
+
}
|
|
27133
|
+
}
|
|
27134
|
+
namespace $409 {
|
|
27135
|
+
namespace Content {
|
|
27136
|
+
interface ApplicationJson {
|
|
27137
|
+
[k: string]: unknown;
|
|
27138
|
+
}
|
|
27139
|
+
}
|
|
27140
|
+
}
|
|
27141
|
+
namespace $429 {
|
|
27142
|
+
namespace Content {
|
|
27143
|
+
interface ApplicationJson {
|
|
27144
|
+
[k: string]: unknown;
|
|
27145
|
+
}
|
|
27146
|
+
}
|
|
27147
|
+
}
|
|
27148
|
+
namespace Default {
|
|
27149
|
+
namespace Content {
|
|
27150
|
+
interface ApplicationJson {
|
|
27151
|
+
[k: string]: unknown;
|
|
27152
|
+
}
|
|
27153
|
+
}
|
|
27154
|
+
}
|
|
27155
|
+
}
|
|
27156
|
+
}
|
|
27157
|
+
}
|
|
27158
|
+
namespace V2StacksStackIdVolumes {
|
|
27159
|
+
namespace Get {
|
|
27160
|
+
namespace Parameters {
|
|
27161
|
+
type Path = {
|
|
27162
|
+
stackId: string;
|
|
27163
|
+
};
|
|
27164
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27165
|
+
type Query = {
|
|
27166
|
+
searchTerm?: string;
|
|
27167
|
+
sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder;
|
|
27168
|
+
limit?: number;
|
|
27169
|
+
skip?: number;
|
|
27170
|
+
page?: number;
|
|
27171
|
+
};
|
|
27172
|
+
}
|
|
27173
|
+
namespace Responses {
|
|
27174
|
+
namespace $200 {
|
|
27175
|
+
namespace Content {
|
|
27176
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[];
|
|
27177
|
+
}
|
|
27178
|
+
}
|
|
27179
|
+
namespace $400 {
|
|
27180
|
+
namespace Content {
|
|
27181
|
+
interface ApplicationJson {
|
|
27182
|
+
[k: string]: unknown;
|
|
27183
|
+
}
|
|
27184
|
+
}
|
|
27185
|
+
}
|
|
27186
|
+
namespace $403 {
|
|
27187
|
+
namespace Content {
|
|
27188
|
+
interface ApplicationJson {
|
|
27189
|
+
[k: string]: unknown;
|
|
27190
|
+
}
|
|
27191
|
+
}
|
|
27192
|
+
}
|
|
27193
|
+
namespace $429 {
|
|
27194
|
+
namespace Content {
|
|
27195
|
+
interface ApplicationJson {
|
|
27196
|
+
[k: string]: unknown;
|
|
27197
|
+
}
|
|
27198
|
+
}
|
|
27199
|
+
}
|
|
27200
|
+
namespace $500 {
|
|
27201
|
+
namespace Content {
|
|
27202
|
+
interface ApplicationJson {
|
|
27203
|
+
[k: string]: unknown;
|
|
27204
|
+
}
|
|
27205
|
+
}
|
|
27206
|
+
}
|
|
27207
|
+
namespace Default {
|
|
27208
|
+
namespace Content {
|
|
27209
|
+
interface ApplicationJson {
|
|
27210
|
+
[k: string]: unknown;
|
|
27211
|
+
}
|
|
27212
|
+
}
|
|
27213
|
+
}
|
|
27214
|
+
}
|
|
27215
|
+
}
|
|
27216
|
+
}
|
|
26977
27217
|
}
|
|
26978
27218
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.235.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.236.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": "
|
|
83
|
+
"gitHead": "bbbfd8abe4dcfc1d9f991e5550ddcea2dc509658"
|
|
84
84
|
}
|