@mittwald/api-client 4.214.0 → 4.214.1
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.
|
@@ -68,14 +68,14 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
68
68
|
/** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
|
|
69
69
|
getInstalledSystemsoftwareForAppinstallation: (conf: {
|
|
70
70
|
appInstallationId: string;
|
|
71
|
-
queryParameters?: {
|
|
72
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
73
|
-
tagFilter?: string | undefined;
|
|
74
|
-
} | undefined;
|
|
75
71
|
headers?: {
|
|
76
72
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
77
73
|
"x-access-token"?: string | undefined;
|
|
78
74
|
} | undefined;
|
|
75
|
+
queryParameters?: {
|
|
76
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
77
|
+
tagFilter?: string | undefined;
|
|
78
|
+
} | undefined;
|
|
79
79
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[]>;
|
|
80
80
|
/** Get the missing requirements of an appInstallation for a specific target AppVersion. */
|
|
81
81
|
getMissingDependenciesForAppinstallation: (conf: {
|
|
@@ -143,6 +143,10 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
143
143
|
/** List AppInstallations belonging to a Project. */
|
|
144
144
|
listAppinstallations: (conf: {
|
|
145
145
|
projectId: string;
|
|
146
|
+
headers?: {
|
|
147
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
148
|
+
"x-access-token"?: string | undefined;
|
|
149
|
+
} | undefined;
|
|
146
150
|
queryParameters?: {
|
|
147
151
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
148
152
|
appIds?: string[] | undefined;
|
|
@@ -151,10 +155,6 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
151
155
|
skip?: number | undefined;
|
|
152
156
|
page?: number | undefined;
|
|
153
157
|
} | undefined;
|
|
154
|
-
headers?: {
|
|
155
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
156
|
-
"x-access-token"?: string | undefined;
|
|
157
|
-
} | undefined;
|
|
158
158
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallation[]>;
|
|
159
159
|
/** List Apps. */
|
|
160
160
|
listApps: (conf?: {
|
|
@@ -171,14 +171,14 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
171
171
|
/** List AppVersions belonging to an App. */
|
|
172
172
|
listAppversions: (conf: {
|
|
173
173
|
appId: string;
|
|
174
|
-
queryParameters?: {
|
|
175
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
176
|
-
recommended?: boolean | undefined;
|
|
177
|
-
} | undefined;
|
|
178
174
|
headers?: {
|
|
179
175
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
180
176
|
"x-access-token"?: string | undefined;
|
|
181
177
|
} | undefined;
|
|
178
|
+
queryParameters?: {
|
|
179
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
180
|
+
recommended?: boolean | undefined;
|
|
181
|
+
} | undefined;
|
|
182
182
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[]>;
|
|
183
183
|
/** List SystemSoftwares. */
|
|
184
184
|
listSystemsoftwares: (conf?: {
|
|
@@ -196,15 +196,15 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
196
196
|
/** List SystemSoftwareVersions belonging to a SystemSoftware. */
|
|
197
197
|
listSystemsoftwareversions: (conf: {
|
|
198
198
|
systemSoftwareId: string;
|
|
199
|
+
headers?: {
|
|
200
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
201
|
+
"x-access-token"?: string | undefined;
|
|
202
|
+
} | undefined;
|
|
199
203
|
queryParameters?: {
|
|
200
204
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
201
205
|
versionRange?: string | undefined;
|
|
202
206
|
recommended?: boolean | undefined;
|
|
203
207
|
} | undefined;
|
|
204
|
-
headers?: {
|
|
205
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
206
|
-
"x-access-token"?: string | undefined;
|
|
207
|
-
} | undefined;
|
|
208
208
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareVersion[]>;
|
|
209
209
|
/** List update candidates belonging to an AppVersion. */
|
|
210
210
|
listUpdateCandidatesForAppversion: (conf: {
|
|
@@ -232,12 +232,12 @@ declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
232
232
|
/** Get an Article. */
|
|
233
233
|
getArticle: (conf: {
|
|
234
234
|
articleId: string;
|
|
235
|
-
|
|
235
|
+
headers?: {
|
|
236
236
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
237
|
-
customerId?: string | undefined;
|
|
238
237
|
} | undefined;
|
|
239
|
-
|
|
238
|
+
queryParameters?: {
|
|
240
239
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
240
|
+
customerId?: string | undefined;
|
|
241
241
|
} | undefined;
|
|
242
242
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
243
243
|
addons?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleArticleAddons[] | undefined;
|
|
@@ -293,6 +293,10 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
293
293
|
/** List Backups belonging to a Project. */
|
|
294
294
|
listProjectBackups: (conf: {
|
|
295
295
|
projectId: string;
|
|
296
|
+
headers?: {
|
|
297
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
298
|
+
"x-access-token"?: string | undefined;
|
|
299
|
+
} | undefined;
|
|
296
300
|
queryParameters?: {
|
|
297
301
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
298
302
|
searchTerm?: string | undefined;
|
|
@@ -302,10 +306,6 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
302
306
|
skip?: number | undefined;
|
|
303
307
|
page?: number | undefined;
|
|
304
308
|
} | undefined;
|
|
305
|
-
headers?: {
|
|
306
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
307
|
-
"x-access-token"?: string | undefined;
|
|
308
|
-
} | undefined;
|
|
309
309
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackup[]>;
|
|
310
310
|
/** Get a ProjectBackupSchedule. */
|
|
311
311
|
getProjectBackupSchedule: (conf: {
|
|
@@ -348,6 +348,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
348
348
|
/** List Registries belonging to a Project. */
|
|
349
349
|
listRegistries: (conf: {
|
|
350
350
|
projectId: string;
|
|
351
|
+
headers?: {
|
|
352
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
353
|
+
"x-access-token"?: string | undefined;
|
|
354
|
+
} | undefined;
|
|
351
355
|
queryParameters?: {
|
|
352
356
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
353
357
|
hasCredentials?: boolean | undefined;
|
|
@@ -355,10 +359,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
355
359
|
skip?: number | undefined;
|
|
356
360
|
page?: number | undefined;
|
|
357
361
|
} | undefined;
|
|
358
|
-
headers?: {
|
|
359
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
360
|
-
"x-access-token"?: string | undefined;
|
|
361
|
-
} | undefined;
|
|
362
362
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistry[]>;
|
|
363
363
|
/** Get a Stack. */
|
|
364
364
|
getStack: (conf: {
|
|
@@ -437,14 +437,14 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
437
437
|
getServiceLogs: (conf: {
|
|
438
438
|
stackId: string;
|
|
439
439
|
serviceId: string;
|
|
440
|
-
queryParameters?: {
|
|
441
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
442
|
-
tail?: number | undefined;
|
|
443
|
-
} | undefined;
|
|
444
440
|
headers?: {
|
|
445
441
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
446
442
|
"x-access-token"?: string | undefined;
|
|
447
443
|
} | undefined;
|
|
444
|
+
queryParameters?: {
|
|
445
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
446
|
+
tail?: number | undefined;
|
|
447
|
+
} | undefined;
|
|
448
448
|
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
449
449
|
/** Get a Service belonging to a Stack. */
|
|
450
450
|
getService: (conf: {
|
|
@@ -471,6 +471,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
471
471
|
/** List Services belonging to a Project. */
|
|
472
472
|
listServices: (conf: {
|
|
473
473
|
projectId: string;
|
|
474
|
+
headers?: {
|
|
475
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
476
|
+
"x-access-token"?: string | undefined;
|
|
477
|
+
} | undefined;
|
|
474
478
|
queryParameters?: {
|
|
475
479
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
476
480
|
stackId?: string | undefined;
|
|
@@ -482,28 +486,28 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
482
486
|
skip?: number | undefined;
|
|
483
487
|
page?: number | undefined;
|
|
484
488
|
} | undefined;
|
|
485
|
-
headers?: {
|
|
486
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
487
|
-
"x-access-token"?: string | undefined;
|
|
488
|
-
} | undefined;
|
|
489
489
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[]>;
|
|
490
490
|
/** List Stacks belonging to a Project. */
|
|
491
491
|
listStacks: (conf: {
|
|
492
492
|
projectId: string;
|
|
493
|
+
headers?: {
|
|
494
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
495
|
+
"x-access-token"?: string | undefined;
|
|
496
|
+
} | undefined;
|
|
493
497
|
queryParameters?: {
|
|
494
498
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
495
499
|
limit?: number | undefined;
|
|
496
500
|
skip?: number | undefined;
|
|
497
501
|
page?: number | undefined;
|
|
498
502
|
} | undefined;
|
|
499
|
-
headers?: {
|
|
500
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
501
|
-
"x-access-token"?: string | undefined;
|
|
502
|
-
} | undefined;
|
|
503
503
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[]>;
|
|
504
504
|
/** List Volumes belonging to a Project. */
|
|
505
505
|
listVolumes: (conf: {
|
|
506
506
|
projectId: string;
|
|
507
|
+
headers?: {
|
|
508
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
509
|
+
"x-access-token"?: string | undefined;
|
|
510
|
+
} | undefined;
|
|
507
511
|
queryParameters?: {
|
|
508
512
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
509
513
|
stackId?: string | undefined;
|
|
@@ -513,10 +517,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
513
517
|
skip?: number | undefined;
|
|
514
518
|
page?: number | undefined;
|
|
515
519
|
} | undefined;
|
|
516
|
-
headers?: {
|
|
517
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
518
|
-
"x-access-token"?: string | undefined;
|
|
519
|
-
} | undefined;
|
|
520
520
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
521
521
|
};
|
|
522
522
|
declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
@@ -693,16 +693,16 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
693
693
|
/** Return a list of Contracts for the given Customer. */
|
|
694
694
|
listContracts: (conf: {
|
|
695
695
|
customerId: string;
|
|
696
|
+
headers?: {
|
|
697
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
698
|
+
"x-access-token"?: string | undefined;
|
|
699
|
+
} | undefined;
|
|
696
700
|
queryParameters?: {
|
|
697
701
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
698
702
|
limit?: number | undefined;
|
|
699
703
|
skip?: number | undefined;
|
|
700
704
|
page?: number | undefined;
|
|
701
705
|
} | undefined;
|
|
702
|
-
headers?: {
|
|
703
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
704
|
-
"x-access-token"?: string | undefined;
|
|
705
|
-
} | undefined;
|
|
706
706
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContract[]>;
|
|
707
707
|
/** Get details of an Invoice. */
|
|
708
708
|
invoiceDetail: (conf: {
|
|
@@ -769,6 +769,10 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
769
769
|
/** List Invoices of a Customer. */
|
|
770
770
|
invoiceListCustomerInvoices: (conf: {
|
|
771
771
|
customerId: string;
|
|
772
|
+
headers?: {
|
|
773
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
774
|
+
"x-access-token"?: string | undefined;
|
|
775
|
+
} | undefined;
|
|
772
776
|
queryParameters?: {
|
|
773
777
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
774
778
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
@@ -779,10 +783,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
779
783
|
sort?: "invoiceNumber"[] | undefined;
|
|
780
784
|
order?: ("asc" | "desc")[] | undefined;
|
|
781
785
|
} | undefined;
|
|
782
|
-
headers?: {
|
|
783
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
784
|
-
"x-access-token"?: string | undefined;
|
|
785
|
-
} | undefined;
|
|
786
786
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoice[]>;
|
|
787
787
|
/** Get list of Orders. */
|
|
788
788
|
orderListOrders: (conf?: {
|
|
@@ -824,6 +824,10 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
824
824
|
/** Get list of Orders of a Customer. */
|
|
825
825
|
orderListCustomerOrders: (conf: {
|
|
826
826
|
customerId: string;
|
|
827
|
+
headers?: {
|
|
828
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
829
|
+
"x-access-token"?: string | undefined;
|
|
830
|
+
} | undefined;
|
|
827
831
|
queryParameters?: {
|
|
828
832
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
829
833
|
limit?: number | undefined;
|
|
@@ -833,14 +837,14 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
833
837
|
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
834
838
|
templateNames?: string[] | undefined;
|
|
835
839
|
} | undefined;
|
|
836
|
-
headers?: {
|
|
837
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
838
|
-
"x-access-token"?: string | undefined;
|
|
839
|
-
} | undefined;
|
|
840
840
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
|
|
841
841
|
/** Get list of Orders of a Project. */
|
|
842
842
|
orderListProjectOrders: (conf: {
|
|
843
843
|
projectId: string;
|
|
844
|
+
headers?: {
|
|
845
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
846
|
+
"x-access-token"?: string | undefined;
|
|
847
|
+
} | undefined;
|
|
844
848
|
queryParameters?: {
|
|
845
849
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
846
850
|
limit?: number | undefined;
|
|
@@ -850,10 +854,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
850
854
|
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
851
855
|
templateNames?: string[] | undefined;
|
|
852
856
|
} | undefined;
|
|
853
|
-
headers?: {
|
|
854
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
855
|
-
"x-access-token"?: string | undefined;
|
|
856
|
-
} | undefined;
|
|
857
857
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
|
|
858
858
|
};
|
|
859
859
|
declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
@@ -893,6 +893,10 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
893
893
|
/** List incoming Invoices of a Contributor. */
|
|
894
894
|
contributorListIncomingInvoices: (conf: {
|
|
895
895
|
contributorId: string;
|
|
896
|
+
headers?: {
|
|
897
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
898
|
+
"x-access-token"?: string | undefined;
|
|
899
|
+
} | undefined;
|
|
896
900
|
queryParameters?: {
|
|
897
901
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
898
902
|
limit?: number | undefined;
|
|
@@ -901,10 +905,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
901
905
|
sort?: "invoiceNumber"[] | undefined;
|
|
902
906
|
order?: ("asc" | "desc")[] | undefined;
|
|
903
907
|
} | undefined;
|
|
904
|
-
headers?: {
|
|
905
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
906
|
-
"x-access-token"?: string | undefined;
|
|
907
|
-
} | undefined;
|
|
908
908
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
909
909
|
currency: string;
|
|
910
910
|
customerId: string;
|
|
@@ -996,27 +996,27 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
996
996
|
/** List ContractPartners of the contributor. */
|
|
997
997
|
contributorListContractPartnersOfContributor: (conf: {
|
|
998
998
|
contributorId: string;
|
|
999
|
+
headers?: {
|
|
1000
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1001
|
+
"x-access-token"?: string | undefined;
|
|
1002
|
+
} | undefined;
|
|
999
1003
|
queryParameters?: {
|
|
1000
1004
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1001
1005
|
extensionId?: string | undefined;
|
|
1002
1006
|
extensionInstanceId?: string | undefined;
|
|
1003
1007
|
} | undefined;
|
|
1004
|
-
headers?: {
|
|
1005
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1006
|
-
"x-access-token"?: string | undefined;
|
|
1007
|
-
} | undefined;
|
|
1008
1008
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
|
|
1009
1009
|
/** Get the public key to verify the webhook signature. */
|
|
1010
1010
|
extensionGetPublicKey: (conf: {
|
|
1011
1011
|
serial: string;
|
|
1012
|
+
headers?: {
|
|
1013
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1014
|
+
} | undefined;
|
|
1012
1015
|
queryParameters?: {
|
|
1013
1016
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1014
1017
|
purpose?: "webhook" | "session_token" | undefined;
|
|
1015
1018
|
format?: "raw" | "spki" | undefined;
|
|
1016
1019
|
} | undefined;
|
|
1017
|
-
headers?: {
|
|
1018
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1019
|
-
} | undefined;
|
|
1020
1020
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1021
1021
|
algorithm: string;
|
|
1022
1022
|
key: string;
|
|
@@ -1205,16 +1205,16 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1205
1205
|
/** List Extensions of own contributor. */
|
|
1206
1206
|
extensionListOwnExtensions: (conf: {
|
|
1207
1207
|
contributorId: string;
|
|
1208
|
+
headers?: {
|
|
1209
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1210
|
+
"x-access-token"?: string | undefined;
|
|
1211
|
+
} | undefined;
|
|
1208
1212
|
queryParameters?: {
|
|
1209
1213
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1210
1214
|
limit?: number | undefined;
|
|
1211
1215
|
skip?: number | undefined;
|
|
1212
1216
|
page?: number | undefined;
|
|
1213
1217
|
} | undefined;
|
|
1214
|
-
headers?: {
|
|
1215
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1216
|
-
"x-access-token"?: string | undefined;
|
|
1217
|
-
} | undefined;
|
|
1218
1218
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
|
|
1219
1219
|
/** List Extensions. */
|
|
1220
1220
|
extensionListExtensions: (conf?: {
|
|
@@ -1337,20 +1337,24 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1337
1337
|
/** List Cronjobs belonging to a Project. */
|
|
1338
1338
|
listCronjobs: (conf: {
|
|
1339
1339
|
projectId: string;
|
|
1340
|
+
headers?: {
|
|
1341
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1342
|
+
"x-access-token"?: string | undefined;
|
|
1343
|
+
} | undefined;
|
|
1340
1344
|
queryParameters?: {
|
|
1341
1345
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1342
1346
|
limit?: number | undefined;
|
|
1343
1347
|
skip?: number | undefined;
|
|
1344
1348
|
page?: number | undefined;
|
|
1345
1349
|
} | undefined;
|
|
1346
|
-
headers?: {
|
|
1347
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1348
|
-
"x-access-token"?: string | undefined;
|
|
1349
|
-
} | undefined;
|
|
1350
1350
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjob[]>;
|
|
1351
1351
|
/** List CronjobExecutions belonging to a Cronjob. */
|
|
1352
1352
|
listExecutions: (conf: {
|
|
1353
1353
|
cronjobId: string;
|
|
1354
|
+
headers?: {
|
|
1355
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1356
|
+
"x-access-token"?: string | undefined;
|
|
1357
|
+
} | undefined;
|
|
1354
1358
|
queryParameters?: {
|
|
1355
1359
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1356
1360
|
limit?: number | undefined;
|
|
@@ -1362,10 +1366,6 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1362
1366
|
triggeredByUser?: boolean | undefined;
|
|
1363
1367
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
|
|
1364
1368
|
} | undefined;
|
|
1365
|
-
headers?: {
|
|
1366
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1367
|
-
"x-access-token"?: string | undefined;
|
|
1368
|
-
} | undefined;
|
|
1369
1369
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution[]>;
|
|
1370
1370
|
/** Get a Cronjob. */
|
|
1371
1371
|
getCronjob: (conf: {
|
|
@@ -1421,15 +1421,15 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1421
1421
|
/** List Invites belonging to a Customer. */
|
|
1422
1422
|
listInvitesForCustomer: (conf: {
|
|
1423
1423
|
customerId: string;
|
|
1424
|
+
headers?: {
|
|
1425
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1426
|
+
"x-access-token"?: string | undefined;
|
|
1427
|
+
} | undefined;
|
|
1424
1428
|
queryParameters?: {
|
|
1425
1429
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1426
1430
|
limit?: number | undefined;
|
|
1427
1431
|
skip?: number | undefined;
|
|
1428
1432
|
} | undefined;
|
|
1429
|
-
headers?: {
|
|
1430
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1431
|
-
"x-access-token"?: string | undefined;
|
|
1432
|
-
} | undefined;
|
|
1433
1433
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
|
|
1434
1434
|
/** Get all customer profiles the authenticated user has access to. */
|
|
1435
1435
|
listCustomers: (conf?: {
|
|
@@ -1584,6 +1584,10 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1584
1584
|
/** List Memberships belonging to a Customer. */
|
|
1585
1585
|
listMembershipsForCustomer: (conf: {
|
|
1586
1586
|
customerId: string;
|
|
1587
|
+
headers?: {
|
|
1588
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1589
|
+
"x-access-token"?: string | undefined;
|
|
1590
|
+
} | undefined;
|
|
1587
1591
|
queryParameters?: {
|
|
1588
1592
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1589
1593
|
limit?: number | undefined;
|
|
@@ -1591,10 +1595,6 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1591
1595
|
hasExpiry?: boolean | undefined;
|
|
1592
1596
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
1593
1597
|
} | undefined;
|
|
1594
|
-
headers?: {
|
|
1595
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1596
|
-
"x-access-token"?: string | undefined;
|
|
1597
|
-
} | undefined;
|
|
1598
1598
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
|
|
1599
1599
|
};
|
|
1600
1600
|
declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
|
|
@@ -1962,14 +1962,14 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1962
1962
|
/** Get a File's meta. */
|
|
1963
1963
|
getFileMeta: (conf: {
|
|
1964
1964
|
fileId: string;
|
|
1965
|
-
queryParameters?: {
|
|
1966
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1967
|
-
token?: string | undefined;
|
|
1968
|
-
} | undefined;
|
|
1969
1965
|
headers?: {
|
|
1970
1966
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1971
1967
|
Token?: string | undefined;
|
|
1972
1968
|
} | undefined;
|
|
1969
|
+
queryParameters?: {
|
|
1970
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1971
|
+
token?: string | undefined;
|
|
1972
|
+
} | undefined;
|
|
1973
1973
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1974
1974
|
friendlyURL: string;
|
|
1975
1975
|
friendlyUrl: string;
|
|
@@ -2036,35 +2036,35 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2036
2036
|
/** Get a File. */
|
|
2037
2037
|
getFile: (conf: {
|
|
2038
2038
|
fileId: string;
|
|
2039
|
-
queryParameters?: {
|
|
2040
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2041
|
-
accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2042
|
-
"content-disposition"?: "inline" | "attachment" | undefined;
|
|
2043
|
-
token?: string | undefined;
|
|
2044
|
-
} | undefined;
|
|
2045
2039
|
headers?: {
|
|
2046
2040
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2047
2041
|
Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2048
2042
|
"Content-Disposition"?: "inline" | "attachment" | undefined;
|
|
2049
2043
|
Token?: string | undefined;
|
|
2050
2044
|
} | undefined;
|
|
2051
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
2052
|
-
/** Get a File with user-friendly url. */
|
|
2053
|
-
getFileWithName: (conf: {
|
|
2054
|
-
fileId: string;
|
|
2055
|
-
fileName: string;
|
|
2056
2045
|
queryParameters?: {
|
|
2057
2046
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2058
2047
|
accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2059
2048
|
"content-disposition"?: "inline" | "attachment" | undefined;
|
|
2060
2049
|
token?: string | undefined;
|
|
2061
2050
|
} | undefined;
|
|
2051
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
2052
|
+
/** Get a File with user-friendly url. */
|
|
2053
|
+
getFileWithName: (conf: {
|
|
2054
|
+
fileId: string;
|
|
2055
|
+
fileName: string;
|
|
2062
2056
|
headers?: {
|
|
2063
2057
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2064
2058
|
Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2065
2059
|
"Content-Disposition"?: "inline" | "attachment" | undefined;
|
|
2066
2060
|
Token?: string | undefined;
|
|
2067
2061
|
} | undefined;
|
|
2062
|
+
queryParameters?: {
|
|
2063
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2064
|
+
accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2065
|
+
"content-disposition"?: "inline" | "attachment" | undefined;
|
|
2066
|
+
token?: string | undefined;
|
|
2067
|
+
} | undefined;
|
|
2068
2068
|
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
2069
2069
|
};
|
|
2070
2070
|
declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
@@ -2179,6 +2179,9 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2179
2179
|
/** Get all leads. Use the unlocked routes for more lead details. */
|
|
2180
2180
|
leadfyndrListLeads: (conf: {
|
|
2181
2181
|
customerId: string;
|
|
2182
|
+
headers?: {
|
|
2183
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2184
|
+
} | undefined;
|
|
2182
2185
|
queryParameters?: {
|
|
2183
2186
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2184
2187
|
potentialRangeMin?: number | undefined;
|
|
@@ -2204,9 +2207,6 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2204
2207
|
sort?: "potential" | "relevance" | undefined;
|
|
2205
2208
|
order?: "asc" | "desc" | undefined;
|
|
2206
2209
|
} | undefined;
|
|
2207
|
-
headers?: {
|
|
2208
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2209
|
-
} | undefined;
|
|
2210
2210
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2211
2211
|
leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLead[];
|
|
2212
2212
|
limit: number;
|
|
@@ -2216,6 +2216,9 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2216
2216
|
/** Get all unlocked leads. Organisation can unlock leads. */
|
|
2217
2217
|
leadfyndrListUnlockedLeads: (conf: {
|
|
2218
2218
|
customerId: string;
|
|
2219
|
+
headers?: {
|
|
2220
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2221
|
+
} | undefined;
|
|
2219
2222
|
queryParameters?: {
|
|
2220
2223
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2221
2224
|
potentialRangeMin?: number | undefined;
|
|
@@ -2242,9 +2245,6 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2242
2245
|
sort?: "potential" | "relevance" | undefined;
|
|
2243
2246
|
order?: "asc" | "desc" | undefined;
|
|
2244
2247
|
} | undefined;
|
|
2245
|
-
headers?: {
|
|
2246
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2247
|
-
} | undefined;
|
|
2248
2248
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2249
2249
|
leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrUnlockedLead[];
|
|
2250
2250
|
limit: number;
|
|
@@ -2256,6 +2256,10 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2256
2256
|
/** List DeliveryBoxes belonging to a Project. */
|
|
2257
2257
|
listDeliveryBoxes: (conf: {
|
|
2258
2258
|
projectId: string;
|
|
2259
|
+
headers?: {
|
|
2260
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2261
|
+
"x-access-token"?: string | undefined;
|
|
2262
|
+
} | undefined;
|
|
2259
2263
|
queryParameters?: {
|
|
2260
2264
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2261
2265
|
search?: string | undefined;
|
|
@@ -2263,14 +2267,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2263
2267
|
skip?: number | undefined;
|
|
2264
2268
|
page?: number | undefined;
|
|
2265
2269
|
} | undefined;
|
|
2266
|
-
headers?: {
|
|
2267
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2268
|
-
"x-access-token"?: string | undefined;
|
|
2269
|
-
} | undefined;
|
|
2270
2270
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[]>;
|
|
2271
2271
|
/** List MailAddresses belonging to a Project. */
|
|
2272
2272
|
listMailAddresses: (conf: {
|
|
2273
2273
|
projectId: string;
|
|
2274
|
+
headers?: {
|
|
2275
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2276
|
+
"x-access-token"?: string | undefined;
|
|
2277
|
+
} | undefined;
|
|
2274
2278
|
queryParameters?: {
|
|
2275
2279
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2276
2280
|
search?: string | undefined;
|
|
@@ -2283,10 +2287,6 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2283
2287
|
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
|
|
2284
2288
|
order?: ("asc" | "desc")[] | undefined;
|
|
2285
2289
|
} | undefined;
|
|
2286
|
-
headers?: {
|
|
2287
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2288
|
-
"x-access-token"?: string | undefined;
|
|
2289
|
-
} | undefined;
|
|
2290
2290
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
|
|
2291
2291
|
/** Get a DeliveryBox. */
|
|
2292
2292
|
getDeliveryBox: (conf: {
|
|
@@ -2465,14 +2465,14 @@ declare const buildPageInsightsApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2465
2465
|
/** List websites (specified as domain and path) from a project where performance data is available. */
|
|
2466
2466
|
pageinsightsListPerformanceDataForProject: (conf: {
|
|
2467
2467
|
projectId: string;
|
|
2468
|
-
queryParameters?: {
|
|
2469
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2470
|
-
domain?: string | undefined;
|
|
2471
|
-
} | undefined;
|
|
2472
2468
|
headers?: {
|
|
2473
2469
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2474
2470
|
"x-access-token"?: string | undefined;
|
|
2475
2471
|
} | undefined;
|
|
2472
|
+
queryParameters?: {
|
|
2473
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2474
|
+
domain?: string | undefined;
|
|
2475
|
+
} | undefined;
|
|
2476
2476
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2477
2477
|
domain: string;
|
|
2478
2478
|
paths: {
|
|
@@ -2642,14 +2642,14 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2642
2642
|
/** Submitted feedback of the given user. */
|
|
2643
2643
|
listFeedback: (conf: {
|
|
2644
2644
|
userId: string;
|
|
2645
|
-
queryParameters?: {
|
|
2646
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2647
|
-
subject?: string | undefined;
|
|
2648
|
-
} | undefined;
|
|
2649
2645
|
headers?: {
|
|
2650
2646
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2651
2647
|
"x-access-token"?: string | undefined;
|
|
2652
2648
|
} | undefined;
|
|
2649
|
+
queryParameters?: {
|
|
2650
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2651
|
+
subject?: string | undefined;
|
|
2652
|
+
} | undefined;
|
|
2653
2653
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedback[]>;
|
|
2654
2654
|
/** List all sessions. */
|
|
2655
2655
|
listSessions: (conf?: {
|
|
@@ -2708,15 +2708,15 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2708
2708
|
/** List Invites belonging to a Project. */
|
|
2709
2709
|
listInvitesForProject: (conf: {
|
|
2710
2710
|
projectId: string;
|
|
2711
|
+
headers?: {
|
|
2712
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2713
|
+
"x-access-token"?: string | undefined;
|
|
2714
|
+
} | undefined;
|
|
2711
2715
|
queryParameters?: {
|
|
2712
2716
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2713
2717
|
limit?: number | undefined;
|
|
2714
2718
|
skip?: number | undefined;
|
|
2715
2719
|
} | undefined;
|
|
2716
|
-
headers?: {
|
|
2717
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2718
|
-
"x-access-token"?: string | undefined;
|
|
2719
|
-
} | undefined;
|
|
2720
2720
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[]>;
|
|
2721
2721
|
/** Get a ProjectInvite. */
|
|
2722
2722
|
getProjectInvite: (conf: {
|
|
@@ -2881,6 +2881,10 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2881
2881
|
/** List Memberships belonging to a Project. */
|
|
2882
2882
|
listMembershipsForProject: (conf: {
|
|
2883
2883
|
projectId: string;
|
|
2884
|
+
headers?: {
|
|
2885
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2886
|
+
"x-access-token"?: string | undefined;
|
|
2887
|
+
} | undefined;
|
|
2884
2888
|
queryParameters?: {
|
|
2885
2889
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2886
2890
|
limit?: number | undefined;
|
|
@@ -2890,10 +2894,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2890
2894
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
2891
2895
|
hasMfa?: boolean | undefined;
|
|
2892
2896
|
} | undefined;
|
|
2893
|
-
headers?: {
|
|
2894
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2895
|
-
"x-access-token"?: string | undefined;
|
|
2896
|
-
} | undefined;
|
|
2897
2897
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
|
|
2898
2898
|
/** List ProjectInvites belonging to the executing user. */
|
|
2899
2899
|
listProjectInvites: (conf?: {
|
|
@@ -3021,6 +3021,10 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3021
3021
|
/** List directories belonging to a Project. */
|
|
3022
3022
|
getDirectories: (conf: {
|
|
3023
3023
|
projectId: string;
|
|
3024
|
+
headers?: {
|
|
3025
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3026
|
+
"x-access-token"?: string | undefined;
|
|
3027
|
+
} | undefined;
|
|
3024
3028
|
queryParameters?: {
|
|
3025
3029
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3026
3030
|
directory?: string | undefined;
|
|
@@ -3030,10 +3034,6 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3030
3034
|
executable?: boolean | undefined;
|
|
3031
3035
|
hidden?: boolean | undefined;
|
|
3032
3036
|
} | undefined;
|
|
3033
|
-
headers?: {
|
|
3034
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3035
|
-
"x-access-token"?: string | undefined;
|
|
3036
|
-
} | undefined;
|
|
3037
3037
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3038
3038
|
absolutePath: string;
|
|
3039
3039
|
isDirectory?: boolean | undefined;
|
|
@@ -3048,14 +3048,14 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3048
3048
|
/** Get a Project directory filesystem usage. */
|
|
3049
3049
|
getDiskUsage: (conf: {
|
|
3050
3050
|
projectId: string;
|
|
3051
|
-
queryParameters?: {
|
|
3052
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3053
|
-
directory?: string | undefined;
|
|
3054
|
-
} | undefined;
|
|
3055
3051
|
headers?: {
|
|
3056
3052
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3057
3053
|
"x-access-token"?: string | undefined;
|
|
3058
3054
|
} | undefined;
|
|
3055
|
+
queryParameters?: {
|
|
3056
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3057
|
+
directory?: string | undefined;
|
|
3058
|
+
} | undefined;
|
|
3059
3059
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3060
3060
|
path?: string | undefined;
|
|
3061
3061
|
totalBytes?: number | undefined;
|
|
@@ -3064,15 +3064,15 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3064
3064
|
/** Get a Project file's content. */
|
|
3065
3065
|
getFileContent: (conf: {
|
|
3066
3066
|
projectId: string;
|
|
3067
|
+
headers?: {
|
|
3068
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3069
|
+
"x-access-token"?: string | undefined;
|
|
3070
|
+
} | undefined;
|
|
3067
3071
|
queryParameters?: {
|
|
3068
3072
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3069
3073
|
file?: string | undefined;
|
|
3070
3074
|
inline?: boolean | undefined;
|
|
3071
3075
|
} | undefined;
|
|
3072
|
-
headers?: {
|
|
3073
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3074
|
-
"x-access-token"?: string | undefined;
|
|
3075
|
-
} | undefined;
|
|
3076
3076
|
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
3077
3077
|
/** Get a Project's file/filesystem authorization token. */
|
|
3078
3078
|
getJwt: (conf: {
|
|
@@ -3087,14 +3087,14 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3087
3087
|
/** Get a Project file's information. */
|
|
3088
3088
|
listFiles: (conf: {
|
|
3089
3089
|
projectId: string;
|
|
3090
|
-
queryParameters?: {
|
|
3091
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3092
|
-
file?: string | undefined;
|
|
3093
|
-
} | undefined;
|
|
3094
3090
|
headers?: {
|
|
3095
3091
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3096
3092
|
"x-access-token"?: string | undefined;
|
|
3097
3093
|
} | undefined;
|
|
3094
|
+
queryParameters?: {
|
|
3095
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3096
|
+
file?: string | undefined;
|
|
3097
|
+
} | undefined;
|
|
3098
3098
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3099
3099
|
absolutePath: string;
|
|
3100
3100
|
isDirectory?: boolean | undefined;
|
|
@@ -3111,15 +3111,15 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3111
3111
|
/** Get all SFTPUsers for a Project. */
|
|
3112
3112
|
sftpUserListSftpUsers: (conf: {
|
|
3113
3113
|
projectId: string;
|
|
3114
|
+
headers?: {
|
|
3115
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3116
|
+
"x-access-token"?: string | undefined;
|
|
3117
|
+
} | undefined;
|
|
3114
3118
|
queryParameters?: {
|
|
3115
3119
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3116
3120
|
limit?: number | undefined;
|
|
3117
3121
|
skip?: number | undefined;
|
|
3118
3122
|
} | undefined;
|
|
3119
|
-
headers?: {
|
|
3120
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3121
|
-
"x-access-token"?: string | undefined;
|
|
3122
|
-
} | undefined;
|
|
3123
3123
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSftpUser[]>;
|
|
3124
3124
|
/** Get an SFTPUser. */
|
|
3125
3125
|
sftpUserGetSftpUser: (conf: {
|
|
@@ -3146,15 +3146,15 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3146
3146
|
/** Get all SSHUsers for a Project. */
|
|
3147
3147
|
sshUserListSshUsers: (conf: {
|
|
3148
3148
|
projectId: string;
|
|
3149
|
+
headers?: {
|
|
3150
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3151
|
+
"x-access-token"?: string | undefined;
|
|
3152
|
+
} | undefined;
|
|
3149
3153
|
queryParameters?: {
|
|
3150
3154
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3151
3155
|
limit?: number | undefined;
|
|
3152
3156
|
skip?: number | undefined;
|
|
3153
3157
|
} | undefined;
|
|
3154
|
-
headers?: {
|
|
3155
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3156
|
-
"x-access-token"?: string | undefined;
|
|
3157
|
-
} | undefined;
|
|
3158
3158
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSshUser[]>;
|
|
3159
3159
|
/** Get an SSHUser. */
|
|
3160
3160
|
sshUserGetSshUser: (conf: {
|