@mittwald/api-client 4.214.0 → 4.215.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +22 -22
- package/dist/esm/generated/v2/client.js +66 -66
- package/dist/esm/generated/v2/descriptors.js +216 -216
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +316 -315
- package/dist/types/generated/v2/client.d.ts +1779 -1777
- package/dist/types/generated/v2/descriptors.d.ts +72 -72
- package/dist/types/generated/v2/types.d.ts +5872 -5867
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -34,6 +34,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
34
34
|
lockedBy?: {
|
|
35
35
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
36
36
|
} | undefined;
|
|
37
|
+
phase: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPhase;
|
|
37
38
|
projectId: string;
|
|
38
39
|
screenshotId?: string | undefined;
|
|
39
40
|
screenshotRef?: string | undefined;
|
|
@@ -68,14 +69,14 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
68
69
|
/** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
|
|
69
70
|
getInstalledSystemsoftwareForAppinstallation: (conf: {
|
|
70
71
|
appInstallationId: string;
|
|
71
|
-
queryParameters?: {
|
|
72
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
73
|
-
tagFilter?: string | undefined;
|
|
74
|
-
} | undefined;
|
|
75
72
|
headers?: {
|
|
76
73
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
77
74
|
"x-access-token"?: string | undefined;
|
|
78
75
|
} | undefined;
|
|
76
|
+
queryParameters?: {
|
|
77
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
78
|
+
tagFilter?: string | undefined;
|
|
79
|
+
} | undefined;
|
|
79
80
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[]>;
|
|
80
81
|
/** Get the missing requirements of an appInstallation for a specific target AppVersion. */
|
|
81
82
|
getMissingDependenciesForAppinstallation: (conf: {
|
|
@@ -143,6 +144,10 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
143
144
|
/** List AppInstallations belonging to a Project. */
|
|
144
145
|
listAppinstallations: (conf: {
|
|
145
146
|
projectId: string;
|
|
147
|
+
headers?: {
|
|
148
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
149
|
+
"x-access-token"?: string | undefined;
|
|
150
|
+
} | undefined;
|
|
146
151
|
queryParameters?: {
|
|
147
152
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
148
153
|
appIds?: string[] | undefined;
|
|
@@ -151,10 +156,6 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
151
156
|
skip?: number | undefined;
|
|
152
157
|
page?: number | undefined;
|
|
153
158
|
} | undefined;
|
|
154
|
-
headers?: {
|
|
155
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
156
|
-
"x-access-token"?: string | undefined;
|
|
157
|
-
} | undefined;
|
|
158
159
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallation[]>;
|
|
159
160
|
/** List Apps. */
|
|
160
161
|
listApps: (conf?: {
|
|
@@ -171,14 +172,14 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
171
172
|
/** List AppVersions belonging to an App. */
|
|
172
173
|
listAppversions: (conf: {
|
|
173
174
|
appId: string;
|
|
174
|
-
queryParameters?: {
|
|
175
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
176
|
-
recommended?: boolean | undefined;
|
|
177
|
-
} | undefined;
|
|
178
175
|
headers?: {
|
|
179
176
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
180
177
|
"x-access-token"?: string | undefined;
|
|
181
178
|
} | undefined;
|
|
179
|
+
queryParameters?: {
|
|
180
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
181
|
+
recommended?: boolean | undefined;
|
|
182
|
+
} | undefined;
|
|
182
183
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[]>;
|
|
183
184
|
/** List SystemSoftwares. */
|
|
184
185
|
listSystemsoftwares: (conf?: {
|
|
@@ -196,15 +197,15 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
196
197
|
/** List SystemSoftwareVersions belonging to a SystemSoftware. */
|
|
197
198
|
listSystemsoftwareversions: (conf: {
|
|
198
199
|
systemSoftwareId: string;
|
|
200
|
+
headers?: {
|
|
201
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
202
|
+
"x-access-token"?: string | undefined;
|
|
203
|
+
} | undefined;
|
|
199
204
|
queryParameters?: {
|
|
200
205
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
201
206
|
versionRange?: string | undefined;
|
|
202
207
|
recommended?: boolean | undefined;
|
|
203
208
|
} | undefined;
|
|
204
|
-
headers?: {
|
|
205
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
206
|
-
"x-access-token"?: string | undefined;
|
|
207
|
-
} | undefined;
|
|
208
209
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareVersion[]>;
|
|
209
210
|
/** List update candidates belonging to an AppVersion. */
|
|
210
211
|
listUpdateCandidatesForAppversion: (conf: {
|
|
@@ -232,12 +233,12 @@ declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
232
233
|
/** Get an Article. */
|
|
233
234
|
getArticle: (conf: {
|
|
234
235
|
articleId: string;
|
|
235
|
-
|
|
236
|
+
headers?: {
|
|
236
237
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
237
|
-
customerId?: string | undefined;
|
|
238
238
|
} | undefined;
|
|
239
|
-
|
|
239
|
+
queryParameters?: {
|
|
240
240
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
241
|
+
customerId?: string | undefined;
|
|
241
242
|
} | undefined;
|
|
242
243
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
243
244
|
addons?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleArticleAddons[] | undefined;
|
|
@@ -293,6 +294,10 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
293
294
|
/** List Backups belonging to a Project. */
|
|
294
295
|
listProjectBackups: (conf: {
|
|
295
296
|
projectId: string;
|
|
297
|
+
headers?: {
|
|
298
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
299
|
+
"x-access-token"?: string | undefined;
|
|
300
|
+
} | undefined;
|
|
296
301
|
queryParameters?: {
|
|
297
302
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
298
303
|
searchTerm?: string | undefined;
|
|
@@ -302,10 +307,6 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
302
307
|
skip?: number | undefined;
|
|
303
308
|
page?: number | undefined;
|
|
304
309
|
} | undefined;
|
|
305
|
-
headers?: {
|
|
306
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
307
|
-
"x-access-token"?: string | undefined;
|
|
308
|
-
} | undefined;
|
|
309
310
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackup[]>;
|
|
310
311
|
/** Get a ProjectBackupSchedule. */
|
|
311
312
|
getProjectBackupSchedule: (conf: {
|
|
@@ -348,6 +349,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
348
349
|
/** List Registries belonging to a Project. */
|
|
349
350
|
listRegistries: (conf: {
|
|
350
351
|
projectId: string;
|
|
352
|
+
headers?: {
|
|
353
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
354
|
+
"x-access-token"?: string | undefined;
|
|
355
|
+
} | undefined;
|
|
351
356
|
queryParameters?: {
|
|
352
357
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
353
358
|
hasCredentials?: boolean | undefined;
|
|
@@ -355,10 +360,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
355
360
|
skip?: number | undefined;
|
|
356
361
|
page?: number | undefined;
|
|
357
362
|
} | undefined;
|
|
358
|
-
headers?: {
|
|
359
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
360
|
-
"x-access-token"?: string | undefined;
|
|
361
|
-
} | undefined;
|
|
362
363
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistry[]>;
|
|
363
364
|
/** Get a Stack. */
|
|
364
365
|
getStack: (conf: {
|
|
@@ -437,14 +438,14 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
437
438
|
getServiceLogs: (conf: {
|
|
438
439
|
stackId: string;
|
|
439
440
|
serviceId: string;
|
|
440
|
-
queryParameters?: {
|
|
441
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
442
|
-
tail?: number | undefined;
|
|
443
|
-
} | undefined;
|
|
444
441
|
headers?: {
|
|
445
442
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
446
443
|
"x-access-token"?: string | undefined;
|
|
447
444
|
} | undefined;
|
|
445
|
+
queryParameters?: {
|
|
446
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
447
|
+
tail?: number | undefined;
|
|
448
|
+
} | undefined;
|
|
448
449
|
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
449
450
|
/** Get a Service belonging to a Stack. */
|
|
450
451
|
getService: (conf: {
|
|
@@ -471,6 +472,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
471
472
|
/** List Services belonging to a Project. */
|
|
472
473
|
listServices: (conf: {
|
|
473
474
|
projectId: string;
|
|
475
|
+
headers?: {
|
|
476
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
477
|
+
"x-access-token"?: string | undefined;
|
|
478
|
+
} | undefined;
|
|
474
479
|
queryParameters?: {
|
|
475
480
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
476
481
|
stackId?: string | undefined;
|
|
@@ -482,28 +487,28 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
482
487
|
skip?: number | undefined;
|
|
483
488
|
page?: number | undefined;
|
|
484
489
|
} | undefined;
|
|
485
|
-
headers?: {
|
|
486
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
487
|
-
"x-access-token"?: string | undefined;
|
|
488
|
-
} | undefined;
|
|
489
490
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[]>;
|
|
490
491
|
/** List Stacks belonging to a Project. */
|
|
491
492
|
listStacks: (conf: {
|
|
492
493
|
projectId: string;
|
|
494
|
+
headers?: {
|
|
495
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
496
|
+
"x-access-token"?: string | undefined;
|
|
497
|
+
} | undefined;
|
|
493
498
|
queryParameters?: {
|
|
494
499
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
495
500
|
limit?: number | undefined;
|
|
496
501
|
skip?: number | undefined;
|
|
497
502
|
page?: number | undefined;
|
|
498
503
|
} | undefined;
|
|
499
|
-
headers?: {
|
|
500
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
501
|
-
"x-access-token"?: string | undefined;
|
|
502
|
-
} | undefined;
|
|
503
504
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[]>;
|
|
504
505
|
/** List Volumes belonging to a Project. */
|
|
505
506
|
listVolumes: (conf: {
|
|
506
507
|
projectId: string;
|
|
508
|
+
headers?: {
|
|
509
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
510
|
+
"x-access-token"?: string | undefined;
|
|
511
|
+
} | undefined;
|
|
507
512
|
queryParameters?: {
|
|
508
513
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
509
514
|
stackId?: string | undefined;
|
|
@@ -513,10 +518,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
513
518
|
skip?: number | undefined;
|
|
514
519
|
page?: number | undefined;
|
|
515
520
|
} | undefined;
|
|
516
|
-
headers?: {
|
|
517
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
518
|
-
"x-access-token"?: string | undefined;
|
|
519
|
-
} | undefined;
|
|
520
521
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
521
522
|
};
|
|
522
523
|
declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
@@ -693,16 +694,16 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
693
694
|
/** Return a list of Contracts for the given Customer. */
|
|
694
695
|
listContracts: (conf: {
|
|
695
696
|
customerId: string;
|
|
697
|
+
headers?: {
|
|
698
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
699
|
+
"x-access-token"?: string | undefined;
|
|
700
|
+
} | undefined;
|
|
696
701
|
queryParameters?: {
|
|
697
702
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
698
703
|
limit?: number | undefined;
|
|
699
704
|
skip?: number | undefined;
|
|
700
705
|
page?: number | undefined;
|
|
701
706
|
} | undefined;
|
|
702
|
-
headers?: {
|
|
703
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
704
|
-
"x-access-token"?: string | undefined;
|
|
705
|
-
} | undefined;
|
|
706
707
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContract[]>;
|
|
707
708
|
/** Get details of an Invoice. */
|
|
708
709
|
invoiceDetail: (conf: {
|
|
@@ -769,6 +770,10 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
769
770
|
/** List Invoices of a Customer. */
|
|
770
771
|
invoiceListCustomerInvoices: (conf: {
|
|
771
772
|
customerId: string;
|
|
773
|
+
headers?: {
|
|
774
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
775
|
+
"x-access-token"?: string | undefined;
|
|
776
|
+
} | undefined;
|
|
772
777
|
queryParameters?: {
|
|
773
778
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
774
779
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
@@ -779,10 +784,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
779
784
|
sort?: "invoiceNumber"[] | undefined;
|
|
780
785
|
order?: ("asc" | "desc")[] | undefined;
|
|
781
786
|
} | undefined;
|
|
782
|
-
headers?: {
|
|
783
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
784
|
-
"x-access-token"?: string | undefined;
|
|
785
|
-
} | undefined;
|
|
786
787
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoice[]>;
|
|
787
788
|
/** Get list of Orders. */
|
|
788
789
|
orderListOrders: (conf?: {
|
|
@@ -824,6 +825,10 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
824
825
|
/** Get list of Orders of a Customer. */
|
|
825
826
|
orderListCustomerOrders: (conf: {
|
|
826
827
|
customerId: string;
|
|
828
|
+
headers?: {
|
|
829
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
830
|
+
"x-access-token"?: string | undefined;
|
|
831
|
+
} | undefined;
|
|
827
832
|
queryParameters?: {
|
|
828
833
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
829
834
|
limit?: number | undefined;
|
|
@@ -833,14 +838,14 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
833
838
|
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
834
839
|
templateNames?: string[] | undefined;
|
|
835
840
|
} | undefined;
|
|
836
|
-
headers?: {
|
|
837
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
838
|
-
"x-access-token"?: string | undefined;
|
|
839
|
-
} | undefined;
|
|
840
841
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
|
|
841
842
|
/** Get list of Orders of a Project. */
|
|
842
843
|
orderListProjectOrders: (conf: {
|
|
843
844
|
projectId: string;
|
|
845
|
+
headers?: {
|
|
846
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
847
|
+
"x-access-token"?: string | undefined;
|
|
848
|
+
} | undefined;
|
|
844
849
|
queryParameters?: {
|
|
845
850
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
846
851
|
limit?: number | undefined;
|
|
@@ -850,10 +855,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
850
855
|
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
851
856
|
templateNames?: string[] | undefined;
|
|
852
857
|
} | undefined;
|
|
853
|
-
headers?: {
|
|
854
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
855
|
-
"x-access-token"?: string | undefined;
|
|
856
|
-
} | undefined;
|
|
857
858
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
|
|
858
859
|
};
|
|
859
860
|
declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
@@ -890,9 +891,26 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
890
891
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
891
892
|
url?: string | undefined;
|
|
892
893
|
}>;
|
|
894
|
+
/** List ContractPartners of the contributor. */
|
|
895
|
+
contributorListContractPartnersOfContributor: (conf: {
|
|
896
|
+
contributorId: string;
|
|
897
|
+
headers?: {
|
|
898
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
899
|
+
"x-access-token"?: string | undefined;
|
|
900
|
+
} | undefined;
|
|
901
|
+
queryParameters?: {
|
|
902
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
903
|
+
extensionId?: string | undefined;
|
|
904
|
+
extensionInstanceId?: string | undefined;
|
|
905
|
+
} | undefined;
|
|
906
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
|
|
893
907
|
/** List incoming Invoices of a Contributor. */
|
|
894
908
|
contributorListIncomingInvoices: (conf: {
|
|
895
909
|
contributorId: string;
|
|
910
|
+
headers?: {
|
|
911
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
912
|
+
"x-access-token"?: string | undefined;
|
|
913
|
+
} | undefined;
|
|
896
914
|
queryParameters?: {
|
|
897
915
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
898
916
|
limit?: number | undefined;
|
|
@@ -901,10 +919,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
901
919
|
sort?: "invoiceNumber"[] | undefined;
|
|
902
920
|
order?: ("asc" | "desc")[] | undefined;
|
|
903
921
|
} | undefined;
|
|
904
|
-
headers?: {
|
|
905
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
906
|
-
"x-access-token"?: string | undefined;
|
|
907
|
-
} | undefined;
|
|
908
922
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
909
923
|
currency: string;
|
|
910
924
|
customerId: string;
|
|
@@ -934,6 +948,13 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
934
948
|
totalNet: number;
|
|
935
949
|
webLink: string;
|
|
936
950
|
}[]>;
|
|
951
|
+
/** Get a Contributor. */
|
|
952
|
+
extensionGetContributor: (conf: {
|
|
953
|
+
contributorId: string;
|
|
954
|
+
headers?: {
|
|
955
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
956
|
+
} | undefined;
|
|
957
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>>;
|
|
937
958
|
/** Request an Access Token for the Incoming Invoice file. */
|
|
938
959
|
contributorReceiptGetFileAccessToken: (conf: {
|
|
939
960
|
contributorId: string;
|
|
@@ -946,86 +967,28 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
946
967
|
accessToken: string;
|
|
947
968
|
expiresAt: string;
|
|
948
969
|
}>;
|
|
949
|
-
/**
|
|
950
|
-
|
|
951
|
-
customerId: string;
|
|
952
|
-
headers?: {
|
|
953
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
954
|
-
"x-access-token"?: string | undefined;
|
|
955
|
-
} | undefined;
|
|
956
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
957
|
-
extensionId?: string;
|
|
958
|
-
}[]>;
|
|
959
|
-
/** Get the Contract Strategy of an Extension Instance */
|
|
960
|
-
extensionGetExtensionInstanceContract: (conf: {
|
|
961
|
-
extensionInstanceId: string;
|
|
962
|
-
headers?: {
|
|
963
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
964
|
-
"x-access-token"?: string | undefined;
|
|
965
|
-
} | undefined;
|
|
966
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
967
|
-
currentPrice?: number | undefined;
|
|
968
|
-
interactionDeadline?: string | undefined;
|
|
969
|
-
interactionRequired: boolean;
|
|
970
|
-
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
971
|
-
terminationTargetDate?: string | undefined;
|
|
972
|
-
}>;
|
|
973
|
-
/** Get all open extension orders for given project */
|
|
974
|
-
extensionGetProjectExtensionInstanceOrders: (conf: {
|
|
975
|
-
projectId: string;
|
|
976
|
-
headers?: {
|
|
977
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
978
|
-
"x-access-token"?: string | undefined;
|
|
979
|
-
} | undefined;
|
|
980
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
981
|
-
extensionId?: string;
|
|
982
|
-
}[]>;
|
|
983
|
-
/** Get payment method details */
|
|
984
|
-
customerGetPaymentMethod: (conf: {
|
|
985
|
-
customerId: string;
|
|
970
|
+
/** List ExtensionInstances. */
|
|
971
|
+
extensionListExtensionInstances: (conf?: {
|
|
986
972
|
headers?: {
|
|
987
973
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
988
974
|
"x-access-token"?: string | undefined;
|
|
989
975
|
} | undefined;
|
|
990
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
991
|
-
cardDetails?: {
|
|
992
|
-
brand: string;
|
|
993
|
-
last4: string;
|
|
994
|
-
} | undefined;
|
|
995
|
-
}>;
|
|
996
|
-
/** List ContractPartners of the contributor. */
|
|
997
|
-
contributorListContractPartnersOfContributor: (conf: {
|
|
998
|
-
contributorId: string;
|
|
999
976
|
queryParameters?: {
|
|
1000
977
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
978
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
979
|
+
contextId?: string | undefined;
|
|
1001
980
|
extensionId?: string | undefined;
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
"
|
|
1007
|
-
|
|
1008
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
|
|
1009
|
-
/** Get the public key to verify the webhook signature. */
|
|
1010
|
-
extensionGetPublicKey: (conf: {
|
|
1011
|
-
serial: string;
|
|
1012
|
-
queryParameters?: {
|
|
1013
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1014
|
-
purpose?: "webhook" | "session_token" | undefined;
|
|
1015
|
-
format?: "raw" | "spki" | undefined;
|
|
1016
|
-
} | undefined;
|
|
1017
|
-
headers?: {
|
|
1018
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
981
|
+
searchTerm?: string | undefined;
|
|
982
|
+
limit?: number | undefined;
|
|
983
|
+
skip?: number | undefined;
|
|
984
|
+
page?: number | undefined;
|
|
985
|
+
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
986
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
1019
987
|
} | undefined;
|
|
1020
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
}>;
|
|
1025
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1026
|
-
extensionGetExtensionInstanceForCustomer: (conf: {
|
|
1027
|
-
customerId: string;
|
|
1028
|
-
extensionId: string;
|
|
988
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[]>;
|
|
989
|
+
/** Get an ExtensionInstance. */
|
|
990
|
+
extensionGetExtensionInstance: (conf: {
|
|
991
|
+
extensionInstanceId: string;
|
|
1029
992
|
headers?: {
|
|
1030
993
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1031
994
|
"x-access-token"?: string | undefined;
|
|
@@ -1049,43 +1012,80 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1049
1012
|
pendingInstallation: boolean;
|
|
1050
1013
|
pendingRemoval: boolean;
|
|
1051
1014
|
}>;
|
|
1052
|
-
/**
|
|
1053
|
-
|
|
1015
|
+
/** Get Extension of own contributor. */
|
|
1016
|
+
extensionGetOwnExtension: (conf: {
|
|
1017
|
+
contributorId: string;
|
|
1018
|
+
extensionId: string;
|
|
1054
1019
|
headers?: {
|
|
1055
1020
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1021
|
+
"x-access-token"?: string | undefined;
|
|
1056
1022
|
} | undefined;
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
} | undefined;
|
|
1063
|
-
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
|
|
1064
|
-
/** Get a Contributor. */
|
|
1065
|
-
extensionGetContributor: (conf: {
|
|
1023
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1024
|
+
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
1025
|
+
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
1026
|
+
blocked?: boolean | undefined;
|
|
1027
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1066
1028
|
contributorId: string;
|
|
1067
|
-
|
|
1068
|
-
|
|
1029
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
1030
|
+
description?: string | undefined;
|
|
1031
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
1032
|
+
disabled?: boolean | undefined;
|
|
1033
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1034
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1035
|
+
frontendFragments?: {
|
|
1036
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1069
1037
|
} | undefined;
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1038
|
+
functional: boolean;
|
|
1039
|
+
id: string;
|
|
1040
|
+
logoRefId?: string | undefined;
|
|
1041
|
+
name: string;
|
|
1042
|
+
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
1043
|
+
published: boolean;
|
|
1044
|
+
requestedChanges?: {
|
|
1045
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
1046
|
+
scopes?: string[];
|
|
1047
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
|
|
1048
|
+
} | undefined;
|
|
1049
|
+
scopes?: string[] | undefined;
|
|
1050
|
+
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
1051
|
+
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
1052
|
+
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
1053
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1054
|
+
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
1055
|
+
inherited: boolean;
|
|
1056
|
+
}) | undefined;
|
|
1057
|
+
tags?: string[] | undefined;
|
|
1058
|
+
verificationRequested: boolean;
|
|
1059
|
+
verified: boolean;
|
|
1060
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
1061
|
+
}>;
|
|
1062
|
+
/** Get all open extension orders for given customer */
|
|
1063
|
+
extensionGetCustomerExtensionInstanceOrders: (conf: {
|
|
1064
|
+
customerId: string;
|
|
1073
1065
|
headers?: {
|
|
1074
1066
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1067
|
+
"x-access-token"?: string | undefined;
|
|
1075
1068
|
} | undefined;
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1069
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1070
|
+
extensionId?: string;
|
|
1078
1071
|
}[]>;
|
|
1079
|
-
/** Get an Extension
|
|
1080
|
-
|
|
1081
|
-
|
|
1072
|
+
/** Get the Contract Strategy of an Extension Instance */
|
|
1073
|
+
extensionGetExtensionInstanceContract: (conf: {
|
|
1074
|
+
extensionInstanceId: string;
|
|
1082
1075
|
headers?: {
|
|
1083
1076
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1077
|
+
"x-access-token"?: string | undefined;
|
|
1084
1078
|
} | undefined;
|
|
1085
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1079
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1080
|
+
currentPrice?: number | undefined;
|
|
1081
|
+
interactionDeadline?: string | undefined;
|
|
1082
|
+
interactionRequired: boolean;
|
|
1083
|
+
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
1084
|
+
terminationTargetDate?: string | undefined;
|
|
1085
|
+
}>;
|
|
1086
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1087
|
+
extensionGetExtensionInstanceForCustomer: (conf: {
|
|
1088
|
+
customerId: string;
|
|
1089
1089
|
extensionId: string;
|
|
1090
1090
|
headers?: {
|
|
1091
1091
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -1110,9 +1110,10 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1110
1110
|
pendingInstallation: boolean;
|
|
1111
1111
|
pendingRemoval: boolean;
|
|
1112
1112
|
}>;
|
|
1113
|
-
/** Get
|
|
1114
|
-
|
|
1115
|
-
|
|
1113
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
1114
|
+
extensionGetExtensionInstanceForProject: (conf: {
|
|
1115
|
+
projectId: string;
|
|
1116
|
+
extensionId: string;
|
|
1116
1117
|
headers?: {
|
|
1117
1118
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1118
1119
|
"x-access-token"?: string | undefined;
|
|
@@ -1136,103 +1137,103 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1136
1137
|
pendingInstallation: boolean;
|
|
1137
1138
|
pendingRemoval: boolean;
|
|
1138
1139
|
}>;
|
|
1139
|
-
/**
|
|
1140
|
-
|
|
1140
|
+
/** Get an Extension. */
|
|
1141
|
+
extensionGetExtension: (conf: {
|
|
1142
|
+
extensionId: string;
|
|
1143
|
+
headers?: {
|
|
1144
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1145
|
+
} | undefined;
|
|
1146
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>>;
|
|
1147
|
+
/** Get all open extension orders for given project */
|
|
1148
|
+
extensionGetProjectExtensionInstanceOrders: (conf: {
|
|
1149
|
+
projectId: string;
|
|
1141
1150
|
headers?: {
|
|
1142
1151
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1143
1152
|
"x-access-token"?: string | undefined;
|
|
1144
1153
|
} | undefined;
|
|
1154
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1155
|
+
extensionId?: string;
|
|
1156
|
+
}[]>;
|
|
1157
|
+
/** Get the public key to verify the webhook signature. */
|
|
1158
|
+
extensionGetPublicKey: (conf: {
|
|
1159
|
+
serial: string;
|
|
1160
|
+
headers?: {
|
|
1161
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1162
|
+
} | undefined;
|
|
1163
|
+
queryParameters?: {
|
|
1164
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1165
|
+
purpose?: "webhook" | "session_token" | undefined;
|
|
1166
|
+
format?: "raw" | "spki" | undefined;
|
|
1167
|
+
} | undefined;
|
|
1168
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1169
|
+
algorithm: string;
|
|
1170
|
+
key: string;
|
|
1171
|
+
serial: string;
|
|
1172
|
+
}>;
|
|
1173
|
+
/** List Contributors. */
|
|
1174
|
+
extensionListContributors: (conf?: {
|
|
1175
|
+
headers?: {
|
|
1176
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1177
|
+
} | undefined;
|
|
1178
|
+
queryParameters?: {
|
|
1179
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1180
|
+
limit?: number | undefined;
|
|
1181
|
+
skip?: number | undefined;
|
|
1182
|
+
page?: number | undefined;
|
|
1183
|
+
} | undefined;
|
|
1184
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
|
|
1185
|
+
/** List Extensions. */
|
|
1186
|
+
extensionListExtensions: (conf?: {
|
|
1187
|
+
headers?: {
|
|
1188
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1189
|
+
} | undefined;
|
|
1145
1190
|
queryParameters?: {
|
|
1146
1191
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1147
1192
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1148
|
-
contextId?: string | undefined;
|
|
1149
|
-
extensionId?: string | undefined;
|
|
1150
1193
|
searchTerm?: string | undefined;
|
|
1194
|
+
includeDeprecated?: boolean | undefined;
|
|
1151
1195
|
limit?: number | undefined;
|
|
1152
1196
|
skip?: number | undefined;
|
|
1153
1197
|
page?: number | undefined;
|
|
1154
|
-
sort?:
|
|
1155
|
-
order?:
|
|
1198
|
+
sort?: "name" | undefined;
|
|
1199
|
+
order?: "asc" | "desc" | undefined;
|
|
1156
1200
|
} | undefined;
|
|
1157
|
-
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.
|
|
1158
|
-
/**
|
|
1159
|
-
|
|
1201
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
|
|
1202
|
+
/** List Extensions of own contributor. */
|
|
1203
|
+
extensionListOwnExtensions: (conf: {
|
|
1160
1204
|
contributorId: string;
|
|
1161
|
-
extensionId: string;
|
|
1162
1205
|
headers?: {
|
|
1163
1206
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1164
1207
|
"x-access-token"?: string | undefined;
|
|
1165
1208
|
} | undefined;
|
|
1166
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1167
|
-
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
1168
|
-
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
1169
|
-
blocked?: boolean | undefined;
|
|
1170
|
-
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1171
|
-
contributorId: string;
|
|
1172
|
-
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
1173
|
-
description?: string | undefined;
|
|
1174
|
-
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
1175
|
-
disabled?: boolean | undefined;
|
|
1176
|
-
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1177
|
-
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1178
|
-
frontendFragments?: {
|
|
1179
|
-
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1180
|
-
} | undefined;
|
|
1181
|
-
functional: boolean;
|
|
1182
|
-
id: string;
|
|
1183
|
-
logoRefId?: string | undefined;
|
|
1184
|
-
name: string;
|
|
1185
|
-
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
1186
|
-
published: boolean;
|
|
1187
|
-
requestedChanges?: {
|
|
1188
|
-
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
1189
|
-
scopes?: string[];
|
|
1190
|
-
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
|
|
1191
|
-
} | undefined;
|
|
1192
|
-
scopes?: string[] | undefined;
|
|
1193
|
-
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
1194
|
-
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
1195
|
-
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
1196
|
-
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1197
|
-
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
1198
|
-
inherited: boolean;
|
|
1199
|
-
}) | undefined;
|
|
1200
|
-
tags?: string[] | undefined;
|
|
1201
|
-
verificationRequested: boolean;
|
|
1202
|
-
verified: boolean;
|
|
1203
|
-
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
1204
|
-
}>;
|
|
1205
|
-
/** List Extensions of own contributor. */
|
|
1206
|
-
extensionListOwnExtensions: (conf: {
|
|
1207
|
-
contributorId: string;
|
|
1208
1209
|
queryParameters?: {
|
|
1209
1210
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1210
1211
|
limit?: number | undefined;
|
|
1211
1212
|
skip?: number | undefined;
|
|
1212
1213
|
page?: number | undefined;
|
|
1213
1214
|
} | undefined;
|
|
1215
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
|
|
1216
|
+
/** List Scopes. */
|
|
1217
|
+
extensionListScopes: (conf?: {
|
|
1214
1218
|
headers?: {
|
|
1215
1219
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1216
|
-
"x-access-token"?: string | undefined;
|
|
1217
1220
|
} | undefined;
|
|
1218
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1222
|
+
name: string;
|
|
1223
|
+
}[]>;
|
|
1224
|
+
/** Get payment method details */
|
|
1225
|
+
customerGetPaymentMethod: (conf: {
|
|
1226
|
+
customerId: string;
|
|
1221
1227
|
headers?: {
|
|
1222
1228
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1229
|
+
"x-access-token"?: string | undefined;
|
|
1223
1230
|
} | undefined;
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
includeDeprecated?: boolean | undefined;
|
|
1229
|
-
limit?: number | undefined;
|
|
1230
|
-
skip?: number | undefined;
|
|
1231
|
-
page?: number | undefined;
|
|
1232
|
-
sort?: "name" | undefined;
|
|
1233
|
-
order?: "asc" | "desc" | undefined;
|
|
1231
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1232
|
+
cardDetails?: {
|
|
1233
|
+
brand: string;
|
|
1234
|
+
last4: string;
|
|
1234
1235
|
} | undefined;
|
|
1235
|
-
}
|
|
1236
|
+
}>;
|
|
1236
1237
|
};
|
|
1237
1238
|
declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1238
1239
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -1337,20 +1338,24 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1337
1338
|
/** List Cronjobs belonging to a Project. */
|
|
1338
1339
|
listCronjobs: (conf: {
|
|
1339
1340
|
projectId: string;
|
|
1341
|
+
headers?: {
|
|
1342
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1343
|
+
"x-access-token"?: string | undefined;
|
|
1344
|
+
} | undefined;
|
|
1340
1345
|
queryParameters?: {
|
|
1341
1346
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1342
1347
|
limit?: number | undefined;
|
|
1343
1348
|
skip?: number | undefined;
|
|
1344
1349
|
page?: number | undefined;
|
|
1345
1350
|
} | undefined;
|
|
1346
|
-
headers?: {
|
|
1347
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1348
|
-
"x-access-token"?: string | undefined;
|
|
1349
|
-
} | undefined;
|
|
1350
1351
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjob[]>;
|
|
1351
1352
|
/** List CronjobExecutions belonging to a Cronjob. */
|
|
1352
1353
|
listExecutions: (conf: {
|
|
1353
1354
|
cronjobId: string;
|
|
1355
|
+
headers?: {
|
|
1356
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1357
|
+
"x-access-token"?: string | undefined;
|
|
1358
|
+
} | undefined;
|
|
1354
1359
|
queryParameters?: {
|
|
1355
1360
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1356
1361
|
limit?: number | undefined;
|
|
@@ -1362,10 +1367,6 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1362
1367
|
triggeredByUser?: boolean | undefined;
|
|
1363
1368
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
|
|
1364
1369
|
} | undefined;
|
|
1365
|
-
headers?: {
|
|
1366
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1367
|
-
"x-access-token"?: string | undefined;
|
|
1368
|
-
} | undefined;
|
|
1369
1370
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution[]>;
|
|
1370
1371
|
/** Get a Cronjob. */
|
|
1371
1372
|
getCronjob: (conf: {
|
|
@@ -1421,15 +1422,15 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1421
1422
|
/** List Invites belonging to a Customer. */
|
|
1422
1423
|
listInvitesForCustomer: (conf: {
|
|
1423
1424
|
customerId: string;
|
|
1425
|
+
headers?: {
|
|
1426
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1427
|
+
"x-access-token"?: string | undefined;
|
|
1428
|
+
} | undefined;
|
|
1424
1429
|
queryParameters?: {
|
|
1425
1430
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1426
1431
|
limit?: number | undefined;
|
|
1427
1432
|
skip?: number | undefined;
|
|
1428
1433
|
} | undefined;
|
|
1429
|
-
headers?: {
|
|
1430
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1431
|
-
"x-access-token"?: string | undefined;
|
|
1432
|
-
} | undefined;
|
|
1433
1434
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
|
|
1434
1435
|
/** Get all customer profiles the authenticated user has access to. */
|
|
1435
1436
|
listCustomers: (conf?: {
|
|
@@ -1584,6 +1585,10 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1584
1585
|
/** List Memberships belonging to a Customer. */
|
|
1585
1586
|
listMembershipsForCustomer: (conf: {
|
|
1586
1587
|
customerId: string;
|
|
1588
|
+
headers?: {
|
|
1589
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1590
|
+
"x-access-token"?: string | undefined;
|
|
1591
|
+
} | undefined;
|
|
1587
1592
|
queryParameters?: {
|
|
1588
1593
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1589
1594
|
limit?: number | undefined;
|
|
@@ -1591,10 +1596,6 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1591
1596
|
hasExpiry?: boolean | undefined;
|
|
1592
1597
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
1593
1598
|
} | undefined;
|
|
1594
|
-
headers?: {
|
|
1595
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1596
|
-
"x-access-token"?: string | undefined;
|
|
1597
|
-
} | undefined;
|
|
1598
1599
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
|
|
1599
1600
|
};
|
|
1600
1601
|
declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
|
|
@@ -1962,14 +1963,14 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1962
1963
|
/** Get a File's meta. */
|
|
1963
1964
|
getFileMeta: (conf: {
|
|
1964
1965
|
fileId: string;
|
|
1965
|
-
queryParameters?: {
|
|
1966
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1967
|
-
token?: string | undefined;
|
|
1968
|
-
} | undefined;
|
|
1969
1966
|
headers?: {
|
|
1970
1967
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1971
1968
|
Token?: string | undefined;
|
|
1972
1969
|
} | undefined;
|
|
1970
|
+
queryParameters?: {
|
|
1971
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1972
|
+
token?: string | undefined;
|
|
1973
|
+
} | undefined;
|
|
1973
1974
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1974
1975
|
friendlyURL: string;
|
|
1975
1976
|
friendlyUrl: string;
|
|
@@ -2036,35 +2037,35 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2036
2037
|
/** Get a File. */
|
|
2037
2038
|
getFile: (conf: {
|
|
2038
2039
|
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
2040
|
headers?: {
|
|
2046
2041
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2047
2042
|
Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2048
2043
|
"Content-Disposition"?: "inline" | "attachment" | undefined;
|
|
2049
2044
|
Token?: string | undefined;
|
|
2050
2045
|
} | 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
2046
|
queryParameters?: {
|
|
2057
2047
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2058
2048
|
accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2059
2049
|
"content-disposition"?: "inline" | "attachment" | undefined;
|
|
2060
2050
|
token?: string | undefined;
|
|
2061
2051
|
} | undefined;
|
|
2052
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
2053
|
+
/** Get a File with user-friendly url. */
|
|
2054
|
+
getFileWithName: (conf: {
|
|
2055
|
+
fileId: string;
|
|
2056
|
+
fileName: string;
|
|
2062
2057
|
headers?: {
|
|
2063
2058
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2064
2059
|
Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2065
2060
|
"Content-Disposition"?: "inline" | "attachment" | undefined;
|
|
2066
2061
|
Token?: string | undefined;
|
|
2067
2062
|
} | undefined;
|
|
2063
|
+
queryParameters?: {
|
|
2064
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2065
|
+
accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
2066
|
+
"content-disposition"?: "inline" | "attachment" | undefined;
|
|
2067
|
+
token?: string | undefined;
|
|
2068
|
+
} | undefined;
|
|
2068
2069
|
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
2069
2070
|
};
|
|
2070
2071
|
declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
@@ -2179,6 +2180,9 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2179
2180
|
/** Get all leads. Use the unlocked routes for more lead details. */
|
|
2180
2181
|
leadfyndrListLeads: (conf: {
|
|
2181
2182
|
customerId: string;
|
|
2183
|
+
headers?: {
|
|
2184
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2185
|
+
} | undefined;
|
|
2182
2186
|
queryParameters?: {
|
|
2183
2187
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2184
2188
|
potentialRangeMin?: number | undefined;
|
|
@@ -2204,9 +2208,6 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2204
2208
|
sort?: "potential" | "relevance" | undefined;
|
|
2205
2209
|
order?: "asc" | "desc" | undefined;
|
|
2206
2210
|
} | undefined;
|
|
2207
|
-
headers?: {
|
|
2208
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2209
|
-
} | undefined;
|
|
2210
2211
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2211
2212
|
leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLead[];
|
|
2212
2213
|
limit: number;
|
|
@@ -2216,6 +2217,9 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2216
2217
|
/** Get all unlocked leads. Organisation can unlock leads. */
|
|
2217
2218
|
leadfyndrListUnlockedLeads: (conf: {
|
|
2218
2219
|
customerId: string;
|
|
2220
|
+
headers?: {
|
|
2221
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2222
|
+
} | undefined;
|
|
2219
2223
|
queryParameters?: {
|
|
2220
2224
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2221
2225
|
potentialRangeMin?: number | undefined;
|
|
@@ -2242,9 +2246,6 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2242
2246
|
sort?: "potential" | "relevance" | undefined;
|
|
2243
2247
|
order?: "asc" | "desc" | undefined;
|
|
2244
2248
|
} | undefined;
|
|
2245
|
-
headers?: {
|
|
2246
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2247
|
-
} | undefined;
|
|
2248
2249
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2249
2250
|
leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrUnlockedLead[];
|
|
2250
2251
|
limit: number;
|
|
@@ -2256,6 +2257,10 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2256
2257
|
/** List DeliveryBoxes belonging to a Project. */
|
|
2257
2258
|
listDeliveryBoxes: (conf: {
|
|
2258
2259
|
projectId: string;
|
|
2260
|
+
headers?: {
|
|
2261
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2262
|
+
"x-access-token"?: string | undefined;
|
|
2263
|
+
} | undefined;
|
|
2259
2264
|
queryParameters?: {
|
|
2260
2265
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2261
2266
|
search?: string | undefined;
|
|
@@ -2263,14 +2268,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2263
2268
|
skip?: number | undefined;
|
|
2264
2269
|
page?: number | undefined;
|
|
2265
2270
|
} | undefined;
|
|
2266
|
-
headers?: {
|
|
2267
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2268
|
-
"x-access-token"?: string | undefined;
|
|
2269
|
-
} | undefined;
|
|
2270
2271
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[]>;
|
|
2271
2272
|
/** List MailAddresses belonging to a Project. */
|
|
2272
2273
|
listMailAddresses: (conf: {
|
|
2273
2274
|
projectId: string;
|
|
2275
|
+
headers?: {
|
|
2276
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2277
|
+
"x-access-token"?: string | undefined;
|
|
2278
|
+
} | undefined;
|
|
2274
2279
|
queryParameters?: {
|
|
2275
2280
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2276
2281
|
search?: string | undefined;
|
|
@@ -2283,10 +2288,6 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2283
2288
|
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
|
|
2284
2289
|
order?: ("asc" | "desc")[] | undefined;
|
|
2285
2290
|
} | undefined;
|
|
2286
|
-
headers?: {
|
|
2287
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2288
|
-
"x-access-token"?: string | undefined;
|
|
2289
|
-
} | undefined;
|
|
2290
2291
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
|
|
2291
2292
|
/** Get a DeliveryBox. */
|
|
2292
2293
|
getDeliveryBox: (conf: {
|
|
@@ -2465,14 +2466,14 @@ declare const buildPageInsightsApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2465
2466
|
/** List websites (specified as domain and path) from a project where performance data is available. */
|
|
2466
2467
|
pageinsightsListPerformanceDataForProject: (conf: {
|
|
2467
2468
|
projectId: string;
|
|
2468
|
-
queryParameters?: {
|
|
2469
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2470
|
-
domain?: string | undefined;
|
|
2471
|
-
} | undefined;
|
|
2472
2469
|
headers?: {
|
|
2473
2470
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2474
2471
|
"x-access-token"?: string | undefined;
|
|
2475
2472
|
} | undefined;
|
|
2473
|
+
queryParameters?: {
|
|
2474
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2475
|
+
domain?: string | undefined;
|
|
2476
|
+
} | undefined;
|
|
2476
2477
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2477
2478
|
domain: string;
|
|
2478
2479
|
paths: {
|
|
@@ -2642,14 +2643,14 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2642
2643
|
/** Submitted feedback of the given user. */
|
|
2643
2644
|
listFeedback: (conf: {
|
|
2644
2645
|
userId: string;
|
|
2645
|
-
queryParameters?: {
|
|
2646
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2647
|
-
subject?: string | undefined;
|
|
2648
|
-
} | undefined;
|
|
2649
2646
|
headers?: {
|
|
2650
2647
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2651
2648
|
"x-access-token"?: string | undefined;
|
|
2652
2649
|
} | undefined;
|
|
2650
|
+
queryParameters?: {
|
|
2651
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2652
|
+
subject?: string | undefined;
|
|
2653
|
+
} | undefined;
|
|
2653
2654
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedback[]>;
|
|
2654
2655
|
/** List all sessions. */
|
|
2655
2656
|
listSessions: (conf?: {
|
|
@@ -2708,15 +2709,15 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2708
2709
|
/** List Invites belonging to a Project. */
|
|
2709
2710
|
listInvitesForProject: (conf: {
|
|
2710
2711
|
projectId: string;
|
|
2712
|
+
headers?: {
|
|
2713
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2714
|
+
"x-access-token"?: string | undefined;
|
|
2715
|
+
} | undefined;
|
|
2711
2716
|
queryParameters?: {
|
|
2712
2717
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2713
2718
|
limit?: number | undefined;
|
|
2714
2719
|
skip?: number | undefined;
|
|
2715
2720
|
} | undefined;
|
|
2716
|
-
headers?: {
|
|
2717
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2718
|
-
"x-access-token"?: string | undefined;
|
|
2719
|
-
} | undefined;
|
|
2720
2721
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[]>;
|
|
2721
2722
|
/** Get a ProjectInvite. */
|
|
2722
2723
|
getProjectInvite: (conf: {
|
|
@@ -2881,6 +2882,10 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2881
2882
|
/** List Memberships belonging to a Project. */
|
|
2882
2883
|
listMembershipsForProject: (conf: {
|
|
2883
2884
|
projectId: string;
|
|
2885
|
+
headers?: {
|
|
2886
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2887
|
+
"x-access-token"?: string | undefined;
|
|
2888
|
+
} | undefined;
|
|
2884
2889
|
queryParameters?: {
|
|
2885
2890
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2886
2891
|
limit?: number | undefined;
|
|
@@ -2890,10 +2895,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2890
2895
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
2891
2896
|
hasMfa?: boolean | undefined;
|
|
2892
2897
|
} | undefined;
|
|
2893
|
-
headers?: {
|
|
2894
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2895
|
-
"x-access-token"?: string | undefined;
|
|
2896
|
-
} | undefined;
|
|
2897
2898
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
|
|
2898
2899
|
/** List ProjectInvites belonging to the executing user. */
|
|
2899
2900
|
listProjectInvites: (conf?: {
|
|
@@ -3021,6 +3022,10 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3021
3022
|
/** List directories belonging to a Project. */
|
|
3022
3023
|
getDirectories: (conf: {
|
|
3023
3024
|
projectId: string;
|
|
3025
|
+
headers?: {
|
|
3026
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3027
|
+
"x-access-token"?: string | undefined;
|
|
3028
|
+
} | undefined;
|
|
3024
3029
|
queryParameters?: {
|
|
3025
3030
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3026
3031
|
directory?: string | undefined;
|
|
@@ -3030,10 +3035,6 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3030
3035
|
executable?: boolean | undefined;
|
|
3031
3036
|
hidden?: boolean | undefined;
|
|
3032
3037
|
} | undefined;
|
|
3033
|
-
headers?: {
|
|
3034
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3035
|
-
"x-access-token"?: string | undefined;
|
|
3036
|
-
} | undefined;
|
|
3037
3038
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3038
3039
|
absolutePath: string;
|
|
3039
3040
|
isDirectory?: boolean | undefined;
|
|
@@ -3048,14 +3049,14 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3048
3049
|
/** Get a Project directory filesystem usage. */
|
|
3049
3050
|
getDiskUsage: (conf: {
|
|
3050
3051
|
projectId: string;
|
|
3051
|
-
queryParameters?: {
|
|
3052
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3053
|
-
directory?: string | undefined;
|
|
3054
|
-
} | undefined;
|
|
3055
3052
|
headers?: {
|
|
3056
3053
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3057
3054
|
"x-access-token"?: string | undefined;
|
|
3058
3055
|
} | undefined;
|
|
3056
|
+
queryParameters?: {
|
|
3057
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3058
|
+
directory?: string | undefined;
|
|
3059
|
+
} | undefined;
|
|
3059
3060
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3060
3061
|
path?: string | undefined;
|
|
3061
3062
|
totalBytes?: number | undefined;
|
|
@@ -3064,15 +3065,15 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3064
3065
|
/** Get a Project file's content. */
|
|
3065
3066
|
getFileContent: (conf: {
|
|
3066
3067
|
projectId: string;
|
|
3068
|
+
headers?: {
|
|
3069
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3070
|
+
"x-access-token"?: string | undefined;
|
|
3071
|
+
} | undefined;
|
|
3067
3072
|
queryParameters?: {
|
|
3068
3073
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3069
3074
|
file?: string | undefined;
|
|
3070
3075
|
inline?: boolean | undefined;
|
|
3071
3076
|
} | undefined;
|
|
3072
|
-
headers?: {
|
|
3073
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3074
|
-
"x-access-token"?: string | undefined;
|
|
3075
|
-
} | undefined;
|
|
3076
3077
|
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
3077
3078
|
/** Get a Project's file/filesystem authorization token. */
|
|
3078
3079
|
getJwt: (conf: {
|
|
@@ -3087,14 +3088,14 @@ declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3087
3088
|
/** Get a Project file's information. */
|
|
3088
3089
|
listFiles: (conf: {
|
|
3089
3090
|
projectId: string;
|
|
3090
|
-
queryParameters?: {
|
|
3091
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3092
|
-
file?: string | undefined;
|
|
3093
|
-
} | undefined;
|
|
3094
3091
|
headers?: {
|
|
3095
3092
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3096
3093
|
"x-access-token"?: string | undefined;
|
|
3097
3094
|
} | undefined;
|
|
3095
|
+
queryParameters?: {
|
|
3096
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3097
|
+
file?: string | undefined;
|
|
3098
|
+
} | undefined;
|
|
3098
3099
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3099
3100
|
absolutePath: string;
|
|
3100
3101
|
isDirectory?: boolean | undefined;
|
|
@@ -3111,15 +3112,15 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3111
3112
|
/** Get all SFTPUsers for a Project. */
|
|
3112
3113
|
sftpUserListSftpUsers: (conf: {
|
|
3113
3114
|
projectId: string;
|
|
3115
|
+
headers?: {
|
|
3116
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3117
|
+
"x-access-token"?: string | undefined;
|
|
3118
|
+
} | undefined;
|
|
3114
3119
|
queryParameters?: {
|
|
3115
3120
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3116
3121
|
limit?: number | undefined;
|
|
3117
3122
|
skip?: number | undefined;
|
|
3118
3123
|
} | undefined;
|
|
3119
|
-
headers?: {
|
|
3120
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3121
|
-
"x-access-token"?: string | undefined;
|
|
3122
|
-
} | undefined;
|
|
3123
3124
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSftpUser[]>;
|
|
3124
3125
|
/** Get an SFTPUser. */
|
|
3125
3126
|
sftpUserGetSftpUser: (conf: {
|
|
@@ -3146,15 +3147,15 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3146
3147
|
/** Get all SSHUsers for a Project. */
|
|
3147
3148
|
sshUserListSshUsers: (conf: {
|
|
3148
3149
|
projectId: string;
|
|
3150
|
+
headers?: {
|
|
3151
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3152
|
+
"x-access-token"?: string | undefined;
|
|
3153
|
+
} | undefined;
|
|
3149
3154
|
queryParameters?: {
|
|
3150
3155
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3151
3156
|
limit?: number | undefined;
|
|
3152
3157
|
skip?: number | undefined;
|
|
3153
3158
|
} | undefined;
|
|
3154
|
-
headers?: {
|
|
3155
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3156
|
-
"x-access-token"?: string | undefined;
|
|
3157
|
-
} | undefined;
|
|
3158
3159
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSshUser[]>;
|
|
3159
3160
|
/** Get an SSHUser. */
|
|
3160
3161
|
sshUserGetSshUser: (conf: {
|