@mittwald/api-client 0.0.0-development-a638234-20260416 → 0.0.0-development-93599d7-20260507
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 +10 -2
- package/dist/esm/generated/v2/client.js +18 -4
- package/dist/esm/generated/v2/descriptors.js +52 -10
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +92 -6
- package/dist/types/generated/v2/client.d.ts +675 -130
- package/dist/types/generated/v2/descriptors.d.ts +20 -6
- package/dist/types/generated/v2/types.d.ts +577 -58
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -78,6 +78,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
78
78
|
callPullImageWebhookForService: new ApiCallAsyncResourceFactory(descriptors.containerCallPullImageWebhookForService, baseClient.container.callPullImageWebhookForService).getApiResource,
|
|
79
79
|
/** List Registries belonging to a Project. */
|
|
80
80
|
listRegistries: new ApiCallAsyncResourceFactory(descriptors.containerListRegistries, baseClient.container.listRegistries).getApiResource,
|
|
81
|
+
/** List Stacks belonging to a Project. */
|
|
82
|
+
listStacks: new ApiCallAsyncResourceFactory(descriptors.containerListStacks, baseClient.container.listStacks).getApiResource,
|
|
81
83
|
/** Get a Stack. */
|
|
82
84
|
getStack: new ApiCallAsyncResourceFactory(descriptors.containerGetStack, baseClient.container.getStack).getApiResource,
|
|
83
85
|
/** Get a Registry. */
|
|
@@ -90,14 +92,16 @@ const buildContainerApi = (baseClient) => ({
|
|
|
90
92
|
getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
|
|
91
93
|
/** Get a Service belonging to a Stack. */
|
|
92
94
|
getService: new ApiCallAsyncResourceFactory(descriptors.containerGetService, baseClient.container.getService).getApiResource,
|
|
95
|
+
/** Get a Container Template by ID. */
|
|
96
|
+
getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
|
|
93
97
|
/** List Stacks belonging to the executing user. */
|
|
94
98
|
listSelfStacks: new ApiCallAsyncResourceFactory(descriptors.containerListSelfStacks, baseClient.container.listSelfStacks).getApiResource,
|
|
95
99
|
/** List Services belonging to a Project. */
|
|
96
100
|
listServices: new ApiCallAsyncResourceFactory(descriptors.containerListServices, baseClient.container.listServices).getApiResource,
|
|
97
101
|
/** List Volumes belonging to a Stack. */
|
|
98
102
|
listStackVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListStackVolumes, baseClient.container.listStackVolumes).getApiResource,
|
|
99
|
-
/** List
|
|
100
|
-
|
|
103
|
+
/** List Container Templates. */
|
|
104
|
+
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
101
105
|
/** List Volumes belonging to a Project. */
|
|
102
106
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
103
107
|
});
|
|
@@ -280,8 +284,12 @@ const buildDomainApi = (baseClient) => ({
|
|
|
280
284
|
dnsListDnsZones: new ApiCallAsyncResourceFactory(descriptors.dnsListDnsZones, baseClient.domain.dnsListDnsZones).getApiResource,
|
|
281
285
|
/** Get a Domain. */
|
|
282
286
|
getDomain: new ApiCallAsyncResourceFactory(descriptors.domainGetDomain, baseClient.domain.getDomain).getApiResource,
|
|
287
|
+
/** Get a Contact-Verification. */
|
|
288
|
+
getContactVerification: new ApiCallAsyncResourceFactory(descriptors.domainGetContactVerification, baseClient.domain.getContactVerification).getApiResource,
|
|
283
289
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
284
290
|
getLatestScreenshot: new ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
|
|
291
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
292
|
+
listContactVerifications: new ApiCallAsyncResourceFactory(descriptors.domainListContactVerifications, baseClient.domain.listContactVerifications).getApiResource,
|
|
285
293
|
/** List the contact schemas for a TLD. */
|
|
286
294
|
listTldContactSchemas: new ApiCallAsyncResourceFactory(descriptors.domainListTldContactSchemas, baseClient.domain.listTldContactSchemas).getApiResource,
|
|
287
295
|
/** List TLDs. */
|
|
@@ -138,10 +138,16 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
138
138
|
listRegistries: this.requestFunctionFactory(descriptors.containerListRegistries),
|
|
139
139
|
/** Create a Registry. */
|
|
140
140
|
createRegistry: this.requestFunctionFactory(descriptors.containerCreateRegistry),
|
|
141
|
+
/** List Stacks belonging to a Project. */
|
|
142
|
+
listStacks: this.requestFunctionFactory(descriptors.containerListStacks),
|
|
143
|
+
/** Create a Stack. */
|
|
144
|
+
createStack: this.requestFunctionFactory(descriptors.containerCreateStack),
|
|
141
145
|
/** Get a Stack. */
|
|
142
146
|
getStack: this.requestFunctionFactory(descriptors.containerGetStack),
|
|
143
147
|
/** Declaratively create, update or delete Services or Volumes belonging to a Stack. */
|
|
144
148
|
declareStack: this.requestFunctionFactory(descriptors.containerDeclareStack),
|
|
149
|
+
/** Delete a Stack. */
|
|
150
|
+
deleteStack: this.requestFunctionFactory(descriptors.containerDeleteStack),
|
|
145
151
|
/** Create, update or delete Services or Volumes belonging to a Stack. */
|
|
146
152
|
updateStack: this.requestFunctionFactory(descriptors.containerUpdateStack),
|
|
147
153
|
/** Get a Registry. */
|
|
@@ -160,14 +166,16 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
160
166
|
getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
|
|
161
167
|
/** Get a Service belonging to a Stack. */
|
|
162
168
|
getService: this.requestFunctionFactory(descriptors.containerGetService),
|
|
169
|
+
/** Get a Container Template by ID. */
|
|
170
|
+
getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
|
|
163
171
|
/** List Stacks belonging to the executing user. */
|
|
164
172
|
listSelfStacks: this.requestFunctionFactory(descriptors.containerListSelfStacks),
|
|
165
173
|
/** List Services belonging to a Project. */
|
|
166
174
|
listServices: this.requestFunctionFactory(descriptors.containerListServices),
|
|
167
175
|
/** List Volumes belonging to a Stack. */
|
|
168
176
|
listStackVolumes: this.requestFunctionFactory(descriptors.containerListStackVolumes),
|
|
169
|
-
/** List
|
|
170
|
-
|
|
177
|
+
/** List Container Templates. */
|
|
178
|
+
listTemplates: this.requestFunctionFactory(descriptors.containerListTemplates),
|
|
171
179
|
/** List Volumes belonging to a Project. */
|
|
172
180
|
listVolumes: this.requestFunctionFactory(descriptors.containerListVolumes),
|
|
173
181
|
/** Pull image and recreate */
|
|
@@ -178,14 +186,14 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
178
186
|
restartService: this.requestFunctionFactory(descriptors.containerRestartService),
|
|
179
187
|
/** Create or rotate pull-image webhook token */
|
|
180
188
|
rotatePullImageWebhookForService: this.requestFunctionFactory(descriptors.containerRotatePullImageWebhookForService),
|
|
189
|
+
/** Replace the description of a Stack. */
|
|
190
|
+
setStackDescription: this.requestFunctionFactory(descriptors.containerSetStackDescription),
|
|
181
191
|
/** Set an update schedule for a Stack. */
|
|
182
192
|
setStackUpdateSchedule: this.requestFunctionFactory(descriptors.containerSetStackUpdateSchedule),
|
|
183
193
|
/** Start a stopped Service. */
|
|
184
194
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
185
195
|
/** Stop a started Service. */
|
|
186
196
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
187
|
-
/** Validate a Registries' credentials. */
|
|
188
|
-
validateRegistryCredentials: this.requestFunctionFactory(descriptors.containerValidateRegistryCredentials),
|
|
189
197
|
};
|
|
190
198
|
/** The contract API allows you to manage your contracts and orders */
|
|
191
199
|
contract = {
|
|
@@ -581,8 +589,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
581
589
|
getDomain: this.requestFunctionFactory(descriptors.domainGetDomain),
|
|
582
590
|
/** Delete a Domain. */
|
|
583
591
|
deleteDomain: this.requestFunctionFactory(descriptors.domainDeleteDomain),
|
|
592
|
+
/** Get a Contact-Verification. */
|
|
593
|
+
getContactVerification: this.requestFunctionFactory(descriptors.domainGetContactVerification),
|
|
584
594
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
585
595
|
getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
|
|
596
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
597
|
+
listContactVerifications: this.requestFunctionFactory(descriptors.domainListContactVerifications),
|
|
586
598
|
/** List the contact schemas for a TLD. */
|
|
587
599
|
listTldContactSchemas: this.requestFunctionFactory(descriptors.domainListTldContactSchemas),
|
|
588
600
|
/** List TLDs. */
|
|
@@ -593,6 +605,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
593
605
|
migrationListMigrations: this.requestFunctionFactory(descriptors.domainMigrationListMigrations),
|
|
594
606
|
/** Create a Domain-Migration from a pAccount into a Project. */
|
|
595
607
|
migrationRequestDomainMigration: this.requestFunctionFactory(descriptors.domainMigrationRequestDomainMigration),
|
|
608
|
+
/** Resends a Contact-Verification email. */
|
|
609
|
+
resendContactVerificationEmail: this.requestFunctionFactory(descriptors.domainResendContactVerificationEmail),
|
|
596
610
|
/** Resend a Domain email. */
|
|
597
611
|
resendDomainEmail: this.requestFunctionFactory(descriptors.domainResendDomainEmail),
|
|
598
612
|
/** Suggest a list of domains based on a prompt using AI. */
|
|
@@ -358,6 +358,18 @@ export const containerCreateRegistry = {
|
|
|
358
358
|
method: "POST",
|
|
359
359
|
operationId: "container-create-registry",
|
|
360
360
|
};
|
|
361
|
+
/** List Stacks belonging to a Project. */
|
|
362
|
+
export const containerListStacks = {
|
|
363
|
+
path: "/v2/projects/{projectId}/stacks",
|
|
364
|
+
method: "GET",
|
|
365
|
+
operationId: "container-list-stacks",
|
|
366
|
+
};
|
|
367
|
+
/** Create a Stack. */
|
|
368
|
+
export const containerCreateStack = {
|
|
369
|
+
path: "/v2/projects/{projectId}/stacks",
|
|
370
|
+
method: "POST",
|
|
371
|
+
operationId: "container-create-stack",
|
|
372
|
+
};
|
|
361
373
|
/** Get a Stack. */
|
|
362
374
|
export const containerGetStack = {
|
|
363
375
|
path: "/v2/stacks/{stackId}",
|
|
@@ -370,6 +382,12 @@ export const containerDeclareStack = {
|
|
|
370
382
|
method: "PUT",
|
|
371
383
|
operationId: "container-declare-stack",
|
|
372
384
|
};
|
|
385
|
+
/** Delete a Stack. */
|
|
386
|
+
export const containerDeleteStack = {
|
|
387
|
+
path: "/v2/stacks/{stackId}",
|
|
388
|
+
method: "DELETE",
|
|
389
|
+
operationId: "container-delete-stack",
|
|
390
|
+
};
|
|
373
391
|
/** Create, update or delete Services or Volumes belonging to a Stack. */
|
|
374
392
|
export const containerUpdateStack = {
|
|
375
393
|
path: "/v2/stacks/{stackId}",
|
|
@@ -424,6 +442,12 @@ export const containerGetService = {
|
|
|
424
442
|
method: "GET",
|
|
425
443
|
operationId: "container-get-service",
|
|
426
444
|
};
|
|
445
|
+
/** Get a Container Template by ID. */
|
|
446
|
+
export const containerGetTemplate = {
|
|
447
|
+
path: "/v2/container-templates/{templateId}",
|
|
448
|
+
method: "GET",
|
|
449
|
+
operationId: "container-get-template",
|
|
450
|
+
};
|
|
427
451
|
/** List Stacks belonging to the executing user. */
|
|
428
452
|
export const containerListSelfStacks = {
|
|
429
453
|
path: "/v2/stacks",
|
|
@@ -442,11 +466,11 @@ export const containerListStackVolumes = {
|
|
|
442
466
|
method: "GET",
|
|
443
467
|
operationId: "container-list-stack-volumes",
|
|
444
468
|
};
|
|
445
|
-
/** List
|
|
446
|
-
export const
|
|
447
|
-
path: "/v2/
|
|
469
|
+
/** List Container Templates. */
|
|
470
|
+
export const containerListTemplates = {
|
|
471
|
+
path: "/v2/container-templates",
|
|
448
472
|
method: "GET",
|
|
449
|
-
operationId: "container-list-
|
|
473
|
+
operationId: "container-list-templates",
|
|
450
474
|
};
|
|
451
475
|
/** List Volumes belonging to a Project. */
|
|
452
476
|
export const containerListVolumes = {
|
|
@@ -478,6 +502,12 @@ export const containerRotatePullImageWebhookForService = {
|
|
|
478
502
|
method: "POST",
|
|
479
503
|
operationId: "container-rotate-pull-image-webhook-for-service",
|
|
480
504
|
};
|
|
505
|
+
/** Replace the description of a Stack. */
|
|
506
|
+
export const containerSetStackDescription = {
|
|
507
|
+
path: "/v2/stacks/{stackId}/description",
|
|
508
|
+
method: "PUT",
|
|
509
|
+
operationId: "container-set-stack-description",
|
|
510
|
+
};
|
|
481
511
|
/** Set an update schedule for a Stack. */
|
|
482
512
|
export const containerSetStackUpdateSchedule = {
|
|
483
513
|
path: "/v2/stacks/{stackId}/update-schedule",
|
|
@@ -496,12 +526,6 @@ export const containerStopService = {
|
|
|
496
526
|
method: "POST",
|
|
497
527
|
operationId: "container-stop-service",
|
|
498
528
|
};
|
|
499
|
-
/** Validate a Registries' credentials. */
|
|
500
|
-
export const containerValidateRegistryCredentials = {
|
|
501
|
-
path: "/v2/registries/{registryId}/actions/validate-credentials",
|
|
502
|
-
method: "POST",
|
|
503
|
-
operationId: "container-validate-registry-credentials",
|
|
504
|
-
};
|
|
505
529
|
/** Schedule the Termination of a ContractItem. */
|
|
506
530
|
export const contractTerminateContractItem = {
|
|
507
531
|
path: "/v2/contracts/{contractId}/items/{contractItemId}/termination",
|
|
@@ -1312,12 +1336,24 @@ export const domainDeleteDomain = {
|
|
|
1312
1336
|
method: "DELETE",
|
|
1313
1337
|
operationId: "domain-delete-domain",
|
|
1314
1338
|
};
|
|
1339
|
+
/** Get a Contact-Verification. */
|
|
1340
|
+
export const domainGetContactVerification = {
|
|
1341
|
+
path: "/v2/contact-verifications/{contactVerificationId}",
|
|
1342
|
+
method: "GET",
|
|
1343
|
+
operationId: "domain-get-contact-verification",
|
|
1344
|
+
};
|
|
1315
1345
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
1316
1346
|
export const domainGetLatestScreenshot = {
|
|
1317
1347
|
path: "/v2/domains/latest-screenshot",
|
|
1318
1348
|
method: "GET",
|
|
1319
1349
|
operationId: "domain-get-latest-screenshot",
|
|
1320
1350
|
};
|
|
1351
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
1352
|
+
export const domainListContactVerifications = {
|
|
1353
|
+
path: "/v2/contact-verifications",
|
|
1354
|
+
method: "GET",
|
|
1355
|
+
operationId: "domain-list-contact-verifications",
|
|
1356
|
+
};
|
|
1321
1357
|
/** List the contact schemas for a TLD. */
|
|
1322
1358
|
export const domainListTldContactSchemas = {
|
|
1323
1359
|
path: "/v2/domain-tlds/{tld}/contact-schemas",
|
|
@@ -1348,6 +1384,12 @@ export const domainMigrationRequestDomainMigration = {
|
|
|
1348
1384
|
method: "POST",
|
|
1349
1385
|
operationId: "domain-migration-request-domain-migration",
|
|
1350
1386
|
};
|
|
1387
|
+
/** Resends a Contact-Verification email. */
|
|
1388
|
+
export const domainResendContactVerificationEmail = {
|
|
1389
|
+
path: "/v2/contact-verifications/{contactVerificationId}/actions/resend-contact-verification-email",
|
|
1390
|
+
method: "POST",
|
|
1391
|
+
operationId: "domain-resend-contact-verification-email",
|
|
1392
|
+
};
|
|
1351
1393
|
/** Resend a Domain email. */
|
|
1352
1394
|
export const domainResendDomainEmail = {
|
|
1353
1395
|
path: "/v2/domains/{domainId}/actions/resend-email",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.357.0';
|
|
@@ -427,6 +427,7 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
427
427
|
withExportsOnly?: boolean | undefined;
|
|
428
428
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
429
429
|
runningRestoresOnly?: boolean | undefined;
|
|
430
|
+
runningBackupsOnly?: boolean | undefined;
|
|
430
431
|
limit?: number | undefined;
|
|
431
432
|
skip?: number | undefined;
|
|
432
433
|
page?: number | undefined;
|
|
@@ -530,6 +531,20 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
530
531
|
page?: number | undefined;
|
|
531
532
|
} | undefined;
|
|
532
533
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistry[]>;
|
|
534
|
+
/** List Stacks belonging to a Project. */
|
|
535
|
+
listStacks: (conf: {
|
|
536
|
+
projectId: string;
|
|
537
|
+
headers?: {
|
|
538
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
539
|
+
"x-access-token"?: string | undefined;
|
|
540
|
+
} | undefined;
|
|
541
|
+
queryParameters?: {
|
|
542
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
543
|
+
limit?: number | undefined;
|
|
544
|
+
skip?: number | undefined;
|
|
545
|
+
page?: number | undefined;
|
|
546
|
+
} | undefined;
|
|
547
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[]>;
|
|
533
548
|
/** Get a Stack. */
|
|
534
549
|
getStack: (conf: {
|
|
535
550
|
stackId: string;
|
|
@@ -544,6 +559,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
544
559
|
prefix: string;
|
|
545
560
|
projectId: string;
|
|
546
561
|
services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
|
|
562
|
+
templateId?: string | undefined;
|
|
547
563
|
updateSchedule?: {
|
|
548
564
|
cron: string;
|
|
549
565
|
timezone?: string;
|
|
@@ -644,6 +660,44 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
644
660
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
|
|
645
661
|
statusSetAt: string;
|
|
646
662
|
}>;
|
|
663
|
+
/** Get a Container Template by ID. */
|
|
664
|
+
getTemplate: (conf: {
|
|
665
|
+
templateId: string;
|
|
666
|
+
headers?: {
|
|
667
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
668
|
+
} | undefined;
|
|
669
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
670
|
+
categories: string[];
|
|
671
|
+
description: {
|
|
672
|
+
de: string;
|
|
673
|
+
en: string;
|
|
674
|
+
};
|
|
675
|
+
developer: string;
|
|
676
|
+
domains?: {
|
|
677
|
+
port: string;
|
|
678
|
+
service: string;
|
|
679
|
+
userInput: string;
|
|
680
|
+
}[] | undefined;
|
|
681
|
+
icon: string;
|
|
682
|
+
id: string;
|
|
683
|
+
license?: string | undefined;
|
|
684
|
+
manifestVersion: string;
|
|
685
|
+
name: string;
|
|
686
|
+
repository?: string | undefined;
|
|
687
|
+
tagline: {
|
|
688
|
+
de: string;
|
|
689
|
+
en: string;
|
|
690
|
+
};
|
|
691
|
+
userInputs?: {
|
|
692
|
+
dataSource?: string;
|
|
693
|
+
defaultValue?: string;
|
|
694
|
+
name: string;
|
|
695
|
+
required: boolean;
|
|
696
|
+
validationSchema?: string;
|
|
697
|
+
}[] | undefined;
|
|
698
|
+
version: string;
|
|
699
|
+
website?: string | undefined;
|
|
700
|
+
}>;
|
|
647
701
|
/** List Stacks belonging to the executing user. */
|
|
648
702
|
listSelfStacks: (conf?: {
|
|
649
703
|
headers?: {
|
|
@@ -652,6 +706,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
652
706
|
} | undefined;
|
|
653
707
|
queryParameters?: {
|
|
654
708
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
709
|
+
searchTerm?: string | undefined;
|
|
655
710
|
limit?: number | undefined;
|
|
656
711
|
skip?: number | undefined;
|
|
657
712
|
page?: number | undefined;
|
|
@@ -692,20 +747,20 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
692
747
|
page?: number | undefined;
|
|
693
748
|
} | undefined;
|
|
694
749
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
695
|
-
/** List
|
|
696
|
-
|
|
697
|
-
projectId: string;
|
|
750
|
+
/** List Container Templates. */
|
|
751
|
+
listTemplates: (conf?: {
|
|
698
752
|
headers?: {
|
|
699
753
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
700
|
-
"x-access-token"?: string | undefined;
|
|
701
754
|
} | undefined;
|
|
702
755
|
queryParameters?: {
|
|
703
756
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
757
|
+
category?: string | undefined;
|
|
758
|
+
searchTerm?: string | undefined;
|
|
704
759
|
limit?: number | undefined;
|
|
705
760
|
skip?: number | undefined;
|
|
706
761
|
page?: number | undefined;
|
|
707
762
|
} | undefined;
|
|
708
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.
|
|
763
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplate[]>;
|
|
709
764
|
/** List Volumes belonging to a Project. */
|
|
710
765
|
listVolumes: (conf: {
|
|
711
766
|
projectId: string;
|
|
@@ -1260,6 +1315,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1260
1315
|
contributorName: string;
|
|
1261
1316
|
createdAt?: string | undefined;
|
|
1262
1317
|
disabled: boolean;
|
|
1318
|
+
extensionDeletionDeadline?: string | undefined;
|
|
1263
1319
|
extensionId: string;
|
|
1264
1320
|
extensionName: string;
|
|
1265
1321
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -1285,6 +1341,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1285
1341
|
blocked?: boolean | undefined;
|
|
1286
1342
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1287
1343
|
contributorId: string;
|
|
1344
|
+
deletionDeadline?: string | undefined;
|
|
1288
1345
|
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
1289
1346
|
description?: string | undefined;
|
|
1290
1347
|
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
@@ -1296,6 +1353,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1296
1353
|
} | undefined;
|
|
1297
1354
|
functional: boolean;
|
|
1298
1355
|
id: string;
|
|
1356
|
+
isDeletionScheduled?: boolean | undefined;
|
|
1299
1357
|
logoRefId?: string | undefined;
|
|
1300
1358
|
name: string;
|
|
1301
1359
|
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
@@ -1373,6 +1431,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1373
1431
|
contributorName: string;
|
|
1374
1432
|
createdAt?: string | undefined;
|
|
1375
1433
|
disabled: boolean;
|
|
1434
|
+
extensionDeletionDeadline?: string | undefined;
|
|
1376
1435
|
extensionId: string;
|
|
1377
1436
|
extensionName: string;
|
|
1378
1437
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -1404,6 +1463,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1404
1463
|
contributorName: string;
|
|
1405
1464
|
createdAt?: string | undefined;
|
|
1406
1465
|
disabled: boolean;
|
|
1466
|
+
extensionDeletionDeadline?: string | undefined;
|
|
1407
1467
|
extensionId: string;
|
|
1408
1468
|
extensionName: string;
|
|
1409
1469
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -1474,10 +1534,12 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1474
1534
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1475
1535
|
searchTerm?: string | undefined;
|
|
1476
1536
|
includeDeprecated?: boolean | undefined;
|
|
1537
|
+
includeFree?: boolean | undefined;
|
|
1538
|
+
includeChargeable?: boolean | undefined;
|
|
1477
1539
|
limit?: number | undefined;
|
|
1478
1540
|
skip?: number | undefined;
|
|
1479
1541
|
page?: number | undefined;
|
|
1480
|
-
sort?: "name" | undefined;
|
|
1542
|
+
sort?: "name" | "pricing.priceInCents" | undefined;
|
|
1481
1543
|
order?: "asc" | "desc" | undefined;
|
|
1482
1544
|
} | undefined;
|
|
1483
1545
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
|
|
@@ -2127,6 +2189,18 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2127
2189
|
transferInAuthCode?: string | undefined;
|
|
2128
2190
|
usesDefaultNameserver: boolean;
|
|
2129
2191
|
}>;
|
|
2192
|
+
/** Get a Contact-Verification. */
|
|
2193
|
+
getContactVerification: (conf: {
|
|
2194
|
+
contactVerificationId: string;
|
|
2195
|
+
headers?: {
|
|
2196
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2197
|
+
"x-access-token"?: string | undefined;
|
|
2198
|
+
} | undefined;
|
|
2199
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2200
|
+
id: string;
|
|
2201
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
2202
|
+
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
2203
|
+
}>;
|
|
2130
2204
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
2131
2205
|
getLatestScreenshot: (conf: {
|
|
2132
2206
|
queryParameters: {
|
|
@@ -2140,6 +2214,18 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2140
2214
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2141
2215
|
reference?: string | undefined;
|
|
2142
2216
|
}>;
|
|
2217
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
2218
|
+
listContactVerifications: (conf?: {
|
|
2219
|
+
headers?: {
|
|
2220
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2221
|
+
"x-access-token"?: string | undefined;
|
|
2222
|
+
} | undefined;
|
|
2223
|
+
queryParameters?: {
|
|
2224
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2225
|
+
value?: string | undefined;
|
|
2226
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
2227
|
+
} | undefined;
|
|
2228
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[]>;
|
|
2143
2229
|
/** List the contact schemas for a TLD. */
|
|
2144
2230
|
listTldContactSchemas: (conf: {
|
|
2145
2231
|
tld: string;
|