@mittwald/api-client 0.0.0-development-20132a5-20260318 → 0.0.0-development-f25b020-20260331
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 +24 -22
- package/dist/esm/generated/v2/client.js +38 -36
- package/dist/esm/generated/v2/descriptors.js +78 -72
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +130 -115
- package/dist/types/generated/v2/client.d.ts +4676 -4570
- package/dist/types/generated/v2/descriptors.d.ts +26 -24
- package/dist/types/generated/v2/types.d.ts +5153 -5034
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -74,6 +74,8 @@ const buildBackupApi = (baseClient) => ({
|
|
|
74
74
|
getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
|
|
75
75
|
});
|
|
76
76
|
const buildContainerApi = (baseClient) => ({
|
|
77
|
+
/** Call pull-image webhook */
|
|
78
|
+
callPullImageWebhookForService: new ApiCallAsyncResourceFactory(descriptors.containerCallPullImageWebhookForService, baseClient.container.callPullImageWebhookForService).getApiResource,
|
|
77
79
|
/** List Registries belonging to a Project. */
|
|
78
80
|
listRegistries: new ApiCallAsyncResourceFactory(descriptors.containerListRegistries, baseClient.container.listRegistries).getApiResource,
|
|
79
81
|
/** Get a Stack. */
|
|
@@ -209,18 +211,6 @@ const buildConversationApi = (baseClient) => ({
|
|
|
209
211
|
/** Get all conversation categories. */
|
|
210
212
|
listCategories: new ApiCallAsyncResourceFactory(descriptors.conversationListCategories, baseClient.conversation.listCategories).getApiResource,
|
|
211
213
|
});
|
|
212
|
-
const buildCronjobApi = (baseClient) => ({
|
|
213
|
-
/** List Cronjobs belonging to a Project. */
|
|
214
|
-
listCronjobs: new ApiCallAsyncResourceFactory(descriptors.cronjobListCronjobs, baseClient.cronjob.listCronjobs).getApiResource,
|
|
215
|
-
/** List CronjobExecutions belonging to a Cronjob. */
|
|
216
|
-
listExecutions: new ApiCallAsyncResourceFactory(descriptors.cronjobListExecutions, baseClient.cronjob.listExecutions).getApiResource,
|
|
217
|
-
/** Get a Cronjob. */
|
|
218
|
-
getCronjob: new ApiCallAsyncResourceFactory(descriptors.cronjobGetCronjob, baseClient.cronjob.getCronjob).getApiResource,
|
|
219
|
-
/** Get a CronjobExecution analysis for failed executions. */
|
|
220
|
-
getExecutionAnalysis: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecutionAnalysis, baseClient.cronjob.getExecutionAnalysis).getApiResource,
|
|
221
|
-
/** Get a CronjobExecution. */
|
|
222
|
-
getExecution: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecution, baseClient.cronjob.getExecution).getApiResource,
|
|
223
|
-
});
|
|
224
214
|
const buildCustomerApi = (baseClient) => ({
|
|
225
215
|
/** List Invites belonging to a Customer. */
|
|
226
216
|
listInvitesForCustomer: new ApiCallAsyncResourceFactory(descriptors.customerListInvitesForCustomer, baseClient.customer.listInvitesForCustomer).getApiResource,
|
|
@@ -357,10 +347,6 @@ const buildMailApi = (baseClient) => ({
|
|
|
357
347
|
/** List Migrations belonging to a Project in customer center or mStudio. */
|
|
358
348
|
migrationListMigrations: new ApiCallAsyncResourceFactory(descriptors.mailMigrationListMigrations, baseClient.mail.migrationListMigrations).getApiResource,
|
|
359
349
|
});
|
|
360
|
-
const buildMiscApi = (baseClient) => ({
|
|
361
|
-
/** List valid time zones. */
|
|
362
|
-
ellaneousListTimeZones: new ApiCallAsyncResourceFactory(descriptors.miscellaneousListTimeZones, baseClient.misc.ellaneousListTimeZones).getApiResource,
|
|
363
|
-
});
|
|
364
350
|
const buildNotificationApi = (baseClient) => ({
|
|
365
351
|
/** Getting the subscription status of the subscription. */
|
|
366
352
|
newsletterGetInfo: new ApiCallAsyncResourceFactory(descriptors.newsletterGetInfo, baseClient.notification.newsletterGetInfo).getApiResource,
|
|
@@ -463,6 +449,22 @@ const buildSshsftpUserApi = (baseClient) => ({
|
|
|
463
449
|
/** Get an SSHUser. */
|
|
464
450
|
sshUserGetSshUser: new ApiCallAsyncResourceFactory(descriptors.sshUserGetSshUser, baseClient.sshsftpUser.sshUserGetSshUser).getApiResource,
|
|
465
451
|
});
|
|
452
|
+
const buildCronjobApi = (baseClient) => ({
|
|
453
|
+
/** Get a Cronjob. */
|
|
454
|
+
getCronjob: new ApiCallAsyncResourceFactory(descriptors.cronjobGetCronjob, baseClient.cronjob.getCronjob).getApiResource,
|
|
455
|
+
/** List CronjobExecutions belonging to a Cronjob. */
|
|
456
|
+
listExecutions: new ApiCallAsyncResourceFactory(descriptors.cronjobListExecutions, baseClient.cronjob.listExecutions).getApiResource,
|
|
457
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
458
|
+
getExecutionAnalysis: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecutionAnalysis, baseClient.cronjob.getExecutionAnalysis).getApiResource,
|
|
459
|
+
/** List Cronjobs belonging to a Project. */
|
|
460
|
+
listCronjobs: new ApiCallAsyncResourceFactory(descriptors.cronjobListCronjobs, baseClient.cronjob.listCronjobs).getApiResource,
|
|
461
|
+
/** Get a CronjobExecution. */
|
|
462
|
+
getExecution: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecution, baseClient.cronjob.getExecution).getApiResource,
|
|
463
|
+
});
|
|
464
|
+
const buildMiscApi = (baseClient) => ({
|
|
465
|
+
/** List valid time zones. */
|
|
466
|
+
ellaneousListTimeZones: new ApiCallAsyncResourceFactory(descriptors.miscellaneousListTimeZones, baseClient.misc.ellaneousListTimeZones).getApiResource,
|
|
467
|
+
});
|
|
466
468
|
export class MittwaldAPIV2ClientReact {
|
|
467
469
|
/** The AI hosting provides access to multiple large language and embedding models – GDPR compliant and hosted in Germany. */
|
|
468
470
|
aiHosting;
|
|
@@ -480,8 +482,6 @@ export class MittwaldAPIV2ClientReact {
|
|
|
480
482
|
marketplace;
|
|
481
483
|
/** The conversation API allows you to manage your support conversations. */
|
|
482
484
|
conversation;
|
|
483
|
-
/** The cronjob API allows you to manage cronjobs within a project. */
|
|
484
|
-
cronjob;
|
|
485
485
|
/** The customer API allows you to manage your own organizations and users. */
|
|
486
486
|
customer;
|
|
487
487
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
@@ -496,8 +496,6 @@ export class MittwaldAPIV2ClientReact {
|
|
|
496
496
|
license;
|
|
497
497
|
/** The mail API allows you to manage your mail accounts. */
|
|
498
498
|
mail;
|
|
499
|
-
/** API endpoints that are not related to any specific API domain */
|
|
500
|
-
misc;
|
|
501
499
|
/** The notification API allows you to manage your notifications. */
|
|
502
500
|
notification;
|
|
503
501
|
/** The page insights API allows you to get page insights information. */
|
|
@@ -510,6 +508,10 @@ export class MittwaldAPIV2ClientReact {
|
|
|
510
508
|
projectFileSystem;
|
|
511
509
|
/** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
|
|
512
510
|
sshsftpUser;
|
|
511
|
+
/** The cronjob API allows you to manage cronjobs within a project. */
|
|
512
|
+
cronjob;
|
|
513
|
+
/** API endpoints that are not related to any specific API domain */
|
|
514
|
+
misc;
|
|
513
515
|
constructor(baseClient) {
|
|
514
516
|
this.aiHosting = buildAiHostingApi(baseClient);
|
|
515
517
|
this.app = buildAppApi(baseClient);
|
|
@@ -519,7 +521,6 @@ export class MittwaldAPIV2ClientReact {
|
|
|
519
521
|
this.contract = buildContractApi(baseClient);
|
|
520
522
|
this.marketplace = buildMarketplaceApi(baseClient);
|
|
521
523
|
this.conversation = buildConversationApi(baseClient);
|
|
522
|
-
this.cronjob = buildCronjobApi(baseClient);
|
|
523
524
|
this.customer = buildCustomerApi(baseClient);
|
|
524
525
|
this.database = buildDatabaseApi(baseClient);
|
|
525
526
|
this.domain = buildDomainApi(baseClient);
|
|
@@ -527,13 +528,14 @@ export class MittwaldAPIV2ClientReact {
|
|
|
527
528
|
this.leadFyndr = buildLeadFyndrApi(baseClient);
|
|
528
529
|
this.license = buildLicenseApi(baseClient);
|
|
529
530
|
this.mail = buildMailApi(baseClient);
|
|
530
|
-
this.misc = buildMiscApi(baseClient);
|
|
531
531
|
this.notification = buildNotificationApi(baseClient);
|
|
532
532
|
this.pageInsights = buildPageInsightsApi(baseClient);
|
|
533
533
|
this.user = buildUserApi(baseClient);
|
|
534
534
|
this.project = buildProjectApi(baseClient);
|
|
535
535
|
this.projectFileSystem = buildProjectFileSystemApi(baseClient);
|
|
536
536
|
this.sshsftpUser = buildSshsftpUserApi(baseClient);
|
|
537
|
+
this.cronjob = buildCronjobApi(baseClient);
|
|
538
|
+
this.misc = buildMiscApi(baseClient);
|
|
537
539
|
}
|
|
538
540
|
static fromBaseClient(baseClient) {
|
|
539
541
|
return new MittwaldAPIV2ClientReact(baseClient);
|
|
@@ -41,8 +41,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
41
41
|
};
|
|
42
42
|
/** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
|
|
43
43
|
app = {
|
|
44
|
-
/** Trigger a runtime action belonging to an AppInstallation. */
|
|
45
|
-
executeAction: this.requestFunctionFactory(descriptors.appExecuteAction),
|
|
46
44
|
/** Get an App. */
|
|
47
45
|
getApp: this.requestFunctionFactory(descriptors.appGetApp),
|
|
48
46
|
/** Get an AppInstallation. */
|
|
@@ -134,6 +132,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
134
132
|
};
|
|
135
133
|
/** The container API allows you to manage your stacks, containers, volumes and registries. */
|
|
136
134
|
container = {
|
|
135
|
+
/** Call pull-image webhook */
|
|
136
|
+
callPullImageWebhookForService: this.requestFunctionFactory(descriptors.containerCallPullImageWebhookForService),
|
|
137
137
|
/** List Registries belonging to a Project. */
|
|
138
138
|
listRegistries: this.requestFunctionFactory(descriptors.containerListRegistries),
|
|
139
139
|
/** Create a Registry. */
|
|
@@ -176,6 +176,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
176
176
|
recreateService: this.requestFunctionFactory(descriptors.containerRecreateService),
|
|
177
177
|
/** Restart a started Service. */
|
|
178
178
|
restartService: this.requestFunctionFactory(descriptors.containerRestartService),
|
|
179
|
+
/** Create or rotate pull-image webhook token */
|
|
180
|
+
rotatePullImageWebhookForService: this.requestFunctionFactory(descriptors.containerRotatePullImageWebhookForService),
|
|
179
181
|
/** Set an update schedule for a Stack. */
|
|
180
182
|
setStackUpdateSchedule: this.requestFunctionFactory(descriptors.containerSetStackUpdateSchedule),
|
|
181
183
|
/** Start a stopped Service. */
|
|
@@ -412,29 +414,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
412
414
|
/** Update the content of the message */
|
|
413
415
|
updateMessage: this.requestFunctionFactory(descriptors.conversationUpdateMessage),
|
|
414
416
|
};
|
|
415
|
-
/** The cronjob API allows you to manage cronjobs within a project. */
|
|
416
|
-
cronjob = {
|
|
417
|
-
/** List Cronjobs belonging to a Project. */
|
|
418
|
-
listCronjobs: this.requestFunctionFactory(descriptors.cronjobListCronjobs),
|
|
419
|
-
/** Create a Cronjob. */
|
|
420
|
-
createCronjob: this.requestFunctionFactory(descriptors.cronjobCreateCronjob),
|
|
421
|
-
/** List CronjobExecutions belonging to a Cronjob. */
|
|
422
|
-
listExecutions: this.requestFunctionFactory(descriptors.cronjobListExecutions),
|
|
423
|
-
/** Trigger a Cronjob. */
|
|
424
|
-
createExecution: this.requestFunctionFactory(descriptors.cronjobCreateExecution),
|
|
425
|
-
/** Get a Cronjob. */
|
|
426
|
-
getCronjob: this.requestFunctionFactory(descriptors.cronjobGetCronjob),
|
|
427
|
-
/** Delete a Cronjob. */
|
|
428
|
-
deleteCronjob: this.requestFunctionFactory(descriptors.cronjobDeleteCronjob),
|
|
429
|
-
/** Update a Cronjob. */
|
|
430
|
-
updateCronjob: this.requestFunctionFactory(descriptors.cronjobUpdateCronjob),
|
|
431
|
-
/** Get a CronjobExecution analysis for failed executions. */
|
|
432
|
-
getExecutionAnalysis: this.requestFunctionFactory(descriptors.cronjobGetExecutionAnalysis),
|
|
433
|
-
/** Get a CronjobExecution. */
|
|
434
|
-
getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
|
|
435
|
-
/** Update a Cronjob's app installation id. */
|
|
436
|
-
replaceCronjobAppInstallationId: this.requestFunctionFactory(descriptors.cronjobReplaceCronjobAppInstallationId),
|
|
437
|
-
};
|
|
438
417
|
/** The customer API allows you to manage your own organizations and users. */
|
|
439
418
|
customer = {
|
|
440
419
|
/** Accept a CustomerInvite. */
|
|
@@ -874,17 +853,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
874
853
|
/** Validate a License's key for a project. */
|
|
875
854
|
validateLicenseKeyForProject: this.requestFunctionFactory(descriptors.licenseValidateLicenseKeyForProject),
|
|
876
855
|
};
|
|
877
|
-
/** API endpoints that are not related to any specific API domain */
|
|
878
|
-
misc = {
|
|
879
|
-
/** List valid time zones. */
|
|
880
|
-
ellaneousListTimeZones: this.requestFunctionFactory(descriptors.miscellaneousListTimeZones),
|
|
881
|
-
/** Check if an email is from mittwald. */
|
|
882
|
-
verificationDetectPhishingEmail: this.requestFunctionFactory(descriptors.verificationDetectPhishingEmail),
|
|
883
|
-
/** Check if an address exists. */
|
|
884
|
-
verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
|
|
885
|
-
/** Check if a company exists. */
|
|
886
|
-
verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
|
|
887
|
-
};
|
|
888
856
|
/** The page insights API allows you to get page insights information. */
|
|
889
857
|
pageInsights = {
|
|
890
858
|
/** Get detailed performance data for a given domain and path. */
|
|
@@ -1004,5 +972,39 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1004
972
|
/** Update an SSHUser. */
|
|
1005
973
|
sshUserUpdateSshUser: this.requestFunctionFactory(descriptors.sshUserUpdateSshUser),
|
|
1006
974
|
};
|
|
975
|
+
/** API endpoints that are not related to any specific API domain */
|
|
976
|
+
misc = {
|
|
977
|
+
/** Check if an email is from mittwald. */
|
|
978
|
+
verificationDetectPhishingEmail: this.requestFunctionFactory(descriptors.verificationDetectPhishingEmail),
|
|
979
|
+
/** Check if an address exists. */
|
|
980
|
+
verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
|
|
981
|
+
/** Check if a company exists. */
|
|
982
|
+
verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
|
|
983
|
+
/** List valid time zones. */
|
|
984
|
+
ellaneousListTimeZones: this.requestFunctionFactory(descriptors.miscellaneousListTimeZones),
|
|
985
|
+
};
|
|
986
|
+
/** The cronjob API allows you to manage cronjobs within a project. */
|
|
987
|
+
cronjob = {
|
|
988
|
+
/** Get a Cronjob. */
|
|
989
|
+
getCronjob: this.requestFunctionFactory(descriptors.cronjobGetCronjob),
|
|
990
|
+
/** Delete a Cronjob. */
|
|
991
|
+
deleteCronjob: this.requestFunctionFactory(descriptors.cronjobDeleteCronjob),
|
|
992
|
+
/** Update a Cronjob. */
|
|
993
|
+
updateCronjob: this.requestFunctionFactory(descriptors.cronjobUpdateCronjob),
|
|
994
|
+
/** Update a Cronjob's app installation id. */
|
|
995
|
+
replaceCronjobAppInstallationId: this.requestFunctionFactory(descriptors.cronjobReplaceCronjobAppInstallationId),
|
|
996
|
+
/** List CronjobExecutions belonging to a Cronjob. */
|
|
997
|
+
listExecutions: this.requestFunctionFactory(descriptors.cronjobListExecutions),
|
|
998
|
+
/** Trigger a Cronjob. */
|
|
999
|
+
createExecution: this.requestFunctionFactory(descriptors.cronjobCreateExecution),
|
|
1000
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
1001
|
+
getExecutionAnalysis: this.requestFunctionFactory(descriptors.cronjobGetExecutionAnalysis),
|
|
1002
|
+
/** List Cronjobs belonging to a Project. */
|
|
1003
|
+
listCronjobs: this.requestFunctionFactory(descriptors.cronjobListCronjobs),
|
|
1004
|
+
/** Create a Cronjob. */
|
|
1005
|
+
createCronjob: this.requestFunctionFactory(descriptors.cronjobCreateCronjob),
|
|
1006
|
+
/** Get a CronjobExecution. */
|
|
1007
|
+
getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
|
|
1008
|
+
};
|
|
1007
1009
|
}
|
|
1008
1010
|
export default MittwaldAPIV2Client;
|
|
@@ -76,12 +76,6 @@ export const aiHostingProjectGetUsage = {
|
|
|
76
76
|
method: "GET",
|
|
77
77
|
operationId: "ai-hosting-project-get-usage",
|
|
78
78
|
};
|
|
79
|
-
/** Trigger a runtime action belonging to an AppInstallation. */
|
|
80
|
-
export const appExecuteAction = {
|
|
81
|
-
path: "/v2/app-installations/{appInstallationId}/actions/{action}",
|
|
82
|
-
method: "POST",
|
|
83
|
-
operationId: "app-execute-action",
|
|
84
|
-
};
|
|
85
79
|
/** Get an App. */
|
|
86
80
|
export const appGetApp = {
|
|
87
81
|
path: "/v2/apps/{appId}",
|
|
@@ -328,6 +322,12 @@ export const backupUpdateProjectBackupDescription = {
|
|
|
328
322
|
method: "PATCH",
|
|
329
323
|
operationId: "backup-update-project-backup-description",
|
|
330
324
|
};
|
|
325
|
+
/** Call pull-image webhook */
|
|
326
|
+
export const containerCallPullImageWebhookForService = {
|
|
327
|
+
path: "/v2/stacks/{stackId}/webhooks/pull-image",
|
|
328
|
+
method: "GET",
|
|
329
|
+
operationId: "container-call-pull-image-webhook-for-service",
|
|
330
|
+
};
|
|
331
331
|
/** List Registries belonging to a Project. */
|
|
332
332
|
export const containerListRegistries = {
|
|
333
333
|
path: "/v2/projects/{projectId}/registries",
|
|
@@ -454,6 +454,12 @@ export const containerRestartService = {
|
|
|
454
454
|
method: "POST",
|
|
455
455
|
operationId: "container-restart-service",
|
|
456
456
|
};
|
|
457
|
+
/** Create or rotate pull-image webhook token */
|
|
458
|
+
export const containerRotatePullImageWebhookForService = {
|
|
459
|
+
path: "/v2/stacks/{stackId}/services/{serviceId}/webhook-token",
|
|
460
|
+
method: "POST",
|
|
461
|
+
operationId: "container-rotate-pull-image-webhook-for-service",
|
|
462
|
+
};
|
|
457
463
|
/** Set an update schedule for a Stack. */
|
|
458
464
|
export const containerSetStackUpdateSchedule = {
|
|
459
465
|
path: "/v2/stacks/{stackId}/update-schedule",
|
|
@@ -772,66 +778,6 @@ export const conversationUpdateMessage = {
|
|
|
772
778
|
method: "PATCH",
|
|
773
779
|
operationId: "conversation-update-message",
|
|
774
780
|
};
|
|
775
|
-
/** List Cronjobs belonging to a Project. */
|
|
776
|
-
export const cronjobListCronjobs = {
|
|
777
|
-
path: "/v2/projects/{projectId}/cronjobs",
|
|
778
|
-
method: "GET",
|
|
779
|
-
operationId: "cronjob-list-cronjobs",
|
|
780
|
-
};
|
|
781
|
-
/** Create a Cronjob. */
|
|
782
|
-
export const cronjobCreateCronjob = {
|
|
783
|
-
path: "/v2/projects/{projectId}/cronjobs",
|
|
784
|
-
method: "POST",
|
|
785
|
-
operationId: "cronjob-create-cronjob",
|
|
786
|
-
};
|
|
787
|
-
/** List CronjobExecutions belonging to a Cronjob. */
|
|
788
|
-
export const cronjobListExecutions = {
|
|
789
|
-
path: "/v2/cronjobs/{cronjobId}/executions",
|
|
790
|
-
method: "GET",
|
|
791
|
-
operationId: "cronjob-list-executions",
|
|
792
|
-
};
|
|
793
|
-
/** Trigger a Cronjob. */
|
|
794
|
-
export const cronjobCreateExecution = {
|
|
795
|
-
path: "/v2/cronjobs/{cronjobId}/executions",
|
|
796
|
-
method: "POST",
|
|
797
|
-
operationId: "cronjob-create-execution",
|
|
798
|
-
};
|
|
799
|
-
/** Get a Cronjob. */
|
|
800
|
-
export const cronjobGetCronjob = {
|
|
801
|
-
path: "/v2/cronjobs/{cronjobId}",
|
|
802
|
-
method: "GET",
|
|
803
|
-
operationId: "cronjob-get-cronjob",
|
|
804
|
-
};
|
|
805
|
-
/** Delete a Cronjob. */
|
|
806
|
-
export const cronjobDeleteCronjob = {
|
|
807
|
-
path: "/v2/cronjobs/{cronjobId}",
|
|
808
|
-
method: "DELETE",
|
|
809
|
-
operationId: "cronjob-delete-cronjob",
|
|
810
|
-
};
|
|
811
|
-
/** Update a Cronjob. */
|
|
812
|
-
export const cronjobUpdateCronjob = {
|
|
813
|
-
path: "/v2/cronjobs/{cronjobId}",
|
|
814
|
-
method: "PATCH",
|
|
815
|
-
operationId: "cronjob-update-cronjob",
|
|
816
|
-
};
|
|
817
|
-
/** Get a CronjobExecution analysis for failed executions. */
|
|
818
|
-
export const cronjobGetExecutionAnalysis = {
|
|
819
|
-
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}/analysis",
|
|
820
|
-
method: "GET",
|
|
821
|
-
operationId: "cronjob-get-execution-analysis",
|
|
822
|
-
};
|
|
823
|
-
/** Get a CronjobExecution. */
|
|
824
|
-
export const cronjobGetExecution = {
|
|
825
|
-
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}",
|
|
826
|
-
method: "GET",
|
|
827
|
-
operationId: "cronjob-get-execution",
|
|
828
|
-
};
|
|
829
|
-
/** Update a Cronjob's app installation id. */
|
|
830
|
-
export const cronjobReplaceCronjobAppInstallationId = {
|
|
831
|
-
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
832
|
-
method: "PUT",
|
|
833
|
-
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
834
|
-
};
|
|
835
781
|
/** Accept a CustomerInvite. */
|
|
836
782
|
export const customerAcceptCustomerInvite = {
|
|
837
783
|
path: "/v2/customer-invites/{customerInviteId}/actions/accept",
|
|
@@ -1966,12 +1912,6 @@ export const marketplaceCustomerUpdatePaymentMethod = {
|
|
|
1966
1912
|
method: "PUT",
|
|
1967
1913
|
operationId: "marketplace-customer-update-payment-method",
|
|
1968
1914
|
};
|
|
1969
|
-
/** List valid time zones. */
|
|
1970
|
-
export const miscellaneousListTimeZones = {
|
|
1971
|
-
path: "/v2/time-zones",
|
|
1972
|
-
method: "GET",
|
|
1973
|
-
operationId: "miscellaneous-list-time-zones",
|
|
1974
|
-
};
|
|
1975
1915
|
/** Getting the subscription status of the subscription. */
|
|
1976
1916
|
export const newsletterGetInfo = {
|
|
1977
1917
|
path: "/v2/newsletter-subscriptions/self",
|
|
@@ -2764,6 +2704,72 @@ export const verificationVerifyCompany = {
|
|
|
2764
2704
|
method: "POST",
|
|
2765
2705
|
operationId: "verification-verify-company",
|
|
2766
2706
|
};
|
|
2707
|
+
/** Get a Cronjob. */
|
|
2708
|
+
export const cronjobGetCronjob = {
|
|
2709
|
+
path: "/v2/cronjobs/{cronjobId}",
|
|
2710
|
+
method: "GET",
|
|
2711
|
+
operationId: "cronjob-get-cronjob",
|
|
2712
|
+
};
|
|
2713
|
+
/** Delete a Cronjob. */
|
|
2714
|
+
export const cronjobDeleteCronjob = {
|
|
2715
|
+
path: "/v2/cronjobs/{cronjobId}",
|
|
2716
|
+
method: "DELETE",
|
|
2717
|
+
operationId: "cronjob-delete-cronjob",
|
|
2718
|
+
};
|
|
2719
|
+
/** Update a Cronjob. */
|
|
2720
|
+
export const cronjobUpdateCronjob = {
|
|
2721
|
+
path: "/v2/cronjobs/{cronjobId}",
|
|
2722
|
+
method: "PATCH",
|
|
2723
|
+
operationId: "cronjob-update-cronjob",
|
|
2724
|
+
};
|
|
2725
|
+
/** Update a Cronjob's app installation id. */
|
|
2726
|
+
export const cronjobReplaceCronjobAppInstallationId = {
|
|
2727
|
+
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
2728
|
+
method: "PUT",
|
|
2729
|
+
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
2730
|
+
};
|
|
2731
|
+
/** List valid time zones. */
|
|
2732
|
+
export const miscellaneousListTimeZones = {
|
|
2733
|
+
path: "/v2/time-zones",
|
|
2734
|
+
method: "GET",
|
|
2735
|
+
operationId: "miscellaneous-list-time-zones",
|
|
2736
|
+
};
|
|
2737
|
+
/** List CronjobExecutions belonging to a Cronjob. */
|
|
2738
|
+
export const cronjobListExecutions = {
|
|
2739
|
+
path: "/v2/cronjobs/{cronjobId}/executions",
|
|
2740
|
+
method: "GET",
|
|
2741
|
+
operationId: "cronjob-list-executions",
|
|
2742
|
+
};
|
|
2743
|
+
/** Trigger a Cronjob. */
|
|
2744
|
+
export const cronjobCreateExecution = {
|
|
2745
|
+
path: "/v2/cronjobs/{cronjobId}/executions",
|
|
2746
|
+
method: "POST",
|
|
2747
|
+
operationId: "cronjob-create-execution",
|
|
2748
|
+
};
|
|
2749
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
2750
|
+
export const cronjobGetExecutionAnalysis = {
|
|
2751
|
+
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}/analysis",
|
|
2752
|
+
method: "GET",
|
|
2753
|
+
operationId: "cronjob-get-execution-analysis",
|
|
2754
|
+
};
|
|
2755
|
+
/** List Cronjobs belonging to a Project. */
|
|
2756
|
+
export const cronjobListCronjobs = {
|
|
2757
|
+
path: "/v2/projects/{projectId}/cronjobs",
|
|
2758
|
+
method: "GET",
|
|
2759
|
+
operationId: "cronjob-list-cronjobs",
|
|
2760
|
+
};
|
|
2761
|
+
/** Create a Cronjob. */
|
|
2762
|
+
export const cronjobCreateCronjob = {
|
|
2763
|
+
path: "/v2/projects/{projectId}/cronjobs",
|
|
2764
|
+
method: "POST",
|
|
2765
|
+
operationId: "cronjob-create-cronjob",
|
|
2766
|
+
};
|
|
2767
|
+
/** Get a CronjobExecution. */
|
|
2768
|
+
export const cronjobGetExecution = {
|
|
2769
|
+
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}",
|
|
2770
|
+
method: "GET",
|
|
2771
|
+
operationId: "cronjob-get-execution",
|
|
2772
|
+
};
|
|
2767
2773
|
/** Get a list of currently active models. */
|
|
2768
2774
|
export const aiHostingCustomerGetDetailedModels = {
|
|
2769
2775
|
path: "/v2/customers/{customerId}/ai-hosting-models",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.338.1';
|